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

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

Issue 201013002: x64 code improvements and cleanups. (Closed) Base URL: http://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
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" 5 #include "vm/globals.h"
6 #if defined(TARGET_ARCH_MIPS) 6 #if defined(TARGET_ARCH_MIPS)
7 7
8 #include "vm/assembler.h" 8 #include "vm/assembler.h"
9 #include "vm/code_generator.h" 9 #include "vm/code_generator.h"
10 #include "vm/compiler.h" 10 #include "vm/compiler.h"
11 #include "vm/dart_entry.h" 11 #include "vm/dart_entry.h"
12 #include "vm/flow_graph_compiler.h" 12 #include "vm/flow_graph_compiler.h"
13 #include "vm/heap.h" 13 #include "vm/heap.h"
14 #include "vm/instructions.h" 14 #include "vm/instructions.h"
15 #include "vm/object_store.h" 15 #include "vm/object_store.h"
16 #include "vm/stack_frame.h" 16 #include "vm/stack_frame.h"
17 #include "vm/stub_code.h" 17 #include "vm/stub_code.h"
18 18
19 #define __ assembler-> 19 #define __ assembler->
20 20
21 namespace dart { 21 namespace dart {
22 22
23 DEFINE_FLAG(bool, inline_alloc, true, "Inline allocation of objects."); 23 DEFINE_FLAG(bool, inline_alloc, true, "Inline allocation of objects.");
24 DEFINE_FLAG(bool, use_slow_path, false, 24 DEFINE_FLAG(bool, use_slow_path, false,
25 "Set to true for debugging & verifying the slow paths."); 25 "Set to true for debugging & verifying the slow paths.");
26 DECLARE_FLAG(bool, trace_optimized_ic_calls); 26 DECLARE_FLAG(bool, trace_optimized_ic_calls);
27 DECLARE_FLAG(int, optimization_counter_threshold);
28 27
29 28
30 // Input parameters: 29 // Input parameters:
31 // RA : return address. 30 // RA : return address.
32 // SP : address of last argument in argument array. 31 // SP : address of last argument in argument array.
33 // SP + 4*S4 - 4 : address of first argument in argument array. 32 // SP + 4*S4 - 4 : address of first argument in argument array.
34 // SP + 4*S4 : address of return value. 33 // SP + 4*S4 : address of return value.
35 // S5 : address of the runtime function to call. 34 // S5 : address of the runtime function to call.
36 // S4 : number of arguments to the call. 35 // S4 : number of arguments to the call.
37 void StubCode::GenerateCallToRuntimeStub(Assembler* assembler) { 36 void StubCode::GenerateCallToRuntimeStub(Assembler* assembler) {
(...skipping 2190 matching lines...) Expand 10 before | Expand all | Expand 10 after
2228 const Register right = T0; 2227 const Register right = T0;
2229 __ lw(left, Address(SP, 1 * kWordSize)); 2228 __ lw(left, Address(SP, 1 * kWordSize));
2230 __ lw(right, Address(SP, 0 * kWordSize)); 2229 __ lw(right, Address(SP, 0 * kWordSize));
2231 GenerateIdenticalWithNumberCheckStub(assembler, left, right, temp1, temp2); 2230 GenerateIdenticalWithNumberCheckStub(assembler, left, right, temp1, temp2);
2232 __ Ret(); 2231 __ Ret();
2233 } 2232 }
2234 2233
2235 } // namespace dart 2234 } // namespace dart
2236 2235
2237 #endif // defined TARGET_ARCH_MIPS 2236 #endif // defined TARGET_ARCH_MIPS
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698