diff options
author | Thomas Huth | 2020-05-04 19:24:45 +0200 |
---|---|---|
committer | Peter Maydell | 2020-05-11 12:45:59 +0200 |
commit | 5fda95041d7237ab35733ceb66e0cb89f6107169 (patch) | |
tree | 79bef294fc7fb0bb2bff83712df6fc59a015d377 /target/arm/cpu.h | |
parent | target/arm/kvm: Inline set_feature() calls (diff) | |
download | qemu-5fda95041d7237ab35733ceb66e0cb89f6107169.tar.gz qemu-5fda95041d7237ab35733ceb66e0cb89f6107169.tar.xz qemu-5fda95041d7237ab35733ceb66e0cb89f6107169.zip |
target/arm: Make set_feature() available for other files
Move the common set_feature() and unset_feature() functions
from cpu.c and cpu64.c to cpu.h.
Suggested-by: Peter Maydell <peter.maydell@linaro.org>
Signed-off-by: Thomas Huth <thuth@redhat.com>
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Reviewed-by: Eric Auger <eric.auger@redhat.com>
Signed-off-by: Philippe Mathieu-Daudé <philmd@redhat.com>
Message-id: 20200504172448.9402-3-philmd@redhat.com
Message-ID: <20190921150420.30743-2-thuth@redhat.com>
[PMD: Split Thomas's patch in two: set_feature, cpu_register]
Signed-off-by: Philippe Mathieu-Daudé <philmd@redhat.com>
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Diffstat (limited to 'target/arm/cpu.h')
-rw-r--r-- | target/arm/cpu.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/target/arm/cpu.h b/target/arm/cpu.h index 8608da6b6f..676f216b67 100644 --- a/target/arm/cpu.h +++ b/target/arm/cpu.h @@ -696,6 +696,16 @@ typedef struct CPUARMState { void *gicv3state; } CPUARMState; +static inline void set_feature(CPUARMState *env, int feature) +{ + env->features |= 1ULL << feature; +} + +static inline void unset_feature(CPUARMState *env, int feature) +{ + env->features &= ~(1ULL << feature); +} + /** * ARMELChangeHookFn: * type of a function which can be registered via arm_register_el_change_hook() |