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 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
45 // R5 : address of the runtime function to call. | 45 // R5 : address of the runtime function to call. |
46 // R4 : number of arguments to the call. | 46 // R4 : number of arguments to the call. |
47 void RuntimeEntry::Call(Assembler* assembler, intptr_t argument_count) const { | 47 void RuntimeEntry::Call(Assembler* assembler, intptr_t argument_count) const { |
48 if (is_leaf()) { | 48 if (is_leaf()) { |
49 ASSERT(argument_count == this->argument_count()); | 49 ASSERT(argument_count == this->argument_count()); |
50 // Since we are entering C++ code, we must restore the C stack pointer from | 50 // Since we are entering C++ code, we must restore the C stack pointer from |
51 // the stack limit to an aligned value nearer to the top of the stack. | 51 // the stack limit to an aligned value nearer to the top of the stack. |
52 // We cache the Dart stack pointer and the stack limit in callee-saved | 52 // We cache the Dart stack pointer and the stack limit in callee-saved |
53 // registers, then align and call, restoring CSP and SP on return from the | 53 // registers, then align and call, restoring CSP and SP on return from the |
54 // call. | 54 // call. |
55 __ mov(R24, CSP); | 55 COMPILE_ASSERT(R23 != CODE_REG); |
Vyacheslav Egorov (Google)
2016/05/25 11:15:31
It might be good to add a comment here why this ma
rmacnak
2016/05/25 16:58:51
Done.
| |
56 COMPILE_ASSERT(R25 != CODE_REG); | |
57 __ mov(R23, CSP); | |
56 __ mov(R25, SP); | 58 __ mov(R25, SP); |
57 __ ReserveAlignedFrameSpace(0); | 59 __ ReserveAlignedFrameSpace(0); |
58 __ mov(CSP, SP); | 60 __ mov(CSP, SP); |
59 __ ldr(TMP, Address(THR, Thread::OffsetFromThread(this))); | 61 __ ldr(TMP, Address(THR, Thread::OffsetFromThread(this))); |
60 __ blr(TMP); | 62 __ blr(TMP); |
61 __ mov(SP, R25); | 63 __ mov(SP, R25); |
62 __ mov(CSP, R24); | 64 __ mov(CSP, R23); |
63 } else { | 65 } else { |
64 // Argument count is not checked here, but in the runtime entry for a more | 66 // Argument count is not checked here, but in the runtime entry for a more |
65 // informative error message. | 67 // informative error message. |
66 __ ldr(R5, Address(THR, Thread::OffsetFromThread(this))); | 68 __ ldr(R5, Address(THR, Thread::OffsetFromThread(this))); |
67 __ LoadImmediate(R4, argument_count); | 69 __ LoadImmediate(R4, argument_count); |
68 __ BranchLinkToRuntime(); | 70 __ BranchLinkToRuntime(); |
69 } | 71 } |
70 } | 72 } |
71 | 73 |
72 } // namespace dart | 74 } // namespace dart |
73 | 75 |
74 #endif // defined TARGET_ARCH_ARM64 | 76 #endif // defined TARGET_ARCH_ARM64 |
OLD | NEW |