| 
									
										
										
										
											2010-09-17 11:09:22 -04:00
										 |  |  | #ifndef _ASM_X86_JUMP_LABEL_H
 | 
					
						
							|  |  |  | #define _ASM_X86_JUMP_LABEL_H
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #ifdef __KERNEL__
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-01-26 18:06:45 -05:00
										 |  |  | #include <linux/stringify.h>
 | 
					
						
							| 
									
										
										
										
											2010-09-17 11:09:22 -04:00
										 |  |  | #include <linux/types.h>
 | 
					
						
							|  |  |  | #include <asm/nops.h>
 | 
					
						
							| 
									
										
										
										
											2011-03-16 17:29:47 -04:00
										 |  |  | #include <asm/asm.h>
 | 
					
						
							| 
									
										
										
										
											2010-09-17 11:09:22 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  | #define JUMP_LABEL_NOP_SIZE 5
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-01-26 18:06:45 -05:00
										 |  |  | #ifdef CONFIG_X86_64
 | 
					
						
							|  |  |  | # define STATIC_KEY_INIT_NOP P6_NOP5_ATOMIC
 | 
					
						
							|  |  |  | #else
 | 
					
						
							|  |  |  | # define STATIC_KEY_INIT_NOP GENERIC_NOP5_ATOMIC
 | 
					
						
							|  |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2011-03-16 17:29:47 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-24 08:31:31 +01:00
										 |  |  | static __always_inline bool arch_static_branch(struct static_key *key) | 
					
						
							| 
									
										
										
										
											2011-03-16 17:29:47 -04:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2013-10-10 10:16:30 +02:00
										 |  |  | 	asm_volatile_goto("1:" | 
					
						
							| 
									
										
										
										
											2012-01-26 18:06:45 -05:00
										 |  |  | 		".byte " __stringify(STATIC_KEY_INIT_NOP) "\n\t" | 
					
						
							| 
									
										
										
										
											2011-03-16 17:29:47 -04:00
										 |  |  | 		".pushsection __jump_table,  \"aw\" \n\t" | 
					
						
							| 
									
										
										
										
											2011-03-16 15:58:27 -04:00
										 |  |  | 		_ASM_ALIGN "\n\t" | 
					
						
							| 
									
										
										
										
											2011-03-16 17:29:47 -04:00
										 |  |  | 		_ASM_PTR "1b, %l[l_yes], %c0 \n\t" | 
					
						
							|  |  |  | 		".popsection \n\t" | 
					
						
							|  |  |  | 		: :  "i" (key) : : l_yes); | 
					
						
							|  |  |  | 	return false; | 
					
						
							|  |  |  | l_yes: | 
					
						
							|  |  |  | 	return true; | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2010-09-17 11:09:22 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  | #endif /* __KERNEL__ */
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #ifdef CONFIG_X86_64
 | 
					
						
							|  |  |  | typedef u64 jump_label_t; | 
					
						
							|  |  |  | #else
 | 
					
						
							|  |  |  | typedef u32 jump_label_t; | 
					
						
							| 
									
										
										
										
											2010-09-22 17:37:43 -04:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2010-09-17 11:09:22 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  | struct jump_entry { | 
					
						
							|  |  |  | 	jump_label_t code; | 
					
						
							|  |  |  | 	jump_label_t target; | 
					
						
							|  |  |  | 	jump_label_t key; | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #endif
 |