[arch-commits] Commit in valgrind/repos (8 files)

Anatol Pomozov anatolik at archlinux.org
Tue Sep 2 23:12:30 UTC 2014


    Date: Wednesday, September 3, 2014 @ 01:12:30
  Author: anatolik
Revision: 220917

archrelease: copy trunk to testing-i686, testing-x86_64

Added:
  valgrind/repos/testing-i686/
  valgrind/repos/testing-i686/PKGBUILD
    (from rev 220916, valgrind/trunk/PKGBUILD)
  valgrind/repos/testing-i686/add_xabort_op.patch
    (from rev 220916, valgrind/trunk/add_xabort_op.patch)
  valgrind/repos/testing-i686/valgrind-3.9.0-glibc-2.19.patch
    (from rev 220916, valgrind/trunk/valgrind-3.9.0-glibc-2.19.patch)
  valgrind/repos/testing-x86_64/
  valgrind/repos/testing-x86_64/PKGBUILD
    (from rev 220916, valgrind/trunk/PKGBUILD)
  valgrind/repos/testing-x86_64/add_xabort_op.patch
    (from rev 220916, valgrind/trunk/add_xabort_op.patch)
  valgrind/repos/testing-x86_64/valgrind-3.9.0-glibc-2.19.patch
    (from rev 220916, valgrind/trunk/valgrind-3.9.0-glibc-2.19.patch)

------------------------------------------------+
 testing-i686/PKGBUILD                          |   38 +++++++++++++++++++++++
 testing-i686/add_xabort_op.patch               |   30 ++++++++++++++++++
 testing-i686/valgrind-3.9.0-glibc-2.19.patch   |   37 ++++++++++++++++++++++
 testing-x86_64/PKGBUILD                        |   38 +++++++++++++++++++++++
 testing-x86_64/add_xabort_op.patch             |   30 ++++++++++++++++++
 testing-x86_64/valgrind-3.9.0-glibc-2.19.patch |   37 ++++++++++++++++++++++
 6 files changed, 210 insertions(+)

Copied: valgrind/repos/testing-i686/PKGBUILD (from rev 220916, valgrind/trunk/PKGBUILD)
===================================================================
--- testing-i686/PKGBUILD	                        (rev 0)
+++ testing-i686/PKGBUILD	2014-09-02 23:12:30 UTC (rev 220917)
@@ -0,0 +1,38 @@
+# $Id$
+# Maintainer: Dan McGee <dan at archlinux.org>
+# Maintainer: Allan McRae <allan at archlinux.org>
+
+pkgname=valgrind
+pkgver=3.9.0
+pkgrel=5
+pkgdesc='A tool to help find memory-management problems in programs'
+arch=(i686 x86_64)
+license=(GPL)
+url='http://valgrind.org/'
+depends=('glibc>=2.19' 'glibc<2.20' 'perl')
+makedepends=('gdb' 'openmpi')
+optdepends=('openmpi: MPI support')
+options=('staticlibs' '!emptydirs')
+source=(http://valgrind.org/downloads/$pkgname-$pkgver.tar.bz2
+        valgrind-3.9.0-glibc-2.19.patch
+        add_xabort_op.patch)
+sha1sums=('9415e28933de9d6687f993c4bb797e6bd49583f1'
+          '4653e994d2660490c51a97cc70e45a506e80bfab'
+          '126e90494e0134a70649456cd1a1f1369024c345')
+
+prepare() {
+  cd $pkgname-$pkgver
+  patch -p1 -i "$srcdir"/valgrind-3.9.0-glibc-2.19.patch
+  patch -p0 -i "$srcdir"/add_xabort_op.patch  # FS#41696
+}
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr --mandir=/usr/share/man --with-mpicc=mpicc
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+}

