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

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

Issue 215363004: Support for multiple register values (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 8 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 | « runtime/vm/intermediate_language_arm.cc ('k') | runtime/vm/intermediate_language_ia32.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) 2014, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2014, 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_ARM64. 5 #include "vm/globals.h" // Needed here to get TARGET_ARCH_ARM64.
6 #if defined(TARGET_ARCH_ARM64) 6 #if defined(TARGET_ARCH_ARM64)
7 7
8 #include "vm/intermediate_language.h" 8 #include "vm/intermediate_language.h"
9 9
10 #include "vm/dart_entry.h" 10 #include "vm/dart_entry.h"
(...skipping 1003 matching lines...) Expand 10 before | Expand all | Expand 10 after
1014 UNIMPLEMENTED(); 1014 UNIMPLEMENTED();
1015 return NULL; 1015 return NULL;
1016 } 1016 }
1017 1017
1018 1018
1019 void InvokeMathCFunctionInstr::EmitNativeCode(FlowGraphCompiler* compiler) { 1019 void InvokeMathCFunctionInstr::EmitNativeCode(FlowGraphCompiler* compiler) {
1020 UNIMPLEMENTED(); 1020 UNIMPLEMENTED();
1021 } 1021 }
1022 1022
1023 1023
1024 LocationSummary* ExtractNthOutputInstr::MakeLocationSummary(bool opt) const {
1025 UNIMPLEMENTED();
1026 return NULL;
1027 }
1028
1029
1030 void ExtractNthOutputInstr::EmitNativeCode(FlowGraphCompiler* compiler) {
1031 UNIMPLEMENTED();
1032 }
1033
1034
1024 LocationSummary* MergedMathInstr::MakeLocationSummary(bool opt) const { 1035 LocationSummary* MergedMathInstr::MakeLocationSummary(bool opt) const {
1025 UNIMPLEMENTED(); 1036 UNIMPLEMENTED();
1026 return NULL; 1037 return NULL;
1027 } 1038 }
1028 1039
1029 1040
1030 void MergedMathInstr::EmitNativeCode(FlowGraphCompiler* compiler) { 1041 void MergedMathInstr::EmitNativeCode(FlowGraphCompiler* compiler) {
1031 UNIMPLEMENTED(); 1042 UNIMPLEMENTED();
1032 } 1043 }
1033 1044
(...skipping 204 matching lines...) Expand 10 before | Expand all | Expand 10 after
1238 } 1249 }
1239 1250
1240 1251
1241 void AllocateObjectInstr::EmitNativeCode(FlowGraphCompiler* compiler) { 1252 void AllocateObjectInstr::EmitNativeCode(FlowGraphCompiler* compiler) {
1242 UNIMPLEMENTED(); 1253 UNIMPLEMENTED();
1243 } 1254 }
1244 1255
1245 } // namespace dart 1256 } // namespace dart
1246 1257
1247 #endif // defined TARGET_ARCH_ARM64 1258 #endif // defined TARGET_ARCH_ARM64
OLDNEW
« no previous file with comments | « runtime/vm/intermediate_language_arm.cc ('k') | runtime/vm/intermediate_language_ia32.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698