> For the complete documentation index, see [llms.txt](https://breaking-bits.gitbook.io/breaking-bits/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://breaking-bits.gitbook.io/breaking-bits/vulnerability-discovery/emulation/qemu-usermode-tracing.md).

# QEMU Usermode Tracing

Qemu usermode tracing has powerful tracing capabilities to help you narrow down code paths fast.

The below command will show all the available default tracing pieces.

```
qemu-arm -d help
```

To get a simple trace of the execution run

```
qemu-arm -d in_asm,nochain -L $(pwd) <Path_To_File>
```
