| 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 // 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 14 matching lines...) Expand all Loading... |
| 25 std::unique_ptr<::Ice::TargetDataLowering> | 25 std::unique_ptr<::Ice::TargetDataLowering> |
| 26 createTargetDataLowering(::Ice::GlobalContext *Ctx) { | 26 createTargetDataLowering(::Ice::GlobalContext *Ctx) { |
| 27 return ::Ice::X8632::TargetDataX8632::create(Ctx); | 27 return ::Ice::X8632::TargetDataX8632::create(Ctx); |
| 28 } | 28 } |
| 29 | 29 |
| 30 std::unique_ptr<::Ice::TargetHeaderLowering> | 30 std::unique_ptr<::Ice::TargetHeaderLowering> |
| 31 createTargetHeaderLowering(::Ice::GlobalContext *Ctx) { | 31 createTargetHeaderLowering(::Ice::GlobalContext *Ctx) { |
| 32 return ::Ice::X8632::TargetHeaderX8632::create(Ctx); | 32 return ::Ice::X8632::TargetHeaderX8632::create(Ctx); |
| 33 } | 33 } |
| 34 | 34 |
| 35 void staticInit(const ::Ice::ClFlags &Flags) { | 35 void staticInit(::Ice::GlobalContext *Ctx) { |
| 36 ::Ice::X8632::TargetX8632::staticInit(Flags); | 36 ::Ice::X8632::TargetX8632::staticInit(Ctx); |
| 37 } | 37 } |
| 38 } // end of namespace X8632 | 38 } // end of namespace X8632 |
| 39 | 39 |
| 40 namespace Ice { | 40 namespace Ice { |
| 41 namespace X8632 { | 41 namespace X8632 { |
| 42 | 42 |
| 43 //------------------------------------------------------------------------------ | 43 //------------------------------------------------------------------------------ |
| 44 // ______ ______ ______ __ ______ ______ | 44 // ______ ______ ______ __ ______ ______ |
| 45 // /\__ _\ /\ == \ /\ __ \ /\ \ /\__ _\ /\ ___\ | 45 // /\__ _\ /\ == \ /\ __ \ /\ \ /\__ _\ /\ ___\ |
| 46 // \/_/\ \/ \ \ __< \ \ __ \ \ \ \ \/_/\ \/ \ \___ \ | 46 // \/_/\ \/ \ \ __< \ \ __ \ \ \ \ \/_/\ \/ \ \___ \ |
| (...skipping 1042 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1089 #define X(tag, sizeLog2, align, elts, elty, str) \ | 1089 #define X(tag, sizeLog2, align, elts, elty, str) \ |
| 1090 static_assert(_table1_##tag == _table2_##tag, \ | 1090 static_assert(_table1_##tag == _table2_##tag, \ |
| 1091 "Inconsistency between ICETYPEX8632_TABLE and ICETYPE_TABLE"); | 1091 "Inconsistency between ICETYPEX8632_TABLE and ICETYPE_TABLE"); |
| 1092 ICETYPE_TABLE | 1092 ICETYPE_TABLE |
| 1093 #undef X | 1093 #undef X |
| 1094 } // end of namespace dummy3 | 1094 } // end of namespace dummy3 |
| 1095 } // end of anonymous namespace | 1095 } // end of anonymous namespace |
| 1096 | 1096 |
| 1097 } // end of namespace X8632 | 1097 } // end of namespace X8632 |
| 1098 } // end of namespace Ice | 1098 } // end of namespace Ice |
| OLD | NEW |