| OLD | NEW |
| 1 //===- subzero/src/IceTargetLoweringX8632.cpp - x86-32 lowering -----------===// | 1 //===- subzero/src/IceTargetLoweringX8632.cpp - x86-32 lowering -----------===// |
| 2 // | 2 // |
| 3 // The Subzero Code Generator | 3 // The Subzero Code Generator |
| 4 // | 4 // |
| 5 //===----------------------------------------------------------------------===// | 5 //===----------------------------------------------------------------------===// |
| 6 // | 6 /// |
| 7 // This file implements the TargetLoweringX8632 class, which | 7 /// \file |
| 8 // consists almost entirely of the lowering sequence for each | 8 /// This file implements the TargetLoweringX8632 class, which |
| 9 // high-level instruction. | 9 /// consists almost entirely of the lowering sequence for each |
| 10 // | 10 /// high-level instruction. |
| 11 /// |
| 11 //===----------------------------------------------------------------------===// | 12 //===----------------------------------------------------------------------===// |
| 12 | 13 |
| 13 #include "IceTargetLoweringX8632.h" | 14 #include "IceTargetLoweringX8632.h" |
| 14 | 15 |
| 15 #include "IceTargetLoweringX86Base.h" | 16 #include "IceTargetLoweringX86Base.h" |
| 16 | 17 |
| 17 namespace Ice { | 18 namespace Ice { |
| 18 namespace X86Internal { | 19 namespace X86Internal { |
| 19 template <> struct MachineTraits<TargetX8632> { | 20 template <> struct MachineTraits<TargetX8632> { |
| 20 using InstructionSet = TargetX8632::X86InstructionSet; | 21 using InstructionSet = TargetX8632::X86InstructionSet; |
| (...skipping 402 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 423 // entries in case the high-level table has extra entries. | 424 // entries in case the high-level table has extra entries. |
| 424 #define X(tag, size, align, elts, elty, str) \ | 425 #define X(tag, size, align, elts, elty, str) \ |
| 425 static_assert(_table1_##tag == _table2_##tag, \ | 426 static_assert(_table1_##tag == _table2_##tag, \ |
| 426 "Inconsistency between ICETYPEX8632_TABLE and ICETYPE_TABLE"); | 427 "Inconsistency between ICETYPEX8632_TABLE and ICETYPE_TABLE"); |
| 427 ICETYPE_TABLE | 428 ICETYPE_TABLE |
| 428 #undef X | 429 #undef X |
| 429 } // end of namespace dummy3 | 430 } // end of namespace dummy3 |
| 430 } // end of anonymous namespace | 431 } // end of anonymous namespace |
| 431 | 432 |
| 432 } // end of namespace Ice | 433 } // end of namespace Ice |
| OLD | NEW |