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 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 217 class PHI_iterator {
223 explicit PHI_iterator(PHINode *P) // begin iterator
225 PHI_iterator(PHINode *P, bool) // end iterator
228 PHI_iterator &operator++() { ++idx; return *this; }
229 bool operator==(const PHI_iterator& x) const { return idx == x.idx; }
230 bool operator!=(const PHI_iterator& x) const { return !operator==(x); }
235 static PHI_iterator PHI_begin(PhiT *PHI) { return PHI_iterator(PHI); }
236 static PHI_iterator PHI_end(PhiT *PHI) {
237 return PHI_iterator(PHI, true)
    [all...]
  /external/llvm/include/llvm/Transforms/Utils/
SSAUpdaterImpl.h 408 for (typename Traits::PHI_iterator I = Traits::PHI_begin(PHI),

Completed in 73 milliseconds