From 03783253b1814a0afa25364f80f13f3e4a1e9bc2 Mon Sep 17 00:00:00 2001 From: Timothy Arceri Date: Wed, 20 Feb 2019 15:03:42 +1100 Subject: [PATCH] nir: remove non-ssa support from nir_copy_prop() Even in a very basic shader this reduces the time spent in nir_copy_prop() by ~17%. No shader-db changes for radeonsi NIR or i965. Reviewed-by: Jason Ekstrand --- src/compiler/nir/nir_opt_copy_propagate.c | 41 +++-------------------- 1 file changed, 5 insertions(+), 36 deletions(-) diff --git a/src/compiler/nir/nir_opt_copy_propagate.c b/src/compiler/nir/nir_opt_copy_propagate.c index 534f127c0d3..10b81c0a684 100644 --- a/src/compiler/nir/nir_opt_copy_propagate.c +++ b/src/compiler/nir/nir_opt_copy_propagate.c @@ -34,6 +34,8 @@ static bool is_move(nir_alu_instr *instr) { + assert(instr->src[0].src.is_ssa); + if (instr->op != nir_op_fmov && instr->op != nir_op_imov) return false; @@ -46,9 +48,6 @@ static bool is_move(nir_alu_instr *instr) if (instr->src[0].abs || instr->src[0].negate) return false; - if (!instr->src[0].src.is_ssa) - return false; - return true; } @@ -56,8 +55,7 @@ static bool is_move(nir_alu_instr *instr) static bool is_vec(nir_alu_instr *instr) { for (unsigned i = 0; i < nir_op_infos[instr->op].num_inputs; i++) { - if (!instr->src[i].src.is_ssa) - return false; + assert(instr->src[i].src.is_ssa); /* we handle modifiers in a separate pass */ if (instr->src[i].abs || instr->src[i].negate) @@ -102,11 +100,7 @@ static bool copy_prop_src(nir_src *src, nir_instr *parent_instr, nir_if *parent_if, unsigned num_components) { - if (!src->is_ssa) { - if (src->reg.indirect) - return copy_prop_src(src->reg.indirect, parent_instr, parent_if, 1); - return false; - } + assert(src->is_ssa); nir_instr *src_instr = src->ssa->parent_instr; nir_ssa_def *copy_def; @@ -137,12 +131,7 @@ static bool copy_prop_alu_src(nir_alu_instr *parent_alu_instr, unsigned index) { nir_alu_src *src = &parent_alu_instr->src[index]; - if (!src->src.is_ssa) { - if (src->src.reg.indirect) - return copy_prop_src(src->src.reg.indirect, &parent_alu_instr->instr, - NULL, 1); - return false; - } + assert(src->src.is_ssa); nir_instr *src_instr = src->src.ssa->parent_instr; if (src_instr->type != nir_instr_type_alu) @@ -187,15 +176,6 @@ copy_prop_alu_src(nir_alu_instr *parent_alu_instr, unsigned index) return true; } -static bool -copy_prop_dest(nir_dest *dest, nir_instr *instr) -{ - if (!dest->is_ssa && dest->reg.indirect) - return copy_prop_src(dest->reg.indirect, instr, NULL, 1); - - return false; -} - static bool copy_prop_instr(nir_instr *instr) { @@ -208,9 +188,6 @@ copy_prop_instr(nir_instr *instr) while (copy_prop_alu_src(alu_instr, i)) progress = true; - while (copy_prop_dest(&alu_instr->dest.dest, instr)) - progress = true; - return progress; } @@ -241,9 +218,6 @@ copy_prop_instr(nir_instr *instr) progress = true; } - while (copy_prop_dest(&tex->dest, instr)) - progress = true; - return progress; } @@ -257,11 +231,6 @@ copy_prop_instr(nir_instr *instr) progress = true; } - if (nir_intrinsic_infos[intrin->intrinsic].has_dest) { - while (copy_prop_dest(&intrin->dest, instr)) - progress = true; - } - return progress; } -- 2.30.2