1 #ifndef _ASM_POWERPC_JUMP_LABEL_H
2 #define _ASM_POWERPC_JUMP_LABEL_H
5 * Copyright 2010 Michael Ellerman, IBM Corp.
7 * This program is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License
9 * as published by the Free Software Foundation; either version
10 * 2 of the License, or (at your option) any later version.
13 #include <linux/types.h>
15 #include <asm/feature-fixups.h>
17 #define JUMP_ENTRY_TYPE stringify_in_c(FTR_ENTRY_LONG)
18 #define JUMP_LABEL_NOP_SIZE 4
20 static __always_inline bool arch_static_branch(struct jump_label_key *key)
24 ".pushsection __jump_table, \"aw\"\n\t"
25 JUMP_ENTRY_TYPE "1b, %l[l_yes], %c0\n\t"
27 : : "i" (key) : : l_yes);
34 typedef u64 jump_label_t;
36 typedef u32 jump_label_t;
45 #endif /* _ASM_POWERPC_JUMP_LABEL_H */