| OLD | NEW |
| 1 //===- subzero/src/IceInst.h - High-level instructions ----------*- C++ -*-===// | 1 //===- subzero/src/IceInst.h - High-level instructions ----------*- C++ -*-===// |
| 2 // | 2 // |
| 3 // The Subzero Code Generator | 3 // The Subzero Code Generator |
| 4 // | 4 // |
| 5 // This file is distributed under the University of Illinois Open Source | 5 // This file is distributed under the University of Illinois Open Source |
| 6 // License. See LICENSE.TXT for details. | 6 // License. See LICENSE.TXT for details. |
| 7 // | 7 // |
| 8 //===----------------------------------------------------------------------===// | 8 //===----------------------------------------------------------------------===// |
| 9 /// | 9 /// |
| 10 /// \file | 10 /// \file |
| (...skipping 1113 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1124 Ice::Inst *ensureHead(Ice::Inst *) const { return createSentinel(); } | 1124 Ice::Inst *ensureHead(Ice::Inst *) const { return createSentinel(); } |
| 1125 static void noteHead(Ice::Inst *, Ice::Inst *) {} | 1125 static void noteHead(Ice::Inst *, Ice::Inst *) {} |
| 1126 void deleteNode(Ice::Inst *) {} | 1126 void deleteNode(Ice::Inst *) {} |
| 1127 | 1127 |
| 1128 private: | 1128 private: |
| 1129 mutable ilist_half_node<Ice::Inst> Sentinel; | 1129 mutable ilist_half_node<Ice::Inst> Sentinel; |
| 1130 }; | 1130 }; |
| 1131 | 1131 |
| 1132 } // end of namespace llvm | 1132 } // end of namespace llvm |
| 1133 | 1133 |
| 1134 namespace Ice { |
| 1135 |
| 1136 inline InstList::iterator instToIterator(Inst *Instr) { |
| 1137 #ifdef PNACL_LLVM |
| 1138 return Instr; |
| 1139 #else // !PNACL_LLVM |
| 1140 return Instr->getIterator(); |
| 1141 #endif // !PNACL_LLVM |
| 1142 } |
| 1143 |
| 1144 inline Inst *iteratorToInst(InstList::iterator Iter) { return &*Iter; } |
| 1145 |
| 1146 inline const Inst *iteratorToInst(InstList::const_iterator Iter) { |
| 1147 return &*Iter; |
| 1148 } |
| 1149 |
| 1150 } // end of namespace Ice |
| 1151 |
| 1134 #endif // SUBZERO_SRC_ICEINST_H | 1152 #endif // SUBZERO_SRC_ICEINST_H |
| OLD | NEW |