Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(173)

Side by Side Diff: runtime/vm/intermediate_language_mips.cc

Issue 22947006: Add signMask getter to Float32x4 (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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 2869 matching lines...) Expand 10 before | Expand all | Expand 10 after
2880 UNIMPLEMENTED(); 2880 UNIMPLEMENTED();
2881 return NULL; 2881 return NULL;
2882 } 2882 }
2883 2883
2884 2884
2885 void Float32x4ShuffleInstr::EmitNativeCode(FlowGraphCompiler* compiler) { 2885 void Float32x4ShuffleInstr::EmitNativeCode(FlowGraphCompiler* compiler) {
2886 UNIMPLEMENTED(); 2886 UNIMPLEMENTED();
2887 } 2887 }
2888 2888
2889 2889
2890 LocationSummary* Float32x4GetSignMaskInstr::MakeLocationSummary() const {
2891 UNIMPLEMENTED();
2892 return NULL;
2893 }
2894
2895
2896 void Float32x4GetSignMaskInstr::EmitNativeCode(FlowGraphCompiler* compiler) {
2897 UNIMPLEMENTED();
2898 }
2899
2900
2890 LocationSummary* Float32x4ConstructorInstr::MakeLocationSummary() const { 2901 LocationSummary* Float32x4ConstructorInstr::MakeLocationSummary() const {
2891 UNIMPLEMENTED(); 2902 UNIMPLEMENTED();
2892 return NULL; 2903 return NULL;
2893 } 2904 }
2894 2905
2895 2906
2896 void Float32x4ConstructorInstr::EmitNativeCode(FlowGraphCompiler* compiler) { 2907 void Float32x4ConstructorInstr::EmitNativeCode(FlowGraphCompiler* compiler) {
2897 UNIMPLEMENTED(); 2908 UNIMPLEMENTED();
2898 } 2909 }
2899 2910
(...skipping 134 matching lines...) Expand 10 before | Expand all | Expand 10 after
3034 UNIMPLEMENTED(); 3045 UNIMPLEMENTED();
3035 return NULL; 3046 return NULL;
3036 } 3047 }
3037 3048
3038 3049
3039 void Uint32x4GetFlagInstr::EmitNativeCode(FlowGraphCompiler* compiler) { 3050 void Uint32x4GetFlagInstr::EmitNativeCode(FlowGraphCompiler* compiler) {
3040 UNIMPLEMENTED(); 3051 UNIMPLEMENTED();
3041 } 3052 }
3042 3053
3043 3054
3055 LocationSummary* Uint32x4GetSignMaskInstr::MakeLocationSummary() const {
3056 UNIMPLEMENTED();
3057 return NULL;
3058 }
3059
3060
3061 void Uint32x4GetSignMaskInstr::EmitNativeCode(FlowGraphCompiler* compiler) {
3062 UNIMPLEMENTED();
3063 }
3064
3065
3044 LocationSummary* Uint32x4SelectInstr::MakeLocationSummary() const { 3066 LocationSummary* Uint32x4SelectInstr::MakeLocationSummary() const {
3045 UNIMPLEMENTED(); 3067 UNIMPLEMENTED();
3046 return NULL; 3068 return NULL;
3047 } 3069 }
3048 3070
3049 3071
3050 void Uint32x4SelectInstr::EmitNativeCode(FlowGraphCompiler* compiler) { 3072 void Uint32x4SelectInstr::EmitNativeCode(FlowGraphCompiler* compiler) {
3051 UNIMPLEMENTED(); 3073 UNIMPLEMENTED();
3052 } 3074 }
3053 3075
(...skipping 854 matching lines...) Expand 10 before | Expand all | Expand 10 after
3908 compiler->GenerateCall(token_pos(), 3930 compiler->GenerateCall(token_pos(),
3909 &label, 3931 &label,
3910 PcDescriptors::kOther, 3932 PcDescriptors::kOther,
3911 locs()); 3933 locs());
3912 __ Drop(2); // Discard type arguments and receiver. 3934 __ Drop(2); // Discard type arguments and receiver.
3913 } 3935 }
3914 3936
3915 } // namespace dart 3937 } // namespace dart
3916 3938
3917 #endif // defined TARGET_ARCH_MIPS 3939 #endif // defined TARGET_ARCH_MIPS
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698