diff options
author | Philippe Mathieu-Daudé | 2021-05-17 12:51:24 +0200 |
---|---|---|
committer | Richard Henderson | 2021-05-27 00:33:59 +0200 |
commit | cdba7e2f497d3922a6934b7504925483b32c0a74 (patch) | |
tree | b9602f4e2f91c6f6dc4197ba36b5de047da00fb7 /include/hw/core | |
parent | cpu: Un-inline cpu_get_phys_page_debug and cpu_asidx_from_attrs (diff) | |
download | qemu-cdba7e2f497d3922a6934b7504925483b32c0a74.tar.gz qemu-cdba7e2f497d3922a6934b7504925483b32c0a74.tar.xz qemu-cdba7e2f497d3922a6934b7504925483b32c0a74.zip |
cpu: Introduce cpu_virtio_is_big_endian()
Introduce the cpu_virtio_is_big_endian() generic helper to avoid
calling CPUClass internal virtio_is_big_endian() one.
Similarly to commit bf7663c4bd8 ("cpu: introduce
CPUClass::virtio_is_big_endian()"), we keep 'virtio' in the method
name to hint this handler shouldn't be called anywhere but from the
virtio code.
Signed-off-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Message-Id: <20210517105140.1062037-8-f4bug@amsat.org>
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
Diffstat (limited to 'include/hw/core')
-rw-r--r-- | include/hw/core/cpu.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/include/hw/core/cpu.h b/include/hw/core/cpu.h index df49528785..d96ff4dace 100644 --- a/include/hw/core/cpu.h +++ b/include/hw/core/cpu.h @@ -610,6 +610,15 @@ hwaddr cpu_get_phys_page_debug(CPUState *cpu, vaddr addr); */ int cpu_asidx_from_attrs(CPUState *cpu, MemTxAttrs attrs); +/** + * cpu_virtio_is_big_endian: + * @cpu: CPU + + * Returns %true if a CPU which supports runtime configurable endianness + * is currently big-endian. + */ +bool cpu_virtio_is_big_endian(CPUState *cpu); + #endif /* CONFIG_USER_ONLY */ /** |