VirtualBox

Changeset 100327 in vbox


Ignore:
Timestamp:
Jun 29, 2023 12:11:46 AM (17 months ago)
Author:
vboxsync
Message:

VMM/IEM: Corrected missing rcPassUp checks and iemExecStatusCodeFiddling. bugref:10369

File:
1 edited

Legend:

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

    r100326 r100327  
    10391039        rcStrict = FNIEMOP_CALL(g_apfnIemThreadedRecompilerOneByteMap[b]);
    10401040        if (   rcStrict == VINF_SUCCESS
     1041            && pVCpu->iem.s.rcPassUp == VINF_SUCCESS
    10411042            && !pVCpu->iem.s.fEndTb)
    10421043        {
     
    10671068            pVCpu->iem.s.pCurTbR3 = NULL;
    10681069            iemThreadedTbFree(pVM, pVCpu, pTb);
    1069             return rcStrict;
     1070            return iemExecStatusCodeFiddling(pVCpu, rcStrict);
    10701071        }
    10711072
     
    10931094#endif
    10941095
    1095     return rcStrict;
     1096    return iemExecStatusCodeFiddling(pVCpu, rcStrict);
    10961097}
    10971098
     
    11351136                                                                                          pCallEntry->auParams[1],
    11361137                                                                                          pCallEntry->auParams[2]);
    1137         if (RT_LIKELY(rcStrict == VINF_SUCCESS))
     1138
     1139        if (RT_LIKELY(   rcStrict == VINF_SUCCESS
     1140                      && pVCpu->iem.s.rcPassUp == VINF_SUCCESS /** @todo this isn't great. */))
    11381141            pCallEntry++;
    11391142        else
     
    11441147               continue in a different translation block. */
    11451148            if (rcStrict == VINF_IEM_REEXEC_MODE_CHANGED)
    1146                 return VINF_SUCCESS;
    1147             return rcStrict;
     1149                return iemExecStatusCodeFiddling(pVCpu, VINF_SUCCESS);
     1150            return iemExecStatusCodeFiddling(pVCpu, rcStrict);
    11481151        }
    11491152    }
Note: See TracChangeset for help on using the changeset viewer.

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