mirror of https://github.com/xemu-project/xemu.git
TCG: remove obsolete old_op_count profiler field
Since we don't generate any "old op" anymore, the old_op_count is unneeded. Signed-off-by: Laurent Desnogues <laurent.desnogues@gmail.com> git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@6614 c046a42c-6fe2-441c-8c8c-71466251a162
This commit is contained in:
parent
095271d4ea
commit
9c22bc6312
|
@ -2038,8 +2038,6 @@ void tcg_dump_info(FILE *f,
|
|||
s->tb_count1 ? (double)(s->tb_count1 - s->tb_count) / s->tb_count1 * 100.0 : 0);
|
||||
cpu_fprintf(f, "avg ops/TB %0.1f max=%d\n",
|
||||
s->tb_count ? (double)s->op_count / s->tb_count : 0, s->op_count_max);
|
||||
cpu_fprintf(f, "old ops/total ops %0.1f%%\n",
|
||||
s->op_count ? (double)s->old_op_count / s->op_count * 100.0 : 0);
|
||||
cpu_fprintf(f, "deleted ops/TB %0.2f\n",
|
||||
s->tb_count ?
|
||||
(double)s->del_op_count / s->tb_count : 0);
|
||||
|
|
Loading…
Reference in New Issue