]> git.ipfire.org Git - thirdparty/qemu.git/commit
tests/tcg: add a system test to check memory instrumentation
authorAlex Bennée <alex.bennee@linaro.org>
Mon, 16 Sep 2024 08:53:55 +0000 (09:53 +0100)
committerAlex Bennée <alex.bennee@linaro.org>
Thu, 19 Sep 2024 14:58:01 +0000 (15:58 +0100)
commitecbcc9ead2f86a80e6d1292c10f733b4ddd25256
treee06ac9bd33f7a0ce883271529ebff28f8be10247
parent3b2899e3dd90b8122bc45a1d5bc06508ef191fe3
tests/tcg: add a system test to check memory instrumentation

At first I thought I could compile the user-mode test for system mode
however we already have a fairly comprehensive test case for system
mode in "memory" so lets use that.

As tracking every access will quickly build up with "print-access" we
add a new mode to track groups of reads and writes to regions. Because
the test_data is 16k aligned we can be sure all accesses to it are
ones we can count.

First we extend the test to report where the test_data region is. Then
we expand the pdot() function to track the total number of reads and
writes to the region. We have to add some addition pdot() calls to
take into account multiple reads/writes in the test loops.

Finally we add a python script to integrate the data from the plugin
and the output of the test and validate they both agree on the total
counts. As some boot codes clear the bss we also add a flag to add a
regions worth of writes to the expected total.

Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
Reviewed-by: Pierrick Bouvier <pierrick.bouvier@linaro.org>
Message-Id: <20240916085400.1046925-14-alex.bennee@linaro.org>
tests/tcg/alpha/Makefile.softmmu-target
tests/tcg/multiarch/system/Makefile.softmmu-target
tests/tcg/multiarch/system/memory.c
tests/tcg/multiarch/system/validate-memory-counts.py [new file with mode: 0755]
tests/tcg/plugins/mem.c
tests/tcg/s390x/Makefile.softmmu-target