Changeset 118269 in webkit for trunk/Source/JavaScriptCore/heap/Heap.cpp
- Timestamp:
- May 23, 2012, 4:55:27 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/heap/Heap.cpp
r118238 r118269 562 562 GCPHASE(VisitingLiveWeakHandles); 563 563 while (true) { 564 m_weakSet.visit LiveWeakImpls(heapRootVisitor);564 m_weakSet.visit(heapRootVisitor); 565 565 harvestWeakReferences(); 566 566 if (visitor.isEmpty()) … … 577 577 578 578 { 579 GCPHASE( VisitingDeadWeakHandles);580 m_weakSet. visitDeadWeakImpls(heapRootVisitor);579 GCPHASE(ReapingWeakHandles); 580 m_weakSet.reap(); 581 581 } 582 582
Note:
See TracChangeset
for help on using the changeset viewer.