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

  /external/llvm/lib/CodeGen/
MachineSSAUpdater.cpp 258 class PHI_iterator {
264 explicit PHI_iterator(MachineInstr *P) // begin iterator
266 PHI_iterator(MachineInstr *P, bool) // end iterator
269 PHI_iterator &operator++() { idx += 2; return *this; }
270 bool operator==(const PHI_iterator& x) const { return idx == x.idx; }
271 bool operator!=(const PHI_iterator& x) const { return !operator==(x); }
277 static inline PHI_iterator PHI_begin(PhiT *PHI) { return PHI_iterator(PHI); }
278 static inline PHI_iterator PHI_end(PhiT *PHI) {
279 return PHI_iterator(PHI, true)
    [all...]
  /external/llvm/lib/Transforms/Utils/
SSAUpdater.cpp 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)
    [all...]
  /external/llvm/include/llvm/Transforms/Utils/
SSAUpdaterImpl.h 406 for (typename Traits::PHI_iterator I = Traits::PHI_begin(PHI),

Completed in 2853 milliseconds