Changeset 189086 in webkit
- Timestamp:
- Aug 27, 2015, 10:59:44 PM (10 years ago)
- Location:
- trunk/Source/JavaScriptCore
- Files:
-
- 9 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/API/JSCTestRunnerUtils.cpp
r169930 r189086 47 47 } 48 48 49 JSValueRef setNeverOptimize(JSContextRef context, JSValueRef theFunctionValueRef) 50 { 51 ExecState* exec= toJS(context); 52 JSLockHolder holder(exec); 53 return toRef(exec, setNeverOptimize(toJS(exec, theFunctionValueRef))); 54 } 55 49 56 } // namespace JSC 50 57 -
trunk/Source/JavaScriptCore/API/JSCTestRunnerUtils.h
r153191 r189086 34 34 JS_EXPORT_PRIVATE JSValueRef numberOfDFGCompiles(JSContextRef, JSValueRef theFunction); 35 35 JS_EXPORT_PRIVATE JSValueRef setNeverInline(JSContextRef, JSValueRef theFunction); 36 JS_EXPORT_PRIVATE JSValueRef setNeverOptimize(JSContextRef, JSValueRef theFunction); 36 37 37 38 } // namespace JSC -
trunk/Source/JavaScriptCore/ChangeLog
r189085 r189086 1 2015-08-27 Mark Lam <mark.lam@apple.com> 2 3 Add noDFG() to jsc to prevent DFG compilation of a specified function. 4 https://bugs.webkit.org/show_bug.cgi?id=148559 5 6 Reviewed by Geoffrey Garen and Saam Barati. 7 8 * API/JSCTestRunnerUtils.cpp: 9 (JSC::setNeverInline): 10 (JSC::setNeverOptimize): 11 * API/JSCTestRunnerUtils.h: 12 * bytecode/CodeBlock.cpp: 13 (JSC::CodeBlock::dumpAssumingJITType): 14 * dfg/DFGCapabilities.cpp: 15 (JSC::DFG::mightCompileEval): 16 (JSC::DFG::mightCompileProgram): 17 (JSC::DFG::mightCompileFunctionForCall): 18 (JSC::DFG::mightCompileFunctionForConstruct): 19 (JSC::DFG::mightInlineFunctionForCall): 20 * jsc.cpp: 21 (GlobalObject::finishCreation): 22 (functionNoDFG): 23 * runtime/Executable.h: 24 (JSC::ScriptExecutable::ecmaMode): 25 (JSC::ScriptExecutable::setNeverInline): 26 (JSC::ScriptExecutable::setNeverOptimize): 27 (JSC::ScriptExecutable::setDidTryToEnterInLoop): 28 (JSC::ScriptExecutable::neverInline): 29 (JSC::ScriptExecutable::neverOptimize): 30 (JSC::ScriptExecutable::didTryToEnterInLoop): 31 (JSC::ScriptExecutable::isInliningCandidate): 32 (JSC::ScriptExecutable::isOkToOptimize): 33 (JSC::ScriptExecutable::addressOfDidTryToEnterInLoop): 34 * runtime/TestRunnerUtils.cpp: 35 (JSC::setNeverInline): 36 (JSC::setNeverOptimize): 37 (JSC::optimizeNextInvocation): 38 * runtime/TestRunnerUtils.h: 39 1 40 2015-08-27 Commit Queue <commit-queue@webkit.org> 2 41 -
trunk/Source/JavaScriptCore/bytecode/CodeBlock.cpp
r189082 r189086 158 158 if (ownerExecutable()->neverInline()) 159 159 out.print(" (NeverInline)"); 160 if (ownerExecutable()->neverOptimize()) 161 out.print(" (NeverOptimize)"); 160 162 if (ownerExecutable()->didTryToEnterInLoop()) 161 163 out.print(" (DidTryToEnterInLoop)"); -
trunk/Source/JavaScriptCore/dfg/DFGCapabilities.cpp
r189082 r189086 51 51 { 52 52 return isSupported() 53 && codeBlock->instructionCount() <= Options::maximumOptimizationCandidateInstructionCount(); 53 && codeBlock->instructionCount() <= Options::maximumOptimizationCandidateInstructionCount() 54 && codeBlock->ownerExecutable()->isOkToOptimize(); 54 55 } 55 56 bool mightCompileProgram(CodeBlock* codeBlock) 56 57 { 57 58 return isSupported() 58 && codeBlock->instructionCount() <= Options::maximumOptimizationCandidateInstructionCount(); 59 && codeBlock->instructionCount() <= Options::maximumOptimizationCandidateInstructionCount() 60 && codeBlock->ownerExecutable()->isOkToOptimize(); 59 61 } 60 62 bool mightCompileFunctionForCall(CodeBlock* codeBlock) 61 63 { 62 64 return isSupported() 63 && codeBlock->instructionCount() <= Options::maximumOptimizationCandidateInstructionCount(); 65 && codeBlock->instructionCount() <= Options::maximumOptimizationCandidateInstructionCount() 66 && codeBlock->ownerExecutable()->isOkToOptimize(); 64 67 } 65 68 bool mightCompileFunctionForConstruct(CodeBlock* codeBlock) 66 69 { 67 70 return isSupported() 68 && codeBlock->instructionCount() <= Options::maximumOptimizationCandidateInstructionCount(); 71 && codeBlock->instructionCount() <= Options::maximumOptimizationCandidateInstructionCount() 72 && codeBlock->ownerExecutable()->isOkToOptimize(); 69 73 } 70 74 -
trunk/Source/JavaScriptCore/jsc.cpp
r189071 r189086 474 474 static EncodedJSValue JSC_HOST_CALL functionPreciseTime(ExecState*); 475 475 static EncodedJSValue JSC_HOST_CALL functionNeverInlineFunction(ExecState*); 476 static EncodedJSValue JSC_HOST_CALL functionNoDFG(ExecState*); 476 477 static EncodedJSValue JSC_HOST_CALL functionOptimizeNextInvocation(ExecState*); 477 478 static EncodedJSValue JSC_HOST_CALL functionNumberOfDFGCompiles(ExecState*); … … 632 633 addFunction(vm, "neverInlineFunction", functionNeverInlineFunction, 1); 633 634 addFunction(vm, "noInline", functionNeverInlineFunction, 1); 635 addFunction(vm, "noDFG", functionNoDFG, 1); 634 636 addFunction(vm, "numberOfDFGCompiles", functionNumberOfDFGCompiles, 1); 635 637 addFunction(vm, "optimizeNextInvocation", functionOptimizeNextInvocation, 1); … … 1178 1180 { 1179 1181 return JSValue::encode(setNeverInline(exec)); 1182 } 1183 1184 EncodedJSValue JSC_HOST_CALL functionNoDFG(ExecState* exec) 1185 { 1186 return JSValue::encode(setNeverOptimize(exec)); 1180 1187 } 1181 1188 -
trunk/Source/JavaScriptCore/runtime/Executable.h
r189082 r189086 375 375 376 376 void setNeverInline(bool value) { m_neverInline = value; } 377 void setNeverOptimize(bool value) { m_neverOptimize = value; } 377 378 void setDidTryToEnterInLoop(bool value) { m_didTryToEnterInLoop = value; } 378 379 bool neverInline() const { return m_neverInline; } 380 bool neverOptimize() const { return m_neverOptimize; } 379 381 bool didTryToEnterInLoop() const { return m_didTryToEnterInLoop; } 380 382 bool isInliningCandidate() const { return !neverInline(); } 383 bool isOkToOptimize() const { return !neverOptimize(); } 381 384 382 385 bool* addressOfDidTryToEnterInLoop() { return &m_didTryToEnterInLoop; } … … 432 435 bool m_hasCapturedVariables; 433 436 bool m_neverInline; 437 bool m_neverOptimize { false }; 434 438 bool m_didTryToEnterInLoop; 435 439 int m_overrideLineNumber; -
trunk/Source/JavaScriptCore/runtime/TestRunnerUtils.cpp
r168406 r189086 84 84 } 85 85 86 JSValue setNeverOptimize(JSValue theFunctionValue) 87 { 88 if (FunctionExecutable* executable = getExecutableForFunction(theFunctionValue)) 89 executable->setNeverOptimize(true); 90 91 return jsUndefined(); 92 } 93 86 94 JSValue optimizeNextInvocation(JSValue theFunctionValue) 87 95 { … … 110 118 } 111 119 120 JSValue setNeverOptimize(ExecState* exec) 121 { 122 if (exec->argumentCount() < 1) 123 return jsUndefined(); 124 return setNeverOptimize(exec->uncheckedArgument(0)); 125 } 126 112 127 JSValue optimizeNextInvocation(ExecState* exec) 113 128 { -
trunk/Source/JavaScriptCore/runtime/TestRunnerUtils.h
r186605 r189086 39 39 JS_EXPORT_PRIVATE JSValue numberOfDFGCompiles(JSValue function); 40 40 JS_EXPORT_PRIVATE JSValue setNeverInline(JSValue function); 41 JS_EXPORT_PRIVATE JSValue setNeverOptimize(JSValue function); 41 42 JS_EXPORT_PRIVATE JSValue optimizeNextInvocation(JSValue function); 42 43 43 44 JS_EXPORT_PRIVATE JSValue numberOfDFGCompiles(ExecState*); 44 45 JS_EXPORT_PRIVATE JSValue setNeverInline(ExecState*); 46 JS_EXPORT_PRIVATE JSValue setNeverOptimize(ExecState*); 45 47 JS_EXPORT_PRIVATE JSValue optimizeNextInvocation(ExecState*); 46 48
Note:
See TracChangeset
for help on using the changeset viewer.