Searched refs:exccode (Results 1 – 6 of 6) sorted by relevance
/Linux-v4.19/arch/mips/kvm/ |
D | interrupt.c | 119 u32 exccode; in kvm_mips_irq_deliver_cb() local 130 exccode = EXCCODE_INT; in kvm_mips_irq_deliver_cb() 139 exccode = EXCCODE_INT; in kvm_mips_irq_deliver_cb() 148 exccode = EXCCODE_INT; in kvm_mips_irq_deliver_cb() 157 exccode = EXCCODE_INT; in kvm_mips_irq_deliver_cb() 183 (exccode << CAUSEB_EXCCODE)); in kvm_mips_irq_deliver_cb()
|
D | emulate.c | 2629 u32 exccode = (cause >> CAUSEB_EXCCODE) & 0x1f; in kvm_mips_emulate_exc() local 2645 (exccode << CAUSEB_EXCCODE)); in kvm_mips_emulate_exc() 2652 exccode, kvm_read_c0_guest_epc(cop0), in kvm_mips_emulate_exc() 2668 u32 exccode = (cause >> CAUSEB_EXCCODE) & 0x1f; in kvm_mips_check_privilege() local 2674 switch (exccode) { in kvm_mips_check_privilege() 2765 u32 exccode = (cause >> CAUSEB_EXCCODE) & 0x1f; in kvm_mips_handle_tlbmiss() local 2783 if (exccode == EXCCODE_TLBL) { in kvm_mips_handle_tlbmiss() 2785 } else if (exccode == EXCCODE_TLBS) { in kvm_mips_handle_tlbmiss() 2789 exccode); in kvm_mips_handle_tlbmiss() 2800 if (exccode == EXCCODE_TLBL) { in kvm_mips_handle_tlbmiss() [all …]
|
D | mips.c | 1268 u32 exccode = (cause >> CAUSEB_EXCCODE) & 0x1f; in kvm_mips_handle_exit() local 1295 trace_kvm_exit(vcpu, exccode); in kvm_mips_handle_exit() 1313 switch (exccode) { in kvm_mips_handle_exit() 1413 exccode, opc, inst, badvaddr, in kvm_mips_handle_exit()
|
D | trap_emul.c | 48 u32 exccode = (cause & CAUSEF_EXCCODE) >> CAUSEB_EXCCODE; in kvm_trap_emul_no_handler() local 60 exccode, opc, inst, badvaddr, in kvm_trap_emul_no_handler()
|
D | vz.c | 846 u32 exccode = (cause & CAUSEF_EXCCODE) >> CAUSEB_EXCCODE; in kvm_trap_vz_no_handler() local 858 exccode, opc, inst, badvaddr, in kvm_trap_vz_no_handler()
|
/Linux-v4.19/arch/mips/kernel/ |
D | traps.c | 254 unsigned int exccode; in __show_regs() local 336 exccode = (cause & CAUSEF_EXCCODE) >> CAUSEB_EXCCODE; in __show_regs() 337 printk("Cause : %08x (ExcCode %02x)\n", cause, exccode); in __show_regs() 339 if (1 <= exccode && exccode <= 5) in __show_regs()
|