Home | History | Annotate | Download | only in SelectionDAG

Lines Matching refs:SETLT

3364       // fold (or (setlt X, 0), (setlt Y, 0)) -> (setne (or X, Y), 0)
3366 (Op1 == ISD::SETNE || Op1 == ISD::SETLT)) {
4683 else if ((RHSIsAllZeros && (CC == ISD::SETLT || CC == ISD::SETLE)) &&
11142 if ((CC == ISD::SETLT || CC == ISD::SETLE) &&
11204 // (select_cc setlt X, 0, A, 0) -> (and (sra X, (sub size(X), 1), A)
11205 if (N1C && N3C && N3C->isNullValue() && CC == ISD::SETLT &&
11367 // select_cc setlt X, 1, -X, X ->
11375 else if (((N1C->isNullValue() && (CC == ISD::SETLT || CC == ISD::SETLE)) ||
11376 (N1C->isOne() && CC == ISD::SETLT)) &&