Searched refs:is16BitMode (Results 1 - 2 of 2) sorted by relevance

/freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/X86/MCTargetDesc/
H A DX86AsmBackend.cpp181 static unsigned getRelaxedOpcodeBranch(const MCInst &Inst, bool is16BitMode) { argument
187 return (is16BitMode) ? X86::JCC_2 : X86::JCC_4;
189 return (is16BitMode) ? X86::JMP_2 : X86::JMP_4;
278 static unsigned getRelaxedOpcode(const MCInst &Inst, bool is16BitMode) { argument
282 return getRelaxedOpcodeBranch(Inst, is16BitMode);
620 bool is16BitMode = STI.getFeatureBits()[X86::Mode16Bit]; local
621 unsigned RelaxedOp = getRelaxedOpcode(Inst, is16BitMode);
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/X86/AsmParser/
H A DX86AsmParser.cpp973 bool is16BitMode() const { function in class:__anon5411::X86AsmParser
989 if (is16BitMode()) return 16;
2665 if (PatchedName == "data16" && is16BitMode()) {
2763 if (Name != "mov" && Name[3] == (is16BitMode() ? 'l' : 'w')) {
2764 Name = is16BitMode() ? "movw" : "movl";
2769 getX86SubSuperRegisterOrZero(Op1.getReg(), is16BitMode() ? 16 : 32);
3473 : (is32BitMode()) ? "l" : (is16BitMode()) ? "w" : " ";
3700 if (!is16BitMode()) {
3708 if (!is16BitMode()) {

Completed in 161 milliseconds