mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-07 01:33:56 -06:00

We don't need to maintain 2 sets of decodetree definitions. Merge them into a single file. Signed-off-by: Philippe Mathieu-Daudé <f4bug@amsat.org> Message-Id: <20210801234202.3167676-4-f4bug@amsat.org> Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
33 lines
714 B
Meson
33 lines
714 B
Meson
gen = [
|
|
decodetree.process('rel6.decode', extra_args: ['--decode=decode_isa_rel6']),
|
|
decodetree.process('msa.decode', extra_args: '--decode=decode_ase_msa'),
|
|
decodetree.process('tx79.decode', extra_args: '--static-decode=decode_tx79'),
|
|
]
|
|
|
|
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',
|
|
))
|
|
mips_ss.add(when: 'TARGET_MIPS64', if_true: files(
|
|
'tx79_translate.c',
|
|
), if_false: files(
|
|
'mxu_translate.c',
|
|
))
|
|
|
|
if have_user
|
|
subdir('user')
|
|
endif
|
|
if have_system
|
|
subdir('sysemu')
|
|
endif
|