Message ID | 20230621180607.1516336-6-richard.henderson@linaro.org |
---|---|
State | Superseded |
Headers | show |
Series | target/sparc: Use tcg_gen_lookup_and_goto_ptr | expand |
On 21/6/23 20:06, Richard Henderson wrote: > When resolving JUMP_PC, we know this is for a plain branch > with no other side effects. > > Signed-off-by: Richard Henderson <richard.henderson@linaro.org> > --- > target/sparc/translate.c | 6 +++--- > 1 file changed, 3 insertions(+), 3 deletions(-) Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org>
diff --git a/target/sparc/translate.c b/target/sparc/translate.c index d12f2ac423..bd3feed72e 100644 --- a/target/sparc/translate.c +++ b/target/sparc/translate.c @@ -941,7 +941,7 @@ static void flush_cond(DisasContext *dc) { if (dc->npc == JUMP_PC) { gen_generic_branch(dc); - dc->npc = DYNAMIC_PC; + dc->npc = DYNAMIC_PC_LOOKUP; } } @@ -951,7 +951,7 @@ static void save_npc(DisasContext *dc) switch (dc->npc) { case JUMP_PC: gen_generic_branch(dc); - dc->npc = DYNAMIC_PC; + dc->npc = DYNAMIC_PC_LOOKUP; break; case DYNAMIC_PC: case DYNAMIC_PC_LOOKUP: @@ -997,7 +997,7 @@ static void gen_mov_pc_npc(DisasContext *dc) case JUMP_PC: gen_generic_branch(dc); tcg_gen_mov_tl(cpu_pc, cpu_npc); - dc->pc = DYNAMIC_PC; + dc->pc = DYNAMIC_PC_LOOKUP; break; case DYNAMIC_PC: case DYNAMIC_PC_LOOKUP:
When resolving JUMP_PC, we know this is for a plain branch with no other side effects. Signed-off-by: Richard Henderson <richard.henderson@linaro.org> --- target/sparc/translate.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-)