Lines Matching refs:is16BitMode

135 static unsigned getRelaxedOpcodeBranch(const MCInst &Inst, bool is16BitMode) {  in getRelaxedOpcodeBranch()  argument
141 return (is16BitMode) ? X86::JAE_2 : X86::JAE_4; in getRelaxedOpcodeBranch()
143 return (is16BitMode) ? X86::JA_2 : X86::JA_4; in getRelaxedOpcodeBranch()
145 return (is16BitMode) ? X86::JBE_2 : X86::JBE_4; in getRelaxedOpcodeBranch()
147 return (is16BitMode) ? X86::JB_2 : X86::JB_4; in getRelaxedOpcodeBranch()
149 return (is16BitMode) ? X86::JE_2 : X86::JE_4; in getRelaxedOpcodeBranch()
151 return (is16BitMode) ? X86::JGE_2 : X86::JGE_4; in getRelaxedOpcodeBranch()
153 return (is16BitMode) ? X86::JG_2 : X86::JG_4; in getRelaxedOpcodeBranch()
155 return (is16BitMode) ? X86::JLE_2 : X86::JLE_4; in getRelaxedOpcodeBranch()
157 return (is16BitMode) ? X86::JL_2 : X86::JL_4; in getRelaxedOpcodeBranch()
159 return (is16BitMode) ? X86::JMP_2 : X86::JMP_4; in getRelaxedOpcodeBranch()
161 return (is16BitMode) ? X86::JNE_2 : X86::JNE_4; in getRelaxedOpcodeBranch()
163 return (is16BitMode) ? X86::JNO_2 : X86::JNO_4; in getRelaxedOpcodeBranch()
165 return (is16BitMode) ? X86::JNP_2 : X86::JNP_4; in getRelaxedOpcodeBranch()
167 return (is16BitMode) ? X86::JNS_2 : X86::JNS_4; in getRelaxedOpcodeBranch()
169 return (is16BitMode) ? X86::JO_2 : X86::JO_4; in getRelaxedOpcodeBranch()
171 return (is16BitMode) ? X86::JP_2 : X86::JP_4; in getRelaxedOpcodeBranch()
173 return (is16BitMode) ? X86::JS_2 : X86::JS_4; in getRelaxedOpcodeBranch()
262 static unsigned getRelaxedOpcode(const MCInst &Inst, bool is16BitMode) { in getRelaxedOpcode() argument
266 return getRelaxedOpcodeBranch(Inst, is16BitMode); in getRelaxedOpcode()
303 bool is16BitMode = STI.getFeatureBits()[X86::Mode16Bit]; in relaxInstruction() local
304 unsigned RelaxedOp = getRelaxedOpcode(Inst, is16BitMode); in relaxInstruction()