Lines Matching full:sdiv
1106 case ISD::SDIV: return visitSDIV(N);
1866 // fold (sdiv c1, c2) -> c1/c2
1868 return DAG.FoldConstantArithmetic(ISD::SDIV, VT, N0C, N1C);
1869 // fold (sdiv X, 1) -> X
1872 // fold (sdiv X, -1) -> 0-X
1883 // fold (sdiv X, pow2) -> simple ops after legalize
2009 SDValue Div = DAG.getNode(ISD::SDIV, N->getDebugLoc(), VT, N0, N1);
2295 SDValue Res = SimplifyNodeWithTwoResults(N, ISD::SDIV, ISD::SREM);
9292 if (N->getOpcode() == ISD::SDIV || N->getOpcode() == ISD::UDIV ||
9807 /// BuildSDIVSequence - Given an ISD::SDIV node expressing a divide by constant,