2012-02-18 23:52:41 +07:00
|
|
|
#include <linux/kernel.h>
|
|
|
|
#include <linux/jump_label.h>
|
2015-01-09 09:19:49 +07:00
|
|
|
#include <asm/patch.h>
|
2015-01-09 13:37:36 +07:00
|
|
|
#include <asm/insn.h>
|
2012-02-18 23:52:41 +07:00
|
|
|
|
|
|
|
#ifdef HAVE_JUMP_LABEL
|
|
|
|
|
|
|
|
static void __arch_jump_label_transform(struct jump_entry *entry,
|
|
|
|
enum jump_label_type type,
|
|
|
|
bool is_static)
|
|
|
|
{
|
|
|
|
void *addr = (void *)entry->code;
|
|
|
|
unsigned int insn;
|
|
|
|
|
2015-07-24 19:45:44 +07:00
|
|
|
if (type == JUMP_LABEL_JMP)
|
2012-02-18 23:52:41 +07:00
|
|
|
insn = arm_gen_branch(entry->code, entry->target);
|
|
|
|
else
|
|
|
|
insn = arm_gen_nop();
|
|
|
|
|
|
|
|
if (is_static)
|
2014-04-25 04:28:57 +07:00
|
|
|
__patch_text_early(addr, insn);
|
2012-02-18 23:52:41 +07:00
|
|
|
else
|
|
|
|
patch_text(addr, insn);
|
|
|
|
}
|
|
|
|
|
|
|
|
void arch_jump_label_transform(struct jump_entry *entry,
|
|
|
|
enum jump_label_type type)
|
|
|
|
{
|
|
|
|
__arch_jump_label_transform(entry, type, false);
|
|
|
|
}
|
|
|
|
|
|
|
|
void arch_jump_label_transform_static(struct jump_entry *entry,
|
|
|
|
enum jump_label_type type)
|
|
|
|
{
|
|
|
|
__arch_jump_label_transform(entry, type, true);
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|