Home
last modified time | relevance | path

Searched refs:instr2 (Results 1 – 3 of 3) sorted by relevance

/arch/arm64/kernel/
Dtraps.c366 u32 instr2; in call_undef_hook() local
368 if (get_user(instr2, (u16 __user *)(pc + 2))) in call_undef_hook()
370 instr2 = le16_to_cpu(instr2); in call_undef_hook()
371 instr = (instr << 16) | instr2; in call_undef_hook()
/arch/arm/kernel/
Dtraps.c441 unsigned int instr2; in do_undefinstr() local
442 if (get_user(instr2, (u16 __user *)pc+1)) in do_undefinstr()
444 instr2 = __mem_to_opcode_thumb16(instr2); in do_undefinstr()
445 instr = __opcode_thumb32_compose(instr, instr2); in do_undefinstr()
/arch/arm/probes/kprobes/
Dtest-core.c1413 u16 instr2 = __mem_to_opcode_thumb16(p[1]); in kprobes_test_case_start() local
1414 current_instruction = __opcode_thumb32_compose(current_instruction, instr2); in kprobes_test_case_start()