meson.build (2897579982c3d53e3f808bf1e7cdc465ea0ea421) meson.build (21fb03be67fa63670796f7b5d7bcd1194e6a8154)
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('msa32.decode', extra_args: '--static-decode=decode_msa32'),
5 decodetree.process('msa64.decode', extra_args: '--static-decode=decode_msa64'),
6]
7
8mips_ss = ss.source_set()

--- 17 unchanged lines hidden (view full) ---

26))
27mips_ss.add(when: 'CONFIG_KVM', if_true: files('kvm.c'))
28
29mips_softmmu_ss = ss.source_set()
30mips_softmmu_ss.add(files(
31 'addr.c',
32 'cp0_timer.c',
33 'machine.c',
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('msa32.decode', extra_args: '--static-decode=decode_msa32'),
5 decodetree.process('msa64.decode', extra_args: '--static-decode=decode_msa64'),
6]
7
8mips_ss = ss.source_set()

--- 17 unchanged lines hidden (view full) ---

26))
27mips_ss.add(when: 'CONFIG_KVM', if_true: files('kvm.c'))
28
29mips_softmmu_ss = ss.source_set()
30mips_softmmu_ss.add(files(
31 'addr.c',
32 'cp0_timer.c',
33 'machine.c',
34 'mips-semi.c',
35))
36mips_softmmu_ss.add(when: 'CONFIG_TCG', if_true: files(
37 'cp0_helper.c',
34))
35mips_softmmu_ss.add(when: 'CONFIG_TCG', if_true: files(
36 'cp0_helper.c',
37 'mips-semi.c',
38))
39
40mips_ss.add_all(when: 'CONFIG_TCG', if_true: [mips_tcg_ss])
41
42target_arch += {'mips': mips_ss}
43target_softmmu_arch += {'mips': mips_softmmu_ss}
38))
39
40mips_ss.add_all(when: 'CONFIG_TCG', if_true: [mips_tcg_ss])
41
42target_arch += {'mips': mips_ss}
43target_softmmu_arch += {'mips': mips_softmmu_ss}