Home | History | Annotate | Download | only in SelectionDAG

Lines Matching refs:SUBC

1094   case ISD::SUBC:               return visitSUBC(N);
1702 // fold (subc x, x) -> 0 + no borrow
1708 // fold (subc x, 0) -> x + no borrow
1727 // fold (sube x, y, false) -> (subc x, y)
1729 return DAG.getNode(ISD::SUBC, N->getDebugLoc(), N->getVTList(), N0, N1);
3199 if (ConstantSDNode *SUBC =
3201 if (SUBC->getAPIntValue() == OpSizeInBits) {
3216 if (ConstantSDNode *SUBC =
3218 if (SUBC->getAPIntValue() == OpSizeInBits) {
3246 if (ConstantSDNode *SUBC =
3248 if (SUBC->getAPIntValue() == OpSizeInBits) {
3260 if (ConstantSDNode *SUBC =
3262 if (SUBC->getAPIntValue() == OpSizeInBits) {
8454 ConstantSDNode *SubC = NULL;
8458 SubC = dyn_cast<ConstantSDNode>(N3.getOperand(0));
8462 SubC = dyn_cast<ConstantSDNode>(N2.getOperand(0));
8465 if (SubC && SubC->isNullValue() && XType.isInteger()) {