mirror of
https://github.com/xemu-project/xemu.git
synced 2024-11-23 11:39:53 +00:00
b86f59c715
This will allow us to centralize the registration of the cpus.c module accelerator operations (in accel/accel-softmmu.c), and trigger it automatically using object hierarchy lookup from the new accel_init_interfaces() initialization step, depending just on which accelerators are available in the code. Rename all tcg-cpus.c, kvm-cpus.c, etc to tcg-accel-ops.c, kvm-accel-ops.c, etc, matching the object type names. Signed-off-by: Claudio Fontana <cfontana@suse.de> Message-Id: <20210204163931.7358-18-cfontana@suse.de> Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
23 lines
643 B
Meson
23 lines
643 B
Meson
tcg_ss = ss.source_set()
|
|
tcg_ss.add(files(
|
|
'tcg-all.c',
|
|
'cpu-exec-common.c',
|
|
'cpu-exec.c',
|
|
'tcg-runtime-gvec.c',
|
|
'tcg-runtime.c',
|
|
'translate-all.c',
|
|
'translator.c',
|
|
))
|
|
tcg_ss.add(when: 'CONFIG_USER_ONLY', if_true: files('user-exec.c'))
|
|
tcg_ss.add(when: 'CONFIG_SOFTMMU', if_false: files('user-exec-stub.c'))
|
|
tcg_ss.add(when: 'CONFIG_PLUGIN', if_true: [files('plugin-gen.c'), libdl])
|
|
specific_ss.add_all(when: 'CONFIG_TCG', if_true: tcg_ss)
|
|
|
|
specific_ss.add(when: ['CONFIG_SOFTMMU', 'CONFIG_TCG'], if_true: files(
|
|
'cputlb.c',
|
|
'tcg-accel-ops.c',
|
|
'tcg-accel-ops-mttcg.c',
|
|
'tcg-accel-ops-icount.c',
|
|
'tcg-accel-ops-rr.c'
|
|
))
|