1 /* SPDX-License-Identifier: GPL-2.0 */
2 #ifndef _ASM_S390_JUMP_LABEL_H
3 #define _ASM_S390_JUMP_LABEL_H
7 #include <linux/types.h>
8 #include <linux/stringify.h>
10 #define JUMP_LABEL_NOP_SIZE 6
11 #define JUMP_LABEL_NOP_OFFSET 2
14 * We use a brcl 0,2 instruction for jump labels at compile time so it
15 * can be easily distinguished from a hotpatch generated instruction.
17 static __always_inline
bool arch_static_branch(struct static_key
*key
, bool branch
)
19 asm_volatile_goto("0: brcl 0,"__stringify(JUMP_LABEL_NOP_OFFSET
)"\n"
20 ".pushsection __jump_table, \"aw\"\n"
22 ".quad 0b, %l[label], %0\n"
24 : : "X" (&((char *)key
)[branch
]) : : label
);
31 static __always_inline
bool arch_static_branch_jump(struct static_key
*key
, bool branch
)
33 asm_volatile_goto("0: brcl 15, %l[label]\n"
34 ".pushsection __jump_table, \"aw\"\n"
36 ".quad 0b, %l[label], %0\n"
38 : : "X" (&((char *)key
)[branch
]) : : label
);
45 typedef unsigned long jump_label_t
;
53 #endif /* __ASSEMBLY__ */