Chromium Code Reviews| 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 |
| 11 /// This file declares the Inst class and its target-independent | 11 /// \brief Declares the Inst class and its target-independent subclasses. |
| 12 /// subclasses, which represent the high-level Vanilla ICE instructions | 12 /// |
| 13 /// and map roughly 1:1 to LLVM instructions. | 13 /// These represent the high-level Vanilla ICE instructions and map roughly 1:1 to |
|
Jim Stichnoth
2015/12/01 18:41:16
80-col
rkotlerimgtec
2015/12/02 01:32:48
Done.
| |
| 14 /// LLVM instructions. | |
| 14 /// | 15 /// |
| 15 //===----------------------------------------------------------------------===// | 16 //===----------------------------------------------------------------------===// |
| 16 | 17 |
| 17 #ifndef SUBZERO_SRC_ICEINST_H | 18 #ifndef SUBZERO_SRC_ICEINST_H |
| 18 #define SUBZERO_SRC_ICEINST_H | 19 #define SUBZERO_SRC_ICEINST_H |
| 19 | 20 |
| 20 #include "IceCfg.h" | 21 #include "IceCfg.h" |
| 21 #include "IceDefs.h" | 22 #include "IceDefs.h" |
| 22 #include "IceInst.def" | 23 #include "IceInst.def" |
| 23 #include "IceIntrinsics.h" | 24 #include "IceIntrinsics.h" |
| (...skipping 961 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 985 static void noteHead(Ice::Inst *, Ice::Inst *) {} | 986 static void noteHead(Ice::Inst *, Ice::Inst *) {} |
| 986 void deleteNode(Ice::Inst *) {} | 987 void deleteNode(Ice::Inst *) {} |
| 987 | 988 |
| 988 private: | 989 private: |
| 989 mutable ilist_half_node<Ice::Inst> Sentinel; | 990 mutable ilist_half_node<Ice::Inst> Sentinel; |
| 990 }; | 991 }; |
| 991 | 992 |
| 992 } // end of namespace llvm | 993 } // end of namespace llvm |
| 993 | 994 |
| 994 #endif // SUBZERO_SRC_ICEINST_H | 995 #endif // SUBZERO_SRC_ICEINST_H |
| OLD | NEW |