]>
Commit | Line | Data |
---|---|---|
bf5438fc JB |
1 | #ifndef _LINUX_JUMP_LABEL_H |
2 | #define _LINUX_JUMP_LABEL_H | |
3 | ||
45f81b1c | 4 | #if defined(CC_HAVE_ASM_GOTO) && defined(CONFIG_JUMP_LABEL) |
bf5438fc JB |
5 | # include <asm/jump_label.h> |
6 | # define HAVE_JUMP_LABEL | |
7 | #endif | |
8 | ||
9 | enum jump_label_type { | |
10 | JUMP_LABEL_ENABLE, | |
11 | JUMP_LABEL_DISABLE | |
12 | }; | |
13 | ||
14 | struct module; | |
15 | ||
16 | #ifdef HAVE_JUMP_LABEL | |
17 | ||
18 | extern struct jump_entry __start___jump_table[]; | |
19 | extern struct jump_entry __stop___jump_table[]; | |
20 | ||
91bad2f8 JB |
21 | extern void jump_label_lock(void); |
22 | extern void jump_label_unlock(void); | |
bf5438fc JB |
23 | extern void arch_jump_label_transform(struct jump_entry *entry, |
24 | enum jump_label_type type); | |
4c3ef6d7 | 25 | extern void arch_jump_label_text_poke_early(jump_label_t addr); |
bf5438fc JB |
26 | extern void jump_label_update(unsigned long key, enum jump_label_type type); |
27 | extern void jump_label_apply_nops(struct module *mod); | |
4c3ef6d7 | 28 | extern int jump_label_text_reserved(void *start, void *end); |
bf5438fc | 29 | |
3b6e901f | 30 | #define jump_label_enable(key) \ |
bf5438fc JB |
31 | jump_label_update((unsigned long)key, JUMP_LABEL_ENABLE); |
32 | ||
3b6e901f | 33 | #define jump_label_disable(key) \ |
bf5438fc JB |
34 | jump_label_update((unsigned long)key, JUMP_LABEL_DISABLE); |
35 | ||
36 | #else | |
37 | ||
38 | #define JUMP_LABEL(key, label) \ | |
39 | do { \ | |
40 | if (unlikely(*key)) \ | |
41 | goto label; \ | |
42 | } while (0) | |
43 | ||
3b6e901f | 44 | #define jump_label_enable(cond_var) \ |
bf5438fc JB |
45 | do { \ |
46 | *(cond_var) = 1; \ | |
47 | } while (0) | |
48 | ||
3b6e901f | 49 | #define jump_label_disable(cond_var) \ |
bf5438fc JB |
50 | do { \ |
51 | *(cond_var) = 0; \ | |
52 | } while (0) | |
53 | ||
54 | static inline int jump_label_apply_nops(struct module *mod) | |
55 | { | |
56 | return 0; | |
57 | } | |
58 | ||
4c3ef6d7 JB |
59 | static inline int jump_label_text_reserved(void *start, void *end) |
60 | { | |
61 | return 0; | |
62 | } | |
63 | ||
91bad2f8 JB |
64 | static inline void jump_label_lock(void) {} |
65 | static inline void jump_label_unlock(void) {} | |
66 | ||
bf5438fc JB |
67 | #endif |
68 | ||
ebf31f50 PZ |
69 | #define COND_STMT(key, stmt) \ |
70 | do { \ | |
71 | __label__ jl_enabled; \ | |
72 | JUMP_LABEL(key, jl_enabled); \ | |
73 | if (0) { \ | |
74 | jl_enabled: \ | |
75 | stmt; \ | |
76 | } \ | |
77 | } while (0) | |
78 | ||
bf5438fc | 79 | #endif |