| OLD | NEW |
| 1 //===- subzero/src/IceTargetLoweringX8664.cpp - x86-64 lowering -----------===// | 1 //===- subzero/src/IceTargetLoweringX8664.cpp - x86-64 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::X8664::TargetDataX8664::create(Ctx); | 27 return ::Ice::X8664::TargetDataX8664::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::X8664::TargetHeaderX8664::create(Ctx); | 32 return ::Ice::X8664::TargetHeaderX8664::create(Ctx); |
| 33 } | 33 } |
| 34 | 34 |
| 35 void staticInit(const ::Ice::ClFlags &Flags) { | 35 void staticInit(::Ice::GlobalContext *Ctx) { |
| 36 ::Ice::X8664::TargetX8664::staticInit(Flags); | 36 ::Ice::X8664::TargetX8664::staticInit(Ctx); |
| 37 } | 37 } |
| 38 } // end of namespace X8664 | 38 } // end of namespace X8664 |
| 39 | 39 |
| 40 namespace Ice { | 40 namespace Ice { |
| 41 namespace X8664 { | 41 namespace X8664 { |
| 42 | 42 |
| 43 //------------------------------------------------------------------------------ | 43 //------------------------------------------------------------------------------ |
| 44 // ______ ______ ______ __ ______ ______ | 44 // ______ ______ ______ __ ______ ______ |
| 45 // /\__ _\ /\ == \ /\ __ \ /\ \ /\__ _\ /\ ___\ | 45 // /\__ _\ /\ == \ /\ __ \ /\ \ /\__ _\ /\ ___\ |
| 46 // \/_/\ \/ \ \ __< \ \ __ \ \ \ \ \/_/\ \/ \ \___ \ | 46 // \/_/\ \/ \ \ __< \ \ __ \ \ \ \ \/_/\ \/ \ \___ \ |
| (...skipping 1378 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1425 #define X(tag, sizeLog2, align, elts, elty, str) \ | 1425 #define X(tag, sizeLog2, align, elts, elty, str) \ |
| 1426 static_assert(_table1_##tag == _table2_##tag, \ | 1426 static_assert(_table1_##tag == _table2_##tag, \ |
| 1427 "Inconsistency between ICETYPEX8664_TABLE and ICETYPE_TABLE"); | 1427 "Inconsistency between ICETYPEX8664_TABLE and ICETYPE_TABLE"); |
| 1428 ICETYPE_TABLE | 1428 ICETYPE_TABLE |
| 1429 #undef X | 1429 #undef X |
| 1430 } // end of namespace dummy3 | 1430 } // end of namespace dummy3 |
| 1431 } // end of anonymous namespace | 1431 } // end of anonymous namespace |
| 1432 | 1432 |
| 1433 } // end of namespace X8664 | 1433 } // end of namespace X8664 |
| 1434 } // end of namespace Ice | 1434 } // end of namespace Ice |
| OLD | NEW |