Revision a496775f target-ppc/translate.c

b/target-ppc/translate.c
29 29

  
30 30
//#define DO_SINGLE_STEP
31 31
//#define PPC_DEBUG_DISAS
32
//#define DEBUG_MEMORY_ACCESSES
32 33
//#define DO_PPC_STATISTICS
33 34

  
34 35
#if defined(USE_DIRECT_JUMP)
......
1745 1746
        if (likely(simm != 0))
1746 1747
            gen_op_addi(simm);
1747 1748
    }
1749
#ifdef DEBUG_MEMORY_ACCESSES
1750
    gen_op_print_mem_EA();
1751
#endif
1748 1752
}
1749 1753

  
1750 1754
static inline void gen_addr_reg_index (DisasContext *ctx)
......
1756 1760
        gen_op_load_gpr_T1(rB(ctx->opcode));
1757 1761
        gen_op_add();
1758 1762
    }
1763
#ifdef DEBUG_MEMORY_ACCESSES
1764
    gen_op_print_mem_EA();
1765
#endif
1759 1766
}
1760 1767

  
1761 1768
static inline void gen_addr_register (DisasContext *ctx)
......
1765 1772
    } else {
1766 1773
        gen_op_load_gpr_T0(rA(ctx->opcode));
1767 1774
    }
1775
#ifdef DEBUG_MEMORY_ACCESSES
1776
    gen_op_print_mem_EA();
1777
#endif
1768 1778
}
1769 1779

  
1770 1780
/***                             Integer load                              ***/

Also available in: Unified diff