Home | History | Annotate | Download | only in SelectionDAG

Lines Matching refs:DivRem

3002 /// Issue divrem if both quotient and remainder are needed.
3019 // If DIVREM is going to get expanded into a libcall,
3047 // otherwise, the DIVREM may get target-legalized into something
3135 // If the divisor is constant, then return DIVREM only if isIntDivCheap() is
3139 if (SDValue DivRem = useDivRem(N))
3140 return DivRem;
3267 // If the divisor is constant, then return DIVREM only if isIntDivCheap() is
3271 if (SDValue DivRem = useDivRem(N))
3272 return DivRem;
3376 // speculative DIV must not cause a DIVREM conversion. We guard against this
3378 // combine will not return a DIVREM. Regardless, checking cheapness here
3394 if (SDValue DivRem = useDivRem(N))
3395 return DivRem.getValue(1);