Changeset 42337 in webkit for trunk/JavaScriptCore/jit/JIT.cpp
- Timestamp:
- Apr 8, 2009, 4:08:28 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/jit/JIT.cpp
r42065 r42337 497 497 NEXT_OPCODE(op_call_eval); 498 498 } 499 case op_load_varargs: { 500 emitPutJITStubArgConstant(currentInstruction[2].u.operand, 1); 501 emitCTICall(JITStubs::cti_op_load_varargs); 502 emitPutVirtualRegister(currentInstruction[1].u.operand); 503 NEXT_OPCODE(op_load_varargs); 504 } 505 case op_call_varargs: { 506 compileOpCallVarargs(currentInstruction); 507 NEXT_OPCODE(op_call_varargs); 508 } 499 509 case op_construct: { 500 510 compileOpCall(opcodeID, currentInstruction, callLinkInfoIndex++); … … 1597 1607 NEXT_OPCODE(op_call_eval); 1598 1608 } 1609 case op_call_varargs: { 1610 compileOpCallVarargsSlowCase(currentInstruction, iter); 1611 NEXT_OPCODE(op_call_varargs); 1612 } 1599 1613 case op_construct: { 1600 1614 compileOpCallSlowCase(currentInstruction, iter, callLinkInfoIndex++, opcodeID);
Note:
See TracChangeset
for help on using the changeset viewer.