Home | History | Annotate | Download | only in SelectionDAG

Lines Matching refs:DivRem

2152 /// Issue divrem if both quotient and remainder are needed.
2169 // If DIVREM is going to get expanded into a libcall,
2196 // otherwise, the DIVREM may get target-legalized into something
2305 // If the divisor is constant, then return DIVREM only if isIntDivCheap() is true.
2308 if (SDValue DivRem = useDivRem(N))
2309 return DivRem;
2369 // If the divisor is constant, then return DIVREM only if isIntDivCheap() is true.
2372 if (SDValue DivRem = useDivRem(N))
2373 return DivRem;
2433 // call for the speculative DIV must not cause a DIVREM conversion. We guard
2435 // div is not cheap, combine will not return a DIVREM. Regardless,
2454 if (SDValue DivRem = useDivRem(N))
2455 return DivRem.getValue(1);