2021-05-17 17:16:58 +02:00
|
|
|
# See docs/devel/tracing.rst for syntax documentation.
|
2017-06-02 08:06:44 +02:00
|
|
|
|
2020-05-13 19:51:31 +02:00
|
|
|
# TCG related tracing
|
2017-06-02 08:06:44 +02:00
|
|
|
# cpu-exec.c
|
2020-05-13 19:51:31 +02:00
|
|
|
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"
|
2017-06-02 08:06:45 +02:00
|
|
|
|
2022-12-09 10:36:46 +01:00
|
|
|
# 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
|
|
|
|
|
2017-06-02 08:06:45 +02:00
|
|
|
# translate-all.c
|
2020-10-28 20:05:44 +01:00
|
|
|
translate_block(void *tb, uintptr_t pc, const void *tb_code) "tb:%p, pc:0x%"PRIxPTR", tb_code:%p"
|