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

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

Issue 193183003: Inline Float64x2 methods that take 1 argument (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 9 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 3257 matching lines...) Expand 10 before | Expand all | Expand 10 after
3268 UNIMPLEMENTED(); 3268 UNIMPLEMENTED();
3269 return NULL; 3269 return NULL;
3270 } 3270 }
3271 3271
3272 3272
3273 void Float64x2ZeroArgInstr::EmitNativeCode(FlowGraphCompiler* compiler) { 3273 void Float64x2ZeroArgInstr::EmitNativeCode(FlowGraphCompiler* compiler) {
3274 UNIMPLEMENTED(); 3274 UNIMPLEMENTED();
3275 } 3275 }
3276 3276
3277 3277
3278 LocationSummary* Float64x2OneArgInstr::MakeLocationSummary(bool opt) const {
3279 UNIMPLEMENTED();
3280 return NULL;
3281 }
3282
3283
3284 void Float64x2OneArgInstr::EmitNativeCode(FlowGraphCompiler* compiler) {
3285 UNIMPLEMENTED();
3286 }
3287
3288
3278 LocationSummary* Int32x4BoolConstructorInstr::MakeLocationSummary( 3289 LocationSummary* Int32x4BoolConstructorInstr::MakeLocationSummary(
3279 bool opt) const { 3290 bool opt) const {
3280 UNIMPLEMENTED(); 3291 UNIMPLEMENTED();
3281 return NULL; 3292 return NULL;
3282 } 3293 }
3283 3294
3284 3295
3285 void Int32x4BoolConstructorInstr::EmitNativeCode(FlowGraphCompiler* compiler) { 3296 void Int32x4BoolConstructorInstr::EmitNativeCode(FlowGraphCompiler* compiler) {
3286 UNIMPLEMENTED(); 3297 UNIMPLEMENTED();
3287 } 3298 }
(...skipping 984 matching lines...) Expand 10 before | Expand all | Expand 10 after
4272 compiler->GenerateCall(token_pos(), 4283 compiler->GenerateCall(token_pos(),
4273 &label, 4284 &label,
4274 PcDescriptors::kOther, 4285 PcDescriptors::kOther,
4275 locs()); 4286 locs());
4276 __ Drop(ArgumentCount()); // Discard arguments. 4287 __ Drop(ArgumentCount()); // Discard arguments.
4277 } 4288 }
4278 4289
4279 } // namespace dart 4290 } // namespace dart
4280 4291
4281 #endif // defined TARGET_ARCH_MIPS 4292 #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