Changeset 153281 in webkit for trunk/Source/JavaScriptCore/bytecode/CodeBlock.cpp
- Timestamp:
- Jul 24, 2013, 9:04:59 PM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/bytecode/CodeBlock.cpp
r153243 r153281 3205 3205 } 3206 3206 3207 void CodeBlock::updateAllArrayPredictions( OperationInProgress operation)3207 void CodeBlock::updateAllArrayPredictions() 3208 3208 { 3209 3209 ConcurrentJITLocker locker(m_lock); 3210 3210 3211 3211 for (unsigned i = m_arrayProfiles.size(); i--;) 3212 m_arrayProfiles[i].computeUpdatedPrediction(locker, this , operation);3212 m_arrayProfiles[i].computeUpdatedPrediction(locker, this); 3213 3213 3214 3214 // Don't count these either, for similar reasons. … … 3220 3220 { 3221 3221 updateAllValueProfilePredictions(operation); 3222 updateAllArrayPredictions( operation);3222 updateAllArrayPredictions(); 3223 3223 } 3224 3224
Note:
See TracChangeset
for help on using the changeset viewer.