Changeset 159321 in webkit for trunk/Source/JavaScriptCore/jit/JITExceptions.cpp
- Timestamp:
- Nov 14, 2013, 4:12:51 PM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/jit/JITExceptions.cpp
r159276 r159321 33 33 #include "JITStubs.h" 34 34 #include "JSCJSValue.h" 35 #include "LLIntData.h" 36 #include "LLIntOpcode.h" 35 37 #include "LLIntThunks.h" 38 #include "Opcode.h" 39 #include "Operations.h" 36 40 #include "VM.h" 37 #include "Operations.h"38 41 39 42 #if ENABLE(JIT) || ENABLE(LLINT) … … 51 54 catchPCForInterpreter = &callFrame->codeBlock()->instructions()[handler->target]; 52 55 catchRoutine = ExecutableBase::catchRoutineFor(handler, catchPCForInterpreter); 53 } else 56 } else { 57 #if ENABLE(LLINT_C_LOOP) 58 catchRoutine = LLInt::getCodePtr(ctiOpThrowNotCaught); 59 #else 54 60 catchRoutine = FunctionPtr(LLInt::getCodePtr(returnFromJavaScript)).value(); 61 #endif 62 } 55 63 56 64 vm->callFrameForThrow = callFrame;
Note:
See TracChangeset
for help on using the changeset viewer.