qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 0/2] target/arm: Move more files to tcg/
@ 2023-05-04 11:04 Richard Henderson
  2023-05-04 11:04 ` [PATCH 1/2] target/arm: Move translate-a32.h, arm_ldst.h, sve_ldst_internal.h " Richard Henderson
                   ` (3 more replies)
  0 siblings, 4 replies; 7+ messages in thread
From: Richard Henderson @ 2023-05-04 11:04 UTC (permalink / raw)
  To: qemu-devel; +Cc: qemu-arm

Move 7 files to tcg/.

r~


Richard Henderson (2):
  target/arm: Move translate-a32.h, arm_ldst.h, sve_ldst_internal.h to
    tcg/
  target/arm: Move helper-{a64,mve,sme,sve}.h to tcg/

 target/arm/helper.h                      | 8 ++++----
 target/arm/{ => tcg}/arm_ldst.h          | 0
 target/arm/{ => tcg}/helper-a64.h        | 0
 target/arm/{ => tcg}/helper-mve.h        | 0
 target/arm/{ => tcg}/helper-sme.h        | 0
 target/arm/{ => tcg}/helper-sve.h        | 0
 target/arm/{ => tcg}/sve_ldst_internal.h | 0
 target/arm/{ => tcg}/translate-a32.h     | 0
 8 files changed, 4 insertions(+), 4 deletions(-)
 rename target/arm/{ => tcg}/arm_ldst.h (100%)
 rename target/arm/{ => tcg}/helper-a64.h (100%)
 rename target/arm/{ => tcg}/helper-mve.h (100%)
 rename target/arm/{ => tcg}/helper-sme.h (100%)
 rename target/arm/{ => tcg}/helper-sve.h (100%)
 rename target/arm/{ => tcg}/sve_ldst_internal.h (100%)
 rename target/arm/{ => tcg}/translate-a32.h (100%)

-- 
2.34.1



^ permalink raw reply	[flat|nested] 7+ messages in thread

* [PATCH 1/2] target/arm: Move translate-a32.h, arm_ldst.h, sve_ldst_internal.h to tcg/
  2023-05-04 11:04 [PATCH 0/2] target/arm: Move more files to tcg/ Richard Henderson
@ 2023-05-04 11:04 ` Richard Henderson
  2023-05-04 13:25   ` Fabiano Rosas
  2023-05-04 11:04 ` [PATCH 2/2] target/arm: Move helper-{a64,mve,sme,sve}.h " Richard Henderson
                   ` (2 subsequent siblings)
  3 siblings, 1 reply; 7+ messages in thread
From: Richard Henderson @ 2023-05-04 11:04 UTC (permalink / raw)
  To: qemu-devel; +Cc: qemu-arm

These files got missed when populating tcg/.
Because they are included with "", no change to the users required.

Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
---
 target/arm/{ => tcg}/arm_ldst.h          | 0
 target/arm/{ => tcg}/sve_ldst_internal.h | 0
 target/arm/{ => tcg}/translate-a32.h     | 0
 3 files changed, 0 insertions(+), 0 deletions(-)
 rename target/arm/{ => tcg}/arm_ldst.h (100%)
 rename target/arm/{ => tcg}/sve_ldst_internal.h (100%)
 rename target/arm/{ => tcg}/translate-a32.h (100%)

diff --git a/target/arm/arm_ldst.h b/target/arm/tcg/arm_ldst.h
similarity index 100%
rename from target/arm/arm_ldst.h
rename to target/arm/tcg/arm_ldst.h
diff --git a/target/arm/sve_ldst_internal.h b/target/arm/tcg/sve_ldst_internal.h
similarity index 100%
rename from target/arm/sve_ldst_internal.h
rename to target/arm/tcg/sve_ldst_internal.h
diff --git a/target/arm/translate-a32.h b/target/arm/tcg/translate-a32.h
similarity index 100%
rename from target/arm/translate-a32.h
rename to target/arm/tcg/translate-a32.h
-- 
2.34.1



^ permalink raw reply	[flat|nested] 7+ messages in thread

