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();
331 if (const SCEVAddExpr *Add = dyn_cast<SCEVAddExpr>(S)) {
332 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 262 return cast<SCEVAddExpr>(this)->getType();
855 if (const SCEVAddExpr *SA = dyn_cast<SCEVAddExpr>(Op)) {
    [all...]
ScalarEvolutionExpander.cpp 321 if (const SCEVAddExpr *Add = dyn_cast<SCEVAddExpr>(Sum))
348 if (const SCEVAddExpr *Add = dyn_cast<SCEVAddExpr>(Start)) {
702 Value *SCEVExpander::visitAddExpr(const SCEVAddExpr *S) {
710 for (std::reverse_iterator<SCEVAddExpr::op_iterator> I(S->op_end()),
    [all...]
DependenceAnalysis.cpp     [all...]
  /external/llvm/include/llvm/Analysis/
ScalarEvolutionExpressions.h 205 /// SCEVAddExpr - This node represents an addition of some number of SCEVs.
207 class SCEVAddExpr : public SCEVCommutativeExpr {
210 SCEVAddExpr(const FoldingSetNodeIDRef ID,
541 return ((SC*)this)->visitAddExpr((const SCEVAddExpr*)S);
670 const SCEV *visitAddExpr(const SCEVAddExpr *Expr) {
766 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 300 if (const SCEVAddExpr *Add = dyn_cast<SCEVAddExpr>(S)) {
301 for (SCEVAddExpr::op_iterator I = Add->op_begin(), E = Add->op_end();
507 static bool isAddSExtable(const SCEVAddExpr *A, ScalarEvolution &SE) {
510 return isa<SCEVAddExpr>(SE.getSignExtendExpr(A, WideTy));
577 if (const SCEVAddExpr *Add = dyn_cast<SCEVAddExpr>(LHS)) {
580 for (SCEVAddExpr::op_iterator I = Add->op_begin(), E = Add->op_end();
626 } else if (const SCEVAddExpr *Add = dyn_cast<SCEVAddExpr>(S))
    [all...]
IndVarSimplify.cpp     [all...]

Completed in 123 milliseconds