• Home
  • Raw
  • Download

Lines Matching refs:stubCall

132     JITStubCall stubCall(this, cti_op_call_NotJSFunction);  in compileOpCallVarargsSlowCase()  local
133 stubCall.call(dst); // In the interpreter, the callee puts the return value in dst. in compileOpCallVarargsSlowCase()
211 JITStubCall stubCall(this, cti_op_load_varargs); in emit_op_load_varargs() local
212 stubCall.addArgument(Imm32(argsOffset)); in emit_op_load_varargs()
213 stubCall.call(); in emit_op_load_varargs()
241 JITStubCall stubCall(this, cti_op_call_eval); in compileOpCall() local
242 stubCall.addArgument(callee); in compileOpCall()
243 stubCall.addArgument(JIT::Imm32(registerOffset)); in compileOpCall()
244 stubCall.addArgument(JIT::Imm32(argCount)); in compileOpCall()
245 stubCall.call(); in compileOpCall()
288 …JITStubCall stubCall(this, opcodeID == op_construct ? cti_op_construct_NotJSConstruct : cti_op_cal… in compileOpCallSlowCase() local
289 stubCall.call(dst); // In the interpreter, the callee puts the return value in dst. in compileOpCallSlowCase()
307 JITStubCall stubCall(this, cti_op_call_eval); in compileOpCall() local
308 stubCall.addArgument(callee); in compileOpCall()
309 stubCall.addArgument(JIT::Imm32(registerOffset)); in compileOpCall()
310 stubCall.addArgument(JIT::Imm32(argCount)); in compileOpCall()
311 stubCall.call(); in compileOpCall()
338 JITStubCall stubCall(this, cti_op_construct_JSConstruct); in compileOpCall() local
339 stubCall.addArgument(regT1, regT0); in compileOpCall()
340 stubCall.addArgument(Imm32(0)); // FIXME: Remove this unused JITStub argument. in compileOpCall()
341 stubCall.addArgument(Imm32(0)); // FIXME: Remove this unused JITStub argument. in compileOpCall()
342 stubCall.addArgument(proto); in compileOpCall()
343 stubCall.call(thisRegister); in compileOpCall()
516 JITStubCall stubCall(this, cti_op_call_NotJSFunction);
517 stubCall.call(dst); // In the interpreter, the callee puts the return value in dst.
536 JITStubCall stubCall(this, cti_op_call_eval);
537 stubCall.addArgument(callee, regT0);
538 stubCall.addArgument(JIT::Imm32(registerOffset));
539 stubCall.addArgument(JIT::Imm32(argCount));
540 stubCall.call();
583 …JITStubCall stubCall(this, opcodeID == op_construct ? cti_op_construct_NotJSConstruct : cti_op_cal…
584 stubCall.call(dst); // In the interpreter, the callee puts the return value in dst.
603 JITStubCall stubCall(this, cti_op_call_eval);
604 stubCall.addArgument(callee, regT0);
605 stubCall.addArgument(JIT::Imm32(registerOffset));
606 stubCall.addArgument(JIT::Imm32(argCount));
607 stubCall.call();
635 JITStubCall stubCall(this, cti_op_construct_JSConstruct);
636 stubCall.call(thisRegister);