mirror of https://github.com/xemu-project/xemu.git
target/arm: Use cpu_env in cpu_untagged_addr
In a completely artifical memset benchmark object_dynamic_cast_assert dominates the profile, even above guest address resolution and the underlying host memset. Signed-off-by: Richard Henderson <richard.henderson@linaro.org> Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org> Message-id: 20240702154911.1667418-1-richard.henderson@linaro.org Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
This commit is contained in:
parent
7b11e7cf73
commit
efceb7d2bd
|
@ -3354,8 +3354,8 @@ extern const uint64_t pred_esz_masks[5];
|
||||||
*/
|
*/
|
||||||
static inline target_ulong cpu_untagged_addr(CPUState *cs, target_ulong x)
|
static inline target_ulong cpu_untagged_addr(CPUState *cs, target_ulong x)
|
||||||
{
|
{
|
||||||
ARMCPU *cpu = ARM_CPU(cs);
|
CPUARMState *env = cpu_env(cs);
|
||||||
if (cpu->env.tagged_addr_enable) {
|
if (env->tagged_addr_enable) {
|
||||||
/*
|
/*
|
||||||
* TBI is enabled for userspace but not kernelspace addresses.
|
* TBI is enabled for userspace but not kernelspace addresses.
|
||||||
* Only clear the tag if bit 55 is clear.
|
* Only clear the tag if bit 55 is clear.
|
||||||
|
|
Loading…
Reference in New Issue