Index: src/heap/heap.h |
diff --git a/src/heap/heap.h b/src/heap/heap.h |
index 7a17abbe371cc8700e45fb40732185f6c3afb822..83d087eadeb0b9fc83e0e580c89d5ffefe0a0f41 100644 |
--- a/src/heap/heap.h |
+++ b/src/heap/heap.h |
@@ -646,7 +646,6 @@ class Heap { |
OldSpace* code_space() { return code_space_; } |
MapSpace* map_space() { return map_space_; } |
CellSpace* cell_space() { return cell_space_; } |
- PropertyCellSpace* property_cell_space() { return property_cell_space_; } |
LargeObjectSpace* lo_space() { return lo_space_; } |
PagedSpace* paged_space(int idx) { |
switch (idx) { |
@@ -658,8 +657,6 @@ class Heap { |
return map_space(); |
case CELL_SPACE: |
return cell_space(); |
- case PROPERTY_CELL_SPACE: |
- return property_cell_space(); |
case CODE_SPACE: |
return code_space(); |
case NEW_SPACE: |
@@ -1585,7 +1582,6 @@ class Heap { |
OldSpace* code_space_; |
MapSpace* map_space_; |
CellSpace* cell_space_; |
- PropertyCellSpace* property_cell_space_; |
LargeObjectSpace* lo_space_; |
HeapState gc_state_; |
int gc_post_processing_depth_; |
@@ -2209,8 +2205,6 @@ class HeapStats { |
int* size_per_type; // 22 |
int* os_error; // 23 |
int* end_marker; // 24 |
- intptr_t* property_cell_space_size; // 25 |
- intptr_t* property_cell_space_capacity; // 26 |
}; |