Home
last modified time | relevance | path

Searched refs:lowered_dst (Results 1 – 1 of 1) sorted by relevance

/third_party/mesa3d/src/compiler/nir/
Dnir_lower_bit_size.c74 nir_ssa_def *lowered_dst = NULL; in lower_alu_instr() local
77 lowered_dst = nir_imul(bld, srcs[0], srcs[1]); in lower_alu_instr()
79 lowered_dst = nir_ushr_imm(bld, lowered_dst, dst_bit_size); in lower_alu_instr()
81 lowered_dst = nir_ishr_imm(bld, lowered_dst, dst_bit_size); in lower_alu_instr()
83 lowered_dst = nir_build_alu_src_arr(bld, op, srcs); in lower_alu_instr()
92 lowered_dst = nir_iclamp(bld, lowered_dst, in lower_alu_instr()
98 lowered_dst = nir_umin(bld, lowered_dst, in lower_alu_instr()
108 nir_ssa_def *dst = nir_convert_to_bit_size(bld, lowered_dst, type, dst_bit_size); in lower_alu_instr()
111 nir_ssa_def_rewrite_uses(&alu->dest.dest.ssa, lowered_dst); in lower_alu_instr()