• Home
  • Raw
  • Download

Lines Matching refs:tmp

63     Register tmp(X19);  in CallRuntime()  local
75 __ Stp(tmp, frameType, MemoryOperand(sp, -FRAME_SLOT_SIZE * 2, AddrMode::PREINDEX)); in CallRuntime()
81 __ Ldr(tmp, MemoryOperand(fp, GetStackArgOffSetToFp(0))); // 0: the first arg id in CallRuntime()
83 __ Add(tmp, glue, Operand(tmp, LSL, 3)); in CallRuntime()
84 __ Ldr(rtfunc, MemoryOperand(tmp, JSThread::GlueData::GetRTStubEntriesOffset(false))); in CallRuntime()
91 __ Ldr(tmp, MemoryOperand(sp, 0)); in CallRuntime()
237 Register tmp = __ TempRegister1(); in OptimizedCallAndPushUndefined() local
239 __ Subs(tmp, expectedNumArgs, actualNumArgs); in OptimizedCallAndPushUndefined()
241 PushUndefinedWithArgc(assembler, glue, tmp, undefinedValue, currentSp, nullptr, nullptr); in OptimizedCallAndPushUndefined()
618 Register tmp = __ TempRegister1(); in JSBoundFunctionCallInternal() local
621 PushArgsWithArgv(assembler, glue, actualArgC, argV, tmp, fp, nullptr, nullptr); in JSBoundFunctionCallInternal()
632 Register tmp = __ TempRegister1(); in JSBoundFunctionCallInternal() local
633 PushArgsWithArgv(assembler, glue, boundLength, boundArgs, tmp, fp, nullptr, nullptr); in JSBoundFunctionCallInternal()
760 Register tmp(X9); in CallRuntimeWithArgv() local
763 __ Add(tmp, glue, Operand(runtimeId, LSL, 3)); in CallRuntimeWithArgv()
764 __ Ldr(rtfunc, MemoryOperand(tmp, JSThread::GlueData::GetRTStubEntriesOffset(false))); in CallRuntimeWithArgv()
790 Register tmp = __ TempRegister1(); in PopJSFunctionArgs() local
792 __ CMov(tmp, expectedNumArgs, actualNumArgs, Condition::HI); in PopJSFunctionArgs()
793 __ Add(sp, sp, Operand(tmp, UXTW, FRAME_SLOT_SIZE_LOG2)); in PopJSFunctionArgs()
977 Register tmp = __ TempRegister1(); in GenJSCallWithArgV() local
979 __ Sub(tmp, actualNumArgs, Immediate(NUM_MANDATORY_JSFUNC_ARGS)); in GenJSCallWithArgV()
980 PushArgsWithArgv(assembler, glue, tmp, argV, op, currentSp, &pushCallThis, nullptr); in GenJSCallWithArgV()