Re: [Mesa-dev] [PATCH] nir: remove non-ssa support from nir_copy_prop()

2019-02-20 Thread Jason Ekstrand
Reviewed-by: Jason Ekstrand On Wed, Feb 20, 2019 at 12:30 AM Timothy Arceri wrote: > 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. > --- > src/compiler/nir/nir_opt_copy_propagate.c | 41 +++--

[Mesa-dev] [PATCH] nir: remove non-ssa support from nir_copy_prop()

2019-02-19 Thread Timothy Arceri
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. --- src/compiler/nir/nir_opt_copy_propagate.c | 41 +++ 1 file changed, 5 insertions(+), 36 deletions(-) diff --git a/src/compiler/nir/nir_opt_co