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