Changeset 200997 in webkit for trunk/Source/JavaScriptCore/jit/JITExceptions.cpp
- Timestamp:
- May 16, 2016, 10:31:35 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/jit/JITExceptions.cpp
r199076 r200997 52 52 } 53 53 54 vm->shadowChicken().log(*vm, callFrame, ShadowChicken::Packet::throwPacket()); 54 ExecState* shadowChickenTopFrame = callFrame; 55 if (unwindStart == UnwindFromCallerFrame) { 56 VMEntryFrame* topVMEntryFrame = vm->topVMEntryFrame; 57 shadowChickenTopFrame = callFrame->callerFrame(topVMEntryFrame); 58 } 59 vm->shadowChicken().log(*vm, shadowChickenTopFrame, ShadowChicken::Packet::throwPacket()); 55 60 56 61 Exception* exception = vm->exception();
Note:
See TracChangeset
for help on using the changeset viewer.