Lines Matching defs:PHI_iterator
274 class PHI_iterator {
280 explicit PHI_iterator(MachineInstr *P) // begin iterator
282 PHI_iterator(MachineInstr *P, bool) // end iterator
285 PHI_iterator &operator++() { idx += 2; return *this; }
286 bool operator==(const PHI_iterator& x) const { return idx == x.idx; }
287 bool operator!=(const PHI_iterator& x) const { return !operator==(x); }
296 static inline PHI_iterator PHI_begin(PhiT *PHI) { return PHI_iterator(PHI); }
298 static inline PHI_iterator PHI_end(PhiT *PHI) {
299 return PHI_iterator(PHI, true);