2609ec2868
The watchpoint API is specific to TCG system emulation. Move it to a new compile unit. The inlined stubs are used for user-mode and non-TCG accelerators. Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org> Reviewed-by: Richard Henderson <richard.henderson@linaro.org> Message-Id: <20221209141254.68662-1-philmd@linaro.org>
40 lines
768 B
Meson
40 lines
768 B
Meson
specific_ss.add(when: 'CONFIG_SOFTMMU', if_true: [files(
|
|
'arch_init.c',
|
|
'ioport.c',
|
|
'memory.c',
|
|
'physmem.c',
|
|
'qtest.c',
|
|
'dirtylimit.c',
|
|
)])
|
|
|
|
specific_ss.add(when: ['CONFIG_SOFTMMU', 'CONFIG_TCG'], if_true: [files(
|
|
'icount.c',
|
|
'watchpoint.c',
|
|
)])
|
|
|
|
softmmu_ss.add(files(
|
|
'balloon.c',
|
|
'bootdevice.c',
|
|
'cpus.c',
|
|
'cpu-throttle.c',
|
|
'cpu-timers.c',
|
|
'datadir.c',
|
|
'dma-helpers.c',
|
|
'globals.c',
|
|
'memory_mapping.c',
|
|
'qdev-monitor.c',
|
|
'rtc.c',
|
|
'runstate-action.c',
|
|
'runstate-hmp-cmds.c',
|
|
'runstate.c',
|
|
'tpm-hmp-cmds.c',
|
|
'vl.c',
|
|
), sdl, libpmem, libdaxctl)
|
|
|
|
if have_tpm
|
|
softmmu_ss.add(files('tpm.c'))
|
|
endif
|
|
|
|
softmmu_ss.add(when: seccomp, if_true: files('qemu-seccomp.c'))
|
|
softmmu_ss.add(when: fdt, if_true: files('device_tree.c'))
|