[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH v2 17/52] target/arm: Include helper-gen.h in translator.h
From: |
Richard Henderson |
Subject: |
[PATCH v2 17/52] target/arm: Include helper-gen.h in translator.h |
Date: |
Tue, 23 May 2023 06:52:47 -0700 |
This had been included via tcg-op-common.h via tcg-op.h,
but that is going away.
It is needed for inlines within translator.h, so we might as well
do it there and not individually in each translator c file.
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
---
target/arm/tcg/translate.h | 1 +
target/arm/tcg/translate-a64.c | 2 --
target/arm/tcg/translate-sme.c | 1 -
target/arm/tcg/translate-sve.c | 2 --
target/arm/tcg/translate.c | 2 --
5 files changed, 1 insertion(+), 7 deletions(-)
diff --git a/target/arm/tcg/translate.h b/target/arm/tcg/translate.h
index a9d1f4adc2..868a3abd0d 100644
--- a/target/arm/tcg/translate.h
+++ b/target/arm/tcg/translate.h
@@ -2,6 +2,7 @@
#define TARGET_ARM_TRANSLATE_H
#include "exec/translator.h"
+#include "exec/helper-gen.h"
#include "internals.h"
diff --git a/target/arm/tcg/translate-a64.c b/target/arm/tcg/translate-a64.c
index 741a608739..bc0cb98955 100644
--- a/target/arm/tcg/translate-a64.c
+++ b/target/arm/tcg/translate-a64.c
@@ -29,8 +29,6 @@
#include "qemu/host-utils.h"
#include "semihosting/semihost.h"
#include "exec/gen-icount.h"
-#include "exec/helper-proto.h"
-#include "exec/helper-gen.h"
#include "exec/log.h"
#include "cpregs.h"
#include "translate-a64.h"
diff --git a/target/arm/tcg/translate-sme.c b/target/arm/tcg/translate-sme.c
index e3adba314e..b0812d9dd6 100644
--- a/target/arm/tcg/translate-sme.c
+++ b/target/arm/tcg/translate-sme.c
@@ -23,7 +23,6 @@
#include "tcg/tcg-op-gvec.h"
#include "tcg/tcg-gvec-desc.h"
#include "translate.h"
-#include "exec/helper-gen.h"
#include "translate-a64.h"
#include "fpu/softfloat.h"
diff --git a/target/arm/tcg/translate-sve.c b/target/arm/tcg/translate-sve.c
index 92ab290106..106baf311f 100644
--- a/target/arm/tcg/translate-sve.c
+++ b/target/arm/tcg/translate-sve.c
@@ -27,8 +27,6 @@
#include "arm_ldst.h"
#include "translate.h"
#include "internals.h"
-#include "exec/helper-proto.h"
-#include "exec/helper-gen.h"
#include "exec/log.h"
#include "translate-a64.h"
#include "fpu/softfloat.h"
diff --git a/target/arm/tcg/translate.c b/target/arm/tcg/translate.c
index 7468476724..c89825ad6a 100644
--- a/target/arm/tcg/translate.c
+++ b/target/arm/tcg/translate.c
@@ -30,8 +30,6 @@
#include "qemu/bitops.h"
#include "arm_ldst.h"
#include "semihosting/semihost.h"
-#include "exec/helper-proto.h"
-#include "exec/helper-gen.h"
#include "exec/log.h"
#include "cpregs.h"
--
2.34.1
- [PATCH v2 12/52] tcg: Split out tcg-target-reg-bits.h, (continued)
- [PATCH v2 12/52] tcg: Split out tcg-target-reg-bits.h, Richard Henderson, 2023/05/23
- [PATCH v2 06/52] tcg: Widen CPUTLBEntry comparators to 64-bits, Richard Henderson, 2023/05/23
- [PATCH v2 11/52] *: Add missing includes of tcg/tcg.h, Richard Henderson, 2023/05/23
- [PATCH v2 14/52] tcg: Split out tcg/oversized-guest.h, Richard Henderson, 2023/05/23
- [PATCH v2 10/52] *: Add missing includes of tcg/debug-assert.h, Richard Henderson, 2023/05/23
- [PATCH v2 13/52] target/arm: Fix test of TCG_OVERSIZED_GUEST, Richard Henderson, 2023/05/23
- [PATCH v2 20/52] tcg: Move TCGHelperInfo and dependencies to tcg/helper-info.h, Richard Henderson, 2023/05/23
- [PATCH v2 35/52] tcg: Spit out exec/translation-block.h, Richard Henderson, 2023/05/23
- [PATCH v2 15/52] tcg: Move TCGv, dup_const_tl definitions to tcg-op.h, Richard Henderson, 2023/05/23
- [PATCH v2 19/52] tcg: Remove outdated comments in helper-head.h, Richard Henderson, 2023/05/23
- [PATCH v2 17/52] target/arm: Include helper-gen.h in translator.h,
Richard Henderson <=
- [PATCH v2 18/52] target/hexagon: Include helper-gen.h where needed, Richard Henderson, 2023/05/23
- [PATCH v2 09/52] *: Add missing includes of qemu/error-report.h, Richard Henderson, 2023/05/23
- [PATCH v2 22/52] tcg: Move temp_idx and tcgv_i32_temp debug out of line, Richard Henderson, 2023/05/23
- [PATCH v2 23/52] tcg: Split tcg_gen_callN, Richard Henderson, 2023/05/23
- [PATCH v2 21/52] tcg: Pass TCGHelperInfo to tcg_gen_callN, Richard Henderson, 2023/05/23
- [PATCH v2 16/52] tcg: Split tcg/tcg-op-common.h from tcg/tcg-op.h, Richard Henderson, 2023/05/23
- [PATCH v2 25/52] tcg: Split helper-proto.h, Richard Henderson, 2023/05/23
- [PATCH v2 07/52] tcg: Add tlb_fast_offset to TCGContext, Richard Henderson, 2023/05/23
- [PATCH v2 26/52] tcg: Add insn_start_words to TCGContext, Richard Henderson, 2023/05/23
- [PATCH v2 30/52] tcg: Remove NO_CPU_IO_DEFS, Richard Henderson, 2023/05/23