Home | History | Annotate | Download | only in string

Lines Matching refs:REG

48 # define cfi_rel_offset(reg, off)	.cfi_rel_offset reg, off
52 # define cfi_restore(reg) .cfi_restore reg
74 #define CFI_PUSH(REG) \
76 cfi_rel_offset (REG, 0)
78 #define CFI_POP(REG) \
80 cfi_restore (REG)
82 #define PUSH(REG) pushl REG; CFI_PUSH (REG)
83 #define POP(REG) popl REG; CFI_POP (REG)