Lines Matching refs:is16BitMode

142 static unsigned getRelaxedOpcodeBranch(const MCInst &Inst, bool is16BitMode) {  in getRelaxedOpcodeBranch()  argument
148 return (is16BitMode) ? X86::JAE_2 : X86::JAE_4; in getRelaxedOpcodeBranch()
150 return (is16BitMode) ? X86::JA_2 : X86::JA_4; in getRelaxedOpcodeBranch()
152 return (is16BitMode) ? X86::JBE_2 : X86::JBE_4; in getRelaxedOpcodeBranch()
154 return (is16BitMode) ? X86::JB_2 : X86::JB_4; in getRelaxedOpcodeBranch()
156 return (is16BitMode) ? X86::JE_2 : X86::JE_4; in getRelaxedOpcodeBranch()
158 return (is16BitMode) ? X86::JGE_2 : X86::JGE_4; in getRelaxedOpcodeBranch()
160 return (is16BitMode) ? X86::JG_2 : X86::JG_4; in getRelaxedOpcodeBranch()
162 return (is16BitMode) ? X86::JLE_2 : X86::JLE_4; in getRelaxedOpcodeBranch()
164 return (is16BitMode) ? X86::JL_2 : X86::JL_4; in getRelaxedOpcodeBranch()
166 return (is16BitMode) ? X86::JMP_2 : X86::JMP_4; in getRelaxedOpcodeBranch()
168 return (is16BitMode) ? X86::JNE_2 : X86::JNE_4; in getRelaxedOpcodeBranch()
170 return (is16BitMode) ? X86::JNO_2 : X86::JNO_4; in getRelaxedOpcodeBranch()
172 return (is16BitMode) ? X86::JNP_2 : X86::JNP_4; in getRelaxedOpcodeBranch()
174 return (is16BitMode) ? X86::JNS_2 : X86::JNS_4; in getRelaxedOpcodeBranch()
176 return (is16BitMode) ? X86::JO_2 : X86::JO_4; in getRelaxedOpcodeBranch()
178 return (is16BitMode) ? X86::JP_2 : X86::JP_4; in getRelaxedOpcodeBranch()
180 return (is16BitMode) ? X86::JS_2 : X86::JS_4; in getRelaxedOpcodeBranch()
269 static unsigned getRelaxedOpcode(const MCInst &Inst, bool is16BitMode) { in getRelaxedOpcode() argument
273 return getRelaxedOpcodeBranch(Inst, is16BitMode); in getRelaxedOpcode()
309 bool is16BitMode = STI.getFeatureBits()[X86::Mode16Bit]; in relaxInstruction() local
310 unsigned RelaxedOp = getRelaxedOpcode(Inst, is16BitMode); in relaxInstruction()