Changeset 102489 in webkit for trunk/Source/JavaScriptCore/bytecode/CodeBlock.cpp
- Timestamp:
- Dec 9, 2011, 4:09:55 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/bytecode/CodeBlock.cpp
r101457 r102489 1434 1434 , m_globalResolveInfos(other.m_globalResolveInfos) 1435 1435 #endif 1436 #if ENABLE(VALUE_PROFILER) 1437 , m_executionEntryCount(0) 1438 #endif 1436 1439 , m_jumpTargets(other.m_jumpTargets) 1437 1440 , m_loopTargets(other.m_loopTargets) … … 1482 1485 , m_source(sourceProvider) 1483 1486 , m_sourceOffset(sourceOffset) 1487 #if ENABLE(VALUE_PROFILER) 1488 , m_executionEntryCount(0) 1489 #endif 1484 1490 , m_symbolTable(symTab) 1485 1491 , m_alternative(alternative) … … 2236 2242 #endif 2237 2243 2238 #if ENABLE(VALUE_PROFILER)2239 void CodeBlock::resetRareCaseProfiles()2240 {2241 for (unsigned i = 0; i < numberOfRareCaseProfiles(); ++i)2242 rareCaseProfile(i)->m_counter = 0;2243 for (unsigned i = 0; i < numberOfSpecialFastCaseProfiles(); ++i)2244 specialFastCaseProfile(i)->m_counter = 0;2245 }2246 #endif2247 2248 2244 #if ENABLE(VERBOSE_VALUE_PROFILE) 2249 2245 void CodeBlock::dumpValueProfiles()
Note:
See TracChangeset
for help on using the changeset viewer.