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

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

Issue 12529008: Collect type feedback for fields. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: rewritten instruction pattern on ia32 Created 7 years, 9 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) 2013, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2013, 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_MIPS. 5 #include "vm/globals.h" // Needed here to get TARGET_ARCH_MIPS.
6 #if defined(TARGET_ARCH_MIPS) 6 #if defined(TARGET_ARCH_MIPS)
7 7
8 #include "vm/intermediate_language.h" 8 #include "vm/intermediate_language.h"
9 9
10 #include "lib/error.h" 10 #include "lib/error.h"
(...skipping 195 matching lines...) Expand 10 before | Expand all | Expand 10 after
206 UNIMPLEMENTED(); 206 UNIMPLEMENTED();
207 return NULL; 207 return NULL;
208 } 208 }
209 209
210 210
211 void StoreIndexedInstr::EmitNativeCode(FlowGraphCompiler* compiler) { 211 void StoreIndexedInstr::EmitNativeCode(FlowGraphCompiler* compiler) {
212 UNIMPLEMENTED(); 212 UNIMPLEMENTED();
213 } 213 }
214 214
215 215
216 LocationSummary* GuardFieldInstr::MakeLocationSummary() const {
217 UNIMPLEMENTED();
218 return NULL;
219 }
220
221
222 void GuardFieldInstr::EmitNativeCode(FlowGraphCompiler* compiler) {
223 UNIMPLEMENTED();
224 }
225
226
216 LocationSummary* StoreInstanceFieldInstr::MakeLocationSummary() const { 227 LocationSummary* StoreInstanceFieldInstr::MakeLocationSummary() const {
217 UNIMPLEMENTED(); 228 UNIMPLEMENTED();
218 return NULL; 229 return NULL;
219 } 230 }
220 231
221 232
222 void StoreInstanceFieldInstr::EmitNativeCode(FlowGraphCompiler* compiler) { 233 void StoreInstanceFieldInstr::EmitNativeCode(FlowGraphCompiler* compiler) {
223 UNIMPLEMENTED(); 234 UNIMPLEMENTED();
224 } 235 }
225 236
(...skipping 520 matching lines...) Expand 10 before | Expand all | Expand 10 after
746 757
747 758
748 void CreateClosureInstr::EmitNativeCode(FlowGraphCompiler* compiler) { 759 void CreateClosureInstr::EmitNativeCode(FlowGraphCompiler* compiler) {
749 UNIMPLEMENTED(); 760 UNIMPLEMENTED();
750 } 761 }
751 762
752 } // namespace dart 763 } // namespace dart
753 764
754 #endif // defined TARGET_ARCH_MIPS 765 #endif // defined TARGET_ARCH_MIPS
755 766
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698