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

References

lib/Analysis/ScalarEvolutionExpander.cpp
  252     S = SE.getConstant(S->getType(), 1);
  264           ConstantInt::get(SE.getContext(), C->getAPInt().sdiv(FC->getAPInt()));
  269         const SCEV *Div = SE.getConstant(CI);
  271         Remainder = SE.getAddExpr(
  272             Remainder, SE.getConstant(C->getAPInt().srem(FC->getAPInt())));
  287         NewMulOps[0] = SE.getConstant(C->getAPInt().sdiv(FC->getAPInt()));
  288         S = SE.getMulExpr(NewMulOps);
  295     const SCEV *Step = A->getStepRecurrence(SE);
  296     const SCEV *StepRem = SE.getConstant(Step->getType(), 0);
  297     if (!FactorOutConstant(Step, StepRem, Factor, SE, DL))
  302     if (!FactorOutConstant(Start, Remainder, Factor, SE, DL))
  304     S = SE.getAddRecExpr(Start, Step, A->getLoop(),