| 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 1270 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1281 UNIMPLEMENTED(); | 1281 UNIMPLEMENTED(); |
| 1282 return NULL; | 1282 return NULL; |
| 1283 } | 1283 } |
| 1284 | 1284 |
| 1285 | 1285 |
| 1286 void UnboxDoubleInstr::EmitNativeCode(FlowGraphCompiler* compiler) { | 1286 void UnboxDoubleInstr::EmitNativeCode(FlowGraphCompiler* compiler) { |
| 1287 UNIMPLEMENTED(); | 1287 UNIMPLEMENTED(); |
| 1288 } | 1288 } |
| 1289 | 1289 |
| 1290 | 1290 |
| 1291 LocationSummary* BoxFloat32x4Instr::MakeLocationSummary() const { |
| 1292 UNIMPLEMENTED(); |
| 1293 return NULL; |
| 1294 } |
| 1295 |
| 1296 |
| 1297 void BoxFloat32x4Instr::EmitNativeCode(FlowGraphCompiler* compiler) { |
| 1298 UNIMPLEMENTED(); |
| 1299 } |
| 1300 |
| 1301 |
| 1302 LocationSummary* UnboxFloat32x4Instr::MakeLocationSummary() const { |
| 1303 UNIMPLEMENTED(); |
| 1304 return NULL; |
| 1305 } |
| 1306 |
| 1307 |
| 1308 void UnboxFloat32x4Instr::EmitNativeCode(FlowGraphCompiler* compiler) { |
| 1309 UNIMPLEMENTED(); |
| 1310 } |
| 1311 |
| 1312 |
| 1291 LocationSummary* BinaryDoubleOpInstr::MakeLocationSummary() const { | 1313 LocationSummary* BinaryDoubleOpInstr::MakeLocationSummary() const { |
| 1292 UNIMPLEMENTED(); | 1314 UNIMPLEMENTED(); |
| 1293 return NULL; | 1315 return NULL; |
| 1294 } | 1316 } |
| 1295 | 1317 |
| 1296 | 1318 |
| 1297 void BinaryDoubleOpInstr::EmitNativeCode(FlowGraphCompiler* compiler) { | 1319 void BinaryDoubleOpInstr::EmitNativeCode(FlowGraphCompiler* compiler) { |
| 1298 UNIMPLEMENTED(); | 1320 UNIMPLEMENTED(); |
| 1299 } | 1321 } |
| 1300 | 1322 |
| (...skipping 478 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1779 | 1801 |
| 1780 | 1802 |
| 1781 void CreateClosureInstr::EmitNativeCode(FlowGraphCompiler* compiler) { | 1803 void CreateClosureInstr::EmitNativeCode(FlowGraphCompiler* compiler) { |
| 1782 UNIMPLEMENTED(); | 1804 UNIMPLEMENTED(); |
| 1783 } | 1805 } |
| 1784 | 1806 |
| 1785 } // namespace dart | 1807 } // namespace dart |
| 1786 | 1808 |
| 1787 #endif // defined TARGET_ARCH_ARM | 1809 #endif // defined TARGET_ARCH_ARM |
| 1788 | 1810 |
| OLD | NEW |