Changeset 22332 in vbox for trunk/src/VBox/VMM/VMMAll
- Timestamp:
- Aug 18, 2009 4:24:33 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMAll/PGMAllPool.cpp
r22331 r22332 1163 1163 if ( pDis->pCurInstr->opcode == OP_STOSWD 1164 1164 && CPUMGetGuestCPL(pVCpu, pRegFrame) == 0 1165 && pDis->prefix == PREFIX_REP1166 1165 && !pRegFrame->eflags.Bits.u1DF 1167 1166 && pDis->opmode == pDis->mode … … 1171 1170 1172 1171 if ( pDis->mode == CPUMODE_32BIT 1172 && pDis->prefix == PREFIX_REP 1173 1173 && pRegFrame->ecx <= 0x20 1174 1174 && pRegFrame->ecx * 4 <= PAGE_SIZE - ((uintptr_t)pvFault & PAGE_OFFSET_MASK) … … 1182 1182 else 1183 1183 if ( pDis->mode == CPUMODE_64BIT 1184 && pDis->prefix == (PREFIX_REP | PREFIX_REX) 1184 1185 && pRegFrame->rcx <= 0x20 1185 1186 && pRegFrame->rcx * 4 <= PAGE_SIZE - ((uintptr_t)pvFault & PAGE_OFFSET_MASK)
Note:
See TracChangeset
for help on using the changeset viewer.