Changeset 121215 in webkit for trunk/Source/JavaScriptCore/llint/LLIntSlowPaths.cpp
- Timestamp:
- Jun 25, 2012, 7:14:07 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/llint/LLIntSlowPaths.cpp
r120499 r121215 265 265 inline bool jitCompileAndSetHeuristics(CodeBlock* codeBlock, ExecState* exec) 266 266 { 267 codeBlock->updateAllPredictions(); 268 267 269 if (!codeBlock->checkIfJITThresholdReached()) { 268 270 #if ENABLE(JIT_VERBOSE_OSR) … … 301 303 { 302 304 #if ENABLE(JIT_VERBOSE_OSR) 303 dataLog("%p: Entered %s with executeCounter = %d\n", codeBlock, name, codeBlock->llintExecuteCounter()); 305 dataLog("%p: Entered %s with executeCounter = %s\n", codeBlock, name, 306 codeBlock->llintExecuteCounter().status()); 304 307 #endif 305 308 … … 347 350 348 351 #if ENABLE(JIT_VERBOSE_OSR) 349 dataLog("%p: Entered loop_osr with executeCounter = %d\n", codeBlock, codeBlock->llintExecuteCounter()); 352 dataLog("%p: Entered loop_osr with executeCounter = %s\n", codeBlock, 353 codeBlock->llintExecuteCounter().status()); 350 354 #endif 351 355 … … 377 381 378 382 #if ENABLE(JIT_VERBOSE_OSR) 379 dataLog("%p: Entered replace with executeCounter = %d\n", codeBlock, codeBlock->llintExecuteCounter()); 383 dataLog("%p: Entered replace with executeCounter = %s\n", codeBlock, 384 codeBlock->llintExecuteCounter().status()); 380 385 #endif 381 386
Note:
See TracChangeset
for help on using the changeset viewer.