* [PATCH 2/2] target/arm: Move helper-{a64,mve,sme,sve}.h to tcg/
  2023-05-04 11:04 [PATCH 0/2] target/arm: Move more files to tcg/ Richard Henderson
  2023-05-04 11:04 ` [PATCH 1/2] target/arm: Move translate-a32.h, arm_ldst.h, sve_ldst_internal.h " Richard Henderson
@ 2023-05-04 11:04 ` Richard Henderson
  2023-05-04 13:25   ` Fabiano Rosas
  2023-05-09 12:57 ` [PATCH 0/2] target/arm: Move more files " Peter Maydell
  2023-05-09 14:26 ` Philippe Mathieu-Daudé
  3 siblings, 1 reply; 7+ messages in thread
From: Richard Henderson @ 2023-05-04 11:04 UTC (permalink / raw)
  To: qemu-devel; +Cc: qemu-arm

While we cannot move the main "helper.h" out of target/arm/,
due to usage by generic code, we can move the sub-includes.

Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
---
 target/arm/helper.h               | 8 ++++----
 target/arm/{ => tcg}/helper-a64.h | 0
 target/arm/{ => tcg}/helper-mve.h | 0
 target/arm/{ => tcg}/helper-sme.h | 0
 target/arm/{ => tcg}/helper-sve.h | 0
 5 files changed, 4 insertions(+), 4 deletions(-)
 rename target/arm/{ => tcg}/helper-a64.h (100%)
 rename target/arm/{ => tcg}/helper-mve.h (100%)
 rename target/arm/{ => tcg}/helper-sme.h (100%)
 rename target/arm/{ => tcg}/helper-sve.h (100%)

diff --git a/target/arm/helper.h b/target/arm/helper.h
index 018b00ea75..3335c2b10b 100644
--- a/target/arm/helper.h
+++ b/target/arm/helper.h
@@ -1039,9 +1039,9 @@ DEF_HELPER_FLAGS_5(gvec_uclamp_d, TCG_CALL_NO_RWG,
                    void, ptr, ptr, ptr, ptr, i32)
 
 #ifdef TARGET_AARCH64
-#include "helper-a64.h"
-#include "helper-sve.h"
-#include "helper-sme.h"
+#include "tcg/helper-a64.h"
+#include "tcg/helper-sve.h"
+#include "tcg/helper-sme.h"
 #endif
 
-#include "helper-mve.h"
+#include "tcg/helper-mve.h"
diff --git a/target/arm/helper-a64.h b/target/arm/tcg/helper-a64.h
similarity index 100%
rename from target/arm/helper-a64.h
rename to target/arm/tcg/helper-a64.h
diff --git a/target/arm/helper-mve.h b/target/arm/tcg/helper-mve.h
similarity index 100%
rename from target/arm/helper-mve.h
rename to target/arm/tcg/helper-mve.h
diff --git a/target/arm/helper-sme.h b/target/arm/tcg/helper-sme.h
similarity index 100%
rename from target/arm/helper-sme.h
rename to target/arm/tcg/helper-sme.h
diff --git a/target/arm/helper-sve.h b/target/arm/tcg/helper-sve.h
similarity index 100%
rename from target/arm/helper-sve.h
rename to target/arm/tcg/helper-sve.h
-- 
2.34.1



^ permalink raw reply related	[flat|nested] 7+ messages in thread

* Re: [PATCH 1/2] target/arm: Move translate-a32.h, arm_ldst.h, sve_ldst_internal.h to tcg/
  2023-05-04 11:04 ` [PATCH 1/2] target/arm: Move translate-a32.h, arm_ldst.h, sve_ldst_internal.h " Richard Henderson
@ 2023-05-04 13:25   ` Fabiano Rosas
  0 siblings, 0 replies; 7+ messages in thread
From: Fabiano Rosas @ 2023-05-04 13:25 UTC (permalink / raw)
  To: Richard Henderson, qemu-devel; +Cc: qemu-arm

Richard Henderson <richard.henderson@linaro.org> writes:

> These files got missed when populating tcg/.
> Because they are included with "", no change to the users required.
>
> Signed-off-by: Richard Henderson <richard.henderson@linaro.org>

Reviewed-by: Fabiano Rosas <farosas@suse.de>


^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [PATCH 2/2] target/arm: Move helper-{a64,mve,sme,sve}.h to tcg/
  2023-05-04 11:04 ` [PATCH 2/2] target/arm: Move helper-{a64,mve,sme,sve}.h " Richard Henderson
