Date: Saturday, September 20, 2014 @ 14:29:34 Author: lcarlier Revision: 222167
upstream update 10.2.8 Modified: mesa/repos/extra-i686/PKGBUILD mesa/repos/extra-x86_64/PKGBUILD Deleted: mesa/repos/extra-i686/0001-gallivm-Disable-workaround-for-PR12833-on-LLVM-3.2.patch mesa/repos/extra-i686/0002-gallivm-set-mcpu-when-initializing-llvm-execution-en.patch mesa/repos/extra-i686/llvm35.patch mesa/repos/extra-x86_64/0001-gallivm-Disable-workaround-for-PR12833-on-LLVM-3.2.patch mesa/repos/extra-x86_64/0002-gallivm-set-mcpu-when-initializing-llvm-execution-en.patch mesa/repos/extra-x86_64/llvm35.patch ------------------------------------------------------------------------------+ extra-i686/0001-gallivm-Disable-workaround-for-PR12833-on-LLVM-3.2.patch | 33 ---- extra-i686/0002-gallivm-set-mcpu-when-initializing-llvm-execution-en.patch | 77 ---------- extra-i686/PKGBUILD | 23 -- extra-i686/llvm35.patch | 26 --- extra-x86_64/0001-gallivm-Disable-workaround-for-PR12833-on-LLVM-3.2.patch | 33 ---- extra-x86_64/0002-gallivm-set-mcpu-when-initializing-llvm-execution-en.patch | 77 ---------- extra-x86_64/PKGBUILD | 23 -- extra-x86_64/llvm35.patch | 26 --- 8 files changed, 6 insertions(+), 312 deletions(-) Deleted: extra-i686/0001-gallivm-Disable-workaround-for-PR12833-on-LLVM-3.2.patch =================================================================== --- extra-i686/0001-gallivm-Disable-workaround-for-PR12833-on-LLVM-3.2.patch 2014-09-20 11:55:30 UTC (rev 222166) +++ extra-i686/0001-gallivm-Disable-workaround-for-PR12833-on-LLVM-3.2.patch 2014-09-20 12:29:34 UTC (rev 222167) @@ -1,33 +0,0 @@ -From 22c970946535956abac321585598425ad5cc82c5 Mon Sep 17 00:00:00 2001 -From: =?UTF-8?q?Jos=C3=A9=20Fonseca?= <[email protected]> -Date: Wed, 14 May 2014 12:55:50 +0100 -Subject: [PATCH 1/2] gallivm: Disable workaround for PR12833 on LLVM 3.2+. - -Fixed upstream. - -(cherry picked from commit 172ef0c5a5a97c211702eb4033eeaac20993350e) ---- - src/gallium/auxiliary/gallivm/lp_bld_misc.cpp | 4 ++-- - 1 file changed, 2 insertions(+), 2 deletions(-) - -diff --git a/src/gallium/auxiliary/gallivm/lp_bld_misc.cpp b/src/gallium/auxiliary/gallivm/lp_bld_misc.cpp -index d85adfb..45c985d 100644 ---- a/src/gallium/auxiliary/gallivm/lp_bld_misc.cpp -+++ b/src/gallium/auxiliary/gallivm/lp_bld_misc.cpp -@@ -321,11 +321,11 @@ lp_build_create_jit_compiler_for_module(LLVMExecutionEngineRef *OutJIT, - builder.setJITMemoryManager(JITMemoryManager::CreateDefaultMemManager()); - - ExecutionEngine *JIT; --#if 0 -+#if HAVE_LLVM >= 0x0302 - JIT = builder.create(); - #else - /* -- * Workaround http://llvm.org/bugs/show_bug.cgi?id=12833 -+ * Workaround http://llvm.org/PR12833 - */ - StringRef MArch = ""; - StringRef MCPU = ""; --- -2.1.0 - Deleted: extra-i686/0002-gallivm-set-mcpu-when-initializing-llvm-execution-en.patch =================================================================== --- extra-i686/0002-gallivm-set-mcpu-when-initializing-llvm-execution-en.patch 2014-09-20 11:55:30 UTC (rev 222166) +++ extra-i686/0002-gallivm-set-mcpu-when-initializing-llvm-execution-en.patch 2014-09-20 12:29:34 UTC (rev 222167) @@ -1,77 +0,0 @@ -From ebe30fd4d4a90219431b6947f233473b2cf518a5 Mon Sep 17 00:00:00 2001 -From: Roland Scheidegger <[email protected]> -Date: Thu, 19 Jun 2014 03:27:26 +0200 -Subject: [PATCH 2/2] gallivm: set mcpu when initializing llvm execution engine - -Previously llvm detected cpu features automatically when the execution engine -was created (based on host cpu). This is no longer the case, which meant llvm -was then not able to emit some of the intrinsics we used as we didn't specify -any sse attributes (only on avx supporting systems this was not a problem since -despite at least some llvm versions enabling it anyway we always set this -manually). So, instead of trying to figure out which MAttrs to set just set -MCPU. - -This fixes https://bugs.freedesktop.org/show_bug.cgi?id=77493. - -Reviewed-by: Jose Fonseca <[email protected]> -Tested-by: Vinson Lee <[email protected]> -(cherry picked from commit cad60420d5ea36a4b6fa2e6c91317f71423aa63e) ---- - src/gallium/auxiliary/gallivm/lp_bld_misc.cpp | 24 ++++++++++++++++++++++-- - 1 file changed, 22 insertions(+), 2 deletions(-) - -diff --git a/src/gallium/auxiliary/gallivm/lp_bld_misc.cpp b/src/gallium/auxiliary/gallivm/lp_bld_misc.cpp -index 45c985d..395ac7b 100644 ---- a/src/gallium/auxiliary/gallivm/lp_bld_misc.cpp -+++ b/src/gallium/auxiliary/gallivm/lp_bld_misc.cpp -@@ -59,6 +59,7 @@ - #include <llvm/ExecutionEngine/JITMemoryManager.h> - #endif - #include <llvm/Support/CommandLine.h> -+#include <llvm/Support/Host.h> - #include <llvm/Support/PrettyStackTrace.h> - - #if HAVE_LLVM >= 0x0300 -@@ -309,8 +310,8 @@ lp_build_create_jit_compiler_for_module(LLVMExecutionEngineRef *OutJIT, - /* - * AVX feature is not automatically detected from CPUID by the X86 target - * yet, because the old (yet default) JIT engine is not capable of -- * emitting the opcodes. But as we're using MCJIT here, it is safe to -- * add set this attribute. -+ * emitting the opcodes. On newer llvm versions it is and at least some -+ * versions (tested with 3.3) will emit avx opcodes without this anyway. - */ - MAttrs.push_back("+avx"); - if (util_cpu_caps.has_f16c) { -@@ -318,9 +319,28 @@ lp_build_create_jit_compiler_for_module(LLVMExecutionEngineRef *OutJIT, - } - builder.setMAttrs(MAttrs); - } -+ -+#if HAVE_LLVM >= 0x0305 -+ StringRef MCPU = llvm::sys::getHostCPUName(); -+ /* -+ * The cpu bits are no longer set automatically, so need to set mcpu manually. -+ * Note that the MAttrs set above will be sort of ignored (since we should -+ * not set any which would not be set by specifying the cpu anyway). -+ * It ought to be safe though since getHostCPUName() should include bits -+ * not only from the cpu but environment as well (for instance if it's safe -+ * to use avx instructions which need OS support). According to -+ * http://llvm.org/bugs/show_bug.cgi?id=19429 however if I understand this -+ * right it may be necessary to specify older cpu (or disable mattrs) though -+ * when not using MCJIT so no instructions are generated which the old JIT -+ * can't handle. Not entirely sure if we really need to do anything yet. -+ */ -+ builder.setMCPU(MCPU); -+#endif -+ - builder.setJITMemoryManager(JITMemoryManager::CreateDefaultMemManager()); - - ExecutionEngine *JIT; -+ - #if HAVE_LLVM >= 0x0302 - JIT = builder.create(); - #else --- -2.1.0 - Modified: extra-i686/PKGBUILD =================================================================== --- extra-i686/PKGBUILD 2014-09-20 11:55:30 UTC (rev 222166) +++ extra-i686/PKGBUILD 2014-09-20 12:29:34 UTC (rev 222167) @@ -4,8 +4,8 @@ pkgbase=mesa pkgname=('opencl-mesa' 'ati-dri' 'intel-dri' 'nouveau-dri' 'svga-dri' 'mesa' 'mesa-libgl') -pkgver=10.2.7 -pkgrel=3 +pkgver=10.2.8 +pkgrel=1 arch=('i686' 'x86_64') makedepends=('python2' 'libxml2' 'libx11' 'glproto' 'libdrm' 'dri2proto' 'dri3proto' 'presentproto' 'libxshmfence' 'libxxf86vm' 'libxdamage' 'libvdpau' 'wayland' 'elfutils' 'llvm' 'systemd' @@ -13,28 +13,11 @@ url="http://mesa3d.sourceforge.net" license=('custom') source=(ftp://ftp.freedesktop.org/pub/mesa/${pkgver}/MesaLib-${pkgver}.tar.bz2{,.sig} - llvm35.patch - 0001-gallivm-Disable-workaround-for-PR12833-on-LLVM-3.2.patch - 0002-gallivm-set-mcpu-when-initializing-llvm-execution-en.patch LICENSE) -sha256sums=('27b958063a4c002071f14ed45c7d2a1ee52cd85e4ac8876e8a1c273495a7d43f' +sha256sums=('1ef9ad3f241788d454f2ff8c9d65b6849dfc31c8fe91f70fd2930b81c8af1398' 'SKIP' - 'd3d433564cd21da8aa56a9ceccee6122d5991cae2bd1924173359f13bd38bd6f' - '5d66636b06736027708ffa60afb92fc81f085df35b9d91ab7ac4107c8b52d500' - '8dc0935e66669bc111e69a80057831aa1f675179ca689c1c044ab588587da010' '7fdc119cf53c8ca65396ea73f6d10af641ba41ea1dd2bd44a824726e01c8b3f2') -prepare() { - cd ${srcdir}/?esa-* - - patch -Np1 -i ../llvm35.patch - - # https://bugs.freedesktop.org/show_bug.cgi?id=77493 - # https://bugs.freedesktop.org/show_bug.cgi?id=83735 - patch -Np1 -i ../0001-gallivm-Disable-workaround-for-PR12833-on-LLVM-3.2.patch - patch -Np1 -i ../0002-gallivm-set-mcpu-when-initializing-llvm-execution-en.patch -} - build() { cd ${srcdir}/?esa-* Deleted: extra-i686/llvm35.patch =================================================================== --- extra-i686/llvm35.patch 2014-09-20 11:55:30 UTC (rev 222166) +++ extra-i686/llvm35.patch 2014-09-20 12:29:34 UTC (rev 222167) @@ -1,26 +0,0 @@ -From 564821c917f4a9d5a0de2ee77b90b0cd85e3d3a6 Mon Sep 17 00:00:00 2001 -From: Aaron Watry <[email protected]> -Date: Fri, 20 Jun 2014 19:13:30 -0500 -Subject: gallivm: Fix build after LLVM commit 211259 - -Signed-off-by: Aaron Watry <[email protected]> -Reviewed-by: Tom Stellard <[email protected]> - -diff --git a/src/gallium/auxiliary/gallivm/lp_bld_debug.cpp b/src/gallium/auxiliary/gallivm/lp_bld_debug.cpp -index df26883..413a0c2 100644 ---- a/src/gallium/auxiliary/gallivm/lp_bld_debug.cpp -+++ b/src/gallium/auxiliary/gallivm/lp_bld_debug.cpp -@@ -51,7 +51,9 @@ - #include <llvm/MC/MCInstPrinter.h> - #include <llvm/MC/MCRegisterInfo.h> - --#if HAVE_LLVM >= 0x0303 -+#if HAVE_LLVM >= 0x0305 -+#define OwningPtr std::unique_ptr -+#elif HAVE_LLVM >= 0x0303 - #include <llvm/ADT/OwningPtr.h> - #endif - --- -cgit v0.10.2 - Deleted: extra-x86_64/0001-gallivm-Disable-workaround-for-PR12833-on-LLVM-3.2.patch =================================================================== --- extra-x86_64/0001-gallivm-Disable-workaround-for-PR12833-on-LLVM-3.2.patch 2014-09-20 11:55:30 UTC (rev 222166) +++ extra-x86_64/0001-gallivm-Disable-workaround-for-PR12833-on-LLVM-3.2.patch 2014-09-20 12:29:34 UTC (rev 222167) @@ -1,33 +0,0 @@ -From 22c970946535956abac321585598425ad5cc82c5 Mon Sep 17 00:00:00 2001 -From: =?UTF-8?q?Jos=C3=A9=20Fonseca?= <[email protected]> -Date: Wed, 14 May 2014 12:55:50 +0100 -Subject: [PATCH 1/2] gallivm: Disable workaround for PR12833 on LLVM 3.2+. - -Fixed upstream. - -(cherry picked from commit 172ef0c5a5a97c211702eb4033eeaac20993350e) ---- - src/gallium/auxiliary/gallivm/lp_bld_misc.cpp | 4 ++-- - 1 file changed, 2 insertions(+), 2 deletions(-) - -diff --git a/src/gallium/auxiliary/gallivm/lp_bld_misc.cpp b/src/gallium/auxiliary/gallivm/lp_bld_misc.cpp -index d85adfb..45c985d 100644 ---- a/src/gallium/auxiliary/gallivm/lp_bld_misc.cpp -+++ b/src/gallium/auxiliary/gallivm/lp_bld_misc.cpp -@@ -321,11 +321,11 @@ lp_build_create_jit_compiler_for_module(LLVMExecutionEngineRef *OutJIT, - builder.setJITMemoryManager(JITMemoryManager::CreateDefaultMemManager()); - - ExecutionEngine *JIT; --#if 0 -+#if HAVE_LLVM >= 0x0302 - JIT = builder.create(); - #else - /* -- * Workaround http://llvm.org/bugs/show_bug.cgi?id=12833 -+ * Workaround http://llvm.org/PR12833 - */ - StringRef MArch = ""; - StringRef MCPU = ""; --- -2.1.0 - Deleted: extra-x86_64/0002-gallivm-set-mcpu-when-initializing-llvm-execution-en.patch =================================================================== --- extra-x86_64/0002-gallivm-set-mcpu-when-initializing-llvm-execution-en.patch 2014-09-20 11:55:30 UTC (rev 222166) +++ extra-x86_64/0002-gallivm-set-mcpu-when-initializing-llvm-execution-en.patch 2014-09-20 12:29:34 UTC (rev 222167) @@ -1,77 +0,0 @@ -From ebe30fd4d4a90219431b6947f233473b2cf518a5 Mon Sep 17 00:00:00 2001 -From: Roland Scheidegger <[email protected]> -Date: Thu, 19 Jun 2014 03:27:26 +0200 -Subject: [PATCH 2/2] gallivm: set mcpu when initializing llvm execution engine - -Previously llvm detected cpu features automatically when the execution engine -was created (based on host cpu). This is no longer the case, which meant llvm -was then not able to emit some of the intrinsics we used as we didn't specify -any sse attributes (only on avx supporting systems this was not a problem since -despite at least some llvm versions enabling it anyway we always set this -manually). So, instead of trying to figure out which MAttrs to set just set -MCPU. - -This fixes https://bugs.freedesktop.org/show_bug.cgi?id=77493. - -Reviewed-by: Jose Fonseca <[email protected]> -Tested-by: Vinson Lee <[email protected]> -(cherry picked from commit cad60420d5ea36a4b6fa2e6c91317f71423aa63e) ---- - src/gallium/auxiliary/gallivm/lp_bld_misc.cpp | 24 ++++++++++++++++++++++-- - 1 file changed, 22 insertions(+), 2 deletions(-) - -diff --git a/src/gallium/auxiliary/gallivm/lp_bld_misc.cpp b/src/gallium/auxiliary/gallivm/lp_bld_misc.cpp -index 45c985d..395ac7b 100644 ---- a/src/gallium/auxiliary/gallivm/lp_bld_misc.cpp -+++ b/src/gallium/auxiliary/gallivm/lp_bld_misc.cpp -@@ -59,6 +59,7 @@ - #include <llvm/ExecutionEngine/JITMemoryManager.h> - #endif - #include <llvm/Support/CommandLine.h> -+#include <llvm/Support/Host.h> - #include <llvm/Support/PrettyStackTrace.h> - - #if HAVE_LLVM >= 0x0300 -@@ -309,8 +310,8 @@ lp_build_create_jit_compiler_for_module(LLVMExecutionEngineRef *OutJIT, - /* - * AVX feature is not automatically detected from CPUID by the X86 target - * yet, because the old (yet default) JIT engine is not capable of -- * emitting the opcodes. But as we're using MCJIT here, it is safe to -- * add set this attribute. -+ * emitting the opcodes. On newer llvm versions it is and at least some -+ * versions (tested with 3.3) will emit avx opcodes without this anyway. - */ - MAttrs.push_back("+avx"); - if (util_cpu_caps.has_f16c) { -@@ -318,9 +319,28 @@ lp_build_create_jit_compiler_for_module(LLVMExecutionEngineRef *OutJIT, - } - builder.setMAttrs(MAttrs); - } -+ -+#if HAVE_LLVM >= 0x0305 -+ StringRef MCPU = llvm::sys::getHostCPUName(); -+ /* -+ * The cpu bits are no longer set automatically, so need to set mcpu manually. -+ * Note that the MAttrs set above will be sort of ignored (since we should -+ * not set any which would not be set by specifying the cpu anyway). -+ * It ought to be safe though since getHostCPUName() should include bits -+ * not only from the cpu but environment as well (for instance if it's safe -+ * to use avx instructions which need OS support). According to -+ * http://llvm.org/bugs/show_bug.cgi?id=19429 however if I understand this -+ * right it may be necessary to specify older cpu (or disable mattrs) though -+ * when not using MCJIT so no instructions are generated which the old JIT -+ * can't handle. Not entirely sure if we really need to do anything yet. -+ */ -+ builder.setMCPU(MCPU); -+#endif -+ - builder.setJITMemoryManager(JITMemoryManager::CreateDefaultMemManager()); - - ExecutionEngine *JIT; -+ - #if HAVE_LLVM >= 0x0302 - JIT = builder.create(); - #else --- -2.1.0 - Modified: extra-x86_64/PKGBUILD =================================================================== --- extra-x86_64/PKGBUILD 2014-09-20 11:55:30 UTC (rev 222166) +++ extra-x86_64/PKGBUILD 2014-09-20 12:29:34 UTC (rev 222167) @@ -4,8 +4,8 @@ pkgbase=mesa pkgname=('opencl-mesa' 'ati-dri' 'intel-dri' 'nouveau-dri' 'svga-dri' 'mesa' 'mesa-libgl') -pkgver=10.2.7 -pkgrel=3 +pkgver=10.2.8 +pkgrel=1 arch=('i686' 'x86_64') makedepends=('python2' 'libxml2' 'libx11' 'glproto' 'libdrm' 'dri2proto' 'dri3proto' 'presentproto' 'libxshmfence' 'libxxf86vm' 'libxdamage' 'libvdpau' 'wayland' 'elfutils' 'llvm' 'systemd' @@ -13,28 +13,11 @@ url="http://mesa3d.sourceforge.net" license=('custom') source=(ftp://ftp.freedesktop.org/pub/mesa/${pkgver}/MesaLib-${pkgver}.tar.bz2{,.sig} - llvm35.patch - 0001-gallivm-Disable-workaround-for-PR12833-on-LLVM-3.2.patch - 0002-gallivm-set-mcpu-when-initializing-llvm-execution-en.patch LICENSE) -sha256sums=('27b958063a4c002071f14ed45c7d2a1ee52cd85e4ac8876e8a1c273495a7d43f' +sha256sums=('1ef9ad3f241788d454f2ff8c9d65b6849dfc31c8fe91f70fd2930b81c8af1398' 'SKIP' - 'd3d433564cd21da8aa56a9ceccee6122d5991cae2bd1924173359f13bd38bd6f' - '5d66636b06736027708ffa60afb92fc81f085df35b9d91ab7ac4107c8b52d500' - '8dc0935e66669bc111e69a80057831aa1f675179ca689c1c044ab588587da010' '7fdc119cf53c8ca65396ea73f6d10af641ba41ea1dd2bd44a824726e01c8b3f2') -prepare() { - cd ${srcdir}/?esa-* - - patch -Np1 -i ../llvm35.patch - - # https://bugs.freedesktop.org/show_bug.cgi?id=77493 - # https://bugs.freedesktop.org/show_bug.cgi?id=83735 - patch -Np1 -i ../0001-gallivm-Disable-workaround-for-PR12833-on-LLVM-3.2.patch - patch -Np1 -i ../0002-gallivm-set-mcpu-when-initializing-llvm-execution-en.patch -} - build() { cd ${srcdir}/?esa-* Deleted: extra-x86_64/llvm35.patch =================================================================== --- extra-x86_64/llvm35.patch 2014-09-20 11:55:30 UTC (rev 222166) +++ extra-x86_64/llvm35.patch 2014-09-20 12:29:34 UTC (rev 222167) @@ -1,26 +0,0 @@ -From 564821c917f4a9d5a0de2ee77b90b0cd85e3d3a6 Mon Sep 17 00:00:00 2001 -From: Aaron Watry <[email protected]> -Date: Fri, 20 Jun 2014 19:13:30 -0500 -Subject: gallivm: Fix build after LLVM commit 211259 - -Signed-off-by: Aaron Watry <[email protected]> -Reviewed-by: Tom Stellard <[email protected]> - -diff --git a/src/gallium/auxiliary/gallivm/lp_bld_debug.cpp b/src/gallium/auxiliary/gallivm/lp_bld_debug.cpp -index df26883..413a0c2 100644 ---- a/src/gallium/auxiliary/gallivm/lp_bld_debug.cpp -+++ b/src/gallium/auxiliary/gallivm/lp_bld_debug.cpp -@@ -51,7 +51,9 @@ - #include <llvm/MC/MCInstPrinter.h> - #include <llvm/MC/MCRegisterInfo.h> - --#if HAVE_LLVM >= 0x0303 -+#if HAVE_LLVM >= 0x0305 -+#define OwningPtr std::unique_ptr -+#elif HAVE_LLVM >= 0x0303 - #include <llvm/ADT/OwningPtr.h> - #endif - --- -cgit v0.10.2 -
