diff options
author | Emilio G. Cota | 2017-07-13 00:26:40 +0200 |
---|---|---|
committer | Richard Henderson | 2017-10-24 22:53:42 +0200 |
commit | df2cce2968069526553d82331ce9817eaca6b03a (patch) | |
tree | bf892ab107f5095e8e85963b475bd65f3d8a674d /tcg | |
parent | gen-icount: fold exitreq_label into TCGContext (diff) | |
download | qemu-df2cce2968069526553d82331ce9817eaca6b03a.tar.gz qemu-df2cce2968069526553d82331ce9817eaca6b03a.tar.xz qemu-df2cce2968069526553d82331ce9817eaca6b03a.zip |
tcg: introduce **tcg_ctxs to keep track of all TCGContext's
Groundwork for supporting multiple TCG contexts.
Note that having n_tcg_ctxs is unnecessary. However, it is
convenient to have it, since it will simplify iterating over the
array: we'll have just a for loop instead of having to iterate
over a NULL-terminated array (which would require n+1 elems)
or having to check with ifdef's for usermode/softmmu.
Reviewed-by: Richard Henderson <rth@twiddle.net>
Signed-off-by: Emilio G. Cota <cota@braap.org>
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
Diffstat (limited to 'tcg')
-rw-r--r-- | tcg/tcg.c | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -118,6 +118,9 @@ static bool tcg_out_ldst_finalize(TCGContext *s); #define TCG_HIGHWATER 1024 +static TCGContext **tcg_ctxs; +static unsigned int n_tcg_ctxs; + static TCGRegSet tcg_target_available_regs[2]; static TCGRegSet tcg_target_call_clobber_regs; @@ -384,6 +387,8 @@ void tcg_context_init(TCGContext *s) } tcg_ctx = s; + tcg_ctxs = &tcg_ctx; + n_tcg_ctxs = 1; } /* |