f5cc5a5c16
i386 is the first user of AccelCPUClass, allowing to split
cpu.c into:
cpu.c cpuid and common x86 cpu functionality
host-cpu.c host x86 cpu functions and "host" cpu type
kvm/kvm-cpu.c KVM x86 AccelCPUClass
hvf/hvf-cpu.c HVF x86 AccelCPUClass
tcg/tcg-cpu.c TCG x86 AccelCPUClass
Signed-off-by: Claudio Fontana <cfontana@suse.de>
Reviewed-by: Alex Bennée <alex.bennee@linaro.org>
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
[claudio]:
Rebased on commit b8184135
("target/i386: allow modifying TCG phys-addr-bits")
Signed-off-by: Claudio Fontana <cfontana@suse.de>
Message-Id: <20210322132800.7470-5-cfontana@suse.de>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
15 lines
253 B
Meson
15 lines
253 B
Meson
i386_softmmu_ss.add(when: [hvf, 'CONFIG_HVF'], if_true: files(
|
|
'hvf.c',
|
|
'hvf-accel-ops.c',
|
|
'x86.c',
|
|
'x86_cpuid.c',
|
|
'x86_decode.c',
|
|
'x86_descr.c',
|
|
'x86_emu.c',
|
|
'x86_flags.c',
|
|
'x86_mmu.c',
|
|
'x86_task.c',
|
|
'x86hvf.c',
|
|
'hvf-cpu.c',
|
|
))
|