Blame SOURCES/valgrind-3.14.0-s390z-more-z13-fixes.patch

cb589a
From d10cd86ee32bf76495f79c02df62fc242adbcbe3 Mon Sep 17 00:00:00 2001
cb589a
From: Andreas Arnez <arnez@linux.vnet.ibm.com>
cb589a
Date: Thu, 26 Jul 2018 16:35:24 +0200
cb589a
Subject: [PATCH] s390x: More fixes for z13 support
cb589a
cb589a
This patch addresses the following:
cb589a
cb589a
* Fix the implementation of LOCGHI.  Previously Valgrind performed 32-bit
cb589a
  sign extension instead of 64-bit sign extension on the immediate value.
cb589a
cb589a
* Advertise VXRS in HWCAP.  If no VXRS are advertised, but the program
cb589a
  uses vector registers, this could cause problems with a glibc built with
cb589a
  "-march=z13".
cb589a
---
cb589a
 VEX/priv/guest_s390_toIR.c          | 2 +-
cb589a
 coregrind/m_initimg/initimg-linux.c | 6 +++---
cb589a
 2 files changed, 4 insertions(+), 4 deletions(-)
cb589a
cb589a
diff --git a/VEX/priv/guest_s390_toIR.c b/VEX/priv/guest_s390_toIR.c
cb589a
index 9c4d79b87..50a5a4177 100644
cb589a
--- a/VEX/priv/guest_s390_toIR.c
cb589a
+++ b/VEX/priv/guest_s390_toIR.c
cb589a
@@ -16325,7 +16325,7 @@ static const HChar *
cb589a
 s390_irgen_LOCGHI(UChar r1, UChar m3, UShort i2, UChar unused)
cb589a
 {
cb589a
    next_insn_if(binop(Iop_CmpEQ32, s390_call_calculate_cond(m3), mkU32(0)));
cb589a
-   put_gpr_dw0(r1, mkU64((UInt)(Int)(Short)i2));
cb589a
+   put_gpr_dw0(r1, mkU64((ULong)(Long)(Short)i2));
cb589a
 
cb589a
    return "locghi";
cb589a
 }
cb589a
diff --git a/coregrind/m_initimg/initimg-linux.c b/coregrind/m_initimg/initimg-linux.c
cb589a
index 61cc458bc..8a7f0d024 100644
cb589a
--- a/coregrind/m_initimg/initimg-linux.c
cb589a
+++ b/coregrind/m_initimg/initimg-linux.c
cb589a
@@ -699,9 +699,9 @@ Addr setup_client_stack( void*  init_sp,
cb589a
             }
cb589a
 #           elif defined(VGP_s390x_linux)
cb589a
             {
cb589a
-               /* Advertise hardware features "below" TE only.  TE and VXRS
cb589a
-                  (and anything above) are not supported by Valgrind. */
cb589a
-               auxv->u.a_val &= VKI_HWCAP_S390_TE - 1;
cb589a
+               /* Advertise hardware features "below" TE and VXRS.  TE itself
cb589a
+                  and anything above VXRS is not supported by Valgrind. */
cb589a
+               auxv->u.a_val &= (VKI_HWCAP_S390_TE - 1) | VKI_HWCAP_S390_VXRS;
cb589a
             }
cb589a
 #           elif defined(VGP_arm64_linux)
cb589a
             {
cb589a
-- 
cb589a
2.17.0
cb589a