Changeset 98302 in webkit for trunk/Source/JavaScriptCore/heap
- Timestamp:
- Oct 24, 2011, 5:21:29 PM (14 years ago)
- Location:
- trunk/Source/JavaScriptCore/heap
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/heap/AllocationSpace.cpp
r96432 r98302 45 45 { 46 46 #if COLLECT_ON_EVERY_ALLOCATION 47 collectAllGarbage();47 m_heap->collectAllGarbage(); 48 48 ASSERT(m_heap->m_operationInProgress == NoOperation); 49 49 #endif -
trunk/Source/JavaScriptCore/heap/Heap.cpp
r97642 r98302 601 601 } 602 602 #endif 603 603 604 if (CodeBlock* codeBlock = m_globalData->codeBlockBeingCompiled) { 605 GCPHASE(VisitActiveCodeBlock); 606 codeBlock->visitAggregate(visitor); 607 } 608 604 609 { 605 610 GCPHASE(VisitMachineRoots);
Note:
See TracChangeset
for help on using the changeset viewer.