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

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 1008 matching lines...) Expand 10 before | Expand all | Expand 10 after
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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698