a2b0a27d33
To ease maintenance, move all TCG specific files under the tcg/ sub-directory. Adapt the Meson machinery. The following prototypes: - mips_tcg_init() - mips_cpu_do_unaligned_access() - mips_cpu_do_transaction_failed() can now be restricted to the "tcg-internal.h" header. Reviewed-by: Richard Henderson <richard.henderson@linaro.org> Signed-off-by: Philippe Mathieu-Daudé <f4bug@amsat.org> Message-Id: <20210428170410.479308-29-f4bug@amsat.org>
36 lines
900 B
Meson
36 lines
900 B
Meson
gen = [
|
|
decodetree.process('mips32r6.decode', extra_args: '--static-decode=decode_mips32r6'),
|
|
decodetree.process('mips64r6.decode', extra_args: '--static-decode=decode_mips64r6'),
|
|
decodetree.process('msa32.decode', extra_args: '--static-decode=decode_msa32'),
|
|
decodetree.process('msa64.decode', extra_args: '--static-decode=decode_msa64'),
|
|
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
|