2023-09-14 21:57:17 +03:00
|
|
|
common_ss.add(when: 'CONFIG_TCG', if_true: files(
|
|
|
|
'cpu-exec-common.c',
|
|
|
|
))
|
2024-01-24 13:16:31 +03:00
|
|
|
tcg_specific_ss = ss.source_set()
|
|
|
|
tcg_specific_ss.add(files(
|
2021-02-04 19:39:24 +03:00
|
|
|
'tcg-all.c',
|
2019-08-18 15:13:08 +03:00
|
|
|
'cpu-exec.c',
|
2022-09-20 08:17:44 +03:00
|
|
|
'tb-maint.c',
|
2019-08-18 15:13:08 +03:00
|
|
|
'tcg-runtime-gvec.c',
|
|
|
|
'tcg-runtime.c',
|
|
|
|
'translate-all.c',
|
|
|
|
'translator.c',
|
|
|
|
))
|
2024-01-24 13:16:31 +03:00
|
|
|
tcg_specific_ss.add(when: 'CONFIG_USER_ONLY', if_true: files('user-exec.c'))
|
|
|
|
tcg_specific_ss.add(when: 'CONFIG_SYSTEM_ONLY', if_false: files('user-exec-stub.c'))
|
2023-08-30 13:20:53 +03:00
|
|
|
if get_option('plugins')
|
2024-01-24 13:16:31 +03:00
|
|
|
tcg_specific_ss.add(files('plugin-gen.c'))
|
2023-08-30 13:20:53 +03:00
|
|
|
endif
|
2024-01-24 13:16:31 +03:00
|
|
|
specific_ss.add_all(when: 'CONFIG_TCG', if_true: tcg_specific_ss)
|
2019-08-18 15:13:08 +03:00
|
|
|
|
2023-06-13 16:33:46 +03:00
|
|
|
specific_ss.add(when: ['CONFIG_SYSTEM_ONLY', 'CONFIG_TCG'], if_true: files(
|
2020-10-15 17:32:15 +03:00
|
|
|
'cputlb.c',
|
2024-01-10 00:53:26 +03:00
|
|
|
'watchpoint.c',
|
2023-09-14 21:57:15 +03:00
|
|
|
))
|
|
|
|
|
|
|
|
system_ss.add(when: ['CONFIG_TCG'], if_true: files(
|
2023-09-14 21:57:16 +03:00
|
|
|
'icount-common.c',
|
2022-12-19 20:09:40 +03:00
|
|
|
'monitor.c',
|
2021-06-24 13:38:31 +03:00
|
|
|
))
|
|
|
|
|
2023-06-13 16:33:46 +03:00
|
|
|
tcg_module_ss.add(when: ['CONFIG_SYSTEM_ONLY', 'CONFIG_TCG'], if_true: files(
|
2021-02-04 19:39:25 +03:00
|
|
|
'tcg-accel-ops.c',
|
|
|
|
'tcg-accel-ops-mttcg.c',
|
|
|
|
'tcg-accel-ops-icount.c',
|
2021-06-24 13:38:31 +03:00
|
|
|
'tcg-accel-ops-rr.c',
|
2020-10-15 17:32:15 +03:00
|
|
|
))
|