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

Declarations

include/llvm/Analysis/DependenceAnalysis.h
  424       const SCEV *getB() const;

References

lib/Analysis/DependenceAnalysis.cpp
  413       " (" << *getA() << "*X + " << *getB() << "*Y = " << *getC() << ")\n";
  416       *getB() << "*Y = " << *getC() << "\n";
  478     const SCEV *Prod1 = SE->getMulExpr(X->getA(), Y->getB());
  479     const SCEV *Prod2 = SE->getMulExpr(X->getB(), Y->getA());
  483       Prod1 = SE->getMulExpr(X->getC(), Y->getB());
  484       Prod2 = SE->getMulExpr(X->getB(), Y->getC());
  497       const SCEV *C1B2 = SE->getMulExpr(X->getC(), Y->getB());
  499       const SCEV *C2B1 = SE->getMulExpr(Y->getC(), X->getB());
  501       const SCEV *A1B2 = SE->getMulExpr(X->getA(), Y->getB());
  502       const SCEV *A2B1 = SE->getMulExpr(Y->getA(), X->getB());
  564     const SCEV *B1Y1 = SE->getMulExpr(Y->getB(), X->getY());
 3122   const SCEV *B = CurConstraint.getB();