]> www.infradead.org Git - users/dwmw2/qemu.git/commitdiff
target/arm: move translate modules to tcg/
authorFabiano Rosas <farosas@suse.de>
Fri, 17 Feb 2023 20:11:29 +0000 (17:11 -0300)
committerPeter Maydell <peter.maydell@linaro.org>
Mon, 27 Feb 2023 13:27:04 +0000 (13:27 +0000)
Introduce the target/arm/tcg directory. Its purpose is to hold the TCG
code that is selected by CONFIG_TCG.

Signed-off-by: Claudio Fontana <cfontana@suse.de>
Signed-off-by: Fabiano Rosas <farosas@suse.de>
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Reviewed-by: Alex Bennée <alex.bennee@linaro.org>
Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Tested-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
27 files changed:
MAINTAINERS
target/arm/meson.build
target/arm/tcg/a32-uncond.decode [moved from target/arm/a32-uncond.decode with 100% similarity]
target/arm/tcg/a32.decode [moved from target/arm/a32.decode with 100% similarity]
target/arm/tcg/m-nocp.decode [moved from target/arm/m-nocp.decode with 100% similarity]
target/arm/tcg/meson.build [new file with mode: 0644]
target/arm/tcg/mve.decode [moved from target/arm/mve.decode with 100% similarity]
target/arm/tcg/neon-dp.decode [moved from target/arm/neon-dp.decode with 100% similarity]
target/arm/tcg/neon-ls.decode [moved from target/arm/neon-ls.decode with 100% similarity]
target/arm/tcg/neon-shared.decode [moved from target/arm/neon-shared.decode with 100% similarity]
target/arm/tcg/sme-fa64.decode [moved from target/arm/sme-fa64.decode with 100% similarity]
target/arm/tcg/sme.decode [moved from target/arm/sme.decode with 100% similarity]
target/arm/tcg/sve.decode [moved from target/arm/sve.decode with 100% similarity]
target/arm/tcg/t16.decode [moved from target/arm/t16.decode with 100% similarity]
target/arm/tcg/t32.decode [moved from target/arm/t32.decode with 100% similarity]
target/arm/tcg/translate-a64.c [moved from target/arm/translate-a64.c with 100% similarity]
target/arm/tcg/translate-a64.h [moved from target/arm/translate-a64.h with 100% similarity]
target/arm/tcg/translate-m-nocp.c [moved from target/arm/translate-m-nocp.c with 100% similarity]
target/arm/tcg/translate-mve.c [moved from target/arm/translate-mve.c with 100% similarity]
target/arm/tcg/translate-neon.c [moved from target/arm/translate-neon.c with 100% similarity]
target/arm/tcg/translate-sme.c [moved from target/arm/translate-sme.c with 100% similarity]
target/arm/tcg/translate-sve.c [moved from target/arm/translate-sve.c with 100% similarity]
target/arm/tcg/translate-vfp.c [moved from target/arm/translate-vfp.c with 100% similarity]
target/arm/tcg/translate.c [moved from target/arm/translate.c with 100% similarity]
target/arm/tcg/translate.h [moved from target/arm/translate.h with 100% similarity]
target/arm/tcg/vfp-uncond.decode [moved from target/arm/vfp-uncond.decode with 100% similarity]
target/arm/tcg/vfp.decode [moved from target/arm/vfp.decode with 100% similarity]

index 5c1ee411397596938a95d996549da841d80fff70..c6e6549f0691adad179aa054701fe5af7ed26924 100644 (file)
@@ -161,6 +161,7 @@ M: Peter Maydell <peter.maydell@linaro.org>
 L: qemu-arm@nongnu.org
 S: Maintained
 F: target/arm/
+F: target/arm/tcg/
 F: tests/tcg/arm/
 F: tests/tcg/aarch64/
 F: tests/qtest/arm-cpu-features.c
