[Mesa-dev] [PATCH 06/13] anv/pipeline: Move gather_info further down the compilation process

Iago Toral itoral at igalia.com
Fri Nov 18 13:46:42 UTC 2016


On Thu, 2016-11-17 at 08:56 -0800, Jason Ekstrand wrote:
> On Thu, Nov 17, 2016 at 4:43 AM, Iago Toral <itoral at igalia.com>
> wrote:
> > Ah, I had missed this, ignore my comment then  :)
> > 
> I just sent out a v2 of patch 7 and force-pushed my review branch if
> you want to test things out.

Yep, that fixes the problems. Thanks!

Iago

> > On Wed, 2016-11-16 at 21:18 -0800, Jason Ekstrand wrote:
> > > Forget this patch.  It's bogus.  The computation of prog_data-
> > > >nr_params requires gathered info so the earliest we could put it
> > > is at the top of this function.  Instead, we'll just call
> > > anv_nir_lower_input_attachments earlier.
> > > 
> > > On Wed, Nov 16, 2016 at 11:31 AM, Jason Ekstrand <jason at jlekstran
> > > d.net> wrote:
> > > > The lower_input_attachments pass that we're about to add will
> > > > generate
> > > > additional uses of system values and we want those to be
> > > > reflected in
> > > > gather_info.
> > > > ---
> > > >  src/intel/vulkan/anv_pipeline.c | 4 ++--
> > > >  1 file changed, 2 insertions(+), 2 deletions(-)
> > > > 
> > > > diff --git a/src/intel/vulkan/anv_pipeline.c
> > > > b/src/intel/vulkan/anv_pipeline.c
> > > > index bdac404..c251463 100644
> > > > --- a/src/intel/vulkan/anv_pipeline.c
> > > > +++ b/src/intel/vulkan/anv_pipeline.c
> > > > @@ -166,8 +166,6 @@ anv_shader_compile_to_nir(struct anv_device
> > > > *device,
> > > > 
> > > >     nir = brw_preprocess_nir(compiler, nir);
> > > > 
> > > > -   nir_shader_gather_info(nir, entry_point->impl);
> > > > -
> > > >     nir_variable_mode indirect_mask = 0;
> > > >     if (compiler-
> > > > >glsl_compiler_options[stage].EmitNoIndirectInput)
> > > >        indirect_mask |= nir_var_shader_in;
> > > > @@ -369,6 +367,8 @@ anv_pipeline_compile(struct anv_pipeline
> > > > *pipeline,
> > > >      */
> > > >     nir->num_uniforms = prog_data->nr_params * 4;
> > > > 
> > > > +   nir_shader_gather_info(nir,
> > > > nir_shader_get_entrypoint(nir));
> > > > +
> > > >     return nir;
> > > >  }
> > > > 
> > > > --
> > > > 2.5.0.400.gff86faf
> > > > 
> > > > 
> > > _______________________________________________
> > > mesa-dev mailing list
> > > mesa-dev at lists.freedesktop.org
> > > https://lists.freedesktop.org/mailman/listinfo/mesa-dev


More information about the mesa-dev mailing list