• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /freebsd-12-stable/sys/amd64/vmm/intel/

Lines Matching refs:handled

1186 	int handled, func;
1190 handled = x86_emulate_cpuid(vm, vcpu,
1195 return (handled);
1208 int handled)
1212 handled ? "handled" : "unhandled",
2110 int error, handled, offset;
2114 handled = HANDLED;
2155 handled = UNHANDLED;
2168 handled = UNHANDLED;
2171 return (handled);
2243 * - if the access is allowed then it is handled by emulating the
2314 int error, errcode, errcode_valid, handled, in;
2327 handled = UNHANDLED;
2340 * These VM-exits are uncommon but must be handled specially
2351 * be handled specially by re-injecting the event if the IDT
2449 handled = vmx_emulate_cr0_access(vmx, vcpu, qual);
2452 handled = vmx_emulate_cr4_access(vmx, vcpu, qual);
2455 handled = vmx_emulate_cr8_access(vmx, vcpu, qual);
2470 handled = HANDLED;
2494 handled = HANDLED;
2554 * This is special. We want to treat this as an 'handled'
2593 handled = vmx_handle_cpuid(vmx->vm, vcpu, vmxctx);
2619 * The NMI has already been handled in vmx_exit_handle_nmi().
2719 handled = vmx_handle_apic_access(vmx, vcpu, vmexit);
2730 handled = vmx_handle_apic_write(vmx, vcpu, vlapic, qual);
2734 handled = vmx_emulate_xsetbv(vmx, vcpu, vmexit);
2748 handled = HANDLED;
2770 if (handled) {
2803 vmx, vcpu, vmexit, handled);
2804 return (handled);
2956 int rc, handled, launched;
2998 handled = UNHANDLED;
3047 handled = HANDLED;
3088 * transition of this MSR is handled separately from those
3089 * handled by vmx_msr_guest_{enter,exit}(), which are ok to
3131 handled = vmx_exit_process(vmx, vcpu, vmexit);
3137 vmx_exit_trace(vmx, vcpu, rip, exit_reason, handled);
3139 } while (handled);
3142 * If a VM exit has been handled then the exitcode must be BOGUS
3143 * If a VM exit is not handled then the exitcode must not be BOGUS
3145 if ((handled && vmexit->exitcode != VM_EXITCODE_BOGUS) ||
3146 (!handled && vmexit->exitcode == VM_EXITCODE_BOGUS)) {
3147 panic("Mismatch between handled (%d) and exitcode (%d)",
3148 handled, vmexit->exitcode);
3151 if (!handled)