Changeset 195502 in webkit for trunk/Source/JavaScriptCore/jit/JITExceptions.cpp
- Timestamp:
- Jan 22, 2016, 6:10:17 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/jit/JITExceptions.cpp
r191455 r195502 59 59 if (handler) { 60 60 // handler->target is meaningless for getting a code offset when catching 61 // the exception in a DFG frame. This bytecode target offset could be61 // the exception in a DFG/FTL frame. This bytecode target offset could be 62 62 // something that's in an inlined frame, which means an array access 63 63 // with this bytecode offset in the machine frame is utterly meaningless 64 64 // and can cause an overflow. OSR exit properly exits to handler->target 65 65 // in the proper frame. 66 if ( callFrame->codeBlock()->jitType() != JITCode::DFGJIT)66 if (!JITCode::isOptimizingJIT(callFrame->codeBlock()->jitType())) 67 67 catchPCForInterpreter = &callFrame->codeBlock()->instructions()[handler->target]; 68 68 #if ENABLE(JIT)
Note:
See TracChangeset
for help on using the changeset viewer.