Lines Matching refs:TABLE
108 /* Load an entry in a jump table into EBX and branch to it. TABLE is a
109 jump table with relative offsets. INDEX is a register contains the
110 index into the jump table. SCALE is the scale of INDEX. */
112 # define BRANCH_TO_JMPTBL_ENTRY(TABLE, INDEX, SCALE) \
115 /* Get the address of the jump table. */ \
116 addl $(TABLE - .), %ebx; \
120 /* We loaded the jump table. Go. */ \
130 /* Branch to an entry in a jump table. TABLE is a jump table with
132 jump table. SCALE is the scale of INDEX. */
134 # define BRANCH_TO_JMPTBL_ENTRY(TABLE, INDEX, SCALE) \
135 jmp *TABLE(, INDEX, SCALE)