From: Iago Toral Quiroga Date: Tue, 17 Apr 2018 08:23:47 +0000 (+0200) Subject: intel/compiler: implement 16-bit pack/unpack opcodes X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=dd41630d9a83a07f31ec490f75e4efe5ec6b3a3a;p=mesa.git intel/compiler: implement 16-bit pack/unpack opcodes Reviewed-by: Jason Ekstrand --- diff --git a/src/intel/compiler/brw_fs_nir.cpp b/src/intel/compiler/brw_fs_nir.cpp index 9c802fb7c62..4c8bcc4ebc9 100644 --- a/src/intel/compiler/brw_fs_nir.cpp +++ b/src/intel/compiler/brw_fs_nir.cpp @@ -1314,6 +1314,7 @@ fs_visitor::nir_emit_alu(const fs_builder &bld, nir_alu_instr *instr) break; case nir_op_pack_64_2x32_split: + case nir_op_pack_32_2x16_split: bld.emit(FS_OPCODE_PACK, result, op[0], op[1]); break; @@ -1326,6 +1327,15 @@ fs_visitor::nir_emit_alu(const fs_builder &bld, nir_alu_instr *instr) break; } + case nir_op_unpack_32_2x16_split_x: + case nir_op_unpack_32_2x16_split_y: { + if (instr->op == nir_op_unpack_32_2x16_split_x) + bld.MOV(result, subscript(op[0], BRW_REGISTER_TYPE_UW, 0)); + else + bld.MOV(result, subscript(op[0], BRW_REGISTER_TYPE_UW, 1)); + break; + } + case nir_op_fpow: inst = bld.emit(SHADER_OPCODE_POW, result, op[0], op[1]); inst->saturate = instr->dest.saturate;