]>
Commit | Line | Data |
---|---|---|
d0fb9657 | 1 | # See docs/devel/tracing.rst for syntax documentation. |
d9bb58e5 | 2 | |
6a7aa856 | 3 | # TCG related tracing |
d9bb58e5 | 4 | # cpu-exec.c |
6a7aa856 AB |
5 | exec_tb(void *tb, uintptr_t pc) "tb:%p pc=0x%"PRIxPTR |
6 | exec_tb_nocache(void *tb, uintptr_t pc) "tb:%p pc=0x%"PRIxPTR | |
7 | exec_tb_exit(void *last_tb, unsigned int flags) "tb:%p flags=0x%x" | |
244f1441 | 8 | |
51807763 PMD |
9 | # cputlb.c |
10 | memory_notdirty_write_access(uint64_t vaddr, uint64_t ram_addr, unsigned size) "0x%" PRIx64 " ram_addr 0x%" PRIx64 " size %u" | |
11 | memory_notdirty_set_dirty(uint64_t vaddr) "0x%" PRIx64 | |
12 | ||
244f1441 | 13 | # translate-all.c |
db0c51a3 | 14 | translate_block(void *tb, uintptr_t pc, const void *tb_code) "tb:%p, pc:0x%"PRIxPTR", tb_code:%p" |