Lines Matching defs:stack_offset
225 int16_t stack_offset = num_to_push * kPointerSize;
227 subi(location, location, Operand(stack_offset));
230 stack_offset -= kPointerSize;
231 StoreP(ToRegister(i), MemOperand(location, stack_offset));
238 int16_t stack_offset = 0;
242 LoadP(ToRegister(i), MemOperand(location, stack_offset));
243 stack_offset += kPointerSize;
246 addi(location, location, Operand(stack_offset));
252 int16_t stack_offset = num_to_push * kDoubleSize;
254 subi(location, location, Operand(stack_offset));
258 stack_offset -= kDoubleSize;
259 stfd(dreg, MemOperand(location, stack_offset));
266 int16_t stack_offset = 0;
271 lfd(dreg, MemOperand(location, stack_offset));
272 stack_offset += kDoubleSize;
275 addi(location, location, Operand(stack_offset));