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

Lines Matching refs:TABLE

96 /* Load an entry in a jump table into EBX and branch to it.  TABLE is a
97 jump table with relative offsets. */
98 # define BRANCH_TO_JMPTBL_ENTRY(TABLE) \
101 /* Get the address of the jump table. */ \
102 add $(TABLE - .), %ebx; \
106 /* We loaded the jump table and adjuested EDX. Go. */ \
124 /* Branch to an entry in a jump table. TABLE is a jump table with
126 # define BRANCH_TO_JMPTBL_ENTRY(TABLE) \
127 jmp *TABLE(,%ecx,4)