Changeset 87345 in vbox for trunk/src/VBox/VMM/include
- Timestamp:
- Jan 21, 2021 11:37:30 AM (4 years ago)
- svn:sync-xref-src-repo-rev:
- 142321
- Location:
- trunk/src/VBox/VMM/include
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/include/CPUMInternal.h
r86218 r87345 104 104 #define CPUM_USED_DEBUG_REGS_GUEST RT_BIT(9) 105 105 106 /** Sync the FPU state on next entry (32->64 switcher only). */107 #define CPUM_SYNC_FPU_STATE RT_BIT(16)108 /** Sync the debug state on next entry (32->64 switcher only). */109 #define CPUM_SYNC_DEBUG_REGS_GUEST RT_BIT(17)110 /** Sync the debug state on next entry (32->64 switcher only).111 * Almost the same as CPUM_USE_DEBUG_REGS_HYPER in the raw-mode switchers. */112 #define CPUM_SYNC_DEBUG_REGS_HYPER RT_BIT(18)113 106 /** Host CPU requires fxsave/fxrstor leaky bit handling. */ 114 107 #define CPUM_USE_FFXSR_LEAKY RT_BIT(19) -
trunk/src/VBox/VMM/include/CPUMInternal.mac
r82968 r87345 63 63 %define CPUM_USED_DEBUG_REGS_HYPER RT_BIT(8) 64 64 %define CPUM_USED_DEBUG_REGS_GUEST RT_BIT(9) 65 %define CPUM_SYNC_FPU_STATE RT_BIT(16)66 %define CPUM_SYNC_DEBUG_REGS_GUEST RT_BIT(17)67 %define CPUM_SYNC_DEBUG_REGS_HYPER RT_BIT(18)68 65 %define CPUM_USE_FFXSR_LEAKY RT_BIT(19) 69 66 %define CPUM_USE_SUPPORTS_LONGMODE RT_BIT(20)
Note:
See TracChangeset
for help on using the changeset viewer.