glsl/ir_builder: Add a generic constructor for unary expressions.
authorKenneth Graunke <kenneth@whitecape.org>
Mon, 9 Jul 2012 05:27:25 +0000 (22:27 -0700)
committerKenneth Graunke <kenneth@whitecape.org>
Thu, 12 Jul 2012 17:20:18 +0000 (10:20 -0700)
I needed to compute logs and square roots in a patch I was working on,
and wanted to use the convenient interface.  We already have a similar
constructor for binops; adding one for unops seems reasonable.

Signed-off-by: Kenneth Graunke <kenneth@whitecape.org>
Reviewed-by: Eric Anholt <eric@anholt.net>
src/glsl/ir_builder.cpp
src/glsl/ir_builder.h

index 9a16c90e5cd900935bf660d94f9cc4e8fd321e74..fc6ee96a3318225650a8b70c029a574e5bc3c10f 100644 (file)
@@ -142,6 +142,14 @@ swizzle_xyzw(operand a)
    return swizzle(a, SWIZZLE_XYZW, 4);
 }
 
+ir_expression *
+expr(ir_expression_operation op, operand a)
+{
+   void *mem_ctx = ralloc_parent(a.val);
+
+   return new(mem_ctx) ir_expression(op, a.val);
+}
+
 ir_expression *
 expr(ir_expression_operation op, operand a, operand b)
 {
index 0ebcbab95c207343c86a3c0d936fd18f16b90089..410b08cd0528fff647e186c4921154794806650a 100644 (file)
@@ -83,6 +83,7 @@ public:
 ir_assignment *assign(deref lhs, operand rhs);
 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 *add(operand a, operand b);
 ir_expression *sub(operand a, operand b);