OLD | NEW |
1 // Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2014, 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_ARM64) | 6 #if defined(TARGET_ARCH_ARM64) |
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) |
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 // R5 : address of the runtime function to call. | 43 // R5 : 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 // Since we are entering C++ code, we must restore the C stack pointer from | 48 // Since we are entering C++ code, we must restore the C stack pointer from |
48 // the stack limit to an aligned value nearer to the top of the stack. | 49 // the stack limit to an aligned value nearer to the top of the stack. |
(...skipping 15 matching lines...) Expand all Loading... |
64 __ mov(SP, R25); | 65 __ mov(SP, R25); |
65 __ mov(CSP, R23); | 66 __ mov(CSP, R23); |
66 } else { | 67 } else { |
67 // Argument count is not checked here, but in the runtime entry for a more | 68 // Argument count is not checked here, but in the runtime entry for a more |
68 // informative error message. | 69 // informative error message. |
69 __ ldr(R5, Address(THR, Thread::OffsetFromThread(this))); | 70 __ ldr(R5, Address(THR, Thread::OffsetFromThread(this))); |
70 __ LoadImmediate(R4, argument_count); | 71 __ LoadImmediate(R4, argument_count); |
71 __ BranchLinkToRuntime(); | 72 __ BranchLinkToRuntime(); |
72 } | 73 } |
73 } | 74 } |
| 75 #endif // !defined(DART_PRECOMPILED_RUNTIME) |
74 | 76 |
75 } // namespace dart | 77 } // namespace dart |
76 | 78 |
77 #endif // defined TARGET_ARCH_ARM64 | 79 #endif // defined TARGET_ARCH_ARM64 |
OLD | NEW |