| 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 905 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 916 UNIMPLEMENTED(); | 916 UNIMPLEMENTED(); |
| 917 return NULL; | 917 return NULL; |
| 918 } | 918 } |
| 919 | 919 |
| 920 | 920 |
| 921 void UnboxDoubleInstr::EmitNativeCode(FlowGraphCompiler* compiler) { | 921 void UnboxDoubleInstr::EmitNativeCode(FlowGraphCompiler* compiler) { |
| 922 UNIMPLEMENTED(); | 922 UNIMPLEMENTED(); |
| 923 } | 923 } |
| 924 | 924 |
| 925 | 925 |
| 926 LocationSummary* BoxFloat32x4Instr::MakeLocationSummary() const { |
| 927 UNIMPLEMENTED(); |
| 928 return NULL; |
| 929 } |
| 930 |
| 931 |
| 932 void BoxFloat32x4Instr::EmitNativeCode(FlowGraphCompiler* compiler) { |
| 933 UNIMPLEMENTED(); |
| 934 } |
| 935 |
| 936 |
| 937 LocationSummary* UnboxFloat32x4Instr::MakeLocationSummary() const { |
| 938 UNIMPLEMENTED(); |
| 939 return NULL; |
| 940 } |
| 941 |
| 942 |
| 943 void UnboxFloat32x4Instr::EmitNativeCode(FlowGraphCompiler* compiler) { |
| 944 UNIMPLEMENTED(); |
| 945 } |
| 946 |
| 947 |
| 926 LocationSummary* BinaryDoubleOpInstr::MakeLocationSummary() const { | 948 LocationSummary* BinaryDoubleOpInstr::MakeLocationSummary() const { |
| 927 UNIMPLEMENTED(); | 949 UNIMPLEMENTED(); |
| 928 return NULL; | 950 return NULL; |
| 929 } | 951 } |
| 930 | 952 |
| 931 | 953 |
| 932 void BinaryDoubleOpInstr::EmitNativeCode(FlowGraphCompiler* compiler) { | 954 void BinaryDoubleOpInstr::EmitNativeCode(FlowGraphCompiler* compiler) { |
| 933 UNIMPLEMENTED(); | 955 UNIMPLEMENTED(); |
| 934 } | 956 } |
| 935 | 957 |
| (...skipping 445 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1381 | 1403 |
| 1382 | 1404 |
| 1383 void CreateClosureInstr::EmitNativeCode(FlowGraphCompiler* compiler) { | 1405 void CreateClosureInstr::EmitNativeCode(FlowGraphCompiler* compiler) { |
| 1384 UNIMPLEMENTED(); | 1406 UNIMPLEMENTED(); |
| 1385 } | 1407 } |
| 1386 | 1408 |
| 1387 } // namespace dart | 1409 } // namespace dart |
| 1388 | 1410 |
| 1389 #endif // defined TARGET_ARCH_MIPS | 1411 #endif // defined TARGET_ARCH_MIPS |
| 1390 | 1412 |
| OLD | NEW |