Home | History | Annotate | Download | only in string

Lines Matching refs:REG

44 # define cfi_rel_offset(reg, off)	.cfi_rel_offset reg, off
48 # define cfi_restore(reg) .cfi_restore reg
78 #define CFI_PUSH(REG) \
80 cfi_rel_offset (REG, 0)
82 #define CFI_POP(REG) \
84 cfi_restore (REG)
86 #define PUSH(REG) pushl REG; CFI_PUSH (REG)
87 #define POP(REG) popl REG; CFI_POP (REG)