mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-08-05 16:54:27 +00:00

Implement inline static calls: - Put a 'bl' to the destination function ('b' if tail call) - Put a 'nop' when the destination function is NULL ('blr' if tail call) - Put a 'li r3,0' when the destination is the RET0 function and not a tail call. If the destination is too far (over the 32Mb limit), go via the trampoline. Signed-off-by: Christophe Leroy <christophe.leroy@csgroup.eu> Signed-off-by: Madhavan Srinivasan <maddy@linux.ibm.com> Link: https://patch.msgid.link/3dbd0b2ba577c942729235d0211d04a406653d81.1733245362.git.christophe.leroy@csgroup.eu
31 lines
1.1 KiB
C
31 lines
1.1 KiB
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
#ifndef _ASM_POWERPC_STATIC_CALL_H
|
|
#define _ASM_POWERPC_STATIC_CALL_H
|
|
|
|
#define __PPC_SCT(name, inst) \
|
|
asm(".pushsection .text, \"ax\" \n" \
|
|
".align 5 \n" \
|
|
".globl " STATIC_CALL_TRAMP_STR(name) " \n" \
|
|
STATIC_CALL_TRAMP_STR(name) ": \n" \
|
|
inst " \n" \
|
|
" lis 12,2f@ha \n" \
|
|
" lwz 12,2f@l(12) \n" \
|
|
" mtctr 12 \n" \
|
|
" bctr \n" \
|
|
"1: li 3, 0 \n" \
|
|
" blr \n" \
|
|
"2: .long 0 \n" \
|
|
".type " STATIC_CALL_TRAMP_STR(name) ", @function \n" \
|
|
".size " STATIC_CALL_TRAMP_STR(name) ", . - " STATIC_CALL_TRAMP_STR(name) " \n" \
|
|
".popsection \n")
|
|
|
|
#define PPC_SCT_RET0 20 /* Offset of label 1 */
|
|
#define PPC_SCT_DATA 28 /* Offset of label 2 */
|
|
|
|
#define ARCH_DEFINE_STATIC_CALL_TRAMP(name, func) __PPC_SCT(name, "b " #func)
|
|
#define ARCH_DEFINE_STATIC_CALL_NULL_TRAMP(name) __PPC_SCT(name, "blr")
|
|
#define ARCH_DEFINE_STATIC_CALL_RET0_TRAMP(name) __PPC_SCT(name, "b .+20")
|
|
|
|
#define CALL_INSN_SIZE 4
|
|
|
|
#endif /* _ASM_POWERPC_STATIC_CALL_H */
|