OLD | NEW |
1 // Copyright 2012 the V8 project authors. All rights reserved. | 1 // Copyright 2012 the V8 project authors. All rights reserved. |
2 // Redistribution and use in source and binary forms, with or without | 2 // Redistribution and use in source and binary forms, with or without |
3 // modification, are permitted provided that the following conditions are | 3 // modification, are permitted provided that the following conditions are |
4 // met: | 4 // met: |
5 // | 5 // |
6 // * Redistributions of source code must retain the above copyright | 6 // * Redistributions of source code must retain the above copyright |
7 // notice, this list of conditions and the following disclaimer. | 7 // notice, this list of conditions and the following disclaimer. |
8 // * Redistributions in binary form must reproduce the above | 8 // * Redistributions in binary form must reproduce the above |
9 // copyright notice, this list of conditions and the following | 9 // copyright notice, this list of conditions and the following |
10 // disclaimer in the documentation and/or other materials provided | 10 // disclaimer in the documentation and/or other materials provided |
(...skipping 3205 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3216 if (!maybe_obj->ToObject(&obj)) return false; | 3216 if (!maybe_obj->ToObject(&obj)) return false; |
3217 } | 3217 } |
3218 SeededNumberDictionary::cast(obj)->set_requires_slow_elements(); | 3218 SeededNumberDictionary::cast(obj)->set_requires_slow_elements(); |
3219 set_empty_slow_element_dictionary(SeededNumberDictionary::cast(obj)); | 3219 set_empty_slow_element_dictionary(SeededNumberDictionary::cast(obj)); |
3220 | 3220 |
3221 { MaybeObject* maybe_obj = AllocateSymbol(); | 3221 { MaybeObject* maybe_obj = AllocateSymbol(); |
3222 if (!maybe_obj->ToObject(&obj)) return false; | 3222 if (!maybe_obj->ToObject(&obj)) return false; |
3223 } | 3223 } |
3224 set_observed_symbol(Symbol::cast(obj)); | 3224 set_observed_symbol(Symbol::cast(obj)); |
3225 | 3225 |
3226 set_i18n_template_one(the_hole_value()); | |
3227 set_i18n_template_two(the_hole_value()); | |
3228 | |
3229 // Handling of script id generation is in Factory::NewScript. | 3226 // Handling of script id generation is in Factory::NewScript. |
3230 set_last_script_id(Smi::FromInt(v8::Script::kNoScriptId)); | 3227 set_last_script_id(Smi::FromInt(v8::Script::kNoScriptId)); |
3231 | 3228 |
3232 // Initialize keyed lookup cache. | 3229 // Initialize keyed lookup cache. |
3233 isolate_->keyed_lookup_cache()->Clear(); | 3230 isolate_->keyed_lookup_cache()->Clear(); |
3234 | 3231 |
3235 // Initialize context slot cache. | 3232 // Initialize context slot cache. |
3236 isolate_->context_slot_cache()->Clear(); | 3233 isolate_->context_slot_cache()->Clear(); |
3237 | 3234 |
3238 // Initialize descriptor cache. | 3235 // Initialize descriptor cache. |
(...skipping 3367 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
6606 case VISIT_ALL_IN_SCAVENGE: | 6603 case VISIT_ALL_IN_SCAVENGE: |
6607 isolate_->global_handles()->IterateNewSpaceStrongAndDependentRoots(v); | 6604 isolate_->global_handles()->IterateNewSpaceStrongAndDependentRoots(v); |
6608 break; | 6605 break; |
6609 case VISIT_ALL_IN_SWEEP_NEWSPACE: | 6606 case VISIT_ALL_IN_SWEEP_NEWSPACE: |
6610 case VISIT_ALL: | 6607 case VISIT_ALL: |
6611 isolate_->global_handles()->IterateAllRoots(v); | 6608 isolate_->global_handles()->IterateAllRoots(v); |
6612 break; | 6609 break; |
6613 } | 6610 } |
6614 v->Synchronize(VisitorSynchronization::kGlobalHandles); | 6611 v->Synchronize(VisitorSynchronization::kGlobalHandles); |
6615 | 6612 |
| 6613 // Iterate over eternal handles. |
| 6614 isolate_->eternal_handles()->IterateAllRoots(v); |
| 6615 v->Synchronize(VisitorSynchronization::kEternalHandles); |
| 6616 |
6616 // Iterate over pointers being held by inactive threads. | 6617 // Iterate over pointers being held by inactive threads. |
6617 isolate_->thread_manager()->Iterate(v); | 6618 isolate_->thread_manager()->Iterate(v); |
6618 v->Synchronize(VisitorSynchronization::kThreadManager); | 6619 v->Synchronize(VisitorSynchronization::kThreadManager); |
6619 | 6620 |
6620 // Iterate over the pointers the Serialization/Deserialization code is | 6621 // Iterate over the pointers the Serialization/Deserialization code is |
6621 // holding. | 6622 // holding. |
6622 // During garbage collection this keeps the partial snapshot cache alive. | 6623 // During garbage collection this keeps the partial snapshot cache alive. |
6623 // During deserialization of the startup snapshot this creates the partial | 6624 // During deserialization of the startup snapshot this creates the partial |
6624 // snapshot cache and deserializes the objects it refers to. During | 6625 // snapshot cache and deserializes the objects it refers to. During |
6625 // serialization this does nothing, since the partial snapshot cache is | 6626 // serialization this does nothing, since the partial snapshot cache is |
(...skipping 1413 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
8039 if (FLAG_parallel_recompilation) { | 8040 if (FLAG_parallel_recompilation) { |
8040 heap_->relocation_mutex_->Lock(); | 8041 heap_->relocation_mutex_->Lock(); |
8041 #ifdef DEBUG | 8042 #ifdef DEBUG |
8042 heap_->relocation_mutex_locked_by_optimizer_thread_ = | 8043 heap_->relocation_mutex_locked_by_optimizer_thread_ = |
8043 heap_->isolate()->optimizing_compiler_thread()->IsOptimizerThread(); | 8044 heap_->isolate()->optimizing_compiler_thread()->IsOptimizerThread(); |
8044 #endif // DEBUG | 8045 #endif // DEBUG |
8045 } | 8046 } |
8046 } | 8047 } |
8047 | 8048 |
8048 } } // namespace v8::internal | 8049 } } // namespace v8::internal |
OLD | NEW |