Lines Matching refs:insn
15 struct insn { struct
25 static void jump_label_make_nop(struct jump_entry *entry, struct insn *insn) in jump_label_make_nop() argument
28 insn->opcode = 0xc004; in jump_label_make_nop()
29 insn->offset = 0; in jump_label_make_nop()
32 static void jump_label_make_branch(struct jump_entry *entry, struct insn *insn) in jump_label_make_branch() argument
35 insn->opcode = 0xc0f4; in jump_label_make_branch()
36 insn->offset = (entry->target - entry->code) >> 1; in jump_label_make_branch()
39 static void jump_label_bug(struct jump_entry *entry, struct insn *expected, in jump_label_bug()
40 struct insn *new) in jump_label_bug()
53 static struct insn orignop = {
62 struct insn old, new; in __jump_label_transform()