This source file includes following definitions.
- reassemble_17
- arch_jump_label_transform
- arch_jump_label_transform_static
1
2
3
4
5
6
7 #include <linux/kernel.h>
8 #include <linux/jump_label.h>
9 #include <linux/bug.h>
10 #include <asm/alternative.h>
11 #include <asm/patch.h>
12
13 static inline int reassemble_17(int as17)
14 {
15 return (((as17 & 0x10000) >> 16) |
16 ((as17 & 0x0f800) << 5) |
17 ((as17 & 0x00400) >> 8) |
18 ((as17 & 0x003ff) << 3));
19 }
20
21 void arch_jump_label_transform(struct jump_entry *entry,
22 enum jump_label_type type)
23 {
24 void *addr = (void *)jump_entry_code(entry);
25 u32 insn;
26
27 if (type == JUMP_LABEL_JMP) {
28 void *target = (void *)jump_entry_target(entry);
29 int distance = target - addr;
30
31
32
33
34
35
36 distance -= 8;
37 BUG_ON(distance > 262143 || distance < -262144);
38 insn = 0xe8000002 | reassemble_17(distance >> 2);
39 } else {
40 insn = INSN_NOP;
41 }
42
43 patch_text(addr, insn);
44 }
45
46 void arch_jump_label_transform_static(struct jump_entry *entry,
47 enum jump_label_type type)
48 {
49
50
51
52
53
54
55 }