Searched refs:halfword (Results 1 – 6 of 6) sorted by relevance
/arch/mips/kernel/ |
D | jump_label.c | 63 insn_p->halfword[0] = insn.word >> 16; in arch_jump_label_transform() 64 insn_p->halfword[1] = insn.word; in arch_jump_label_transform()
|
D | branch.c | 259 u16 halfword; in __microMIPS_compute_return_epc() local 268 __get_user(halfword, pc16); in __microMIPS_compute_return_epc() 271 word = ((unsigned int)halfword << 16); in __microMIPS_compute_return_epc() 274 if (!mm_insn_16bit(halfword)) { in __microMIPS_compute_return_epc() 275 __get_user(halfword, pc16); in __microMIPS_compute_return_epc() 279 word |= halfword; in __microMIPS_compute_return_epc() 283 if (get_user(halfword, pc16)) in __microMIPS_compute_return_epc() 286 word = ((unsigned int)halfword << 16); in __microMIPS_compute_return_epc() 288 if (!mm_insn_16bit(halfword)) { in __microMIPS_compute_return_epc() 290 if (get_user(halfword, pc16)) in __microMIPS_compute_return_epc() [all …]
|
D | unaligned.c | 1392 u16 halfword; in emulate_load_store_microMIPS() local 1408 __get_user(halfword, pc16); in emulate_load_store_microMIPS() 1411 word = ((unsigned int)halfword << 16); in emulate_load_store_microMIPS() 1414 if (!mm_insn_16bit(halfword)) { in emulate_load_store_microMIPS() 1415 __get_user(halfword, pc16); in emulate_load_store_microMIPS() 1419 word |= halfword; in emulate_load_store_microMIPS() 1423 if (get_user(halfword, pc16)) in emulate_load_store_microMIPS() 1426 word = ((unsigned int)halfword << 16); in emulate_load_store_microMIPS() 1428 if (!mm_insn_16bit(halfword)) { in emulate_load_store_microMIPS() 1430 if (get_user(halfword, pc16)) in emulate_load_store_microMIPS() [all …]
|
D | process.c | 389 if (is_mmips && mm_insn_16bit(ip->halfword[0])) { in get_frame_info() 390 insn.word = ip->halfword[0] << 16; in get_frame_info() 393 insn.word = ip->halfword[0] << 16 | ip->halfword[1]; in get_frame_info()
|
/arch/mips/math-emu/ |
D | dsemul.c | 261 .halfword = { ir >> 16, ir } in mips_dsemul() 264 .halfword = { break_math >> 16, break_math } in mips_dsemul()
|
/arch/mips/include/uapi/asm/ |
D | inst.h | 1050 unsigned short halfword[2]; member
|