Searched defs:IVChain (Results 1 – 1 of 1) sorted by relevance
1609 struct IVChain { struct1610 SmallVector<IVInc,1> Incs;1611 const SCEV *ExprBase;1613 IVChain() : ExprBase(nullptr) {} in IVChain() argument1615 IVChain(const IVInc &Head, const SCEV *Base) in IVChain() function1618 typedef SmallVectorImpl<IVInc>::const_iterator const_iterator;1621 const_iterator begin() const { in begin()1625 const_iterator end() const { in end()1630 bool hasIncs() const { return Incs.size() >= 2; } in hasIncs()1633 void add(const IVInc &X) { Incs.push_back(X); } in add()[all …]