* [Qemu-devel] [PATCH v2 1/2] gen-icount: add missing inline to gen_tb_end
2017-06-16 18:56 [Qemu-devel] [PATCH v2 0/2] cpu_env in gen-icount Emilio G. Cota
@ 2017-06-16 18:56 ` Emilio G. Cota
2017-06-16 18:56 ` [Qemu-devel] [PATCH v2 2/2] gen-icount: use tcg_ctx.tcg_env instead of cpu_env Emilio G. Cota
2017-06-26 21:07 ` [Qemu-devel] [PATCH v2 0/2] cpu_env in gen-icount Richard Henderson
2 siblings, 0 replies; 4+ messages in thread
From: Emilio G. Cota @ 2017-06-16 18:56 UTC (permalink / raw)
To: qemu-devel
Cc: Richard Henderson, Peter Maydell, Edgar E . Iglesias,
Paolo Bonzini, Eduardo Habkost, Michael Walle, Laurent Vivier,
Aurelien Jarno, Yongbok Kim, Anthony Green, Chris Wulff,
Marek Vasut, Stafford Horne, David Gibson, Alexander Graf,
Mark Cave-Ayland, Artyom Tarasenko, Bastian Koppelmann,
Guan Xuetao, Max Filippov, qemu-arm, qemu-ppc,
Lluís Vilanova
Reviewed-by: Richard Henderson <rth@twiddle.net>
Signed-off-by: Emilio G. Cota <cota@braap.org>
---
include/exec/gen-icount.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/include/exec/gen-icount.h b/include/exec/gen-icount.h
index 62d462e..547c979 100644
--- a/include/exec/gen-icount.h
+++ b/include/exec/gen-icount.h
@@ -44,7 +44,7 @@ static inline void gen_tb_start(TranslationBlock *tb)
tcg_temp_free_i32(count);
}
-static void gen_tb_end(TranslationBlock *tb, int num_insns)
+static inline void gen_tb_end(TranslationBlock *tb, int num_insns)
{
if (tb->cflags & CF_USE_ICOUNT) {
/* Update the num_insn immediate parameter now that we know
--
2.7.4
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [Qemu-devel] [PATCH v2 2/2] gen-icount: use tcg_ctx.tcg_env instead of cpu_env
2017-06-16 18:56 [Qemu-devel] [PATCH v2 0/2] cpu_env in gen-icount Emilio G. Cota
2017-06-16 18:56 ` [Qemu-devel] [PATCH v2 1/2] gen-icount: add missing inline to gen_tb_end Emilio G. Cota
@ 2017-06-16 18:56 ` Emilio G. Cota
2017-06-26 21:07 ` [Qemu-devel] [PATCH v2 0/2] cpu_env in gen-icount Richard Henderson
2 siblings, 0 replies; 4+ messages in thread
From: Emilio G. Cota @ 2017-06-16 18:56 UTC (permalink / raw)
To: qemu-devel
Cc: Richard Henderson, Peter Maydell, Edgar E . Iglesias,
Paolo Bonzini, Eduardo Habkost, Michael Walle, Laurent Vivier,
Aurelien Jarno, Yongbok Kim, Anthony Green, Chris Wulff,
Marek Vasut, Stafford Horne, David Gibson, Alexander Graf,
Mark Cave-Ayland, Artyom Tarasenko, Bastian Koppelmann,
Guan Xuetao, Max Filippov, qemu-arm, qemu-ppc,
Lluís Vilanova
We are relying on cpu_env being defined as a global, yet most
targets (i.e. all but arm/a64) have it defined as a local variable.
Luckily all of them use the same "cpu_env" name, but really
compilation shouldn't break if the name of that local variable
changed.
Fix it by using tcg_ctx.tcg_env, which all targets set in their
translate_init function. This change also helps paving the way
for the upcoming "translation loop common to all targets" work.
Signed-off-by: Emilio G. Cota <cota@braap.org>
---
include/exec/gen-icount.h | 10 ++++++----
1 file changed, 6 insertions(+), 4 deletions(-)
diff --git a/include/exec/gen-icount.h b/include/exec/gen-icount.h
index 547c979..9b3cb14 100644
--- a/include/exec/gen-icount.h
+++ b/include/exec/gen-icount.h
@@ -19,7 +19,7 @@ static inline void gen_tb_start(TranslationBlock *tb)
count = tcg_temp_new_i32();
}
- tcg_gen_ld_i32(count, cpu_env,
+ tcg_gen_ld_i32(count, tcg_ctx.tcg_env,
-ENV_OFFSET + offsetof(CPUState, icount_decr.u32));
if (tb->cflags & CF_USE_ICOUNT) {
@@ -37,7 +37,7 @@ static inline void gen_tb_start(TranslationBlock *tb)
tcg_gen_brcondi_i32(TCG_COND_LT, count, 0, exitreq_label);
if (tb->cflags & CF_USE_ICOUNT) {
- tcg_gen_st16_i32(count, cpu_env,
+ tcg_gen_st16_i32(count, tcg_ctx.tcg_env,
-ENV_OFFSET + offsetof(CPUState, icount_decr.u16.low));
}
@@ -62,14 +62,16 @@ static inline void gen_tb_end(TranslationBlock *tb, int num_insns)
static inline void gen_io_start(void)
{
TCGv_i32 tmp = tcg_const_i32(1);
- tcg_gen_st_i32(tmp, cpu_env, -ENV_OFFSET + offsetof(CPUState, can_do_io));
+ tcg_gen_st_i32(tmp, tcg_ctx.tcg_env,
+ -ENV_OFFSET + offsetof(CPUState, can_do_io));
tcg_temp_free_i32(tmp);
}
static inline void gen_io_end(void)
{
TCGv_i32 tmp = tcg_const_i32(0);
- tcg_gen_st_i32(tmp, cpu_env, -ENV_OFFSET + offsetof(CPUState, can_do_io));
+ tcg_gen_st_i32(tmp, tcg_ctx.tcg_env,
+ -ENV_OFFSET + offsetof(CPUState, can_do_io));
tcg_temp_free_i32(tmp);
}
--
2.7.4
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [Qemu-devel] [PATCH v2 0/2] cpu_env in gen-icount
2017-06-16 18:56 [Qemu-devel] [PATCH v2 0/2] cpu_env in gen-icount Emilio G. Cota
2017-06-16 18:56 ` [Qemu-devel] [PATCH v2 1/2] gen-icount: add missing inline to gen_tb_end Emilio G. Cota
2017-06-16 18:56 ` [Qemu-devel] [PATCH v2 2/2] gen-icount: use tcg_ctx.tcg_env instead of cpu_env Emilio G. Cota
@ 2017-06-26 21:07 ` Richard Henderson
2 siblings, 0 replies; 4+ messages in thread
From: Richard Henderson @ 2017-06-26 21:07 UTC (permalink / raw)
To: Emilio G. Cota, qemu-devel
Cc: Peter Maydell, Edgar E . Iglesias, Paolo Bonzini, Eduardo Habkost,
Michael Walle, Laurent Vivier, Aurelien Jarno, Yongbok Kim,
Anthony Green, Chris Wulff, Marek Vasut, Stafford Horne,
David Gibson, Alexander Graf, Mark Cave-Ayland, Artyom Tarasenko,
Bastian Koppelmann, Guan Xuetao, Max Filippov, qemu-arm, qemu-ppc,
Lluís Vilanova
On 06/16/2017 11:56 AM, Emilio G. Cota wrote:
> v1: https://lists.gnu.org/archive/html/qemu-devel/2017-06/msg03771.html
>
> Changes from v1:
>
> - Use tcg_ctx.tcg_env instead of passing cpu_env around as suggested
> by Richard.
> - Added Richard's R-b tag to patch 1.
Applied to the tcg queue.
r~
^ permalink raw reply [flat|nested] 4+ messages in thread