Lines Matching defs:CC0
6109 ISD::CondCode CC0 = cast<CondCodeSDNode>(N0CC)->get();
6112 if (LR == RR && CC0 == CC1 && IsInteger) {
6157 if (IsAnd && LL == RL && CC0 == CC1 && OpVT.getScalarSizeInBits() > 1 &&
6158 IsInteger && CC0 == ISD::SETNE &&
6170 if (IsInteger && TLI.convertSetCCLogicToBitwiseLogic(OpVT) && CC0 == CC1 &&
6203 return DAG.getSetCC(DL, VT, And, Zero, CC0);
6214 // (and (setcc X, Y, CC0), (setcc X, Y, CC1)) --> (setcc X, Y, NewCC)
6215 // (or (setcc X, Y, CC0), (setcc X, Y, CC1)) --> (setcc X, Y, NewCC)
6217 ISD::CondCode NewCC = IsAnd ? ISD::getSetCCAndOperation(CC0, CC1, OpVT)
6218 : ISD::getSetCCOrOperation(CC0, CC1, OpVT);