[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH v3 16/48] target/arm: Include helper-gen.h in translator.h
|
From: |
Richard Henderson |
|
Subject: |
[PATCH v3 16/48] target/arm: Include helper-gen.h in translator.h |
|
Date: |
Tue, 30 May 2023 21:02:58 -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
- Re: [PATCH v3 03/48] tcg/s390x: Remove TARGET_LONG_BITS, TCG_TYPE_TL, (continued)
- [PATCH v3 06/48] tcg: Widen CPUTLBEntry comparators to 64-bits, Richard Henderson, 2023/05/31
- [PATCH v3 05/48] tcg: Move TCG_TYPE_TL from tcg.h to tcg-op.h, Richard Henderson, 2023/05/31
- [PATCH v3 17/48] target/hexagon: Include helper-gen.h where needed, Richard Henderson, 2023/05/31
- [PATCH v3 08/48] *: Add missing includes of qemu/error-report.h, Richard Henderson, 2023/05/31
- [PATCH v3 12/48] target/arm: Fix test of TCG_OVERSIZED_GUEST, Richard Henderson, 2023/05/31
- [PATCH v3 13/48] tcg: Split out tcg/oversized-guest.h, Richard Henderson, 2023/05/31
- [PATCH v3 14/48] tcg: Move TCGv, dup_const_tl definitions to tcg-op.h, Richard Henderson, 2023/05/31
- [PATCH v3 07/48] tcg: Add tlb_fast_offset to TCGContext, Richard Henderson, 2023/05/31
- [PATCH v3 16/48] target/arm: Include helper-gen.h in translator.h,
Richard Henderson <=
- [PATCH v3 15/48] tcg: Split tcg/tcg-op-common.h from tcg/tcg-op.h, Richard Henderson, 2023/05/31
- [PATCH v3 21/48] tcg: Move temp_idx and tcgv_i32_temp debug out of line, Richard Henderson, 2023/05/31
- [PATCH v3 22/48] tcg: Split tcg_gen_callN, Richard Henderson, 2023/05/31
- [PATCH v3 10/48] *: Add missing includes of tcg/tcg.h, Richard Henderson, 2023/05/31
- [PATCH v3 09/48] *: Add missing includes of tcg/debug-assert.h, Richard Henderson, 2023/05/31
- [PATCH v3 18/48] tcg: Remove outdated comments in helper-head.h, Richard Henderson, 2023/05/31
- [PATCH v3 19/48] tcg: Move TCGHelperInfo and dependencies to tcg/helper-info.h, Richard Henderson, 2023/05/31
- [PATCH v3 20/48] tcg: Pass TCGHelperInfo to tcg_gen_callN, Richard Henderson, 2023/05/31