Changeset 71838 in vbox for trunk/src/VBox/VMM/VMMR0/HMSVMR0.cpp
- Timestamp:
- Apr 12, 2018 8:20:59 AM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMR0/HMSVMR0.cpp
r71837 r71838 269 269 uint8_t abAlignment0[7]; 270 270 271 /** Whether the guest FPU state was active at the time of \#VMEXIT. */272 bool fWasGuestFPUStateActive;273 271 /** Whether the guest debug state was active at the time of \#VMEXIT. */ 274 272 bool fWasGuestDebugStateActive; … … 286 284 bool fVectoringPF; 287 285 } SVMTRANSIENT, *PSVMTRANSIENT; 288 AssertCompileMemberAlignment(SVMTRANSIENT, u64ExitCode, sizeof(uint64_t));289 AssertCompileMemberAlignment(SVMTRANSIENT, fWasGuest FPUStateActive, sizeof(uint64_t));286 AssertCompileMemberAlignment(SVMTRANSIENT, u64ExitCode, sizeof(uint64_t)); 287 AssertCompileMemberAlignment(SVMTRANSIENT, fWasGuestDebugStateActive, sizeof(uint64_t)); 290 288 /** @} */ 291 289 … … 4380 4378 pSvmTransient->fWasHyperDebugStateActive = CPUMIsHyperDebugStateActive(pVCpu); 4381 4379 } 4382 pSvmTransient->fWasGuestFPUStateActive = true;4383 4380 4384 4381 /* Merge the guest and nested-guest MSRPM. */ … … 4506 4503 pSvmTransient->fWasHyperDebugStateActive = CPUMIsHyperDebugStateActive(pVCpu); 4507 4504 } 4508 pSvmTransient->fWasGuestFPUStateActive = CPUMIsGuestFPUStateActive(pVCpu);4509 4505 4510 4506 /* Flush the appropriate tagged-TLB entries. */
Note:
See TracChangeset
for help on using the changeset viewer.