Home | History | Annotate | Download | only in SelectionDAG

Lines Matching refs:CC0

3845   ISD::CondCode CC0 = cast<CondCodeSDNode>(N0CC)->get();
3848 if (LR == RR && CC0 == CC1 && IsInteger) {
3893 if (IsAnd && LL == RL && CC0 == CC1 && OpVT.getScalarSizeInBits() > 1 &&
3894 IsInteger && CC0 == ISD::SETNE &&
3906 if (IsInteger && TLI.convertSetCCLogicToBitwiseLogic(OpVT) && CC0 == CC1 &&
3925 // (and (setcc X, Y, CC0), (setcc X, Y, CC1)) --> (setcc X, Y, NewCC)
3926 // (or (setcc X, Y, CC0), (setcc X, Y, CC1)) --> (setcc X, Y, NewCC)
3928 ISD::CondCode NewCC = IsAnd ? ISD::getSetCCAndOperation(CC0, CC1, IsInteger)
3929 : ISD::getSetCCOrOperation(CC0, CC1, IsInteger);