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 67 if (const SCEVAddExpr *Add = dyn_cast<SCEVAddExpr>(S)) {
69 for (SCEVAddExpr::op_iterator OI = Add->op_begin(), OE = Add->op_end();
309 if (const SCEVAddExpr *Add = dyn_cast<SCEVAddExpr>(S)) {
310 for (SCEVAddExpr::op_iterator I = Add->op_begin(), E = Add->op_end();
ScalarEvolutionAliasAnalysis.cpp 95 } else if (const SCEVAddExpr *A = dyn_cast<SCEVAddExpr>(S)) {
ScalarEvolution.cpp 263 return cast<SCEVAddExpr>(this)->getType();
853 if (const SCEVAddExpr *SA = dyn_cast<SCEVAddExpr>(Op)) {
    [all...]
ScalarEvolutionExpander.cpp 325 if (const SCEVAddExpr *Add = dyn_cast<SCEVAddExpr>(Sum))
353 if (const SCEVAddExpr *Add = dyn_cast<SCEVAddExpr>(Start)) {
710 Value *SCEVExpander::visitAddExpr(const SCEVAddExpr *S) {
718 for (std::reverse_iterator<SCEVAddExpr::op_iterator> I(S->op_end()),
    [all...]
DependenceAnalysis.cpp     [all...]
  /external/llvm/include/llvm/Analysis/
ScalarEvolutionExpressions.h 200 /// SCEVAddExpr - This node represents an addition of some number of SCEVs.
202 class SCEVAddExpr : public SCEVCommutativeExpr {
205 SCEVAddExpr(const FoldingSetNodeIDRef ID,
459 return ((SC*)this)->visitAddExpr((const SCEVAddExpr*)S);
580 virtual const SCEV *visitAddExpr(const SCEVAddExpr *Expr) {
ScalarEvolutionExpander.h 210 /// expandAddToGEP - Expand a SCEVAddExpr with a pointer type into a GEP
237 Value *visitAddExpr(const SCEVAddExpr *S);
  /external/llvm/lib/Transforms/Scalar/
LoopStrengthReduce.cpp 285 if (const SCEVAddExpr *Add = dyn_cast<SCEVAddExpr>(S)) {
286 for (SCEVAddExpr::op_iterator I = Add->op_begin(), E = Add->op_end();
446 static bool isAddSExtable(const SCEVAddExpr *A, ScalarEvolution &SE) {
449 return isa<SCEVAddExpr>(SE.getSignExtendExpr(A, WideTy));
516 if (const SCEVAddExpr *Add = dyn_cast<SCEVAddExpr>(LHS)) {
519 for (SCEVAddExpr::op_iterator I = Add->op_begin(), E = Add->op_end();
565 } else if (const SCEVAddExpr *Add = dyn_cast<SCEVAddExpr>(S))
    [all...]
IndVarSimplify.cpp     [all...]

Completed in 181 milliseconds