| Index: src/heap.cc
|
| diff --git a/src/heap.cc b/src/heap.cc
|
| index 85b6666777eb6747e474e76dc913fe67a823afba..76f84f82e81128e550e75fec164fafe94b3ef6ea 100644
|
| --- a/src/heap.cc
|
| +++ b/src/heap.cc
|
| @@ -704,7 +704,7 @@ bool Heap::CollectGarbage(AllocationSpace space,
|
|
|
|
|
| int Heap::NotifyContextDisposed() {
|
| - if (FLAG_parallel_recompilation) {
|
| + if (FLAG_concurrent_recompilation) {
|
| // Flush the queued recompilation tasks.
|
| isolate()->optimizing_compiler_thread()->Flush();
|
| }
|
| @@ -2088,10 +2088,13 @@ class ScavengingVisitor : public StaticVisitorBase {
|
| MaybeObject* maybe_result;
|
|
|
| if (object_contents == DATA_OBJECT) {
|
| + // TODO(mstarzinger): Turn this check into a regular assert soon!
|
| + CHECK(heap->AllowedToBeMigrated(object, OLD_DATA_SPACE));
|
| maybe_result = heap->old_data_space()->AllocateRaw(allocation_size);
|
| } else {
|
| - maybe_result =
|
| - heap->old_pointer_space()->AllocateRaw(allocation_size);
|
| + // TODO(mstarzinger): Turn this check into a regular assert soon!
|
| + CHECK(heap->AllowedToBeMigrated(object, OLD_POINTER_SPACE));
|
| + maybe_result = heap->old_pointer_space()->AllocateRaw(allocation_size);
|
| }
|
|
|
| Object* result = NULL; // Initialization to please compiler.
|
| @@ -2121,6 +2124,8 @@ class ScavengingVisitor : public StaticVisitorBase {
|
| return;
|
| }
|
| }
|
| + // TODO(mstarzinger): Turn this check into a regular assert soon!
|
| + CHECK(heap->AllowedToBeMigrated(object, NEW_SPACE));
|
| MaybeObject* allocation = heap->new_space()->AllocateRaw(allocation_size);
|
| heap->promotion_queue()->SetNewLimit(heap->new_space()->top());
|
| Object* result = allocation->ToObjectUnchecked();
|
| @@ -2424,6 +2429,7 @@ MaybeObject* Heap::AllocateAccessorPair() {
|
| }
|
| accessors->set_getter(the_hole_value(), SKIP_WRITE_BARRIER);
|
| accessors->set_setter(the_hole_value(), SKIP_WRITE_BARRIER);
|
| + accessors->set_access_flags(Smi::FromInt(0), SKIP_WRITE_BARRIER);
|
| return accessors;
|
| }
|
|
|
| @@ -6896,7 +6902,7 @@ bool Heap::SetUp() {
|
|
|
| store_buffer()->SetUp();
|
|
|
| - if (FLAG_parallel_recompilation) relocation_mutex_ = OS::CreateMutex();
|
| + if (FLAG_concurrent_recompilation) relocation_mutex_ = OS::CreateMutex();
|
| #ifdef DEBUG
|
| relocation_mutex_locked_by_optimizer_thread_ = false;
|
| #endif // DEBUG
|
| @@ -8047,7 +8053,7 @@ void Heap::CheckpointObjectStats() {
|
|
|
|
|
| Heap::RelocationLock::RelocationLock(Heap* heap) : heap_(heap) {
|
| - if (FLAG_parallel_recompilation) {
|
| + if (FLAG_concurrent_recompilation) {
|
| heap_->relocation_mutex_->Lock();
|
| #ifdef DEBUG
|
| heap_->relocation_mutex_locked_by_optimizer_thread_ =
|
|
|