Documentation/Debugging with Valgrind

From QEMU
Revision as of 09:50, 1 May 2014 by Ajb (talk | contribs) (Initial comments, cobbled together from other pages)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Valgrind valgrind works much like QEMU's TCG mode except it has a focus on debugging and testing. You can use it to detect memory corruption and leaks within QEMU.

KVM Based QEMU

valgrind really doesn't function well when using KVM so it's advised to use TCG.

TCG Based QEMU

You will need to use the --smc-check=all option to instruct valgrind to detect self-modifying code which TCG makes extensive use of.

softmmu debugging

Valgrind can be simply run by putting the it in-front on your qemu-system invocation

linux-user debugging

This is potentially complicated by the fact that a qemu-linux-user instance is usually run in a guest chroot. However with multi-arch systems you can bind mount the required host paths into your chroot so valgrind (and non-static qemu binaries) can run.