Home
last modified time | relevance | path

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

/arch/mips/kernel/
Dunaligned.c623 u16 __user *pc16; in emulate_load_store_microMIPS() local
638 pc16 = (unsigned short __user *)msk_isa16_mode(regs->cp0_epc); in emulate_load_store_microMIPS()
639 __get_user(halfword, pc16); in emulate_load_store_microMIPS()
640 pc16++; in emulate_load_store_microMIPS()
646 __get_user(halfword, pc16); in emulate_load_store_microMIPS()
647 pc16++; in emulate_load_store_microMIPS()
654 if (get_user(halfword, pc16)) in emulate_load_store_microMIPS()
660 pc16++; in emulate_load_store_microMIPS()
661 if (get_user(halfword, pc16)) in emulate_load_store_microMIPS()
1241 u16 __user *pc16; in emulate_load_store_MIPS16e() local
[all …]
Dbranch.c264 u16 __user *pc16; in __microMIPS_compute_return_epc() local
273 pc16 = (unsigned short __user *)msk_isa16_mode(regs->cp0_epc); in __microMIPS_compute_return_epc()
274 __get_user(halfword, pc16); in __microMIPS_compute_return_epc()
275 pc16++; in __microMIPS_compute_return_epc()
281 __get_user(halfword, pc16); in __microMIPS_compute_return_epc()
282 pc16++; in __microMIPS_compute_return_epc()
289 if (get_user(halfword, pc16)) in __microMIPS_compute_return_epc()
295 pc16++; in __microMIPS_compute_return_epc()
296 if (get_user(halfword, pc16)) in __microMIPS_compute_return_epc()
Dtraps.c232 unsigned short __user *pc16 = NULL; in show_code() local
237 pc16 = (unsigned short __user *)((unsigned long)pc & ~1); in show_code()
240 if (pc16 ? __get_user(insn, pc16 + i) : __get_user(insn, pc + i)) { in show_code()
244 pr_cont("%c%0*x%c", (i?' ':'<'), pc16 ? 4 : 8, insn, (i?' ':'>')); in show_code()