[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH v5 2/4] target/s390x: Make translator stop before the end of a pa
From: |
Ilya Leoshkevich |
Subject: |
[PATCH v5 2/4] target/s390x: Make translator stop before the end of a page |
Date: |
Wed, 17 Aug 2022 17:05:04 +0200 |
Right now translator stops right *after* the end of a page, which
breaks reporting of fault locations when the last instruction of a
multi-insn translation block crosses a page boundary.
Signed-off-by: Ilya Leoshkevich <iii@linux.ibm.com>
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
---
target/s390x/tcg/translate.c | 15 +++++++++++----
1 file changed, 11 insertions(+), 4 deletions(-)
diff --git a/target/s390x/tcg/translate.c b/target/s390x/tcg/translate.c
index d4c0b9b3a2..1d2dddab1c 100644
--- a/target/s390x/tcg/translate.c
+++ b/target/s390x/tcg/translate.c
@@ -6609,6 +6609,14 @@ static void s390x_tr_insn_start(DisasContextBase
*dcbase, CPUState *cs)
dc->insn_start = tcg_last_op();
}
+static target_ulong get_next_pc(CPUS390XState *env, DisasContext *s,
+ uint64_t pc)
+{
+ uint64_t insn = ld_code2(env, s, pc);
+
+ return pc + get_ilen((insn >> 8) & 0xff);
+}
+
static void s390x_tr_translate_insn(DisasContextBase *dcbase, CPUState *cs)
{
CPUS390XState *env = cs->env_ptr;
@@ -6616,10 +6624,9 @@ static void s390x_tr_translate_insn(DisasContextBase
*dcbase, CPUState *cs)
dc->base.is_jmp = translate_one(env, dc);
if (dc->base.is_jmp == DISAS_NEXT) {
- uint64_t page_start;
-
- page_start = dc->base.pc_first & TARGET_PAGE_MASK;
- if (dc->base.pc_next - page_start >= TARGET_PAGE_SIZE || dc->ex_value)
{
+ if (!is_same_page(dcbase, dc->base.pc_next) ||
+ !is_same_page(dcbase, get_next_pc(env, dc, dc->base.pc_next)) ||
+ dc->ex_value) {
dc->base.is_jmp = DISAS_TOO_MANY;
}
}
--
2.37.1
- [PATCH v5 0/4] linux-user: Fix siginfo_t contents when jumping to non-readable pages, Ilya Leoshkevich, 2022/08/17
- [PATCH v5 3/4] target/i386: Make translator stop before the end of a page, Ilya Leoshkevich, 2022/08/17
- [PATCH v5 4/4] tests/tcg: Test siginfo_t contents when jumping to non-readable pages, Ilya Leoshkevich, 2022/08/17
- [PATCH v5 1/4] linux-user: Clear tb_jmp_cache on mprotect(), Ilya Leoshkevich, 2022/08/17
- [PATCH v5 2/4] target/s390x: Make translator stop before the end of a page,
Ilya Leoshkevich <=
- Re: [PATCH v5 0/4] linux-user: Fix siginfo_t contents when jumping to non-readable pages, Richard Henderson, 2022/08/17
- Re: [PATCH v5 0/4] linux-user: Fix siginfo_t contents when jumping to non-readable pages, Vivian Wang, 2022/08/18