<div dir="ltr"><div><div>This patch and 5-9 are<br><br></div>Reviewed-by: Jason Ekstrand <<a href="mailto:jason@jlekstrand.net">jason@jlekstrand.net</a>><br><br></div>If others think the "unified" approach is nicer, I'll rebase on top and we shouldn't need any nir_opt_algebraic.py changes since the syntax won't change.<br></div><div class="gmail_extra"><br><div class="gmail_quote">On Tue, Jan 10, 2017 at 1:41 AM, Timothy Arceri <span dir="ltr"><<a href="mailto:timothy.arceri@collabora.com" target="_blank">timothy.arceri@collabora.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">---<br>
 src/compiler/nir/nir_<wbr>algebraic.py | 5 ++++-<br>
 src/compiler/nir/nir_search.c     | 3 +++<br>
 src/compiler/nir/nir_search.h     | 8 ++++++++<br>
 3 files changed, 15 insertions(+), 1 deletion(-)<br>
<br>
diff --git a/src/compiler/nir/nir_<wbr>algebraic.py b/src/compiler/nir/nir_<wbr>algebraic.py<br>
index 19ac6ee..b0fa9e7 100644<br>
--- a/src/compiler/nir/nir_<wbr>algebraic.py<br>
+++ b/src/compiler/nir/nir_<wbr>algebraic.py<br>
@@ -90,6 +90,7 @@ static const ${val.c_type} ${<a href="http://val.name" rel="noreferrer" target="_blank">val.name</a>} = {<br>
    ${'true' if val.inexact else 'false'},<br>
    nir_op_${val.opcode},<br>
    { ${', '.join(src.c_ptr for src in val.sources)} },<br>
+   ${val.cond if val.cond else 'NULL'},<br>
 % endif<br>
 };""")<br>
<br>
@@ -185,7 +186,8 @@ class Variable(Value):<br>
       elif self.required_type == 'float':<br>
          return "nir_type_float"<br>
<br>
-_opcode_re = re.compile(r"(?P<inexact>~)?(?<wbr>P<opcode>\w+)(?:@(?P<bits>\d+)<wbr>)?")<br>
+_opcode_re = re.compile(r"(?P<inexact>~)?(?<wbr>P<opcode>\w+)(?:@(?P<bits>\d+)<wbr>)?"<br>
+                        r"(?P<cond>\([^\)]+\))?")<br>
<br>
 class Expression(Value):<br>
    def __init__(self, expr, name_base, varset):<br>
@@ -198,6 +200,7 @@ class Expression(Value):<br>
       self.opcode = m.group('opcode')<br>
       self.bit_size = int(m.group('bits')) if m.group('bits') else 0<br>
       self.inexact = m.group('inexact') is not None<br>
+      self.cond = m.group('cond')<br>
       self.sources = [ Value.create(src, "{0}_{1}".format(name_base, i), varset)<br>
                        for (i, src) in enumerate(expr[1:]) ]<br>
<br>
diff --git a/src/compiler/nir/nir_search.<wbr>c b/src/compiler/nir/nir_search.<wbr>c<br>
index cc17642..0d08614 100644<br>
--- a/src/compiler/nir/nir_search.<wbr>c<br>
+++ b/src/compiler/nir/nir_search.<wbr>c<br>
@@ -264,6 +264,9 @@ static bool<br>
 match_expression(const nir_search_expression *expr, nir_alu_instr *instr,<br>
                  unsigned num_components, struct match_state *state)<br>
 {<br>
+   if (expr->cond && !expr->cond(instr))<br>
+      return false;<br>
+<br>
    if (instr->op != expr->opcode)<br>
       return false;<br>
<br>
diff --git a/src/compiler/nir/nir_search.<wbr>h b/src/compiler/nir/nir_search.<wbr>h<br>
index 357509a..004b61d 100644<br>
--- a/src/compiler/nir/nir_search.<wbr>h<br>
+++ b/src/compiler/nir/nir_search.<wbr>h<br>
@@ -102,6 +102,14 @@ typedef struct {<br>
<br>
    nir_op opcode;<br>
    const nir_search_value *srcs[4];<br>
+<br>
+   /** Optional condition fxn ptr<br>
+    *<br>
+    * This allows additional constraints on expression matching, it is<br>
+    * typically used to match an expressions uses such as the number of times<br>
+    * the expression is used, and whether its used by an if.<br>
+    */<br>
+   bool (*cond)(nir_alu_instr *instr);<br>
 } nir_search_expression;<br>
<br>
 NIR_DEFINE_CAST(nir_search_<wbr>value_as_variable, nir_search_value,<br>
<span class="HOEnZb"><font color="#888888">--<br>
2.9.3<br>
<br>
______________________________<wbr>_________________<br>
mesa-dev mailing list<br>
<a href="mailto:mesa-dev@lists.freedesktop.org">mesa-dev@lists.freedesktop.org</a><br>
<a href="https://lists.freedesktop.org/mailman/listinfo/mesa-dev" rel="noreferrer" target="_blank">https://lists.freedesktop.org/<wbr>mailman/listinfo/mesa-dev</a><br>
</font></span></blockquote></div><br></div>