Changeset 103294 in webkit for trunk/Source/JavaScriptCore/dfg/DFGOperations.cpp
- Timestamp:
- Dec 19, 2011, 7:16:21 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/dfg/DFGOperations.cpp
r103083 r103294 794 794 } 795 795 796 DFGHandlerEncoded DFG_OPERATION lookupExceptionHandler(ExecState* exec, ReturnAddressPtr faultLocation)796 DFGHandlerEncoded DFG_OPERATION lookupExceptionHandler(ExecState* exec, uint32_t callIndex) 797 797 { 798 798 JSValue exceptionValue = exec->exception(); 799 799 ASSERT(exceptionValue); 800 800 801 unsigned vPCIndex = exec->codeBlock()->bytecodeOffset (faultLocation);801 unsigned vPCIndex = exec->codeBlock()->bytecodeOffsetForCallAtIndex(callIndex); 802 802 HandlerInfo* handler = exec->globalData().interpreter->throwException(exec, exceptionValue, vPCIndex); 803 803
Note:
See TracChangeset
for help on using the changeset viewer.