From a89b2ebb8e192c5e8cea21079bda2ee2c0c7dddd Mon Sep 17 00:00:00 2001 From: Simon Hausmann Date: Fri, 25 May 2012 15:09:11 +0200 Subject: Imported WebKit commit eb5c1b8fe4d4b1b90b5137433fc58a91da0e6878 (http://svn.webkit.org/repository/webkit/trunk@118516) --- Source/JavaScriptCore/runtime/Executable.h | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'Source/JavaScriptCore/runtime/Executable.h') diff --git a/Source/JavaScriptCore/runtime/Executable.h b/Source/JavaScriptCore/runtime/Executable.h index d8367ecc8..debb3e369 100644 --- a/Source/JavaScriptCore/runtime/Executable.h +++ b/Source/JavaScriptCore/runtime/Executable.h @@ -345,7 +345,7 @@ namespace JSC { #if ENABLE(JIT) void jettisonOptimizedCode(JSGlobalData&); - bool jitCompile(JSGlobalData&); + bool jitCompile(ExecState*); #endif EvalCodeBlock& generatedBytecode() @@ -420,7 +420,7 @@ namespace JSC { #if ENABLE(JIT) void jettisonOptimizedCode(JSGlobalData&); - bool jitCompile(JSGlobalData&); + bool jitCompile(ExecState*); #endif ProgramCodeBlock& generatedBytecode() @@ -522,7 +522,7 @@ namespace JSC { #if ENABLE(JIT) void jettisonOptimizedCodeForCall(JSGlobalData&); - bool jitCompileForCall(JSGlobalData&); + bool jitCompileForCall(ExecState*); #endif bool isGeneratedForCall() const @@ -550,7 +550,7 @@ namespace JSC { #if ENABLE(JIT) void jettisonOptimizedCodeForConstruct(JSGlobalData&); - bool jitCompileForConstruct(JSGlobalData&); + bool jitCompileForConstruct(ExecState*); #endif bool isGeneratedForConstruct() const @@ -599,12 +599,12 @@ namespace JSC { } } - bool jitCompileFor(JSGlobalData& globalData, CodeSpecializationKind kind) + bool jitCompileFor(ExecState* exec, CodeSpecializationKind kind) { if (kind == CodeForCall) - return jitCompileForCall(globalData); + return jitCompileForCall(exec); ASSERT(kind == CodeForConstruct); - return jitCompileForConstruct(globalData); + return jitCompileForConstruct(exec); } #endif -- cgit v1.2.1