Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(103)

Side by Side Diff: src/IceTargetLoweringX8632.cpp

Issue 1571433004: Implements include/exclude register lists for translation. (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Fix nits. Created 4 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « src/IceTargetLoweringMIPS32.cpp ('k') | src/IceTargetLoweringX8664.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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
OLDNEW
« no previous file with comments | « src/IceTargetLoweringMIPS32.cpp ('k') | src/IceTargetLoweringX8664.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698