| 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 // This file declares the TargetLoweringX8632 class, which | 10 // This file declares the TargetLoweringX8632 class, which |
| 11 // implements the TargetLowering interface for the x86-32 | 11 // implements the TargetLowering interface for the x86-32 |
| 12 // architecture. | 12 // architecture. |
| 13 // | 13 // |
| 14 //===----------------------------------------------------------------------===// | 14 //===----------------------------------------------------------------------===// |
| 15 | 15 |
| 16 #ifndef SUBZERO_SRC_ICETARGETLOWERINGX8632_H | 16 #ifndef SUBZERO_SRC_ICETARGETLOWERINGX8632_H |
| 17 #define SUBZERO_SRC_ICETARGETLOWERINGX8632_H | 17 #define SUBZERO_SRC_ICETARGETLOWERINGX8632_H |
| 18 | 18 |
| 19 #include <unordered_map> | 19 #include <unordered_map> |
| 20 | 20 |
| 21 #include "assembler_ia32.h" | 21 #include "IceAssemblerX8632.h" |
| 22 #include "IceDefs.h" | 22 #include "IceDefs.h" |
| 23 #include "IceInst.h" | 23 #include "IceInst.h" |
| 24 #include "IceInstX8632.h" | 24 #include "IceInstX8632.h" |
| 25 #include "IceRegistersX8632.h" | 25 #include "IceRegistersX8632.h" |
| 26 #include "IceTargetLowering.h" | 26 #include "IceTargetLowering.h" |
| 27 | 27 |
| 28 namespace Ice { | 28 namespace Ice { |
| 29 | 29 |
| 30 class BoolFoldingEntry { | 30 class BoolFoldingEntry { |
| 31 BoolFoldingEntry(const BoolFoldingEntry &) = delete; | 31 BoolFoldingEntry(const BoolFoldingEntry &) = delete; |
| (...skipping 561 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 593 | 593 |
| 594 private: | 594 private: |
| 595 void lowerGlobal(const VariableDeclaration &Var) const; | 595 void lowerGlobal(const VariableDeclaration &Var) const; |
| 596 ~TargetDataX8632() override {} | 596 ~TargetDataX8632() override {} |
| 597 template <typename T> static void emitConstantPool(GlobalContext *Ctx); | 597 template <typename T> static void emitConstantPool(GlobalContext *Ctx); |
| 598 }; | 598 }; |
| 599 | 599 |
| 600 } // end of namespace Ice | 600 } // end of namespace Ice |
| 601 | 601 |
| 602 #endif // SUBZERO_SRC_ICETARGETLOWERINGX8632_H | 602 #endif // SUBZERO_SRC_ICETARGETLOWERINGX8632_H |
| OLD | NEW |