diff options
Diffstat (limited to 'Source/JavaScriptCore/jit/JITExceptions.h')
-rw-r--r-- | Source/JavaScriptCore/jit/JITExceptions.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Source/JavaScriptCore/jit/JITExceptions.h b/Source/JavaScriptCore/jit/JITExceptions.h index 1555f95dc..b611caf95 100644 --- a/Source/JavaScriptCore/jit/JITExceptions.h +++ b/Source/JavaScriptCore/jit/JITExceptions.h @@ -26,7 +26,7 @@ #ifndef JITExceptions_h #define JITExceptions_h -#include "JSValue.h" +#include "JSCJSValue.h" #include "MacroAssemblerCodeRef.h" #if ENABLE(JIT) || ENABLE(LLINT) @@ -34,7 +34,7 @@ namespace JSC { class ExecState; -class JSGlobalData; +class VM; // This header gives other parts of the system access to the JIT's prototocol // for the throwing and handling exceptions. @@ -44,9 +44,9 @@ struct ExceptionHandler { ExecState* callFrame; }; -ExceptionHandler genericThrow(JSGlobalData*, ExecState*, JSValue exceptionValue, unsigned vPCIndex); +ExceptionHandler genericThrow(VM*, ExecState*, JSValue exceptionValue, unsigned vPCIndex); -ExceptionHandler jitThrow(JSGlobalData*, ExecState*, JSValue exceptionValue, ReturnAddressPtr faultLocation); +ExceptionHandler jitThrow(VM*, ExecState*, JSValue exceptionValue, ReturnAddressPtr faultLocation); } // namespace JSC |