2021-04-13 11:47:10 +03:00
|
|
|
gen = [
|
2021-08-01 21:29:29 +03:00
|
|
|
decodetree.process('rel6.decode', extra_args: ['--decode=decode_isa_rel6']),
|
2021-05-29 21:06:13 +03:00
|
|
|
decodetree.process('msa.decode', extra_args: '--decode=decode_ase_msa'),
|
2021-04-13 11:47:10 +03:00
|
|
|
decodetree.process('tx79.decode', extra_args: '--static-decode=decode_tx79'),
|
2021-07-28 14:18:48 +03:00
|
|
|
decodetree.process('vr54xx.decode', extra_args: '--decode=decode_ext_vr54xx'),
|
2021-04-13 11:47:10 +03:00
|
|
|
]
|
|
|
|
|
|
|
|
mips_ss.add(gen)
|
|
|
|
mips_ss.add(files(
|
|
|
|
'dsp_helper.c',
|
|
|
|
'exception.c',
|
|
|
|
'fpu_helper.c',
|
|
|
|
'ldst_helper.c',
|
|
|
|
'lmmi_helper.c',
|
|
|
|
'msa_helper.c',
|
|
|
|
'msa_translate.c',
|
|
|
|
'op_helper.c',
|
|
|
|
'rel6_translate.c',
|
|
|
|
'translate.c',
|
|
|
|
'translate_addr_const.c',
|
|
|
|
'txx9_translate.c',
|
2020-11-16 18:41:05 +03:00
|
|
|
'vr54xx_helper.c',
|
2021-07-28 14:18:48 +03:00
|
|
|
'vr54xx_translate.c',
|
2021-04-13 11:47:10 +03:00
|
|
|
))
|
|
|
|
mips_ss.add(when: 'TARGET_MIPS64', if_true: files(
|
|
|
|
'tx79_translate.c',
|
|
|
|
), if_false: files(
|
|
|
|
'mxu_translate.c',
|
|
|
|
))
|
|
|
|
|
2021-04-13 12:51:53 +03:00
|
|
|
if have_system
|
|
|
|
subdir('sysemu')
|
|
|
|
endif
|