index 87e911b27fb0b950a6f2859b4248e05c50c5f301..b2904b676b085af4ed22ad9d6bc25996f1195ea5 100644 (file)
@@ -1,22 +1,4 @@
-gen = [
-  decodetree.process('sve.decode', extra_args: '--decode=disas_sve'),
-  decodetree.process('sme.decode', extra_args: '--decode=disas_sme'),
-  decodetree.process('sme-fa64.decode', extra_args: '--static-decode=disas_sme_fa64'),
-  decodetree.process('neon-shared.decode', extra_args: '--decode=disas_neon_shared'),
-  decodetree.process('neon-dp.decode', extra_args: '--decode=disas_neon_dp'),
-  decodetree.process('neon-ls.decode', extra_args: '--decode=disas_neon_ls'),
-  decodetree.process('vfp.decode', extra_args: '--decode=disas_vfp'),
-  decodetree.process('vfp-uncond.decode', extra_args: '--decode=disas_vfp_uncond'),
-  decodetree.process('m-nocp.decode', extra_args: '--decode=disas_m_nocp'),
-  decodetree.process('mve.decode', extra_args: '--decode=disas_mve'),
-  decodetree.process('a32.decode', extra_args: '--static-decode=disas_a32'),
-  decodetree.process('a32-uncond.decode', extra_args: '--static-decode=disas_a32_uncond'),
-  decodetree.process('t32.decode', extra_args: '--static-decode=disas_t32'),
-  decodetree.process('t16.decode', extra_args: ['-w', '16', '--static-decode=disas_t16']),
-]
-
 arm_ss = ss.source_set()
-arm_ss.add(gen)
 arm_ss.add(files(
   'cpu.c',
   'crypto_helper.c',
@@ -29,11 +11,6 @@ arm_ss.add(files(
   'neon_helper.c',
   'op_helper.c',
   'tlb_helper.c',
-  'translate.c',
-  'translate-m-nocp.c',
-  'translate-mve.c',
-  'translate-neon.c',
-  'translate-vfp.c',
   'vec_helper.c',
   'vfp_helper.c',
   'cpu_tcg.c',
@@ -50,9 +27,6 @@ arm_ss.add(when: 'TARGET_AARCH64', if_true: files(
   'pauth_helper.c',
   'sve_helper.c',
   'sme_helper.c',
-  'translate-a64.c',
-  'translate-sve.c',
-  'translate-sme.c',
 ))
 
 arm_softmmu_ss = ss.source_set()
@@ -67,5 +41,9 @@ arm_softmmu_ss.add(files(
 
 subdir('hvf')
 
+if 'CONFIG_TCG' in config_all
+   subdir('tcg')
+endif
+
 target_arch += {'arm': arm_ss}
 target_softmmu_arch += {'arm': arm_softmmu_ss}
diff --git a/target/arm/tcg/meson.build b/target/arm/tcg/meson.build
new file mode 100644 (file)
index 0000000..044561b
--- /dev/null
@@ -0,0 +1,32 @@
+gen = [
+  decodetree.process('sve.decode', extra_args: '--decode=disas_sve'),
+  decodetree.process('sme.decode', extra_args: '--decode=disas_sme'),
+  decodetree.process('sme-fa64.decode', extra_args: '--static-decode=disas_sme_fa64'),
+  decodetree.process('neon-shared.decode', extra_args: '--decode=disas_neon_shared'),
+  decodetree.process('neon-dp.decode', extra_args: '--decode=disas_neon_dp'),
+  decodetree.process('neon-ls.decode', extra_args: '--decode=disas_neon_ls'),
+  decodetree.process('vfp.decode', extra_args: '--decode=disas_vfp'),
+  decodetree.process('vfp-uncond.decode', extra_args: '--decode=disas_vfp_uncond'),
+  decodetree.process('m-nocp.decode', extra_args: '--decode=disas_m_nocp'),
+  decodetree.process('mve.decode', extra_args: '--decode=disas_mve'),
+  decodetree.process('a32.decode', extra_args: '--static-decode=disas_a32'),
+  decodetree.process('a32-uncond.decode', extra_args: '--static-decode=disas_a32_uncond'),
+  decodetree.process('t32.decode', extra_args: '--static-decode=disas_t32'),
+  decodetree.process('t16.decode', extra_args: ['-w', '16', '--static-decode=disas_t16']),
+]
+
+arm_ss.add(gen)
+
+arm_ss.add(files(
+  'translate.c',
+  'translate-m-nocp.c',
+  'translate-mve.c',
+  'translate-neon.c',
+  'translate-vfp.c',
+))
+
+arm_ss.add(when: 'TARGET_AARCH64', if_true: files(
+  'translate-a64.c',
+  'translate-sve.c',
+  'translate-sme.c',
+))