• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /*
2  * Copyright © 2015 Intel Corporation
3  *
4  * Permission is hereby granted, free of charge, to any person obtaining a
5  * copy of this software and associated documentation files (the "Software"),
6  * to deal in the Software without restriction, including without limitation
7  * the rights to use, copy, modify, merge, publish, distribute, sublicense,
8  * and/or sell copies of the Software, and to permit persons to whom the
9  * Software is furnished to do so, subject to the following conditions:
10  *
11  * The above copyright notice and this permission notice (including the next
12  * paragraph) shall be included in all copies or substantial portions of the
13  * Software.
14  *
15  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
18  * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19  * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
20  * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
21  * IN THE SOFTWARE.
22  */
23 
24 #include "anv_nir.h"
25 #include "program/prog_parameter.h"
26 #include "nir/nir_builder.h"
27 #include "compiler/brw_nir.h"
28 #include "util/mesa-sha1.h"
29 #include "util/set.h"
30 
31 /* Sampler tables don't actually have a maximum size but we pick one just so
32  * that we don't end up emitting too much state on-the-fly.
33  */
34 #define MAX_SAMPLER_TABLE_SIZE 128
35 #define BINDLESS_OFFSET        255
36 
37 struct apply_pipeline_layout_state {
38    const struct anv_physical_device *pdevice;
39 
40    nir_shader *shader;
41    nir_builder builder;
42 
43    const struct anv_pipeline_layout *layout;
44    bool add_bounds_checks;
45    nir_address_format ssbo_addr_format;
46 
47    /* Place to flag lowered instructions so we don't lower them twice */
48    struct set *lowered_instrs;
49 
50    bool uses_constants;
51    bool has_dynamic_buffers;
52    uint8_t constants_offset;
53    struct {
54       bool desc_buffer_used;
55       uint8_t desc_offset;
56 
57       uint8_t *use_count;
58       uint8_t *surface_offsets;
59       uint8_t *sampler_offsets;
60    } set[MAX_SETS];
61 };
62 
63 static void
add_binding(struct apply_pipeline_layout_state * state,uint32_t set,uint32_t binding)64 add_binding(struct apply_pipeline_layout_state *state,
65             uint32_t set, uint32_t binding)
66 {
67    const struct anv_descriptor_set_binding_layout *bind_layout =
68       &state->layout->set[set].layout->binding[binding];
69 
70    if (state->set[set].use_count[binding] < UINT8_MAX)
71       state->set[set].use_count[binding]++;
72 
73    /* Only flag the descriptor buffer as used if there's actually data for
74     * this binding.  This lets us be lazy and call this function constantly
75     * without worrying about unnecessarily enabling the buffer.
76     */
77    if (anv_descriptor_size(bind_layout))
78       state->set[set].desc_buffer_used = true;
79 }
80 
81 static void
add_deref_src_binding(struct apply_pipeline_layout_state * state,nir_src src)82 add_deref_src_binding(struct apply_pipeline_layout_state *state, nir_src src)
83 {
84    nir_deref_instr *deref = nir_src_as_deref(src);
85    nir_variable *var = nir_deref_instr_get_variable(deref);
86    add_binding(state, var->data.descriptor_set, var->data.binding);
87 }
88 
89 static void
add_tex_src_binding(struct apply_pipeline_layout_state * state,nir_tex_instr * tex,nir_tex_src_type deref_src_type)90 add_tex_src_binding(struct apply_pipeline_layout_state *state,
91                     nir_tex_instr *tex, nir_tex_src_type deref_src_type)
92 {
93    int deref_src_idx = nir_tex_instr_src_index(tex, deref_src_type);
94    if (deref_src_idx < 0)
95       return;
96 
97    add_deref_src_binding(state, tex->src[deref_src_idx].src);
98 }
99 
100 static void
get_used_bindings_block(nir_block * block,struct apply_pipeline_layout_state * state)101 get_used_bindings_block(nir_block *block,
102                         struct apply_pipeline_layout_state *state)
103 {
104    nir_foreach_instr_safe(instr, block) {
105       switch (instr->type) {
106       case nir_instr_type_intrinsic: {
107          nir_intrinsic_instr *intrin = nir_instr_as_intrinsic(instr);
108          switch (intrin->intrinsic) {
109          case nir_intrinsic_vulkan_resource_index:
110             add_binding(state, nir_intrinsic_desc_set(intrin),
111                         nir_intrinsic_binding(intrin));
112             break;
113 
114          case nir_intrinsic_image_deref_load:
115          case nir_intrinsic_image_deref_store:
116          case nir_intrinsic_image_deref_atomic_add:
117          case nir_intrinsic_image_deref_atomic_imin:
118          case nir_intrinsic_image_deref_atomic_umin:
119          case nir_intrinsic_image_deref_atomic_imax:
120          case nir_intrinsic_image_deref_atomic_umax:
121          case nir_intrinsic_image_deref_atomic_and:
122          case nir_intrinsic_image_deref_atomic_or:
123          case nir_intrinsic_image_deref_atomic_xor:
124          case nir_intrinsic_image_deref_atomic_exchange:
125          case nir_intrinsic_image_deref_atomic_comp_swap:
126          case nir_intrinsic_image_deref_size:
127          case nir_intrinsic_image_deref_samples:
128          case nir_intrinsic_image_deref_load_param_intel:
129          case nir_intrinsic_image_deref_load_raw_intel:
130          case nir_intrinsic_image_deref_store_raw_intel:
131             add_deref_src_binding(state, intrin->src[0]);
132             break;
133 
134          case nir_intrinsic_load_constant:
135             state->uses_constants = true;
136             break;
137 
138          default:
139             break;
140          }
141          break;
142       }
143       case nir_instr_type_tex: {
144          nir_tex_instr *tex = nir_instr_as_tex(instr);
145          add_tex_src_binding(state, tex, nir_tex_src_texture_deref);
146          add_tex_src_binding(state, tex, nir_tex_src_sampler_deref);
147          break;
148       }
149       default:
150          continue;
151       }
152    }
153 }
154 
155 static bool
find_descriptor_for_index_src(nir_src src,struct apply_pipeline_layout_state * state)156 find_descriptor_for_index_src(nir_src src,
157                               struct apply_pipeline_layout_state *state)
158 {
159    nir_intrinsic_instr *intrin = nir_src_as_intrinsic(src);
160 
161    while (intrin && intrin->intrinsic == nir_intrinsic_vulkan_resource_reindex)
162       intrin = nir_src_as_intrinsic(intrin->src[0]);
163 
164    if (!intrin || intrin->intrinsic != nir_intrinsic_vulkan_resource_index)
165       return false;
166 
167    uint32_t set = nir_intrinsic_desc_set(intrin);
168    uint32_t binding = nir_intrinsic_binding(intrin);
169    uint32_t surface_index = state->set[set].surface_offsets[binding];
170 
171    /* Only lower to a BTI message if we have a valid binding table index. */
172    return surface_index < MAX_BINDING_TABLE_SIZE;
173 }
174 
175 static bool
nir_deref_find_descriptor(nir_deref_instr * deref,struct apply_pipeline_layout_state * state)176 nir_deref_find_descriptor(nir_deref_instr *deref,
177                           struct apply_pipeline_layout_state *state)
178 {
179    while (1) {
180       /* Nothing we will use this on has a variable */
181       assert(deref->deref_type != nir_deref_type_var);
182 
183       nir_deref_instr *parent = nir_src_as_deref(deref->parent);
184       if (!parent)
185          break;
186 
187       deref = parent;
188    }
189    assert(deref->deref_type == nir_deref_type_cast);
190 
191    nir_intrinsic_instr *intrin = nir_src_as_intrinsic(deref->parent);
192    if (!intrin || intrin->intrinsic != nir_intrinsic_load_vulkan_descriptor)
193       return false;
194 
195    return find_descriptor_for_index_src(intrin->src[0], state);
196 }
197 
198 static nir_ssa_def *
build_index_for_res_reindex(nir_intrinsic_instr * intrin,struct apply_pipeline_layout_state * state)199 build_index_for_res_reindex(nir_intrinsic_instr *intrin,
200                             struct apply_pipeline_layout_state *state)
201 {
202    nir_builder *b = &state->builder;
203 
204    if (intrin->intrinsic == nir_intrinsic_vulkan_resource_reindex) {
205       nir_ssa_def *bti =
206          build_index_for_res_reindex(nir_src_as_intrinsic(intrin->src[0]), state);
207 
208       b->cursor = nir_before_instr(&intrin->instr);
209       return nir_iadd(b, bti, nir_ssa_for_src(b, intrin->src[1], 1));
210    }
211 
212    assert(intrin->intrinsic == nir_intrinsic_vulkan_resource_index);
213 
214    uint32_t set = nir_intrinsic_desc_set(intrin);
215    uint32_t binding = nir_intrinsic_binding(intrin);
216 
217    const struct anv_descriptor_set_binding_layout *bind_layout =
218       &state->layout->set[set].layout->binding[binding];
219 
220    uint32_t surface_index = state->set[set].surface_offsets[binding];
221    uint32_t array_size = bind_layout->array_size;
222 
223    b->cursor = nir_before_instr(&intrin->instr);
224 
225    nir_ssa_def *array_index = nir_ssa_for_src(b, intrin->src[0], 1);
226    if (nir_src_is_const(intrin->src[0]) || state->add_bounds_checks)
227       array_index = nir_umin(b, array_index, nir_imm_int(b, array_size - 1));
228 
229    return nir_iadd_imm(b, array_index, surface_index);
230 }
231 
232 static nir_ssa_def *
build_index_offset_for_deref(nir_deref_instr * deref,struct apply_pipeline_layout_state * state)233 build_index_offset_for_deref(nir_deref_instr *deref,
234                              struct apply_pipeline_layout_state *state)
235 {
236    nir_builder *b = &state->builder;
237 
238    nir_deref_instr *parent = nir_deref_instr_parent(deref);
239    if (parent) {
240       nir_ssa_def *addr = build_index_offset_for_deref(parent, state);
241 
242       b->cursor = nir_before_instr(&deref->instr);
243       return nir_explicit_io_address_from_deref(b, deref, addr,
244                                                 nir_address_format_32bit_index_offset);
245    }
246 
247    nir_intrinsic_instr *load_desc = nir_src_as_intrinsic(deref->parent);
248    assert(load_desc->intrinsic == nir_intrinsic_load_vulkan_descriptor);
249 
250    nir_ssa_def *index =
251       build_index_for_res_reindex(nir_src_as_intrinsic(load_desc->src[0]), state);
252 
253    /* Return a 0 offset which will get picked up by the recursion */
254    b->cursor = nir_before_instr(&deref->instr);
255    return nir_vec2(b, index, nir_imm_int(b, 0));
256 }
257 
258 static bool
try_lower_direct_buffer_intrinsic(nir_intrinsic_instr * intrin,bool is_atomic,struct apply_pipeline_layout_state * state)259 try_lower_direct_buffer_intrinsic(nir_intrinsic_instr *intrin, bool is_atomic,
260                                   struct apply_pipeline_layout_state *state)
261 {
262    nir_builder *b = &state->builder;
263 
264    nir_deref_instr *deref = nir_src_as_deref(intrin->src[0]);
265    if (!nir_deref_mode_is(deref, nir_var_mem_ssbo))
266       return false;
267 
268    /* 64-bit atomics only support A64 messages so we can't lower them to the
269     * index+offset model.
270     */
271    if (is_atomic && nir_dest_bit_size(intrin->dest) == 64)
272       return false;
273 
274    /* Normal binding table-based messages can't handle non-uniform access so
275     * we have to fall back to A64.
276     */
277    if (nir_intrinsic_access(intrin) & ACCESS_NON_UNIFORM)
278       return false;
279 
280    if (!nir_deref_find_descriptor(deref, state))
281       return false;
282 
283    nir_ssa_def *addr = build_index_offset_for_deref(deref, state);
284 
285    b->cursor = nir_before_instr(&intrin->instr);
286    nir_lower_explicit_io_instr(b, intrin, addr,
287                                nir_address_format_32bit_index_offset);
288    return true;
289 }
290 
291 static void
lower_direct_buffer_access(nir_function_impl * impl,struct apply_pipeline_layout_state * state)292 lower_direct_buffer_access(nir_function_impl *impl,
293                            struct apply_pipeline_layout_state *state)
294 {
295    nir_foreach_block(block, impl) {
296       nir_foreach_instr_safe(instr, block) {
297          if (instr->type != nir_instr_type_intrinsic)
298             continue;
299 
300          nir_intrinsic_instr *intrin = nir_instr_as_intrinsic(instr);
301          switch (intrin->intrinsic) {
302          case nir_intrinsic_load_deref:
303          case nir_intrinsic_store_deref:
304             try_lower_direct_buffer_intrinsic(intrin, false, state);
305             break;
306          case nir_intrinsic_deref_atomic_add:
307          case nir_intrinsic_deref_atomic_imin:
308          case nir_intrinsic_deref_atomic_umin:
309          case nir_intrinsic_deref_atomic_imax:
310          case nir_intrinsic_deref_atomic_umax:
311          case nir_intrinsic_deref_atomic_and:
312          case nir_intrinsic_deref_atomic_or:
313          case nir_intrinsic_deref_atomic_xor:
314          case nir_intrinsic_deref_atomic_exchange:
315          case nir_intrinsic_deref_atomic_comp_swap:
316          case nir_intrinsic_deref_atomic_fmin:
317          case nir_intrinsic_deref_atomic_fmax:
318          case nir_intrinsic_deref_atomic_fcomp_swap:
319             try_lower_direct_buffer_intrinsic(intrin, true, state);
320             break;
321 
322          case nir_intrinsic_get_ssbo_size: {
323             /* The get_ssbo_size intrinsic always just takes a
324              * index/reindex intrinsic.
325              */
326             if (!find_descriptor_for_index_src(intrin->src[0], state))
327                break;
328 
329             nir_ssa_def *index =
330                build_index_for_res_reindex(nir_src_as_intrinsic(intrin->src[0]),
331                                            state);
332             nir_instr_rewrite_src(&intrin->instr, &intrin->src[0],
333                                   nir_src_for_ssa(index));
334             _mesa_set_add(state->lowered_instrs, intrin);
335          }
336 
337          default:
338             break;
339          }
340       }
341    }
342 }
343 
344 static nir_address_format
desc_addr_format(VkDescriptorType desc_type,struct apply_pipeline_layout_state * state)345 desc_addr_format(VkDescriptorType desc_type,
346                  struct apply_pipeline_layout_state *state)
347 {
348    return (desc_type == VK_DESCRIPTOR_TYPE_STORAGE_BUFFER ||
349            desc_type == VK_DESCRIPTOR_TYPE_STORAGE_BUFFER_DYNAMIC) ?
350            state->ssbo_addr_format : nir_address_format_32bit_index_offset;
351 }
352 
353 static void
lower_res_index_intrinsic(nir_intrinsic_instr * intrin,struct apply_pipeline_layout_state * state)354 lower_res_index_intrinsic(nir_intrinsic_instr *intrin,
355                           struct apply_pipeline_layout_state *state)
356 {
357    nir_builder *b = &state->builder;
358 
359    b->cursor = nir_before_instr(&intrin->instr);
360 
361    uint32_t set = nir_intrinsic_desc_set(intrin);
362    uint32_t binding = nir_intrinsic_binding(intrin);
363    const VkDescriptorType desc_type = nir_intrinsic_desc_type(intrin);
364 
365    const struct anv_descriptor_set_binding_layout *bind_layout =
366       &state->layout->set[set].layout->binding[binding];
367 
368    uint32_t surface_index = state->set[set].surface_offsets[binding];
369    uint32_t array_size = bind_layout->array_size;
370 
371    nir_ssa_def *array_index = nir_ssa_for_src(b, intrin->src[0], 1);
372    if (nir_src_is_const(intrin->src[0]) || state->add_bounds_checks)
373       array_index = nir_umin(b, array_index, nir_imm_int(b, array_size - 1));
374 
375    nir_ssa_def *index;
376    if (state->pdevice->has_a64_buffer_access &&
377        (desc_type == VK_DESCRIPTOR_TYPE_STORAGE_BUFFER ||
378         desc_type == VK_DESCRIPTOR_TYPE_STORAGE_BUFFER_DYNAMIC)) {
379       /* We store the descriptor offset as 16.8.8 where the top 16 bits are
380        * the offset into the descriptor set, the next 8 are the binding table
381        * index of the descriptor buffer, and the bottom 8 bits are the offset
382        * (in bytes) into the dynamic offset table.
383        */
384       assert(bind_layout->dynamic_offset_index < MAX_DYNAMIC_BUFFERS);
385       uint32_t dynamic_offset_index = 0xff; /* No dynamic offset */
386       if (bind_layout->dynamic_offset_index >= 0) {
387          dynamic_offset_index =
388             state->layout->set[set].dynamic_offset_start +
389             bind_layout->dynamic_offset_index;
390       }
391 
392       const uint32_t desc_offset =
393          bind_layout->descriptor_offset << 16 |
394          (uint32_t)state->set[set].desc_offset << 8 |
395          dynamic_offset_index;
396 
397       if (state->add_bounds_checks) {
398          assert(desc_addr_format(desc_type, state) ==
399                 nir_address_format_64bit_bounded_global);
400          assert(intrin->dest.ssa.num_components == 4);
401          assert(intrin->dest.ssa.bit_size == 32);
402          index = nir_vec4(b, nir_imm_int(b, desc_offset),
403                              nir_ssa_for_src(b, intrin->src[0], 1),
404                              nir_imm_int(b, array_size - 1),
405                              nir_ssa_undef(b, 1, 32));
406       } else {
407          assert(desc_addr_format(desc_type, state) ==
408                 nir_address_format_64bit_global);
409          assert(intrin->dest.ssa.num_components == 1);
410          assert(intrin->dest.ssa.bit_size == 64);
411          index = nir_pack_64_2x32_split(b, nir_imm_int(b, desc_offset),
412                                            nir_ssa_for_src(b, intrin->src[0], 1));
413       }
414    } else if (bind_layout->data & ANV_DESCRIPTOR_INLINE_UNIFORM) {
415       /* This is an inline uniform block.  Just reference the descriptor set
416        * and use the descriptor offset as the base.
417        */
418       assert(desc_addr_format(desc_type, state) ==
419              nir_address_format_32bit_index_offset);
420       assert(intrin->dest.ssa.num_components == 2);
421       assert(intrin->dest.ssa.bit_size == 32);
422       index = nir_imm_ivec2(b, state->set[set].desc_offset,
423                                bind_layout->descriptor_offset);
424    } else {
425       assert(desc_addr_format(desc_type, state) ==
426              nir_address_format_32bit_index_offset);
427       assert(intrin->dest.ssa.num_components == 2);
428       assert(intrin->dest.ssa.bit_size == 32);
429       index = nir_vec2(b, nir_iadd_imm(b, array_index, surface_index),
430                           nir_imm_int(b, 0));
431    }
432 
433    assert(intrin->dest.is_ssa);
434    nir_ssa_def_rewrite_uses(&intrin->dest.ssa, nir_src_for_ssa(index));
435    nir_instr_remove(&intrin->instr);
436 }
437 
438 static void
lower_res_reindex_intrinsic(nir_intrinsic_instr * intrin,struct apply_pipeline_layout_state * state)439 lower_res_reindex_intrinsic(nir_intrinsic_instr *intrin,
440                             struct apply_pipeline_layout_state *state)
441 {
442    nir_builder *b = &state->builder;
443 
444    b->cursor = nir_before_instr(&intrin->instr);
445 
446    const VkDescriptorType desc_type = nir_intrinsic_desc_type(intrin);
447 
448    /* For us, the resource indices are just indices into the binding table and
449     * array elements are sequential.  A resource_reindex just turns into an
450     * add of the two indices.
451     */
452    assert(intrin->src[0].is_ssa && intrin->src[1].is_ssa);
453    nir_ssa_def *old_index = intrin->src[0].ssa;
454    nir_ssa_def *offset = intrin->src[1].ssa;
455 
456    nir_ssa_def *new_index;
457    switch (desc_addr_format(desc_type, state)) {
458    case nir_address_format_64bit_bounded_global:
459       /* See also lower_res_index_intrinsic() */
460       assert(intrin->dest.ssa.num_components == 4);
461       assert(intrin->dest.ssa.bit_size == 32);
462       new_index = nir_vec4(b, nir_channel(b, old_index, 0),
463                               nir_iadd(b, nir_channel(b, old_index, 1),
464                                           offset),
465                               nir_channel(b, old_index, 2),
466                               nir_ssa_undef(b, 1, 32));
467       break;
468 
469    case nir_address_format_64bit_global: {
470       /* See also lower_res_index_intrinsic() */
471       assert(intrin->dest.ssa.num_components == 1);
472       assert(intrin->dest.ssa.bit_size == 64);
473       nir_ssa_def *base = nir_unpack_64_2x32_split_x(b, old_index);
474       nir_ssa_def *arr_idx = nir_unpack_64_2x32_split_y(b, old_index);
475       new_index = nir_pack_64_2x32_split(b, base, nir_iadd(b, arr_idx, offset));
476       break;
477    }
478 
479    case nir_address_format_32bit_index_offset:
480       assert(intrin->dest.ssa.num_components == 2);
481       assert(intrin->dest.ssa.bit_size == 32);
482       new_index = nir_vec2(b, nir_iadd(b, nir_channel(b, old_index, 0), offset),
483                               nir_channel(b, old_index, 1));
484       break;
485 
486    default:
487       unreachable("Uhandled address format");
488    }
489 
490    assert(intrin->dest.is_ssa);
491    nir_ssa_def_rewrite_uses(&intrin->dest.ssa, nir_src_for_ssa(new_index));
492    nir_instr_remove(&intrin->instr);
493 }
494 
495 static nir_ssa_def *
build_ssbo_descriptor_load(const VkDescriptorType desc_type,nir_ssa_def * index,struct apply_pipeline_layout_state * state)496 build_ssbo_descriptor_load(const VkDescriptorType desc_type,
497                            nir_ssa_def *index,
498                            struct apply_pipeline_layout_state *state)
499 {
500    nir_builder *b = &state->builder;
501 
502    nir_ssa_def *desc_offset, *array_index;
503    switch (state->ssbo_addr_format) {
504    case nir_address_format_64bit_bounded_global:
505       /* See also lower_res_index_intrinsic() */
506       desc_offset = nir_channel(b, index, 0);
507       array_index = nir_umin(b, nir_channel(b, index, 1),
508                                 nir_channel(b, index, 2));
509       break;
510 
511    case nir_address_format_64bit_global:
512       /* See also lower_res_index_intrinsic() */
513       desc_offset = nir_unpack_64_2x32_split_x(b, index);
514       array_index = nir_unpack_64_2x32_split_y(b, index);
515       break;
516 
517    default:
518       unreachable("Unhandled address format for SSBO");
519    }
520 
521    /* The desc_offset is actually 16.8.8 */
522    nir_ssa_def *desc_buffer_index =
523       nir_extract_u8(b, desc_offset, nir_imm_int(b, 1));
524    nir_ssa_def *desc_offset_base =
525       nir_extract_u16(b, desc_offset, nir_imm_int(b, 1));
526 
527    /* Compute the actual descriptor offset */
528    const unsigned descriptor_size =
529       anv_descriptor_type_size(state->pdevice, desc_type);
530    desc_offset = nir_iadd(b, desc_offset_base,
531                              nir_imul_imm(b, array_index, descriptor_size));
532 
533    nir_intrinsic_instr *desc_load =
534       nir_intrinsic_instr_create(b->shader, nir_intrinsic_load_ubo);
535    desc_load->src[0] = nir_src_for_ssa(desc_buffer_index);
536    desc_load->src[1] = nir_src_for_ssa(desc_offset);
537    nir_intrinsic_set_align(desc_load, 8, 0);
538    desc_load->num_components = 4;
539    nir_ssa_dest_init(&desc_load->instr, &desc_load->dest, 4, 32, NULL);
540    nir_builder_instr_insert(b, &desc_load->instr);
541    nir_intrinsic_set_range_base(desc_load, 0);
542    nir_intrinsic_set_range(desc_load, ~0);
543 
544    return &desc_load->dest.ssa;
545 }
546 
547 static void
lower_load_vulkan_descriptor(nir_intrinsic_instr * intrin,struct apply_pipeline_layout_state * state)548 lower_load_vulkan_descriptor(nir_intrinsic_instr *intrin,
549                              struct apply_pipeline_layout_state *state)
550 {
551    nir_builder *b = &state->builder;
552 
553    b->cursor = nir_before_instr(&intrin->instr);
554 
555    const VkDescriptorType desc_type = nir_intrinsic_desc_type(intrin);
556 
557    assert(intrin->dest.is_ssa);
558    nir_foreach_use(src, &intrin->dest.ssa) {
559       if (src->parent_instr->type != nir_instr_type_deref)
560          continue;
561 
562       nir_deref_instr *cast = nir_instr_as_deref(src->parent_instr);
563       assert(cast->deref_type == nir_deref_type_cast);
564       switch (desc_type) {
565       case VK_DESCRIPTOR_TYPE_UNIFORM_BUFFER:
566       case VK_DESCRIPTOR_TYPE_UNIFORM_BUFFER_DYNAMIC:
567          cast->cast.align_mul = ANV_UBO_ALIGNMENT;
568          cast->cast.align_offset = 0;
569          break;
570 
571       case VK_DESCRIPTOR_TYPE_STORAGE_BUFFER:
572       case VK_DESCRIPTOR_TYPE_STORAGE_BUFFER_DYNAMIC:
573          cast->cast.align_mul = ANV_SSBO_ALIGNMENT;
574          cast->cast.align_offset = 0;
575          break;
576 
577       default:
578          break;
579       }
580    }
581 
582    assert(intrin->src[0].is_ssa);
583    nir_ssa_def *index = intrin->src[0].ssa;
584 
585    nir_ssa_def *desc;
586    if (state->pdevice->has_a64_buffer_access &&
587        (desc_type == VK_DESCRIPTOR_TYPE_STORAGE_BUFFER ||
588         desc_type == VK_DESCRIPTOR_TYPE_STORAGE_BUFFER_DYNAMIC)) {
589       desc = build_ssbo_descriptor_load(desc_type, index, state);
590 
591       /* We want nir_address_format_64bit_global */
592       if (!state->add_bounds_checks)
593          desc = nir_pack_64_2x32(b, nir_channels(b, desc, 0x3));
594 
595       if (state->has_dynamic_buffers) {
596          /* This shader has dynamic offsets and we have no way of knowing
597           * (save from the dynamic offset base index) if this buffer has a
598           * dynamic offset.
599           */
600          nir_ssa_def *desc_offset, *array_index;
601          switch (state->ssbo_addr_format) {
602          case nir_address_format_64bit_bounded_global:
603             /* See also lower_res_index_intrinsic() */
604             desc_offset = nir_channel(b, index, 0);
605             array_index = nir_umin(b, nir_channel(b, index, 1),
606                                       nir_channel(b, index, 2));
607             break;
608 
609          case nir_address_format_64bit_global:
610             /* See also lower_res_index_intrinsic() */
611             desc_offset = nir_unpack_64_2x32_split_x(b, index);
612             array_index = nir_unpack_64_2x32_split_y(b, index);
613             break;
614 
615          default:
616             unreachable("Unhandled address format for SSBO");
617          }
618 
619          nir_ssa_def *dyn_offset_base =
620             nir_extract_u8(b, desc_offset, nir_imm_int(b, 0));
621          nir_ssa_def *dyn_offset_idx =
622             nir_iadd(b, dyn_offset_base, array_index);
623          if (state->add_bounds_checks) {
624             dyn_offset_idx = nir_umin(b, dyn_offset_idx,
625                                          nir_imm_int(b, MAX_DYNAMIC_BUFFERS));
626          }
627 
628          nir_intrinsic_instr *dyn_load =
629             nir_intrinsic_instr_create(b->shader,
630                                        nir_intrinsic_load_push_constant);
631          nir_intrinsic_set_base(dyn_load, offsetof(struct anv_push_constants,
632                                                    dynamic_offsets));
633          nir_intrinsic_set_range(dyn_load, MAX_DYNAMIC_BUFFERS * 4);
634          dyn_load->src[0] = nir_src_for_ssa(nir_imul_imm(b, dyn_offset_idx, 4));
635          dyn_load->num_components = 1;
636          nir_ssa_dest_init(&dyn_load->instr, &dyn_load->dest, 1, 32, NULL);
637          nir_builder_instr_insert(b, &dyn_load->instr);
638 
639          nir_ssa_def *dynamic_offset =
640             nir_bcsel(b, nir_ieq_imm(b, dyn_offset_base, 0xff),
641                          nir_imm_int(b, 0), &dyn_load->dest.ssa);
642 
643          switch (state->ssbo_addr_format) {
644          case nir_address_format_64bit_bounded_global: {
645             /* The dynamic offset gets added to the base pointer so that we
646              * have a sliding window range.
647              */
648             nir_ssa_def *base_ptr =
649                nir_pack_64_2x32(b, nir_channels(b, desc, 0x3));
650             base_ptr = nir_iadd(b, base_ptr, nir_u2u64(b, dynamic_offset));
651             desc = nir_vec4(b, nir_unpack_64_2x32_split_x(b, base_ptr),
652                                nir_unpack_64_2x32_split_y(b, base_ptr),
653                                nir_channel(b, desc, 2),
654                                nir_channel(b, desc, 3));
655             break;
656          }
657 
658          case nir_address_format_64bit_global:
659             desc = nir_iadd(b, desc, nir_u2u64(b, dynamic_offset));
660             break;
661 
662          default:
663             unreachable("Unhandled address format for SSBO");
664          }
665       }
666    } else {
667       /* We follow the nir_address_format_32bit_index_offset model */
668       desc = index;
669    }
670 
671    assert(intrin->dest.is_ssa);
672    nir_ssa_def_rewrite_uses(&intrin->dest.ssa, nir_src_for_ssa(desc));
673    nir_instr_remove(&intrin->instr);
674 }
675 
676 static void
lower_get_ssbo_size(nir_intrinsic_instr * intrin,struct apply_pipeline_layout_state * state)677 lower_get_ssbo_size(nir_intrinsic_instr *intrin,
678                     struct apply_pipeline_layout_state *state)
679 {
680    if (_mesa_set_search(state->lowered_instrs, intrin))
681       return;
682 
683    nir_builder *b = &state->builder;
684 
685    b->cursor = nir_before_instr(&intrin->instr);
686 
687    const VkDescriptorType desc_type = VK_DESCRIPTOR_TYPE_STORAGE_BUFFER;
688 
689    assert(intrin->src[0].is_ssa);
690    nir_ssa_def *index = intrin->src[0].ssa;
691 
692    if (state->pdevice->has_a64_buffer_access) {
693       nir_ssa_def *desc = build_ssbo_descriptor_load(desc_type, index, state);
694       nir_ssa_def *size = nir_channel(b, desc, 2);
695       nir_ssa_def_rewrite_uses(&intrin->dest.ssa, nir_src_for_ssa(size));
696       nir_instr_remove(&intrin->instr);
697    } else {
698       /* We're following the nir_address_format_32bit_index_offset model so
699        * the binding table index is the first component of the address.  The
700        * back-end wants a scalar binding table index source.
701        */
702       nir_instr_rewrite_src(&intrin->instr, &intrin->src[0],
703                             nir_src_for_ssa(nir_channel(b, index, 0)));
704    }
705 }
706 
707 static nir_ssa_def *
build_descriptor_load(nir_deref_instr * deref,unsigned offset,unsigned num_components,unsigned bit_size,struct apply_pipeline_layout_state * state)708 build_descriptor_load(nir_deref_instr *deref, unsigned offset,
709                       unsigned num_components, unsigned bit_size,
710                       struct apply_pipeline_layout_state *state)
711 {
712    nir_variable *var = nir_deref_instr_get_variable(deref);
713 
714    unsigned set = var->data.descriptor_set;
715    unsigned binding = var->data.binding;
716    unsigned array_size =
717       state->layout->set[set].layout->binding[binding].array_size;
718 
719    const struct anv_descriptor_set_binding_layout *bind_layout =
720       &state->layout->set[set].layout->binding[binding];
721 
722    nir_builder *b = &state->builder;
723 
724    nir_ssa_def *desc_buffer_index =
725       nir_imm_int(b, state->set[set].desc_offset);
726 
727    nir_ssa_def *desc_offset =
728       nir_imm_int(b, bind_layout->descriptor_offset + offset);
729    if (deref->deref_type != nir_deref_type_var) {
730       assert(deref->deref_type == nir_deref_type_array);
731 
732       const unsigned descriptor_size = anv_descriptor_size(bind_layout);
733       nir_ssa_def *arr_index = nir_ssa_for_src(b, deref->arr.index, 1);
734       if (state->add_bounds_checks)
735          arr_index = nir_umin(b, arr_index, nir_imm_int(b, array_size - 1));
736 
737       desc_offset = nir_iadd(b, desc_offset,
738                              nir_imul_imm(b, arr_index, descriptor_size));
739    }
740 
741    nir_intrinsic_instr *desc_load =
742       nir_intrinsic_instr_create(b->shader, nir_intrinsic_load_ubo);
743    desc_load->src[0] = nir_src_for_ssa(desc_buffer_index);
744    desc_load->src[1] = nir_src_for_ssa(desc_offset);
745    nir_intrinsic_set_align(desc_load, 8, offset % 8);
746    desc_load->num_components = num_components;
747    nir_ssa_dest_init(&desc_load->instr, &desc_load->dest,
748                      num_components, bit_size, NULL);
749    nir_builder_instr_insert(b, &desc_load->instr);
750    nir_intrinsic_set_range_base(desc_load, 0);
751    nir_intrinsic_set_range(desc_load, ~0);
752 
753    return &desc_load->dest.ssa;
754 }
755 
756 static void
lower_image_intrinsic(nir_intrinsic_instr * intrin,struct apply_pipeline_layout_state * state)757 lower_image_intrinsic(nir_intrinsic_instr *intrin,
758                       struct apply_pipeline_layout_state *state)
759 {
760    nir_deref_instr *deref = nir_src_as_deref(intrin->src[0]);
761    nir_variable *var = nir_deref_instr_get_variable(deref);
762 
763    unsigned set = var->data.descriptor_set;
764    unsigned binding = var->data.binding;
765    unsigned binding_offset = state->set[set].surface_offsets[binding];
766 
767    nir_builder *b = &state->builder;
768    b->cursor = nir_before_instr(&intrin->instr);
769 
770    ASSERTED const bool use_bindless = state->pdevice->has_bindless_images;
771 
772    if (intrin->intrinsic == nir_intrinsic_image_deref_load_param_intel) {
773       b->cursor = nir_instr_remove(&intrin->instr);
774 
775       assert(!use_bindless); /* Otherwise our offsets would be wrong */
776       const unsigned param = nir_intrinsic_base(intrin);
777 
778       nir_ssa_def *desc =
779          build_descriptor_load(deref, param * 16,
780                                intrin->dest.ssa.num_components,
781                                intrin->dest.ssa.bit_size, state);
782 
783       nir_ssa_def_rewrite_uses(&intrin->dest.ssa, nir_src_for_ssa(desc));
784    } else if (binding_offset > MAX_BINDING_TABLE_SIZE) {
785       const bool write_only =
786          (var->data.access & ACCESS_NON_READABLE) != 0;
787       nir_ssa_def *desc =
788          build_descriptor_load(deref, 0, 2, 32, state);
789       nir_ssa_def *handle = nir_channel(b, desc, write_only ? 1 : 0);
790       nir_rewrite_image_intrinsic(intrin, handle, true);
791    } else {
792       unsigned array_size =
793          state->layout->set[set].layout->binding[binding].array_size;
794 
795       nir_ssa_def *index = NULL;
796       if (deref->deref_type != nir_deref_type_var) {
797          assert(deref->deref_type == nir_deref_type_array);
798          index = nir_ssa_for_src(b, deref->arr.index, 1);
799          if (state->add_bounds_checks)
800             index = nir_umin(b, index, nir_imm_int(b, array_size - 1));
801       } else {
802          index = nir_imm_int(b, 0);
803       }
804 
805       index = nir_iadd_imm(b, index, binding_offset);
806       nir_rewrite_image_intrinsic(intrin, index, false);
807    }
808 }
809 
810 static void
lower_load_constant(nir_intrinsic_instr * intrin,struct apply_pipeline_layout_state * state)811 lower_load_constant(nir_intrinsic_instr *intrin,
812                     struct apply_pipeline_layout_state *state)
813 {
814    nir_builder *b = &state->builder;
815 
816    b->cursor = nir_instr_remove(&intrin->instr);
817 
818    /* Any constant-offset load_constant instructions should have been removed
819     * by constant folding.
820     */
821    assert(!nir_src_is_const(intrin->src[0]));
822    nir_ssa_def *offset = nir_iadd_imm(b, nir_ssa_for_src(b, intrin->src[0], 1),
823                                       nir_intrinsic_base(intrin));
824 
825    nir_ssa_def *data;
826    if (state->pdevice->use_softpin) {
827       unsigned load_size = intrin->dest.ssa.num_components *
828                            intrin->dest.ssa.bit_size / 8;
829       unsigned load_align = intrin->dest.ssa.bit_size / 8;
830 
831       assert(load_size < b->shader->constant_data_size);
832       unsigned max_offset = b->shader->constant_data_size - load_size;
833       offset = nir_umin(b, offset, nir_imm_int(b, max_offset));
834 
835       nir_ssa_def *const_data_base_addr = nir_pack_64_2x32_split(b,
836          nir_load_reloc_const_intel(b, ANV_SHADER_RELOC_CONST_DATA_ADDR_LOW),
837          nir_load_reloc_const_intel(b, ANV_SHADER_RELOC_CONST_DATA_ADDR_HIGH));
838 
839       data = nir_load_global(b, nir_iadd(b, const_data_base_addr,
840                                             nir_u2u64(b, offset)),
841                              load_align,
842                              intrin->dest.ssa.num_components,
843                              intrin->dest.ssa.bit_size);
844    } else {
845       nir_ssa_def *index = nir_imm_int(b, state->constants_offset);
846 
847       nir_intrinsic_instr *load_ubo =
848          nir_intrinsic_instr_create(b->shader, nir_intrinsic_load_ubo);
849       load_ubo->num_components = intrin->num_components;
850       load_ubo->src[0] = nir_src_for_ssa(index);
851       load_ubo->src[1] = nir_src_for_ssa(offset);
852       nir_intrinsic_set_align(load_ubo, intrin->dest.ssa.bit_size / 8, 0);
853       nir_intrinsic_set_range_base(load_ubo, nir_intrinsic_base(intrin));
854       nir_intrinsic_set_range(load_ubo, nir_intrinsic_range(intrin));
855       nir_ssa_dest_init(&load_ubo->instr, &load_ubo->dest,
856                         intrin->dest.ssa.num_components,
857                         intrin->dest.ssa.bit_size, NULL);
858       nir_builder_instr_insert(b, &load_ubo->instr);
859       data = &load_ubo->dest.ssa;
860    }
861 
862    nir_ssa_def_rewrite_uses(&intrin->dest.ssa, nir_src_for_ssa(data));
863 }
864 
865 static void
lower_tex_deref(nir_tex_instr * tex,nir_tex_src_type deref_src_type,unsigned * base_index,unsigned plane,struct apply_pipeline_layout_state * state)866 lower_tex_deref(nir_tex_instr *tex, nir_tex_src_type deref_src_type,
867                 unsigned *base_index, unsigned plane,
868                 struct apply_pipeline_layout_state *state)
869 {
870    int deref_src_idx = nir_tex_instr_src_index(tex, deref_src_type);
871    if (deref_src_idx < 0)
872       return;
873 
874    nir_deref_instr *deref = nir_src_as_deref(tex->src[deref_src_idx].src);
875    nir_variable *var = nir_deref_instr_get_variable(deref);
876 
877    unsigned set = var->data.descriptor_set;
878    unsigned binding = var->data.binding;
879    unsigned array_size =
880       state->layout->set[set].layout->binding[binding].array_size;
881 
882    unsigned binding_offset;
883    if (deref_src_type == nir_tex_src_texture_deref) {
884       binding_offset = state->set[set].surface_offsets[binding];
885    } else {
886       assert(deref_src_type == nir_tex_src_sampler_deref);
887       binding_offset = state->set[set].sampler_offsets[binding];
888    }
889 
890    nir_builder *b = &state->builder;
891 
892    nir_tex_src_type offset_src_type;
893    nir_ssa_def *index = NULL;
894    if (binding_offset > MAX_BINDING_TABLE_SIZE) {
895       const unsigned plane_offset =
896          plane * sizeof(struct anv_sampled_image_descriptor);
897 
898       nir_ssa_def *desc =
899          build_descriptor_load(deref, plane_offset, 2, 32, state);
900 
901       if (deref_src_type == nir_tex_src_texture_deref) {
902          offset_src_type = nir_tex_src_texture_handle;
903          index = nir_channel(b, desc, 0);
904       } else {
905          assert(deref_src_type == nir_tex_src_sampler_deref);
906          offset_src_type = nir_tex_src_sampler_handle;
907          index = nir_channel(b, desc, 1);
908       }
909    } else {
910       if (deref_src_type == nir_tex_src_texture_deref) {
911          offset_src_type = nir_tex_src_texture_offset;
912       } else {
913          assert(deref_src_type == nir_tex_src_sampler_deref);
914          offset_src_type = nir_tex_src_sampler_offset;
915       }
916 
917       *base_index = binding_offset + plane;
918 
919       if (deref->deref_type != nir_deref_type_var) {
920          assert(deref->deref_type == nir_deref_type_array);
921 
922          if (nir_src_is_const(deref->arr.index)) {
923             unsigned arr_index = MIN2(nir_src_as_uint(deref->arr.index), array_size - 1);
924             struct anv_sampler **immutable_samplers =
925                state->layout->set[set].layout->binding[binding].immutable_samplers;
926             if (immutable_samplers) {
927                /* Array of YCbCr samplers are tightly packed in the binding
928                 * tables, compute the offset of an element in the array by
929                 * adding the number of planes of all preceding elements.
930                 */
931                unsigned desc_arr_index = 0;
932                for (int i = 0; i < arr_index; i++)
933                   desc_arr_index += immutable_samplers[i]->n_planes;
934                *base_index += desc_arr_index;
935             } else {
936                *base_index += arr_index;
937             }
938          } else {
939             /* From VK_KHR_sampler_ycbcr_conversion:
940              *
941              * If sampler Y’CBCR conversion is enabled, the combined image
942              * sampler must be indexed only by constant integral expressions
943              * when aggregated into arrays in shader code, irrespective of
944              * the shaderSampledImageArrayDynamicIndexing feature.
945              */
946             assert(nir_tex_instr_src_index(tex, nir_tex_src_plane) == -1);
947 
948             index = nir_ssa_for_src(b, deref->arr.index, 1);
949 
950             if (state->add_bounds_checks)
951                index = nir_umin(b, index, nir_imm_int(b, array_size - 1));
952          }
953       }
954    }
955 
956    if (index) {
957       nir_instr_rewrite_src(&tex->instr, &tex->src[deref_src_idx].src,
958                             nir_src_for_ssa(index));
959       tex->src[deref_src_idx].src_type = offset_src_type;
960    } else {
961       nir_tex_instr_remove_src(tex, deref_src_idx);
962    }
963 }
964 
965 static uint32_t
tex_instr_get_and_remove_plane_src(nir_tex_instr * tex)966 tex_instr_get_and_remove_plane_src(nir_tex_instr *tex)
967 {
968    int plane_src_idx = nir_tex_instr_src_index(tex, nir_tex_src_plane);
969    if (plane_src_idx < 0)
970       return 0;
971 
972    unsigned plane = nir_src_as_uint(tex->src[plane_src_idx].src);
973 
974    nir_tex_instr_remove_src(tex, plane_src_idx);
975 
976    return plane;
977 }
978 
979 static nir_ssa_def *
build_def_array_select(nir_builder * b,nir_ssa_def ** srcs,nir_ssa_def * idx,unsigned start,unsigned end)980 build_def_array_select(nir_builder *b, nir_ssa_def **srcs, nir_ssa_def *idx,
981                        unsigned start, unsigned end)
982 {
983    if (start == end - 1) {
984       return srcs[start];
985    } else {
986       unsigned mid = start + (end - start) / 2;
987       return nir_bcsel(b, nir_ilt(b, idx, nir_imm_int(b, mid)),
988                        build_def_array_select(b, srcs, idx, start, mid),
989                        build_def_array_select(b, srcs, idx, mid, end));
990    }
991 }
992 
993 static void
lower_gen7_tex_swizzle(nir_tex_instr * tex,unsigned plane,struct apply_pipeline_layout_state * state)994 lower_gen7_tex_swizzle(nir_tex_instr *tex, unsigned plane,
995                        struct apply_pipeline_layout_state *state)
996 {
997    assert(state->pdevice->info.gen == 7 && !state->pdevice->info.is_haswell);
998    if (tex->sampler_dim == GLSL_SAMPLER_DIM_BUF ||
999        nir_tex_instr_is_query(tex) ||
1000        tex->op == nir_texop_tg4 || /* We can't swizzle TG4 */
1001        (tex->is_shadow && tex->is_new_style_shadow))
1002       return;
1003 
1004    int deref_src_idx = nir_tex_instr_src_index(tex, nir_tex_src_texture_deref);
1005    assert(deref_src_idx >= 0);
1006 
1007    nir_deref_instr *deref = nir_src_as_deref(tex->src[deref_src_idx].src);
1008    nir_variable *var = nir_deref_instr_get_variable(deref);
1009 
1010    unsigned set = var->data.descriptor_set;
1011    unsigned binding = var->data.binding;
1012    const struct anv_descriptor_set_binding_layout *bind_layout =
1013       &state->layout->set[set].layout->binding[binding];
1014 
1015    if ((bind_layout->data & ANV_DESCRIPTOR_TEXTURE_SWIZZLE) == 0)
1016       return;
1017 
1018    nir_builder *b = &state->builder;
1019    b->cursor = nir_before_instr(&tex->instr);
1020 
1021    const unsigned plane_offset =
1022       plane * sizeof(struct anv_texture_swizzle_descriptor);
1023    nir_ssa_def *swiz =
1024       build_descriptor_load(deref, plane_offset, 1, 32, state);
1025 
1026    b->cursor = nir_after_instr(&tex->instr);
1027 
1028    assert(tex->dest.ssa.bit_size == 32);
1029    assert(tex->dest.ssa.num_components == 4);
1030 
1031    /* Initializing to undef is ok; nir_opt_undef will clean it up. */
1032    nir_ssa_def *undef = nir_ssa_undef(b, 1, 32);
1033    nir_ssa_def *comps[8];
1034    for (unsigned i = 0; i < ARRAY_SIZE(comps); i++)
1035       comps[i] = undef;
1036 
1037    comps[ISL_CHANNEL_SELECT_ZERO] = nir_imm_int(b, 0);
1038    if (nir_alu_type_get_base_type(tex->dest_type) == nir_type_float)
1039       comps[ISL_CHANNEL_SELECT_ONE] = nir_imm_float(b, 1);
1040    else
1041       comps[ISL_CHANNEL_SELECT_ONE] = nir_imm_int(b, 1);
1042    comps[ISL_CHANNEL_SELECT_RED] = nir_channel(b, &tex->dest.ssa, 0);
1043    comps[ISL_CHANNEL_SELECT_GREEN] = nir_channel(b, &tex->dest.ssa, 1);
1044    comps[ISL_CHANNEL_SELECT_BLUE] = nir_channel(b, &tex->dest.ssa, 2);
1045    comps[ISL_CHANNEL_SELECT_ALPHA] = nir_channel(b, &tex->dest.ssa, 3);
1046 
1047    nir_ssa_def *swiz_comps[4];
1048    for (unsigned i = 0; i < 4; i++) {
1049       nir_ssa_def *comp_swiz = nir_extract_u8(b, swiz, nir_imm_int(b, i));
1050       swiz_comps[i] = build_def_array_select(b, comps, comp_swiz, 0, 8);
1051    }
1052    nir_ssa_def *swiz_tex_res = nir_vec(b, swiz_comps, 4);
1053 
1054    /* Rewrite uses before we insert so we don't rewrite this use */
1055    nir_ssa_def_rewrite_uses_after(&tex->dest.ssa,
1056                                   nir_src_for_ssa(swiz_tex_res),
1057                                   swiz_tex_res->parent_instr);
1058 }
1059 
1060 static void
lower_tex(nir_tex_instr * tex,struct apply_pipeline_layout_state * state)1061 lower_tex(nir_tex_instr *tex, struct apply_pipeline_layout_state *state)
1062 {
1063    unsigned plane = tex_instr_get_and_remove_plane_src(tex);
1064 
1065    /* On Ivy Bridge and Bay Trail, we have to swizzle in the shader.  Do this
1066     * before we lower the derefs away so we can still find the descriptor.
1067     */
1068    if (state->pdevice->info.gen == 7 && !state->pdevice->info.is_haswell)
1069       lower_gen7_tex_swizzle(tex, plane, state);
1070 
1071    state->builder.cursor = nir_before_instr(&tex->instr);
1072 
1073    lower_tex_deref(tex, nir_tex_src_texture_deref,
1074                    &tex->texture_index, plane, state);
1075 
1076    lower_tex_deref(tex, nir_tex_src_sampler_deref,
1077                    &tex->sampler_index, plane, state);
1078 }
1079 
1080 static void
apply_pipeline_layout_block(nir_block * block,struct apply_pipeline_layout_state * state)1081 apply_pipeline_layout_block(nir_block *block,
1082                             struct apply_pipeline_layout_state *state)
1083 {
1084    nir_foreach_instr_safe(instr, block) {
1085       switch (instr->type) {
1086       case nir_instr_type_intrinsic: {
1087          nir_intrinsic_instr *intrin = nir_instr_as_intrinsic(instr);
1088          switch (intrin->intrinsic) {
1089          case nir_intrinsic_vulkan_resource_index:
1090             lower_res_index_intrinsic(intrin, state);
1091             break;
1092          case nir_intrinsic_vulkan_resource_reindex:
1093             lower_res_reindex_intrinsic(intrin, state);
1094             break;
1095          case nir_intrinsic_load_vulkan_descriptor:
1096             lower_load_vulkan_descriptor(intrin, state);
1097             break;
1098          case nir_intrinsic_get_ssbo_size:
1099             lower_get_ssbo_size(intrin, state);
1100             break;
1101          case nir_intrinsic_image_deref_load:
1102          case nir_intrinsic_image_deref_store:
1103          case nir_intrinsic_image_deref_atomic_add:
1104          case nir_intrinsic_image_deref_atomic_imin:
1105          case nir_intrinsic_image_deref_atomic_umin:
1106          case nir_intrinsic_image_deref_atomic_imax:
1107          case nir_intrinsic_image_deref_atomic_umax:
1108          case nir_intrinsic_image_deref_atomic_and:
1109          case nir_intrinsic_image_deref_atomic_or:
1110          case nir_intrinsic_image_deref_atomic_xor:
1111          case nir_intrinsic_image_deref_atomic_exchange:
1112          case nir_intrinsic_image_deref_atomic_comp_swap:
1113          case nir_intrinsic_image_deref_size:
1114          case nir_intrinsic_image_deref_samples:
1115          case nir_intrinsic_image_deref_load_param_intel:
1116          case nir_intrinsic_image_deref_load_raw_intel:
1117          case nir_intrinsic_image_deref_store_raw_intel:
1118             lower_image_intrinsic(intrin, state);
1119             break;
1120          case nir_intrinsic_load_constant:
1121             lower_load_constant(intrin, state);
1122             break;
1123          default:
1124             break;
1125          }
1126          break;
1127       }
1128       case nir_instr_type_tex:
1129          lower_tex(nir_instr_as_tex(instr), state);
1130          break;
1131       default:
1132          continue;
1133       }
1134    }
1135 }
1136 
1137 struct binding_info {
1138    uint32_t binding;
1139    uint8_t set;
1140    uint16_t score;
1141 };
1142 
1143 static int
compare_binding_infos(const void * _a,const void * _b)1144 compare_binding_infos(const void *_a, const void *_b)
1145 {
1146    const struct binding_info *a = _a, *b = _b;
1147    if (a->score != b->score)
1148       return b->score - a->score;
1149 
1150    if (a->set != b->set)
1151       return a->set - b->set;
1152 
1153    return a->binding - b->binding;
1154 }
1155 
1156 void
anv_nir_apply_pipeline_layout(const struct anv_physical_device * pdevice,bool robust_buffer_access,const struct anv_pipeline_layout * layout,nir_shader * shader,struct anv_pipeline_bind_map * map)1157 anv_nir_apply_pipeline_layout(const struct anv_physical_device *pdevice,
1158                               bool robust_buffer_access,
1159                               const struct anv_pipeline_layout *layout,
1160                               nir_shader *shader,
1161                               struct anv_pipeline_bind_map *map)
1162 {
1163    void *mem_ctx = ralloc_context(NULL);
1164 
1165    struct apply_pipeline_layout_state state = {
1166       .pdevice = pdevice,
1167       .shader = shader,
1168       .layout = layout,
1169       .add_bounds_checks = robust_buffer_access,
1170       .ssbo_addr_format = anv_nir_ssbo_addr_format(pdevice, robust_buffer_access),
1171       .lowered_instrs = _mesa_pointer_set_create(mem_ctx),
1172    };
1173 
1174    for (unsigned s = 0; s < layout->num_sets; s++) {
1175       const unsigned count = layout->set[s].layout->binding_count;
1176       state.set[s].use_count = rzalloc_array(mem_ctx, uint8_t, count);
1177       state.set[s].surface_offsets = rzalloc_array(mem_ctx, uint8_t, count);
1178       state.set[s].sampler_offsets = rzalloc_array(mem_ctx, uint8_t, count);
1179    }
1180 
1181    nir_foreach_function(function, shader) {
1182       if (!function->impl)
1183          continue;
1184 
1185       nir_foreach_block(block, function->impl)
1186          get_used_bindings_block(block, &state);
1187    }
1188 
1189    for (unsigned s = 0; s < layout->num_sets; s++) {
1190       if (state.set[s].desc_buffer_used) {
1191          map->surface_to_descriptor[map->surface_count] =
1192             (struct anv_pipeline_binding) {
1193                .set = ANV_DESCRIPTOR_SET_DESCRIPTORS,
1194                .index = s,
1195             };
1196          state.set[s].desc_offset = map->surface_count;
1197          map->surface_count++;
1198       }
1199    }
1200 
1201    if (state.uses_constants && !pdevice->use_softpin) {
1202       state.constants_offset = map->surface_count;
1203       map->surface_to_descriptor[map->surface_count].set =
1204          ANV_DESCRIPTOR_SET_SHADER_CONSTANTS;
1205       map->surface_count++;
1206    }
1207 
1208    unsigned used_binding_count = 0;
1209    for (uint32_t set = 0; set < layout->num_sets; set++) {
1210       struct anv_descriptor_set_layout *set_layout = layout->set[set].layout;
1211       for (unsigned b = 0; b < set_layout->binding_count; b++) {
1212          if (state.set[set].use_count[b] == 0)
1213             continue;
1214 
1215          used_binding_count++;
1216       }
1217    }
1218 
1219    struct binding_info *infos =
1220       rzalloc_array(mem_ctx, struct binding_info, used_binding_count);
1221    used_binding_count = 0;
1222    for (uint32_t set = 0; set < layout->num_sets; set++) {
1223       const struct anv_descriptor_set_layout *set_layout = layout->set[set].layout;
1224       for (unsigned b = 0; b < set_layout->binding_count; b++) {
1225          if (state.set[set].use_count[b] == 0)
1226             continue;
1227 
1228          const struct anv_descriptor_set_binding_layout *binding =
1229                &layout->set[set].layout->binding[b];
1230 
1231          /* Do a fixed-point calculation to generate a score based on the
1232           * number of uses and the binding array size.  We shift by 7 instead
1233           * of 8 because we're going to use the top bit below to make
1234           * everything which does not support bindless super higher priority
1235           * than things which do.
1236           */
1237          uint16_t score = ((uint16_t)state.set[set].use_count[b] << 7) /
1238                           binding->array_size;
1239 
1240          /* If the descriptor type doesn't support bindless then put it at the
1241           * beginning so we guarantee it gets a slot.
1242           */
1243          if (!anv_descriptor_supports_bindless(pdevice, binding, true) ||
1244              !anv_descriptor_supports_bindless(pdevice, binding, false))
1245             score |= 1 << 15;
1246 
1247          infos[used_binding_count++] = (struct binding_info) {
1248             .set = set,
1249             .binding = b,
1250             .score = score,
1251          };
1252       }
1253    }
1254 
1255    /* Order the binding infos based on score with highest scores first.  If
1256     * scores are equal we then order by set and binding.
1257     */
1258    qsort(infos, used_binding_count, sizeof(struct binding_info),
1259          compare_binding_infos);
1260 
1261    for (unsigned i = 0; i < used_binding_count; i++) {
1262       unsigned set = infos[i].set, b = infos[i].binding;
1263       const struct anv_descriptor_set_binding_layout *binding =
1264             &layout->set[set].layout->binding[b];
1265 
1266       const uint32_t array_size = binding->array_size;
1267 
1268       if (binding->dynamic_offset_index >= 0)
1269          state.has_dynamic_buffers = true;
1270 
1271       if (binding->data & ANV_DESCRIPTOR_SURFACE_STATE) {
1272          if (map->surface_count + array_size > MAX_BINDING_TABLE_SIZE ||
1273              anv_descriptor_requires_bindless(pdevice, binding, false)) {
1274             /* If this descriptor doesn't fit in the binding table or if it
1275              * requires bindless for some reason, flag it as bindless.
1276              */
1277             assert(anv_descriptor_supports_bindless(pdevice, binding, false));
1278             state.set[set].surface_offsets[b] = BINDLESS_OFFSET;
1279          } else {
1280             state.set[set].surface_offsets[b] = map->surface_count;
1281             if (binding->dynamic_offset_index < 0) {
1282                struct anv_sampler **samplers = binding->immutable_samplers;
1283                for (unsigned i = 0; i < binding->array_size; i++) {
1284                   uint8_t planes = samplers ? samplers[i]->n_planes : 1;
1285                   for (uint8_t p = 0; p < planes; p++) {
1286                      map->surface_to_descriptor[map->surface_count++] =
1287                         (struct anv_pipeline_binding) {
1288                            .set = set,
1289                            .index = binding->descriptor_index + i,
1290                            .plane = p,
1291                         };
1292                   }
1293                }
1294             } else {
1295                for (unsigned i = 0; i < binding->array_size; i++) {
1296                   map->surface_to_descriptor[map->surface_count++] =
1297                      (struct anv_pipeline_binding) {
1298                         .set = set,
1299                         .index = binding->descriptor_index + i,
1300                         .dynamic_offset_index =
1301                            layout->set[set].dynamic_offset_start +
1302                            binding->dynamic_offset_index + i,
1303                      };
1304                }
1305             }
1306          }
1307          assert(map->surface_count <= MAX_BINDING_TABLE_SIZE);
1308       }
1309 
1310       if (binding->data & ANV_DESCRIPTOR_SAMPLER_STATE) {
1311          if (map->sampler_count + array_size > MAX_SAMPLER_TABLE_SIZE ||
1312              anv_descriptor_requires_bindless(pdevice, binding, true)) {
1313             /* If this descriptor doesn't fit in the binding table or if it
1314              * requires bindless for some reason, flag it as bindless.
1315              *
1316              * We also make large sampler arrays bindless because we can avoid
1317              * using indirect sends thanks to bindless samplers being packed
1318              * less tightly than the sampler table.
1319              */
1320             assert(anv_descriptor_supports_bindless(pdevice, binding, true));
1321             state.set[set].sampler_offsets[b] = BINDLESS_OFFSET;
1322          } else {
1323             state.set[set].sampler_offsets[b] = map->sampler_count;
1324             struct anv_sampler **samplers = binding->immutable_samplers;
1325             for (unsigned i = 0; i < binding->array_size; i++) {
1326                uint8_t planes = samplers ? samplers[i]->n_planes : 1;
1327                for (uint8_t p = 0; p < planes; p++) {
1328                   map->sampler_to_descriptor[map->sampler_count++] =
1329                      (struct anv_pipeline_binding) {
1330                         .set = set,
1331                         .index = binding->descriptor_index + i,
1332                         .plane = p,
1333                      };
1334                }
1335             }
1336          }
1337       }
1338    }
1339 
1340    nir_foreach_uniform_variable(var, shader) {
1341       const struct glsl_type *glsl_type = glsl_without_array(var->type);
1342 
1343       if (!glsl_type_is_image(glsl_type))
1344          continue;
1345 
1346       enum glsl_sampler_dim dim = glsl_get_sampler_dim(glsl_type);
1347 
1348       const uint32_t set = var->data.descriptor_set;
1349       const uint32_t binding = var->data.binding;
1350       const struct anv_descriptor_set_binding_layout *bind_layout =
1351             &layout->set[set].layout->binding[binding];
1352       const uint32_t array_size = bind_layout->array_size;
1353 
1354       if (state.set[set].use_count[binding] == 0)
1355          continue;
1356 
1357       if (state.set[set].surface_offsets[binding] >= MAX_BINDING_TABLE_SIZE)
1358          continue;
1359 
1360       struct anv_pipeline_binding *pipe_binding =
1361          &map->surface_to_descriptor[state.set[set].surface_offsets[binding]];
1362       for (unsigned i = 0; i < array_size; i++) {
1363          assert(pipe_binding[i].set == set);
1364          assert(pipe_binding[i].index == bind_layout->descriptor_index + i);
1365 
1366          if (dim == GLSL_SAMPLER_DIM_SUBPASS ||
1367              dim == GLSL_SAMPLER_DIM_SUBPASS_MS)
1368             pipe_binding[i].input_attachment_index = var->data.index + i;
1369 
1370          /* NOTE: This is a uint8_t so we really do need to != 0 here */
1371          pipe_binding[i].write_only =
1372             (var->data.access & ACCESS_NON_READABLE) != 0;
1373       }
1374    }
1375 
1376    nir_foreach_function(function, shader) {
1377       if (!function->impl)
1378          continue;
1379 
1380       nir_builder_init(&state.builder, function->impl);
1381 
1382       /* Before we do the normal lowering, we look for any SSBO operations
1383        * that we can lower to the BTI model and lower them up-front.  The BTI
1384        * model can perform better than the A64 model for a couple reasons:
1385        *
1386        *  1. 48-bit address calculations are potentially expensive and using
1387        *     the BTI model lets us simply compute 32-bit offsets and the
1388        *     hardware adds the 64-bit surface base address.
1389        *
1390        *  2. The BTI messages, because they use surface states, do bounds
1391        *     checking for us.  With the A64 model, we have to do our own
1392        *     bounds checking and this means wider pointers and extra
1393        *     calculations and branching in the shader.
1394        *
1395        * The solution to both of these is to convert things to the BTI model
1396        * opportunistically.  The reason why we need to do this as a pre-pass
1397        * is for two reasons:
1398        *
1399        *  1. The BTI model requires nir_address_format_32bit_index_offset
1400        *     pointers which are not the same type as the pointers needed for
1401        *     the A64 model.  Because all our derefs are set up for the A64
1402        *     model (in case we have variable pointers), we have to crawl all
1403        *     the way back to the vulkan_resource_index intrinsic and build a
1404        *     completely fresh index+offset calculation.
1405        *
1406        *  2. Because the variable-pointers-capable lowering that we do as part
1407        *     of apply_pipeline_layout_block is destructive (It really has to
1408        *     be to handle variable pointers properly), we've lost the deref
1409        *     information by the time we get to the load/store/atomic
1410        *     intrinsics in that pass.
1411        */
1412       lower_direct_buffer_access(function->impl, &state);
1413 
1414       nir_foreach_block(block, function->impl)
1415          apply_pipeline_layout_block(block, &state);
1416       nir_metadata_preserve(function->impl, nir_metadata_block_index |
1417                                             nir_metadata_dominance);
1418    }
1419 
1420    ralloc_free(mem_ctx);
1421 
1422    /* Now that we're done computing the surface and sampler portions of the
1423     * bind map, hash them.  This lets us quickly determine if the actual
1424     * mapping has changed and not just a no-op pipeline change.
1425     */
1426    _mesa_sha1_compute(map->surface_to_descriptor,
1427                       map->surface_count * sizeof(struct anv_pipeline_binding),
1428                       map->surface_sha1);
1429    _mesa_sha1_compute(map->sampler_to_descriptor,
1430                       map->sampler_count * sizeof(struct anv_pipeline_binding),
1431                       map->sampler_sha1);
1432 }
1433