bifrost: Add support for nir_op_uge
authorChris Forbes <chrisforbes@google.com>
Sun, 26 Jul 2020 19:41:17 +0000 (12:41 -0700)
committerMarge Bot <eric+marge@anholt.net>
Tue, 28 Jul 2020 01:13:09 +0000 (01:13 +0000)
Signed-off-by: Chris Forbes <chrisforbes@google.com>
Reviewed-by: Alyssa Rosenzweig <alyssa.rosenzweig@collabora.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/6091>

src/panfrost/bifrost/bifrost_compile.c

index 3973892d91a49c3c17c13efb53e9f8aa2149ea37..566c0e5988144f0ad90bb3c935d238f40d4936fe 100644 (file)
@@ -527,6 +527,7 @@ bi_class_for_nir_alu(nir_op op)
         BI_CASE_CMP(nir_op_ige)
         BI_CASE_CMP(nir_op_ieq)
         BI_CASE_CMP(nir_op_ine)
+        BI_CASE_CMP(nir_op_uge)
                 return BI_CMP;
 
         case nir_op_b8csel:
@@ -618,6 +619,7 @@ bi_cond_for_nir(nir_op op, bool soft)
 
         BI_CASE_CMP(nir_op_fge)
         BI_CASE_CMP(nir_op_ige)
+        BI_CASE_CMP(nir_op_uge)
                 return BI_COND_GE;
 
         BI_CASE_CMP(nir_op_feq)
@@ -838,6 +840,7 @@ emit_alu(bi_context *ctx, nir_alu_instr *instr)
         BI_CASE_CMP(nir_op_ieq)
         BI_CASE_CMP(nir_op_fne)
         BI_CASE_CMP(nir_op_ine)
+        BI_CASE_CMP(nir_op_uge)
                 alu.cond = bi_cond_for_nir(instr->op, false);
                 break;
         case nir_op_fround_even: