Changeset 106078 in webkit for trunk/Source/JavaScriptCore/heap/Heap.h
- Timestamp:
- Jan 26, 2012, 6:30:38 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/heap/Heap.h
r105442 r106078 23 23 #define Heap_h 24 24 25 #include "AllocationSpace.h"26 25 #include "DFGCodeBlocks.h" 27 26 #include "HandleHeap.h" … … 87 86 88 87 JSGlobalData* globalData() const { return m_globalData; } 89 AllocationSpace& objectSpace() { return m_objectSpace; }88 MarkedSpace& objectSpace() { return m_objectSpace; } 90 89 MachineThreads& machineThreads() { return m_machineThreads; } 91 90 … … 137 136 138 137 private: 138 friend class MarkedSpace; 139 139 friend class MarkedBlock; 140 friend class AllocationSpace;141 140 friend class BumpSpace; 142 141 friend class SlotVisitor; … … 192 191 193 192 OperationInProgress m_operationInProgress; 194 AllocationSpace m_objectSpace;193 MarkedSpace m_objectSpace; 195 194 BumpSpace m_storageSpace; 196 195
Note:
See TracChangeset
for help on using the changeset viewer.