[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH v2 23/27] target/s390x: Remove PER check from use_goto_tb
From: |
Richard Henderson |
Subject: |
[PATCH v2 23/27] target/s390x: Remove PER check from use_goto_tb |
Date: |
Sun, 11 Dec 2022 09:27:58 -0600 |
While it is common for the PC update to happen in the
shadow of a goto_tb, it is not required to be there.
By moving it before the goto_tb, we can also place the
call to helper_per_branch there, and then afterward
chain to the next tb.
Reviewed-by: Ilya Leoshkevich <iii@linux.ibm.com>
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
---
target/s390x/tcg/translate.c | 10 ++++------
1 file changed, 4 insertions(+), 6 deletions(-)
diff --git a/target/s390x/tcg/translate.c b/target/s390x/tcg/translate.c
index 6006db3db2..268de1359b 100644
--- a/target/s390x/tcg/translate.c
+++ b/target/s390x/tcg/translate.c
@@ -654,9 +654,6 @@ static void gen_op_calc_cc(DisasContext *s)
static bool use_goto_tb(DisasContext *s, uint64_t dest)
{
- if (per_enabled(s)) {
- return false;
- }
return translator_use_goto_tb(&s->base, dest);
}
@@ -1157,15 +1154,16 @@ static DisasJumpType help_goto_direct(DisasContext *s,
int64_t disp)
per_branch_disp(s, disp);
return DISAS_NEXT;
}
+
+ update_psw_addr_disp(s, disp);
+ per_branch_dest(s, psw_addr);
+
if (use_goto_tb(s, s->base.pc_next + disp)) {
update_cc_op(s);
tcg_gen_goto_tb(0);
- update_psw_addr_disp(s, disp);
tcg_gen_exit_tb(s->base.tb, 0);
return DISAS_NORETURN;
} else {
- update_psw_addr_disp(s, disp);
- per_branch_dest(s, psw_addr);
return DISAS_PC_UPDATED;
}
}
--
2.34.1
- [PATCH v2 15/27] target/s390x: Add disp argument to update_psw_addr, (continued)
- [PATCH v2 15/27] target/s390x: Add disp argument to update_psw_addr, Richard Henderson, 2022/12/11
- [PATCH v2 09/27] target/s390x: Remove pc argument to pc_to_link_into, Richard Henderson, 2022/12/11
- [PATCH v2 17/27] target/s390x: Introduce per_enabled, Richard Henderson, 2022/12/11
- [PATCH v2 08/27] target/s390x: Introduce gen_psw_addr_disp, Richard Henderson, 2022/12/11
- [PATCH v2 10/27] target/s390x: Use gen_psw_addr_disp in pc_to_link_info, Richard Henderson, 2022/12/11
- [PATCH v2 12/27] target/s390x: Use gen_psw_addr_disp in op_sam, Richard Henderson, 2022/12/11
- [PATCH v2 19/27] target/s390x: Introduce help_goto_indirect, Richard Henderson, 2022/12/11
- [PATCH v2 23/27] target/s390x: Remove PER check from use_goto_tb,
Richard Henderson <=
- [PATCH v2 25/27] tests/tcg/s390x: Add per.S, Richard Henderson, 2022/12/11
- [PATCH v2 24/27] target/s390x: Fix successful-branch PER events, Richard Henderson, 2022/12/11
- [PATCH v2 26/27] target/s390x: Pass original r2 register to BCR, Richard Henderson, 2022/12/11
- [PATCH v2 21/27] target/s390x: Simplify help_branch, Richard Henderson, 2022/12/11
- [PATCH v2 20/27] target/s390x: Split per_branch, Richard Henderson, 2022/12/11
- [PATCH v2 22/27] target/s390x: Split per_breaking_event from per_branch_*, Richard Henderson, 2022/12/11
- [PATCH v2 27/27] target/s390x: Enable TARGET_TB_PCREL, Richard Henderson, 2022/12/11