| 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 2980 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2991 UNIMPLEMENTED(); | 2991 UNIMPLEMENTED(); |
| 2992 return NULL; | 2992 return NULL; |
| 2993 } | 2993 } |
| 2994 | 2994 |
| 2995 | 2995 |
| 2996 void Float32x4ToUint32x4Instr::EmitNativeCode(FlowGraphCompiler* compiler) { | 2996 void Float32x4ToUint32x4Instr::EmitNativeCode(FlowGraphCompiler* compiler) { |
| 2997 UNIMPLEMENTED(); | 2997 UNIMPLEMENTED(); |
| 2998 } | 2998 } |
| 2999 | 2999 |
| 3000 | 3000 |
| 3001 LocationSummary* Float32x4TwoArgShuffleInstr::MakeLocationSummary() const { |
| 3002 UNIMPLEMENTED(); |
| 3003 return NULL; |
| 3004 } |
| 3005 |
| 3006 |
| 3007 void Float32x4TwoArgShuffleInstr::EmitNativeCode(FlowGraphCompiler* compiler) { |
| 3008 UNIMPLEMENTED(); |
| 3009 } |
| 3010 |
| 3011 |
| 3001 LocationSummary* Uint32x4BoolConstructorInstr::MakeLocationSummary() const { | 3012 LocationSummary* Uint32x4BoolConstructorInstr::MakeLocationSummary() const { |
| 3002 UNIMPLEMENTED(); | 3013 UNIMPLEMENTED(); |
| 3003 return NULL; | 3014 return NULL; |
| 3004 } | 3015 } |
| 3005 | 3016 |
| 3006 | 3017 |
| 3007 void Uint32x4BoolConstructorInstr::EmitNativeCode(FlowGraphCompiler* compiler) { | 3018 void Uint32x4BoolConstructorInstr::EmitNativeCode(FlowGraphCompiler* compiler) { |
| 3008 UNIMPLEMENTED(); | 3019 UNIMPLEMENTED(); |
| 3009 } | 3020 } |
| 3010 | 3021 |
| (...skipping 848 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3859 compiler->GenerateCall(token_pos(), | 3870 compiler->GenerateCall(token_pos(), |
| 3860 &label, | 3871 &label, |
| 3861 PcDescriptors::kOther, | 3872 PcDescriptors::kOther, |
| 3862 locs()); | 3873 locs()); |
| 3863 __ Drop(2); // Discard type arguments and receiver. | 3874 __ Drop(2); // Discard type arguments and receiver. |
| 3864 } | 3875 } |
| 3865 | 3876 |
| 3866 } // namespace dart | 3877 } // namespace dart |
| 3867 | 3878 |
| 3868 #endif // defined TARGET_ARCH_MIPS | 3879 #endif // defined TARGET_ARCH_MIPS |
| OLD | NEW |