]> www.infradead.org Git - users/dwmw2/qemu.git/commitdiff
target/arm: move helpers to tcg/
authorClaudio Fontana <cfontana@suse.de>
Fri, 17 Feb 2023 20:11:30 +0000 (17:11 -0300)
committerPeter Maydell <peter.maydell@linaro.org>
Mon, 27 Feb 2023 13:27:04 +0000 (13:27 +0000)
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: Philippe Mathieu-Daudé <philmd@linaro.org>
Tested-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
17 files changed:
target/arm/meson.build
target/arm/tcg-stubs.c [new file with mode: 0644]
target/arm/tcg/crypto_helper.c [moved from target/arm/crypto_helper.c with 100% similarity]
target/arm/tcg/helper-a64.c [moved from target/arm/helper-a64.c with 100% similarity]
target/arm/tcg/iwmmxt_helper.c [moved from target/arm/iwmmxt_helper.c with 100% similarity]
target/arm/tcg/m_helper.c [moved from target/arm/m_helper.c with 100% similarity]
target/arm/tcg/meson.build
target/arm/tcg/mte_helper.c [moved from target/arm/mte_helper.c with 100% similarity]
target/arm/tcg/mve_helper.c [moved from target/arm/mve_helper.c with 100% similarity]
target/arm/tcg/neon_helper.c [moved from target/arm/neon_helper.c with 100% similarity]
target/arm/tcg/op_helper.c [moved from target/arm/op_helper.c with 100% similarity]
target/arm/tcg/pauth_helper.c [moved from target/arm/pauth_helper.c with 100% similarity]
target/arm/tcg/sme_helper.c [moved from target/arm/sme_helper.c with 100% similarity]
target/arm/tcg/sve_helper.c [moved from target/arm/sve_helper.c with 100% similarity]
target/arm/tcg/tlb_helper.c [moved from target/arm/tlb_helper.c with 100% similarity]
target/arm/tcg/vec_helper.c [moved from target/arm/vec_helper.c with 100% similarity]
target/arm/tcg/vec_internal.h [moved from target/arm/vec_internal.h with 100% similarity]

index b2904b676b085af4ed22ad9d6bc25996f1195ea5..3e2f40300567f0b34f4c9b24497312c51330e18f 100644 (file)
@@ -1,17 +1,9 @@
 arm_ss = ss.source_set()
 arm_ss.add(files(
   'cpu.c',
-  'crypto_helper.c',
   'debug_helper.c',
   'gdbstub.c',
   'helper.c',
-  'iwmmxt_helper.c',
-  'm_helper.c',
-  'mve_helper.c',
-  'neon_helper.c',
-  'op_helper.c',
-  'tlb_helper.c',
-  'vec_helper.c',
   'vfp_helper.c',
   'cpu_tcg.c',
 ))
@@ -22,11 +14,6 @@ arm_ss.add(when: 'CONFIG_KVM', if_true: files('kvm.c', 'kvm64.c'), if_false: fil
 arm_ss.add(when: 'TARGET_AARCH64', if_true: files(
   'cpu64.c',
   'gdbstub64.c',
-  'helper-a64.c',
-  'mte_helper.c',
-  'pauth_helper.c',
-  'sve_helper.c',
-  'sme_helper.c',
 ))
 
 arm_softmmu_ss = ss.source_set()
@@ -43,6 +30,8 @@ subdir('hvf')
 
 if 'CONFIG_TCG' in config_all
    subdir('tcg')
+else
+    arm_ss.add(files('tcg-stubs.c'))
 endif
 
 target_arch += {'arm': arm_ss}
diff --git a/target/arm/tcg-stubs.c b/target/arm/tcg-stubs.c
new file mode 100644 (file)
index 0000000..1a7ddb3
--- /dev/null
@@ -0,0 +1,23 @@
+/*
+ * QEMU ARM stubs for some TCG helper functions
+ *
+ * Copyright 2021 SUSE LLC
+ *
+ * This work is licensed under the terms of the GNU GPL, version 2 or later.
+ * See the COPYING file in the top-level directory.
+ */
+
+#include "qemu/osdep.h"
+#include "cpu.h"
+#include "internals.h"
+
+void write_v7m_exception(CPUARMState *env, uint32_t new_exc)
+{
+    g_assert_not_reached();
+}
+
+void raise_exception_ra(CPUARMState *env, uint32_t excp, uint32_t syndrome,
+                        uint32_t target_el, uintptr_t ra)
+{
+    g_assert_not_reached();
+}
index 044561bd4de327541b032104d47332588f0d74f1..1f27ba1272e265d574c6c8f15d09ec754e6a8353 100644 (file)
@@ -23,10 +23,23 @@ arm_ss.add(files(
   'translate-mve.c',
   'translate-neon.c',
   'translate-vfp.c',
+  'crypto_helper.c',
+  'iwmmxt_helper.c',
+  'm_helper.c',
+  'mve_helper.c',
+  'neon_helper.c',
+  'op_helper.c',
+  'tlb_helper.c',
+  'vec_helper.c',
 ))
 
 arm_ss.add(when: 'TARGET_AARCH64', if_true: files(
   'translate-a64.c',
   'translate-sve.c',
   'translate-sme.c',
+  'helper-a64.c',
+  'mte_helper.c',
+  'pauth_helper.c',
+  'sme_helper.c',
+  'sve_helper.c',
 ))