Changeset 155317 in webkit for trunk/Source/JavaScriptCore/heap/GCThreadSharedData.cpp
- Timestamp:
- Sep 8, 2013, 5:11:57 PM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/heap/GCThreadSharedData.cpp
r148696 r155317 51 51 return result; 52 52 } 53 54 size_t GCThreadSharedData::childBytesVisited() 55 { 56 size_t result = 0; 57 for (unsigned i = 0; i < m_gcThreads.size(); ++i) 58 result += m_gcThreads[i]->slotVisitor()->bytesVisited(); 59 return result; 60 } 61 62 size_t GCThreadSharedData::childBytesCopied() 63 { 64 size_t result = 0; 65 for (unsigned i = 0; i < m_gcThreads.size(); ++i) 66 result += m_gcThreads[i]->slotVisitor()->bytesCopied(); 67 return result; 68 } 53 69 #endif 54 70
Note:
See TracChangeset
for help on using the changeset viewer.