| OLD | NEW |
| 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 1303 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1314 UNIMPLEMENTED(); | 1314 UNIMPLEMENTED(); |
| 1315 return NULL; | 1315 return NULL; |
| 1316 } | 1316 } |
| 1317 | 1317 |
| 1318 | 1318 |
| 1319 void BinaryDoubleOpInstr::EmitNativeCode(FlowGraphCompiler* compiler) { | 1319 void BinaryDoubleOpInstr::EmitNativeCode(FlowGraphCompiler* compiler) { |
| 1320 UNIMPLEMENTED(); | 1320 UNIMPLEMENTED(); |
| 1321 } | 1321 } |
| 1322 | 1322 |
| 1323 | 1323 |
| 1324 LocationSummary* BinaryFloat32x4OpInstr::MakeLocationSummary() const { |
| 1325 UNIMPLEMENTED(); |
| 1326 return NULL; |
| 1327 } |
| 1328 |
| 1329 |
| 1330 void BinaryFloat32x4OpInstr::EmitNativeCode(FlowGraphCompiler* compiler) { |
| 1331 UNIMPLEMENTED(); |
| 1332 } |
| 1333 |
| 1334 |
| 1324 LocationSummary* MathSqrtInstr::MakeLocationSummary() const { | 1335 LocationSummary* MathSqrtInstr::MakeLocationSummary() const { |
| 1325 UNIMPLEMENTED(); | 1336 UNIMPLEMENTED(); |
| 1326 return NULL; | 1337 return NULL; |
| 1327 } | 1338 } |
| 1328 | 1339 |
| 1329 | 1340 |
| 1330 void MathSqrtInstr::EmitNativeCode(FlowGraphCompiler* compiler) { | 1341 void MathSqrtInstr::EmitNativeCode(FlowGraphCompiler* compiler) { |
| 1331 UNIMPLEMENTED(); | 1342 UNIMPLEMENTED(); |
| 1332 } | 1343 } |
| 1333 | 1344 |
| (...skipping 467 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1801 | 1812 |
| 1802 | 1813 |
| 1803 void CreateClosureInstr::EmitNativeCode(FlowGraphCompiler* compiler) { | 1814 void CreateClosureInstr::EmitNativeCode(FlowGraphCompiler* compiler) { |
| 1804 UNIMPLEMENTED(); | 1815 UNIMPLEMENTED(); |
| 1805 } | 1816 } |
| 1806 | 1817 |
| 1807 } // namespace dart | 1818 } // namespace dart |
| 1808 | 1819 |
| 1809 #endif // defined TARGET_ARCH_ARM | 1820 #endif // defined TARGET_ARCH_ARM |
| 1810 | 1821 |
| OLD | NEW |