Changeset 43374 in webkit for trunk/JavaScriptCore/jit/JIT.cpp
- Timestamp:
- May 7, 2009, 4:33:00 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/jit/JIT.cpp
r43372 r43374 905 905 } 906 906 case op_catch: { 907 emitGetCTIParam( STUB_ARGS_callFrame, callFrameRegister);907 emitGetCTIParam(offsetof(struct JITStackFrame, callFrame) / sizeof (void*), callFrameRegister); 908 908 emitPutVirtualRegister(currentInstruction[1].u.operand); 909 909 NEXT_OPCODE(op_catch); … … 1936 1936 move(ImmPtr(reinterpret_cast<void*>(ctiVMThrowTrampoline)), regT2); 1937 1937 emitGetFromCallFrameHeader(RegisterFile::CallerFrame, callFrameRegister); 1938 emitPutCTIParam(callFrameRegister, STUB_ARGS_callFrame);1938 emitPutCTIParam(callFrameRegister, offsetof(struct JITStackFrame, callFrame) / sizeof (void*)); 1939 1939 push(regT2); 1940 1940 ret();
Note:
See TracChangeset
for help on using the changeset viewer.