1gen = [ 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 decodetree.process('a64.decode', extra_args: ['--static-decode=disas_a64']), 17] 18 19arm_ss.add(gen) 20 21arm_ss.add(files( 22 'cpu32.c', 23 'translate.c', 24 'translate-m-nocp.c', 25 'translate-mve.c', 26 'translate-neon.c', 27 'translate-vfp.c', 28 'crypto_helper.c', 29 'hflags.c', 30 'iwmmxt_helper.c', 31 'm_helper.c', 32 'mve_helper.c', 33 'neon_helper.c', 34 'op_helper.c', 35 'tlb_helper.c', 36 'vec_helper.c', 37)) 38 39arm_ss.add(when: 'TARGET_AARCH64', if_true: files( 40 'cpu64.c', 41 'translate-a64.c', 42 'translate-sve.c', 43 'translate-sme.c', 44 'helper-a64.c', 45 'mte_helper.c', 46 'pauth_helper.c', 47 'sme_helper.c', 48 'sve_helper.c', 49)) 50 51arm_softmmu_ss.add(files( 52 'psci.c', 53)) 54