Changeset 65448 in vbox for trunk/src/VBox/VMM
- Timestamp:
- Jan 26, 2017 9:39:54 AM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/include/HMInternal.h
r65316 r65448 146 146 147 147 /** @name HM changed flags. 148 * These flags are used to keep track of which important registers that 149 * have been changed since last they were reset. 148 * These flags are used to keep track of which important registers that have 149 * been changed since last they were reset. 150 * 151 * Flags marked "shared" are used for registers that are common to both the host 152 * and guest (i.e. without dedicated VMCS/VMCB fields for guest bits). 153 * 150 154 * @{ 151 155 */ … … 167 171 #define HM_CHANGED_GUEST_SYSENTER_ESP_MSR RT_BIT(15) 168 172 #define HM_CHANGED_GUEST_EFER_MSR RT_BIT(16) 169 #define HM_CHANGED_GUEST_LAZY_MSRS RT_BIT(17) /* Shared */ 173 #define HM_CHANGED_GUEST_LAZY_MSRS RT_BIT(17) /* Shared */ /** @todo Move this to VT-x specific? */ 170 174 #define HM_CHANGED_GUEST_XCPT_INTERCEPTS RT_BIT(18) 171 175 /* VT-x specific state. */
Note:
See TracChangeset
for help on using the changeset viewer.