Mesa (staging/20.1): 32 new commits

GitLab Mirror gitlab-mirror at kemper.freedesktop.org
Thu Jun 4 15:59:20 UTC 2020


URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=33c306bfa92c2574ffbe3bb616f7e35b2165eaac
Author: Erik Faye-Lund <erik.faye-lund at collabora.com>
Date:   Tue Jun 2 10:44:13 2020 +0200

    nir: reuse existing psiz-variable
    
    For shaders where there's already a psiz-variable, we should rather
    reuse it than create a second one. This can happen if a shader writes
    gl_PointSize, but disables GL_PROGRAM_POINT_SIZE.
    
    Fixes: 878c94288a8 ("nir: add lowering-pass for point-size mov")
    Reviewed-by: Alyssa Rosenzweig <alyssa.rosenzweig at collabora.com>
    Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/5328>
    (cherry picked from commit e61a98877ccdaf7ec1f9f890f0f7c1a993ee70a1)

URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=83396e9ac2ebbe7dd25ce15b048d61862f0182d5
Author: Lionel Landwerlin <lionel.g.landwerlin at intel.com>
Date:   Sat May 2 16:46:47 2020 +0300

    iris: fix export of GEM handles
    
    We reuse DRM file descriptors internally. Therefore when we export a
    GEM handle we must do so in the file descriptor used externally.
    
    This change also fixes a file descriptor leak of the FD given at
    screen creation.
    
    v2: Don't bother checking fd equals, they're always different
        Fix dmabuf leak
        Fix GEM handle leaks by tracking exported handles
    
    v3: Check os_same_file_description error (Michel)
        Don't create multiple exports for a given GEM table
    
    v4: Add WARN_ONCE (Ken)
        Rename external_fd to winsys_fd
    
    v5: Remove export lock in favor of bufmgr's
    
    Signed-off-by: Lionel Landwerlin <lionel.g.landwerlin at intel.com>
    Closes: https://gitlab.freedesktop.org/mesa/mesa/-/issues/2882
    Fixes: 7557f1605968 ("iris: share buffer managers accross screens")
    Tested-by: Eric Engestrom <eric at engestrom.ch>
    Tested-by: Tapani Pälli <tapani.palli at intel.com>
    Reviewed-by: Kenneth Graunke <kenneth at whitecape.org>
    Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/4861>
    (cherry picked from commit aba3aed96e4394a213e188f2f71ef045803a27c5)

URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=e5fd6b6084aaff10867625fdc3b29c1e26426f8b
Author: Lionel Landwerlin <lionel.g.landwerlin at intel.com>
Date:   Sat May 2 16:59:19 2020 +0300

    i965: fix export of GEM handles
    
    We reuse DRM file descriptors internally. Therefore when we export a
    GEM handle we must do so in the file descriptor used externally.
    
    v2: Fix dmabuf leak
        Fix GEM handle leaks by tracking exported handles
    
    v3: Check os_same_file_description error (Michel)
        Don't create multiple exports for a given GEM table
    
    v4: Add WARN_ONCE (Ken)
    
    v5: Remove blank line (Ian)
        Remove unused field (Ian)
    
    Signed-off-by: Lionel Landwerlin <lionel.g.landwerlin at intel.com>
    Closes: https://gitlab.freedesktop.org/mesa/mesa/-/issues/2882
    Fixes: 4094558e8643 ("i965: share buffer managers across screens")
    Tested-by: Eric Engestrom <eric at engestrom.ch>
    Tested-by: Tapani Pälli <tapani.palli at intel.com>
    Reviewed-by: Kenneth Graunke <kenneth at whitecape.org>
    Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/4861>
    (cherry picked from commit 57e4d0aa1c16d3be36ccee4065c55901cb6fad43)

URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=25f62440a1d025c92c2a08ba45f675944184547d
Author: Lionel Landwerlin <lionel.g.landwerlin at intel.com>
Date:   Tue Jun 2 11:52:35 2020 +0300

    i965: don't forget to set screen on duped image
    
    We'll start using this field more for querying image properties.
    Without it we run into a crash.
    
    Signed-off-by: Lionel Landwerlin <lionel.g.landwerlin at intel.com>
    Cc: <mesa-stable at lists.freedesktop.org>
    Reviewed-by: Kenneth Graunke <kenneth at whitecape.org>
    Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/4861>
    (cherry picked from commit e41e820648b1cb662cbe938c73d755331d48c6db)

URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=0c9b435c03a691f6defb1c710da4958d8e5f8c31
Author: Lionel Landwerlin <lionel.g.landwerlin at intel.com>
Date:   Sat May 2 22:43:22 2020 +0300

    iris: fix BO destruction in error path
    
    Signed-off-by: Lionel Landwerlin <lionel.g.landwerlin at intel.com>
    Cc: <mesa-stable at lists.freedesktop.org>
    Tested-by: Tapani Pälli <tapani.palli at intel.com>
    Reviewed-by: Ian Romanick <ian.d.romanick at intel.com>
    Reviewed-by: Kenneth Graunke <kenneth at whitecape.org>
    Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/4861>
    (cherry picked from commit 604a86e46f67b517e43c4646080ee1993ff95ecd)

URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=882afb1c845ba05577c4cb4e437aebc1e052b4b2
Author: Vinson Lee <vlee at freedesktop.org>
Date:   Sat May 23 13:46:28 2020 -0700

    mesa: Fix NetBSD compiler macro.
    
    Reported-by: Rafał Mikrut <mikrutrafal54 at gmail.com>
    Fixes: a63b90712aad ("mesa: also check for __NetBSD__")
    Closes: https://gitlab.freedesktop.org/mesa/mesa/-/issues/3015
    Signed-off-by: Vinson Lee <vlee at freedesktop.org>
    Reviewed-by: Eric Engestrom <eric at engestrom.ch>
    Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/5191>
    (cherry picked from commit c3025bde192919649999da202e7527849bf2038f)

URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=7369ffe16822e41678d0d81c55dfd2530724e0cd
Author: Vinson Lee <vlee at freedesktop.org>
Date:   Fri May 22 17:59:27 2020 -0700

    vdpau: Fix wrong calloc sizeof argument.
    
    Fix warning reported by Coverity Scan.
    
    Wrong sizeof argument (SIZEOF_MISMATCH)
    suspicious_sizeof: Passing argument 3544UL (sizeof
    (vlVdpPresentationQueue)) to function calloc that returns a pointer of
    type vlVdpPresentationQueueTarget * is suspicious because a multiple of
    sizeof (vlVdpPresentationQueueTarget) /*16*/ is expected.
    
    Fixes: 65fe0866aec7 ("vl: implemented a few functions and made stubs to get mplayer running")
    Closes: https://gitlab.freedesktop.org/mesa/mesa/-/issues/3026
    Signed-off-by: Vinson Lee <vlee at freedesktop.org>
    Reviewed-by: Pierre-Eric Pelloux-Prayer <pierre-eric.pelloux-prayer at amd.com>
    Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/5182>
    (cherry picked from commit 8b353524b04fa9cd77e21e2d036c69f1cff30c35)

URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=81d27aa7f078838ee5fadd2de1abf0aa354f973e
Author: Danylo Piliaiev <danylo.piliaiev at globallogic.com>
Date:   Fri May 29 16:20:45 2020 +0300

    glsl: Don't replace lrp pattern with lrp if arguments are not floats
    
    We don't have "lrp(int, int, int)" and validation of ir_triop_lrp
    fails down the road.
    
    Fixes: 8d37e991
    Closes: https://gitlab.freedesktop.org/mesa/mesa/-/issues/3059
    Signed-off-by: Danylo Piliaiev <danylo.piliaiev at globallogic.com>
    Tested-by: Witold Baryluk <witold.baryluk at gmail.com>
    Reviewed-by: Marek Olšák <marek.olsak at amd.com>
    Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/5257>
    (cherry picked from commit 9f3956fea080d73d98fc28bc8cd148755b597b74)

URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=de55c73f76f8b0c7e1081fe0496a5f06c0983679
Author: Samuel Pitoiset <samuel.pitoiset at gmail.com>
Date:   Fri May 29 20:26:00 2020 +0200

    radv: enable zero VRAM for all VKD3D (DX12->VK) games
    
    To fix rendering issues with Metro Exodus, RE2 and 3 and probably
    more titles. It seems the default behaviour of DX12 anyways.
    
    Closes: https://gitlab.freedesktop.org/mesa/mesa/-/issues/3064
    Cc: <mesa-stable at lists.freedesktop.org>
    Signed-off-by: Samuel Pitoiset <samuel.pitoiset at gmail.com>
    Reviewed-by: Bas Nieuwenhuizen <bas at basnieuwenhuizen.nl>
    Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/5262>
    (cherry picked from commit d3c937c0e4d1dd05072d9a7169532517ef7d0c7f)

URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=e8247e1ab1c686e1e882c8eb4f7a6f6fc26b9f24
Author: Samuel Pitoiset <samuel.pitoiset at gmail.com>
Date:   Fri May 29 20:02:49 2020 +0200

    radv: enable zero VRAM for Doom Eternal
    
    That fixes some rendering issues. Probably some unitialized data
    from the game.
    
    Closes: https://gitlab.freedesktop.org/mesa/mesa/-/issues/3064
    Cc: <mesa-stable at lists.freedesktop.org>
    Signed-off-by: Samuel Pitoiset <samuel.pitoiset at gmail.com>
    Reviewed-by: Bas Nieuwenhuizen <bas at basnieuwenhuizen.nl>
    Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/5262>
    (cherry picked from commit fd5ffd3a83e178f14fcc69806d3a52724f05b56c)

URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=fde055f5d5b1335c0d7fa5c4645e99a6cd5407d2
Author: Erik Faye-Lund <erik.faye-lund at collabora.com>
Date:   Thu May 28 14:41:17 2020 +0200

    zink: Use store_dest_raw instead of storing an uint
    
    I cleaned up the other similar call-sites, but somehow missed this one.
    There's nothing different with this, so let's also fix this.
    
    Fixes: 16339646f03 ("zink/spirv: rename functions a bit")
    Reviewed-by: Mike Blumenkrantz <michael.blumenkrantz at gmail.com>
    Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/5250>
    (cherry picked from commit a21966837acd2e053ce183c5f145afcff2fd51b7)

URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=f8df5693365764c1fe9e11bb94d1d916bbd60c29
Author: Marek Olšák <marek.olsak at amd.com>
Date:   Tue May 26 05:39:08 2020 -0400

    radeonsi: add a hack to disable TRUNC_COORD for shadow samplers
    
    This fixes dEQP-GLES3.functional.shaders.texture_functions.textureprojlodoffset.sampler2dshadow_vertex.
    
    This is probably a dEQP bug.
    
    Fixes: d573d1d82524b8a2e5f56938069cabc0f0176a0e
    
    Acked-by: Pierre-Eric Pelloux-Prayer <pierre-eric.pelloux-prayer at amd.com>
    Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/5209>
    (cherry picked from commit fe3947632ce9946562a39ef95a6796b8604f1f42)

URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=22e29bb59dd59f083b6f323e93df551a9fb4dd21
Author: Dylan Baker <dylan.c.baker at intel.com>
Date:   Wed May 20 18:00:14 2020 -0700

    vulkan-overlay/meson: use install_data instead of configure_file
    
    We don't want to copy the file into the build directory, we want to
    install it. That's what install_data is for.
    
    Closes: https://gitlab.freedesktop.org/mesa/mesa/-/issues/2924
    Fixes: 56ccea58ae7f6fd56cf4a1697d2cceb68866b552
           ("vulkan/overlay: Add basic overlay control script.")
    
    Acked-by: Matt Turner <mattst88 at gmail.com>
    Reviewed-by: Eric Engestrom <eric at engestrom.ch>
    Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/4740>
    (cherry picked from commit fb62e642ae667c99aeb3015fa77ab668af5e4ee6)

URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=9daaf52e9a24a1162e53cac315f53af52610eb3c
Author: Satyeshwar Singh <satyeshwar.singh at intel.com>
Date:   Thu May 28 00:44:26 2020 -0700

    intel/dev: Don't consider all TGL SKUs as GT1 only
    
    We should be passing _gt instead of 1 to GEN12_FEATURES or else all TGL
    SKUs will be considered as gt1 only.
    
    Fixes: 54996ad4927 ("intel/dev: Split .num_subslices out of GEN12_FEATURES macro")
    Signed-off-by: Satyeshwar Singh <satyeshwar.singh at intel.com>
    Reviewed-by: Eric Engestrom <eric at engestrom.ch>
    Reviewed-by: Jordan Justen <jordan.l.justen at intel.com>
    Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/5261>
    (cherry picked from commit aaec065f03e65f75fd18f8cc24d003f220209714)

URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=18b9a33a128ce306237ac79b5377fbd747db3663
Author: Vinson Lee <vlee at freedesktop.org>
Date:   Fri May 29 17:13:35 2020 -0700

    r300g: Remove extra printf format specifiers.
    
    Fix warning reported by Coverity Scan.
    Missing argument to printf format specifier (PRINTF_ARGS)
    missing_argument: No argument for format specifier %s.
    
    Fixes: 04c1536bf7ab ("r300g: rasterizer debug logging")
    Fixes: 85efb2fff0d4 ("r300g: try to use color varyings for texcoords if max texcoord limit is exceeded")
    Signed-off-by: Vinson Lee <vlee at freedesktop.org>
    Reviewed-by: Marek Olšák <marek.olsak at amd.com>
    Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/5274>
    (cherry picked from commit d2f8105b606269c0e71cd599f57997279385d300)

URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=14340d78f7f7099f030de6fbc5db7a0a8e2c6098
Author: Ilia Mirkin <imirkin at alum.mit.edu>
Date:   Sat May 30 02:47:42 2020 -0400

    nouveau: allow invalidating coherent/persistent buffer backings
    
    This is needed to support the core's usage of coherent buffers for
    glVertex-style input. The reason why this was disallowed is that any
    mappings will be invalidated. Let the state tracker worry about that,
    and just reallocate when we're told.
    
    Signed-off-by: Ilia Mirkin <imirkin at alum.mit.edu>
    Reviewed-by: Karol Herbst <kherbst at redhat.com>
    Cc: mesa-stable at lists.freedesktop.org
    Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/5276>
    (cherry picked from commit 6e1c47b98df384b46ff41ffbf9689a93c78c040d)

URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=b309050fbe207e6a950c407e9912920676872a9e
Author: Jason Ekstrand <jason at jlekstrand.net>
Date:   Sun Apr 26 09:48:16 2020 -0500

    intel/fs: Fix unused texture coordinate zeroing on Gen4-5
    
    We were inserting the right number of MOVs but, thanks to the way we
    advanced msg_end earlier in the function, were often writing the zeros
    past the end of where we actually read in the register file.
    
    Cc: mesa-stable at lists.freedesktop.org
    Reviewed-by: Kenneth Graunke <kenneth at whitecape.org>
    Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/5243>
    (cherry picked from commit 94aa7997e45b5314d169bbee5bf22ad368c2fd25)

URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=945ec78c481e2fa5c424acd42c95a78fff6c6c79
Author: Jason Ekstrand <jason at jlekstrand.net>
Date:   Sat Apr 25 14:15:11 2020 -0500

    intel/vec4: Stomp the return type of RESINFO to UINT32
    
    We already do this in the FS back-end; we just weren't doing it in vec4
    so RESINFO messages weren't returning the right data.
    
    Cc: mesa-stable at lists.freedesktop.org
    Reviewed-by: Kenneth Graunke <kenneth at whitecape.org>
    Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/5243>
    (cherry picked from commit a7c8811fe4012b60a9bcdb2ea2ef6ab79e402809)

URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=f28169c5ee1e4daa291a64772556ca8b75e911d6
Author: Timothy Arceri <tarceri at itsqueeze.com>
Date:   Fri May 29 17:02:24 2020 +1000

    radv: fix regression with builtin cache
    
    If the ~/.cache dir already exists continue on without failing.
    
    Fixes: cd61f5234d2c ("radv: Handle failing to create .cache dir.")
    
    Tested-by: Dieter Nützel <Dieter at nuetzel-hh.de>
    Reviewed-by: Samuel Pitoiset <samuel.pitoiset at gmail.com>
    Reviewed-by: Bas Nieuwenhuizen <bas at basnieuwenhuizen.nl>
    Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/5249>
    (cherry picked from commit e843303d6f18d56d7c412e6c879134f7b79372ac)

URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=ff831d91d434b64fc55c92ddf50309a02ca5a767
Author: Vinson Lee <vlee at freedesktop.org>
Date:   Tue May 26 15:54:06 2020 -0700

    etnaviv: Fix memory leak on error path.
    
    Fix warning reported by Coverity Scan.
    
    Resource leak (RESOURCE_LEAK)
    leaked_storage: Variable pq going out of scope leaks the storage it
    points to.
    
    Suggested-by: Christian Gmeiner <christian.gmeiner at gmail.com>
    Fixes: eed5a009897a ("etnaviv: convert perfmon queries to acc queries")
    Signed-off-by: Vinson Lee <vlee at freedesktop.org>
    Reviewed-by: Christian Gmeiner <christian.gmeiner at gmail.com>
    Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/5220>
    (cherry picked from commit f047d585ee472a314d4ad5da4dffa5e7c2a42eb5)

URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=bbcf412e8eeafc728f19be64a9d8a7d5c4453b2c
Author: Alyssa Rosenzweig <alyssa.rosenzweig at collabora.com>
Date:   Wed May 27 18:27:08 2020 -0400

    pan/bi: Fix emit_if successor assignment
    
    Signed-off-by: Alyssa Rosenzweig <alyssa.rosenzweig at collabora.com>
    Fixes: 9a00cf3d1ef ("pan/bi: Add support for if-else blocks")
    Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/5260>
    (cherry picked from commit e42a5dfd4f2b22c73f4627128ac6d3dbcb10aca1)

URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=dee817f00e578f75818d16c3cf367c66c4d85838
Author: Samuel Pitoiset <samuel.pitoiset at gmail.com>
Date:   Fri May 29 10:02:39 2020 +0200

    aco: fix register allocation for subdword instructions on GFX10
    
    Cc: 20.1 <mesa-stable at lists.freedesktop.org>
    Signed-off-by: Samuel Pitoiset <samuel.pitoiset at gmail.com>
    Reviewed-by: Daniel Schürmann <daniel at schuermann.dev>
    Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/5148>
    (cherry picked from commit 75a730ced59701201ef4247cbe2189a9be6a9d18)

URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=cd49a44d51f8d2c303d5b32eaf17e4438f3d0ef9
Author: Vinson Lee <vlee at freedesktop.org>
Date:   Wed May 27 16:19:25 2020 -0700

    zink: Check fopen result.
    
    Fix warning reported by Coverity.
    
    Dereference null return value (NULL_RETURNS)
    dereference: Dereferencing a pointer that might be NULL fp when calling
    fwrite.
    
    Fixes: 8d46e35d16e3 ("zink: introduce opengl over vulkan")
    Signed-off-by: Vinson Lee <vlee at freedesktop.org>
    Reviewed-by: Erik Faye-Lund <erik.faye-lund at collabora.com>
    Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/5235>
    (cherry picked from commit a2ee293422c09c9ecc8150ad70d29273e28c6a71)

URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=ff108313cc6a5f490a283a30c506b502174b5c1a
Author: Neha Bhende <bhenden at vmware.com>
Date:   Wed May 27 20:45:29 2020 +0530

    util: Initialize pipe_shader_state for passthrough and transform shaders
    
    mesa/st is initializing pipe_shader_state for user define shaders.
    This patch intialized pipe_shader_state for all passthough
    and transform shaders.
    
    This fixes crashes for several opengl apps. Issue is found in vmware
    internal testing
    
    Fixes: f01c0565bb9 ("draw: free the NIR IR.")
    
    Reviewed-by: Charmaine Lee <charmainel at vmware.com>
    Reviewed-by: Roland Scheidegger <sroland at vmware.com>
    Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/5240>
    (cherry picked from commit 838666a41dcbbf566bff57e7a7b841e50bf2bdce)

URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=9bcb10594f0cb6ee70a3ab5e0b3847e6a51f92c5
Author: Gert Wollny <gert.wollny at collabora.com>
Date:   Tue May 19 17:52:31 2020 +0200

    nir: lower_tex: Don't normalize coordinates for TXF with RECT
    
    v2: remove the option to actually request normalization and its
        application in Intel < Gen6 (Jason)
    
    v3: Also don't lower for query operations (Jason)
    
    Fixes: 1ce8060c25c7f2c7a54159fab6a6974c0ba182a8
        nir/lower_tex: support for lowering RECT textures
    
    Signed-off-by: Gert Wollny <gert.wollny at collabora.com>
    Reviewed-by: Jason Ekstrand <jason at jlekstrand.net>
    Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/5105>
    (cherry picked from commit 682e14d3eaee8991ee08ea309cbf9a509b6e6b27)

URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=9f8f438c2684e5913a9c7ba30e1f847e0e27a399
Author: Samuel Pitoiset <samuel.pitoiset at gmail.com>
Date:   Thu May 28 10:21:27 2020 +0200

    spirv,radv,anv: implement no-op VK_GOOGLE_user_type
    
    This extension only allows HLSL shader compilers to optionally embed
    unambiguous type information which can be safely ignored by the driver.
    
    This fixes a crash with the recent Vulkan backend of Path Of Exile
    (it uses the extension without checking if it's supported).
    
    Cc: <mesa-stable at lists.freedesktop.org>
    Signed-off-by: Samuel Pitoiset <samuel.pitoiset at gmail.com>
    Tested-by: Edmondo Tommasina <edmondo.tommasina at gmail.com>
    Reviewed-by: Jason Ekstrand <jason at jlekstrand.net>
    Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/5237>
    (cherry picked from commit 10c4a7cf59733ae2058a76b880ea0767a59dad4f)

URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=25a96bedd8e69429f29da4af6b013fa7d4fa9f40
Author: Rhys Perry <pendingchaos02 at gmail.com>
Date:   Thu Apr 30 16:10:42 2020 +0100

    aco: preserve more fields when combining additions into SMEM
    
    Totals from 11 (0.01% of 127638) affected shaders:
    
    Signed-off-by: Rhys Perry <pendingchaos02 at gmail.com>
    Fixes: 93c8ebfa780 ('aco: Initial commit of independent AMD compiler')
    Reviewed-by: Daniel Schürmann <daniel at schuermann.dev>
    Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/4880>
    (cherry picked from commit e1900ee2c70c15dea56027c21676174704f12348)

URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=9bceba9d9a119b087cee293d5b4b7e607e954fd7
Author: Rhys Perry <pendingchaos02 at gmail.com>
Date:   Wed Apr 29 17:47:50 2020 +0100

    aco: check instruction format before waiting for a previous SMEM store
    
    Totals from 7 (0.01% of 127638) affected shaders:
    CodeSize: 40336 -> 40320 (-0.04%)
    Instrs: 7807 -> 7803 (-0.05%)
    Cycles: 118588 -> 118344 (-0.21%); split: -0.23%, +0.02%
    SMEM: 331 -> 339 (+2.42%)
    
    Signed-off-by: Rhys Perry <pendingchaos02 at gmail.com>
    Fixes: 1749953ea3 ('aco/gfx10: Wait for pending SMEM stores before loads')
    Reviewed-by: Daniel Schürmann <daniel at schuermann.dev>
    Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/4880>
    (cherry picked from commit 95d5c1b8a1ebe4a2ce47206b9ff0af4fbfd5a31a)

URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=eb666458362d54603f7b8c020ccbbf0260155122
Author: Rhys Perry <pendingchaos02 at gmail.com>
Date:   Fri May 22 15:42:39 2020 +0100

    aco: consider SDWA during value numbering
    
    Signed-off-by: Rhys Perry <pendingchaos02 at gmail.com>
    Fixes: 23ac24f5b1fdde73cf8ec1ef6cbe08d73d6776f5
       ('aco: add missing conversion operations for small bitsizes')
    
    Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/5164>
    (cherry picked from commit 5ccc7c277c86f754f40515820b27b55296107c54)

URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=b398658c0d16d1e435a85db74bb74bc9e37c112e
Author: Rhys Perry <pendingchaos02 at gmail.com>
Date:   Fri May 22 15:42:12 2020 +0100

    aco: fix interaction with 3f branch workaround and p_constaddr
    
    The offset was incorrect if we inserted a nop before the p_constaddr.
    
    Signed-off-by: Rhys Perry <pendingchaos02 at gmail.com>
    Fixes: 93c8ebfa ('aco: Initial commit of independent AMD compiler')
    Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/5164>
    (cherry picked from commit 8aa98cebc15e6f6f8bcf42162399b5826376b3dc)

URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=3d659e0fe5e3aa8abedbf39877fe6af30d3c421f
Author: Vinson Lee <vlee at freedesktop.org>
Date:   Tue May 26 17:26:47 2020 -0700

    pan/bi: Initialize struct fma_op_info member extended.
    
    Fix warning reported by Coverity Scan.
    
    Uninitialized scalar variable (UNINIT)
    uninit_use: Using uninitialized value info. Field info.extended is
    uninitialized.
    
    Fixes: 8c79c710d4e1 ("pan/bi: Identify extended FMA opcodes")
    Signed-off-by: Vinson Lee <vlee at freedesktop.org>
    Reviewed-by: Alyssa Rosenzweig <alyssa.rosenzweig at collabora.com>
    Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/5224>
    (cherry picked from commit df2c68ee4fd470efdc4f0121a2fe4aa5c64771e0)

URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=d6aa222ceaf17e871822d7263eb36baaf8525c0a
Author: Eric Engestrom <eric at engestrom.ch>
Date:   Thu May 28 01:19:03 2020 +0200

    .pick_status.json: Update to 622e3a8510ad6ccff41b2ba2f6184b80ad67dea5



More information about the mesa-commit mailing list