Changeset 17352 in vbox for trunk/src/recompiler_new
- Timestamp:
- Mar 4, 2009 4:32:32 PM (16 years ago)
- svn:sync-xref-src-repo-rev:
- 43746
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/recompiler_new/VBoxRecompiler.c
r17300 r17352 1299 1299 1300 1300 #ifndef REM_PHYS_ADDR_IN_TLB 1301 /** Wrapper for PGMR3PhysTlbGCPhys2Ptr. */ 1301 1302 void *remR3TlbGCPhys2Ptr(CPUState *env1, target_ulong physAddr, int fWritable) 1302 1303 { … … 1318 1319 return pv; 1319 1320 } 1320 1321 target_ulong remR3HCVirt2GCPhys(CPUState *env1, void *addr) 1322 { 1323 RTGCPHYS rv = 0; 1324 int rc; 1325 1326 rc = PGMR3DbgR3Ptr2GCPhys(env1->pVM, (RTR3PTR)addr, &rv); 1327 Assert (RT_SUCCESS(rc)); 1328 1329 return (target_ulong)rv; 1330 } 1331 #endif 1321 #endif /* REM_PHYS_ADDR_IN_TLB */ 1322 1332 1323 1333 1324 /** … … 1349 1340 #endif 1350 1341 } 1342 1351 1343 1352 1344 /**
Note:
See TracChangeset
for help on using the changeset viewer.