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 22 matching lines...) Expand all Loading... |
33 Simulator::CallKind call_kind = | 33 Simulator::CallKind call_kind = |
34 is_leaf() ? (is_float() ? Simulator::kLeafFloatRuntimeCall | 34 is_leaf() ? (is_float() ? Simulator::kLeafFloatRuntimeCall |
35 : Simulator::kLeafRuntimeCall) | 35 : Simulator::kLeafRuntimeCall) |
36 : Simulator::kRuntimeCall; | 36 : Simulator::kRuntimeCall; |
37 entry = | 37 entry = |
38 Simulator::RedirectExternalReference(entry, call_kind, argument_count); | 38 Simulator::RedirectExternalReference(entry, call_kind, argument_count); |
39 #endif | 39 #endif |
40 if (is_leaf()) { | 40 if (is_leaf()) { |
41 ASSERT(argument_count == this->argument_count()); | 41 ASSERT(argument_count == this->argument_count()); |
42 ExternalLabel label(entry); | 42 ExternalLabel label(entry); |
| 43 // Cache the stack pointer in a callee-saved register. |
| 44 __ mov(R26, SP); |
43 __ BranchLink(&label, kNoPP); | 45 __ BranchLink(&label, kNoPP); |
| 46 __ mov(SP, R26); |
44 } else { | 47 } else { |
45 // Argument count is not checked here, but in the runtime entry for a more | 48 // Argument count is not checked here, but in the runtime entry for a more |
46 // informative error message. | 49 // informative error message. |
47 __ LoadImmediate(R5, entry, kNoPP); | 50 __ LoadImmediate(R5, entry, kNoPP); |
48 __ LoadImmediate(R4, argument_count, kNoPP); | 51 __ LoadImmediate(R4, argument_count, kNoPP); |
49 __ BranchLink(&StubCode::CallToRuntimeLabel(), PP); | 52 __ BranchLink(&StubCode::CallToRuntimeLabel(), PP); |
50 } | 53 } |
51 } | 54 } |
52 | 55 |
53 } // namespace dart | 56 } // namespace dart |
54 | 57 |
55 #endif // defined TARGET_ARCH_ARM64 | 58 #endif // defined TARGET_ARCH_ARM64 |
OLD | NEW |