mirror of https://github.com/xemu-project/xemu.git
ppc: Don't generate dead code on unconditional branches
We are always generating the "else" case of the condition even when generating an unconditional branch that will never hit it. Signed-off-by: Benjamin Herrenschmidt <benh@kernel.crashing.org> Reviewed-by: Richard Henderson <rth@twiddle.net> Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
This commit is contained in:
parent
4f5d326046
commit
accc60c47c
|
@ -3480,8 +3480,10 @@ static inline void gen_bcond(DisasContext *ctx, int type)
|
||||||
} else {
|
} else {
|
||||||
gen_goto_tb(ctx, 0, li);
|
gen_goto_tb(ctx, 0, li);
|
||||||
}
|
}
|
||||||
|
if ((bo & 0x14) != 0x14) {
|
||||||
gen_set_label(l1);
|
gen_set_label(l1);
|
||||||
gen_goto_tb(ctx, 1, ctx->nip);
|
gen_goto_tb(ctx, 1, ctx->nip);
|
||||||
|
}
|
||||||
} else {
|
} else {
|
||||||
if (NARROW_MODE(ctx)) {
|
if (NARROW_MODE(ctx)) {
|
||||||
tcg_gen_andi_tl(cpu_nip, target, (uint32_t)~3);
|
tcg_gen_andi_tl(cpu_nip, target, (uint32_t)~3);
|
||||||
|
@ -3489,10 +3491,12 @@ static inline void gen_bcond(DisasContext *ctx, int type)
|
||||||
tcg_gen_andi_tl(cpu_nip, target, ~3);
|
tcg_gen_andi_tl(cpu_nip, target, ~3);
|
||||||
}
|
}
|
||||||
tcg_gen_exit_tb(0);
|
tcg_gen_exit_tb(0);
|
||||||
|
if ((bo & 0x14) != 0x14) {
|
||||||
gen_set_label(l1);
|
gen_set_label(l1);
|
||||||
gen_update_nip(ctx, ctx->nip);
|
gen_update_nip(ctx, ctx->nip);
|
||||||
tcg_gen_exit_tb(0);
|
tcg_gen_exit_tb(0);
|
||||||
}
|
}
|
||||||
|
}
|
||||||
if (type == BCOND_LR || type == BCOND_CTR || type == BCOND_TAR) {
|
if (type == BCOND_LR || type == BCOND_CTR || type == BCOND_TAR) {
|
||||||
tcg_temp_free(target);
|
tcg_temp_free(target);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue