Lines Matching full:stack_offset
186 size_t stack_offset = codegen->GetFirstRegisterSlotInSlowPath();
191 locations->SetStackBit(stack_offset / kVRegSize);
193 DCHECK_LT(stack_offset, codegen->GetFrameSize() - codegen->FrameEntrySpillSize());
195 saved_core_stack_offsets_[i] = stack_offset;
196 stack_offset += kXRegSizeInBytes;
203 DCHECK_LT(stack_offset, codegen->GetFrameSize() - codegen->FrameEntrySpillSize());
205 saved_fpu_stack_offsets_[i] = stack_offset;
206 stack_offset += kDRegSizeInBytes;
876 size_t stack_offset = calling_convention.GetStackOffsetOf(stack_index_);
877 next_location = Primitive::Is64BitType(type) ? Location::DoubleStackSlot(stack_offset)
878 : Location::StackSlot(stack_offset);