i965: Validate the IR tree after doing our custom optimization passes.
authorEric Anholt <eric@anholt.net>
Fri, 27 Aug 2010 19:02:53 +0000 (12:02 -0700)
committerEric Anholt <eric@anholt.net>
Fri, 27 Aug 2010 19:19:17 +0000 (12:19 -0700)
This wouldn't catch the last failure fixed in them, because we don't
validate assignments well (due to the fact that we've got a pretty
glaring inconsistency in how we handle assignment writemasking), but
it could catch other failure we may produce.

src/mesa/drivers/dri/i965/brw_fs.cpp

index 749a2f2eb797a94960c19d32f943499b7840e316..f8b06226d791723d7fd3ed0a25dd7837de89ac43 100644 (file)
@@ -144,6 +144,8 @@ brw_link_shader(GLcontext *ctx, struct gl_shader_program *prog)
            progress = do_common_optimization(shader->ir, true) || progress;
         } while (progress);
 
+        validate_ir_tree(shader->ir);
+
         reparent_ir(shader->ir, shader->ir);
         talloc_free(mem_ctx);
       }