Home | History | Annotate | Download | only in arch-x86

Lines Matching refs:REG

37 # define cfi_rel_offset(reg, off)	.cfi_rel_offset reg, off
41 # define cfi_restore(reg) .cfi_restore reg
63 #define CFI_PUSH(REG) \
65 cfi_rel_offset (REG, 0)
67 #define CFI_POP(REG) \
69 cfi_restore (REG)
71 #define PUSH(REG) pushl REG; CFI_PUSH (REG)
72 #define POP(REG) popl REG; CFI_POP (REG)