Changeset 163027 in webkit for trunk/Source/JavaScriptCore/jit/JITExceptions.cpp
- Timestamp:
- Jan 29, 2014, 11:18:54 AM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/jit/JITExceptions.cpp
r160186 r163027 44 44 void genericUnwind(VM* vm, ExecState* callFrame, JSValue exceptionValue) 45 45 { 46 if (Options::breakOnThrow()) { 47 dataLog("In call frame ", RawPointer(callFrame), " for code block ", *callFrame->codeBlock(), "\n"); 48 CRASH(); 49 } 50 46 51 RELEASE_ASSERT(exceptionValue); 47 52 HandlerInfo* handler = vm->interpreter->unwind(callFrame, exceptionValue); // This may update callFrame. … … 57 62 #endif 58 63 } else 59 catchRoutine = LLInt::getCodePtr( returnFromJavaScript);64 catchRoutine = LLInt::getCodePtr(handleUncaughtException); 60 65 61 66 vm->callFrameForThrow = callFrame;
Note:
See TracChangeset
for help on using the changeset viewer.