glsl: Add IR builder support for triops.
authorKenneth Graunke <kenneth@whitecape.org>
Tue, 3 Sep 2013 23:37:39 +0000 (16:37 -0700)
committerKenneth Graunke <kenneth@whitecape.org>
Mon, 9 Sep 2013 18:52:22 +0000 (11:52 -0700)
Now that we have the ir_expression constructor that does type inference,
this is trivial to do.

Signed-off-by: Kenneth Graunke <kenneth@whitecape.org>
Reviewed-by: Matt Turner <mattst88@gmail.com>
Reviewed-by: Paul Berry <stereotype441@gmail.com>
src/glsl/ir_builder.cpp
src/glsl/ir_builder.h

index 7d9cf5e4725d78d3e12f40f2784c78a6a5a7289b..87f57901becf220700a9df7d2010389c4c24d1ab 100644 (file)
@@ -173,6 +173,14 @@ expr(ir_expression_operation op, operand a, operand b)
    return new(mem_ctx) ir_expression(op, a.val, b.val);
 }
 
+ir_expression *
+expr(ir_expression_operation op, operand a, operand b, operand c)
+{
+   void *mem_ctx = ralloc_parent(a.val);
+
+   return new(mem_ctx) ir_expression(op, a.val, b.val, c.val);
+}
+
 ir_expression *add(operand a, operand b)
 {
    return expr(ir_binop_add, a, b);
index 7049476a1cf823d0089e8bbabd624c6db4c53bb6..6c0b5a189bd3edafbfbb0037bf5b5bcbf493c299 100644 (file)
@@ -125,6 +125,7 @@ ir_assignment *assign(deref lhs, operand rhs, int writemask);
 
 ir_expression *expr(ir_expression_operation op, operand a);
 ir_expression *expr(ir_expression_operation op, operand a, operand b);
+ir_expression *expr(ir_expression_operation op, operand a, operand b, operand c);
 ir_expression *add(operand a, operand b);
 ir_expression *sub(operand a, operand b);
 ir_expression *mul(operand a, operand b);