]> git.proxmox.com Git - mirror_qemu.git/commit - translate-all.c
exec: drop cpu_can_do_io, just read cpu->can_do_io
authorPaolo Bonzini <pbonzini@redhat.com>
Wed, 24 Jun 2015 12:16:26 +0000 (14:16 +0200)
committerPaolo Bonzini <pbonzini@redhat.com>
Fri, 14 Aug 2015 21:40:32 +0000 (23:40 +0200)
commit414b15c909c88e4cf5f10e80d033b3aa90bcc9e1
tree04d817361a25bc06a6243d5cfcf693017fe4bc5c
parentb4a4b8d0e0767c85946fd8fc404643bf5766351a
exec: drop cpu_can_do_io, just read cpu->can_do_io

After commit 626cf8f (icount: set can_do_io outside TB execution,
2014-12-08), can_do_io is set to 1 if not executing code.  It is
no longer necessary to make this assumption in cpu_can_do_io.

It is also possible to remove the use_icount test, simply by
never setting cpu->can_do_io to 0 unless use_icount is true.

With these changes cpu_can_do_io boils down to a read of
cpu->can_do_io.

Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
cpu-exec.c
cpus.c
include/exec/exec-all.h
include/qom/cpu.h
qom/cpu.c
softmmu_template.h
translate-all.c