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

Declarations

include/llvm/Analysis/DependenceAnalysis.h
  420       const SCEV *getA() const;

References

lib/Analysis/DependenceAnalysis.cpp
  413       " (" << *getA() << "*X + " << *getB() << "*Y = " << *getC() << ")\n";
  415     OS << " Line is " << *getA() << "*X + " <<
  478     const SCEV *Prod1 = SE->getMulExpr(X->getA(), Y->getB());
  479     const SCEV *Prod2 = SE->getMulExpr(X->getB(), Y->getA());
  498       const SCEV *C1A2 = SE->getMulExpr(X->getC(), Y->getA());
  500       const SCEV *C2A1 = SE->getMulExpr(Y->getC(), X->getA());
  501       const SCEV *A1B2 = SE->getMulExpr(X->getA(), Y->getB());
  502       const SCEV *A2B1 = SE->getMulExpr(Y->getA(), X->getB());
  563     const SCEV *A1X1 = SE->getMulExpr(Y->getA(), X->getX());
 3121   const SCEV *A = CurConstraint.getA();