aboutsummaryrefslogtreecommitdiff
path: root/target/mips/meson.build
blob: a3c372418844f50e6e2b08a9f80ac3d63b5e98d1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
gen = [
  decodetree.process('msa32.decode', extra_args: '--static-decode=decode_msa32'),
]

mips_ss = ss.source_set()
mips_ss.add(gen)
mips_ss.add(files(
  'cpu.c',
  'gdbstub.c',
))
mips_ss.add(when: 'CONFIG_TCG', if_true: files(
  'dsp_helper.c',
  'fpu_helper.c',
  'lmmi_helper.c',
  'msa_helper.c',
  'msa_translate.c',
  'op_helper.c',
  'tlb_helper.c',
  'translate.c',
))
mips_ss.add(when: 'CONFIG_KVM', if_true: files('kvm.c'))

mips_softmmu_ss = ss.source_set()
mips_softmmu_ss.add(files(
  'addr.c',
  'cp0_timer.c',
  'machine.c',
  'mips-semi.c',
))
mips_softmmu_ss.add(when: 'CONFIG_TCG', if_true: files(
  'cp0_helper.c',
))

target_arch += {'mips': mips_ss}
target_softmmu_arch += {'mips': mips_softmmu_ss}