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

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

Issue 3006923002: Revised "Eliminate dependencies on assemblers and code stubs in precompiled runtime." (Closed)
Patch Set: Explicitly clear unbox_numeric_fields flag in PRODUCT builds Created 3 years, 3 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
« no previous file with comments | « runtime/vm/runtime_entry.cc ('k') | runtime/vm/runtime_entry_arm64.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) 2011, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2011, 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_ARM) 6 #if defined(TARGET_ARCH_ARM)
7 7
8 #include "vm/runtime_entry.h" 8 #include "vm/runtime_entry.h"
9 9
10 #include "vm/assembler.h" 10 #include "vm/assembler.h"
(...skipping 18 matching lines...) Expand all
29 Simulator::CallKind call_kind = 29 Simulator::CallKind call_kind =
30 is_leaf() ? (is_float() ? Simulator::kLeafFloatRuntimeCall 30 is_leaf() ? (is_float() ? Simulator::kLeafFloatRuntimeCall
31 : Simulator::kLeafRuntimeCall) 31 : Simulator::kLeafRuntimeCall)
32 : Simulator::kRuntimeCall; 32 : Simulator::kRuntimeCall;
33 entry = 33 entry =
34 Simulator::RedirectExternalReference(entry, call_kind, argument_count()); 34 Simulator::RedirectExternalReference(entry, call_kind, argument_count());
35 #endif 35 #endif
36 return entry; 36 return entry;
37 } 37 }
38 38
39 #if !defined(DART_PRECOMPILED_RUNTIME)
39 // Generate code to call into the stub which will call the runtime 40 // Generate code to call into the stub which will call the runtime
40 // function. Input for the stub is as follows: 41 // function. Input for the stub is as follows:
41 // SP : points to the arguments and return value array. 42 // SP : points to the arguments and return value array.
42 // R9 : address of the runtime function to call. 43 // R9 : address of the runtime function to call.
43 // R4 : number of arguments to the call. 44 // R4 : number of arguments to the call.
44 void RuntimeEntry::Call(Assembler* assembler, intptr_t argument_count) const { 45 void RuntimeEntry::Call(Assembler* assembler, intptr_t argument_count) const {
45 if (is_leaf()) { 46 if (is_leaf()) {
46 ASSERT(argument_count == this->argument_count()); 47 ASSERT(argument_count == this->argument_count());
47 __ BranchLinkOffset(THR, Thread::OffsetFromThread(this)); 48 __ BranchLinkOffset(THR, Thread::OffsetFromThread(this));
48 } else { 49 } else {
49 // Argument count is not checked here, but in the runtime entry for a more 50 // Argument count is not checked here, but in the runtime entry for a more
50 // informative error message. 51 // informative error message.
51 __ LoadFromOffset(kWord, R9, THR, Thread::OffsetFromThread(this)); 52 __ LoadFromOffset(kWord, R9, THR, Thread::OffsetFromThread(this));
52 __ LoadImmediate(R4, argument_count); 53 __ LoadImmediate(R4, argument_count);
53 __ BranchLinkToRuntime(); 54 __ BranchLinkToRuntime();
54 } 55 }
55 } 56 }
57 #endif // !defined(DART_PRECOMPILED_RUNTIME)
56 58
57 } // namespace dart 59 } // namespace dart
58 60
59 #endif // defined TARGET_ARCH_ARM 61 #endif // defined TARGET_ARCH_ARM
OLDNEW
« no previous file with comments | « runtime/vm/runtime_entry.cc ('k') | runtime/vm/runtime_entry_arm64.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698