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

References

lib/Transforms/Scalar/Reassociate.cpp
  315   if (LHS.isMinValue()) {
  316     LHS = RHS;
  325     assert(LHS == 1 && RHS == 1 && "Weights not reduced!");
  330     assert(LHS == 1 && RHS == 1 && "Weights not reduced!");
  331     LHS = 0; // 1 + 1 === 0 modulo 2.
  336     LHS += RHS;
  342   unsigned Bitwidth = LHS.getBitWidth();
  357     assert(LHS.ult(Threshold) && RHS.ult(Threshold) && "Weights not reduced!");
  359     LHS += RHS;
  360     while (LHS.uge(Threshold))
  361       LHS -= CM;
  367     assert(LHS.getZExtValue() < Threshold && RHS.getZExtValue() < Threshold &&
  369     unsigned Total = LHS.getZExtValue() + RHS.getZExtValue();
  372     LHS = Total;