Searched defs:IVChain (Results 1 – 1 of 1) sorted by relevance
1606 struct IVChain { struct1607 SmallVector<IVInc,1> Incs;1608 const SCEV *ExprBase;1610 IVChain() : ExprBase(nullptr) {} in IVChain() function1612 IVChain(const IVInc &Head, const SCEV *Base) in IVChain() argument1615 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 …]