Changeset 103612 in vbox
- Timestamp:
- Feb 29, 2024 12:59:25 PM (9 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMAll/IEMAllThrdRecompiler.cpp
r103554 r103612 2826 2826 { 2827 2827 /* Translate PC to physical address, we'll need this for both lookup and compilation. */ 2828 RTGCPHYS const GCPhysPc = iemGetPcWithPhysAndCode(pVCpu); 2829 uint32_t const fExtraFlags = iemGetTbFlagsForCurrentPc(pVCpu); 2830 2831 pTb = iemTbCacheLookup(pVCpu, pTbCache, GCPhysPc, fExtraFlags); 2828 RTGCPHYS const GCPhysPc = iemGetPcWithPhysAndCode(pVCpu); 2832 2829 if (RT_LIKELY(pVCpu->iem.s.pbInstrBuf != NULL)) 2833 2830 { 2831 uint32_t const fExtraFlags = iemGetTbFlagsForCurrentPc(pVCpu); 2832 pTb = iemTbCacheLookup(pVCpu, pTbCache, GCPhysPc, fExtraFlags); 2834 2833 if (pTb) 2835 2834 rcStrict = iemTbExec(pVCpu, pTb);
Note:
See TracChangeset
for help on using the changeset viewer.