Просмотр исходного кода

tcg: Remove last traces of TCG_TARGET_NEED_POOL_LABELS

These should have been removed with the rest.  There are
a couple of hosts which can emit guest_base into the
constant pool: aarch64, mips64, ppc64, riscv64.

Fixes: a417ef835058 ("tcg: Remove TCG_TARGET_NEED_LDST_LABELS and TCG_TARGET_NEED_POOL_LABELS")
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Richard Henderson 6 месяцев назад
Родитель
Сommit
3a3b282879
2 измененных файлов с 0 добавлено и 5 удалено
  1. 0 4
      tcg/tcg.c
  2. 0 1
      tcg/tci/tcg-target.h

+ 0 - 4
tcg/tcg.c

@@ -1598,21 +1598,17 @@ void tcg_prologue_init(void)
     tcg_qemu_tb_exec = (tcg_prologue_fn *)tcg_splitwx_to_rx(s->code_ptr);
     tcg_qemu_tb_exec = (tcg_prologue_fn *)tcg_splitwx_to_rx(s->code_ptr);
 #endif
 #endif
 
 
-#ifdef TCG_TARGET_NEED_POOL_LABELS
     s->pool_labels = NULL;
     s->pool_labels = NULL;
-#endif
 
 
     qemu_thread_jit_write();
     qemu_thread_jit_write();
     /* Generate the prologue.  */
     /* Generate the prologue.  */
     tcg_target_qemu_prologue(s);
     tcg_target_qemu_prologue(s);
 
 
-#ifdef TCG_TARGET_NEED_POOL_LABELS
     /* Allow the prologue to put e.g. guest_base into a pool entry.  */
     /* Allow the prologue to put e.g. guest_base into a pool entry.  */
     {
     {
         int result = tcg_out_pool_finalize(s);
         int result = tcg_out_pool_finalize(s);
         tcg_debug_assert(result == 0);
         tcg_debug_assert(result == 0);
     }
     }
-#endif
 
 
     prologue_size = tcg_current_code_size(s);
     prologue_size = tcg_current_code_size(s);
     perf_report_prologue(s->code_gen_ptr, prologue_size);
     perf_report_prologue(s->code_gen_ptr, prologue_size);

+ 0 - 1
tcg/tci/tcg-target.h

@@ -72,6 +72,5 @@ typedef enum {
 } TCGReg;
 } TCGReg;
 
 
 #define HAVE_TCG_QEMU_TB_EXEC
 #define HAVE_TCG_QEMU_TB_EXEC
-#define TCG_TARGET_NEED_POOL_LABELS
 
 
 #endif /* TCG_TARGET_H */
 #endif /* TCG_TARGET_H */