spirv: Add a MESA_SPIRV_FORCE_UNSTRUCTURED environment variable
authorJason Ekstrand <jason@jlekstrand.net>
Thu, 13 Aug 2020 16:48:02 +0000 (11:48 -0500)
committerMarge Bot <eric+marge@anholt.net>
Fri, 14 Aug 2020 20:35:37 +0000 (20:35 +0000)
Reviewed-by: Karol Herbst <kherbst@redhat.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/2401>

src/compiler/spirv/vtn_cfg.c

index 9dc2a842da65ed859c52fe3c00b74444b8cb1aaf..074f61b331e90748c2b9b1b4b98ff553505e3f61 100644 (file)
@@ -1329,6 +1329,12 @@ void
 vtn_function_emit(struct vtn_builder *b, struct vtn_function *func,
                   vtn_instruction_handler instruction_handler)
 {
+   static int force_unstructured = -1;
+   if (force_unstructured < 0) {
+      force_unstructured =
+         env_var_as_boolean("MESA_SPIRV_FORCE_UNSTRUCTURED", false);
+   }
+
    nir_builder_init(&b->nb, func->impl);
    b->func = func;
    b->nb.cursor = nir_after_cf_list(&func->impl->body);
@@ -1336,7 +1342,7 @@ vtn_function_emit(struct vtn_builder *b, struct vtn_function *func,
    b->has_loop_continue = false;
    b->phi_table = _mesa_pointer_hash_table_create(b);
 
-   if (b->shader->info.stage == MESA_SHADER_KERNEL) {
+   if (b->shader->info.stage == MESA_SHADER_KERNEL || force_unstructured) {
       b->func->impl->structured = false;
       vtn_emit_cf_func_unstructured(b, func, instruction_handler);
    } else {