Lines Matching defs:CC0
5965 ISD::CondCode CC0 = cast<CondCodeSDNode>(N0CC)->get();
5968 if (LR == RR && CC0 == CC1 && IsInteger) {
6013 if (IsAnd && LL == RL && CC0 == CC1 && OpVT.getScalarSizeInBits() > 1 &&
6014 IsInteger && CC0 == ISD::SETNE &&
6026 if (IsInteger && TLI.convertSetCCLogicToBitwiseLogic(OpVT) && CC0 == CC1 &&
6059 return DAG.getSetCC(DL, VT, And, Zero, CC0);
6070 // (and (setcc X, Y, CC0), (setcc X, Y, CC1)) --> (setcc X, Y, NewCC)
6071 // (or (setcc X, Y, CC0), (setcc X, Y, CC1)) --> (setcc X, Y, NewCC)
6073 ISD::CondCode NewCC = IsAnd ? ISD::getSetCCAndOperation(CC0, CC1, OpVT)
6074 : ISD::getSetCCOrOperation(CC0, CC1, OpVT);