Changeset 15920 in vbox for trunk/src/recompiler_new
- Timestamp:
- Jan 13, 2009 4:38:55 PM (16 years ago)
- svn:sync-xref-src-repo-rev:
- 41545
- Location:
- trunk/src/recompiler_new
- Files:
-
- 1 deleted
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/recompiler_new/VBoxRecompiler.c
r15774 r15920 3675 3675 * @param cb Size of the code block. 3676 3676 */ 3677 void disas(FILE *phFileIgnored, void *pvCode, unsigned long cb) 3678 { 3677 void disas(FILE *phFile, void *pvCode, unsigned long cb) 3678 { 3679 #ifdef DEBUG_ALL_LOGGING 3680 #define DISAS_PRINTF(x...) fprintf(phFile, x) 3681 #else 3682 #define DISAS_PRINTF(x...) RTLogPrintf(x) 3679 3683 if (LogIs2Enabled()) 3684 #endif 3680 3685 { 3681 3686 unsigned off = 0; … … 3690 3695 #endif 3691 3696 3692 RTLogPrintf("Recompiled Code: %p %#lx (%ld) bytes\n", pvCode, cb, cb);3697 DISAS_PRINTF("Recompiled Code: %p %#lx (%ld) bytes\n", pvCode, cb, cb); 3693 3698 while (off < cb) 3694 3699 { 3695 3700 uint32_t cbInstr; 3696 3701 if (RT_SUCCESS(DISInstr(&Cpu, (uintptr_t)pvCode + off, 0, &cbInstr, szOutput))) 3697 RTLogPrintf("%s", szOutput);3702 DISAS_PRINTF("%s", szOutput); 3698 3703 else 3699 3704 { 3700 RTLogPrintf("disas error\n");3705 DISAS_PRINTF("disas error\n"); 3701 3706 cbInstr = 1; 3702 3707 #ifdef RT_ARCH_AMD64 /** @todo remove when DISInstr starts supporing 64-bit code. */ … … 3707 3712 } 3708 3713 } 3709 NOREF(phFileIgnored); 3714 3715 #undef DISAS_PRINTF 3710 3716 } 3711 3717 … … 3719 3725 * @param fFlags Flags, probably something which tells if this is 16, 32 or 64 bit code. 3720 3726 */ 3721 void target_disas(FILE *phFileIgnored, target_ulong uCode, target_ulong cb, int fFlags) 3722 { 3727 void target_disas(FILE *phFile, target_ulong uCode, target_ulong cb, int fFlags) 3728 { 3729 #ifdef DEBUG_ALL_LOGGING 3730 #define DISAS_PRINTF(x...) fprintf(phFile, x) 3731 #else 3732 #define DISAS_PRINTF(x...) RTLogPrintf(x) 3723 3733 if (LogIs2Enabled()) 3734 #endif 3724 3735 { 3725 3736 PVM pVM = cpu_single_env->pVM; … … 3735 3746 * Do the disassembling. 3736 3747 */ 3737 RTLogPrintf("Guest Code: PC=%RGp %RGp bytes fFlags=%d\n", uCode,cb, fFlags);3748 DISAS_PRINTF("Guest Code: PC=%llx %llx bytes fFlags=%d\n", (uint64_t)uCode, (uint64_t)cb, fFlags); 3738 3749 cs = cpu_single_env->segs[R_CS].selector; 3739 3750 eip = uCode - cpu_single_env->segs[R_CS].base; … … 3749 3760 &cbInstr); 3750 3761 if (RT_SUCCESS(rc)) 3751 RTLogPrintf("%RGp %s\n",uCode, szBuf);3762 DISAS_PRINTF("%llx %s\n", (uint64_t)uCode, szBuf); 3752 3763 else 3753 3764 { 3754 RTLogPrintf("%RGp %04x:%RGp: %s\n", uCode, cs,eip, szBuf);3765 DISAS_PRINTF("%llx %04x:%llx: %s\n", (uint64_t)uCode, cs, (uint64_t)eip, szBuf); 3755 3766 cbInstr = 1; 3756 3767 } … … 3764 3775 } 3765 3776 } 3766 NOREF(phFileIgnored); 3777 #undef DISAS_PRINTF 3767 3778 } 3768 3779 -
trunk/src/recompiler_new/translate-all.c
r13382 r15920 182 182 tcg_func_start(s); 183 183 184 #ifdef VBOX185 184 gen_intermediate_code_pc(env, tb); 186 #else187 gen_intermediate_code_pc(env, tb);188 #endif189 185 190 186 if (use_icount) {
Note:
See TracChangeset
for help on using the changeset viewer.