glsl: Optimize (not A) and (not B) into not (A or B).
authorMatt Turner <mattst88@gmail.com>
Wed, 23 Oct 2013 23:42:34 +0000 (16:42 -0700)
committerMatt Turner <mattst88@gmail.com>
Fri, 25 Oct 2013 17:35:18 +0000 (10:35 -0700)
No shader-db changes, but seems like a good idea.

Reviewed-by: Eric Anholt <eric@anholt.net>
src/glsl/opt_algebraic.cpp

index 22d2dbf..1351904 100644 (file)
@@ -401,6 +401,15 @@ ir_algebraic_visitor::handle_expression(ir_expression *ir)
       } else if (is_vec_zero(op_const[0]) || is_vec_zero(op_const[1])) {
         this->progress = true;
         return ir_constant::zero(mem_ctx, ir->type);
+      } else if (op_expr[0] && op_expr[0]->operation == ir_unop_logic_not &&
+                 op_expr[1] && op_expr[1]->operation == ir_unop_logic_not) {
+         /* De Morgan's Law:
+          *    (not A) and (not B) === not (A or B)
+          */
+         temp = logic_not(logic_or(op_expr[0]->operands[0],
+                                   op_expr[1]->operands[0]));
+         this->progress = true;
+         return swizzle_if_required(ir, temp);
       }
       break;