Home
last modified time | relevance | path

Searched refs:SETFOpc (Results 1 – 2 of 2) sorted by relevance

/src/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86FastISel.cpp1491 const uint16_t *SETFOpc = nullptr; in X86SelectCmp() local
1494 case CmpInst::FCMP_OEQ: SETFOpc = &SETFOpcTable[0][0]; break; in X86SelectCmp()
1495 case CmpInst::FCMP_UNE: SETFOpc = &SETFOpcTable[1][0]; break; in X86SelectCmp()
1499 if (SETFOpc) { in X86SelectCmp()
1506 FlagReg1).addImm(SETFOpc[0]); in X86SelectCmp()
1508 FlagReg2).addImm(SETFOpc[1]); in X86SelectCmp()
1509 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, MIMD, TII.get(SETFOpc[2]), in X86SelectCmp()
2050 const uint16_t *SETFOpc = nullptr; in X86FastEmitCMoveSelect() local
2054 SETFOpc = &SETFOpcTable[0][0]; in X86FastEmitCMoveSelect()
2058 SETFOpc = &SETFOpcTable[1][0]; in X86FastEmitCMoveSelect()
[all …]
/src/contrib/llvm-project/llvm/lib/Target/X86/GISel/
H A DX86InstructionSelector.cpp1040 const uint16_t *SETFOpc = nullptr; in selectFCmp() local
1045 SETFOpc = &SETFOpcTable[0][0]; in selectFCmp()
1048 SETFOpc = &SETFOpcTable[1][0]; in selectFCmp()
1070 if (SETFOpc) { in selectFCmp()
1079 TII.get(X86::SETCCr), FlagReg1).addImm(SETFOpc[0]); in selectFCmp()
1081 TII.get(X86::SETCCr), FlagReg2).addImm(SETFOpc[1]); in selectFCmp()
1083 TII.get(SETFOpc[2]), ResultReg) in selectFCmp()