63073574e8
Move APIC related code split in cpu-sysemu.c and monitor.c to cpu-apic.c. Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org> Reviewed-by: Richard Henderson <richard.henderson@linaro.org> Reviewed-by: Zhao Liu <zhao1.liu@intel.com> Message-Id: <20240321154838.95771-4-philmd@linaro.org>
37 lines
852 B
Meson
37 lines
852 B
Meson
i386_ss = ss.source_set()
|
|
i386_ss.add(files(
|
|
'cpu.c',
|
|
'gdbstub.c',
|
|
'helper.c',
|
|
'xsave_helper.c',
|
|
'cpu-dump.c',
|
|
))
|
|
i386_ss.add(when: 'CONFIG_SEV', if_true: files('host-cpu.c', 'confidential-guest.c'))
|
|
|
|
# x86 cpu type
|
|
i386_ss.add(when: 'CONFIG_KVM', if_true: files('host-cpu.c'))
|
|
i386_ss.add(when: 'CONFIG_HVF', if_true: files('host-cpu.c'))
|
|
|
|
i386_system_ss = ss.source_set()
|
|
i386_system_ss.add(files(
|
|
'arch_dump.c',
|
|
'arch_memory_mapping.c',
|
|
'machine.c',
|
|
'monitor.c',
|
|
'cpu-apic.c',
|
|
'cpu-sysemu.c',
|
|
))
|
|
i386_system_ss.add(when: 'CONFIG_SEV', if_true: files('sev.c'), if_false: files('sev-sysemu-stub.c'))
|
|
|
|
i386_user_ss = ss.source_set()
|
|
|
|
subdir('kvm')
|
|
subdir('whpx')
|
|
subdir('nvmm')
|
|
subdir('hvf')
|
|
subdir('tcg')
|
|
|
|
target_arch += {'i386': i386_ss}
|
|
target_system_arch += {'i386': i386_system_ss}
|
|
target_user_arch += {'i386': i386_user_ss}
|