Changeset 14755 in vbox for trunk/src/recompiler/VBoxRecompiler.c
- Timestamp:
- Nov 28, 2008 2:58:01 AM (16 years ago)
- svn:sync-xref-src-repo-rev:
- 40070
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/recompiler/VBoxRecompiler.c
r14411 r14755 3477 3477 3478 3478 /* convert eip to physical address. */ 3479 int rc = PGMPhysGCPtr2 HCPtrByGstCR3(env->pVM,3479 int rc = PGMPhysGCPtr2R3PtrByGstCR3(env->pVM, 3480 3480 GCPtrPC, 3481 3481 env->cr[3], … … 3493 3493 { 3494 3494 /* physical address */ 3495 int rc = PGMPhysGCPhys2 HCPtr(env->pVM, (RTGCPHYS)GCPtrPC, nrInstructions * 16, &pvPC);3495 int rc = PGMPhysGCPhys2R3Ptr(env->pVM, (RTGCPHYS)GCPtrPC, nrInstructions * 16, &pvPC); 3496 3496 if (RT_FAILURE(rc)) 3497 3497 return false; … … 3572 3572 { 3573 3573 /* convert eip to physical address. */ 3574 int rc = PGMPhysGCPtr2 HCPtrByGstCR3(pVM,3574 int rc = PGMPhysGCPtr2R3PtrByGstCR3(pVM, 3575 3575 GCPtrPC, 3576 3576 env->cr[3], … … 3589 3589 3590 3590 /* physical address */ 3591 int rc = PGMPhysGCPhys2 HCPtr(pVM, (RTGCPHYS)GCPtrPC, 16, &pvPC);3591 int rc = PGMPhysGCPhys2R3Ptr(pVM, (RTGCPHYS)GCPtrPC, 16, &pvPC); 3592 3592 if (RT_FAILURE(rc)) 3593 3593 return false;
Note:
See TracChangeset
for help on using the changeset viewer.