]> git.proxmox.com Git - mirror_qemu.git/commit - cpus.c
icount: decouple warp calls
authorPavel Dovgalyuk <Pavel.Dovgaluk@ispras.ru>
Thu, 10 Mar 2016 11:56:09 +0000 (14:56 +0300)
committerPaolo Bonzini <pbonzini@redhat.com>
Tue, 15 Mar 2016 17:23:45 +0000 (18:23 +0100)
commite76d1798faa6d29f54c0930a034b67f3ecdb947d
treefbfade6e7fcfafd8f8059923a4e82f849d8ea40a
parent281b2201e4e18d5b9a26e1e8d81b62b5581a13be
icount: decouple warp calls

qemu_clock_warp function is called to update virtual clock when CPU
is sleeping. This function includes replay checkpoint to make execution
deterministic in icount mode.
Record/replay module flushes async event queue at checkpoints.
Some of the events (e.g., block devices operations) include interaction
with hardware. E.g., APIC polled by block devices sets one of IRQ flags.
Flag to be set depends on currently executed thread (CPU or iothread).
Therefore in replay mode we have to process the checkpoints in the same thread
as they were recorded.
qemu_clock_warp function (and its checkpoint) may be called from different
thread. This patch decouples two different execution cases of this function:
call when CPU is sleeping from iothread and call from cpu thread to update
virtual clock.
First task is performed by qemu_start_warp_timer function. It sets warp
timer event to the moment of nearest pending virtual timer.
Second function (qemu_account_warp_timer) is called from cpu thread
before execution of the code. It advances virtual clock by adding the length
of period while CPU was sleeping.

Signed-off-by: Pavel Dovgalyuk <pavel.dovgaluk@ispras.ru>
Message-Id: <20160310115609.4812.44986.stgit@PASHA-ISP>
[Update docs. - Paolo]
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
cpus.c
docs/replay.txt
include/qemu/timer.h
include/sysemu/replay.h
main-loop.c
qemu-timer.c
stubs/clock-warp.c