Lines Matching refs:SETFOpc
1490 const uint16_t *SETFOpc = nullptr; in X86SelectCmp() local
1493 case CmpInst::FCMP_OEQ: SETFOpc = &SETFOpcTable[0][0]; break; in X86SelectCmp()
1494 case CmpInst::FCMP_UNE: SETFOpc = &SETFOpcTable[1][0]; break; in X86SelectCmp()
1498 if (SETFOpc) { in X86SelectCmp()
1505 FlagReg1).addImm(SETFOpc[0]); in X86SelectCmp()
1507 FlagReg2).addImm(SETFOpc[1]); in X86SelectCmp()
1508 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, MIMD, TII.get(SETFOpc[2]), in X86SelectCmp()
2049 const uint16_t *SETFOpc = nullptr; in X86FastEmitCMoveSelect() local
2053 SETFOpc = &SETFOpcTable[0][0]; in X86FastEmitCMoveSelect()
2057 SETFOpc = &SETFOpcTable[1][0]; in X86FastEmitCMoveSelect()
2076 if (SETFOpc) { in X86FastEmitCMoveSelect()
2080 FlagReg1).addImm(SETFOpc[0]); in X86FastEmitCMoveSelect()
2082 FlagReg2).addImm(SETFOpc[1]); in X86FastEmitCMoveSelect()
2083 auto const &II = TII.get(SETFOpc[2]); in X86FastEmitCMoveSelect()