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

Declarations

include/llvm/Analysis/DependenceAnalysis.h
  428       const SCEV *getC() const;

References

lib/Analysis/DependenceAnalysis.cpp
  413       " (" << *getA() << "*X + " << *getB() << "*Y = " << *getC() << ")\n";
  416       *getB() << "*Y = " << *getC() << "\n";
  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());
  498       const SCEV *C1A2 = SE->getMulExpr(X->getC(), Y->getA());
  499       const SCEV *C2B1 = SE->getMulExpr(Y->getC(), X->getB());
  500       const SCEV *C2A1 = SE->getMulExpr(Y->getC(), X->getA());
  566     if (isKnownPredicate(CmpInst::ICMP_EQ, Sum, Y->getC()))
  568     if (isKnownPredicate(CmpInst::ICMP_NE, Sum, Y->getC())) {
 3123   const SCEV *C = CurConstraint.getC();