target/arm/tcg/translate-neon.c: make compilation unit common
Reviewed-by: Richard Henderson <richard.henderson@linaro.org> Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org> Signed-off-by: Pierrick Bouvier <pierrick.bouvier@linaro.org> Message-id: 20260407222208.271838-7-pierrick.bouvier@linaro.org Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Pierrick Bouvier committed
Apr 23, 2026 at 10:24 UTC
ee07f43855959af0ee725502ff6d9ea99829d9d3
1 file changed
+8
-2
target/arm/tcg/meson.build
+8
-2
@@ -10,10 +10,13 @@ vfp_d = [
10
decodetree.process('vfp-uncond.decode', extra_args: '--decode=disas_vfp_uncond'),
11
]
12
13
-gen_a32 = [
13
+neon_d = [
14
decodetree.process('neon-shared.decode', extra_args: '--decode=disas_neon_shared'),
15
decodetree.process('neon-dp.decode', extra_args: '--decode=disas_neon_dp'),
16
decodetree.process('neon-ls.decode', extra_args: '--decode=disas_neon_ls'),
17
+]
18
+
19
+gen_a32 = [
20
decodetree.process('m-nocp.decode', extra_args: '--decode=disas_m_nocp'),
21
decodetree.process('mve.decode', extra_args: '--decode=disas_mve'),
22
decodetree.process('a32.decode', extra_args: '--static-decode=disas_a32'),
@@ -32,7 +35,6 @@ arm_ss.add(files(
35
'translate.c',
36
'translate-m-nocp.c',
37
'translate-mve.c',
35
- 'translate-neon.c',
38
'm_helper.c',
39
'mve_helper.c',
40
'op_helper.c',
@@ -63,6 +65,7 @@ arm_common_ss.add(files(
65
))
66
67
arm_common_system_ss.add(
68
+ neon_d,
69
vfp_d,
70
files(
71
'cpregs-at.c',
@@ -72,17 +75,20 @@ arm_common_system_ss.add(
75
'psci.c',
76
'tlb_helper.c',
77
'tlb-insns.c',
78
+ 'translate-neon.c',
79
'translate-vfp.c',
80
'vec_helper.c',
81
'vfp_helper.c',
82
))
83
arm_user_ss.add(
84
+ neon_d,
85
vfp_d,
86
files(
87
'debug.c',
88
'hflags.c',
89
'neon_helper.c',
90
'tlb_helper.c',
91
+ 'translate-neon.c',
92
'translate-vfp.c',
93
'vec_helper.c',
94
'vfp_helper.c',