[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH v3 2/3] target/arm: Make sure that commpage's tb->size != 0
From: |
Ilya Leoshkevich |
Subject: |
[PATCH v3 2/3] target/arm: Make sure that commpage's tb->size != 0 |
Date: |
Wed, 14 Apr 2021 15:41:11 +0200 |
tb_gen_code() assumes that tb->size must never be zero, otherwise it
may produce spurious exceptions. For ARM this may happen when creating
a translation block for the commpage.
Fix by pretending that commpage translation blocks have at least one
instruction.
Signed-off-by: Ilya Leoshkevich <iii@linux.ibm.com>
---
target/arm/translate.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/target/arm/translate.c b/target/arm/translate.c
index 62b1c2081b..885f69b044 100644
--- a/target/arm/translate.c
+++ b/target/arm/translate.c
@@ -9060,6 +9060,7 @@ static void arm_tr_translate_insn(DisasContextBase
*dcbase, CPUState *cpu)
unsigned int insn;
if (arm_pre_translate_insn(dc)) {
+ dc->base.pc_next += 4;
return;
}
--
2.29.2
- [PATCH v3 0/3] accel/tcg: Make sure that tb->size != 0 after translation, Ilya Leoshkevich, 2021/04/14
- [PATCH v3 2/3] target/arm: Make sure that commpage's tb->size != 0,
Ilya Leoshkevich <=
- [PATCH v3 3/3] accel/tcg: Assert that tb->size != 0 after translation, Ilya Leoshkevich, 2021/04/14
- Re: [PATCH v3 3/3] accel/tcg: Assert that tb->size != 0 after translation, David Hildenbrand, 2021/04/14
- Re: [PATCH v3 3/3] accel/tcg: Assert that tb->size != 0 after translation, Ilya Leoshkevich, 2021/04/14
- Re: [PATCH v3 3/3] accel/tcg: Assert that tb->size != 0 after translation, Max Filippov, 2021/04/14
- Re: [PATCH v3 3/3] accel/tcg: Assert that tb->size != 0 after translation, Richard Henderson, 2021/04/14
- Re: [PATCH v3 3/3] accel/tcg: Assert that tb->size != 0 after translation, Max Filippov, 2021/04/14
- Re: [PATCH v3 3/3] accel/tcg: Assert that tb->size != 0 after translation, Ilya Leoshkevich, 2021/04/15
- Re: [PATCH v3 3/3] accel/tcg: Assert that tb->size != 0 after translation, Richard Henderson, 2021/04/15
- Re: [PATCH v3 3/3] accel/tcg: Assert that tb->size != 0 after translation, Peter Maydell, 2021/04/15
- Re: [PATCH v3 3/3] accel/tcg: Assert that tb->size != 0 after translation, Max Filippov, 2021/04/15