Lines Matching defs:NewCond
4152 ISD::CondCode NewCond;
4154 NewCond = ISD::CondCode::SETEQ;
4156 NewCond = ISD::CondCode::SETEQ;
4160 NewCond = ISD::CondCode::SETNE;
4164 NewCond = ISD::CondCode::SETNE;
4182 NewCond = getSetCCInverse(NewCond, XVT);
4207 return DAG.getSetCC(DL, SCCVT, SExtInReg, X, NewCond);
5215 ISD::CondCode NewCond = Cond;
5219 NewCond = (Cond == ISD::SETULE) ? ISD::SETULT : ISD::SETUGE;
5231 return DAG.getSetCC(dl, VT, Shift, CmpRHS, NewCond);
5281 ISD::CondCode NewCond = ISD::SETCC_INVALID;
5283 case ISD::SETOEQ: NewCond = IsNegInf ? ISD::SETOLE : ISD::SETOGE; break;
5284 case ISD::SETUEQ: NewCond = IsNegInf ? ISD::SETULE : ISD::SETUGE; break;
5285 case ISD::SETUNE: NewCond = IsNegInf ? ISD::SETUGT : ISD::SETULT; break;
5286 case ISD::SETONE: NewCond = IsNegInf ? ISD::SETOGT : ISD::SETOLT; break;
5289 if (NewCond != ISD::SETCC_INVALID &&
5290 isCondCodeLegal(NewCond, N0.getSimpleValueType()))
5291 return DAG.getSetCC(dl, VT, N0, N1, NewCond);
5310 ISD::CondCode NewCond = UOF == 0 ? ISD::SETO : ISD::SETUO;
5311 if (NewCond != Cond &&
5313 isCondCodeLegal(NewCond, N0.getSimpleValueType())))
5314 return DAG.getSetCC(dl, VT, N0, N1, NewCond);