Changeset 179211 in webkit for trunk/Source/JavaScriptCore/heap/Heap.h
- Timestamp:
- Jan 27, 2015, 1:34:32 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/heap/Heap.h
r179192 r179211 24 24 25 25 #include "ArrayBuffer.h" 26 #include "BlockAllocator.h" 26 27 #include "CodeBlockSet.h" 27 28 #include "CopyVisitor.h" … … 215 216 bool isDeferred() const { return !!m_deferralDepth || Options::disableGC(); } 216 217 218 BlockAllocator& blockAllocator(); 217 219 StructureIDTable& structureIDTable() { return m_structureIDTable; } 218 220 … … 244 246 friend class RecursiveAllocationScope; 245 247 friend class SlotVisitor; 248 friend class SuperRegion; 246 249 friend class IncrementalSweeper; 247 250 friend class HeapStatistics; … … 340 343 341 344 HeapOperation m_operationInProgress; 345 BlockAllocator m_blockAllocator; 342 346 StructureIDTable m_structureIDTable; 343 347 MarkedSpace m_objectSpace;
Note:
See TracChangeset
for help on using the changeset viewer.