1gen = [ 2 decodetree.process('mips32r6.decode', extra_args: '--static-decode=decode_mips32r6'), 3 decodetree.process('mips64r6.decode', extra_args: '--static-decode=decode_mips64r6'), 4 decodetree.process('msa.decode', extra_args: '--decode=decode_ase_msa'), 5 decodetree.process('tx79.decode', extra_args: '--static-decode=decode_tx79'), 6] 7 8mips_ss.add(gen) 9mips_ss.add(files( 10 'dsp_helper.c', 11 'exception.c', 12 'fpu_helper.c', 13 'ldst_helper.c', 14 'lmmi_helper.c', 15 'msa_helper.c', 16 'msa_translate.c', 17 'op_helper.c', 18 'rel6_translate.c', 19 'translate.c', 20 'translate_addr_const.c', 21 'txx9_translate.c', 22)) 23mips_ss.add(when: 'TARGET_MIPS64', if_true: files( 24 'tx79_translate.c', 25), if_false: files( 26 'mxu_translate.c', 27)) 28 29if have_user 30 subdir('user') 31endif 32if have_system 33 subdir('sysemu') 34endif 35