nir/loop_analyze: skip if basis/limit/comparison is vector
authorRhys Perry <pendingchaos02@gmail.com>
Fri, 13 Oct 2023 18:56:24 +0000 (19:56 +0100)
committerEric Engestrom <eric@engestrom.ch>
Fri, 8 Dec 2023 11:12:56 +0000 (11:12 +0000)
Replacement in try_eval_const_alu() doesn't work because the replacements
are always scalar. The callers also always give a scalar dest.

This is encountered when compiling a Redout shader under ASan.

Signed-off-by: Rhys Perry <pendingchaos02@gmail.com>
Acked-by: Timothy Arceri <tarceri@itsqueeze.com>
Fixes: bc170e895f38 ("nir/loop_analyze: Use try_eval_const_alu and induction variable basis info")
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/26225>
(cherry picked from commit 796058841378c4d5e04ff8b5cbe5adef5aae326a)

.pick_status.json
src/compiler/nir/nir_loop_analyze.c

index e5bb7c2..4e85130 100644 (file)
         "description": "nir/loop_analyze: skip if basis/limit/comparison is vector",
         "nominated": true,
         "nomination_type": 1,
-        "resolution": 0,
+        "resolution": 1,
         "main_sha": null,
         "because_sha": "bc170e895f384acf24c849798fcff092db440135",
         "notes": null
index 4c39de9..f468d23 100644 (file)
@@ -1050,6 +1050,10 @@ calculate_iterations(nir_def *basis, nir_def *limit_basis,
              induction_base_type);
    }
 
+   if (cond.def->num_components != 1 || basis->num_components != 1 ||
+       limit_basis->num_components != 1)
+      return -1;
+
    /* do-while loops can increment the starting value before the condition is
     * checked. e.g.
     *