Home
last modified time | relevance | path

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

/Linux-v5.4/arch/mips/kernel/
Dunaligned.c1398 u16 __user *pc16; in emulate_load_store_microMIPS() local
1413 pc16 = (unsigned short __user *)msk_isa16_mode(regs->cp0_epc); in emulate_load_store_microMIPS()
1414 __get_user(halfword, pc16); in emulate_load_store_microMIPS()
1415 pc16++; in emulate_load_store_microMIPS()
1421 __get_user(halfword, pc16); in emulate_load_store_microMIPS()
1422 pc16++; in emulate_load_store_microMIPS()
1429 if (get_user(halfword, pc16)) in emulate_load_store_microMIPS()
1435 pc16++; in emulate_load_store_microMIPS()
1436 if (get_user(halfword, pc16)) in emulate_load_store_microMIPS()
2016 u16 __user *pc16; in emulate_load_store_MIPS16e() local
[all …]
Dbranch.c262 u16 __user *pc16; in __microMIPS_compute_return_epc() local
271 pc16 = (unsigned short __user *)msk_isa16_mode(regs->cp0_epc); in __microMIPS_compute_return_epc()
272 __get_user(halfword, pc16); in __microMIPS_compute_return_epc()
273 pc16++; in __microMIPS_compute_return_epc()
279 __get_user(halfword, pc16); in __microMIPS_compute_return_epc()
280 pc16++; in __microMIPS_compute_return_epc()
287 if (get_user(halfword, pc16)) in __microMIPS_compute_return_epc()
293 pc16++; in __microMIPS_compute_return_epc()
294 if (get_user(halfword, pc16)) in __microMIPS_compute_return_epc()
Dtraps.c234 unsigned short __user *pc16 = NULL; in show_code() local
239 pc16 = (unsigned short __user *)((unsigned long)pc & ~1); in show_code()
242 if (pc16 ? __get_user(insn, pc16 + i) : __get_user(insn, pc + i)) { in show_code()
246 pr_cont("%c%0*x%c", (i?' ':'<'), pc16 ? 4 : 8, insn, (i?' ':'>')); in show_code()