Changeset 92553 in vbox for trunk/src/VBox/VMM/VMMAll
- Timestamp:
- Nov 22, 2021 6:31:11 PM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMAll/IEMAll.cpp
r92495 r92553 7079 7079 pFpuCtx->FPUIP = pVCpu->cpum.GstCtx.eip | ((uint32_t)pVCpu->cpum.GstCtx.cs.Sel << 4); 7080 7080 } 7081 else 7081 else if (!IEM_IS_LONG_MODE(pVCpu)) 7082 7082 { 7083 7083 pFpuCtx->CS = pVCpu->cpum.GstCtx.cs.Sel; 7084 7084 pFpuCtx->FPUIP = pVCpu->cpum.GstCtx.rip; 7085 7085 } 7086 else 7087 *(uint64_t *)&pFpuCtx->FPUIP = pVCpu->cpum.GstCtx.rip; 7086 7088 } 7087 7089 … … 7116 7118 pFpuCtx->FPUDP = (uint32_t)GCPtrEff + ((uint32_t)sel << 4); 7117 7119 } 7118 else 7120 else if (!IEM_IS_LONG_MODE(pVCpu)) 7119 7121 { 7120 7122 pFpuCtx->DS = sel; 7121 7123 pFpuCtx->FPUDP = GCPtrEff; 7122 7124 } 7125 else 7126 *(uint64_t *)&pFpuCtx->FPUDP = GCPtrEff; 7123 7127 } 7124 7128
Note:
See TracChangeset
for help on using the changeset viewer.