diff options
author | Andreas Färber <afaerber@suse.de> | 2013-05-10 16:34:06 +0200 |
---|---|---|
committer | Andreas Färber <afaerber@suse.de> | 2013-07-09 21:20:28 +0200 |
commit | 6e42be7cd10260fd3a006d94f6c870692bf7a2c0 (patch) | |
tree | 75a590145a887c9d8424fd100d23e985ce2338ae /target-unicore32/cpu-qom.h | |
parent | 6291ad77d7c57dfc52a6a938d1a77ec3ec3ad16c (diff) | |
download | qemu-6e42be7cd10260fd3a006d94f6c870692bf7a2c0.zip |
cpu: Drop unnecessary dynamic casts in *_env_get_cpu()
A transition from CPUFooState to FooCPU can be considered safe,
just like FooCPU::env access in the opposite direction.
The only benefit of the FOO_CPU() casts would be protection against
bogus CPUFooState pointers, but then surrounding code would likely
break, too.
This should slightly improve interrupt etc. performance when going from
CPUFooState to FooCPU.
For any additional CPU() casts see 3556c233d931ad5ffa46a35cb25cfc057732ebb8
(qom: allow turning cast debugging off).
Reported-by: Anthony Liguori <aliguori@us.ibm.com>
Acked-by: Richard Henderson <rth@twiddle.net>
Signed-off-by: Andreas Färber <afaerber@suse.de>
Diffstat (limited to 'target-unicore32/cpu-qom.h')
-rw-r--r-- | target-unicore32/cpu-qom.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/target-unicore32/cpu-qom.h b/target-unicore32/cpu-qom.h index 7eec4481c2..350d48034c 100644 --- a/target-unicore32/cpu-qom.h +++ b/target-unicore32/cpu-qom.h @@ -53,7 +53,7 @@ typedef struct UniCore32CPU { static inline UniCore32CPU *uc32_env_get_cpu(CPUUniCore32State *env) { - return UNICORE32_CPU(container_of(env, UniCore32CPU, env)); + return container_of(env, UniCore32CPU, env); } #define ENV_GET_CPU(e) CPU(uc32_env_get_cpu(e)) |