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

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

Issue 12735016: Fix ARM and MIPS build after my last commit. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: 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
« no previous file with comments | « no previous file | runtime/vm/intermediate_language_mips.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) 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_ARM. 5 #include "vm/globals.h" // Needed here to get TARGET_ARCH_ARM.
6 #if defined(TARGET_ARCH_ARM) 6 #if defined(TARGET_ARCH_ARM)
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 232 matching lines...) Expand 10 before | Expand all | Expand 10 after
243 UNIMPLEMENTED(); 243 UNIMPLEMENTED();
244 return NULL; 244 return NULL;
245 } 245 }
246 246
247 247
248 void StringFromCharCodeInstr::EmitNativeCode(FlowGraphCompiler* compiler) { 248 void StringFromCharCodeInstr::EmitNativeCode(FlowGraphCompiler* compiler) {
249 UNIMPLEMENTED(); 249 UNIMPLEMENTED();
250 } 250 }
251 251
252 252
253 LocationSummary* LoadUntaggedInstr::MakeLocationSummary() const {
254 UNIMPLEMENTED();
255 return NULL;
256 }
257
258
259 void LoadUntaggedInstr::EmitNativeCode(FlowGraphCompiler* compiler) {
260 UNIMPLEMENTED();
261 }
262
263
253 CompileType LoadIndexedInstr::ComputeType() const { 264 CompileType LoadIndexedInstr::ComputeType() const {
254 UNIMPLEMENTED(); 265 UNIMPLEMENTED();
255 return CompileType::Dynamic(); 266 return CompileType::Dynamic();
256 } 267 }
257 268
258 269
259 Representation LoadIndexedInstr::representation() const { 270 Representation LoadIndexedInstr::representation() const {
260 UNIMPLEMENTED(); 271 UNIMPLEMENTED();
261 return kTagged; 272 return kTagged;
262 } 273 }
(...skipping 600 matching lines...) Expand 10 before | Expand all | Expand 10 after
863 874
864 875
865 void CreateClosureInstr::EmitNativeCode(FlowGraphCompiler* compiler) { 876 void CreateClosureInstr::EmitNativeCode(FlowGraphCompiler* compiler) {
866 UNIMPLEMENTED(); 877 UNIMPLEMENTED();
867 } 878 }
868 879
869 } // namespace dart 880 } // namespace dart
870 881
871 #endif // defined TARGET_ARCH_ARM 882 #endif // defined TARGET_ARCH_ARM
872 883
OLDNEW
« no previous file with comments | « no previous file | runtime/vm/intermediate_language_mips.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698