diff options
author | Richard Henderson <rth@twiddle.net> | 2013-03-28 05:37:52 +0000 |
---|---|---|
committer | Stefan Weil <sw@weilnetz.de> | 2013-04-11 19:58:21 +0200 |
commit | 7648746844a7775566ada1db1c117943aaf64b83 (patch) | |
tree | 2a13d28fe73c158929aff62792ac4219c32e356c /tci.c | |
parent | 03fc0548b70393b0c8d43703591a9e34fb8e3123 (diff) | |
download | qemu-7648746844a7775566ada1db1c117943aaf64b83.tar.gz qemu-7648746844a7775566ada1db1c117943aaf64b83.tar.bz2 qemu-7648746844a7775566ada1db1c117943aaf64b83.zip |
tci: Use a local variable for env
Since we have total conversion away from global AREG0, we do not
need a global variable named "env". Retain that name as the
function parameter inside the interpreter.
Signed-off-by: Richard Henderson <rth@twiddle.net>
Signed-off by: Stefan Weil <sw@weilnetz.de>
Diffstat (limited to 'tci.c')
-rw-r--r-- | tci.c | 8 |
1 files changed, 1 insertions, 7 deletions
@@ -51,11 +51,6 @@ typedef uint64_t (*helper_function)(tcg_target_ulong, tcg_target_ulong, tcg_target_ulong); #endif -/* TCI can optionally use a global register variable for env. */ -#if !defined(AREG0) -CPUArchState *env; -#endif - /* Targets which don't use GETPC also don't need tci_tb_ptr which makes them a little faster. */ #if defined(GETPC) @@ -438,11 +433,10 @@ static bool tci_compare64(uint64_t u0, uint64_t u1, TCGCond condition) } /* Interpret pseudo code in tb. */ -tcg_target_ulong tcg_qemu_tb_exec(CPUArchState *cpustate, uint8_t *tb_ptr) +tcg_target_ulong tcg_qemu_tb_exec(CPUArchState *env, uint8_t *tb_ptr) { tcg_target_ulong next_tb = 0; - env = cpustate; tci_reg[TCG_AREG0] = (tcg_target_ulong)env; assert(tb_ptr); |