| 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 458 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 469 UNIMPLEMENTED(); | 469 UNIMPLEMENTED(); |
| 470 return NULL; | 470 return NULL; |
| 471 } | 471 } |
| 472 | 472 |
| 473 | 473 |
| 474 void DoubleToDoubleInstr::EmitNativeCode(FlowGraphCompiler* compiler) { | 474 void DoubleToDoubleInstr::EmitNativeCode(FlowGraphCompiler* compiler) { |
| 475 UNIMPLEMENTED(); | 475 UNIMPLEMENTED(); |
| 476 } | 476 } |
| 477 | 477 |
| 478 | 478 |
| 479 LocationSummary* InvokeMathCFunctionInstr::MakeLocationSummary() const { |
| 480 UNIMPLEMENTED(); |
| 481 return NULL; |
| 482 } |
| 483 |
| 484 |
| 485 void InvokeMathCFunctionInstr::EmitNativeCode(FlowGraphCompiler* compiler) { |
| 486 UNIMPLEMENTED(); |
| 487 } |
| 488 |
| 489 |
| 479 LocationSummary* PolymorphicInstanceCallInstr::MakeLocationSummary() const { | 490 LocationSummary* PolymorphicInstanceCallInstr::MakeLocationSummary() const { |
| 480 UNIMPLEMENTED(); | 491 UNIMPLEMENTED(); |
| 481 return NULL; | 492 return NULL; |
| 482 } | 493 } |
| 483 | 494 |
| 484 | 495 |
| 485 void PolymorphicInstanceCallInstr::EmitNativeCode(FlowGraphCompiler* compiler) { | 496 void PolymorphicInstanceCallInstr::EmitNativeCode(FlowGraphCompiler* compiler) { |
| 486 UNIMPLEMENTED(); | 497 UNIMPLEMENTED(); |
| 487 } | 498 } |
| 488 | 499 |
| (...skipping 227 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 716 | 727 |
| 717 | 728 |
| 718 void CreateClosureInstr::EmitNativeCode(FlowGraphCompiler* compiler) { | 729 void CreateClosureInstr::EmitNativeCode(FlowGraphCompiler* compiler) { |
| 719 UNIMPLEMENTED(); | 730 UNIMPLEMENTED(); |
| 720 } | 731 } |
| 721 | 732 |
| 722 } // namespace dart | 733 } // namespace dart |
| 723 | 734 |
| 724 #endif // defined TARGET_ARCH_ARM | 735 #endif // defined TARGET_ARCH_ARM |
| 725 | 736 |
| OLD | NEW |