HomeSort by relevance Sort by last modified time
    Searched defs:PHI_iterator (Results 1 - 2 of 2) sorted by null

  /external/llvm/lib/CodeGen/
MachineSSAUpdater.cpp 250 class PHI_iterator {
256 explicit PHI_iterator(MachineInstr *P) // begin iterator
258 PHI_iterator(MachineInstr *P, bool) // end iterator
261 PHI_iterator &operator++() { idx += 2; return *this; }
262 bool operator==(const PHI_iterator& x) const { return idx == x.idx; }
263 bool operator!=(const PHI_iterator& x) const { return !operator==(x); }
269 static inline PHI_iterator PHI_begin(PhiT *PHI) { return PHI_iterator(PHI); }
270 static inline PHI_iterator PHI_end(PhiT *PHI) {
271 return PHI_iterator(PHI, true)
    [all...]
  /external/llvm/lib/Transforms/Utils/
SSAUpdater.cpp 219 class PHI_iterator {
225 explicit PHI_iterator(PHINode *P) // begin iterator
227 PHI_iterator(PHINode *P, bool) // end iterator
230 PHI_iterator &operator++() { ++idx; return *this; }
231 bool operator==(const PHI_iterator& x) const { return idx == x.idx; }
232 bool operator!=(const PHI_iterator& x) const { return !operator==(x); }
237 static PHI_iterator PHI_begin(PhiT *PHI) { return PHI_iterator(PHI); }
238 static PHI_iterator PHI_end(PhiT *PHI) {
239 return PHI_iterator(PHI, true)
    [all...]

Completed in 1820 milliseconds