GNU Linux-libre 4.19.264-gnu1
[releases.git] / arch / s390 / include / asm / jump_label.h
1 /* SPDX-License-Identifier: GPL-2.0 */
2 #ifndef _ASM_S390_JUMP_LABEL_H
3 #define _ASM_S390_JUMP_LABEL_H
4
5 #ifndef __ASSEMBLY__
6
7 #include <linux/types.h>
8 #include <linux/stringify.h>
9
10 #define JUMP_LABEL_NOP_SIZE 6
11 #define JUMP_LABEL_NOP_OFFSET 2
12
13 #if __GNUC__ < 9
14 #define JUMP_LABEL_STATIC_KEY_CONSTRAINT "X"
15 #else
16 #define JUMP_LABEL_STATIC_KEY_CONSTRAINT "jdd"
17 #endif
18
19 /*
20  * We use a brcl 0,2 instruction for jump labels at compile time so it
21  * can be easily distinguished from a hotpatch generated instruction.
22  */
23 static __always_inline bool arch_static_branch(struct static_key *key, bool branch)
24 {
25         asm_volatile_goto("0:   brcl 0,"__stringify(JUMP_LABEL_NOP_OFFSET)"\n"
26                 ".pushsection __jump_table, \"aw\"\n"
27                 ".balign 8\n"
28                 ".quad 0b, %l[label], %0+%1\n"
29                 ".popsection\n"
30                 : : JUMP_LABEL_STATIC_KEY_CONSTRAINT (key), "i" (branch) : : label);
31
32         return false;
33 label:
34         return true;
35 }
36
37 static __always_inline bool arch_static_branch_jump(struct static_key *key, bool branch)
38 {
39         asm_volatile_goto("0:   brcl 15, %l[label]\n"
40                 ".pushsection __jump_table, \"aw\"\n"
41                 ".balign 8\n"
42                 ".quad 0b, %l[label], %0+%1\n"
43                 ".popsection\n"
44                 : : JUMP_LABEL_STATIC_KEY_CONSTRAINT (key), "i" (branch) : : label);
45
46         return false;
47 label:
48         return true;
49 }
50
51 typedef unsigned long jump_label_t;
52
53 struct jump_entry {
54         jump_label_t code;
55         jump_label_t target;
56         jump_label_t key;
57 };
58
59 #endif  /* __ASSEMBLY__ */
60 #endif