Changeset 121215 in webkit for trunk/Source/JavaScriptCore/jit/JITStubs.cpp
- Timestamp:
- Jun 25, 2012, 7:14:07 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/jit/JITStubs.cpp
r121073 r121215 1929 1929 1930 1930 #if ENABLE(JIT_VERBOSE_OSR) 1931 dataLog("%p: Entered optimize with bytecodeIndex = %u, executeCounter = % d, reoptimizationRetryCounter = %u, optimizationDelayCounter = %u\n", codeBlock, bytecodeIndex, codeBlock->jitExecuteCounter(), codeBlock->reoptimizationRetryCounter(), codeBlock->optimizationDelayCounter());1931 dataLog("%p: Entered optimize with bytecodeIndex = %u, executeCounter = %s, reoptimizationRetryCounter = %u, optimizationDelayCounter = %u\n", codeBlock, bytecodeIndex, codeBlock->jitExecuteCounter().status(), codeBlock->reoptimizationRetryCounter(), codeBlock->optimizationDelayCounter()); 1932 1932 #endif 1933 1933 1934 if (!codeBlock->checkIfOptimizationThresholdReached()) 1934 if (!codeBlock->checkIfOptimizationThresholdReached()) { 1935 codeBlock->updateAllPredictions(); 1935 1936 return; 1937 } 1936 1938 1937 1939 if (codeBlock->hasOptimizedReplacement()) {
Note:
See TracChangeset
for help on using the changeset viewer.