@ 2023-05-04 13:25   ` Fabiano Rosas
  0 siblings, 0 replies; 7+ messages in thread
From: Fabiano Rosas @ 2023-05-04 13:25 UTC (permalink / raw)
  To: Richard Henderson, qemu-devel; +Cc: qemu-arm

Richard Henderson <richard.henderson@linaro.org> writes:

> While we cannot move the main "helper.h" out of target/arm/,
> due to usage by generic code, we can move the sub-includes.
>
> Signed-off-by: Richard Henderson <richard.henderson@linaro.org>

Reviewed-by: Fabiano Rosas <farosas@suse.de>


^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [PATCH 0/2] target/arm: Move more files to tcg/
  2023-05-04 11:04 [PATCH 0/2] target/arm: Move more files to tcg/ Richard Henderson
  2023-05-04 11:04 ` [PATCH 1/2] target/arm: Move translate-a32.h, arm_ldst.h, sve_ldst_internal.h " Richard Henderson
  2023-05-04 11:04 ` [PATCH 2/2] target/arm: Move helper-{a64,mve,sme,sve}.h " Richard Henderson
@ 2023-05-09 12:57 ` Peter Maydell
  2023-05-09 14:26 ` Philippe Mathieu-Daudé
  3 siblings, 0 replies; 7+ messages in thread
From: Peter Maydell @ 2023-05-09 12:57 UTC (permalink / raw)
  To: Richard Henderson; +Cc: qemu-devel, qemu-arm

On Thu, 4 May 2023 at 12:05, Richard Henderson
<richard.henderson@linaro.org> wrote:
>
> Move 7 files to tcg/.
>
> r~
>
>
> Richard Henderson (2):
>   target/arm: Move translate-a32.h, arm_ldst.h, sve_ldst_internal.h to
>     tcg/
>   target/arm: Move helper-{a64,mve,sme,sve}.h to tcg/
>



Applied to target-arm.next, thanks.

-- PMM


^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [PATCH 0/2] target/arm: Move more files to tcg/
  2023-05-04 11:04 [PATCH 0/2] target/arm: Move more files to tcg/ Richard Henderson
                   ` (2 preceding siblings ...)
  2023-05-09 12:57 ` [PATCH 0/2] target/arm: Move more files " Peter Maydell
@ 2023-05-09 14:26 ` Philippe Mathieu-Daudé
  3 siblings, 0 replies; 7+ messages in thread
From: Philippe Mathieu-Daudé @ 2023-05-09 14:26 UTC (permalink / raw)
  To: Richard Henderson, qemu-devel; +Cc: qemu-arm

On 4/5/23 13:04, Richard Henderson wrote:
> Move 7 files to tcg/.
> 
> r~
> 
> 
> Richard Henderson (2):
>    target/arm: Move translate-a32.h, arm_ldst.h, sve_ldst_internal.h to
>      tcg/
>    target/arm: Move helper-{a64,mve,sme,sve}.h to tcg/

Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org>



^ permalink raw reply	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2023-05-09 14:27 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-05-04 11:04 [PATCH 0/2] target/arm: Move more files to tcg/ Richard Henderson
2023-05-04 11:04 ` [PATCH 1/2] target/arm: Move translate-a32.h, arm_ldst.h, sve_ldst_internal.h " Richard Henderson
2023-05-04 13:25   ` Fabiano Rosas
2023-05-04 11:04 ` [PATCH 2/2] target/arm: Move helper-{a64,mve,sme,sve}.h " Richard Henderson
2023-05-04 13:25   ` Fabiano Rosas
2023-05-09 12:57 ` [PATCH 0/2] target/arm: Move more files " Peter Maydell
2023-05-09 14:26 ` Philippe Mathieu-Daudé

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).