<div dir="ltr"><div class="gmail_quote"><div class="gmail_attr">Reviewed-by: Jason Ekstrand <<a href="mailto:jason@jlekstrand.net">jason@jlekstrand.net</a>><br></div><div dir="ltr" class="gmail_attr"><br></div><div dir="ltr" class="gmail_attr">On Tue, Feb 12, 2019 at 5:57 AM Iago Toral Quiroga <<a href="mailto:itoral@igalia.com">itoral@igalia.com</a>> wrote:<br></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">Now that we have the regioning lowering pass we can just put all of these<br>
opcodes together in a single block and we can just assert on the few cases<br>
of conversion instructions that are not supported in hardware and that should<br>
be lowered in brw_nir_lower_conversions.<br>
<br>
The only cases what we still handle separately are the conversions from float<br>
to half-float since the rounding variants would need to fallthrough and we<br>
are already doing this for boolean opcodes (since they need to negate), plus<br>
there is also a large comment about these opcodes that we probably want to<br>
keep so it is just easier to keep these separate.<br>
<br>
Suggested-by: Jason Ekstrand <<a href="mailto:jason@jlekstrand.net" target="_blank">jason@jlekstrand.net</a>><br>
---<br>
 src/intel/compiler/brw_fs_nir.cpp | 41 +++++++++++++++++--------------<br>
 1 file changed, 22 insertions(+), 19 deletions(-)<br>
<br>
diff --git a/src/intel/compiler/brw_fs_nir.cpp b/src/intel/compiler/brw_fs_nir.cpp<br>
index f59e9ad4e2b..3a6e4a2eb60 100644<br>
--- a/src/intel/compiler/brw_fs_nir.cpp<br>
+++ b/src/intel/compiler/brw_fs_nir.cpp<br>
@@ -772,7 +772,7 @@ fs_visitor::nir_emit_alu(const fs_builder &bld, nir_alu_instr *instr)<br>
       bld.emit(SHADER_OPCODE_RND_MODE, bld.null_reg_ud(),<br>
                brw_imm_d(brw_rnd_mode_from_nir_op(instr->op)));<br>
       /* fallthrough */<br>
-<br>
+   case nir_op_f2f16:<br>
       /* In theory, it would be better to use BRW_OPCODE_F32TO16. Depending<br>
        * on the HW gen, it is a special hw opcode or just a MOV, and<br>
        * brw_F32TO16 (at brw_eu_emit) would do the work to chose.<br>
@@ -782,23 +782,11 @@ fs_visitor::nir_emit_alu(const fs_builder &bld, nir_alu_instr *instr)<br>
        * only for gen8+, it will be better to use directly the MOV, and use<br>
        * BRW_OPCODE_F32TO16 when/if we work for HF support on gen7.<br>
        */<br>
-<br>
-   case nir_op_f2f16:<br>
-   case nir_op_i2f16:<br>
-   case nir_op_u2f16:<br>
       assert(type_sz(op[0].type) < 8); /* brw_nir_lower_conversions */<br>
       inst = bld.MOV(result, op[0]);<br>
       inst->saturate = instr->dest.saturate;<br>
       break;<br>
<br>
-   case nir_op_f2f64:<br>
-   case nir_op_f2i64:<br>
-   case nir_op_f2u64:<br>
-      assert(type_sz(op[0].type) > 2); /* brw_nir_lower_conversions */<br>
-      inst = bld.MOV(result, op[0]);<br>
-      inst->saturate = instr->dest.saturate;<br>
-      break;<br>
-<br>
    case nir_op_b2i8:<br>
    case nir_op_b2i16:<br>
    case nir_op_b2i32:<br>
@@ -813,19 +801,34 @@ fs_visitor::nir_emit_alu(const fs_builder &bld, nir_alu_instr *instr)<br>
    case nir_op_i2i64:<br>
    case nir_op_u2f64:<br>
    case nir_op_u2u64:<br>
-      assert(type_sz(op[0].type) > 1); /* brw_nir_lower_conversions */<br>
-      /* fallthrough */<br>
+   case nir_op_f2f64:<br>
+   case nir_op_f2i64:<br>
+   case nir_op_f2u64:<br>
+   case nir_op_i2i32:<br>
+   case nir_op_u2u32:<br>
    case nir_op_f2f32:<br>
    case nir_op_f2i32:<br>
    case nir_op_f2u32:<br>
-   case nir_op_f2i16:<br>
-   case nir_op_f2u16:<br>
-   case nir_op_i2i32:<br>
-   case nir_op_u2u32:<br>
+   case nir_op_i2f16:<br>
    case nir_op_i2i16:<br>
+   case nir_op_u2f16:<br>
    case nir_op_u2u16:<br>
+   case nir_op_f2i16:<br>
+   case nir_op_f2u16:<br>
    case nir_op_i2i8:<br>
    case nir_op_u2u8:<br>
+   case nir_op_f2i8:<br>
+   case nir_op_f2u8:<br>
+      if (result.type == BRW_REGISTER_TYPE_B ||<br>
+          result.type == BRW_REGISTER_TYPE_UB ||<br>
+          result.type == BRW_REGISTER_TYPE_HF)<br>
+         assert(type_sz(op[0].type) < 8); /* brw_nir_lower_conversions */<br>
+<br>
+      if (op[0].type == BRW_REGISTER_TYPE_B ||<br>
+          op[0].type == BRW_REGISTER_TYPE_UB ||<br>
+          op[0].type == BRW_REGISTER_TYPE_HF)<br>
+         assert(type_sz(result.type) < 8); /* brw_nir_lower_conversions */<br>
+<br>
       inst = bld.MOV(result, op[0]);<br>
       inst->saturate = instr->dest.saturate;<br>
       break;<br>
-- <br>
2.17.1<br>
<br>
_______________________________________________<br>
mesa-dev mailing list<br>
<a href="mailto:mesa-dev@lists.freedesktop.org" target="_blank">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/mailman/listinfo/mesa-dev</a></blockquote></div></div>