From: Rob Clark Date: Wed, 3 Jun 2020 19:09:59 +0000 (-0700) Subject: nir: extract out convert_to_bitsize() helper X-Git-Tag: upstream/21.0.0~9112 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=866618c5c86fbbb59036845c1d6e38d8e526b525;p=platform%2Fupstream%2Fmesa.git nir: extract out convert_to_bitsize() helper Signed-off-by: Rob Clark Reviewed-by: Alyssa Rosenzweig Reviewed-by: Eric Anholt Reviewed-by: Kristian H. Kristensen Part-of: --- diff --git a/src/compiler/nir/nir_builder.h b/src/compiler/nir/nir_builder.h index 6c4b2da..de84bc8 100644 --- a/src/compiler/nir/nir_builder.h +++ b/src/compiler/nir/nir_builder.h @@ -1384,4 +1384,19 @@ nir_scoped_memory_barrier(nir_builder *b, nir_scoped_barrier(b, NIR_SCOPE_NONE, scope, semantics, modes); } +static inline nir_ssa_def * +nir_convert_to_bit_size(nir_builder *b, + nir_ssa_def *src, + nir_alu_type type, + unsigned bit_size) +{ + nir_alu_type base_type = nir_alu_type_get_base_type(type); + nir_alu_type dst_type = (nir_alu_type)(bit_size | base_type); + + nir_op opcode = + nir_type_conversion_op(type, dst_type, nir_rounding_mode_undef); + + return nir_build_alu(b, opcode, src, NULL, NULL, NULL); +} + #endif /* NIR_BUILDER_H */ diff --git a/src/compiler/nir/nir_lower_bit_size.c b/src/compiler/nir/nir_lower_bit_size.c index 100ac48..fbab267 100644 --- a/src/compiler/nir/nir_lower_bit_size.c +++ b/src/compiler/nir/nir_lower_bit_size.c @@ -29,20 +29,6 @@ * a bit-size that is supported natively and then converts the result back to * the original bit-size. */ -static nir_ssa_def * -convert_to_bit_size(nir_builder *bld, - nir_ssa_def *src, - nir_alu_type type, - unsigned bit_size) -{ - nir_alu_type base_type = nir_alu_type_get_base_type(type); - nir_alu_type lowered_type = bit_size | base_type; - - nir_op opcode = - nir_type_conversion_op(type, lowered_type, nir_rounding_mode_undef); - - return nir_build_alu(bld, opcode, src, NULL, NULL, NULL); -} static void lower_instr(nir_builder *bld, nir_alu_instr *alu, unsigned bit_size) @@ -59,7 +45,7 @@ lower_instr(nir_builder *bld, nir_alu_instr *alu, unsigned bit_size) nir_alu_type type = nir_op_infos[op].input_types[i]; if (nir_alu_type_get_type_size(type) == 0) - src = convert_to_bit_size(bld, src, type, bit_size); + src = nir_convert_to_bit_size(bld, src, type, bit_size); if (i == 1 && (op == nir_op_ishl || op == nir_op_ishr || op == nir_op_ushr)) { assert(util_is_power_of_two_nonzero(dst_bit_size)); @@ -85,7 +71,7 @@ lower_instr(nir_builder *bld, nir_alu_instr *alu, unsigned bit_size) /* Convert result back to the original bit-size */ nir_alu_type type = nir_op_infos[op].output_type; - nir_ssa_def *dst = convert_to_bit_size(bld, lowered_dst, type, dst_bit_size); + nir_ssa_def *dst = nir_convert_to_bit_size(bld, lowered_dst, type, dst_bit_size); nir_ssa_def_rewrite_uses(&alu->dest.dest.ssa, nir_src_for_ssa(dst)); }