Changeset 100789 in vbox for trunk/src/VBox/VMM/VMMAll/IEMAllThrdRecompiler.cpp
- Timestamp:
- Aug 3, 2023 11:29:53 PM (16 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMAll/IEMAllThrdRecompiler.cpp
r100787 r100789 1537 1537 { 1538 1538 /* 1539 * Return IEMTB_F_ RIP_CHECKS if the current PC is invalid or if it is1539 * Return IEMTB_F_CS_LIM_CHECKS if the current PC is invalid or if it is 1540 1540 * likely to go invalid before the end of the translation block. 1541 1541 */ … … 1545 1545 1546 1546 if (RT_LIKELY( pVCpu->cpum.GstCtx.eip < pVCpu->cpum.GstCtx.cs.u32Limit 1547 && pVCpu->cpum.GstCtx. eip - pVCpu->cpum.GstCtx.cs.u32Limit>= X86_PAGE_SIZE))1547 && pVCpu->cpum.GstCtx.cs.u32Limit - pVCpu->cpum.GstCtx.eip >= X86_PAGE_SIZE)) 1548 1548 return IEMTB_F_TYPE_THREADED; 1549 1549
Note:
See TracChangeset
for help on using the changeset viewer.