db0c51a380
Add two helper functions, using a global variable to hold the displacement. The displacement is currently always 0, so no change in behaviour. Begin using the functions in tcg common code only. Reviewed-by: Joelle van Dyne <j@getutm.app> Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
11 lines
391 B
Plaintext
11 lines
391 B
Plaintext
# See docs/devel/tracing.txt 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"
|
|
|
|
# translate-all.c
|
|
translate_block(void *tb, uintptr_t pc, const void *tb_code) "tb:%p, pc:0x%"PRIxPTR", tb_code:%p"
|