| 1 | # See docs/devel/tracing.rst for syntax documentation. |
| 2 | |
| 3 | # TCG related tracing |
| 4 | # cpu-exec.c |
| 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" |
| 8 | |
| 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 | |
| 13 | # translate-all.c |
| 14 | translate_block(void *tb, uintptr_t pc, const void *tb_code) "tb:%p, pc:0x%"PRIxPTR", tb_code:%p" |
| 15 | tb_gen_code_buffer_overflow(const char *reason) "reason: %s" |
| 16 | |
| 17 | # ldst_atomicity |
| 18 | load_atom2_fallback(uint32_t memop, uintptr_t ra) "mop:0x%"PRIx32", ra:0x%"PRIxPTR"" |
| 19 | load_atom4_fallback(uint32_t memop, uintptr_t ra) "mop:0x%"PRIx32", ra:0x%"PRIxPTR"" |
| 20 | load_atom8_or_exit_fallback(uintptr_t ra) "ra:0x%"PRIxPTR"" |
| 21 | load_atom8_fallback(uint32_t memop, uintptr_t ra) "mop:0x%"PRIx32", ra:0x%"PRIxPTR"" |
| 22 | load_atom16_fallback(uint32_t memop, uintptr_t ra) "mop:0x%"PRIx32", ra:0x%"PRIxPTR"" |
| 23 | load_atom16_or_exit_fallback(uintptr_t ra) "ra:0x%"PRIxPTR"" |
| 24 | store_atom2_fallback(uint32_t memop, uintptr_t ra) "mop:0x%"PRIx32", ra:0x%"PRIxPTR"" |
| 25 | store_atom4_fallback(uint32_t memop, uintptr_t ra) "mop:0x%"PRIx32", ra:0x%"PRIxPTR"" |
| 26 | store_atom8_fallback(uint32_t memop, uintptr_t ra) "mop:0x%"PRIx32", ra:0x%"PRIxPTR"" |
| 27 | store_atom16_fallback(uint32_t memop, uintptr_t ra) "mop:0x%"PRIx32", ra:0x%"PRIxPTR"" |
| 28 | |
| 29 | # tb-maint.c |
| 30 | tb_flush(void) "" |