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
70 #define CFI_PUSH(REG) \
72 cfi_rel_offset (REG, 0)
74 #define CFI_POP(REG) \
76 cfi_restore (REG)
78 #define PUSH(REG) pushl REG; CFI_PUSH (REG)
79 #define POP(REG) popl REG; CFI_POP (REG)