[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH v2 04/14] target/s390x: Fix ICM with M3=0
From: |
Ilya Leoshkevich |
Subject: |
[PATCH v2 04/14] target/s390x: Fix ICM with M3=0 |
Date: |
Wed, 19 Jul 2023 11:44:14 +0200 |
When the mask is zero, access exceptions should still be recognized for
1 byte at the second-operand address. CC should be set to 0.
Cc: qemu-stable@nongnu.org
Fixes: e023e832d0ac ("s390x: translate engine for s390x CPU")
Reviewed-by: David Hildenbrand <david@redhat.com>
Signed-off-by: Ilya Leoshkevich <iii@linux.ibm.com>
---
target/s390x/tcg/translate.c | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/target/s390x/tcg/translate.c b/target/s390x/tcg/translate.c
index 2f61e879878..2f193339709 100644
--- a/target/s390x/tcg/translate.c
+++ b/target/s390x/tcg/translate.c
@@ -2522,6 +2522,12 @@ static DisasJumpType op_icm(DisasContext *s, DisasOps *o)
ccm = ((1ull << len) - 1) << pos;
break;
+ case 0:
+ /* Recognize access exceptions for the first byte. */
+ tcg_gen_qemu_ld_i64(tmp, o->in2, get_mem_index(s), MO_UB);
+ gen_op_movi_cc(s, 0);
+ return DISAS_NEXT;
+
default:
/* This is going to be a sequence of loads and inserts. */
pos = base + 32 - 8;
--
2.41.0
- Re: [PATCH v2 10/14] tests/tcg/s390x: Test CLM, (continued)
- [PATCH v2 11/14] tests/tcg/s390x: Test ICM, Ilya Leoshkevich, 2023/07/19
- [PATCH v2 07/14] target/s390x: Fix assertion failure in VFMIN/VFMAX with type 13, Ilya Leoshkevich, 2023/07/19
- [PATCH v2 06/14] tcg/{i386, s390x}: Add earlyclobber to the op_add2's first output, Ilya Leoshkevich, 2023/07/19
- Re: [PATCH v2 06/14] tcg/{i386, s390x}: Add earlyclobber to the op_add2's first output, Philippe Mathieu-Daudé, 2023/07/19
- [PATCH v2 04/14] target/s390x: Fix ICM with M3=0,
Ilya Leoshkevich <=
- [PATCH v2 14/14] tests/tcg/s390x: Test VCKSM, Ilya Leoshkevich, 2023/07/19
- [PATCH v2 09/14] tests/tcg/s390x: Test CLGEBR and CGEBRA, Ilya Leoshkevich, 2023/07/19