VirtualBox

Changeset 71078 in vbox


Ignore:
Timestamp:
Feb 21, 2018 7:58:00 AM (7 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
120942
Message:

VMM/IEM: Nested Hw.virt: Fix GDTR, IDTR read intercepts. Previously it was combined incorrectly as GDTR read intercept.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/VMM/VMMAll/IEMAll.cpp

    r70862 r71078  
    1028810288iemMemStoreDataXdtr(PVMCPU pVCpu, uint16_t cbLimit, RTGCPTR GCPtrBase, uint8_t iSegReg, RTGCPTR GCPtrMem)
    1028910289{
    10290     VBOXSTRICTRC rcStrict;
    10291     if (IEM_IS_SVM_CTRL_INTERCEPT_SET(pVCpu, SVM_CTRL_INTERCEPT_IDTR_READS))
    10292     {
    10293         Log(("sidt/sgdt: Guest intercept -> #VMEXIT\n"));
    10294         IEM_RETURN_SVM_VMEXIT(pVCpu, SVM_EXIT_IDTR_READ, 0 /* uExitInfo1 */, 0 /* uExitInfo2 */);
    10295     }
    1029610290
    1029710291    /*
     
    1029910293     * independent writes.  The instructions does not respond to opsize prefixes.
    1030010294     */
    10301     rcStrict = iemMemStoreDataU16(pVCpu, iSegReg, GCPtrMem, cbLimit);
     10295    VBOXSTRICTRC rcStrict = iemMemStoreDataU16(pVCpu, iSegReg, GCPtrMem, cbLimit);
    1030210296    if (rcStrict == VINF_SUCCESS)
    1030310297    {
Note: See TracChangeset for help on using the changeset viewer.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette