| 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_MIPS. | 5 #include "vm/globals.h" // Needed here to get TARGET_ARCH_MIPS. |
| 6 #if defined(TARGET_ARCH_MIPS) | 6 #if defined(TARGET_ARCH_MIPS) |
| 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 571 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 582 UNIMPLEMENTED(); | 582 UNIMPLEMENTED(); |
| 583 return NULL; | 583 return NULL; |
| 584 } | 584 } |
| 585 | 585 |
| 586 | 586 |
| 587 void UnboxDoubleInstr::EmitNativeCode(FlowGraphCompiler* compiler) { | 587 void UnboxDoubleInstr::EmitNativeCode(FlowGraphCompiler* compiler) { |
| 588 UNIMPLEMENTED(); | 588 UNIMPLEMENTED(); |
| 589 } | 589 } |
| 590 | 590 |
| 591 | 591 |
| 592 LocationSummary* BoxFloat32x4Instr::MakeLocationSummary() const { |
| 593 UNIMPLEMENTED(); |
| 594 return NULL; |
| 595 } |
| 596 |
| 597 |
| 598 void BoxFloat32x4Instr::EmitNativeCode(FlowGraphCompiler* compiler) { |
| 599 UNIMPLEMENTED(); |
| 600 } |
| 601 |
| 602 |
| 603 LocationSummary* UnboxFloat32x4Instr::MakeLocationSummary() const { |
| 604 UNIMPLEMENTED(); |
| 605 return NULL; |
| 606 } |
| 607 |
| 608 |
| 609 void UnboxFloat32x4Instr::EmitNativeCode(FlowGraphCompiler* compiler) { |
| 610 UNIMPLEMENTED(); |
| 611 } |
| 612 |
| 613 |
| 592 LocationSummary* BinaryDoubleOpInstr::MakeLocationSummary() const { | 614 LocationSummary* BinaryDoubleOpInstr::MakeLocationSummary() const { |
| 593 UNIMPLEMENTED(); | 615 UNIMPLEMENTED(); |
| 594 return NULL; | 616 return NULL; |
| 595 } | 617 } |
| 596 | 618 |
| 597 | 619 |
| 598 void BinaryDoubleOpInstr::EmitNativeCode(FlowGraphCompiler* compiler) { | 620 void BinaryDoubleOpInstr::EmitNativeCode(FlowGraphCompiler* compiler) { |
| 599 UNIMPLEMENTED(); | 621 UNIMPLEMENTED(); |
| 600 } | 622 } |
| 601 | 623 |
| (...skipping 315 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 917 | 939 |
| 918 | 940 |
| 919 void CreateClosureInstr::EmitNativeCode(FlowGraphCompiler* compiler) { | 941 void CreateClosureInstr::EmitNativeCode(FlowGraphCompiler* compiler) { |
| 920 UNIMPLEMENTED(); | 942 UNIMPLEMENTED(); |
| 921 } | 943 } |
| 922 | 944 |
| 923 } // namespace dart | 945 } // namespace dart |
| 924 | 946 |
| 925 #endif // defined TARGET_ARCH_MIPS | 947 #endif // defined TARGET_ARCH_MIPS |
| 926 | 948 |
| OLD | NEW |