<div dir="ltr"><div class="gmail_extra"><div class="gmail_quote">+ A bunch of potentially interested parties.<br></div><div class="gmail_quote"><br>On Mon, Apr 9, 2018 at 4:25 PM, Caio Marcelo de Oliveira Filho <span dir="ltr"><<a href="mailto:caio.oliveira@intel.com" target="_blank">caio.oliveira@intel.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">Hi,<br>
<span class=""><br>
>  typedef struct {<br>
> -   nir_parameter_type param_type;<br>
> -   const struct glsl_type *type;<br>
> +   uint8_t num_components;<br>
> +   uint8_t bit_size;<br>
>  } nir_parameter;<br>
<br>
</span>(...)<br>
<span class=""><br>
> @@ -683,18 +692,12 @@ validate_tex_instr(nir_tex_<wbr>instr *instr, validate_state *state)<br>
>  static void<br>
>  validate_call_instr(nir_call_<wbr>instr *instr, validate_state *state)<br>
>  {<br>
> -   if (instr->return_deref == NULL) {<br>
> -      validate_assert(state, glsl_type_is_void(instr-><wbr>callee->return_type));<br>
> -   } else {<br>
> -      validate_assert(state, instr->return_deref->deref.<wbr>type == instr->callee->return_type);<br>
> -      validate_deref_var(instr, instr->return_deref, state);<br>
> -   }<br>
> -<br>
>     validate_assert(state, instr->num_params == instr->callee->num_params);<br>
><br>
>     for (unsigned i = 0; i < instr->num_params; i++) {<br>
> -      validate_assert(state, instr->callee->params[i].type == instr->params[i]->deref.type);<br>
> -      validate_deref_var(instr, instr->params[i], state);<br>
> +      validate_src(&instr->params[i]<wbr>, state,<br>
> +                   instr->callee->params[i].bit_<wbr>size,<br>
> +                   instr->callee->params[i].num_<wbr>components);<br>
>     }<br>
>  }<br>
<br>
</span>Question: I might be misreading, but it seems like we are losing the<br>
type information for functions. Isn't that something worth keeping,<br>
maybe in some other way, e.g. load_param specifying the expected type?<br></blockquote><div><br></div><div>That's a very good question!  To be honest, I'm not sure what the answer is.  At the moment, the type information is fairly useless for most of what we use functions for.  Really, all we need is something that NIR can inline.  As it is, we're not really preserving the types from SPIR-V because of the gymnastics we're doing to handle pointers.<br><br></div><div>If we did want to preserve types, we'd need to have more detailed type information.  In particular, we'd need to be able to provide pointer types and maybe combined image-sampler types.  And along with those pointer types, we'd need to somehow express those pointer's storage requirements.<br><br></div><div>The philosophy behind this commit is that, if we don't have a good match to SPIR-V anyway, we might as well just chuck that information and do whatever makes our lives the easiest.  My philosophy here may be flawed and I'm happy to hear arguments in favor of keeping the information.  The best argument I can come up with for keeping the information is if we find ourselves wanting to do some sort of linking in the future where we have to match functions by both name and type.  If we want to do that, however, we'll need all the SPIR-V type information.<br><br></div><div>Thoughts?<br><br></div><div>--Jason<br></div></div></div></div>