| 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 "vm/dart_entry.h" | 10 #include "vm/dart_entry.h" |
| (...skipping 3023 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3034 UNIMPLEMENTED(); | 3034 UNIMPLEMENTED(); |
| 3035 return NULL; | 3035 return NULL; |
| 3036 } | 3036 } |
| 3037 | 3037 |
| 3038 | 3038 |
| 3039 void Uint32x4GetFlagInstr::EmitNativeCode(FlowGraphCompiler* compiler) { | 3039 void Uint32x4GetFlagInstr::EmitNativeCode(FlowGraphCompiler* compiler) { |
| 3040 UNIMPLEMENTED(); | 3040 UNIMPLEMENTED(); |
| 3041 } | 3041 } |
| 3042 | 3042 |
| 3043 | 3043 |
| 3044 LocationSummary* Simd32x4GetSignMaskInstr::MakeLocationSummary() const { |
| 3045 UNIMPLEMENTED(); |
| 3046 return NULL; |
| 3047 } |
| 3048 |
| 3049 |
| 3050 void Simd32x4GetSignMaskInstr::EmitNativeCode(FlowGraphCompiler* compiler) { |
| 3051 UNIMPLEMENTED(); |
| 3052 } |
| 3053 |
| 3054 |
| 3044 LocationSummary* Uint32x4SelectInstr::MakeLocationSummary() const { | 3055 LocationSummary* Uint32x4SelectInstr::MakeLocationSummary() const { |
| 3045 UNIMPLEMENTED(); | 3056 UNIMPLEMENTED(); |
| 3046 return NULL; | 3057 return NULL; |
| 3047 } | 3058 } |
| 3048 | 3059 |
| 3049 | 3060 |
| 3050 void Uint32x4SelectInstr::EmitNativeCode(FlowGraphCompiler* compiler) { | 3061 void Uint32x4SelectInstr::EmitNativeCode(FlowGraphCompiler* compiler) { |
| 3051 UNIMPLEMENTED(); | 3062 UNIMPLEMENTED(); |
| 3052 } | 3063 } |
| 3053 | 3064 |
| (...skipping 854 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3908 compiler->GenerateCall(token_pos(), | 3919 compiler->GenerateCall(token_pos(), |
| 3909 &label, | 3920 &label, |
| 3910 PcDescriptors::kOther, | 3921 PcDescriptors::kOther, |
| 3911 locs()); | 3922 locs()); |
| 3912 __ Drop(2); // Discard type arguments and receiver. | 3923 __ Drop(2); // Discard type arguments and receiver. |
| 3913 } | 3924 } |
| 3914 | 3925 |
| 3915 } // namespace dart | 3926 } // namespace dart |
| 3916 | 3927 |
| 3917 #endif // defined TARGET_ARCH_MIPS | 3928 #endif // defined TARGET_ARCH_MIPS |
| OLD | NEW |