Home
last modified time | relevance | path

Searched defs:IVChain (Results 1 – 1 of 1) sorted by relevance

/external/llvm/lib/Transforms/Scalar/
DLoopStrengthReduce.cpp1606 struct IVChain { struct
1607 SmallVector<IVInc,1> Incs;
1608 const SCEV *ExprBase;
1610 IVChain() : ExprBase(nullptr) {} in IVChain() function
1612 IVChain(const IVInc &Head, const SCEV *Base) in IVChain() argument
1615 typedef SmallVectorImpl<IVInc>::const_iterator const_iterator;
1618 const_iterator begin() const { in begin()
1622 const_iterator end() const { in end()
1627 bool hasIncs() const { return Incs.size() >= 2; } in hasIncs()
1630 void add(const IVInc &X) { Incs.push_back(X); } in add()
[all …]