VirtualBox

Changeset 15920 in vbox for trunk/src/recompiler_new


Ignore:
Timestamp:
Jan 13, 2009 4:38:55 PM (16 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
41545
Message:

REM: logging changes, cleanup

Location:
trunk/src/recompiler_new
Files:
1 deleted
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/recompiler_new/VBoxRecompiler.c

    r15774 r15920  
    36753675 * @param   cb              Size of the code block.
    36763676 */
    3677 void disas(FILE *phFileIgnored, void *pvCode, unsigned long cb)
    3678 {
     3677void 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)
    36793683    if (LogIs2Enabled())
     3684#endif
    36803685    {
    36813686        unsigned        off = 0;
     
    36903695#endif
    36913696
    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);
    36933698        while (off < cb)
    36943699        {
    36953700            uint32_t cbInstr;
    36963701            if (RT_SUCCESS(DISInstr(&Cpu, (uintptr_t)pvCode + off, 0, &cbInstr, szOutput)))
    3697                 RTLogPrintf("%s", szOutput);
     3702                DISAS_PRINTF("%s", szOutput);
    36983703            else
    36993704            {
    3700                 RTLogPrintf("disas error\n");
     3705                DISAS_PRINTF("disas error\n");
    37013706                cbInstr = 1;
    37023707#ifdef RT_ARCH_AMD64 /** @todo remove when DISInstr starts supporing 64-bit code. */
     
    37073712        }
    37083713    }
    3709     NOREF(phFileIgnored);
     3714
     3715#undef  DISAS_PRINTF
    37103716}
    37113717
     
    37193725 * @param   fFlags          Flags, probably something which tells if this is 16, 32 or 64 bit code.
    37203726 */
    3721 void target_disas(FILE *phFileIgnored, target_ulong uCode, target_ulong cb, int fFlags)
    3722 {
     3727void 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)
    37233733    if (LogIs2Enabled())
     3734#endif
    37243735    {
    37253736        PVM pVM = cpu_single_env->pVM;
     
    37353746         * Do the disassembling.
    37363747         */
    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);
    37383749        cs = cpu_single_env->segs[R_CS].selector;
    37393750        eip = uCode - cpu_single_env->segs[R_CS].base;
     
    37493760                                        &cbInstr);
    37503761            if (RT_SUCCESS(rc))
    3751                 RTLogPrintf("%RGp %s\n", uCode, szBuf);
     3762                DISAS_PRINTF("%llx %s\n", (uint64_t)uCode, szBuf);
    37523763            else
    37533764            {
    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);
    37553766                cbInstr = 1;
    37563767            }
     
    37643775        }
    37653776    }
    3766     NOREF(phFileIgnored);
     3777#undef DISAS_PRINTF
    37673778}
    37683779
  • trunk/src/recompiler_new/translate-all.c

    r13382 r15920  
    182182    tcg_func_start(s);
    183183
    184 #ifdef VBOX
    185184    gen_intermediate_code_pc(env, tb);
    186 #else
    187     gen_intermediate_code_pc(env, tb);
    188 #endif
    189185
    190186    if (use_icount) {
Note: See TracChangeset for help on using the changeset viewer.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette