| OLD | NEW |
| 1 //===- subzero/src/IceTargetLoweringX8632.h - x86-32 lowering ---*- C++ -*-===// | 1 //===- subzero/src/IceTargetLoweringX8632.h - x86-32 lowering ---*- 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 TargetLoweringX8632 class, which | 11 /// This file declares the TargetLoweringX8632 class, which implements the |
| 12 /// implements the TargetLowering interface for the x86-32 | 12 /// TargetLowering interface for the x86-32 architecture. |
| 13 /// architecture. | |
| 14 /// | 13 /// |
| 15 //===----------------------------------------------------------------------===// | 14 //===----------------------------------------------------------------------===// |
| 16 | 15 |
| 17 #ifndef SUBZERO_SRC_ICETARGETLOWERINGX8632_H | 16 #ifndef SUBZERO_SRC_ICETARGETLOWERINGX8632_H |
| 18 #define SUBZERO_SRC_ICETARGETLOWERINGX8632_H | 17 #define SUBZERO_SRC_ICETARGETLOWERINGX8632_H |
| 19 | 18 |
| 20 #include "IceAssemblerX8632.h" | 19 #include "IceAssemblerX8632.h" |
| 21 #include "IceDefs.h" | 20 #include "IceDefs.h" |
| 22 #include "IceInstX8632.h" | 21 #include "IceInstX8632.h" |
| 23 #include "IceRegistersX8632.h" | 22 #include "IceRegistersX8632.h" |
| (...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 98 protected: | 97 protected: |
| 99 explicit TargetHeaderX8632(GlobalContext *Ctx); | 98 explicit TargetHeaderX8632(GlobalContext *Ctx); |
| 100 | 99 |
| 101 private: | 100 private: |
| 102 ~TargetHeaderX8632() = default; | 101 ~TargetHeaderX8632() = default; |
| 103 }; | 102 }; |
| 104 | 103 |
| 105 } // end of namespace Ice | 104 } // end of namespace Ice |
| 106 | 105 |
| 107 #endif // SUBZERO_SRC_ICETARGETLOWERINGX8632_H | 106 #endif // SUBZERO_SRC_ICETARGETLOWERINGX8632_H |
| OLD | NEW |