Changeset 178984 in webkit for trunk/Source/JavaScriptCore/heap/Heap.cpp
- Timestamp:
- Jan 22, 2015, 11:04:05 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/heap/Heap.cpp
r178884 r178984 548 548 void Heap::copyBackingStores() 549 549 { 550 GCPHASE(CopyBackingStores); 550 551 if (m_operationInProgress == EdenCollection) 551 552 m_storageSpace.startedCopying<EdenCollection>(); … … 612 613 { 613 614 GCPHASE(VisitSmallStrings); 615 if (!m_vm->smallStrings.needsToBeVisited(m_operationInProgress)) 616 return; 617 614 618 m_vm->smallStrings.visitStrongReferences(m_slotVisitor); 615 616 619 if (Options::logGC() == GCLogging::Verbose) 617 620 dataLog("Small strings:\n", m_slotVisitor); 618 619 621 m_slotVisitor.donateAndDrain(); 620 622 }
Note:
See TracChangeset
for help on using the changeset viewer.