Changeset 1929 in vbox for trunk/src/VBox
- Timestamp:
- Apr 4, 2007 1:17:07 PM (18 years ago)
- Location:
- trunk/src/VBox/VMM/VMMAll
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMAll/EMAll.cpp
r1828 r1929 1853 1853 } 1854 1854 1855 /* In HWACCM mode we can execute 16 bits code. Our emulation above can't cope with that yet. */ 1856 /** @note if not in HWACCM mode, then we will never execute 16 bits code, so don't bother checking. */ 1857 if (HWACCMIsEnabled(pVM) && !SELMIsSelector32Bit(pVM, pRegFrame->eflags, pRegFrame->cs, &pRegFrame->csHid)) 1855 /* Out emulation above can't cope with 16 bits code yet. */ 1856 if (!SELMIsSelector32Bit(pVM, pRegFrame->eflags, pRegFrame->cs, &pRegFrame->csHid)) 1858 1857 return VERR_EM_INTERPRETER; 1859 1858 -
trunk/src/VBox/VMM/VMMAll/PGMAll.cpp
r1310 r1929 32 32 #include <VBox/stam.h> 33 33 #include <VBox/csam.h> 34 #include <VBox/patm.h> 34 35 #include <VBox/trpm.h> 35 36 #include <VBox/rem.h> … … 255 256 PGMDECL(int) PGMTrap0eHandler(PVM pVM, RTGCUINT uErr, PCPUMCTXCORE pRegFrame, RTGCPTR pvFault) 256 257 { 257 Log Flow(("PGMTrap0eHandler: uErr=%#x pvFault=%VGv eip=%VGv\n", uErr, pvFault, pRegFrame->eip));258 Log(("PGMTrap0eHandler: uErr=%#x pvFault=%VGv eip=%VGv\n", uErr, pvFault, pRegFrame->eip)); 258 259 STAM_PROFILE_START(&pVM->pgm.s.StatGCTrap0e, a); 259 260 STAM_STATS({ pVM->pgm.s.CTXSUFF(pStatTrap0eAttribution) = NULL; } ); -
trunk/src/VBox/VMM/VMMAll/PGMAllShw.h
r23 r1929 308 308 { 309 309 pPT->a[iPTE].u = (pPT->a[iPTE].u & (fMask | SHW_PTE_PG_MASK)) | (fFlags & ~SHW_PTE_PG_MASK); 310 Assert(pPT->a[iPTE].n.u1Present);310 //// Assert(pPT->a[iPTE].n.u1Present); 311 311 PGM_INVL_PG(GCPtr); 312 312 } -
trunk/src/VBox/VMM/VMMAll/TRPMAll.cpp
r1828 r1929 423 423 #endif 424 424 && !PATMIsPatchGCAddr(pVM, (RTGCPTR)pRegFrame->eip) 425 //testestset 426 // && iGate != 0xef 425 427 ) 426 428 {
Note:
See TracChangeset
for help on using the changeset viewer.