[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PULL 06/12] target/s390x: Use a 16-bit immediate in VREP
From: |
Thomas Huth |
Subject: |
[PULL 06/12] target/s390x: Use a 16-bit immediate in VREP |
Date: |
Wed, 23 Aug 2023 13:45:38 +0200 |
From: Ilya Leoshkevich <iii@linux.ibm.com>
Unlike most other instructions that contain an immediate element index,
VREP's one is 16-bit, and not 4-bit. The code uses only 8 bits, so
using, e.g., 0x101 does not lead to a specification exception.
Fix by checking all 16 bits.
Cc: qemu-stable@nongnu.org
Fixes: 28d08731b1d8 ("s390x/tcg: Implement VECTOR REPLICATE")
Signed-off-by: Ilya Leoshkevich <iii@linux.ibm.com>
Message-Id: <20230807163459.849766-1-iii@linux.ibm.com>
Reviewed-by: David Hildenbrand <david@redhat.com>
Signed-off-by: Thomas Huth <thuth@redhat.com>
---
target/s390x/tcg/translate_vx.c.inc | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/target/s390x/tcg/translate_vx.c.inc
b/target/s390x/tcg/translate_vx.c.inc
index b5d07d5ec5..ec94d39df0 100644
--- a/target/s390x/tcg/translate_vx.c.inc
+++ b/target/s390x/tcg/translate_vx.c.inc
@@ -57,7 +57,7 @@
#define FPF_LONG 3
#define FPF_EXT 4
-static inline bool valid_vec_element(uint8_t enr, MemOp es)
+static inline bool valid_vec_element(uint16_t enr, MemOp es)
{
return !(enr & ~(NUM_VEC_ELEMENTS(es) - 1));
}
@@ -964,7 +964,7 @@ static DisasJumpType op_vpdi(DisasContext *s, DisasOps *o)
static DisasJumpType op_vrep(DisasContext *s, DisasOps *o)
{
- const uint8_t enr = get_field(s, i2);
+ const uint16_t enr = get_field(s, i2);
const uint8_t es = get_field(s, m4);
if (es > ES_64 || !valid_vec_element(enr, es)) {
--
2.39.3
- [PULL 00/12] First batch of s390x patches for QEMU 8.2, Thomas Huth, 2023/08/23
- [PULL 01/12] hw: Add compat machines for 8.2, Thomas Huth, 2023/08/23
- [PULL 09/12] include/hw/virtio/virtio-gpu: Fix virtio-gpu with blob on big endian hosts, Thomas Huth, 2023/08/23
- [PULL 04/12] target/s390x: Fix VSTL with a large length, Thomas Huth, 2023/08/23
- [PULL 05/12] tests/tcg/s390x: Test VSTL, Thomas Huth, 2023/08/23
- [PULL 06/12] target/s390x: Use a 16-bit immediate in VREP,
Thomas Huth <=
- [PULL 08/12] hw/s390x/s390-virtio-ccw: Remove superfluous code to set the NIC model, Thomas Huth, 2023/08/23
- [PULL 10/12] linux-user/elfload: Enable vxe2 on s390x, Thomas Huth, 2023/08/23
- [PULL 07/12] tests/tcg/s390x: Test VREP, Thomas Huth, 2023/08/23
- [PULL 02/12] s390x: Convert DPRINTF to trace events, Thomas Huth, 2023/08/23
- [PULL 03/12] target/s390x: Check reserved bits of VFMIN/VFMAX's M5, Thomas Huth, 2023/08/23
- [PULL 12/12] tests/tcg/s390x: Test VSTRS, Thomas Huth, 2023/08/23
- [PULL 11/12] target/s390x: Fix the "ignored match" case in VSTRS, Thomas Huth, 2023/08/23
- Re: [PULL 00/12] First batch of s390x patches for QEMU 8.2, Stefan Hajnoczi, 2023/08/23
- Re: [PULL 00/12] First batch of s390x patches for QEMU 8.2, Stefan Hajnoczi, 2023/08/23