Lines Matching refs:stack_offset
395 int16_t stack_offset = num_to_push * kSystemPointerSize; in MultiPush() local
397 subi(location, location, Operand(stack_offset)); in MultiPush()
400 stack_offset -= kSystemPointerSize; in MultiPush()
401 StoreP(ToRegister(i), MemOperand(location, stack_offset)); in MultiPush()
407 int16_t stack_offset = 0; in MultiPop() local
411 LoadP(ToRegister(i), MemOperand(location, stack_offset)); in MultiPop()
412 stack_offset += kSystemPointerSize; in MultiPop()
415 addi(location, location, Operand(stack_offset)); in MultiPop()
420 int16_t stack_offset = num_to_push * kDoubleSize; in MultiPushDoubles() local
422 subi(location, location, Operand(stack_offset)); in MultiPushDoubles()
426 stack_offset -= kDoubleSize; in MultiPushDoubles()
427 stfd(dreg, MemOperand(location, stack_offset)); in MultiPushDoubles()
433 int16_t stack_offset = 0; in MultiPopDoubles() local
438 lfd(dreg, MemOperand(location, stack_offset)); in MultiPopDoubles()
439 stack_offset += kDoubleSize; in MultiPopDoubles()
442 addi(location, location, Operand(stack_offset)); in MultiPopDoubles()