Changeset 101182 in vbox for trunk/src/VBox/VMM/VMMAll
- Timestamp:
- Sep 19, 2023 11:38:24 PM (15 months ago)
- Location:
- trunk/src/VBox/VMM/VMMAll
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMAll/IEMAllThrdFuncsBltIn.cpp
r101163 r101182 738 738 uint32_t const cbInstr = (uint32_t)uParam0; 739 739 uint32_t const idxRange = (uint32_t)uParam1; 740 Assert(uParam2 == 0 /*offRange*/); RT_NOREF(uParam2);740 RT_NOREF(uParam2); //Assert(uParam2 == 0 /*offRange*/); 741 741 BODY_CHECK_CS_LIM(cbInstr); 742 742 BODY_LOAD_TLB_FOR_NEW_PAGE(pTb, 0, idxRange, cbInstr); … … 758 758 uint32_t const cbInstr = (uint32_t)uParam0; 759 759 uint32_t const idxRange = (uint32_t)uParam1; 760 Assert(uParam2 == 0 /*offRange*/); RT_NOREF(uParam2);760 RT_NOREF(uParam2); //Assert(uParam2 == 0 /*offRange*/); 761 761 BODY_LOAD_TLB_FOR_NEW_PAGE(pTb, 0, idxRange, cbInstr); 762 762 Assert(pVCpu->iem.s.offCurInstrStart == 0); … … 778 778 uint32_t const cbInstr = (uint32_t)uParam0; 779 779 uint32_t const idxRange = (uint32_t)uParam1; 780 Assert(uParam2 == 0 /*offRange*/); RT_NOREF(uParam2);780 RT_NOREF(uParam2); //Assert(uParam2 == 0 /*offRange*/); 781 781 BODY_CONSIDER_CS_LIM_CHECKING(pTb, cbInstr); 782 782 BODY_LOAD_TLB_FOR_NEW_PAGE(pTb, 0, idxRange, cbInstr); -
trunk/src/VBox/VMM/VMMAll/IEMAllThrdPython.py
r101181 r101182 1610 1610 ( 'CheckOpcodesOnNextPageLoadingTlbConsiderCsLim', 2 ), 1611 1611 1612 ( 'CheckCsLimAndOpcodesOnNewPageLoadingTlb', 3 ), # actually 2 params, but asserts uParam2 == 0.1613 ( 'CheckOpcodesOnNewPageLoadingTlb', 3 ), # actually 2 params, but asserts uParam2 == 0.1614 ( 'CheckOpcodesOnNewPageLoadingTlbConsiderCsLim', 3 ), # actually 2 params, but asserts uParam2 == 0.1612 ( 'CheckCsLimAndOpcodesOnNewPageLoadingTlb', 2 ), 1613 ( 'CheckOpcodesOnNewPageLoadingTlb', 2 ), 1614 ( 'CheckOpcodesOnNewPageLoadingTlbConsiderCsLim', 2 ), 1615 1615 ); 1616 1616
Note:
See TracChangeset
for help on using the changeset viewer.