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

Side by Side Diff: runtime/vm/intermediate_language_ia32.cc

Issue 10458027: Started new compiler for ia32. Getters and setters can be intrinsified within the new compiler. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 8 years, 6 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 | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a 2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file. 3 // BSD-style license that can be found in the LICENSE file.
4 4
5 #include "vm/globals.h" // Needed here to get TARGET_ARCH_IA32. 5 #include "vm/globals.h" // Needed here to get TARGET_ARCH_IA32.
6 #if defined(TARGET_ARCH_IA32) 6 #if defined(TARGET_ARCH_IA32)
7 7
8 #include "vm/flow_graph_compiler.h" 8 #include "vm/flow_graph_compiler.h"
9 #include "vm/locations.h" 9 #include "vm/locations.h"
10 10
11 #define __ compiler->assembler()-> 11 #define __ compiler->assembler()->
12 12
13 namespace dart { 13 namespace dart {
14 14
15 15
16 #define DEFINE_UNIMPLEMENTED(ShortName, ClassName) \ 16 #define DEFINE_UNIMPLEMENTED(ShortName, ClassName) \
17 LocationSummary* ClassName::MakeLocationSummary() const { \
18 UNIMPLEMENTED(); \
19 return NULL; \
20 } \
21 \
22 void ClassName::EmitNativeCode(FlowGraphCompiler* compiler) { \ 17 void ClassName::EmitNativeCode(FlowGraphCompiler* compiler) { \
Florian Schneider 2012/05/30 15:06:24 May also add the empty definitions of EmitNativeCo
srdjan 2012/05/30 16:31:19 Done.
23 UNIMPLEMENTED(); \ 18 UNIMPLEMENTED(); \
24 } 19 }
25 20
26 FOR_EACH_COMPUTATION(DEFINE_UNIMPLEMENTED) 21 FOR_EACH_COMPUTATION(DEFINE_UNIMPLEMENTED)
27 22
28 void BindInstr::EmitNativeCode(FlowGraphCompiler* compiler) { 23 void BindInstr::EmitNativeCode(FlowGraphCompiler* compiler) {
29 UNIMPLEMENTED(); 24 UNIMPLEMENTED();
30 } 25 }
31 26
32 27
28 LocationSummary* CurrentContextComp::MakeLocationSummary() const {
29 return NULL;
30 }
31
32
33 LocationSummary* StoreContextComp::MakeLocationSummary() const {
34 return NULL;
35 }
36
37
38 LocationSummary* StrictCompareComp::MakeLocationSummary() const {
39 return NULL;
40 }
41
42
43 LocationSummary* ClosureCallComp::MakeLocationSummary() const {
44 return NULL;
45 }
46
47
48 LocationSummary* InstanceCallComp::MakeLocationSummary() const {
49 return NULL;
50 }
51
52
53 LocationSummary* StaticCallComp::MakeLocationSummary() const {
54 return NULL;
55 }
56
57
58 LocationSummary* LoadLocalComp::MakeLocationSummary() const {
59 return NULL;
60 }
61
62
63 LocationSummary* StoreLocalComp::MakeLocationSummary() const {
64 return NULL;
65 }
66
67
68 LocationSummary* ConstantVal::MakeLocationSummary() const {
69 return NULL;
70 }
71
72
73 LocationSummary* UseVal::MakeLocationSummary() const {
74 return NULL;
75 }
76
77
78 LocationSummary* AssertAssignableComp::MakeLocationSummary() const {
79 return NULL;
80 }
81
82
83 LocationSummary* AssertBooleanComp::MakeLocationSummary() const {
84 return NULL;
85 }
86
87
88 LocationSummary* EqualityCompareComp::MakeLocationSummary() const {
89 return NULL;
90 }
91
92
93 LocationSummary* NativeCallComp::MakeLocationSummary() const {
94 return NULL;
95 }
96
97
98 LocationSummary* StoreIndexedComp::MakeLocationSummary() const {
99 return NULL;
100 }
101
102
103 LocationSummary* InstanceSetterComp::MakeLocationSummary() const {
104 return NULL;
105 }
106
107
108 LocationSummary* StaticSetterComp::MakeLocationSummary() const {
109 return NULL;
110 }
111
112
113 LocationSummary* LoadInstanceFieldComp::MakeLocationSummary() const {
114 return NULL;
115 }
116
117
118 LocationSummary* StoreInstanceFieldComp::MakeLocationSummary() const {
119 return NULL;
120 }
121
122
123 LocationSummary* LoadStaticFieldComp::MakeLocationSummary() const {
124 return NULL;
125 }
126
127
128 LocationSummary* StoreStaticFieldComp::MakeLocationSummary() const {
129 return NULL;
130 }
131
132
133 LocationSummary* BooleanNegateComp::MakeLocationSummary() const {
134 return NULL;
135 }
136
137
138 LocationSummary* InstanceOfComp::MakeLocationSummary() const {
139 return NULL;
140 }
141
142
143 LocationSummary* CreateArrayComp::MakeLocationSummary() const {
144 return NULL;
145 }
146
147
148 LocationSummary* CreateClosureComp::MakeLocationSummary() const {
149 return NULL;
150 }
151
152
153 LocationSummary* AllocateObjectComp::MakeLocationSummary() const {
154 return NULL;
155 }
156
157
158 LocationSummary*
159 AllocateObjectWithBoundsCheckComp::MakeLocationSummary() const {
160 return NULL;
161 }
162
163
164 LocationSummary* LoadVMFieldComp::MakeLocationSummary() const {
165 return NULL;
166 }
167
168
169 LocationSummary* StoreVMFieldComp::MakeLocationSummary() const {
170 return NULL;
171 }
172
173
174 LocationSummary* InstantiateTypeArgumentsComp::MakeLocationSummary() const {
175 return NULL;
176 }
177
178
179 LocationSummary*
180 ExtractConstructorTypeArgumentsComp::MakeLocationSummary() const {
181 return NULL;
182 }
183
184
185 LocationSummary*
186 ExtractConstructorInstantiatorComp::MakeLocationSummary() const {
187 return NULL;
188 }
189
190
191 LocationSummary* AllocateContextComp::MakeLocationSummary() const {
192 return NULL;
193 }
194
195
196 LocationSummary* ChainContextComp::MakeLocationSummary() const {
197 return NULL;
198 }
199
200
201 LocationSummary* CloneContextComp::MakeLocationSummary() const {
202 return NULL;
203 }
204
205
206 LocationSummary* CatchEntryComp::MakeLocationSummary() const {
207 return NULL;
208 }
209
210
211 LocationSummary* BinaryOpComp::MakeLocationSummary() const {
212 return NULL;
213 }
214
215
33 } // namespace dart 216 } // namespace dart
34 217
35 #undef __ 218 #undef __
36 219
37 #endif // defined TARGET_ARCH_X64 220 #endif // defined TARGET_ARCH_X64
OLDNEW
« runtime/vm/flow_graph_compiler_ia32.cc ('K') | « runtime/vm/flow_graph_compiler_x64.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698