Home | History | Annotate | Download | only in Utils

Lines Matching refs:PHI_iterator

218   class PHI_iterator {
224 explicit PHI_iterator(PHINode *P) // begin iterator
226 PHI_iterator(PHINode *P, bool) // end iterator
229 PHI_iterator &operator++() { ++idx; return *this; }
230 bool operator==(const PHI_iterator& x) const { return idx == x.idx; }
231 bool operator!=(const PHI_iterator& x) const { return !operator==(x); }
236 static PHI_iterator PHI_begin(PhiT *PHI) { return PHI_iterator(PHI); }
237 static PHI_iterator PHI_end(PhiT *PHI) {
238 return PHI_iterator(PHI, true);