diff options
author | Richard Henderson <richard.henderson@linaro.org> | 2022-12-05 16:34:03 -0600 |
---|---|---|
committer | Richard Henderson <richard.henderson@linaro.org> | 2023-01-17 10:22:35 -1000 |
commit | 0012e3516e0f47b3aaf9213aea2c969cf6e8f42a (patch) | |
tree | 30804405895d6d6eea1b34a7b85efceb275a1093 /include/tcg | |
parent | 0fe1c98da9d9abb8e5dc4a67c7e3bcf19aad1e85 (diff) | |
download | qemu-0012e3516e0f47b3aaf9213aea2c969cf6e8f42a.zip qemu-0012e3516e0f47b3aaf9213aea2c969cf6e8f42a.tar.gz qemu-0012e3516e0f47b3aaf9213aea2c969cf6e8f42a.tar.bz2 |
tcg: Move tb_target_set_jmp_target declaration to tcg.h
Reviewed-by: Alex Bennée <alex.bennee@linaro.org>
Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
Diffstat (limited to 'include/tcg')
-rw-r--r-- | include/tcg/tcg.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/tcg/tcg.h b/include/tcg/tcg.h index c2d5430..6f49717 100644 --- a/include/tcg/tcg.h +++ b/include/tcg/tcg.h @@ -833,6 +833,9 @@ void tcg_func_start(TCGContext *s); int tcg_gen_code(TCGContext *s, TranslationBlock *tb, target_ulong pc_start); +void tb_target_set_jmp_target(const TranslationBlock *, int, + uintptr_t, uintptr_t); + void tcg_set_frame(TCGContext *s, TCGReg reg, intptr_t start, intptr_t size); TCGTemp *tcg_global_mem_new_internal(TCGType, TCGv_ptr, |