| 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 477 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 488 UNIMPLEMENTED(); | 488 UNIMPLEMENTED(); |
| 489 return NULL; | 489 return NULL; |
| 490 } | 490 } |
| 491 | 491 |
| 492 | 492 |
| 493 void DoubleToDoubleInstr::EmitNativeCode(FlowGraphCompiler* compiler) { | 493 void DoubleToDoubleInstr::EmitNativeCode(FlowGraphCompiler* compiler) { |
| 494 UNIMPLEMENTED(); | 494 UNIMPLEMENTED(); |
| 495 } | 495 } |
| 496 | 496 |
| 497 | 497 |
| 498 LocationSummary* InvokeMathCFunctionInstr::MakeLocationSummary() const { | |
| 499 UNIMPLEMENTED(); | |
| 500 return NULL; | |
| 501 } | |
| 502 | |
| 503 | |
| 504 void InvokeMathCFunctionInstr::EmitNativeCode(FlowGraphCompiler* compiler) { | |
| 505 UNIMPLEMENTED(); | |
| 506 } | |
| 507 | |
| 508 | |
| 509 LocationSummary* PolymorphicInstanceCallInstr::MakeLocationSummary() const { | 498 LocationSummary* PolymorphicInstanceCallInstr::MakeLocationSummary() const { |
| 510 UNIMPLEMENTED(); | 499 UNIMPLEMENTED(); |
| 511 return NULL; | 500 return NULL; |
| 512 } | 501 } |
| 513 | 502 |
| 514 | 503 |
| 515 void PolymorphicInstanceCallInstr::EmitNativeCode(FlowGraphCompiler* compiler) { | 504 void PolymorphicInstanceCallInstr::EmitNativeCode(FlowGraphCompiler* compiler) { |
| 516 UNIMPLEMENTED(); | 505 UNIMPLEMENTED(); |
| 517 } | 506 } |
| 518 | 507 |
| (...skipping 227 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 746 | 735 |
| 747 | 736 |
| 748 void CreateClosureInstr::EmitNativeCode(FlowGraphCompiler* compiler) { | 737 void CreateClosureInstr::EmitNativeCode(FlowGraphCompiler* compiler) { |
| 749 UNIMPLEMENTED(); | 738 UNIMPLEMENTED(); |
| 750 } | 739 } |
| 751 | 740 |
| 752 } // namespace dart | 741 } // namespace dart |
| 753 | 742 |
| 754 #endif // defined TARGET_ARCH_ARM | 743 #endif // defined TARGET_ARCH_ARM |
| 755 | 744 |
| OLD | NEW |