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

References

lib/Transforms/Scalar/IndVarSimplify.cpp
  328       !ConvertToSInt(IncValueVal->getValueAPF(), IncValue))
  393   if (!isInt<32>(InitValue) || !isInt<32>(IncValue) || !isInt<32>(ExitValue))
  397   if (IncValue == 0)
  401   if (IncValue > 0) {
  414     unsigned Leftover = Range % uint32_t(IncValue);
  425     if (Leftover != 0 && int32_t(ExitValue+IncValue) < ExitValue)
  440     unsigned Leftover = Range % uint32_t(-IncValue);
  451     if (Leftover != 0 && int32_t(ExitValue+IncValue) > ExitValue)
  463     BinaryOperator::CreateAdd(NewPHI, ConstantInt::get(Int32Ty, IncValue),