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

Side by Side Diff: vm/intermediate_language_ia32.cc

Issue 10407082: Reland: Migrate {Closure,Instance,Static}Call to use location-based code generation templates. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/runtime/
Patch Set: Created 8 years, 7 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
« no previous file with comments | « vm/intermediate_language.h ('k') | vm/intermediate_language_x64.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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
(...skipping 11 matching lines...) Expand all
22 void StrictCompareComp::EmitNativeCode(FlowGraphCompiler* compiler) { 22 void StrictCompareComp::EmitNativeCode(FlowGraphCompiler* compiler) {
23 UNIMPLEMENTED(); 23 UNIMPLEMENTED();
24 } 24 }
25 25
26 26
27 void BindInstr::EmitNativeCode(FlowGraphCompiler* compiler) { 27 void BindInstr::EmitNativeCode(FlowGraphCompiler* compiler) {
28 UNIMPLEMENTED(); 28 UNIMPLEMENTED();
29 } 29 }
30 30
31 31
32 LocationSummary* ClosureCallComp::MakeLocationSummary() {
33 UNIMPLEMENTED();
34 return NULL;
35 }
36
37
38 void ClosureCallComp::EmitNativeCode(FlowGraphCompiler* compiler) {
39 UNIMPLEMENTED();
40 }
41
42
43 LocationSummary* InstanceCallComp::MakeLocationSummary() {
44 UNIMPLEMENTED();
45 return NULL;
46 }
47
48
49 void InstanceCallComp::EmitNativeCode(FlowGraphCompiler* compiler) {
50 UNIMPLEMENTED();
51 }
52
53
54 LocationSummary* StaticCallComp::MakeLocationSummary() {
55 UNIMPLEMENTED();
56 return NULL;
57 }
58
59
60 void StaticCallComp::EmitNativeCode(FlowGraphCompiler* compiler) {
61 UNIMPLEMENTED();
62 }
63
64
32 } // namespace dart 65 } // namespace dart
33 66
34 #undef __ 67 #undef __
35 68
36 #endif // defined TARGET_ARCH_X64 69 #endif // defined TARGET_ARCH_X64
OLDNEW
« no previous file with comments | « vm/intermediate_language.h ('k') | vm/intermediate_language_x64.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698