Lines Matching defs:SimpleLoopReduction
210 struct SimpleLoopReduction { struct in __anon9a4a00a80111::LoopReroll
211 SimpleLoopReduction(Instruction *P, Loop *L) : Instructions(1, P) { in SimpleLoopReduction() function
216 bool valid() const { in valid()
220 Instruction *getPHI() const { in getPHI()
225 Instruction *getReducedValue() const { in getReducedValue()
230 Instruction *get(size_t i) const { in get()
235 Instruction *operator [] (size_t i) const { return get(i); } in operator []()
238 size_t size() const { in size()
243 using iterator = SmallInstructionVector::iterator;
244 using const_iterator = SmallInstructionVector::const_iterator;
246 iterator begin() { in begin()
251 const_iterator begin() const { in begin()
256 iterator end() { return Instructions.end(); } in end()
257 const_iterator end() const { return Instructions.end(); } in end()
260 bool Valid = false;
261 SmallInstructionVector Instructions;