2012-02-18 20:52:41 +04:00
|
|
|
#include <linux/kernel.h>
|
|
|
|
#include <linux/jump_label.h>
|
2015-01-09 05:19:49 +03:00
|
|
|
#include <asm/patch.h>
|
2015-01-09 09:37:36 +03:00
|
|
|
#include <asm/insn.h>
|
2012-02-18 20:52:41 +04: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 15:45:44 +03:00
|
|
|
if (type == JUMP_LABEL_JMP)
|
2012-02-18 20:52:41 +04:00
|
|
|
insn = arm_gen_branch(entry->code, entry->target);
|
|
|
|
else
|
|
|
|
insn = arm_gen_nop();
|
|
|
|
|
|
|
|
if (is_static)
|
2014-04-25 01:28:57 +04:00
|
|
|
__patch_text_early(addr, insn);
|
2012-02-18 20:52:41 +04: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
|