Changeset 63560 in vbox for trunk/src/VBox/VMM/VMMAll
- Timestamp:
- Aug 16, 2016 2:01:20 PM (9 years ago)
- svn:sync-xref-src-repo-rev:
- 110215
- Location:
- trunk/src/VBox/VMM/VMMAll
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMAll/EMAll.cpp
r63465 r63560 1142 1142 1143 1143 /* We only execute 32-bits protected mode code in raw mode, so no need to bother to check for 16-bits code here. */ 1144 /* @todo:we don't verify all the edge cases that generate #GP faults */1144 /** @todo we don't verify all the edge cases that generate #GP faults */ 1145 1145 1146 1146 Assert(pRegFrame == CPUMGetGuestCtxCore(pVCpu)); -
trunk/src/VBox/VMM/VMMAll/PGMAllPool.cpp
r63465 r63560 156 156 return VINF_SUCCESS; 157 157 #else 158 /* @todo in RC we could attempt to use the virtual address, although this can cause many faults (PAE Windows XP guest). */158 /** @todo in RC we could attempt to use the virtual address, although this can cause many faults (PAE Windows XP guest). */ 159 159 NOREF(pvSrc); 160 160 return PGMPhysSimpleReadGCPhys(pVM, pvDst, GCPhysSrc & ~(RTGCPHYS)(cb - 1), cb); … … 2166 2166 int rc = pgmPoolFlushPage(pPool, pPage); 2167 2167 /* This flush was initiated by us and not the guest, so explicitly flush the TLB. */ 2168 /* todo:find out why this is necessary; pgmPoolFlushPage should trigger a flush if one is really needed. */2168 /** @todo find out why this is necessary; pgmPoolFlushPage should trigger a flush if one is really needed. */ 2169 2169 if (rc == VINF_SUCCESS) 2170 2170 PGM_INVL_ALL_VCPU_TLBS(pVM); -
trunk/src/VBox/VMM/VMMAll/TMAll.cpp
r62478 r63560 1930 1930 RTThreadSleep(1); 1931 1931 #else 1932 /** @todo call host and yield cpu after a while. */1932 /** @todo call host and yield cpu after a while. */ 1933 1933 #endif 1934 1934 break;
Note:
See TracChangeset
for help on using the changeset viewer.