diff options
| author | Richard Henderson <richard.henderson@linaro.org> | 2021-03-13 13:36:51 -0600 |
|---|---|---|
| committer | Richard Henderson <richard.henderson@linaro.org> | 2021-06-13 17:42:40 -0700 |
| commit | 42eb6dfcf135068aa6873e6e9f5f8afa77858914 (patch) | |
| tree | 7098d74f4bc234866ad2e733374c00dfdea70ddc /tcg/tcg.c | |
| parent | b7da02dad0f25928e688a5dce74a0f10fa120594 (diff) | |
| download | focaccia-qemu-42eb6dfcf135068aa6873e6e9f5f8afa77858914.tar.gz focaccia-qemu-42eb6dfcf135068aa6873e6e9f5f8afa77858914.zip | |
tcg: Move tcg_init_ctx and tcg_ctx from accel/tcg/
These variables belong to the jit side, not the user side. Since tcg_init_ctx is no longer used outside of tcg/, move the declaration to tcg-internal.h. Reviewed-by: Alex Bennée <alex.bennee@linaro.org> Reviewed-by: Luis Pires <luis.pires@eldorado.org.br> Suggested-by: Philippe Mathieu-Daudé <f4bug@amsat.org> Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
Diffstat (limited to 'tcg/tcg.c')
| -rw-r--r-- | tcg/tcg.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/tcg/tcg.c b/tcg/tcg.c index 4bb35b455b..81da553244 100644 --- a/tcg/tcg.c +++ b/tcg/tcg.c @@ -149,6 +149,9 @@ static bool tcg_target_const_match(int64_t val, TCGType type, int ct); static int tcg_out_ldst_finalize(TCGContext *s); #endif +TCGContext tcg_init_ctx; +__thread TCGContext *tcg_ctx; + TCGContext **tcg_ctxs; unsigned int tcg_cur_ctxs; unsigned int tcg_max_ctxs; |