Created
July 24, 2025 23:33
-
-
Save ubdussamad/0bc723df0a88c72a959a25ce03033448 to your computer and use it in GitHub Desktop.
QEMU Modfile for Version:10.0.3
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # 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" | |
| exec_tb_block(uintptr_t pc) " pc=0x%" PRIxPTR | |
| # 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" | |
| # ldst_atomicity | |
| load_atom2_fallback(uint32_t memop, uintptr_t ra) "mop:0x%"PRIx32", ra:0x%"PRIxPTR"" | |
| load_atom4_fallback(uint32_t memop, uintptr_t ra) "mop:0x%"PRIx32", ra:0x%"PRIxPTR"" | |
| load_atom8_or_exit_fallback(uintptr_t ra) "ra:0x%"PRIxPTR"" | |
| load_atom8_fallback(uint32_t memop, uintptr_t ra) "mop:0x%"PRIx32", ra:0x%"PRIxPTR"" | |
| load_atom16_fallback(uint32_t memop, uintptr_t ra) "mop:0x%"PRIx32", ra:0x%"PRIxPTR"" | |
| load_atom16_or_exit_fallback(uintptr_t ra) "ra:0x%"PRIxPTR"" | |
| store_atom2_fallback(uint32_t memop, uintptr_t ra) "mop:0x%"PRIx32", ra:0x%"PRIxPTR"" | |
| store_atom4_fallback(uint32_t memop, uintptr_t ra) "mop:0x%"PRIx32", ra:0x%"PRIxPTR"" | |
| store_atom8_fallback(uint32_t memop, uintptr_t ra) "mop:0x%"PRIx32", ra:0x%"PRIxPTR"" | |
| store_atom16_fallback(uint32_t memop, uintptr_t ra) "mop:0x%"PRIx32", ra:0x%"PRIxPTR"" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment