I'm running qemu which emulates x86_64 processor on top of x86 host machine, and I'm interesting in achieving the following:
1) better execution time, so KVM is a better way to achieve that, as the guest and host machines share the same architecture.
2) counting the number of instruction generated by the guest machine(qemu), and virtual clock (-icount option) achieved that
I was trying to run the qemu including both kvm & icount options (-enable-kvm -icount 0) and I got this message "-icount is not allowed with kvm or xen"
is it possible to run the qemu including both options? thanks .