summaryrefslogtreecommitdiffstats
path: root/target
diff options
context:
space:
mode:
authorRichard Henderson2019-03-23 03:38:33 +0100
committerRichard Henderson2019-06-10 16:03:42 +0200
commit06887771bda2a297f2fb669522166a97d67e2ad9 (patch)
tree1ca87b55813a6349a500a9878779f8ae4018e874 /target
parenttarget/sparc: Use env_cpu, env_archcpu (diff)
downloadqemu-06887771bda2a297f2fb669522166a97d67e2ad9.tar.gz
qemu-06887771bda2a297f2fb669522166a97d67e2ad9.tar.xz
qemu-06887771bda2a297f2fb669522166a97d67e2ad9.zip
target/tilegx: Use env_cpu
Cleanup in the boilerplate that each target must define. Replace tilegx_env_get_cpu with env_archcpu. The combination CPU(tilegx_env_get_cpu) should have used ENV_GET_CPU to begin; use env_cpu now. Reviewed-by: Alistair Francis <alistair.francis@wdc.com> Reviewed-by: Peter Maydell <peter.maydell@linaro.org> Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
Diffstat (limited to 'target')
-rw-r--r--target/tilegx/cpu.h5
-rw-r--r--target/tilegx/helper.c2
2 files changed, 1 insertions, 6 deletions
diff --git a/target/tilegx/cpu.h b/target/tilegx/cpu.h
index 135df63523..7f8fe7c513 100644
--- a/target/tilegx/cpu.h
+++ b/target/tilegx/cpu.h
@@ -138,11 +138,6 @@ typedef struct TileGXCPU {
CPUTLGState env;
} TileGXCPU;
-static inline TileGXCPU *tilegx_env_get_cpu(CPUTLGState *env)
-{
- return container_of(env, TileGXCPU, env);
-}
-
#define ENV_OFFSET offsetof(TileGXCPU, env)
/* TILE-Gx memory attributes */
diff --git a/target/tilegx/helper.c b/target/tilegx/helper.c
index 4964bb9111..a57a679825 100644
--- a/target/tilegx/helper.c
+++ b/target/tilegx/helper.c
@@ -28,7 +28,7 @@
void helper_exception(CPUTLGState *env, uint32_t excp)
{
- CPUState *cs = CPU(tilegx_env_get_cpu(env));
+ CPUState *cs = env_cpu(env);
cs->exception_index = excp;
cpu_loop_exit(cs);