| # See docs/devel/tracing.rst for syntax documentation. |
| |
| # TCG related tracing |
| # cpu-exec.c |
| exec_tb(void *tb, uintptr_t pc) "tb:%p pc=0x%"PRIxPTR |
| exec_tb_nocache(void *tb, uintptr_t pc) "tb:%p pc=0x%"PRIxPTR |
| exec_tb_exit(void *last_tb, unsigned int flags) "tb:%p flags=0x%x" |
| |
| # cputlb.c |
| memory_notdirty_write_access(uint64_t vaddr, uint64_t ram_addr, unsigned size) "0x%" PRIx64 " ram_addr 0x%" PRIx64 " size %u" |
| memory_notdirty_set_dirty(uint64_t vaddr) "0x%" PRIx64 |
| |
| # translate-all.c |
| translate_block(void *tb, uintptr_t pc, const void *tb_code) "tb:%p, pc:0x%"PRIxPTR", tb_code:%p" |