| Index: src/heap/spaces.h
|
| diff --git a/src/heap/spaces.h b/src/heap/spaces.h
|
| index 2eae02953cbf2e41f0015bb766f57a814e0cba33..08330be7aac48241c91e0a6bd4aa0be8434e2d1b 100644
|
| --- a/src/heap/spaces.h
|
| +++ b/src/heap/spaces.h
|
| @@ -2685,31 +2685,6 @@ class CellSpace : public PagedSpace {
|
|
|
|
|
| // -----------------------------------------------------------------------------
|
| -// Old space for all global object property cell objects
|
| -
|
| -class PropertyCellSpace : public PagedSpace {
|
| - public:
|
| - // Creates a property cell space object with a maximum capacity.
|
| - PropertyCellSpace(Heap* heap, intptr_t max_capacity, AllocationSpace id)
|
| - : PagedSpace(heap, max_capacity, id, NOT_EXECUTABLE) {}
|
| -
|
| - virtual int RoundSizeDownToObjectAlignment(int size) {
|
| - if (base::bits::IsPowerOfTwo32(PropertyCell::kSize)) {
|
| - return RoundDown(size, PropertyCell::kSize);
|
| - } else {
|
| - return (size / PropertyCell::kSize) * PropertyCell::kSize;
|
| - }
|
| - }
|
| -
|
| - protected:
|
| - virtual void VerifyObject(HeapObject* obj);
|
| -
|
| - public:
|
| - TRACK_MEMORY("PropertyCellSpace")
|
| -};
|
| -
|
| -
|
| -// -----------------------------------------------------------------------------
|
| // Large objects ( > Page::kMaxHeapObjectSize ) are allocated and managed by
|
| // the large object space. A large object is allocated from OS heap with
|
| // extra padding bytes (Page::kPageSize + Page::kObjectStartOffset).
|
|
|