]> git.proxmox.com Git - mirror_qemu.git/blob - target/arm/tcg/meson.build
fa8a9eab93319f3269f3987d3e9c90d80b0081b4
[mirror_qemu.git] / target / arm / tcg / meson.build
1 gen = [
2 decodetree.process('sve.decode', extra_args: '--decode=disas_sve'),
3 decodetree.process('sme.decode', extra_args: '--decode=disas_sme'),
4 decodetree.process('sme-fa64.decode', extra_args: '--static-decode=disas_sme_fa64'),
5 decodetree.process('neon-shared.decode', extra_args: '--decode=disas_neon_shared'),
6 decodetree.process('neon-dp.decode', extra_args: '--decode=disas_neon_dp'),
7 decodetree.process('neon-ls.decode', extra_args: '--decode=disas_neon_ls'),
8 decodetree.process('vfp.decode', extra_args: '--decode=disas_vfp'),
9 decodetree.process('vfp-uncond.decode', extra_args: '--decode=disas_vfp_uncond'),
10 decodetree.process('m-nocp.decode', extra_args: '--decode=disas_m_nocp'),
11 decodetree.process('mve.decode', extra_args: '--decode=disas_mve'),
12 decodetree.process('a32.decode', extra_args: '--static-decode=disas_a32'),
13 decodetree.process('a32-uncond.decode', extra_args: '--static-decode=disas_a32_uncond'),
14 decodetree.process('t32.decode', extra_args: '--static-decode=disas_t32'),
15 decodetree.process('t16.decode', extra_args: ['-w', '16', '--static-decode=disas_t16']),
16 ]
17
18 arm_ss.add(gen)
19
20 arm_ss.add(files(
21 'translate.c',
22 'translate-m-nocp.c',
23 'translate-mve.c',
24 'translate-neon.c',
25 'translate-vfp.c',
26 'crypto_helper.c',
27 'iwmmxt_helper.c',
28 'm_helper.c',
29 'mve_helper.c',
30 'neon_helper.c',
31 'op_helper.c',
32 'tlb_helper.c',
33 'vec_helper.c',
34 ))
35
36 arm_ss.add(when: 'TARGET_AARCH64', if_true: files(
37 'translate-a64.c',
38 'translate-sve.c',
39 'translate-sme.c',
40 'helper-a64.c',
41 'mte_helper.c',
42 'pauth_helper.c',
43 'sme_helper.c',
44 'sve_helper.c',
45 ))
46
47 arm_softmmu_ss.add(files(
48 'psci.c',
49 ))