Home
last modified time | relevance | path

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

/minix3/external/bsd/llvm/dist/llvm/lib/Transforms/Scalar/
H A DLoopStrengthReduce.cpp1609 struct IVChain { struct
1610 SmallVector<IVInc,1> Incs;
1611 const SCEV *ExprBase;
1613 IVChain() : ExprBase(nullptr) {} in IVChain() argument
1615 IVChain(const IVInc &Head, const SCEV *Base) in IVChain() function
1618 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 …]