| /* SPDX-License-Identifier: GPL-2.0 */ |
| #ifndef _ASM_SPARC_JUMP_LABEL_H |
| #define _ASM_SPARC_JUMP_LABEL_H |
| #define JUMP_LABEL_NOP_SIZE 4 |
| static __always_inline bool arch_static_branch(struct static_key *key, bool branch) |
| asm_volatile_goto("1:\n\t" |
| ".pushsection __jump_table, \"aw\"\n\t" |
| ".word 1b, %l[l_yes], %c0\n\t" |
| : : "i" (&((char *)key)[branch]) : : l_yes); |
| static __always_inline bool arch_static_branch_jump(struct static_key *key, bool branch) |
| asm_volatile_goto("1:\n\t" |
| ".pushsection __jump_table, \"aw\"\n\t" |
| ".word 1b, %l[l_yes], %c0\n\t" |
| : : "i" (&((char *)key)[branch]) : : l_yes); |
| typedef u32 jump_label_t; |
| #endif /* __ASSEMBLY__ */ |