Lines Matching refs:insn
15 unsigned int insn; member
55 void __kprobes __patch_text_real(void *addr, unsigned int insn, bool remap) in __patch_text_real() argument
69 if (thumb2 && __opcode_is_thumb16(insn)) { in __patch_text_real()
70 *(u16 *)waddr = __opcode_to_mem_thumb16(insn); in __patch_text_real()
73 u16 first = __opcode_thumb32_first(insn); in __patch_text_real()
74 u16 second = __opcode_thumb32_second(insn); in __patch_text_real()
93 insn = __opcode_to_mem_thumb32(insn); in __patch_text_real()
95 insn = __opcode_to_mem_arm(insn); in __patch_text_real()
97 *(u32 *)waddr = insn; in __patch_text_real()
115 __patch_text(patch->addr, patch->insn); in patch_text_stop_machine()
120 void __kprobes patch_text(void *addr, unsigned int insn) in patch_text() argument
124 .insn = insn, in patch_text()