Home | History | Annotate | Download | only in string

Lines Matching refs:REG

50 # define cfi_rel_offset(reg, off)	.cfi_rel_offset reg, off
54 # define cfi_restore(reg) .cfi_restore reg
86 #define CFI_PUSH(REG) \
88 cfi_rel_offset (REG, 0)
90 #define CFI_POP(REG) \
92 cfi_restore (REG)
94 #define PUSH(REG) pushl REG; CFI_PUSH (REG)
95 #define POP(REG) popl REG; CFI_POP (REG)