Lines Matching refs:stack_space
274 // Generate an unwind code for "sub sp, sp, #stack_space".
275 uint8_t MakeOpAllocS(int stack_space) {
278 DCHECK_GE(stack_space, 0);
279 DCHECK_LT(stack_space, 512);
280 DCHECK_EQ(stack_space & kAllocStackShiftMask, 0);
281 return OpAllocS | (stack_space >> kAllocStackShiftSize);
392 // sub sp, sp, #stack_space
400 int stack_space = fp_adjustment.fp_to_saved_caller_fp;
401 int offset_from_stack_top = stack_space & kAllocStackShiftMask;
402 stack_space += offset_from_stack_top;
406 MakeOpAllocS(stack_space), MakeOpSaveFpLrX(pre_index_amount));