Home | History | Annotate | Download | only in SelectionDAG

Lines Matching refs:SUBC

1201   case ISD::SUBC:               return visitSUBC(N);
1831 // fold (subc x, x) -> 0 + no borrow
1837 // fold (subc x, 0) -> x + no borrow
1856 // fold (sube x, y, false) -> (subc x, y)
1858 return DAG.getNode(ISD::SUBC, SDLoc(N), N->getVTList(), N0, N1);
11370 ConstantSDNode *SubC = nullptr;
11374 SubC = dyn_cast<ConstantSDNode>(N3.getOperand(0));
11378 SubC = dyn_cast<ConstantSDNode>(N2.getOperand(0));
11381 if (SubC && SubC->isNullValue() && XType.isInteger()) {