49 lines
1.1 KiB
C
Raw Normal View History

2026-01-21 18:59:54 +08:00
/* SPDX-License-Identifier: GPL-2.0 */
#ifndef _ASM_PARISC_JUMP_LABEL_H
#define _ASM_PARISC_JUMP_LABEL_H
#ifndef __ASSEMBLY__
#include <linux/types.h>
2026-01-29 22:25:33 +08:00
#include <linux/stringify.h>
2026-01-21 18:59:54 +08:00
#include <asm/assembly.h>
#define JUMP_LABEL_NOP_SIZE 4
static __always_inline bool arch_static_branch(struct static_key *key, bool branch)
{
2026-01-29 22:25:33 +08:00
asm goto("1:\n\t"
2026-01-21 18:59:54 +08:00
"nop\n\t"
".pushsection __jump_table, \"aw\"\n\t"
2026-01-29 22:25:33 +08:00
".align %1\n\t"
2026-01-21 18:59:54 +08:00
".word 1b - ., %l[l_yes] - .\n\t"
__stringify(ASM_ULONG_INSN) " %c0 - .\n\t"
".popsection\n\t"
2026-01-29 22:25:33 +08:00
: : "i" (&((char *)key)[branch]), "i" (sizeof(long))
: : l_yes);
2026-01-21 18:59:54 +08:00
return false;
l_yes:
return true;
}
static __always_inline bool arch_static_branch_jump(struct static_key *key, bool branch)
{
2026-01-29 22:25:33 +08:00
asm goto("1:\n\t"
2026-01-21 18:59:54 +08:00
"b,n %l[l_yes]\n\t"
".pushsection __jump_table, \"aw\"\n\t"
2026-01-29 22:25:33 +08:00
".align %1\n\t"
2026-01-21 18:59:54 +08:00
".word 1b - ., %l[l_yes] - .\n\t"
__stringify(ASM_ULONG_INSN) " %c0 - .\n\t"
".popsection\n\t"
2026-01-29 22:25:33 +08:00
: : "i" (&((char *)key)[branch]), "i" (sizeof(long))
: : l_yes);
2026-01-21 18:59:54 +08:00
return false;
l_yes:
return true;
}
#endif /* __ASSEMBLY__ */
#endif