[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PULL 3/6] target/s390x: Fix CLFIT and CLGIT immediate size
From: |
Thomas Huth |
Subject: |
[PULL 3/6] target/s390x: Fix CLFIT and CLGIT immediate size |
Date: |
Tue, 30 Aug 2022 19:19:44 +0200 |
From: Ilya Leoshkevich <iii@linux.ibm.com>
I2 is 16 bits, not 32.
Found by running valgrind's none/tests/s390x/traps.
Fixes: 1c2687518235 ("target-s390: Implement COMPARE AND TRAP")
Signed-off-by: Ilya Leoshkevich <iii@linux.ibm.com>
Message-Id: <20220817161529.597414-1-iii@linux.ibm.com>
Reviewed-by: David Hildenbrand <david@redhat.com>
Signed-off-by: Thomas Huth <thuth@redhat.com>
---
target/s390x/tcg/insn-data.def | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/target/s390x/tcg/insn-data.def b/target/s390x/tcg/insn-data.def
index 5e448bb2c4..6d2cfe5fa2 100644
--- a/target/s390x/tcg/insn-data.def
+++ b/target/s390x/tcg/insn-data.def
@@ -290,8 +290,8 @@
D(0xb961, CLGRT, RRF_c, GIE, r1_o, r2_o, 0, 0, ct, 0, 1)
D(0xeb23, CLT, RSY_b, MIE, r1_32u, m2_32u, 0, 0, ct, 0, 1)
D(0xeb2b, CLGT, RSY_b, MIE, r1_o, m2_64, 0, 0, ct, 0, 1)
- D(0xec73, CLFIT, RIE_a, GIE, r1_32u, i2_32u, 0, 0, ct, 0, 1)
- D(0xec71, CLGIT, RIE_a, GIE, r1_o, i2_32u, 0, 0, ct, 0, 1)
+ D(0xec73, CLFIT, RIE_a, GIE, r1_32u, i2_16u, 0, 0, ct, 0, 1)
+ D(0xec71, CLGIT, RIE_a, GIE, r1_o, i2_16u, 0, 0, ct, 0, 1)
/* CONVERT TO DECIMAL */
C(0x4e00, CVD, RX_a, Z, r1_o, a2, 0, 0, cvd, 0)
--
2.31.1
- [PULL 0/6] First s390x updates for QEMU 7.2, Thomas Huth, 2022/08/30
- [PULL 1/6] hw: Add compat machines for 7.2, Thomas Huth, 2022/08/30
- [PULL 2/6] s390x/cpumodel: add stfl197 processor-activity-instrumentation extension 1, Thomas Huth, 2022/08/30
- [PULL 4/6] backends/hostmem: Fix support of memory-backend-memfd in qemu_maxrampagesize(), Thomas Huth, 2022/08/30
- [PULL 3/6] target/s390x: Fix CLFIT and CLGIT immediate size,
Thomas Huth <=
- [PULL 5/6] softmmu/physmem: Remove the ifdef __linux__ around the pagesize functions, Thomas Huth, 2022/08/30
- [PULL 6/6] util/mmap-alloc: Remove qemu_mempath_getpagesize(), Thomas Huth, 2022/08/30
- Re: [PULL 0/6] First s390x updates for QEMU 7.2, Stefan Hajnoczi, 2022/08/31