Home | History | Annotate | Download | only in arm64

Lines Matching refs:stack_slots

637 static int AlignedStackSlots(int stack_slots) {
638 if (stack_slots & 1) stack_slots++;
639 return stack_slots;
681 int stack_slots = frame()->GetSpillSlotCount();
682 if (stack_slots > 0) {
685 __ Sub(sp, sp, stack_slots * kPointerSize);
687 __ Sub(csp, csp, AlignedStackSlots(stack_slots) * kPointerSize);
697 int stack_slots = frame()->GetSpillSlotCount();
698 if (stack_slots > 0) {
699 __ Add(csp, csp, AlignedStackSlots(stack_slots) * kPointerSize);