mirror of
https://github.com/python/cpython.git
synced 2025-07-30 14:44:10 +00:00

⚠️ ⚠️ Note for reviewers, hackers and fellow systems/low-level/compiler engineers ⚠️ ⚠️ If you have a lot of experience with this kind of shenanigans and want to improve the **first** version, **please make a PR against my branch** or **reach out by email** or **suggest code changes directly on GitHub**. If you have any **refinements or optimizations** please, wait until the first version is merged before starting hacking or proposing those so we can keep this PR productive.
28 lines
776 B
ArmAsm
28 lines
776 B
ArmAsm
.text
|
|
.globl _Py_trampoline_func_start
|
|
# The following assembly is equivalent to:
|
|
# PyObject *
|
|
# trampoline(PyThreadState *ts, _PyInterpreterFrame *f,
|
|
# int throwflag, py_evaluator evaluator)
|
|
# {
|
|
# return evaluator(ts, f, throwflag);
|
|
# }
|
|
_Py_trampoline_func_start:
|
|
#ifdef __x86_64__
|
|
sub $8, %rsp
|
|
call *%rcx
|
|
add $8, %rsp
|
|
ret
|
|
#endif // __x86_64__
|
|
#if defined(__aarch64__) && defined(__AARCH64EL__) && !defined(__ILP32__)
|
|
// ARM64 little endian, 64bit ABI
|
|
// generate with aarch64-linux-gnu-gcc 12.1
|
|
stp x29, x30, [sp, -16]!
|
|
mov x29, sp
|
|
blr x3
|
|
ldp x29, x30, [sp], 16
|
|
ret
|
|
#endif
|
|
.globl _Py_trampoline_func_end
|
|
_Py_trampoline_func_end:
|
|
.section .note.GNU-stack,"",@progbits
|