HomeSort by relevance Sort by last modified time
    Searched refs:SCEVAddExpr (Results 1 - 9 of 9) sorted by null

  /external/llvm/lib/Analysis/
IVUsers.cpp 71 if (const SCEVAddExpr *Add = dyn_cast<SCEVAddExpr>(S)) {
73 for (SCEVAddExpr::op_iterator OI = Add->op_begin(), OE = Add->op_end();
347 if (const SCEVAddExpr *Add = dyn_cast<SCEVAddExpr>(S)) {
348 for (SCEVAddExpr::op_iterator I = Add->op_begin(), E = Add->op_end();
ScalarEvolutionAliasAnalysis.cpp 101 } else if (const SCEVAddExpr *A = dyn_cast<SCEVAddExpr>(S)) {
ScalarEvolution.cpp 257 return cast<SCEVAddExpr>(this)->getType();
799 void visitAddExpr(const SCEVAddExpr *Numerator) {
    [all...]
ScalarEvolutionExpander.cpp 317 if (const SCEVAddExpr *Add = dyn_cast<SCEVAddExpr>(Sum))
344 if (const SCEVAddExpr *Add = dyn_cast<SCEVAddExpr>(Start)) {
670 Value *SCEVExpander::visitAddExpr(const SCEVAddExpr *S) {
678 for (std::reverse_iterator<SCEVAddExpr::op_iterator> I(S->op_end()),
814 if (const SCEVAddExpr *A = dyn_cast<SCEVAddExpr>(Base)) {
    [all...]
DependenceAnalysis.cpp     [all...]
  /external/llvm/lib/Transforms/Scalar/
AlignmentFromAssumptions.cpp 277 } else if (const SCEVAddExpr* AndLHSAddSCEV =
278 dyn_cast<SCEVAddExpr>(AndLHSSCEV)) {
280 for (SCEVAddExpr::op_iterator J = AndLHSAddSCEV->op_begin(),
LoopStrengthReduce.cpp 318 if (const SCEVAddExpr *Add = dyn_cast<SCEVAddExpr>(S)) {
517 static bool isAddSExtable(const SCEVAddExpr *A, ScalarEvolution &SE) {
520 return isa<SCEVAddExpr>(SE.getSignExtendExpr(A, WideTy));
586 if (const SCEVAddExpr *Add = dyn_cast<SCEVAddExpr>(LHS)) {
630 } else if (const SCEVAddExpr *Add = dyn_cast<SCEVAddExpr>(S)) {
656 } else if (const SCEVAddExpr *Add = dyn_cast<SCEVAddExpr>(S))
    [all...]
  /external/llvm/include/llvm/Analysis/
ScalarEvolutionExpressions.h 206 /// SCEVAddExpr - This node represents an addition of some number of SCEVs.
208 class SCEVAddExpr : public SCEVCommutativeExpr {
211 SCEVAddExpr(const FoldingSetNodeIDRef ID,
464 return ((SC*)this)->visitAddExpr((const SCEVAddExpr*)S);
584 const SCEV *visitAddExpr(const SCEVAddExpr *Expr) {
ScalarEvolutionExpander.h 251 /// \brief Expand a SCEVAddExpr with a pointer type into a GEP
278 Value *visitAddExpr(const SCEVAddExpr *S);

Completed in 44 milliseconds