OLD | NEW |
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 Loading... |
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 |
OLD | NEW |