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

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

Issue 172653002: Unbox/Box Float64x2 and inline typed array loads and stores (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 10 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 2941 matching lines...) Expand 10 before | Expand all | Expand 10 after
2952 UNIMPLEMENTED(); 2952 UNIMPLEMENTED();
2953 return NULL; 2953 return NULL;
2954 } 2954 }
2955 2955
2956 2956
2957 void UnboxFloat32x4Instr::EmitNativeCode(FlowGraphCompiler* compiler) { 2957 void UnboxFloat32x4Instr::EmitNativeCode(FlowGraphCompiler* compiler) {
2958 UNIMPLEMENTED(); 2958 UNIMPLEMENTED();
2959 } 2959 }
2960 2960
2961 2961
2962 LocationSummary* BoxFloat64x2Instr::MakeLocationSummary(bool opt) const {
2963 UNIMPLEMENTED();
2964 return NULL;
2965 }
2966
2967
2968 void BoxFloat64x2Instr::EmitNativeCode(FlowGraphCompiler* compiler) {
2969 UNIMPLEMENTED();
2970 }
2971
2972
2973 LocationSummary* UnboxFloat64x2Instr::MakeLocationSummary(bool opt) const {
2974 UNIMPLEMENTED();
2975 return NULL;
2976 }
2977
2978
2979 void UnboxFloat64x2Instr::EmitNativeCode(FlowGraphCompiler* compiler) {
2980 UNIMPLEMENTED();
2981 }
2982
2983
2962 LocationSummary* BoxInt32x4Instr::MakeLocationSummary(bool opt) const { 2984 LocationSummary* BoxInt32x4Instr::MakeLocationSummary(bool opt) const {
2963 UNIMPLEMENTED(); 2985 UNIMPLEMENTED();
2964 return NULL; 2986 return NULL;
2965 } 2987 }
2966 2988
2967 2989
2968 void BoxInt32x4Instr::EmitNativeCode(FlowGraphCompiler* compiler) { 2990 void BoxInt32x4Instr::EmitNativeCode(FlowGraphCompiler* compiler) {
2969 UNIMPLEMENTED(); 2991 UNIMPLEMENTED();
2970 } 2992 }
2971 2993
(...skipping 1198 matching lines...) Expand 10 before | Expand all | Expand 10 after
4170 compiler->GenerateCall(token_pos(), 4192 compiler->GenerateCall(token_pos(),
4171 &label, 4193 &label,
4172 PcDescriptors::kOther, 4194 PcDescriptors::kOther,
4173 locs()); 4195 locs());
4174 __ Drop(2); // Discard type arguments and receiver. 4196 __ Drop(2); // Discard type arguments and receiver.
4175 } 4197 }
4176 4198
4177 } // namespace dart 4199 } // namespace dart
4178 4200
4179 #endif // defined TARGET_ARCH_MIPS 4201 #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