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