Changeset 95676 in webkit for trunk/Source/JavaScriptCore/bytecode/CodeBlock.cpp
- Timestamp:
- Sep 21, 2011, 3:43:11 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/bytecode/CodeBlock.cpp
r95484 r95676 1988 1988 void CodeBlock::resetRareCaseProfiles() 1989 1989 { 1990 for (unsigned i = 0; i < numberOf SlowCaseProfiles(); ++i)1991 slowCaseProfile(i)->m_counter = 0;1990 for (unsigned i = 0; i < numberOfRareCaseProfiles(); ++i) 1991 rareCaseProfile(i)->m_counter = 0; 1992 1992 for (unsigned i = 0; i < numberOfSpecialFastCaseProfiles(); ++i) 1993 1993 specialFastCaseProfile(i)->m_counter = 0; … … 2013 2013 fprintf(stderr, "\n"); 2014 2014 } 2015 fprintf(stderr, " SlowCaseProfile for %p:\n", this);2016 for (unsigned i = 0; i < numberOf SlowCaseProfiles(); ++i) {2017 SlowCaseProfile* profile = slowCaseProfile(i);2015 fprintf(stderr, "RareCaseProfile for %p:\n", this); 2016 for (unsigned i = 0; i < numberOfRareCaseProfiles(); ++i) { 2017 RareCaseProfile* profile = rareCaseProfile(i); 2018 2018 fprintf(stderr, " bc = %d: %u\n", profile->m_bytecodeOffset, profile->m_counter); 2019 2019 }
Note:
See TracChangeset
for help on using the changeset viewer.