Blame view

arch/x86/include/asm/jump_label.h 753 Bytes
d9f5ab7b1   Jason Baron   jump label: x86 s...
1
2
3
4
5
6
7
  #ifndef _ASM_X86_JUMP_LABEL_H
  #define _ASM_X86_JUMP_LABEL_H
  
  #ifdef __KERNEL__
  
  #include <linux/types.h>
  #include <asm/nops.h>
d430d3d7e   Jason Baron   jump label: Intro...
8
  #include <asm/asm.h>
d9f5ab7b1   Jason Baron   jump label: x86 s...
9
10
  
  #define JUMP_LABEL_NOP_SIZE 5
d430d3d7e   Jason Baron   jump label: Intro...
11
12
13
14
15
16
17
18
19
20
  #define JUMP_LABEL_INITIAL_NOP ".byte 0xe9 
  \t .long 0
  \t"
  
  static __always_inline bool arch_static_branch(struct jump_label_key *key)
  {
  	asm goto("1:"
  		JUMP_LABEL_INITIAL_NOP
  		".pushsection __jump_table,  \"aw\" 
  \t"
ef6478941   Jason Baron   jump label: Add _...
21
22
  		_ASM_ALIGN "
  \t"
d430d3d7e   Jason Baron   jump label: Intro...
23
24
25
26
27
28
29
30
31
  		_ASM_PTR "1b, %l[l_yes], %c0 
  \t"
  		".popsection 
  \t"
  		: :  "i" (key) : : l_yes);
  	return false;
  l_yes:
  	return true;
  }
d9f5ab7b1   Jason Baron   jump label: x86 s...
32
33
34
35
  
  #endif /* __KERNEL__ */
  
  #ifdef CONFIG_X86_64
d9f5ab7b1   Jason Baron   jump label: x86 s...
36
  typedef u64 jump_label_t;
d9f5ab7b1   Jason Baron   jump label: x86 s...
37
  #else
d9f5ab7b1   Jason Baron   jump label: x86 s...
38
  typedef u32 jump_label_t;
95fccd465   Steven Rostedt   jump label: Remov...
39
  #endif
d9f5ab7b1   Jason Baron   jump label: x86 s...
40
41
42
43
44
45
46
47
  
  struct jump_entry {
  	jump_label_t code;
  	jump_label_t target;
  	jump_label_t key;
  };
  
  #endif