nir: Take a nir_shader and variable mode in assign_var_locations
[mesa.git] / src / compiler / nir / nir_lower_io.c
1 /*
2 * Copyright © 2014 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 * Authors:
24 * Connor Abbott (cwabbott0@gmail.com)
25 * Jason Ekstrand (jason@jlekstrand.net)
26 *
27 */
28
29 /*
30 * This lowering pass converts references to input/output variables with
31 * loads/stores to actual input/output intrinsics.
32 */
33
34 #include "nir.h"
35 #include "nir_builder.h"
36 #include "nir_deref.h"
37
38 #include "util/u_math.h"
39
40 struct lower_io_state {
41 void *dead_ctx;
42 nir_builder builder;
43 int (*type_size)(const struct glsl_type *type, bool);
44 nir_variable_mode modes;
45 nir_lower_io_options options;
46 };
47
48 static nir_intrinsic_op
49 ssbo_atomic_for_deref(nir_intrinsic_op deref_op)
50 {
51 switch (deref_op) {
52 #define OP(O) case nir_intrinsic_deref_##O: return nir_intrinsic_ssbo_##O;
53 OP(atomic_exchange)
54 OP(atomic_comp_swap)
55 OP(atomic_add)
56 OP(atomic_imin)
57 OP(atomic_umin)
58 OP(atomic_imax)
59 OP(atomic_umax)
60 OP(atomic_and)
61 OP(atomic_or)
62 OP(atomic_xor)
63 OP(atomic_fadd)
64 OP(atomic_fmin)
65 OP(atomic_fmax)
66 OP(atomic_fcomp_swap)
67 #undef OP
68 default:
69 unreachable("Invalid SSBO atomic");
70 }
71 }
72
73 static nir_intrinsic_op
74 global_atomic_for_deref(nir_intrinsic_op deref_op)
75 {
76 switch (deref_op) {
77 #define OP(O) case nir_intrinsic_deref_##O: return nir_intrinsic_global_##O;
78 OP(atomic_exchange)
79 OP(atomic_comp_swap)
80 OP(atomic_add)
81 OP(atomic_imin)
82 OP(atomic_umin)
83 OP(atomic_imax)
84 OP(atomic_umax)
85 OP(atomic_and)
86 OP(atomic_or)
87 OP(atomic_xor)
88 OP(atomic_fadd)
89 OP(atomic_fmin)
90 OP(atomic_fmax)
91 OP(atomic_fcomp_swap)
92 #undef OP
93 default:
94 unreachable("Invalid SSBO atomic");
95 }
96 }
97
98 static nir_intrinsic_op
99 shared_atomic_for_deref(nir_intrinsic_op deref_op)
100 {
101 switch (deref_op) {
102 #define OP(O) case nir_intrinsic_deref_##O: return nir_intrinsic_shared_##O;
103 OP(atomic_exchange)
104 OP(atomic_comp_swap)
105 OP(atomic_add)
106 OP(atomic_imin)
107 OP(atomic_umin)
108 OP(atomic_imax)
109 OP(atomic_umax)
110 OP(atomic_and)
111 OP(atomic_or)
112 OP(atomic_xor)
113 OP(atomic_fadd)
114 OP(atomic_fmin)
115 OP(atomic_fmax)
116 OP(atomic_fcomp_swap)
117 #undef OP
118 default:
119 unreachable("Invalid shared atomic");
120 }
121 }
122
123 void
124 nir_assign_var_locations(nir_shader *shader, nir_variable_mode mode,
125 unsigned *size,
126 int (*type_size)(const struct glsl_type *, bool))
127 {
128 unsigned location = 0;
129
130 nir_foreach_variable_with_modes(var, shader, mode) {
131 var->data.driver_location = location;
132 bool bindless_type_size = var->data.mode == nir_var_shader_in ||
133 var->data.mode == nir_var_shader_out ||
134 var->data.bindless;
135 location += type_size(var->type, bindless_type_size);
136 }
137
138 *size = location;
139 }
140
141 /**
142 * Return true if the given variable is a per-vertex input/output array.
143 * (such as geometry shader inputs).
144 */
145 bool
146 nir_is_per_vertex_io(const nir_variable *var, gl_shader_stage stage)
147 {
148 if (var->data.patch || !glsl_type_is_array(var->type))
149 return false;
150
151 if (var->data.mode == nir_var_shader_in)
152 return stage == MESA_SHADER_GEOMETRY ||
153 stage == MESA_SHADER_TESS_CTRL ||
154 stage == MESA_SHADER_TESS_EVAL;
155
156 if (var->data.mode == nir_var_shader_out)
157 return stage == MESA_SHADER_TESS_CTRL;
158
159 return false;
160 }
161
162 static nir_ssa_def *
163 get_io_offset(nir_builder *b, nir_deref_instr *deref,
164 nir_ssa_def **vertex_index,
165 int (*type_size)(const struct glsl_type *, bool),
166 unsigned *component, bool bts)
167 {
168 nir_deref_path path;
169 nir_deref_path_init(&path, deref, NULL);
170
171 assert(path.path[0]->deref_type == nir_deref_type_var);
172 nir_deref_instr **p = &path.path[1];
173
174 /* For per-vertex input arrays (i.e. geometry shader inputs), keep the
175 * outermost array index separate. Process the rest normally.
176 */
177 if (vertex_index != NULL) {
178 assert((*p)->deref_type == nir_deref_type_array);
179 *vertex_index = nir_ssa_for_src(b, (*p)->arr.index, 1);
180 p++;
181 }
182
183 if (path.path[0]->var->data.compact) {
184 assert((*p)->deref_type == nir_deref_type_array);
185 assert(glsl_type_is_scalar((*p)->type));
186
187 /* We always lower indirect dereferences for "compact" array vars. */
188 const unsigned index = nir_src_as_uint((*p)->arr.index);
189 const unsigned total_offset = *component + index;
190 const unsigned slot_offset = total_offset / 4;
191 *component = total_offset % 4;
192 return nir_imm_int(b, type_size(glsl_vec4_type(), bts) * slot_offset);
193 }
194
195 /* Just emit code and let constant-folding go to town */
196 nir_ssa_def *offset = nir_imm_int(b, 0);
197
198 for (; *p; p++) {
199 if ((*p)->deref_type == nir_deref_type_array) {
200 unsigned size = type_size((*p)->type, bts);
201
202 nir_ssa_def *mul =
203 nir_amul_imm(b, nir_ssa_for_src(b, (*p)->arr.index, 1), size);
204
205 offset = nir_iadd(b, offset, mul);
206 } else if ((*p)->deref_type == nir_deref_type_struct) {
207 /* p starts at path[1], so this is safe */
208 nir_deref_instr *parent = *(p - 1);
209
210 unsigned field_offset = 0;
211 for (unsigned i = 0; i < (*p)->strct.index; i++) {
212 field_offset += type_size(glsl_get_struct_field(parent->type, i), bts);
213 }
214 offset = nir_iadd_imm(b, offset, field_offset);
215 } else {
216 unreachable("Unsupported deref type");
217 }
218 }
219
220 nir_deref_path_finish(&path);
221
222 return offset;
223 }
224
225 static nir_ssa_def *
226 emit_load(struct lower_io_state *state,
227 nir_ssa_def *vertex_index, nir_variable *var, nir_ssa_def *offset,
228 unsigned component, unsigned num_components, unsigned bit_size,
229 nir_alu_type type)
230 {
231 nir_builder *b = &state->builder;
232 const nir_shader *nir = b->shader;
233 nir_variable_mode mode = var->data.mode;
234 nir_ssa_def *barycentric = NULL;
235
236 nir_intrinsic_op op;
237 switch (mode) {
238 case nir_var_shader_in:
239 if (nir->info.stage == MESA_SHADER_FRAGMENT &&
240 nir->options->use_interpolated_input_intrinsics &&
241 var->data.interpolation != INTERP_MODE_FLAT) {
242 if (var->data.interpolation == INTERP_MODE_EXPLICIT) {
243 assert(vertex_index != NULL);
244 op = nir_intrinsic_load_input_vertex;
245 } else {
246 assert(vertex_index == NULL);
247
248 nir_intrinsic_op bary_op;
249 if (var->data.sample ||
250 (state->options & nir_lower_io_force_sample_interpolation))
251 bary_op = nir_intrinsic_load_barycentric_sample;
252 else if (var->data.centroid)
253 bary_op = nir_intrinsic_load_barycentric_centroid;
254 else
255 bary_op = nir_intrinsic_load_barycentric_pixel;
256
257 barycentric = nir_load_barycentric(&state->builder, bary_op,
258 var->data.interpolation);
259 op = nir_intrinsic_load_interpolated_input;
260 }
261 } else {
262 op = vertex_index ? nir_intrinsic_load_per_vertex_input :
263 nir_intrinsic_load_input;
264 }
265 break;
266 case nir_var_shader_out:
267 op = vertex_index ? nir_intrinsic_load_per_vertex_output :
268 nir_intrinsic_load_output;
269 break;
270 case nir_var_uniform:
271 op = nir_intrinsic_load_uniform;
272 break;
273 default:
274 unreachable("Unknown variable mode");
275 }
276
277 nir_intrinsic_instr *load =
278 nir_intrinsic_instr_create(state->builder.shader, op);
279 load->num_components = num_components;
280
281 nir_intrinsic_set_base(load, var->data.driver_location);
282 if (mode == nir_var_shader_in || mode == nir_var_shader_out)
283 nir_intrinsic_set_component(load, component);
284
285 if (load->intrinsic == nir_intrinsic_load_uniform)
286 nir_intrinsic_set_range(load,
287 state->type_size(var->type, var->data.bindless));
288
289 if (load->intrinsic == nir_intrinsic_load_input ||
290 load->intrinsic == nir_intrinsic_load_input_vertex ||
291 load->intrinsic == nir_intrinsic_load_uniform)
292 nir_intrinsic_set_type(load, type);
293
294 if (vertex_index) {
295 load->src[0] = nir_src_for_ssa(vertex_index);
296 load->src[1] = nir_src_for_ssa(offset);
297 } else if (barycentric) {
298 load->src[0] = nir_src_for_ssa(barycentric);
299 load->src[1] = nir_src_for_ssa(offset);
300 } else {
301 load->src[0] = nir_src_for_ssa(offset);
302 }
303
304 nir_ssa_dest_init(&load->instr, &load->dest,
305 num_components, bit_size, NULL);
306 nir_builder_instr_insert(b, &load->instr);
307
308 return &load->dest.ssa;
309 }
310
311 static nir_ssa_def *
312 lower_load(nir_intrinsic_instr *intrin, struct lower_io_state *state,
313 nir_ssa_def *vertex_index, nir_variable *var, nir_ssa_def *offset,
314 unsigned component, const struct glsl_type *type)
315 {
316 assert(intrin->dest.is_ssa);
317 if (intrin->dest.ssa.bit_size == 64 &&
318 (state->options & nir_lower_io_lower_64bit_to_32)) {
319 nir_builder *b = &state->builder;
320
321 const unsigned slot_size = state->type_size(glsl_dvec_type(2), false);
322
323 nir_ssa_def *comp64[4];
324 assert(component == 0 || component == 2);
325 unsigned dest_comp = 0;
326 while (dest_comp < intrin->dest.ssa.num_components) {
327 const unsigned num_comps =
328 MIN2(intrin->dest.ssa.num_components - dest_comp,
329 (4 - component) / 2);
330
331 nir_ssa_def *data32 =
332 emit_load(state, vertex_index, var, offset, component,
333 num_comps * 2, 32, nir_type_uint32);
334 for (unsigned i = 0; i < num_comps; i++) {
335 comp64[dest_comp + i] =
336 nir_pack_64_2x32(b, nir_channels(b, data32, 3 << (i * 2)));
337 }
338
339 /* Only the first store has a component offset */
340 component = 0;
341 dest_comp += num_comps;
342 offset = nir_iadd_imm(b, offset, slot_size);
343 }
344
345 return nir_vec(b, comp64, intrin->dest.ssa.num_components);
346 } else if (intrin->dest.ssa.bit_size == 1) {
347 /* Booleans are 32-bit */
348 assert(glsl_type_is_boolean(type));
349 return nir_b2b1(&state->builder,
350 emit_load(state, vertex_index, var, offset, component,
351 intrin->dest.ssa.num_components, 32,
352 nir_type_bool32));
353 } else {
354 return emit_load(state, vertex_index, var, offset, component,
355 intrin->dest.ssa.num_components,
356 intrin->dest.ssa.bit_size,
357 nir_get_nir_type_for_glsl_type(type));
358 }
359 }
360
361 static void
362 emit_store(struct lower_io_state *state, nir_ssa_def *data,
363 nir_ssa_def *vertex_index, nir_variable *var, nir_ssa_def *offset,
364 unsigned component, unsigned num_components,
365 nir_component_mask_t write_mask, nir_alu_type type)
366 {
367 nir_builder *b = &state->builder;
368 nir_variable_mode mode = var->data.mode;
369
370 assert(mode == nir_var_shader_out);
371 nir_intrinsic_op op;
372 op = vertex_index ? nir_intrinsic_store_per_vertex_output :
373 nir_intrinsic_store_output;
374
375 nir_intrinsic_instr *store =
376 nir_intrinsic_instr_create(state->builder.shader, op);
377 store->num_components = num_components;
378
379 store->src[0] = nir_src_for_ssa(data);
380
381 nir_intrinsic_set_base(store, var->data.driver_location);
382
383 if (mode == nir_var_shader_out)
384 nir_intrinsic_set_component(store, component);
385
386 if (store->intrinsic == nir_intrinsic_store_output)
387 nir_intrinsic_set_type(store, type);
388
389 nir_intrinsic_set_write_mask(store, write_mask);
390
391 if (vertex_index)
392 store->src[1] = nir_src_for_ssa(vertex_index);
393
394 store->src[vertex_index ? 2 : 1] = nir_src_for_ssa(offset);
395
396 nir_builder_instr_insert(b, &store->instr);
397 }
398
399 static void
400 lower_store(nir_intrinsic_instr *intrin, struct lower_io_state *state,
401 nir_ssa_def *vertex_index, nir_variable *var, nir_ssa_def *offset,
402 unsigned component, const struct glsl_type *type)
403 {
404 assert(intrin->src[1].is_ssa);
405 if (intrin->src[1].ssa->bit_size == 64 &&
406 (state->options & nir_lower_io_lower_64bit_to_32)) {
407 nir_builder *b = &state->builder;
408
409 const unsigned slot_size = state->type_size(glsl_dvec_type(2), false);
410
411 assert(component == 0 || component == 2);
412 unsigned src_comp = 0;
413 nir_component_mask_t write_mask = nir_intrinsic_write_mask(intrin);
414 while (src_comp < intrin->num_components) {
415 const unsigned num_comps =
416 MIN2(intrin->num_components - src_comp,
417 (4 - component) / 2);
418
419 if (write_mask & BITFIELD_MASK(num_comps)) {
420 nir_ssa_def *data =
421 nir_channels(b, intrin->src[1].ssa,
422 BITFIELD_RANGE(src_comp, num_comps));
423 nir_ssa_def *data32 = nir_bitcast_vector(b, data, 32);
424
425 nir_component_mask_t write_mask32 = 0;
426 for (unsigned i = 0; i < num_comps; i++) {
427 if (write_mask & BITFIELD_MASK(num_comps) & (1 << i))
428 write_mask32 |= 3 << (i * 2);
429 }
430
431 emit_store(state, data32, vertex_index, var, offset,
432 component, data32->num_components, write_mask32,
433 nir_type_uint32);
434 }
435
436 /* Only the first store has a component offset */
437 component = 0;
438 src_comp += num_comps;
439 write_mask >>= num_comps;
440 offset = nir_iadd_imm(b, offset, slot_size);
441 }
442 } else if (intrin->dest.ssa.bit_size == 1) {
443 /* Booleans are 32-bit */
444 assert(glsl_type_is_boolean(type));
445 nir_ssa_def *b32_val = nir_b2b32(&state->builder, intrin->src[1].ssa);
446 emit_store(state, b32_val, vertex_index, var, offset,
447 component, intrin->num_components,
448 nir_intrinsic_write_mask(intrin),
449 nir_type_bool32);
450 } else {
451 emit_store(state, intrin->src[1].ssa, vertex_index, var, offset,
452 component, intrin->num_components,
453 nir_intrinsic_write_mask(intrin),
454 nir_get_nir_type_for_glsl_type(type));
455 }
456 }
457
458 static nir_ssa_def *
459 lower_interpolate_at(nir_intrinsic_instr *intrin, struct lower_io_state *state,
460 nir_variable *var, nir_ssa_def *offset, unsigned component,
461 const struct glsl_type *type)
462 {
463 nir_builder *b = &state->builder;
464 assert(var->data.mode == nir_var_shader_in);
465
466 /* Ignore interpolateAt() for flat variables - flat is flat. Lower
467 * interpolateAtVertex() for explicit variables.
468 */
469 if (var->data.interpolation == INTERP_MODE_FLAT ||
470 var->data.interpolation == INTERP_MODE_EXPLICIT) {
471 nir_ssa_def *vertex_index = NULL;
472
473 if (var->data.interpolation == INTERP_MODE_EXPLICIT) {
474 assert(intrin->intrinsic == nir_intrinsic_interp_deref_at_vertex);
475 vertex_index = intrin->src[1].ssa;
476 }
477
478 return lower_load(intrin, state, vertex_index, var, offset, component, type);
479 }
480
481 /* None of the supported APIs allow interpolation on 64-bit things */
482 assert(intrin->dest.is_ssa && intrin->dest.ssa.bit_size <= 32);
483
484 nir_intrinsic_op bary_op;
485 switch (intrin->intrinsic) {
486 case nir_intrinsic_interp_deref_at_centroid:
487 bary_op = (state->options & nir_lower_io_force_sample_interpolation) ?
488 nir_intrinsic_load_barycentric_sample :
489 nir_intrinsic_load_barycentric_centroid;
490 break;
491 case nir_intrinsic_interp_deref_at_sample:
492 bary_op = nir_intrinsic_load_barycentric_at_sample;
493 break;
494 case nir_intrinsic_interp_deref_at_offset:
495 bary_op = nir_intrinsic_load_barycentric_at_offset;
496 break;
497 default:
498 unreachable("Bogus interpolateAt() intrinsic.");
499 }
500
501 nir_intrinsic_instr *bary_setup =
502 nir_intrinsic_instr_create(state->builder.shader, bary_op);
503
504 nir_ssa_dest_init(&bary_setup->instr, &bary_setup->dest, 2, 32, NULL);
505 nir_intrinsic_set_interp_mode(bary_setup, var->data.interpolation);
506
507 if (intrin->intrinsic == nir_intrinsic_interp_deref_at_sample ||
508 intrin->intrinsic == nir_intrinsic_interp_deref_at_offset ||
509 intrin->intrinsic == nir_intrinsic_interp_deref_at_vertex)
510 nir_src_copy(&bary_setup->src[0], &intrin->src[1], bary_setup);
511
512 nir_builder_instr_insert(b, &bary_setup->instr);
513
514 nir_intrinsic_instr *load =
515 nir_intrinsic_instr_create(state->builder.shader,
516 nir_intrinsic_load_interpolated_input);
517 load->num_components = intrin->num_components;
518
519 nir_intrinsic_set_base(load, var->data.driver_location);
520 nir_intrinsic_set_component(load, component);
521
522 load->src[0] = nir_src_for_ssa(&bary_setup->dest.ssa);
523 load->src[1] = nir_src_for_ssa(offset);
524
525 assert(intrin->dest.is_ssa);
526 nir_ssa_dest_init(&load->instr, &load->dest,
527 intrin->dest.ssa.num_components,
528 intrin->dest.ssa.bit_size, NULL);
529 nir_builder_instr_insert(b, &load->instr);
530
531 return &load->dest.ssa;
532 }
533
534 static bool
535 nir_lower_io_block(nir_block *block,
536 struct lower_io_state *state)
537 {
538 nir_builder *b = &state->builder;
539 const nir_shader_compiler_options *options = b->shader->options;
540 bool progress = false;
541
542 nir_foreach_instr_safe(instr, block) {
543 if (instr->type != nir_instr_type_intrinsic)
544 continue;
545
546 nir_intrinsic_instr *intrin = nir_instr_as_intrinsic(instr);
547
548 switch (intrin->intrinsic) {
549 case nir_intrinsic_load_deref:
550 case nir_intrinsic_store_deref:
551 /* We can lower the io for this nir instrinsic */
552 break;
553 case nir_intrinsic_interp_deref_at_centroid:
554 case nir_intrinsic_interp_deref_at_sample:
555 case nir_intrinsic_interp_deref_at_offset:
556 case nir_intrinsic_interp_deref_at_vertex:
557 /* We can optionally lower these to load_interpolated_input */
558 if (options->use_interpolated_input_intrinsics)
559 break;
560 default:
561 /* We can't lower the io for this nir instrinsic, so skip it */
562 continue;
563 }
564
565 nir_deref_instr *deref = nir_src_as_deref(intrin->src[0]);
566
567 nir_variable_mode mode = deref->mode;
568 assert(util_is_power_of_two_nonzero(mode));
569 if ((state->modes & mode) == 0)
570 continue;
571
572 nir_variable *var = nir_deref_instr_get_variable(deref);
573
574 b->cursor = nir_before_instr(instr);
575
576 const bool per_vertex = nir_is_per_vertex_io(var, b->shader->info.stage);
577
578 nir_ssa_def *offset;
579 nir_ssa_def *vertex_index = NULL;
580 unsigned component_offset = var->data.location_frac;
581 bool bindless_type_size = mode == nir_var_shader_in ||
582 mode == nir_var_shader_out ||
583 var->data.bindless;
584
585 offset = get_io_offset(b, deref, per_vertex ? &vertex_index : NULL,
586 state->type_size, &component_offset,
587 bindless_type_size);
588
589 nir_ssa_def *replacement = NULL;
590
591 switch (intrin->intrinsic) {
592 case nir_intrinsic_load_deref:
593 replacement = lower_load(intrin, state, vertex_index, var, offset,
594 component_offset, deref->type);
595 break;
596
597 case nir_intrinsic_store_deref:
598 lower_store(intrin, state, vertex_index, var, offset,
599 component_offset, deref->type);
600 break;
601
602 case nir_intrinsic_interp_deref_at_centroid:
603 case nir_intrinsic_interp_deref_at_sample:
604 case nir_intrinsic_interp_deref_at_offset:
605 case nir_intrinsic_interp_deref_at_vertex:
606 assert(vertex_index == NULL);
607 replacement = lower_interpolate_at(intrin, state, var, offset,
608 component_offset, deref->type);
609 break;
610
611 default:
612 continue;
613 }
614
615 if (replacement) {
616 nir_ssa_def_rewrite_uses(&intrin->dest.ssa,
617 nir_src_for_ssa(replacement));
618 }
619 nir_instr_remove(&intrin->instr);
620 progress = true;
621 }
622
623 return progress;
624 }
625
626 static bool
627 nir_lower_io_impl(nir_function_impl *impl,
628 nir_variable_mode modes,
629 int (*type_size)(const struct glsl_type *, bool),
630 nir_lower_io_options options)
631 {
632 struct lower_io_state state;
633 bool progress = false;
634
635 nir_builder_init(&state.builder, impl);
636 state.dead_ctx = ralloc_context(NULL);
637 state.modes = modes;
638 state.type_size = type_size;
639 state.options = options;
640
641 ASSERTED nir_variable_mode supported_modes =
642 nir_var_shader_in | nir_var_shader_out | nir_var_uniform;
643 assert(!(modes & ~supported_modes));
644
645 nir_foreach_block(block, impl) {
646 progress |= nir_lower_io_block(block, &state);
647 }
648
649 ralloc_free(state.dead_ctx);
650
651 nir_metadata_preserve(impl, nir_metadata_block_index |
652 nir_metadata_dominance);
653 return progress;
654 }
655
656 /** Lower load/store_deref intrinsics on I/O variables to offset-based intrinsics
657 *
658 * This pass is intended to be used for cross-stage shader I/O and driver-
659 * managed uniforms to turn deref-based access into a simpler model using
660 * locations or offsets. For fragment shader inputs, it can optionally turn
661 * load_deref into an explicit interpolation using barycentrics coming from
662 * one of the load_barycentric_* intrinsics. This pass requires that all
663 * deref chains are complete and contain no casts.
664 */
665 bool
666 nir_lower_io(nir_shader *shader, nir_variable_mode modes,
667 int (*type_size)(const struct glsl_type *, bool),
668 nir_lower_io_options options)
669 {
670 bool progress = false;
671
672 nir_foreach_function(function, shader) {
673 if (function->impl) {
674 progress |= nir_lower_io_impl(function->impl, modes,
675 type_size, options);
676 }
677 }
678
679 return progress;
680 }
681
682 static unsigned
683 type_scalar_size_bytes(const struct glsl_type *type)
684 {
685 assert(glsl_type_is_vector_or_scalar(type) ||
686 glsl_type_is_matrix(type));
687 return glsl_type_is_boolean(type) ? 4 : glsl_get_bit_size(type) / 8;
688 }
689
690 static nir_ssa_def *
691 build_addr_iadd(nir_builder *b, nir_ssa_def *addr,
692 nir_address_format addr_format, nir_ssa_def *offset)
693 {
694 assert(offset->num_components == 1);
695 assert(addr->bit_size == offset->bit_size);
696
697 switch (addr_format) {
698 case nir_address_format_32bit_global:
699 case nir_address_format_64bit_global:
700 case nir_address_format_32bit_offset:
701 assert(addr->num_components == 1);
702 return nir_iadd(b, addr, offset);
703
704 case nir_address_format_64bit_bounded_global:
705 assert(addr->num_components == 4);
706 return nir_vec4(b, nir_channel(b, addr, 0),
707 nir_channel(b, addr, 1),
708 nir_channel(b, addr, 2),
709 nir_iadd(b, nir_channel(b, addr, 3), offset));
710
711 case nir_address_format_32bit_index_offset:
712 assert(addr->num_components == 2);
713 return nir_vec2(b, nir_channel(b, addr, 0),
714 nir_iadd(b, nir_channel(b, addr, 1), offset));
715 case nir_address_format_vec2_index_32bit_offset:
716 assert(addr->num_components == 3);
717 return nir_vec3(b, nir_channel(b, addr, 0), nir_channel(b, addr, 1),
718 nir_iadd(b, nir_channel(b, addr, 2), offset));
719 case nir_address_format_logical:
720 unreachable("Unsupported address format");
721 }
722 unreachable("Invalid address format");
723 }
724
725 static nir_ssa_def *
726 build_addr_iadd_imm(nir_builder *b, nir_ssa_def *addr,
727 nir_address_format addr_format, int64_t offset)
728 {
729 return build_addr_iadd(b, addr, addr_format,
730 nir_imm_intN_t(b, offset, addr->bit_size));
731 }
732
733 static nir_ssa_def *
734 addr_to_index(nir_builder *b, nir_ssa_def *addr,
735 nir_address_format addr_format)
736 {
737 if (addr_format == nir_address_format_32bit_index_offset) {
738 assert(addr->num_components == 2);
739 return nir_channel(b, addr, 0);
740 } else if (addr_format == nir_address_format_vec2_index_32bit_offset) {
741 assert(addr->num_components == 3);
742 return nir_channels(b, addr, 0x3);
743 } else {
744 unreachable("bad address format for index");
745 }
746 }
747
748 static nir_ssa_def *
749 addr_to_offset(nir_builder *b, nir_ssa_def *addr,
750 nir_address_format addr_format)
751 {
752 if (addr_format == nir_address_format_32bit_index_offset) {
753 assert(addr->num_components == 2);
754 return nir_channel(b, addr, 1);
755 } else if (addr_format == nir_address_format_vec2_index_32bit_offset) {
756 assert(addr->num_components == 3);
757 return nir_channel(b, addr, 2);
758 } else {
759 unreachable("bad address format for offset");
760 }
761 }
762
763 /** Returns true if the given address format resolves to a global address */
764 static bool
765 addr_format_is_global(nir_address_format addr_format)
766 {
767 return addr_format == nir_address_format_32bit_global ||
768 addr_format == nir_address_format_64bit_global ||
769 addr_format == nir_address_format_64bit_bounded_global;
770 }
771
772 static bool
773 addr_format_is_offset(nir_address_format addr_format)
774 {
775 return addr_format == nir_address_format_32bit_offset;
776 }
777
778 static nir_ssa_def *
779 addr_to_global(nir_builder *b, nir_ssa_def *addr,
780 nir_address_format addr_format)
781 {
782 switch (addr_format) {
783 case nir_address_format_32bit_global:
784 case nir_address_format_64bit_global:
785 assert(addr->num_components == 1);
786 return addr;
787
788 case nir_address_format_64bit_bounded_global:
789 assert(addr->num_components == 4);
790 return nir_iadd(b, nir_pack_64_2x32(b, nir_channels(b, addr, 0x3)),
791 nir_u2u64(b, nir_channel(b, addr, 3)));
792
793 case nir_address_format_32bit_index_offset:
794 case nir_address_format_vec2_index_32bit_offset:
795 case nir_address_format_32bit_offset:
796 case nir_address_format_logical:
797 unreachable("Cannot get a 64-bit address with this address format");
798 }
799
800 unreachable("Invalid address format");
801 }
802
803 static bool
804 addr_format_needs_bounds_check(nir_address_format addr_format)
805 {
806 return addr_format == nir_address_format_64bit_bounded_global;
807 }
808
809 static nir_ssa_def *
810 addr_is_in_bounds(nir_builder *b, nir_ssa_def *addr,
811 nir_address_format addr_format, unsigned size)
812 {
813 assert(addr_format == nir_address_format_64bit_bounded_global);
814 assert(addr->num_components == 4);
815 return nir_ige(b, nir_channel(b, addr, 2),
816 nir_iadd_imm(b, nir_channel(b, addr, 3), size));
817 }
818
819 static nir_ssa_def *
820 build_explicit_io_load(nir_builder *b, nir_intrinsic_instr *intrin,
821 nir_ssa_def *addr, nir_address_format addr_format,
822 unsigned num_components)
823 {
824 nir_variable_mode mode = nir_src_as_deref(intrin->src[0])->mode;
825
826 nir_intrinsic_op op;
827 switch (mode) {
828 case nir_var_mem_ubo:
829 op = nir_intrinsic_load_ubo;
830 break;
831 case nir_var_mem_ssbo:
832 if (addr_format_is_global(addr_format))
833 op = nir_intrinsic_load_global;
834 else
835 op = nir_intrinsic_load_ssbo;
836 break;
837 case nir_var_mem_global:
838 assert(addr_format_is_global(addr_format));
839 op = nir_intrinsic_load_global;
840 break;
841 case nir_var_shader_in:
842 assert(addr_format_is_offset(addr_format));
843 op = nir_intrinsic_load_kernel_input;
844 break;
845 case nir_var_mem_shared:
846 assert(addr_format_is_offset(addr_format));
847 op = nir_intrinsic_load_shared;
848 break;
849 case nir_var_shader_temp:
850 case nir_var_function_temp:
851 if (addr_format_is_offset(addr_format)) {
852 op = nir_intrinsic_load_scratch;
853 } else {
854 assert(addr_format_is_global(addr_format));
855 op = nir_intrinsic_load_global;
856 }
857 break;
858 default:
859 unreachable("Unsupported explicit IO variable mode");
860 }
861
862 nir_intrinsic_instr *load = nir_intrinsic_instr_create(b->shader, op);
863
864 if (addr_format_is_global(addr_format)) {
865 load->src[0] = nir_src_for_ssa(addr_to_global(b, addr, addr_format));
866 } else if (addr_format == nir_address_format_32bit_offset) {
867 assert(addr->num_components == 1);
868 load->src[0] = nir_src_for_ssa(addr);
869 } else {
870 load->src[0] = nir_src_for_ssa(addr_to_index(b, addr, addr_format));
871 load->src[1] = nir_src_for_ssa(addr_to_offset(b, addr, addr_format));
872 }
873
874 if (nir_intrinsic_infos[op].index_map[NIR_INTRINSIC_ACCESS] > 0)
875 nir_intrinsic_set_access(load, nir_intrinsic_access(intrin));
876
877 unsigned bit_size = intrin->dest.ssa.bit_size;
878 if (bit_size == 1) {
879 /* TODO: Make the native bool bit_size an option. */
880 bit_size = 32;
881 }
882
883 /* TODO: We should try and provide a better alignment. For OpenCL, we need
884 * to plumb the alignment through from SPIR-V when we have one.
885 */
886 nir_intrinsic_set_align(load, bit_size / 8, 0);
887
888 assert(intrin->dest.is_ssa);
889 load->num_components = num_components;
890 nir_ssa_dest_init(&load->instr, &load->dest, num_components,
891 bit_size, intrin->dest.ssa.name);
892
893 assert(bit_size % 8 == 0);
894
895 nir_ssa_def *result;
896 if (addr_format_needs_bounds_check(addr_format)) {
897 /* The Vulkan spec for robustBufferAccess gives us quite a few options
898 * as to what we can do with an OOB read. Unfortunately, returning
899 * undefined values isn't one of them so we return an actual zero.
900 */
901 nir_ssa_def *zero = nir_imm_zero(b, load->num_components, bit_size);
902
903 const unsigned load_size = (bit_size / 8) * load->num_components;
904 nir_push_if(b, addr_is_in_bounds(b, addr, addr_format, load_size));
905
906 nir_builder_instr_insert(b, &load->instr);
907
908 nir_pop_if(b, NULL);
909
910 result = nir_if_phi(b, &load->dest.ssa, zero);
911 } else {
912 nir_builder_instr_insert(b, &load->instr);
913 result = &load->dest.ssa;
914 }
915
916 if (intrin->dest.ssa.bit_size == 1) {
917 /* For shared, we can go ahead and use NIR's and/or the back-end's
918 * standard encoding for booleans rather than forcing a 0/1 boolean.
919 * This should save an instruction or two.
920 */
921 if (mode == nir_var_mem_shared ||
922 mode == nir_var_shader_temp ||
923 mode == nir_var_function_temp)
924 result = nir_b2b1(b, result);
925 else
926 result = nir_i2b(b, result);
927 }
928
929 return result;
930 }
931
932 static void
933 build_explicit_io_store(nir_builder *b, nir_intrinsic_instr *intrin,
934 nir_ssa_def *addr, nir_address_format addr_format,
935 nir_ssa_def *value, nir_component_mask_t write_mask)
936 {
937 nir_variable_mode mode = nir_src_as_deref(intrin->src[0])->mode;
938
939 nir_intrinsic_op op;
940 switch (mode) {
941 case nir_var_mem_ssbo:
942 if (addr_format_is_global(addr_format))
943 op = nir_intrinsic_store_global;
944 else
945 op = nir_intrinsic_store_ssbo;
946 break;
947 case nir_var_mem_global:
948 assert(addr_format_is_global(addr_format));
949 op = nir_intrinsic_store_global;
950 break;
951 case nir_var_mem_shared:
952 assert(addr_format_is_offset(addr_format));
953 op = nir_intrinsic_store_shared;
954 break;
955 case nir_var_shader_temp:
956 case nir_var_function_temp:
957 if (addr_format_is_offset(addr_format)) {
958 op = nir_intrinsic_store_scratch;
959 } else {
960 assert(addr_format_is_global(addr_format));
961 op = nir_intrinsic_store_global;
962 }
963 break;
964 default:
965 unreachable("Unsupported explicit IO variable mode");
966 }
967
968 nir_intrinsic_instr *store = nir_intrinsic_instr_create(b->shader, op);
969
970 if (value->bit_size == 1) {
971 /* For shared, we can go ahead and use NIR's and/or the back-end's
972 * standard encoding for booleans rather than forcing a 0/1 boolean.
973 * This should save an instruction or two.
974 *
975 * TODO: Make the native bool bit_size an option.
976 */
977 if (mode == nir_var_mem_shared ||
978 mode == nir_var_shader_temp ||
979 mode == nir_var_function_temp)
980 value = nir_b2b32(b, value);
981 else
982 value = nir_b2i(b, value, 32);
983 }
984
985 store->src[0] = nir_src_for_ssa(value);
986 if (addr_format_is_global(addr_format)) {
987 store->src[1] = nir_src_for_ssa(addr_to_global(b, addr, addr_format));
988 } else if (addr_format == nir_address_format_32bit_offset) {
989 assert(addr->num_components == 1);
990 store->src[1] = nir_src_for_ssa(addr);
991 } else {
992 store->src[1] = nir_src_for_ssa(addr_to_index(b, addr, addr_format));
993 store->src[2] = nir_src_for_ssa(addr_to_offset(b, addr, addr_format));
994 }
995
996 nir_intrinsic_set_write_mask(store, write_mask);
997
998 if (nir_intrinsic_infos[op].index_map[NIR_INTRINSIC_ACCESS] > 0)
999 nir_intrinsic_set_access(store, nir_intrinsic_access(intrin));
1000
1001 /* TODO: We should try and provide a better alignment. For OpenCL, we need
1002 * to plumb the alignment through from SPIR-V when we have one.
1003 */
1004 nir_intrinsic_set_align(store, value->bit_size / 8, 0);
1005
1006 assert(value->num_components == 1 ||
1007 value->num_components == intrin->num_components);
1008 store->num_components = value->num_components;
1009
1010 assert(value->bit_size % 8 == 0);
1011
1012 if (addr_format_needs_bounds_check(addr_format)) {
1013 const unsigned store_size = (value->bit_size / 8) * store->num_components;
1014 nir_push_if(b, addr_is_in_bounds(b, addr, addr_format, store_size));
1015
1016 nir_builder_instr_insert(b, &store->instr);
1017
1018 nir_pop_if(b, NULL);
1019 } else {
1020 nir_builder_instr_insert(b, &store->instr);
1021 }
1022 }
1023
1024 static nir_ssa_def *
1025 build_explicit_io_atomic(nir_builder *b, nir_intrinsic_instr *intrin,
1026 nir_ssa_def *addr, nir_address_format addr_format)
1027 {
1028 nir_variable_mode mode = nir_src_as_deref(intrin->src[0])->mode;
1029 const unsigned num_data_srcs =
1030 nir_intrinsic_infos[intrin->intrinsic].num_srcs - 1;
1031
1032 nir_intrinsic_op op;
1033 switch (mode) {
1034 case nir_var_mem_ssbo:
1035 if (addr_format_is_global(addr_format))
1036 op = global_atomic_for_deref(intrin->intrinsic);
1037 else
1038 op = ssbo_atomic_for_deref(intrin->intrinsic);
1039 break;
1040 case nir_var_mem_global:
1041 assert(addr_format_is_global(addr_format));
1042 op = global_atomic_for_deref(intrin->intrinsic);
1043 break;
1044 case nir_var_mem_shared:
1045 assert(addr_format == nir_address_format_32bit_offset);
1046 op = shared_atomic_for_deref(intrin->intrinsic);
1047 break;
1048 default:
1049 unreachable("Unsupported explicit IO variable mode");
1050 }
1051
1052 nir_intrinsic_instr *atomic = nir_intrinsic_instr_create(b->shader, op);
1053
1054 unsigned src = 0;
1055 if (addr_format_is_global(addr_format)) {
1056 atomic->src[src++] = nir_src_for_ssa(addr_to_global(b, addr, addr_format));
1057 } else if (addr_format == nir_address_format_32bit_offset) {
1058 assert(addr->num_components == 1);
1059 atomic->src[src++] = nir_src_for_ssa(addr);
1060 } else {
1061 atomic->src[src++] = nir_src_for_ssa(addr_to_index(b, addr, addr_format));
1062 atomic->src[src++] = nir_src_for_ssa(addr_to_offset(b, addr, addr_format));
1063 }
1064 for (unsigned i = 0; i < num_data_srcs; i++) {
1065 atomic->src[src++] = nir_src_for_ssa(intrin->src[1 + i].ssa);
1066 }
1067
1068 /* Global atomics don't have access flags because they assume that the
1069 * address may be non-uniform.
1070 */
1071 if (nir_intrinsic_infos[op].index_map[NIR_INTRINSIC_ACCESS] > 0)
1072 nir_intrinsic_set_access(atomic, nir_intrinsic_access(intrin));
1073
1074 assert(intrin->dest.ssa.num_components == 1);
1075 nir_ssa_dest_init(&atomic->instr, &atomic->dest,
1076 1, intrin->dest.ssa.bit_size, intrin->dest.ssa.name);
1077
1078 assert(atomic->dest.ssa.bit_size % 8 == 0);
1079
1080 if (addr_format_needs_bounds_check(addr_format)) {
1081 const unsigned atomic_size = atomic->dest.ssa.bit_size / 8;
1082 nir_push_if(b, addr_is_in_bounds(b, addr, addr_format, atomic_size));
1083
1084 nir_builder_instr_insert(b, &atomic->instr);
1085
1086 nir_pop_if(b, NULL);
1087 return nir_if_phi(b, &atomic->dest.ssa,
1088 nir_ssa_undef(b, 1, atomic->dest.ssa.bit_size));
1089 } else {
1090 nir_builder_instr_insert(b, &atomic->instr);
1091 return &atomic->dest.ssa;
1092 }
1093 }
1094
1095 nir_ssa_def *
1096 nir_explicit_io_address_from_deref(nir_builder *b, nir_deref_instr *deref,
1097 nir_ssa_def *base_addr,
1098 nir_address_format addr_format)
1099 {
1100 assert(deref->dest.is_ssa);
1101 switch (deref->deref_type) {
1102 case nir_deref_type_var:
1103 assert(deref->mode & (nir_var_shader_in | nir_var_mem_shared |
1104 nir_var_shader_temp | nir_var_function_temp));
1105 if (addr_format_is_global(addr_format)) {
1106 assert(nir_var_shader_temp | nir_var_function_temp);
1107 base_addr =
1108 nir_load_scratch_base_ptr(b, !(deref->mode & nir_var_shader_temp),
1109 nir_address_format_num_components(addr_format),
1110 nir_address_format_bit_size(addr_format));
1111 return build_addr_iadd_imm(b, base_addr, addr_format,
1112 deref->var->data.driver_location);
1113 } else {
1114 return nir_imm_intN_t(b, deref->var->data.driver_location,
1115 deref->dest.ssa.bit_size);
1116 }
1117
1118 case nir_deref_type_array: {
1119 nir_deref_instr *parent = nir_deref_instr_parent(deref);
1120
1121 unsigned stride = glsl_get_explicit_stride(parent->type);
1122 if ((glsl_type_is_matrix(parent->type) &&
1123 glsl_matrix_type_is_row_major(parent->type)) ||
1124 (glsl_type_is_vector(parent->type) && stride == 0))
1125 stride = type_scalar_size_bytes(parent->type);
1126
1127 assert(stride > 0);
1128
1129 nir_ssa_def *index = nir_ssa_for_src(b, deref->arr.index, 1);
1130 index = nir_i2i(b, index, base_addr->bit_size);
1131 return build_addr_iadd(b, base_addr, addr_format,
1132 nir_amul_imm(b, index, stride));
1133 }
1134
1135 case nir_deref_type_ptr_as_array: {
1136 nir_ssa_def *index = nir_ssa_for_src(b, deref->arr.index, 1);
1137 index = nir_i2i(b, index, base_addr->bit_size);
1138 unsigned stride = nir_deref_instr_ptr_as_array_stride(deref);
1139 return build_addr_iadd(b, base_addr, addr_format,
1140 nir_amul_imm(b, index, stride));
1141 }
1142
1143 case nir_deref_type_array_wildcard:
1144 unreachable("Wildcards should be lowered by now");
1145 break;
1146
1147 case nir_deref_type_struct: {
1148 nir_deref_instr *parent = nir_deref_instr_parent(deref);
1149 int offset = glsl_get_struct_field_offset(parent->type,
1150 deref->strct.index);
1151 assert(offset >= 0);
1152 return build_addr_iadd_imm(b, base_addr, addr_format, offset);
1153 }
1154
1155 case nir_deref_type_cast:
1156 /* Nothing to do here */
1157 return base_addr;
1158 }
1159
1160 unreachable("Invalid NIR deref type");
1161 }
1162
1163 void
1164 nir_lower_explicit_io_instr(nir_builder *b,
1165 nir_intrinsic_instr *intrin,
1166 nir_ssa_def *addr,
1167 nir_address_format addr_format)
1168 {
1169 b->cursor = nir_after_instr(&intrin->instr);
1170
1171 nir_deref_instr *deref = nir_src_as_deref(intrin->src[0]);
1172 unsigned vec_stride = glsl_get_explicit_stride(deref->type);
1173 unsigned scalar_size = type_scalar_size_bytes(deref->type);
1174 assert(vec_stride == 0 || glsl_type_is_vector(deref->type));
1175 assert(vec_stride == 0 || vec_stride >= scalar_size);
1176
1177 if (intrin->intrinsic == nir_intrinsic_load_deref) {
1178 nir_ssa_def *value;
1179 if (vec_stride > scalar_size) {
1180 nir_ssa_def *comps[4] = { NULL, };
1181 for (unsigned i = 0; i < intrin->num_components; i++) {
1182 nir_ssa_def *comp_addr = build_addr_iadd_imm(b, addr, addr_format,
1183 vec_stride * i);
1184 comps[i] = build_explicit_io_load(b, intrin, comp_addr,
1185 addr_format, 1);
1186 }
1187 value = nir_vec(b, comps, intrin->num_components);
1188 } else {
1189 value = build_explicit_io_load(b, intrin, addr, addr_format,
1190 intrin->num_components);
1191 }
1192 nir_ssa_def_rewrite_uses(&intrin->dest.ssa, nir_src_for_ssa(value));
1193 } else if (intrin->intrinsic == nir_intrinsic_store_deref) {
1194 assert(intrin->src[1].is_ssa);
1195 nir_ssa_def *value = intrin->src[1].ssa;
1196 nir_component_mask_t write_mask = nir_intrinsic_write_mask(intrin);
1197 if (vec_stride > scalar_size) {
1198 for (unsigned i = 0; i < intrin->num_components; i++) {
1199 if (!(write_mask & (1 << i)))
1200 continue;
1201
1202 nir_ssa_def *comp_addr = build_addr_iadd_imm(b, addr, addr_format,
1203 vec_stride * i);
1204 build_explicit_io_store(b, intrin, comp_addr, addr_format,
1205 nir_channel(b, value, i), 1);
1206 }
1207 } else {
1208 build_explicit_io_store(b, intrin, addr, addr_format,
1209 value, write_mask);
1210 }
1211 } else {
1212 nir_ssa_def *value =
1213 build_explicit_io_atomic(b, intrin, addr, addr_format);
1214 nir_ssa_def_rewrite_uses(&intrin->dest.ssa, nir_src_for_ssa(value));
1215 }
1216
1217 nir_instr_remove(&intrin->instr);
1218 }
1219
1220 static void
1221 lower_explicit_io_deref(nir_builder *b, nir_deref_instr *deref,
1222 nir_address_format addr_format)
1223 {
1224 /* Just delete the deref if it's not used. We can't use
1225 * nir_deref_instr_remove_if_unused here because it may remove more than
1226 * one deref which could break our list walking since we walk the list
1227 * backwards.
1228 */
1229 assert(list_is_empty(&deref->dest.ssa.if_uses));
1230 if (list_is_empty(&deref->dest.ssa.uses)) {
1231 nir_instr_remove(&deref->instr);
1232 return;
1233 }
1234
1235 b->cursor = nir_after_instr(&deref->instr);
1236
1237 nir_ssa_def *base_addr = NULL;
1238 if (deref->deref_type != nir_deref_type_var) {
1239 assert(deref->parent.is_ssa);
1240 base_addr = deref->parent.ssa;
1241 }
1242
1243 nir_ssa_def *addr = nir_explicit_io_address_from_deref(b, deref, base_addr,
1244 addr_format);
1245
1246 nir_instr_remove(&deref->instr);
1247 nir_ssa_def_rewrite_uses(&deref->dest.ssa, nir_src_for_ssa(addr));
1248 }
1249
1250 static void
1251 lower_explicit_io_access(nir_builder *b, nir_intrinsic_instr *intrin,
1252 nir_address_format addr_format)
1253 {
1254 assert(intrin->src[0].is_ssa);
1255 nir_lower_explicit_io_instr(b, intrin, intrin->src[0].ssa, addr_format);
1256 }
1257
1258 static void
1259 lower_explicit_io_array_length(nir_builder *b, nir_intrinsic_instr *intrin,
1260 nir_address_format addr_format)
1261 {
1262 b->cursor = nir_after_instr(&intrin->instr);
1263
1264 nir_deref_instr *deref = nir_src_as_deref(intrin->src[0]);
1265
1266 assert(glsl_type_is_array(deref->type));
1267 assert(glsl_get_length(deref->type) == 0);
1268 unsigned stride = glsl_get_explicit_stride(deref->type);
1269 assert(stride > 0);
1270
1271 assert(addr_format == nir_address_format_32bit_index_offset ||
1272 addr_format == nir_address_format_vec2_index_32bit_offset);
1273 nir_ssa_def *addr = &deref->dest.ssa;
1274 nir_ssa_def *index = addr_to_index(b, addr, addr_format);
1275 nir_ssa_def *offset = addr_to_offset(b, addr, addr_format);
1276
1277 nir_intrinsic_instr *bsize =
1278 nir_intrinsic_instr_create(b->shader, nir_intrinsic_get_buffer_size);
1279 bsize->src[0] = nir_src_for_ssa(index);
1280 nir_ssa_dest_init(&bsize->instr, &bsize->dest, 1, 32, NULL);
1281 nir_builder_instr_insert(b, &bsize->instr);
1282
1283 nir_ssa_def *arr_size =
1284 nir_idiv(b, nir_isub(b, &bsize->dest.ssa, offset),
1285 nir_imm_int(b, stride));
1286
1287 nir_ssa_def_rewrite_uses(&intrin->dest.ssa, nir_src_for_ssa(arr_size));
1288 nir_instr_remove(&intrin->instr);
1289 }
1290
1291 static bool
1292 nir_lower_explicit_io_impl(nir_function_impl *impl, nir_variable_mode modes,
1293 nir_address_format addr_format)
1294 {
1295 bool progress = false;
1296
1297 nir_builder b;
1298 nir_builder_init(&b, impl);
1299
1300 /* Walk in reverse order so that we can see the full deref chain when we
1301 * lower the access operations. We lower them assuming that the derefs
1302 * will be turned into address calculations later.
1303 */
1304 nir_foreach_block_reverse(block, impl) {
1305 nir_foreach_instr_reverse_safe(instr, block) {
1306 switch (instr->type) {
1307 case nir_instr_type_deref: {
1308 nir_deref_instr *deref = nir_instr_as_deref(instr);
1309 if (deref->mode & modes) {
1310 lower_explicit_io_deref(&b, deref, addr_format);
1311 progress = true;
1312 }
1313 break;
1314 }
1315
1316 case nir_instr_type_intrinsic: {
1317 nir_intrinsic_instr *intrin = nir_instr_as_intrinsic(instr);
1318 switch (intrin->intrinsic) {
1319 case nir_intrinsic_load_deref:
1320 case nir_intrinsic_store_deref:
1321 case nir_intrinsic_deref_atomic_add:
1322 case nir_intrinsic_deref_atomic_imin:
1323 case nir_intrinsic_deref_atomic_umin:
1324 case nir_intrinsic_deref_atomic_imax:
1325 case nir_intrinsic_deref_atomic_umax:
1326 case nir_intrinsic_deref_atomic_and:
1327 case nir_intrinsic_deref_atomic_or:
1328 case nir_intrinsic_deref_atomic_xor:
1329 case nir_intrinsic_deref_atomic_exchange:
1330 case nir_intrinsic_deref_atomic_comp_swap:
1331 case nir_intrinsic_deref_atomic_fadd:
1332 case nir_intrinsic_deref_atomic_fmin:
1333 case nir_intrinsic_deref_atomic_fmax:
1334 case nir_intrinsic_deref_atomic_fcomp_swap: {
1335 nir_deref_instr *deref = nir_src_as_deref(intrin->src[0]);
1336 if (deref->mode & modes) {
1337 lower_explicit_io_access(&b, intrin, addr_format);
1338 progress = true;
1339 }
1340 break;
1341 }
1342
1343 case nir_intrinsic_deref_buffer_array_length: {
1344 nir_deref_instr *deref = nir_src_as_deref(intrin->src[0]);
1345 if (deref->mode & modes) {
1346 lower_explicit_io_array_length(&b, intrin, addr_format);
1347 progress = true;
1348 }
1349 break;
1350 }
1351
1352 default:
1353 break;
1354 }
1355 break;
1356 }
1357
1358 default:
1359 /* Nothing to do */
1360 break;
1361 }
1362 }
1363 }
1364
1365 if (progress) {
1366 nir_metadata_preserve(impl, nir_metadata_block_index |
1367 nir_metadata_dominance);
1368 }
1369
1370 return progress;
1371 }
1372
1373 /** Lower explicitly laid out I/O access to byte offset/address intrinsics
1374 *
1375 * This pass is intended to be used for any I/O which touches memory external
1376 * to the shader or which is directly visible to the client. It requires that
1377 * all data types in the given modes have a explicit stride/offset decorations
1378 * to tell it exactly how to calculate the offset/address for the given load,
1379 * store, or atomic operation. If the offset/stride information does not come
1380 * from the client explicitly (as with shared variables in GL or Vulkan),
1381 * nir_lower_vars_to_explicit_types() can be used to add them.
1382 *
1383 * Unlike nir_lower_io, this pass is fully capable of handling incomplete
1384 * pointer chains which may contain cast derefs. It does so by walking the
1385 * deref chain backwards and simply replacing each deref, one at a time, with
1386 * the appropriate address calculation. The pass takes a nir_address_format
1387 * parameter which describes how the offset or address is to be represented
1388 * during calculations. By ensuring that the address is always in a
1389 * consistent format, pointers can safely be conjured from thin air by the
1390 * driver, stored to variables, passed through phis, etc.
1391 *
1392 * The one exception to the simple algorithm described above is for handling
1393 * row-major matrices in which case we may look down one additional level of
1394 * the deref chain.
1395 */
1396 bool
1397 nir_lower_explicit_io(nir_shader *shader, nir_variable_mode modes,
1398 nir_address_format addr_format)
1399 {
1400 bool progress = false;
1401
1402 nir_foreach_function(function, shader) {
1403 if (function->impl &&
1404 nir_lower_explicit_io_impl(function->impl, modes, addr_format))
1405 progress = true;
1406 }
1407
1408 return progress;
1409 }
1410
1411 static bool
1412 nir_lower_vars_to_explicit_types_impl(nir_function_impl *impl,
1413 nir_variable_mode modes,
1414 glsl_type_size_align_func type_info)
1415 {
1416 bool progress = false;
1417
1418 nir_foreach_block(block, impl) {
1419 nir_foreach_instr(instr, block) {
1420 if (instr->type != nir_instr_type_deref)
1421 continue;
1422
1423 nir_deref_instr *deref = nir_instr_as_deref(instr);
1424 if (!(deref->mode & modes))
1425 continue;
1426
1427 unsigned size, alignment;
1428 const struct glsl_type *new_type =
1429 glsl_get_explicit_type_for_size_align(deref->type, type_info, &size, &alignment);
1430 if (new_type != deref->type) {
1431 progress = true;
1432 deref->type = new_type;
1433 }
1434 if (deref->deref_type == nir_deref_type_cast) {
1435 /* See also glsl_type::get_explicit_type_for_size_align() */
1436 unsigned new_stride = align(size, alignment);
1437 if (new_stride != deref->cast.ptr_stride) {
1438 deref->cast.ptr_stride = new_stride;
1439 progress = true;
1440 }
1441 }
1442 }
1443 }
1444
1445 if (progress) {
1446 nir_metadata_preserve(impl, nir_metadata_block_index |
1447 nir_metadata_dominance |
1448 nir_metadata_live_ssa_defs |
1449 nir_metadata_loop_analysis);
1450 }
1451
1452 return progress;
1453 }
1454
1455 static bool
1456 lower_vars_to_explicit(nir_shader *shader,
1457 struct exec_list *vars, nir_variable_mode mode,
1458 glsl_type_size_align_func type_info)
1459 {
1460 bool progress = false;
1461 unsigned offset;
1462 switch (mode) {
1463 case nir_var_function_temp:
1464 case nir_var_shader_temp:
1465 offset = shader->scratch_size;
1466 break;
1467 case nir_var_mem_shared:
1468 offset = 0;
1469 break;
1470 default:
1471 unreachable("Unsupported mode");
1472 }
1473 nir_foreach_variable(var, vars) {
1474 unsigned size, align;
1475 const struct glsl_type *explicit_type =
1476 glsl_get_explicit_type_for_size_align(var->type, type_info, &size, &align);
1477
1478 if (explicit_type != var->type) {
1479 progress = true;
1480 var->type = explicit_type;
1481 }
1482
1483 var->data.driver_location = ALIGN_POT(offset, align);
1484 offset = var->data.driver_location + size;
1485 }
1486
1487 switch (mode) {
1488 case nir_var_shader_temp:
1489 case nir_var_function_temp:
1490 shader->scratch_size = offset;
1491 break;
1492 case nir_var_mem_shared:
1493 shader->info.cs.shared_size = offset;
1494 shader->num_shared = offset;
1495 break;
1496 default:
1497 unreachable("Unsupported mode");
1498 }
1499
1500 return progress;
1501 }
1502
1503 bool
1504 nir_lower_vars_to_explicit_types(nir_shader *shader,
1505 nir_variable_mode modes,
1506 glsl_type_size_align_func type_info)
1507 {
1508 /* TODO: Situations which need to be handled to support more modes:
1509 * - row-major matrices
1510 * - compact shader inputs/outputs
1511 * - interface types
1512 */
1513 ASSERTED nir_variable_mode supported = nir_var_mem_shared |
1514 nir_var_shader_temp | nir_var_function_temp;
1515 assert(!(modes & ~supported) && "unsupported");
1516
1517 bool progress = false;
1518
1519 if (modes & nir_var_mem_shared)
1520 progress |= lower_vars_to_explicit(shader, &shader->shared, nir_var_mem_shared, type_info);
1521 if (modes & nir_var_shader_temp)
1522 progress |= lower_vars_to_explicit(shader, &shader->globals, nir_var_shader_temp, type_info);
1523
1524 nir_foreach_function(function, shader) {
1525 if (function->impl) {
1526 if (modes & nir_var_function_temp)
1527 progress |= lower_vars_to_explicit(shader, &function->impl->locals, nir_var_function_temp, type_info);
1528
1529 progress |= nir_lower_vars_to_explicit_types_impl(function->impl, modes, type_info);
1530 }
1531 }
1532
1533 return progress;
1534 }
1535
1536 /**
1537 * Return the offset source for a load/store intrinsic.
1538 */
1539 nir_src *
1540 nir_get_io_offset_src(nir_intrinsic_instr *instr)
1541 {
1542 switch (instr->intrinsic) {
1543 case nir_intrinsic_load_input:
1544 case nir_intrinsic_load_output:
1545 case nir_intrinsic_load_shared:
1546 case nir_intrinsic_load_uniform:
1547 case nir_intrinsic_load_global:
1548 case nir_intrinsic_load_scratch:
1549 case nir_intrinsic_load_fs_input_interp_deltas:
1550 return &instr->src[0];
1551 case nir_intrinsic_load_ubo:
1552 case nir_intrinsic_load_ssbo:
1553 case nir_intrinsic_load_per_vertex_input:
1554 case nir_intrinsic_load_per_vertex_output:
1555 case nir_intrinsic_load_interpolated_input:
1556 case nir_intrinsic_store_output:
1557 case nir_intrinsic_store_shared:
1558 case nir_intrinsic_store_global:
1559 case nir_intrinsic_store_scratch:
1560 case nir_intrinsic_ssbo_atomic_add:
1561 case nir_intrinsic_ssbo_atomic_imin:
1562 case nir_intrinsic_ssbo_atomic_umin:
1563 case nir_intrinsic_ssbo_atomic_imax:
1564 case nir_intrinsic_ssbo_atomic_umax:
1565 case nir_intrinsic_ssbo_atomic_and:
1566 case nir_intrinsic_ssbo_atomic_or:
1567 case nir_intrinsic_ssbo_atomic_xor:
1568 case nir_intrinsic_ssbo_atomic_exchange:
1569 case nir_intrinsic_ssbo_atomic_comp_swap:
1570 case nir_intrinsic_ssbo_atomic_fadd:
1571 case nir_intrinsic_ssbo_atomic_fmin:
1572 case nir_intrinsic_ssbo_atomic_fmax:
1573 case nir_intrinsic_ssbo_atomic_fcomp_swap:
1574 return &instr->src[1];
1575 case nir_intrinsic_store_ssbo:
1576 case nir_intrinsic_store_per_vertex_output:
1577 return &instr->src[2];
1578 default:
1579 return NULL;
1580 }
1581 }
1582
1583 /**
1584 * Return the vertex index source for a load/store per_vertex intrinsic.
1585 */
1586 nir_src *
1587 nir_get_io_vertex_index_src(nir_intrinsic_instr *instr)
1588 {
1589 switch (instr->intrinsic) {
1590 case nir_intrinsic_load_per_vertex_input:
1591 case nir_intrinsic_load_per_vertex_output:
1592 return &instr->src[0];
1593 case nir_intrinsic_store_per_vertex_output:
1594 return &instr->src[1];
1595 default:
1596 return NULL;
1597 }
1598 }
1599
1600 /**
1601 * Return the numeric constant that identify a NULL pointer for each address
1602 * format.
1603 */
1604 const nir_const_value *
1605 nir_address_format_null_value(nir_address_format addr_format)
1606 {
1607 const static nir_const_value null_values[][NIR_MAX_VEC_COMPONENTS] = {
1608 [nir_address_format_32bit_global] = {{0}},
1609 [nir_address_format_64bit_global] = {{0}},
1610 [nir_address_format_64bit_bounded_global] = {{0}},
1611 [nir_address_format_32bit_index_offset] = {{.u32 = ~0}, {.u32 = ~0}},
1612 [nir_address_format_vec2_index_32bit_offset] = {{.u32 = ~0}, {.u32 = ~0}, {.u32 = ~0}},
1613 [nir_address_format_32bit_offset] = {{.u32 = ~0}},
1614 [nir_address_format_logical] = {{.u32 = ~0}},
1615 };
1616
1617 assert(addr_format < ARRAY_SIZE(null_values));
1618 return null_values[addr_format];
1619 }
1620
1621 nir_ssa_def *
1622 nir_build_addr_ieq(nir_builder *b, nir_ssa_def *addr0, nir_ssa_def *addr1,
1623 nir_address_format addr_format)
1624 {
1625 switch (addr_format) {
1626 case nir_address_format_32bit_global:
1627 case nir_address_format_64bit_global:
1628 case nir_address_format_64bit_bounded_global:
1629 case nir_address_format_32bit_index_offset:
1630 case nir_address_format_vec2_index_32bit_offset:
1631 case nir_address_format_32bit_offset:
1632 return nir_ball_iequal(b, addr0, addr1);
1633
1634 case nir_address_format_logical:
1635 unreachable("Unsupported address format");
1636 }
1637
1638 unreachable("Invalid address format");
1639 }
1640
1641 nir_ssa_def *
1642 nir_build_addr_isub(nir_builder *b, nir_ssa_def *addr0, nir_ssa_def *addr1,
1643 nir_address_format addr_format)
1644 {
1645 switch (addr_format) {
1646 case nir_address_format_32bit_global:
1647 case nir_address_format_64bit_global:
1648 case nir_address_format_32bit_offset:
1649 assert(addr0->num_components == 1);
1650 assert(addr1->num_components == 1);
1651 return nir_isub(b, addr0, addr1);
1652
1653 case nir_address_format_64bit_bounded_global:
1654 return nir_isub(b, addr_to_global(b, addr0, addr_format),
1655 addr_to_global(b, addr1, addr_format));
1656
1657 case nir_address_format_32bit_index_offset:
1658 assert(addr0->num_components == 2);
1659 assert(addr1->num_components == 2);
1660 /* Assume the same buffer index. */
1661 return nir_isub(b, nir_channel(b, addr0, 1), nir_channel(b, addr1, 1));
1662
1663 case nir_address_format_vec2_index_32bit_offset:
1664 assert(addr0->num_components == 3);
1665 assert(addr1->num_components == 3);
1666 /* Assume the same buffer index. */
1667 return nir_isub(b, nir_channel(b, addr0, 2), nir_channel(b, addr1, 2));
1668
1669 case nir_address_format_logical:
1670 unreachable("Unsupported address format");
1671 }
1672
1673 unreachable("Invalid address format");
1674 }
1675
1676 static bool
1677 is_input(nir_intrinsic_instr *intrin)
1678 {
1679 return intrin->intrinsic == nir_intrinsic_load_input ||
1680 intrin->intrinsic == nir_intrinsic_load_per_vertex_input ||
1681 intrin->intrinsic == nir_intrinsic_load_interpolated_input ||
1682 intrin->intrinsic == nir_intrinsic_load_fs_input_interp_deltas;
1683 }
1684
1685 static bool
1686 is_output(nir_intrinsic_instr *intrin)
1687 {
1688 return intrin->intrinsic == nir_intrinsic_load_output ||
1689 intrin->intrinsic == nir_intrinsic_load_per_vertex_output ||
1690 intrin->intrinsic == nir_intrinsic_store_output ||
1691 intrin->intrinsic == nir_intrinsic_store_per_vertex_output;
1692 }
1693
1694
1695 /**
1696 * This pass adds constant offsets to instr->const_index[0] for input/output
1697 * intrinsics, and resets the offset source to 0. Non-constant offsets remain
1698 * unchanged - since we don't know what part of a compound variable is
1699 * accessed, we allocate storage for the entire thing. For drivers that use
1700 * nir_lower_io_to_temporaries() before nir_lower_io(), this guarantees that
1701 * the offset source will be 0, so that they don't have to add it in manually.
1702 */
1703
1704 static bool
1705 add_const_offset_to_base_block(nir_block *block, nir_builder *b,
1706 nir_variable_mode mode)
1707 {
1708 bool progress = false;
1709 nir_foreach_instr_safe(instr, block) {
1710 if (instr->type != nir_instr_type_intrinsic)
1711 continue;
1712
1713 nir_intrinsic_instr *intrin = nir_instr_as_intrinsic(instr);
1714
1715 if ((mode == nir_var_shader_in && is_input(intrin)) ||
1716 (mode == nir_var_shader_out && is_output(intrin))) {
1717 nir_src *offset = nir_get_io_offset_src(intrin);
1718
1719 if (nir_src_is_const(*offset)) {
1720 intrin->const_index[0] += nir_src_as_uint(*offset);
1721 b->cursor = nir_before_instr(&intrin->instr);
1722 nir_instr_rewrite_src(&intrin->instr, offset,
1723 nir_src_for_ssa(nir_imm_int(b, 0)));
1724 progress = true;
1725 }
1726 }
1727 }
1728
1729 return progress;
1730 }
1731
1732 bool
1733 nir_io_add_const_offset_to_base(nir_shader *nir, nir_variable_mode mode)
1734 {
1735 bool progress = false;
1736
1737 nir_foreach_function(f, nir) {
1738 if (f->impl) {
1739 nir_builder b;
1740 nir_builder_init(&b, f->impl);
1741 nir_foreach_block(block, f->impl) {
1742 progress |= add_const_offset_to_base_block(block, &b, mode);
1743 }
1744 }
1745 }
1746
1747 return progress;
1748 }
1749