diff options
| author | Richard Henderson <richard.henderson@linaro.org> | 2022-08-11 13:48:03 -0700 |
|---|---|---|
| committer | Richard Henderson <richard.henderson@linaro.org> | 2022-09-06 08:04:26 +0100 |
| commit | 306c872103b4d0986c9f671eb7538b0b70bf69b5 (patch) | |
| tree | 17360b109ccbc2357188396e082ed033cd13ef9e /include/exec/exec-all.h | |
| parent | dac8d19bdb3ccaafbcbd2df34135464964232a8f (diff) | |
| download | focaccia-qemu-306c872103b4d0986c9f671eb7538b0b70bf69b5.tar.gz focaccia-qemu-306c872103b4d0986c9f671eb7538b0b70bf69b5.zip | |
accel/tcg: Add pc and host_pc params to gen_intermediate_code
Pass these along to translator_loop -- pc may be used instead of tb->pc, and host_pc is currently unused. Adjust all targets at one time. Acked-by: Alistair Francis <alistair.francis@wdc.com> Acked-by: Ilya Leoshkevich <iii@linux.ibm.com> Tested-by: Ilya Leoshkevich <iii@linux.ibm.com> Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
Diffstat (limited to 'include/exec/exec-all.h')
| -rw-r--r-- | include/exec/exec-all.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/include/exec/exec-all.h b/include/exec/exec-all.h index 9f35e3b7a9..bcad607c4e 100644 --- a/include/exec/exec-all.h +++ b/include/exec/exec-all.h @@ -39,7 +39,6 @@ typedef ram_addr_t tb_page_addr_t; #define TB_PAGE_ADDR_FMT RAM_ADDR_FMT #endif -void gen_intermediate_code(CPUState *cpu, TranslationBlock *tb, int max_insns); void restore_state_to_opc(CPUArchState *env, TranslationBlock *tb, target_ulong *data); |