<p dir="ltr"><br>
On Dec 20, 2015 7:43 PM, "Rob Clark" <<a href="mailto:robdclark@gmail.com">robdclark@gmail.com</a>> wrote:<br>
><br>
> On Sun, Dec 20, 2015 at 10:29 PM, Connor Abbott <<a href="mailto:cwabbott0@gmail.com">cwabbott0@gmail.com</a>> wrote:<br>
> > On Sun, Dec 20, 2015 at 10:04 PM, Rob Clark <<a href="mailto:robdclark@gmail.com">robdclark@gmail.com</a>> wrote:<br>
> >> On Sun, Dec 20, 2015 at 9:12 PM, Jason Ekstrand <<a href="mailto:jason@jlekstrand.net">jason@jlekstrand.net</a>> wrote:<br>
> >>><br>
> >>> On Dec 19, 2015 5:55 PM, "Rob Clark" <<a href="mailto:robdclark@gmail.com">robdclark@gmail.com</a>> wrote:<br>
> >>>><br>
> >>>> From: Rob Clark <<a href="mailto:robclark@freedesktop.org">robclark@freedesktop.org</a>><br>
> >>>><br>
> >>>> Jason,<br>
> >>>><br>
> >>>> How much do you hate this idea?  Seems like an easy alternative to<br>
> >>>> using ralloc ctx's to clean up nir variants/clones, which would let<br>
> >>>> us drop the parent memctx for nir_shader_create()/clone(), making<br>
> >>>> it easier to introduce reference counting.<br>
> >>><br>
> >>> I think "hate" is a but strong. I don't like it but it works.  If we really<br>
> >>> want nir_shader refcounted, we'll have to do something.<br>
> >><br>
> >> I suppose the alternate idea of moving the nir_shader_clone() out of<br>
> >> brw_compile_xyz(), and always passing in the clone would be a cleaner<br>
> >> way.  It looks like each of the brw_compile_xyz() has exactly one<br>
> >> call-site, so doing the nir_shader_clone() inside doesn't really buy<br>
> >> anything.</p>
<p dir="ltr">Your forgetting that there may be *cough* other users of this API... We can change those too but I would like the needs of the compiler users to drive the API, not the cloning.  I still have some details to work out there. In any case, it doesn't really matter; we can figure something out.</p>
<p dir="ltr">> >>> About refcounting... The more I think about it the more I'm not convinced<br>
> >>> it's useful.  As it stands, we have no use for it an I'm not convinced you<br>
> >>> do either.  We'll see if I can convince you. :-)<br>
> >>><br>
> >>> In the history of i965 using NIR, we've had about three different ways of<br>
> >>> doing things:<br>
> >>><br>
> >>> 1) GLSL is the gold copy and we run glsl_to_nir for every shader/variant<br>
> >>> compile.  This is what we did when we first stated using NIR because it was<br>
> >>> easy and didn't involve reworking any plumbing.<br>
> >>><br>
> >>> 2) Lowered NIR is the gold copy; variants are done entirely in the back-end<br>
> >>> IR.  This is what we did up until about a month ago.  Because variants are<br>
> >>> done in the back-end, we can run gksl_to_nir and do all of our optimizing<br>
> >>> and lowering at link time.  Going from NIR to the final shader binary is<br>
> >>> then a read-only operation as far as NIR is concerned.<br>
> >>><br>
> >>> 3) Optimized but not lowered NIR is the gold copy; variants are sometimes<br>
> >>> done in NIR.  This is the scheme we use now.  We call glsl_to_nir and do<br>
> >>> some of the optimization and lowering at link time but leave it in SSA form.<br>
> >>> When we go to compile the final shader, we make a copy, apply variants, do<br>
> >>> the final lowering and then go into the back-end IR.<br>
> >>><br>
> >>> In each of these cases, we know exactly where we need to make a copy without<br>
> >>> the help of reference counting.  In the first, we get a fresh copy each time<br>
> >>> so we are free to destroy the copy.  In the second, we never have to modify<br>
> >>> the NIR so no copy.  In the third scheme, we always have to make a copy<br>
> >>> because, even if variants are a no-op, we still have to go out of SSA form<br>
> >>> and do final lowering.  You could say that we could avoid making that copy.<br>
> >>> However, the work to determine when we don't need variants and can do all<br>
> >>> our lowering up-front is far more than the work saved by reference counting.<br>
> >>><br>
> >>> How about gallium?  Here's how I imagine it would work (please correct me of<br>
> >>> I'm wrong):<br>
> >>><br>
> >>> 1) In the TGSI case, tgsi_to_nir gets called for each compile so you get a<br>
> >>> fresh mutable shader each time.  In this case, you are free to do whatever<br>
> >>> you want with the shader without making a copy.<br>
> >>><br>
> >>> 2) In the GLSL case, you run glsl_to_nir and do some basic optimizations at<br>
> >>> link time and hold onto the NIR shader. (Hold a reference of you'd like.)<br>
> >>> When you go to compile it in the back-end, it needs to do it's own lowering<br>
> >>> so it takes a reference and ends up making a copy.<br>
> >>><br>
> >>> If this description is anywhere close to correct, then I don't think you<br>
> >>> really need it either.  Determining whether or not you need to copy is<br>
> >>> simply "if (comes_from_tgsi)”.  Maybe there's something subtle about the<br>
> >>> gallium layer that I don't know that makes refcounting the best solution.<br>
> >>> Please enlighten me of there is.<br>
> >><br>
> >> This issue is that we *potentially* have both the state tracker and<br>
> >> the driver both doing some of there own variant management.  (Which<br>
> >> tbh, isn't awesome, it would have been nice if someone realized<br>
> >> earlier on that nearly every driver is going to have to do some sort<br>
> >> of variant mgmt and figured out a way just to push it all down to the<br>
> >> driver.. but I can't see a good way to get there from here.)<br>
> >><br>
> >> With TGSI as the IR, driver just unconditionally does<br>
> >> tgsi_dup_tokens().. because of the whole thing where st does variants<br>
> >> in some cases, things are defined that driver doesn't own the copy of<br>
> >> the TGSI IR passed in after the fxn call to driver returns.<br>
> >><br>
> >> With NIR I was hoping to fix this, esp. since nir_shader_clone() is<br>
> >> more heavyweight than tgsi_dup_tokens() (memcpy()).<br>
> >><br>
> >> Refcnt'ing is a nice solution so that we can pass the driver a<br>
> >> reference that it owns.  In cases where state tracker isn't doing<br>
> >> variant mgmt, we pass it the one-and-only ref (avoiding clone).<br>
> >><br>
> >> I'd suggested that in cases where st does variant mgmt, that st should<br>
> >> do the clone/dup.  But that was shot down:<br>
> >><br>
> >> <a href="http://lists.freedesktop.org/archives/mesa-dev/2015-October/097748.html">http://lists.freedesktop.org/archives/mesa-dev/2015-October/097748.html</a></p>
<p dir="ltr">It sounds like Marek's argument there is more about lifetime management than anything.  He wants gallium modules to be able to create IR, call into the driver, and then throw it away.  In particular, he doesn't want them to have to think about cloning. In a lot of ways it sounds a lot like what i965 wants too.  I really like having brw_compile_foo take a const nir_shader.  The difference is that i965 basically always wants to clone whereas a gallium driver may not have to if gallium doesn't care what happens to the shader when it's done.  How common is this case? How important is it to optimize for?  I don't know.</p>
<p dir="ltr">One other thing that bothers me a bit:  From Marek's comment, it sounds like the components want to just pass in IR and be agnostic about whether the driver wants its own copy or wants to change it or whatever.  This seems like an argument for always cloning to me.  From the perspective of a gallium module, "I want to hang in to this, I'll keep a reference" seems exactly the same as "I want to hang onto this, I'll give the driver a copy".  How are they actually different given that the driver basically has to modify what you give it in order to do lowering?</p>
<p dir="ltr">> > Ugh... I didn't read this at the time, but I don't like Marek's<br>
> > response. My understanding of the situation, based on this thread, is<br>
> > that there are some cases where the st knows that there's only going<br>
> > to be one variant and can throw away the (NIR or TGSI) shader after it<br>
> > hands it to the driver, while at other times it has to hold onto all<br>
> > the variants and only give the driver a read-only copy (or duplicate</p>
<p dir="ltr">As per above, my interpretation of Marek's comment is that he doesn't want the st to have to think about cloning ever.  He wants it to assume that compilation never modifies the IR so the driver should always clone.  You have to keep in mind that Marek is most likely thinking about caching the TGSI rather than doing in-place lowering in it.</p>
<p dir="ltr">If I'm understanding Marek correctly, then it sounds like shader compilation should never touch the IR that's passed in.  If this is the case, it sounds like always cloning is the way to go.  At least its not *that* expensive.</p>
<p dir="ltr">> > the shader). In that case, forcing the IR to implement reference<br>
> > counting seems like much more "cruft" than duplicating the shader in<br>
> > the st. What's the difference between duplicating the shader and<br>
> > incrementing the reference count before passing it to the driver? It<br>
> > seems like it's almost exactly the same amount of code, and reference<br>
> > counting seems like overkill for a situation where there are only ever<br>
> > going to be 1 or 2 references to the shader.<br>
> ><br>
> > I remember there was some cap which would enable the state tracker to<br>
> > stop making variants, in which case this whole thing is moot, but<br>
> > until then it doesn't seem necessary to force reference counting into<br>
> > NIR.<br>
> ><br>
><br>
> So, I'm actually just digging thru this now, but I think it is mostly<br>
> about glBitmap/glDrawPixels variants for fragment shaders.<br>
><br>
> I am a bit curious how that can be handled *without* creating variants<br>
> in the st.<br>
><br>
> Also a bit curious how that is handled in i965 (ie. if I wrote nir<br>
> lowering passes for these, would they be useful for i965?)</p>
<p dir="ltr">TBH, I don't know.  I think we do some meta thing for DrawPixels.  For glBitmap, I think we bring out ye olde blitter and use some of those crazy 2D drawing features we still have in HW.</p>
<p dir="ltr">> BR,<br>
> -R<br>
><br>
> >><br>
> >> It seems like in the end, since memctx isn't really buying us that<br>
> >> much, that refcnt'ing is the more useful thing.<br>
> >><br>
> >> BR,<br>
> >> -R<br>
> >><br>
> >>> --Jason<br>
> >>><br>
> >>>> ---<br>
> >>>>  src/mesa/drivers/dri/i965/brw_compiler.h          | 22<br>
> >>>> ++++++++++++++++++++++<br>
> >>>>  src/mesa/drivers/dri/i965/brw_fs.cpp              |  6 ++++--<br>
> >>>>  src/mesa/drivers/dri/i965/brw_vec4.cpp            |  3 ++-<br>
> >>>>  src/mesa/drivers/dri/i965/brw_vec4_gs_visitor.cpp |  3 ++-<br>
> >>>>  4 files changed, 30 insertions(+), 4 deletions(-)<br>
> >>>><br>
> >>>> diff --git a/src/mesa/drivers/dri/i965/brw_compiler.h<br>
> >>>> b/src/mesa/drivers/dri/i965/brw_compiler.h<br>
> >>>> index c9e0317..eb1087a 100644<br>
> >>>> --- a/src/mesa/drivers/dri/i965/brw_compiler.h<br>
> >>>> +++ b/src/mesa/drivers/dri/i965/brw_compiler.h<br>
> >>>> @@ -26,6 +26,7 @@<br>
> >>>>  #include <stdio.h><br>
> >>>>  #include "brw_device_info.h"<br>
> >>>>  #include "main/mtypes.h"<br>
> >>>> +#include "nir.h"<br>
> >>>><br>
> >>>>  #ifdef __cplusplus<br>
> >>>>  extern "C" {<br>
> >>>> @@ -651,6 +652,27 @@ struct brw_gs_prog_data<br>
> >>>><br>
> >>>>  /** @} */<br>
> >>>><br>
> >>>> +#ifdef __cplusplus<br>
> >>>> +/* A common pattern is for brw_compile_xyz to create a clone of the<br>
> >>>> original<br>
> >>>> + * shader, modify it (various lowering passes, etc), and then throw it<br>
> >>>> away.<br>
> >>>> + * The scoped_clone helper class is just a way to use RAII to clean up<br>
> >>>> the<br>
> >>>> + * shader when it goes out of scope.<br>
> >>>> + */<br>
> >>>> +class scoped_clone<br>
> >>>> +{<br>
> >>>> +public:<br>
> >>>> +   nir_shader *shader;<br>
> >>>> +   scoped_clone(const nir_shader *s)<br>
> >>>> +   {<br>
> >>>> +      shader = nir_shader_clone(NULL, s);<br>
> >>>> +   }<br>
> >>>> +   ~scoped_clone()<br>
> >>>> +   {<br>
> >>>> +      ralloc_free(shader);<br>
> >>>> +   }<br>
> >>>> +};<br>
> >>>> +#endif<br>
> >>>> +<br>
> >>>>  /**<br>
> >>>>   * Compile a vertex shader.<br>
> >>>>   *<br>
> >>>> diff --git a/src/mesa/drivers/dri/i965/brw_fs.cpp<br>
> >>>> b/src/mesa/drivers/dri/i965/brw_fs.cpp<br>
> >>>> index c833ef0..44ea156 100644<br>
> >>>> --- a/src/mesa/drivers/dri/i965/brw_fs.cpp<br>
> >>>> +++ b/src/mesa/drivers/dri/i965/brw_fs.cpp<br>
> >>>> @@ -5490,7 +5490,8 @@ brw_compile_fs(const struct brw_compiler *compiler,<br>
> >>>> void *log_data,<br>
> >>>>                 unsigned *final_assembly_size,<br>
> >>>>                 char **error_str)<br>
> >>>>  {<br>
> >>>> -   nir_shader *shader = nir_shader_clone(mem_ctx, src_shader);<br>
> >>>> +   scoped_clone sc(src_shader);<br>
> >>>> +   nir_shader *shader = sc.shader;<br>
> >>>>     shader = brw_nir_apply_sampler_key(shader, compiler->devinfo,<br>
> >>>> &key->tex,<br>
> >>>>                                        true);<br>
> >>>>     shader = brw_postprocess_nir(shader, compiler->devinfo, true);<br>
> >>>> @@ -5616,7 +5617,8 @@ brw_compile_cs(const struct brw_compiler *compiler,<br>
> >>>> void *log_data,<br>
> >>>>                 unsigned *final_assembly_size,<br>
> >>>>                 char **error_str)<br>
> >>>>  {<br>
> >>>> -   nir_shader *shader = nir_shader_clone(mem_ctx, src_shader);<br>
> >>>> +   scoped_clone sc(src_shader);<br>
> >>>> +   nir_shader *shader = sc.shader;<br>
> >>>>     shader = brw_nir_apply_sampler_key(shader, compiler->devinfo,<br>
> >>>> &key->tex,<br>
> >>>>                                        true);<br>
> >>>>     shader = brw_postprocess_nir(shader, compiler->devinfo, true);<br>
> >>>> diff --git a/src/mesa/drivers/dri/i965/brw_vec4.cpp<br>
> >>>> b/src/mesa/drivers/dri/i965/brw_vec4.cpp<br>
> >>>> index a697bdf..a89e884 100644<br>
> >>>> --- a/src/mesa/drivers/dri/i965/brw_vec4.cpp<br>
> >>>> +++ b/src/mesa/drivers/dri/i965/brw_vec4.cpp<br>
> >>>> @@ -1957,7 +1957,8 @@ brw_compile_vs(const struct brw_compiler *compiler,<br>
> >>>> void *log_data,<br>
> >>>>                 unsigned *final_assembly_size,<br>
> >>>>                 char **error_str)<br>
> >>>>  {<br>
> >>>> -   nir_shader *shader = nir_shader_clone(mem_ctx, src_shader);<br>
> >>>> +   scoped_clone sc(src_shader);<br>
> >>>> +   nir_shader *shader = sc.shader;<br>
> >>>>     shader = brw_nir_apply_sampler_key(shader, compiler->devinfo,<br>
> >>>> &key->tex,<br>
> >>>><br>
> >>>> compiler->scalar_stage[MESA_SHADER_VERTEX]);<br>
> >>>>     shader = brw_postprocess_nir(shader, compiler->devinfo,<br>
> >>>> diff --git a/src/mesa/drivers/dri/i965/brw_vec4_gs_visitor.cpp<br>
> >>>> b/src/mesa/drivers/dri/i965/brw_vec4_gs_visitor.cpp<br>
> >>>> index b13d36e..9ed7e0d 100644<br>
> >>>> --- a/src/mesa/drivers/dri/i965/brw_vec4_gs_visitor.cpp<br>
> >>>> +++ b/src/mesa/drivers/dri/i965/brw_vec4_gs_visitor.cpp<br>
> >>>> @@ -617,7 +617,8 @@ brw_compile_gs(const struct brw_compiler *compiler,<br>
> >>>> void *log_data,<br>
> >>>>     memset(&c, 0, sizeof(c));<br>
> >>>>     c.key = *key;<br>
> >>>><br>
> >>>> -   nir_shader *shader = nir_shader_clone(mem_ctx, src_shader);<br>
> >>>> +   scoped_clone sc(src_shader);<br>
> >>>> +   nir_shader *shader = sc.shader;<br>
> >>>>     shader = brw_nir_apply_sampler_key(shader, compiler->devinfo,<br>
> >>>> &key->tex,<br>
> >>>><br>
> >>>> compiler->scalar_stage[MESA_SHADER_GEOMETRY]);<br>
> >>>>     shader = brw_postprocess_nir(shader, compiler->devinfo,<br>
> >>>> --<br>
> >>>> 2.5.0<br>
> >>>><br>
> >> _______________________________________________<br>
> >> mesa-dev mailing list<br>
> >> <a href="mailto:mesa-dev@lists.freedesktop.org">mesa-dev@lists.freedesktop.org</a><br>
> >> <a href="http://lists.freedesktop.org/mailman/listinfo/mesa-dev">http://lists.freedesktop.org/mailman/listinfo/mesa-dev</a><br>
</p>