Lines Matching refs:er
72 enum emulation_result er = EMULATE_DONE; in kvm_trap_emul_handle_cop_unusable() local
83 er = kvm_mips_emulate_fpu_exc(cause, opc, vcpu); in kvm_trap_emul_handle_cop_unusable()
87 er = EMULATE_DONE; in kvm_trap_emul_handle_cop_unusable()
90 er = kvm_mips_emulate_inst(cause, opc, vcpu); in kvm_trap_emul_handle_cop_unusable()
93 switch (er) { in kvm_trap_emul_handle_cop_unusable()
120 enum emulation_result er; in kvm_mips_bad_load() local
140 er = kvm_mips_emulate_load(inst, cause, vcpu); in kvm_mips_bad_load()
141 if (er == EMULATE_FAIL) { in kvm_mips_bad_load()
152 enum emulation_result er; in kvm_mips_bad_store() local
166 er = kvm_mips_emulate_store(inst, cause, vcpu); in kvm_mips_bad_store()
167 if (er == EMULATE_FAIL) { in kvm_mips_bad_store()
251 enum emulation_result er = EMULATE_DONE; in kvm_trap_emul_handle_tlb_miss() local
275 er = kvm_mips_handle_tlbmiss(cause, opc, vcpu, store); in kvm_trap_emul_handle_tlb_miss()
276 if (er == EMULATE_DONE) in kvm_trap_emul_handle_tlb_miss()
358 enum emulation_result er = EMULATE_DONE; in kvm_trap_emul_handle_syscall() local
361 er = kvm_mips_emulate_syscall(cause, opc, vcpu); in kvm_trap_emul_handle_syscall()
362 if (er == EMULATE_DONE) in kvm_trap_emul_handle_syscall()
375 enum emulation_result er = EMULATE_DONE; in kvm_trap_emul_handle_res_inst() local
378 er = kvm_mips_handle_ri(cause, opc, vcpu); in kvm_trap_emul_handle_res_inst()
379 if (er == EMULATE_DONE) in kvm_trap_emul_handle_res_inst()
392 enum emulation_result er = EMULATE_DONE; in kvm_trap_emul_handle_break() local
395 er = kvm_mips_emulate_bp_exc(cause, opc, vcpu); in kvm_trap_emul_handle_break()
396 if (er == EMULATE_DONE) in kvm_trap_emul_handle_break()
409 enum emulation_result er = EMULATE_DONE; in kvm_trap_emul_handle_trap() local
412 er = kvm_mips_emulate_trap_exc(cause, opc, vcpu); in kvm_trap_emul_handle_trap()
413 if (er == EMULATE_DONE) { in kvm_trap_emul_handle_trap()
426 enum emulation_result er = EMULATE_DONE; in kvm_trap_emul_handle_msa_fpe() local
429 er = kvm_mips_emulate_msafpe_exc(cause, opc, vcpu); in kvm_trap_emul_handle_msa_fpe()
430 if (er == EMULATE_DONE) { in kvm_trap_emul_handle_msa_fpe()
443 enum emulation_result er = EMULATE_DONE; in kvm_trap_emul_handle_fpe() local
446 er = kvm_mips_emulate_fpe_exc(cause, opc, vcpu); in kvm_trap_emul_handle_fpe()
447 if (er == EMULATE_DONE) { in kvm_trap_emul_handle_fpe()
467 enum emulation_result er = EMULATE_DONE; in kvm_trap_emul_handle_msa_disabled() local
476 er = kvm_mips_emulate_ri_exc(cause, opc, vcpu); in kvm_trap_emul_handle_msa_disabled()
479 er = kvm_mips_emulate_msadis_exc(cause, opc, vcpu); in kvm_trap_emul_handle_msa_disabled()
483 er = EMULATE_DONE; in kvm_trap_emul_handle_msa_disabled()
486 switch (er) { in kvm_trap_emul_handle_msa_disabled()