Copied: valgrind/repos/testing-i686/add_xabort_op.patch (from rev 220916, valgrind/trunk/add_xabort_op.patch)
===================================================================
--- testing-i686/add_xabort_op.patch	                        (rev 0)
+++ testing-i686/add_xabort_op.patch	2014-09-02 23:12:30 UTC (rev 220917)
@@ -0,0 +1,30 @@
+Index: VEX/priv/guest_amd64_toIR.c
+===================================================================
+--- VEX/priv/guest_amd64_toIR.c	(revision 2799)
++++ VEX/priv/guest_amd64_toIR.c	(revision 2800)
+@@ -20251,7 +20251,7 @@
+          return delta;
+       }
+       /* BEGIN HACKY SUPPORT FOR xbegin */
+-      if (modrm == 0xF8 && !have66orF2orF3(pfx) && sz == 4
++      if (opc == 0xC7 && modrm == 0xF8 && !have66orF2orF3(pfx) && sz == 4
+           && (archinfo->hwcaps & VEX_HWCAPS_AMD64_AVX)) {
+          delta++; /* mod/rm byte */
+          d64 = getSDisp(4,delta); 
+@@ -20270,6 +20270,16 @@
+          return delta;
+       }
+       /* END HACKY SUPPORT FOR xbegin */
++      /* BEGIN HACKY SUPPORT FOR xabort */
++      if (opc == 0xC6 && modrm == 0xF8 && !have66orF2orF3(pfx) && sz == 1
++          && (archinfo->hwcaps & VEX_HWCAPS_AMD64_AVX)) {
++         delta++; /* mod/rm byte */
++         abyte = getUChar(delta); delta++;
++         /* There is never a real transaction in progress, so do nothing. */
++         DIP("xabort $%d", (Int)abyte);
++         return delta;
++      }
++      /* END HACKY SUPPORT FOR xabort */
+       goto decode_failure;
+ 
+    case 0xC8: /* ENTER */

Copied: valgrind/repos/testing-i686/valgrind-3.9.0-glibc-2.19.patch (from rev 220916, valgrind/trunk/valgrind-3.9.0-glibc-2.19.patch)
===================================================================
--- testing-i686/valgrind-3.9.0-glibc-2.19.patch	                        (rev 0)
+++ testing-i686/valgrind-3.9.0-glibc-2.19.patch	2014-09-02 23:12:30 UTC (rev 220917)
@@ -0,0 +1,37 @@
+diff -Naur valgrind-3.9.0-orig/configure valgrind-3.9.0/configure
+--- valgrind-3.9.0-orig/configure	2013-11-01 09:33:32.000000000 +1000
++++ valgrind-3.9.0/configure	2014-02-08 09:28:06.063248544 +1000
+@@ -6689,6 +6689,16 @@
+ 	DEFAULT_SUPP="glibc-2.34567-NPTL-helgrind.supp ${DEFAULT_SUPP}"
+ 	DEFAULT_SUPP="glibc-2.X-drd.supp ${DEFAULT_SUPP}"
+ 	;;
++     2.19)
++	{ $as_echo "$as_me:${as_lineno-$LINENO}: result: 2.19 family" >&5
++$as_echo "2.19 family" >&6; }
++
++$as_echo "#define GLIBC_2_19 1" >>confdefs.h
++
++	DEFAULT_SUPP="glibc-2.X.supp ${DEFAULT_SUPP}"
++	DEFAULT_SUPP="glibc-2.34567-NPTL-helgrind.supp ${DEFAULT_SUPP}"
++	DEFAULT_SUPP="glibc-2.X-drd.supp ${DEFAULT_SUPP}"
++	;;
+      darwin)
+ 	{ $as_echo "$as_me:${as_lineno-$LINENO}: result: Darwin" >&5
+ $as_echo "Darwin" >&6; }
+diff -Naur valgrind-3.9.0-orig/configure.ac valgrind-3.9.0/configure.ac
+--- valgrind-3.9.0-orig/configure.ac	2013-11-01 09:28:16.000000000 +1000
++++ valgrind-3.9.0/configure.ac	2014-02-08 09:27:38.870385366 +1000
+@@ -918,6 +918,13 @@
+ 	DEFAULT_SUPP="glibc-2.34567-NPTL-helgrind.supp ${DEFAULT_SUPP}"
+ 	DEFAULT_SUPP="glibc-2.X-drd.supp ${DEFAULT_SUPP}"
+ 	;;
++     2.19)
++	AC_MSG_RESULT(2.19 family)
++	AC_DEFINE([GLIBC_2_19], 1, [Define to 1 if you're using glibc 2.19.x])
++	DEFAULT_SUPP="glibc-2.X.supp ${DEFAULT_SUPP}"
++	DEFAULT_SUPP="glibc-2.34567-NPTL-helgrind.supp ${DEFAULT_SUPP}"
++	DEFAULT_SUPP="glibc-2.X-drd.supp ${DEFAULT_SUPP}"
++	;;
+      darwin)
+ 	AC_MSG_RESULT(Darwin)
+ 	AC_DEFINE([DARWIN_LIBC], 1, [Define to 1 if you're using Darwin])

Copied: valgrind/repos/testing-x86_64/PKGBUILD (from rev 220916, valgrind/trunk/PKGBUILD)
===================================================================
--- testing-x86_64/PKGBUILD	                        (rev 0)
+++ testing-x86_64/PKGBUILD	2014-09-02 23:12:30 UTC (rev 220917)
@@ -0,0 +1,38 @@
+# $Id$
+# Maintainer: Dan McGee <dan at archlinux.org>
+# Maintainer: Allan McRae <allan at archlinux.org>
+
+pkgname=valgrind
+pkgver=3.9.0
+pkgrel=5
+pkgdesc='A tool to help find memory-management problems in programs'
+arch=(i686 x86_64)
+license=(GPL)
+url='http://valgrind.org/'
+depends=('glibc>=2.19' 'glibc<2.20' 'perl')
+makedepends=('gdb' 'openmpi')
+optdepends=('openmpi: MPI support')
+options=('staticlibs' '!emptydirs')
+source=(http://valgrind.org/downloads/$pkgname-$pkgver.tar.bz2
+        valgrind-3.9.0-glibc-2.19.patch
+        add_xabort_op.patch)
+sha1sums=('9415e28933de9d6687f993c4bb797e6bd49583f1'
+          '4653e994d2660490c51a97cc70e45a506e80bfab'
+          '126e90494e0134a70649456cd1a1f1369024c345')
+
+prepare() {
+  cd $pkgname-$pkgver
+  patch -p1 -i "$srcdir"/valgrind-3.9.0-glibc-2.19.patch
+  patch -p0 -i "$srcdir"/add_xabort_op.patch  # FS#41696
+}
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr --mandir=/usr/share/man --with-mpicc=mpicc
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+}

Copied: valgrind/repos/testing-x86_64/add_xabort_op.patch (from rev 220916, valgrind/trunk/add_xabort_op.patch)
===================================================================
--- testing-x86_64/add_xabort_op.patch	                        (rev 0)
+++ testing-x86_64/add_xabort_op.patch	2014-09-02 23:12:30 UTC (rev 220917)
@@ -0,0 +1,30 @@
+Index: VEX/priv/guest_amd64_toIR.c
+===================================================================
+--- VEX/priv/guest_amd64_toIR.c	(revision 2799)
++++ VEX/priv/guest_amd64_toIR.c	(revision 2800)
+@@ -20251,7 +20251,7 @@
+          return delta;
+       }
+       /* BEGIN HACKY SUPPORT FOR xbegin */
+-      if (modrm == 0xF8 && !have66orF2orF3(pfx) && sz == 4
++      if (opc == 0xC7 && modrm == 0xF8 && !have66orF2orF3(pfx) && sz == 4
+           && (archinfo->hwcaps & VEX_HWCAPS_AMD64_AVX)) {
+          delta++; /* mod/rm byte */
+          d64 = getSDisp(4,delta); 
+@@ -20270,6 +20270,16 @@
+          return delta;
+       }
+       /* END HACKY SUPPORT FOR xbegin */
++      /* BEGIN HACKY SUPPORT FOR xabort */
++      if (opc == 0xC6 && modrm == 0xF8 && !have66orF2orF3(pfx) && sz == 1
++          && (archinfo->hwcaps & VEX_HWCAPS_AMD64_AVX)) {
++         delta++; /* mod/rm byte */
++         abyte = getUChar(delta); delta++;
++         /* There is never a real transaction in progress, so do nothing. */
++         DIP("xabort $%d", (Int)abyte);
++         return delta;
++      }
++      /* END HACKY SUPPORT FOR xabort */
+       goto decode_failure;
+ 
+    case 0xC8: /* ENTER */

Copied: valgrind/repos/testing-x86_64/valgrind-3.9.0-glibc-2.19.patch (from rev 220916, valgrind/trunk/valgrind-3.9.0-glibc-2.19.patch)
===================================================================
--- testing-x86_64/valgrind-3.9.0-glibc-2.19.patch	                        (rev 0)
+++ testing-x86_64/valgrind-3.9.0-glibc-2.19.patch	2014-09-02 23:12:30 UTC (rev 220917)
@@ -0,0 +1,37 @@
+diff -Naur valgrind-3.9.0-orig/configure valgrind-3.9.0/configure
+--- valgrind-3.9.0-orig/configure	2013-11-01 09:33:32.000000000 +1000
++++ valgrind-3.9.0/configure	2014-02-08 09:28:06.063248544 +1000
+@@ -6689,6 +6689,16 @@
+ 	DEFAULT_SUPP="glibc-2.34567-NPTL-helgrind.supp ${DEFAULT_SUPP}"
+ 	DEFAULT_SUPP="glibc-2.X-drd.supp ${DEFAULT_SUPP}"
+ 	;;
++     2.19)
++	{ $as_echo "$as_me:${as_lineno-$LINENO}: result: 2.19 family" >&5
++$as_echo "2.19 family" >&6; }
++
++$as_echo "#define GLIBC_2_19 1" >>confdefs.h
++
++	DEFAULT_SUPP="glibc-2.X.supp ${DEFAULT_SUPP}"
++	DEFAULT_SUPP="glibc-2.34567-NPTL-helgrind.supp ${DEFAULT_SUPP}"
++	DEFAULT_SUPP="glibc-2.X-drd.supp ${DEFAULT_SUPP}"
++	;;
+      darwin)
+ 	{ $as_echo "$as_me:${as_lineno-$LINENO}: result: Darwin" >&5
+ $as_echo "Darwin" >&6; }
+diff -Naur valgrind-3.9.0-orig/configure.ac valgrind-3.9.0/configure.ac
+--- valgrind-3.9.0-orig/configure.ac	2013-11-01 09:28:16.000000000 +1000
++++ valgrind-3.9.0/configure.ac	2014-02-08 09:27:38.870385366 +1000
+@@ -918,6 +918,13 @@
+ 	DEFAULT_SUPP="glibc-2.34567-NPTL-helgrind.supp ${DEFAULT_SUPP}"
+ 	DEFAULT_SUPP="glibc-2.X-drd.supp ${DEFAULT_SUPP}"
+ 	;;
++     2.19)
++	AC_MSG_RESULT(2.19 family)
++	AC_DEFINE([GLIBC_2_19], 1, [Define to 1 if you're using glibc 2.19.x])
++	DEFAULT_SUPP="glibc-2.X.supp ${DEFAULT_SUPP}"
++	DEFAULT_SUPP="glibc-2.34567-NPTL-helgrind.supp ${DEFAULT_SUPP}"
++	DEFAULT_SUPP="glibc-2.X-drd.supp ${DEFAULT_SUPP}"
++	;;
+      darwin)
+ 	AC_MSG_RESULT(Darwin)
+ 	AC_DEFINE([DARWIN_LIBC], 1, [Define to 1 if you're using Darwin])




More information about the arch-commits mailing list