reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

lib/Support/APInt.cpp
 1763   assert(LHS.BitWidth == RHS.BitWidth && "Bit widths must be the same");
 1768     assert(RHS.U.VAL != 0 && "Divide by zero?");
 1769     uint64_t QuotVal = LHS.U.VAL / RHS.U.VAL;
 1770     uint64_t RemVal = LHS.U.VAL % RHS.U.VAL;
 1778   unsigned rhsBits  = RHS.getActiveBits();
 1794   if (lhsWords < rhsWords || LHS.ult(RHS)) {
 1800   if (LHS == RHS) {
 1816     uint64_t rhsValue = RHS.U.pVal[0];
 1823   divide(LHS.U.pVal, lhsWords, RHS.U.pVal, rhsWords, Quotient.U.pVal,