diff options
author | Philippe Mathieu-Daudé <philmd@linaro.org> | 2025-04-17 17:59:35 +0200 |
---|---|---|
committer | Philippe Mathieu-Daudé <philmd@linaro.org> | 2025-04-25 17:09:58 +0200 |
commit | 2b7ae6e0f645f3c3676152f3aa7b8c50a091c486 (patch) | |
tree | c25d7b481da1b7597e9f619dbfc0239c9ef1f785 | |
parent | 0c9d76f519c0f67506d276c0ee5637bac0b40121 (diff) | |
download | qemu-2b7ae6e0f645f3c3676152f3aa7b8c50a091c486.zip qemu-2b7ae6e0f645f3c3676152f3aa7b8c50a091c486.tar.gz qemu-2b7ae6e0f645f3c3676152f3aa7b8c50a091c486.tar.bz2 |
qemu: Introduce target_cpu_type()
Introduce the target_cpu_type() helper to access the
CPU_RESOLVING_TYPE target-specific definition from
target-agnostic code.
Reviewed-by: Pierrick Bouvier <pierrick.bouvier@linaro.org>
Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Message-Id: <20250417165430.58213-2-philmd@linaro.org>
-rw-r--r-- | MAINTAINERS | 2 | ||||
-rw-r--r-- | include/qemu/target-info.h | 19 | ||||
-rw-r--r-- | meson.build | 2 | ||||
-rw-r--r-- | target-info-stub.c | 16 |
4 files changed, 39 insertions, 0 deletions
diff --git a/MAINTAINERS b/MAINTAINERS index d82d962..28b1e9b 100644 --- a/MAINTAINERS +++ b/MAINTAINERS @@ -496,6 +496,7 @@ F: include/exec/cpu*.h F: include/exec/exec-all.h F: include/exec/target_long.h F: include/qemu/accel.h +F: include/qemu/target-info*.h F: include/system/accel-*.h F: include/system/cpus.h F: include/accel/accel-cpu-target.h @@ -504,6 +505,7 @@ F: accel/Makefile.objs F: accel/stubs/Makefile.objs F: cpu-common.c F: cpu-target.c +F: target-info*.c F: system/cpus.c Apple Silicon HVF CPUs diff --git a/include/qemu/target-info.h b/include/qemu/target-info.h new file mode 100644 index 0000000..b4cc488 --- /dev/null +++ b/include/qemu/target-info.h @@ -0,0 +1,19 @@ +/* + * QEMU target info API + * + * Copyright (c) Linaro + * + * SPDX-License-Identifier: GPL-2.0-or-later + */ + +#ifndef QEMU_TARGET_INFO_H +#define QEMU_TARGET_INFO_H + +/** + * target_cpu_type: + * + * Returns: target CPU base QOM type name (i.e. TYPE_X86_CPU). + */ +const char *target_cpu_type(void); + +#endif diff --git a/meson.build b/meson.build index c736a6f..185c2fb 100644 --- a/meson.build +++ b/meson.build @@ -3795,6 +3795,8 @@ endif common_ss.add(pagevary) specific_ss.add(files('page-target.c', 'page-vary-target.c')) +specific_ss.add(files('target-info-stub.c')) + subdir('backends') subdir('disas') subdir('migration') diff --git a/target-info-stub.c b/target-info-stub.c new file mode 100644 index 0000000..e5d2195 --- /dev/null +++ b/target-info-stub.c @@ -0,0 +1,16 @@ +/* + * QEMU target info stubs (target specific) + * + * Copyright (c) Linaro + * + * SPDX-License-Identifier: GPL-2.0-or-later + */ + +#include "qemu/osdep.h" +#include "qemu/target-info.h" +#include "cpu.h" + +const char *target_cpu_type(void) +{ + return CPU_RESOLVING_TYPE; +} |