.text1.globl _Py_trampoline_func_start2# The following assembly is equivalent to:3# PyObject *4# trampoline(PyThreadState *ts, _PyInterpreterFrame *f,5# int throwflag, py_evaluator evaluator)6# {7# return evaluator(ts, f, throwflag);8# }9_Py_trampoline_func_start:10#ifdef __x86_64__11sub $8, %rsp12call *%rcx13add $8, %rsp14ret15#endif // __x86_64__16#if defined(__aarch64__) && defined(__AARCH64EL__) && !defined(__ILP32__)17// ARM64 little endian, 64bit ABI18// generate with aarch64-linux-gnu-gcc 12.119stp x29, x30, [sp, -16]!20mov x29, sp21blr x322ldp x29, x30, [sp], 1623ret24#endif25.globl _Py_trampoline_func_end26_Py_trampoline_func_end:27.section .note.GNU-stack,"",@progbits282930