Lines Matching refs:instr
422 int call_undef_hook(struct pt_regs *regs, unsigned int instr) in call_undef_hook() argument
426 int (*fn)(struct pt_regs *regs, unsigned int instr) = NULL; in call_undef_hook()
430 if ((instr & hook->instr_mask) == hook->instr_val && in call_undef_hook()
435 return fn ? fn(regs, instr) : 1; in call_undef_hook()
440 unsigned int instr; in do_undefinstr() local
450 instr = __mem_to_opcode_thumb16(((u16 *)pc)[0]); in do_undefinstr()
451 if (is_wide_instruction(instr)) { in do_undefinstr()
454 instr = __opcode_thumb32_compose(instr, inst2); in do_undefinstr()
458 instr = __mem_to_opcode_arm(*(u32 *) pc); in do_undefinstr()
460 if (get_user(instr, (u16 __user *)pc)) in do_undefinstr()
462 instr = __mem_to_opcode_thumb16(instr); in do_undefinstr()
463 if (is_wide_instruction(instr)) { in do_undefinstr()
468 instr = __opcode_thumb32_compose(instr, instr2); in do_undefinstr()
471 if (get_user(instr, (u32 __user *)pc)) in do_undefinstr()
473 instr = __mem_to_opcode_arm(instr); in do_undefinstr()
476 if (call_undef_hook(regs, instr) == 0) in do_undefinstr()
711 static int get_tp_trap(struct pt_regs *regs, unsigned int instr) in get_tp_trap() argument
713 int reg = (instr >> 12) & 15; in get_tp_trap()
744 baddataabort(int code, unsigned long instr, struct pt_regs *regs) in baddataabort() argument
754 task_pid_nr(current), current->comm, code, instr); in baddataabort()
765 arm_notify_die("unknown data abort code", regs, &info, instr, 0); in baddataabort()