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

Side by Side Diff: vm/intermediate_language_ia32.cc

Issue 10416025: Add a location summary to LoadLocal, StoreLocal and ConstantVal. (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 44 matching lines...) Expand 10 before | Expand all | Expand 10 after
55 UNIMPLEMENTED(); 55 UNIMPLEMENTED();
56 return NULL; 56 return NULL;
57 } 57 }
58 58
59 59
60 void StaticCallComp::EmitNativeCode(FlowGraphCompiler* compiler) { 60 void StaticCallComp::EmitNativeCode(FlowGraphCompiler* compiler) {
61 UNIMPLEMENTED(); 61 UNIMPLEMENTED();
62 } 62 }
63 63
64 64
65 LocationSummary* LoadLocalComp::MakeLocationSummary() {
66 UNIMPLEMENTED();
67 return NULL;
68 }
69
70
71 void LoadLocalComp::EmitNativeCode(FlowGraphCompiler* compiler) {
72 UNIMPLEMENTED();
73 }
74
75
76 LocationSummary* StoreLocalComp::MakeLocationSummary() {
77 UNIMPLEMENTED();
78 return NULL;
79 }
80
81
82 void StoreLocalComp::EmitNativeCode(FlowGraphCompiler* compiler) {
83 UNIMPLEMENTED();
84 }
85
86
87 LocationSummary* ConstantVal::MakeLocationSummary() {
88 UNIMPLEMENTED();
89 return NULL;
90 }
91
92
93 void ConstantVal::EmitNativeCode(FlowGraphCompiler* compiler) {
94 UNIMPLEMENTED();
95 }
96
97
65 } // namespace dart 98 } // namespace dart
66 99
67 #undef __ 100 #undef __
68 101
69 #endif // defined TARGET_ARCH_X64 102 #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