2010-12-28 21:26:23 +00:00
|
|
|
/*
|
|
|
|
* This file is subject to the terms and conditions of the GNU General Public
|
|
|
|
* License. See the file "COPYING" in the main directory of this archive
|
|
|
|
* for more details.
|
|
|
|
*
|
|
|
|
* Copyright (c) 2010 Cavium Networks, Inc.
|
|
|
|
*/
|
|
|
|
#ifndef _ASM_MIPS_JUMP_LABEL_H
|
|
|
|
#define _ASM_MIPS_JUMP_LABEL_H
|
|
|
|
|
2015-04-09 03:51:30 +00:00
|
|
|
#ifndef __ASSEMBLY__
|
2010-12-28 21:26:23 +00:00
|
|
|
|
2015-04-09 03:51:30 +00:00
|
|
|
#include <linux/types.h>
|
2019-04-05 22:50:36 +00:00
|
|
|
#include <asm/isa-rev.h>
|
2010-12-28 21:26:23 +00:00
|
|
|
|
|
|
|
#define JUMP_LABEL_NOP_SIZE 4
|
|
|
|
|
|
|
|
#ifdef CONFIG_64BIT
|
|
|
|
#define WORD_INSN ".dword"
|
|
|
|
#else
|
|
|
|
#define WORD_INSN ".word"
|
|
|
|
#endif
|
|
|
|
|
2014-11-17 16:10:32 +00:00
|
|
|
#ifdef CONFIG_CPU_MICROMIPS
|
2019-04-05 22:50:36 +00:00
|
|
|
# define B_INSN "b32"
|
|
|
|
# define J_INSN "j32"
|
|
|
|
#elif MIPS_ISA_REV >= 6
|
|
|
|
# define B_INSN "bc"
|
|
|
|
# define J_INSN "bc"
|
2014-11-17 16:10:32 +00:00
|
|
|
#else
|
2019-04-05 22:50:36 +00:00
|
|
|
# define B_INSN "b"
|
|
|
|
# define J_INSN "j"
|
2014-11-17 16:10:32 +00:00
|
|
|
#endif
|
|
|
|
|
2015-07-24 13:09:55 +00:00
|
|
|
static __always_inline bool arch_static_branch(struct static_key *key, bool branch)
|
2011-03-16 21:29:47 +00:00
|
|
|
{
|
2019-03-08 03:29:19 +00:00
|
|
|
asm_volatile_goto("1:\t" B_INSN " 2f\n\t"
|
2019-04-05 22:50:35 +00:00
|
|
|
"2:\t.insn\n\t"
|
2011-03-16 21:29:47 +00:00
|
|
|
".pushsection __jump_table, \"aw\"\n\t"
|
|
|
|
WORD_INSN " 1b, %l[l_yes], %0\n\t"
|
|
|
|
".popsection\n\t"
|
2015-07-24 13:09:55 +00:00
|
|
|
: : "i" (&((char *)key)[branch]) : : l_yes);
|
|
|
|
|
|
|
|
return false;
|
|
|
|
l_yes:
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
static __always_inline bool arch_static_branch_jump(struct static_key *key, bool branch)
|
|
|
|
{
|
2019-04-05 22:50:36 +00:00
|
|
|
asm_volatile_goto("1:\t" J_INSN " %l[l_yes]\n\t"
|
2015-07-24 13:09:55 +00:00
|
|
|
".pushsection __jump_table, \"aw\"\n\t"
|
|
|
|
WORD_INSN " 1b, %l[l_yes], %0\n\t"
|
|
|
|
".popsection\n\t"
|
|
|
|
: : "i" (&((char *)key)[branch]) : : l_yes);
|
|
|
|
|
2011-03-16 21:29:47 +00:00
|
|
|
return false;
|
|
|
|
l_yes:
|
|
|
|
return true;
|
|
|
|
}
|
2010-12-28 21:26:23 +00:00
|
|
|
|
|
|
|
#ifdef CONFIG_64BIT
|
|
|
|
typedef u64 jump_label_t;
|
|
|
|
#else
|
|
|
|
typedef u32 jump_label_t;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
struct jump_entry {
|
|
|
|
jump_label_t code;
|
|
|
|
jump_label_t target;
|
|
|
|
jump_label_t key;
|
|
|
|
};
|
|
|
|
|
2015-04-09 03:51:30 +00:00
|
|
|
#endif /* __ASSEMBLY__ */
|
2010-12-28 21:26:23 +00:00
|
|
|
#endif /* _ASM_MIPS_JUMP_LABEL_H */
|