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