| 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 1246 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1257 UNIMPLEMENTED(); | 1257 UNIMPLEMENTED(); |
| 1258 return NULL; | 1258 return NULL; |
| 1259 } | 1259 } |
| 1260 | 1260 |
| 1261 | 1261 |
| 1262 void UnboxDoubleInstr::EmitNativeCode(FlowGraphCompiler* compiler) { | 1262 void UnboxDoubleInstr::EmitNativeCode(FlowGraphCompiler* compiler) { |
| 1263 UNIMPLEMENTED(); | 1263 UNIMPLEMENTED(); |
| 1264 } | 1264 } |
| 1265 | 1265 |
| 1266 | 1266 |
| 1267 LocationSummary* BoxFloat32x4Instr::MakeLocationSummary() const { |
| 1268 UNIMPLEMENTED(); |
| 1269 return NULL; |
| 1270 } |
| 1271 |
| 1272 |
| 1273 void BoxFloat32x4Instr::EmitNativeCode(FlowGraphCompiler* compiler) { |
| 1274 UNIMPLEMENTED(); |
| 1275 } |
| 1276 |
| 1277 |
| 1278 LocationSummary* UnboxFloat32x4Instr::MakeLocationSummary() const { |
| 1279 UNIMPLEMENTED(); |
| 1280 return NULL; |
| 1281 } |
| 1282 |
| 1283 |
| 1284 void UnboxFloat32x4Instr::EmitNativeCode(FlowGraphCompiler* compiler) { |
| 1285 UNIMPLEMENTED(); |
| 1286 } |
| 1287 |
| 1288 |
| 1267 LocationSummary* BinaryDoubleOpInstr::MakeLocationSummary() const { | 1289 LocationSummary* BinaryDoubleOpInstr::MakeLocationSummary() const { |
| 1268 UNIMPLEMENTED(); | 1290 UNIMPLEMENTED(); |
| 1269 return NULL; | 1291 return NULL; |
| 1270 } | 1292 } |
| 1271 | 1293 |
| 1272 | 1294 |
| 1273 void BinaryDoubleOpInstr::EmitNativeCode(FlowGraphCompiler* compiler) { | 1295 void BinaryDoubleOpInstr::EmitNativeCode(FlowGraphCompiler* compiler) { |
| 1274 UNIMPLEMENTED(); | 1296 UNIMPLEMENTED(); |
| 1275 } | 1297 } |
| 1276 | 1298 |
| (...skipping 478 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1755 | 1777 |
| 1756 | 1778 |
| 1757 void CreateClosureInstr::EmitNativeCode(FlowGraphCompiler* compiler) { | 1779 void CreateClosureInstr::EmitNativeCode(FlowGraphCompiler* compiler) { |
| 1758 UNIMPLEMENTED(); | 1780 UNIMPLEMENTED(); |
| 1759 } | 1781 } |
| 1760 | 1782 |
| 1761 } // namespace dart | 1783 } // namespace dart |
| 1762 | 1784 |
| 1763 #endif // defined TARGET_ARCH_ARM | 1785 #endif // defined TARGET_ARCH_ARM |
| 1764 | 1786 |
| OLD | NEW |