Changeset 13041 in vbox
- Timestamp:
- Oct 7, 2008 12:38:09 PM (16 years ago)
- svn:sync-xref-src-repo-rev:
- 37496
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/hwacc_vmx.h
r13023 r13041 813 813 * @{ 814 814 */ 815 /** Save debug controls (dr7 & IA32_DEBUGCTL_MSR) (forced to 1 on the 'first' VT-x capable CPUs) */ 816 #define VMX_VMCS_CTRL_EXIT_CONTROLS_SAVE_DEBUG RT_BIT(2) 815 817 /** Return to long mode after a VM-exit. */ 816 818 #define VMX_VMCS_CTRL_EXIT_CONTROLS_HOST_AMD64 RT_BIT(9) 819 /** This control determines whether the IA32_PERF_GLOBAL_CTRL MSR is loaded on VM exit. */ 820 #define VMX_VMCS_CTRL_EXIT_CONTROLS_LOAD_PERF_MSR RT_BIT(12) 817 821 /** Acknowledge external interrupts with the irq controller if one caused a VM-exit. */ 818 822 #define VMX_VMCS_CTRL_EXIT_CONTROLS_ACK_EXTERNAL_IRQ RT_BIT(15) 823 /** This control determines whether the guest IA32_PAT MSR is saved on VM exit. */ 824 #define VMX_VMCS_CTRL_EXIT_CONTROLS_SAVE_GUEST_PAT_MSR RT_BIT(18) 825 /** This control determines whether the host IA32_PAT MSR is loaded on VM exit. */ 826 #define VMX_VMCS_CTRL_EXIT_CONTROLS_LOAD_HOST_PAT_MSR RT_BIT(19) 827 /** This control determines whether the guest IA32_EFER MSR is saved on VM exit. */ 828 #define VMX_VMCS_CTRL_EXIT_CONTROLS_SAVE_GUEST_EFER_MSR RT_BIT(20) 829 /** This control determines whether the host IA32_EFER MSR is loaded on VM exit. */ 830 #define VMX_VMCS_CTRL_EXIT_CONTROLS_LOAD_HOST_EFER_MSR RT_BIT(21) 831 /** This control determines whether the value of the VMX preemption timer is saved on VM exit. */ 832 #define VMX_VMCS_CTRL_EXIT_CONTROLS_SAVE_VMX_PREEMPT_TIMER RT_BIT(22) 819 833 /** @} */ 820 834
Note:
See TracChangeset
for help on using the changeset viewer.