Changeset 13838 in vbox for trunk/src/recompiler
- Timestamp:
- Nov 5, 2008 3:16:55 AM (16 years ago)
- svn:sync-xref-src-repo-rev:
- 38830
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/recompiler/VBoxRecompiler.c
r13837 r13838 691 691 if (!cpu_breakpoint_insert(&pVM->rem.s.Env, Address)) 692 692 { 693 LogFlow(("REMR3BreakpointSet: Address=% VGv\n", Address));693 LogFlow(("REMR3BreakpointSet: Address=%RGv\n", Address)); 694 694 return VINF_SUCCESS; 695 695 } 696 LogFlow(("REMR3BreakpointSet: Address=% VGv - failed!\n", Address));696 LogFlow(("REMR3BreakpointSet: Address=%RGv - failed!\n", Address)); 697 697 return VERR_REM_NO_MORE_BP_SLOTS; 698 698 } … … 712 712 if (!cpu_breakpoint_remove(&pVM->rem.s.Env, Address)) 713 713 { 714 LogFlow(("REMR3BreakpointClear: Address=% VGv\n", Address));714 LogFlow(("REMR3BreakpointClear: Address=%RGv\n", Address)); 715 715 return VINF_SUCCESS; 716 716 } 717 LogFlow(("REMR3BreakpointClear: Address=% VGv - not found!\n", Address));717 LogFlow(("REMR3BreakpointClear: Address=%RGv - not found!\n", Address)); 718 718 return VERR_REM_BP_NOT_FOUND; 719 719 } … … 801 801 break; 802 802 } 803 Log2(("REMR3EmulateInstruction: cpu_exec -> EXCP_DEBUG rc=%Rrc iBP=%d GCPtrPC=% VGv\n", rc, iBP, GCPtrPC));803 Log2(("REMR3EmulateInstruction: cpu_exec -> EXCP_DEBUG rc=%Rrc iBP=%d GCPtrPC=%RGv\n", rc, iBP, GCPtrPC)); 804 804 break; 805 805 } … … 967 967 } 968 968 969 Log2(("REMR3EmulateInstruction: returns %Rrc (cs:eip=%04x:% VGv)\n",970 rc, pVM->rem.s.Env.segs[R_CS].selector, pVM->rem.s.Env.eip));969 Log2(("REMR3EmulateInstruction: returns %Rrc (cs:eip=%04x:%RGv)\n", 970 rc, pVM->rem.s.Env.segs[R_CS].selector, (RTGCPTR)pVM->rem.s.Env.eip)); 971 971 return rc; 972 972 } … … 987 987 REMR3DECL(int) REMR3Run(PVM pVM) 988 988 { 989 Log2(("REMR3Run: (cs:eip=%04x:% VGv)\n", pVM->rem.s.Env.segs[R_CS].selector,pVM->rem.s.Env.eip));989 Log2(("REMR3Run: (cs:eip=%04x:%RGv)\n", pVM->rem.s.Env.segs[R_CS].selector, (RTGCPTR)pVM->rem.s.Env.eip)); 990 990 Assert(pVM->rem.s.fInREM); 991 991 … … 1055 1055 break; 1056 1056 } 1057 Log2(("REMR3Run: cpu_exec -> EXCP_DEBUG rc=%Rrc iBP=%d GCPtrPC=% VGv\n", rc, iBP, GCPtrPC));1057 Log2(("REMR3Run: cpu_exec -> EXCP_DEBUG rc=%Rrc iBP=%d GCPtrPC=%RGv\n", rc, iBP, GCPtrPC)); 1058 1058 #endif 1059 1059 break; … … 1105 1105 } 1106 1106 1107 Log2(("REMR3Run: returns %Rrc (cs:eip=%04x:% VGv)\n", rc, pVM->rem.s.Env.segs[R_CS].selector,pVM->rem.s.Env.eip));1107 Log2(("REMR3Run: returns %Rrc (cs:eip=%04x:%RGv)\n", rc, pVM->rem.s.Env.segs[R_CS].selector, (RTGCPTR)pVM->rem.s.Env.eip)); 1108 1108 return rc; 1109 1109 } … … 1373 1373 if (pVM->rem.s.fIgnoreInvlPg || pVM->rem.s.fIgnoreAll) 1374 1374 return; 1375 Log(("remR3FlushPage: GCPtr=% VGv\n", GCPtr));1375 Log(("remR3FlushPage: GCPtr=%RGv\n", GCPtr)); 1376 1376 Assert(pVM->rem.s.fInREM || pVM->rem.s.fInStateSync); 1377 1377 … … 1392 1392 if (RT_FAILURE(rc)) 1393 1393 { 1394 AssertMsgFailed(("remR3FlushPage % VGv failed with %d!!\n", GCPtr, rc));1394 AssertMsgFailed(("remR3FlushPage %RGv failed with %d!!\n", GCPtr, rc)); 1395 1395 VM_FF_SET(pVM, VM_FF_PGM_SYNC_CR3); 1396 1396 } … … 1576 1576 } 1577 1577 #endif 1578 Log(("remR3NotifyTrap: uTrap=%x error=%x next_eip=% VGv eip=%VGv cr2=%VGv\n", uTrap, uErrorCode, pvNextEIP, env->eip,env->cr[2]));1578 Log(("remR3NotifyTrap: uTrap=%x error=%x next_eip=%RGv eip=%RGv cr2=%RGv\n", uTrap, uErrorCode, (RTGCPTR)pvNextEIP, (RTGCPTR)env->eip, (RTGCPTR)env->cr[2])); 1579 1579 if( uTrap < 0x20 1580 1580 && (env->cr[0] & X86_CR0_PE) … … 1586 1586 if(pVM->rem.s.uPendingException == uTrap && ++pVM->rem.s.cPendingExceptions > 512) 1587 1587 { 1588 LogRel(("VERR_REM_TOO_MANY_TRAPS -> uTrap=%x error=%x next_eip=% VGv eip=%VGv cr2=%VGv\n", uTrap, uErrorCode, pvNextEIP, env->eip,env->cr[2]));1588 LogRel(("VERR_REM_TOO_MANY_TRAPS -> uTrap=%x error=%x next_eip=%RGv eip=%RGv cr2=%RGv\n", uTrap, uErrorCode, (RTGCPTR)pvNextEIP, (RTGCPTR)env->eip, (RTGCPTR)env->cr[2])); 1589 1589 remR3RaiseRC(env->pVM, VERR_REM_TOO_MANY_TRAPS); 1590 1590 return VERR_REM_TOO_MANY_TRAPS; … … 1745 1745 for (i = 0; i < pVM->rem.s.cInvalidatedPages; i++) 1746 1746 { 1747 Log2(("REMR3State: invlpg % VGv\n", pVM->rem.s.aGCPtrInvalidatedPages[i]));1747 Log2(("REMR3State: invlpg %RGv\n", pVM->rem.s.aGCPtrInvalidatedPages[i])); 1748 1748 tlb_flush_page(&pVM->rem.s.Env, pVM->rem.s.aGCPtrInvalidatedPages[i]); 1749 1749 } … … 2064 2064 rc = TRPMResetTrap(pVM); 2065 2065 AssertRC(rc); 2066 Log2(("REMR3State: trap=%02x errcd=% VGv cr2=%VGv nexteip=%VGv%s\n", pVM->rem.s.Env.exception_index,pVM->rem.s.Env.error_code,2067 pVM->rem.s.Env.cr[2],pVM->rem.s.Env.exception_next_eip, pVM->rem.s.Env.exception_is_int ? " software" : ""));2066 Log2(("REMR3State: trap=%02x errcd=%RGv cr2=%RGv nexteip=%RGv%s\n", pVM->rem.s.Env.exception_index, (RTGCPTR)pVM->rem.s.Env.error_code, 2067 (RTGCPTR)pVM->rem.s.Env.cr[2], (RTGCPTR)pVM->rem.s.Env.exception_next_eip, pVM->rem.s.Env.exception_is_int ? " software" : "")); 2068 2068 } 2069 2069 … … 2554 2554 for (i = 0; i < pVM->rem.s.cInvalidatedPages; i++) 2555 2555 { 2556 Log2(("REMR3ReplayInvalidatedPages: invlpg % VGv\n", pVM->rem.s.aGCPtrInvalidatedPages[i]));2556 Log2(("REMR3ReplayInvalidatedPages: invlpg %RGv\n", pVM->rem.s.aGCPtrInvalidatedPages[i])); 2557 2557 tlb_flush_page(&pVM->rem.s.Env, pVM->rem.s.aGCPtrInvalidatedPages[i]); 2558 2558 } … … 2669 2669 REMR3DECL(void) REMR3NotifyPhysRamRegister(PVM pVM, RTGCPHYS GCPhys, RTUINT cb, unsigned fFlags) 2670 2670 { 2671 Log(("REMR3NotifyPhysRamRegister: GCPhys=% VGp cb=%d fFlags=%d\n", GCPhys, cb, fFlags));2671 Log(("REMR3NotifyPhysRamRegister: GCPhys=%RGp cb=%d fFlags=%d\n", GCPhys, cb, fFlags)); 2672 2672 VM_ASSERT_EMT(pVM); 2673 2673 … … 2739 2739 REMR3DECL(void) REMR3NotifyPhysRamChunkRegister(PVM pVM, RTGCPHYS GCPhys, RTUINT cb, RTHCUINTPTR pvRam, unsigned fFlags) 2740 2740 { 2741 Log(("REMR3NotifyPhysRamChunkRegister: GCPhys=% VGp cb=%d pvRam=%p fFlags=%d\n", GCPhys, cb, pvRam, fFlags));2741 Log(("REMR3NotifyPhysRamChunkRegister: GCPhys=%RGp cb=%d pvRam=%p fFlags=%d\n", GCPhys, cb, pvRam, fFlags)); 2742 2742 VM_ASSERT_EMT(pVM); 2743 2743 … … 2771 2771 PVM pVM = cpu_single_env->pVM; 2772 2772 2773 LogFlow(("remR3GrowDynRange % VGp\n",physaddr));2773 LogFlow(("remR3GrowDynRange %RGp\n", (RTGCPHYS)physaddr)); 2774 2774 const RTGCPHYS GCPhys = physaddr; 2775 2775 rc = PGM3PhysGrowRange(pVM, &GCPhys); … … 2777 2777 return; 2778 2778 2779 LogRel(("\nUnable to allocate guest RAM chunk at % VGp\n",physaddr));2780 cpu_abort(cpu_single_env, "Unable to allocate guest RAM chunk at % VGp\n",physaddr);2779 LogRel(("\nUnable to allocate guest RAM chunk at %RGp\n", (RTGCPHYS)physaddr)); 2780 cpu_abort(cpu_single_env, "Unable to allocate guest RAM chunk at %RGp\n", (RTGCPHYS)physaddr); 2781 2781 AssertFatalFailed(); 2782 2782 } … … 2797 2797 REMR3DECL(void) REMR3NotifyPhysRomRegister(PVM pVM, RTGCPHYS GCPhys, RTUINT cb, void *pvCopy, bool fShadow) 2798 2798 { 2799 Log(("REMR3NotifyPhysRomRegister: GCPhys=% VGp cb=%d pvCopy=%p fShadow=%RTbool\n", GCPhys, cb, pvCopy, fShadow));2799 Log(("REMR3NotifyPhysRomRegister: GCPhys=%RGp cb=%d pvCopy=%p fShadow=%RTbool\n", GCPhys, cb, pvCopy, fShadow)); 2800 2800 VM_ASSERT_EMT(pVM); 2801 2801 … … 2835 2835 REMR3DECL(void) REMR3NotifyPhysReserve(PVM pVM, RTGCPHYS GCPhys, RTUINT cb) 2836 2836 { 2837 Log(("REMR3NotifyPhysReserve: GCPhys=% VGp cb=%d\n", GCPhys, cb));2837 Log(("REMR3NotifyPhysReserve: GCPhys=%RGp cb=%d\n", GCPhys, cb)); 2838 2838 VM_ASSERT_EMT(pVM); 2839 2839 … … 2872 2872 REMR3DECL(void) REMR3NotifyHandlerPhysicalRegister(PVM pVM, PGMPHYSHANDLERTYPE enmType, RTGCPHYS GCPhys, RTGCPHYS cb, bool fHasHCHandler) 2873 2873 { 2874 Log(("REMR3NotifyHandlerPhysicalRegister: enmType=%d GCPhys=% VGp cb=%VGp fHasHCHandler=%d\n",2874 Log(("REMR3NotifyHandlerPhysicalRegister: enmType=%d GCPhys=%RGp cb=%RGp fHasHCHandler=%d\n", 2875 2875 enmType, GCPhys, cb, fHasHCHandler)); 2876 2876 VM_ASSERT_EMT(pVM); … … 2906 2906 REMR3DECL(void) REMR3NotifyHandlerPhysicalDeregister(PVM pVM, PGMPHYSHANDLERTYPE enmType, RTGCPHYS GCPhys, RTGCPHYS cb, bool fHasHCHandler, bool fRestoreAsRAM) 2907 2907 { 2908 Log(("REMR3NotifyHandlerPhysicalDeregister: enmType=%d GCPhys=% VGp cb=%VGp fHasHCHandler=%RTbool fRestoreAsRAM=%RTbool RAM=%08x\n",2908 Log(("REMR3NotifyHandlerPhysicalDeregister: enmType=%d GCPhys=%RGp cb=%RGp fHasHCHandler=%RTbool fRestoreAsRAM=%RTbool RAM=%08x\n", 2909 2909 enmType, GCPhys, cb, fHasHCHandler, fRestoreAsRAM, MMR3PhysGetRamSize(pVM))); 2910 2910 VM_ASSERT_EMT(pVM); … … 2952 2952 REMR3DECL(void) REMR3NotifyHandlerPhysicalModify(PVM pVM, PGMPHYSHANDLERTYPE enmType, RTGCPHYS GCPhysOld, RTGCPHYS GCPhysNew, RTGCPHYS cb, bool fHasHCHandler, bool fRestoreAsRAM) 2953 2953 { 2954 Log(("REMR3NotifyHandlerPhysicalModify: enmType=%d GCPhysOld=% VGp GCPhysNew=%VGp cb=%VGp fHasHCHandler=%RTbool fRestoreAsRAM=%RTbool\n",2954 Log(("REMR3NotifyHandlerPhysicalModify: enmType=%d GCPhysOld=%RGp GCPhysNew=%RGp cb=%RGp fHasHCHandler=%RTbool fRestoreAsRAM=%RTbool\n", 2955 2955 enmType, GCPhysOld, GCPhysNew, cb, fHasHCHandler, fRestoreAsRAM)); 2956 2956 VM_ASSERT_EMT(pVM); … … 3034 3034 { 3035 3035 target_ulong ret = pTLBEntry->addend + addr; 3036 AssertMsg2("remR3PhysGetPhysicalAddressCode: addr=% VGv addr_code=%VGv addend=%VGp ret=%VGp\n",3037 (RTGCPTR)addr, (RTGCPTR)pTLBEntry->addr_code, (RTGCPHYS)pTLBEntry->addend, ret);3036 AssertMsg2("remR3PhysGetPhysicalAddressCode: addr=%RGv addr_code=%RGv addend=%RGp ret=%RGp\n", 3037 (RTGCPTR)addr, (RTGCPTR)pTLBEntry->addr_code, (RTGCPHYS)pTLBEntry->addend, (RTGCPHYS)ret); 3038 3038 return ret; 3039 3039 } 3040 LogRel(("\nTrying to execute code with memory type addr_code=% VGv addend=%VGp at %VGv! (iHandlerMemType=%#x iMMIOMemType=%#x)\n"3040 LogRel(("\nTrying to execute code with memory type addr_code=%RGv addend=%RGp at %RGv! (iHandlerMemType=%#x iMMIOMemType=%#x)\n" 3041 3041 "*** handlers\n", 3042 3042 (RTGCPTR)pTLBEntry->addr_code, (RTGCPHYS)pTLBEntry->addend, (RTGCPTR)addr, pVM->rem.s.iHandlerMemType, pVM->rem.s.iMMIOMemType)); … … 3046 3046 LogRel(("*** phys\n")); 3047 3047 DBGFR3Info(pVM, "phys", NULL, DBGFR3InfoLogRelHlp()); 3048 cpu_abort(env, "Trying to execute code with memory type addr_code=% VGv addend=%VGp at %VGv. (iHandlerMemType=%#x iMMIOMemType=%#x)\n",3048 cpu_abort(env, "Trying to execute code with memory type addr_code=%RGv addend=%RGp at %RGv. (iHandlerMemType=%#x iMMIOMemType=%#x)\n", 3049 3049 (RTGCPTR)pTLBEntry->addr_code, (RTGCPHYS)pTLBEntry->addend, (RTGCPTR)addr, pVM->rem.s.iHandlerMemType, pVM->rem.s.iMMIOMemType); 3050 3050 AssertFatalFailed(); … … 3055 3055 * Useful for finding non-guest-ram reads/writes. */ 3056 3056 #if 0 //1 /* disable if it becomes bothersome... */ 3057 # define VBOX_CHECK_ADDR(GCPhys) AssertMsg(PGMPhysIsGCPhysValid(cpu_single_env->pVM, (GCPhys)), ("% VGp\n", (GCPhys)))3057 # define VBOX_CHECK_ADDR(GCPhys) AssertMsg(PGMPhysIsGCPhysValid(cpu_single_env->pVM, (GCPhys)), ("%RGp\n", (GCPhys))) 3058 3058 #else 3059 3059 # define VBOX_CHECK_ADDR(GCPhys) do { } while (0) … … 3272 3272 int rc = IOMMMIORead((PVM)pvVM, GCPhys, &u32, 1); 3273 3273 AssertMsg(rc == VINF_SUCCESS, ("rc=%Rrc\n", rc)); NOREF(rc); 3274 Log2(("remR3MMIOReadU8: GCPhys=% VGp -> %02x\n", GCPhys, u32));3274 Log2(("remR3MMIOReadU8: GCPhys=%RGp -> %02x\n", GCPhys, u32)); 3275 3275 return u32; 3276 3276 } … … 3282 3282 int rc = IOMMMIORead((PVM)pvVM, GCPhys, &u32, 2); 3283 3283 AssertMsg(rc == VINF_SUCCESS, ("rc=%Rrc\n", rc)); NOREF(rc); 3284 Log2(("remR3MMIOReadU16: GCPhys=% VGp -> %04x\n", GCPhys, u32));3284 Log2(("remR3MMIOReadU16: GCPhys=%RGp -> %04x\n", GCPhys, u32)); 3285 3285 return u32; 3286 3286 } … … 3292 3292 int rc = IOMMMIORead((PVM)pvVM, GCPhys, &u32, 4); 3293 3293 AssertMsg(rc == VINF_SUCCESS, ("rc=%Rrc\n", rc)); NOREF(rc); 3294 Log2(("remR3MMIOReadU32: GCPhys=% VGp -> %08x\n", GCPhys, u32));3294 Log2(("remR3MMIOReadU32: GCPhys=%RGp -> %08x\n", GCPhys, u32)); 3295 3295 return u32; 3296 3296 } … … 3299 3299 static void remR3MMIOWriteU8(void *pvVM, target_phys_addr_t GCPhys, uint32_t u32) 3300 3300 { 3301 Log2(("remR3MMIOWriteU8: GCPhys=% VGp u32=%#x\n", GCPhys, u32));3301 Log2(("remR3MMIOWriteU8: GCPhys=%RGp u32=%#x\n", GCPhys, u32)); 3302 3302 int rc = IOMMMIOWrite((PVM)pvVM, GCPhys, u32, 1); 3303 3303 AssertMsg(rc == VINF_SUCCESS, ("rc=%Rrc\n", rc)); NOREF(rc); … … 3307 3307 static void remR3MMIOWriteU16(void *pvVM, target_phys_addr_t GCPhys, uint32_t u32) 3308 3308 { 3309 Log2(("remR3MMIOWriteU16: GCPhys=% VGp u32=%#x\n", GCPhys, u32));3309 Log2(("remR3MMIOWriteU16: GCPhys=%RGp u32=%#x\n", GCPhys, u32)); 3310 3310 int rc = IOMMMIOWrite((PVM)pvVM, GCPhys, u32, 2); 3311 3311 AssertMsg(rc == VINF_SUCCESS, ("rc=%Rrc\n", rc)); NOREF(rc); … … 3315 3315 static void remR3MMIOWriteU32(void *pvVM, target_phys_addr_t GCPhys, uint32_t u32) 3316 3316 { 3317 Log2(("remR3MMIOWriteU32: GCPhys=% VGp u32=%#x\n", GCPhys, u32));3317 Log2(("remR3MMIOWriteU32: GCPhys=%RGp u32=%#x\n", GCPhys, u32)); 3318 3318 int rc = IOMMMIOWrite((PVM)pvVM, GCPhys, u32, 4); 3319 3319 AssertMsg(rc == VINF_SUCCESS, ("rc=%Rrc\n", rc)); NOREF(rc); … … 3328 3328 static uint32_t remR3HandlerReadU8(void *pvVM, target_phys_addr_t GCPhys) 3329 3329 { 3330 Log2(("remR3HandlerReadU8: GCPhys=% VGp\n", GCPhys));3330 Log2(("remR3HandlerReadU8: GCPhys=%RGp\n", GCPhys)); 3331 3331 uint8_t u8; 3332 3332 PGMPhysRead((PVM)pvVM, GCPhys, &u8, sizeof(u8)); … … 3336 3336 static uint32_t remR3HandlerReadU16(void *pvVM, target_phys_addr_t GCPhys) 3337 3337 { 3338 Log2(("remR3HandlerReadU16: GCPhys=% VGp\n", GCPhys));3338 Log2(("remR3HandlerReadU16: GCPhys=%RGp\n", GCPhys)); 3339 3339 uint16_t u16; 3340 3340 PGMPhysRead((PVM)pvVM, GCPhys, &u16, sizeof(u16)); … … 3344 3344 static uint32_t remR3HandlerReadU32(void *pvVM, target_phys_addr_t GCPhys) 3345 3345 { 3346 Log2(("remR3HandlerReadU32: GCPhys=% VGp\n", GCPhys));3346 Log2(("remR3HandlerReadU32: GCPhys=%RGp\n", GCPhys)); 3347 3347 uint32_t u32; 3348 3348 PGMPhysRead((PVM)pvVM, GCPhys, &u32, sizeof(u32)); … … 3352 3352 static void remR3HandlerWriteU8(void *pvVM, target_phys_addr_t GCPhys, uint32_t u32) 3353 3353 { 3354 Log2(("remR3HandlerWriteU8: GCPhys=% VGp u32=%#x\n", GCPhys, u32));3354 Log2(("remR3HandlerWriteU8: GCPhys=%RGp u32=%#x\n", GCPhys, u32)); 3355 3355 PGMPhysWrite((PVM)pvVM, GCPhys, &u32, sizeof(uint8_t)); 3356 3356 } … … 3358 3358 static void remR3HandlerWriteU16(void *pvVM, target_phys_addr_t GCPhys, uint32_t u32) 3359 3359 { 3360 Log2(("remR3HandlerWriteU16: GCPhys=% VGp u32=%#x\n", GCPhys, u32));3360 Log2(("remR3HandlerWriteU16: GCPhys=%RGp u32=%#x\n", GCPhys, u32)); 3361 3361 PGMPhysWrite((PVM)pvVM, GCPhys, &u32, sizeof(uint16_t)); 3362 3362 } … … 3364 3364 static void remR3HandlerWriteU32(void *pvVM, target_phys_addr_t GCPhys, uint32_t u32) 3365 3365 { 3366 Log2(("remR3HandlerWriteU32: GCPhys=% VGp u32=%#x\n", GCPhys, u32));3366 Log2(("remR3HandlerWriteU32: GCPhys=%RGp u32=%#x\n", GCPhys, u32)); 3367 3367 PGMPhysWrite((PVM)pvVM, GCPhys, &u32, sizeof(uint32_t)); 3368 3368 } … … 3725 3725 * Do the disassembling. 3726 3726 */ 3727 RTLogPrintf("Guest Code: PC=% VGp #VGp (%VGp) bytes fFlags=%d\n", uCode, cb, cb, fFlags);3727 RTLogPrintf("Guest Code: PC=%RGp %#RGp (%RGp) bytes fFlags=%d\n", uCode, cb, cb, fFlags); 3728 3728 RTSEL cs = cpu_single_env->segs[R_CS].selector; 3729 3729 RTGCUINTPTR eip = uCode - cpu_single_env->segs[R_CS].base; … … 3739 3739 &cbInstr); 3740 3740 if (RT_SUCCESS(rc)) 3741 RTLogPrintf("% VGp %s\n", uCode, szBuf);3741 RTLogPrintf("%RGp %s\n", uCode, szBuf); 3742 3742 else 3743 3743 { 3744 RTLogPrintf("% VGp %04x:%VGp: %s\n", uCode, cs, eip, szBuf);3744 RTLogPrintf("%RGp %04x:%RGv: %s\n", uCode, cs, eip, szBuf); 3745 3745 cbInstr = 1; 3746 3746 }
Note:
See TracChangeset
for help on using the changeset viewer.