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

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

Issue 2997993002: Revert "Reapply "Eliminate dependencies on assemblers and code stubs in precompiled runtime."" (Closed)
Patch Set: Created 3 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
« 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)
40 // Generate code to call into the stub which will call the runtime 39 // Generate code to call into the stub which will call the runtime
41 // function. Input for the stub is as follows: 40 // function. Input for the stub is as follows:
42 // SP : points to the arguments and return value array. 41 // SP : points to the arguments and return value array.
43 // R9 : address of the runtime function to call. 42 // R9 : address of the runtime function to call.
44 // R4 : number of arguments to the call. 43 // R4 : number of arguments to the call.
45 void RuntimeEntry::Call(Assembler* assembler, intptr_t argument_count) const { 44 void RuntimeEntry::Call(Assembler* assembler, intptr_t argument_count) const {
46 if (is_leaf()) { 45 if (is_leaf()) {
47 ASSERT(argument_count == this->argument_count()); 46 ASSERT(argument_count == this->argument_count());
48 __ BranchLinkOffset(THR, Thread::OffsetFromThread(this)); 47 __ BranchLinkOffset(THR, Thread::OffsetFromThread(this));
49 } else { 48 } else {
50 // Argument count is not checked here, but in the runtime entry for a more 49 // Argument count is not checked here, but in the runtime entry for a more
51 // informative error message. 50 // informative error message.
52 __ LoadFromOffset(kWord, R9, THR, Thread::OffsetFromThread(this)); 51 __ LoadFromOffset(kWord, R9, THR, Thread::OffsetFromThread(this));
53 __ LoadImmediate(R4, argument_count); 52 __ LoadImmediate(R4, argument_count);
54 __ BranchLinkToRuntime(); 53 __ BranchLinkToRuntime();
55 } 54 }
56 } 55 }
57 #endif // !defined(DART_PRECOMPILED_RUNTIME)
58 56
59 } // namespace dart 57 } // namespace dart
60 58
61 #endif // defined TARGET_ARCH_ARM 59 #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