1 /* SPDX-License-Identifier: GPL-2.0-only */
3 #ifndef __ASM_CSKY_JUMP_LABEL_H
4 #define __ASM_CSKY_JUMP_LABEL_H
8 #include <linux/types.h>
10 #define JUMP_LABEL_NOP_SIZE 4
12 static __always_inline
bool arch_static_branch(struct static_key
*key
,
17 " .pushsection __jump_table, \"aw\" \n"
19 " .long 1b - ., %l[label] - . \n"
22 : : "i"(&((char *)key
)[branch
]) : : label
);
29 static __always_inline
bool arch_static_branch_jump(struct static_key
*key
,
33 "1: bsr32 %l[label] \n"
34 " .pushsection __jump_table, \"aw\" \n"
36 " .long 1b - ., %l[label] - . \n"
39 : : "i"(&((char *)key
)[branch
]) : : label
);
47 void arch_jump_label_transform_static(struct jump_entry
*entry
,
48 enum jump_label_type type
);
49 #define arch_jump_label_transform_static arch_jump_label_transform_static
51 #endif /* __ASSEMBLY__ */
52 #endif /* __ASM_CSKY_JUMP_LABEL_H */