Changeset 153227 in webkit for trunk/Source/JavaScriptCore/dfg/DFGDriver.cpp
- Timestamp:
- Jul 24, 2013, 9:02:57 PM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/dfg/DFGDriver.cpp
r153179 r153227 71 71 return CompilationFailed; 72 72 73 74 // If the concurrent thread will want the code block's hash, then compute it here 75 // synchronously. 76 if (Options::showDisassembly() 77 || Options::showDFGDisassembly() 78 || Options::dumpBytecodeAtDFGTime() 79 || Options::verboseCompilation() 80 || Options::logCompilationChanges() 81 || Options::validateGraph() 82 || Options::validateGraphAtEachPhase() 83 || Options::verboseOSR() 84 || Options::verboseCompilationQueue() 85 || Options::reportCompileTimes()) 86 codeBlock->hash(); 87 73 88 if (logCompilationChanges()) 74 89 dataLog("DFG(Driver) compiling ", *codeBlock, ", number of instructions = ", codeBlock->instructionCount(), "\n");
Note:
See TracChangeset
for help on using the changeset viewer.