Mesa (main): aco: Emit zero for the derivatives of uniforms.

GitLab Mirror gitlab-mirror at kemper.freedesktop.org
Fri Aug 27 20:51:33 UTC 2021


Module: Mesa
Branch: main
Commit: cfb0d931f27438c1f7c94defa078f2f9454c5a54
URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=cfb0d931f27438c1f7c94defa078f2f9454c5a54

Author: Timur Kristóf <timur.kristof at gmail.com>
Date:   Thu Aug 26 16:36:28 2021 +0200

aco: Emit zero for the derivatives of uniforms.

Observed in a shader from Resident Evil Village.
This also helps prevent emitting invalid IR.

Cc: mesa-stable
Signed-off-by: Timur Kristóf <timur.kristof at gmail.com>
Reviewed-by: Rhys Perry <pendingchaos02 at gmail.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/12599>

---

 src/amd/compiler/aco_instruction_selection.cpp | 8 ++++++++
 1 file changed, 8 insertions(+)

diff --git a/src/amd/compiler/aco_instruction_selection.cpp b/src/amd/compiler/aco_instruction_selection.cpp
index 631e3c550e1..31c25ddb68b 100644
--- a/src/amd/compiler/aco_instruction_selection.cpp
+++ b/src/amd/compiler/aco_instruction_selection.cpp
@@ -3487,6 +3487,14 @@ visit_alu_instr(isel_context* ctx, nir_alu_instr* instr)
    case nir_op_fddy_fine:
    case nir_op_fddx_coarse:
    case nir_op_fddy_coarse: {
+      if (!nir_src_is_divergent(instr->src[0].src)) {
+         /* Source is the same in all lanes, so the derivative is zero.
+          * This also avoids emitting invalid IR.
+          */
+         bld.copy(Definition(dst), Operand::zero());
+         break;
+      }
+
       Temp src = as_vgpr(ctx, get_alu_src(ctx, instr->src[0]));
       uint16_t dpp_ctrl1, dpp_ctrl2;
       if (instr->op == nir_op_fddx_fine) {



More information about the mesa-commit mailing list