diff options
Diffstat (limited to 'Source/JavaScriptCore/dfg/DFGDriver.h')
-rw-r--r-- | Source/JavaScriptCore/dfg/DFGDriver.h | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/Source/JavaScriptCore/dfg/DFGDriver.h b/Source/JavaScriptCore/dfg/DFGDriver.h index 639b13f7a..ce798d0a6 100644 --- a/Source/JavaScriptCore/dfg/DFGDriver.h +++ b/Source/JavaScriptCore/dfg/DFGDriver.h @@ -26,6 +26,7 @@ #ifndef DFGDriver_h #define DFGDriver_h +#include "CallFrame.h" #include <wtf/Platform.h> namespace JSC { @@ -38,11 +39,11 @@ class MacroAssemblerCodePtr; namespace DFG { #if ENABLE(DFG_JIT) -bool tryCompile(JSGlobalData&, CodeBlock*, JITCode&); -bool tryCompileFunction(JSGlobalData&, CodeBlock*, JITCode&, MacroAssemblerCodePtr& jitCodeWithArityCheck); +bool tryCompile(ExecState*, CodeBlock*, JITCode&); +bool tryCompileFunction(ExecState*, CodeBlock*, JITCode&, MacroAssemblerCodePtr& jitCodeWithArityCheck); #else -inline bool tryCompile(JSGlobalData&, CodeBlock*, JITCode&) { return false; } -inline bool tryCompileFunction(JSGlobalData&, CodeBlock*, JITCode&, MacroAssemblerCodePtr&) { return false; } +inline bool tryCompile(ExecState*, CodeBlock*, JITCode&) { return false; } +inline bool tryCompileFunction(ExecState*, CodeBlock*, JITCode&, MacroAssemblerCodePtr&) { return false; } #endif } } // namespace JSC::DFG |