diff options
| author | Richard Henderson | 2013-09-03 23:24:58 +0200 |
|---|---|---|
| committer | Richard Henderson | 2013-10-10 20:44:25 +0200 |
| commit | dbdbe0cd3124a3e9afa2d1c11da7c6476097bb9d (patch) | |
| tree | a0dc29246f3956957f7ef58730e9a147c08fc4d7 /translate-all.c | |
| parent | tcg-aarch64: Update to helper_ret_*_mmu routines (diff) | |
| download | qemu-dbdbe0cd3124a3e9afa2d1c11da7c6476097bb9d.tar.gz qemu-dbdbe0cd3124a3e9afa2d1c11da7c6476097bb9d.tar.xz qemu-dbdbe0cd3124a3e9afa2d1c11da7c6476097bb9d.zip | |
exec: Delete is_tcg_gen_code and GETRA_EXT
All implementations now boil down to GETRA.
Signed-off-by: Richard Henderson <rth@twiddle.net>
Diffstat (limited to 'translate-all.c')
| -rw-r--r-- | translate-all.c | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/translate-all.c b/translate-all.c index e7aff928b6..aeda54dfbd 100644 --- a/translate-all.c +++ b/translate-all.c @@ -1318,18 +1318,6 @@ static void tb_link_page(TranslationBlock *tb, tb_page_addr_t phys_pc, mmap_unlock(); } -#if defined(CONFIG_QEMU_LDST_OPTIMIZATION) && defined(CONFIG_SOFTMMU) -/* check whether the given addr is in TCG generated code buffer or not */ -bool is_tcg_gen_code(uintptr_t tc_ptr) -{ - /* This can be called during code generation, code_gen_buffer_size - is used instead of code_gen_ptr for upper boundary checking */ - return (tc_ptr >= (uintptr_t)tcg_ctx.code_gen_buffer && - tc_ptr < (uintptr_t)(tcg_ctx.code_gen_buffer + - tcg_ctx.code_gen_buffer_size)); -} -#endif - /* find the TB 'tb' such that tb[0].tc_ptr <= tc_ptr < tb[1].tc_ptr. Return NULL if not found */ static TranslationBlock *tb_find_pc(uintptr_t tc_ptr) |
