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

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
« no previous file with comments | « runtime/vm/intermediate_language_ia32.cc ('k') | runtime/vm/intermediate_language_x64.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 3023 matching lines...) Expand 10 before | Expand all | Expand 10 after
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
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
« no previous file with comments | « runtime/vm/intermediate_language_ia32.cc ('k') | runtime/vm/intermediate_language_x64.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698