Lines Matching refs:slot
90 #define SAVE_REG(x, slot) \ argument
91 str x, [sp, #((slot) * 8)]; \
92 .cfi_rel_offset x, (slot) * 8; \
94 #define SAVE_GPR_PAIR(x, y, slot) \ argument
95 stp x, y, [sp, #((slot) * 8)]; \
96 .cfi_rel_offset x, (slot) * 8; \
97 .cfi_rel_offset y, ((slot) + 1) * 8; \
99 #define SAVE_VEC_PAIR(x, y, slot) \ argument
100 stp x, y, [sp, #((slot) * 8)]; \
101 .cfi_rel_offset x, (slot) * 8; \
102 .cfi_rel_offset y, ((slot) + 2) * 8; \
104 #define RESTORE_REG(x, slot) \ argument
105 ldr x, [sp, #((slot) * 8)]; \
108 #define RESTORE_REG_PAIR(x, y, slot) \ argument
109 ldp x, y, [sp, #((slot) * 8)]; \