Changeset 93918 in webkit for trunk/Source/JavaScriptCore/heap/MarkStack.cpp
- Timestamp:
- Aug 26, 2011, 3:23:43 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/heap/MarkStack.cpp
r89069 r93918 54 54 inline void SlotVisitor::visitChildren(JSCell* cell) 55 55 { 56 #if ENABLE(SIMPLE_HEAP_PROFILING) 57 m_visitedTypeCounts.count(cell); 58 #endif 59 56 60 ASSERT(Heap::isMarked(cell)); 57 61 if (cell->structure()->typeInfo().type() < CompoundType) { … … 109 113 110 114 if (cell->structure()->typeInfo().type() < CompoundType) { 115 #if ENABLE(SIMPLE_HEAP_PROFILING) 116 m_visitedTypeCounts.count(cell); 117 #endif 111 118 cell->JSCell::visitChildren(*this); 112 119 if (current.m_values == end) {
Note:
See TracChangeset
for help on using the changeset viewer.