| OLD | NEW |
| 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 Loading... |
| 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 Loading... |
| 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 |
| OLD | NEW |