| Index: src/heap/spaces.cc
|
| diff --git a/src/heap/spaces.cc b/src/heap/spaces.cc
|
| index 18d1b50cf2c47ac02f2aa884f96b10a9895427a2..af04b5229e99ba7fcb8ef0a0bbcc2828777b0e0e 100644
|
| --- a/src/heap/spaces.cc
|
| +++ b/src/heap/spaces.cc
|
| @@ -43,7 +43,6 @@ HeapObjectIterator::HeapObjectIterator(Page* page,
|
| Space* owner = page->owner();
|
| DCHECK(owner == page->heap()->old_space() ||
|
| owner == page->heap()->map_space() ||
|
| - owner == page->heap()->cell_space() ||
|
| owner == page->heap()->code_space());
|
| Initialize(reinterpret_cast<PagedSpace*>(owner), page->area_start(),
|
| page->area_end(), kOnePageOnly, size_func);
|
| @@ -924,8 +923,6 @@ STATIC_ASSERT(static_cast<ObjectSpace>(1 << AllocationSpace::OLD_SPACE) ==
|
| ObjectSpace::kObjectSpaceOldSpace);
|
| STATIC_ASSERT(static_cast<ObjectSpace>(1 << AllocationSpace::CODE_SPACE) ==
|
| ObjectSpace::kObjectSpaceCodeSpace);
|
| -STATIC_ASSERT(static_cast<ObjectSpace>(1 << AllocationSpace::CELL_SPACE) ==
|
| - ObjectSpace::kObjectSpaceCellSpace);
|
| STATIC_ASSERT(static_cast<ObjectSpace>(1 << AllocationSpace::MAP_SPACE) ==
|
| ObjectSpace::kObjectSpaceMapSpace);
|
|
|
| @@ -2796,15 +2793,6 @@ void MapSpace::VerifyObject(HeapObject* object) { CHECK(object->IsMap()); }
|
|
|
|
|
| // -----------------------------------------------------------------------------
|
| -// CellSpace implementation
|
| -// TODO(mvstanton): this is weird...the compiler can't make a vtable unless
|
| -// there is at least one non-inlined virtual function. I would prefer to hide
|
| -// the VerifyObject definition behind VERIFY_HEAP.
|
| -
|
| -void CellSpace::VerifyObject(HeapObject* object) { CHECK(object->IsCell()); }
|
| -
|
| -
|
| -// -----------------------------------------------------------------------------
|
| // LargeObjectIterator
|
|
|
| LargeObjectIterator::LargeObjectIterator(LargeObjectSpace* space) {
|
|
|