Changeset 190606 in webkit for trunk/Source/JavaScriptCore/jit/JITToDFGDeferredCompilationCallback.cpp
- Timestamp:
- Oct 5, 2015, 10:51:34 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/jit/JITToDFGDeferredCompilationCallback.cpp
r190589 r190606 44 44 45 45 void JITToDFGDeferredCompilationCallback::compilationDidBecomeReadyAsynchronously( 46 CodeBlock* codeBlock , CodeBlock* profiledDFGCodeBlock)46 CodeBlock* codeBlock) 47 47 { 48 ASSERT_UNUSED(profiledDFGCodeBlock, !profiledDFGCodeBlock);49 48 ASSERT(codeBlock->alternative()->jitType() == JITCode::BaselineJIT); 50 49 … … 56 55 57 56 void JITToDFGDeferredCompilationCallback::compilationDidComplete( 58 CodeBlock* codeBlock, Co deBlock* profiledDFGCodeBlock, CompilationResult result)57 CodeBlock* codeBlock, CompilationResult result) 59 58 { 60 ASSERT(!profiledDFGCodeBlock);61 59 ASSERT(codeBlock->alternative()->jitType() == JITCode::BaselineJIT); 62 60 … … 69 67 codeBlock->alternative()->setOptimizationThresholdBasedOnCompilationResult(result); 70 68 71 DeferredCompilationCallback::compilationDidComplete(codeBlock, profiledDFGCodeBlock,result);69 DeferredCompilationCallback::compilationDidComplete(codeBlock, result); 72 70 } 73 71
Note:
See TracChangeset
for help on using the changeset viewer.