nir: Allow casts in nir_deref_instr_get[_const]_offset()
[mesa.git] / src / compiler / nir / nir_deref.c
1 /*
2 * Copyright © 2018 Intel Corporation
3 *
4 * Permission is hereby granted, free of charge, to any person obtaining a
5 * copy of this software and associated documentation files (the "Software"),
6 * to deal in the Software without restriction, including without limitation
7 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
8 * and/or sell copies of the Software, and to permit persons to whom the
9 * Software is furnished to do so, subject to the following conditions:
10 *
11 * The above copyright notice and this permission notice (including the next
12 * paragraph) shall be included in all copies or substantial portions of the
13 * Software.
14 *
15 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
18 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
20 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
21 * IN THE SOFTWARE.
22 */
23
24 #include "nir.h"
25 #include "nir_builder.h"
26 #include "nir_deref.h"
27 #include "util/hash_table.h"
28
29 static bool
30 is_trivial_deref_cast(nir_deref_instr *cast)
31 {
32 nir_deref_instr *parent = nir_src_as_deref(cast->parent);
33 if (!parent)
34 return false;
35
36 return cast->mode == parent->mode &&
37 cast->type == parent->type &&
38 cast->dest.ssa.num_components == parent->dest.ssa.num_components &&
39 cast->dest.ssa.bit_size == parent->dest.ssa.bit_size;
40 }
41
42 void
43 nir_deref_path_init(nir_deref_path *path,
44 nir_deref_instr *deref, void *mem_ctx)
45 {
46 assert(deref != NULL);
47
48 /* The length of the short path is at most ARRAY_SIZE - 1 because we need
49 * room for the NULL terminator.
50 */
51 static const int max_short_path_len = ARRAY_SIZE(path->_short_path) - 1;
52
53 int count = 0;
54
55 nir_deref_instr **tail = &path->_short_path[max_short_path_len];
56 nir_deref_instr **head = tail;
57
58 *tail = NULL;
59 for (nir_deref_instr *d = deref; d; d = nir_deref_instr_parent(d)) {
60 if (d->deref_type == nir_deref_type_cast && is_trivial_deref_cast(d))
61 continue;
62 count++;
63 if (count <= max_short_path_len)
64 *(--head) = d;
65 }
66
67 if (count <= max_short_path_len) {
68 /* If we're under max_short_path_len, just use the short path. */
69 path->path = head;
70 goto done;
71 }
72
73 #ifndef NDEBUG
74 /* Just in case someone uses short_path by accident */
75 for (unsigned i = 0; i < ARRAY_SIZE(path->_short_path); i++)
76 path->_short_path[i] = (void *)(uintptr_t)0xdeadbeef;
77 #endif
78
79 path->path = ralloc_array(mem_ctx, nir_deref_instr *, count + 1);
80 head = tail = path->path + count;
81 *tail = NULL;
82 for (nir_deref_instr *d = deref; d; d = nir_deref_instr_parent(d)) {
83 if (d->deref_type == nir_deref_type_cast && is_trivial_deref_cast(d))
84 continue;
85 *(--head) = d;
86 }
87
88 done:
89 assert(head == path->path);
90 assert(tail == head + count);
91 assert(*tail == NULL);
92 }
93
94 void
95 nir_deref_path_finish(nir_deref_path *path)
96 {
97 if (path->path < &path->_short_path[0] ||
98 path->path > &path->_short_path[ARRAY_SIZE(path->_short_path) - 1])
99 ralloc_free(path->path);
100 }
101
102 /**
103 * Recursively removes unused deref instructions
104 */
105 bool
106 nir_deref_instr_remove_if_unused(nir_deref_instr *instr)
107 {
108 bool progress = false;
109
110 for (nir_deref_instr *d = instr; d; d = nir_deref_instr_parent(d)) {
111 /* If anyone is using this deref, leave it alone */
112 assert(d->dest.is_ssa);
113 if (!list_is_empty(&d->dest.ssa.uses))
114 break;
115
116 nir_instr_remove(&d->instr);
117 progress = true;
118 }
119
120 return progress;
121 }
122
123 bool
124 nir_deref_instr_has_indirect(nir_deref_instr *instr)
125 {
126 while (instr->deref_type != nir_deref_type_var) {
127 /* Consider casts to be indirects */
128 if (instr->deref_type == nir_deref_type_cast)
129 return true;
130
131 if ((instr->deref_type == nir_deref_type_array ||
132 instr->deref_type == nir_deref_type_ptr_as_array) &&
133 !nir_src_is_const(instr->arr.index))
134 return true;
135
136 instr = nir_deref_instr_parent(instr);
137 }
138
139 return false;
140 }
141
142 bool
143 nir_deref_instr_is_known_out_of_bounds(nir_deref_instr *instr)
144 {
145 for (; instr; instr = nir_deref_instr_parent(instr)) {
146 if (instr->deref_type == nir_deref_type_array &&
147 nir_src_is_const(instr->arr.index) &&
148 nir_src_as_uint(instr->arr.index) >=
149 glsl_get_length(nir_deref_instr_parent(instr)->type))
150 return true;
151 }
152
153 return false;
154 }
155
156 bool
157 nir_deref_instr_has_complex_use(nir_deref_instr *deref)
158 {
159 nir_foreach_use(use_src, &deref->dest.ssa) {
160 nir_instr *use_instr = use_src->parent_instr;
161
162 switch (use_instr->type) {
163 case nir_instr_type_deref: {
164 nir_deref_instr *use_deref = nir_instr_as_deref(use_instr);
165
166 /* A var deref has no sources */
167 assert(use_deref->deref_type != nir_deref_type_var);
168
169 /* If a deref shows up in an array index or something like that, it's
170 * a complex use.
171 */
172 if (use_src != &use_deref->parent)
173 return true;
174
175 /* Anything that isn't a basic struct or array deref is considered to
176 * be a "complex" use. In particular, we don't allow ptr_as_array
177 * because we assume that opt_deref will turn any non-complex
178 * ptr_as_array derefs into regular array derefs eventually so passes
179 * which only want to handle simple derefs will pick them up in a
180 * later pass.
181 */
182 if (use_deref->deref_type != nir_deref_type_struct &&
183 use_deref->deref_type != nir_deref_type_array_wildcard &&
184 use_deref->deref_type != nir_deref_type_array)
185 return true;
186
187 if (nir_deref_instr_has_complex_use(use_deref))
188 return true;
189
190 continue;
191 }
192
193 case nir_instr_type_intrinsic: {
194 nir_intrinsic_instr *use_intrin = nir_instr_as_intrinsic(use_instr);
195 switch (use_intrin->intrinsic) {
196 case nir_intrinsic_load_deref:
197 assert(use_src == &use_intrin->src[0]);
198 continue;
199
200 case nir_intrinsic_copy_deref:
201 assert(use_src == &use_intrin->src[0] ||
202 use_src == &use_intrin->src[1]);
203 continue;
204
205 case nir_intrinsic_store_deref:
206 /* A use in src[1] of a store means we're taking that pointer and
207 * writing it to a variable. Because we have no idea who will
208 * read that variable and what they will do with the pointer, it's
209 * considered a "complex" use. A use in src[0], on the other
210 * hand, is a simple use because we're just going to dereference
211 * it and write a value there.
212 */
213 if (use_src == &use_intrin->src[0])
214 continue;
215 return true;
216
217 default:
218 return true;
219 }
220 unreachable("Switch default failed");
221 }
222
223 default:
224 return true;
225 }
226 }
227
228 nir_foreach_if_use(use, &deref->dest.ssa)
229 return true;
230
231 return false;
232 }
233
234 unsigned
235 nir_deref_instr_ptr_as_array_stride(nir_deref_instr *deref)
236 {
237 switch (deref->deref_type) {
238 case nir_deref_type_array:
239 return glsl_get_explicit_stride(nir_deref_instr_parent(deref)->type);
240 case nir_deref_type_ptr_as_array:
241 return nir_deref_instr_ptr_as_array_stride(nir_deref_instr_parent(deref));
242 case nir_deref_type_cast:
243 return deref->cast.ptr_stride;
244 default:
245 return 0;
246 }
247 }
248
249 static unsigned
250 type_get_array_stride(const struct glsl_type *elem_type,
251 glsl_type_size_align_func size_align)
252 {
253 unsigned elem_size, elem_align;
254 size_align(elem_type, &elem_size, &elem_align);
255 return ALIGN_POT(elem_size, elem_align);
256 }
257
258 static unsigned
259 struct_type_get_field_offset(const struct glsl_type *struct_type,
260 glsl_type_size_align_func size_align,
261 unsigned field_idx)
262 {
263 assert(glsl_type_is_struct_or_ifc(struct_type));
264 unsigned offset = 0;
265 for (unsigned i = 0; i <= field_idx; i++) {
266 unsigned elem_size, elem_align;
267 size_align(glsl_get_struct_field(struct_type, i), &elem_size, &elem_align);
268 offset = ALIGN_POT(offset, elem_align);
269 if (i < field_idx)
270 offset += elem_size;
271 }
272 return offset;
273 }
274
275 unsigned
276 nir_deref_instr_get_const_offset(nir_deref_instr *deref,
277 glsl_type_size_align_func size_align)
278 {
279 nir_deref_path path;
280 nir_deref_path_init(&path, deref, NULL);
281
282 unsigned offset = 0;
283 for (nir_deref_instr **p = &path.path[1]; *p; p++) {
284 switch ((*p)->deref_type) {
285 case nir_deref_type_array:
286 offset += nir_src_as_uint((*p)->arr.index) *
287 type_get_array_stride((*p)->type, size_align);
288 break;
289 case nir_deref_type_struct: {
290 /* p starts at path[1], so this is safe */
291 nir_deref_instr *parent = *(p - 1);
292 offset += struct_type_get_field_offset(parent->type, size_align,
293 (*p)->strct.index);
294 break;
295 }
296 case nir_deref_type_cast:
297 /* A cast doesn't contribute to the offset */
298 break;
299 default:
300 unreachable("Unsupported deref type");
301 }
302 }
303
304 nir_deref_path_finish(&path);
305
306 return offset;
307 }
308
309 nir_ssa_def *
310 nir_build_deref_offset(nir_builder *b, nir_deref_instr *deref,
311 glsl_type_size_align_func size_align)
312 {
313 nir_deref_path path;
314 nir_deref_path_init(&path, deref, NULL);
315
316 nir_ssa_def *offset = nir_imm_intN_t(b, 0, deref->dest.ssa.bit_size);
317 for (nir_deref_instr **p = &path.path[1]; *p; p++) {
318 switch ((*p)->deref_type) {
319 case nir_deref_type_array: {
320 nir_ssa_def *index = nir_ssa_for_src(b, (*p)->arr.index, 1);
321 int stride = type_get_array_stride((*p)->type, size_align);
322 offset = nir_iadd(b, offset, nir_amul_imm(b, index, stride));
323 break;
324 }
325 case nir_deref_type_struct: {
326 /* p starts at path[1], so this is safe */
327 nir_deref_instr *parent = *(p - 1);
328 unsigned field_offset =
329 struct_type_get_field_offset(parent->type, size_align,
330 (*p)->strct.index);
331 offset = nir_iadd_imm(b, offset, field_offset);
332 break;
333 }
334 case nir_deref_type_cast:
335 /* A cast doesn't contribute to the offset */
336 break;
337 default:
338 unreachable("Unsupported deref type");
339 }
340 }
341
342 nir_deref_path_finish(&path);
343
344 return offset;
345 }
346
347 bool
348 nir_remove_dead_derefs_impl(nir_function_impl *impl)
349 {
350 bool progress = false;
351
352 nir_foreach_block(block, impl) {
353 nir_foreach_instr_safe(instr, block) {
354 if (instr->type == nir_instr_type_deref &&
355 nir_deref_instr_remove_if_unused(nir_instr_as_deref(instr)))
356 progress = true;
357 }
358 }
359
360 if (progress)
361 nir_metadata_preserve(impl, nir_metadata_block_index |
362 nir_metadata_dominance);
363
364 return progress;
365 }
366
367 bool
368 nir_remove_dead_derefs(nir_shader *shader)
369 {
370 bool progress = false;
371 nir_foreach_function(function, shader) {
372 if (function->impl && nir_remove_dead_derefs_impl(function->impl))
373 progress = true;
374 }
375
376 return progress;
377 }
378
379 void
380 nir_fixup_deref_modes(nir_shader *shader)
381 {
382 nir_foreach_function(function, shader) {
383 if (!function->impl)
384 continue;
385
386 nir_foreach_block(block, function->impl) {
387 nir_foreach_instr(instr, block) {
388 if (instr->type != nir_instr_type_deref)
389 continue;
390
391 nir_deref_instr *deref = nir_instr_as_deref(instr);
392 if (deref->deref_type == nir_deref_type_cast)
393 continue;
394
395 nir_variable_mode parent_mode;
396 if (deref->deref_type == nir_deref_type_var) {
397 parent_mode = deref->var->data.mode;
398 } else {
399 assert(deref->parent.is_ssa);
400 nir_deref_instr *parent =
401 nir_instr_as_deref(deref->parent.ssa->parent_instr);
402 parent_mode = parent->mode;
403 }
404
405 deref->mode = parent_mode;
406 }
407 }
408 }
409 }
410
411 static bool
412 modes_may_alias(nir_variable_mode a, nir_variable_mode b)
413 {
414 /* Generic pointers can alias with SSBOs */
415 if ((a == nir_var_mem_ssbo || a == nir_var_mem_global) &&
416 (b == nir_var_mem_ssbo || b == nir_var_mem_global))
417 return true;
418
419 /* In the general case, pointers can only alias if they have the same mode.
420 *
421 * NOTE: In future, with things like OpenCL generic pointers, this may not
422 * be true and will have to be re-evaluated. However, with graphics only,
423 * it should be safe.
424 */
425 return a == b;
426 }
427
428 static bool
429 deref_path_contains_coherent_decoration(nir_deref_path *path)
430 {
431 assert(path->path[0]->deref_type == nir_deref_type_var);
432
433 if (path->path[0]->var->data.access & ACCESS_COHERENT)
434 return true;
435
436 for (nir_deref_instr **p = &path->path[1]; *p; p++) {
437 if ((*p)->deref_type != nir_deref_type_struct)
438 continue;
439
440 const struct glsl_type *struct_type = (*(p - 1))->type;
441 const struct glsl_struct_field *field =
442 glsl_get_struct_field_data(struct_type, (*p)->strct.index);
443 if (field->memory_coherent)
444 return true;
445 }
446
447 return false;
448 }
449
450 nir_deref_compare_result
451 nir_compare_deref_paths(nir_deref_path *a_path,
452 nir_deref_path *b_path)
453 {
454 if (!modes_may_alias(b_path->path[0]->mode, a_path->path[0]->mode))
455 return nir_derefs_do_not_alias;
456
457 if (a_path->path[0]->deref_type != b_path->path[0]->deref_type)
458 return nir_derefs_may_alias_bit;
459
460 if (a_path->path[0]->deref_type == nir_deref_type_var) {
461 if (a_path->path[0]->var != b_path->path[0]->var) {
462 /* Shader and function temporaries aren't backed by memory so two
463 * distinct variables never alias.
464 */
465 static const nir_variable_mode temp_var_modes =
466 nir_var_shader_temp | nir_var_function_temp;
467 if ((a_path->path[0]->mode & temp_var_modes) ||
468 (b_path->path[0]->mode & temp_var_modes))
469 return nir_derefs_do_not_alias;
470
471 /* If they are both declared coherent or have coherent somewhere in
472 * their path (due to a member of an interface being declared
473 * coherent), we have to assume we that we could have any kind of
474 * aliasing. Otherwise, they could still alias but the client didn't
475 * tell us and that's their fault.
476 */
477 if (deref_path_contains_coherent_decoration(a_path) &&
478 deref_path_contains_coherent_decoration(b_path))
479 return nir_derefs_may_alias_bit;
480
481 /* If we can chase the deref all the way back to the variable and
482 * they're not the same variable and at least one is not declared
483 * coherent, we know they can't possibly alias.
484 */
485 return nir_derefs_do_not_alias;
486 }
487 } else {
488 assert(a_path->path[0]->deref_type == nir_deref_type_cast);
489 /* If they're not exactly the same cast, it's hard to compare them so we
490 * just assume they alias. Comparing casts is tricky as there are lots
491 * of things such as mode, type, etc. to make sure work out; for now, we
492 * just assume nit_opt_deref will combine them and compare the deref
493 * instructions.
494 *
495 * TODO: At some point in the future, we could be clever and understand
496 * that a float[] and int[] have the same layout and aliasing structure
497 * but double[] and vec3[] do not and we could potentially be a bit
498 * smarter here.
499 */
500 if (a_path->path[0] != b_path->path[0])
501 return nir_derefs_may_alias_bit;
502 }
503
504 /* Start off assuming they fully compare. We ignore equality for now. In
505 * the end, we'll determine that by containment.
506 */
507 nir_deref_compare_result result = nir_derefs_may_alias_bit |
508 nir_derefs_a_contains_b_bit |
509 nir_derefs_b_contains_a_bit;
510
511 nir_deref_instr **a_p = &a_path->path[1];
512 nir_deref_instr **b_p = &b_path->path[1];
513 while (*a_p != NULL && *a_p == *b_p) {
514 a_p++;
515 b_p++;
516 }
517
518 /* We're at either the tail or the divergence point between the two deref
519 * paths. Look to see if either contains a ptr_as_array deref. It it
520 * does we don't know how to safely make any inferences. Hopefully,
521 * nir_opt_deref will clean most of these up and we can start inferring
522 * things again.
523 *
524 * In theory, we could do a bit better. For instance, we could detect the
525 * case where we have exactly one ptr_as_array deref in the chain after the
526 * divergence point and it's matched in both chains and the two chains have
527 * different constant indices.
528 */
529 for (nir_deref_instr **t_p = a_p; *t_p; t_p++) {
530 if ((*t_p)->deref_type == nir_deref_type_ptr_as_array)
531 return nir_derefs_may_alias_bit;
532 }
533 for (nir_deref_instr **t_p = b_p; *t_p; t_p++) {
534 if ((*t_p)->deref_type == nir_deref_type_ptr_as_array)
535 return nir_derefs_may_alias_bit;
536 }
537
538 while (*a_p != NULL && *b_p != NULL) {
539 nir_deref_instr *a_tail = *(a_p++);
540 nir_deref_instr *b_tail = *(b_p++);
541
542 switch (a_tail->deref_type) {
543 case nir_deref_type_array:
544 case nir_deref_type_array_wildcard: {
545 assert(b_tail->deref_type == nir_deref_type_array ||
546 b_tail->deref_type == nir_deref_type_array_wildcard);
547
548 if (a_tail->deref_type == nir_deref_type_array_wildcard) {
549 if (b_tail->deref_type != nir_deref_type_array_wildcard)
550 result &= ~nir_derefs_b_contains_a_bit;
551 } else if (b_tail->deref_type == nir_deref_type_array_wildcard) {
552 if (a_tail->deref_type != nir_deref_type_array_wildcard)
553 result &= ~nir_derefs_a_contains_b_bit;
554 } else {
555 assert(a_tail->deref_type == nir_deref_type_array &&
556 b_tail->deref_type == nir_deref_type_array);
557 assert(a_tail->arr.index.is_ssa && b_tail->arr.index.is_ssa);
558
559 if (nir_src_is_const(a_tail->arr.index) &&
560 nir_src_is_const(b_tail->arr.index)) {
561 /* If they're both direct and have different offsets, they
562 * don't even alias much less anything else.
563 */
564 if (nir_src_as_uint(a_tail->arr.index) !=
565 nir_src_as_uint(b_tail->arr.index))
566 return nir_derefs_do_not_alias;
567 } else if (a_tail->arr.index.ssa == b_tail->arr.index.ssa) {
568 /* They're the same indirect, continue on */
569 } else {
570 /* They're not the same index so we can't prove anything about
571 * containment.
572 */
573 result &= ~(nir_derefs_a_contains_b_bit | nir_derefs_b_contains_a_bit);
574 }
575 }
576 break;
577 }
578
579 case nir_deref_type_struct: {
580 /* If they're different struct members, they don't even alias */
581 if (a_tail->strct.index != b_tail->strct.index)
582 return nir_derefs_do_not_alias;
583 break;
584 }
585
586 default:
587 unreachable("Invalid deref type");
588 }
589 }
590
591 /* If a is longer than b, then it can't contain b */
592 if (*a_p != NULL)
593 result &= ~nir_derefs_a_contains_b_bit;
594 if (*b_p != NULL)
595 result &= ~nir_derefs_b_contains_a_bit;
596
597 /* If a contains b and b contains a they must be equal. */
598 if ((result & nir_derefs_a_contains_b_bit) && (result & nir_derefs_b_contains_a_bit))
599 result |= nir_derefs_equal_bit;
600
601 return result;
602 }
603
604 nir_deref_compare_result
605 nir_compare_derefs(nir_deref_instr *a, nir_deref_instr *b)
606 {
607 if (a == b) {
608 return nir_derefs_equal_bit | nir_derefs_may_alias_bit |
609 nir_derefs_a_contains_b_bit | nir_derefs_b_contains_a_bit;
610 }
611
612 nir_deref_path a_path, b_path;
613 nir_deref_path_init(&a_path, a, NULL);
614 nir_deref_path_init(&b_path, b, NULL);
615 assert(a_path.path[0]->deref_type == nir_deref_type_var ||
616 a_path.path[0]->deref_type == nir_deref_type_cast);
617 assert(b_path.path[0]->deref_type == nir_deref_type_var ||
618 b_path.path[0]->deref_type == nir_deref_type_cast);
619
620 nir_deref_compare_result result = nir_compare_deref_paths(&a_path, &b_path);
621
622 nir_deref_path_finish(&a_path);
623 nir_deref_path_finish(&b_path);
624
625 return result;
626 }
627
628 struct rematerialize_deref_state {
629 bool progress;
630 nir_builder builder;
631 nir_block *block;
632 struct hash_table *cache;
633 };
634
635 static nir_deref_instr *
636 rematerialize_deref_in_block(nir_deref_instr *deref,
637 struct rematerialize_deref_state *state)
638 {
639 if (deref->instr.block == state->block)
640 return deref;
641
642 if (!state->cache) {
643 state->cache = _mesa_pointer_hash_table_create(NULL);
644 }
645
646 struct hash_entry *cached = _mesa_hash_table_search(state->cache, deref);
647 if (cached)
648 return cached->data;
649
650 nir_builder *b = &state->builder;
651 nir_deref_instr *new_deref =
652 nir_deref_instr_create(b->shader, deref->deref_type);
653 new_deref->mode = deref->mode;
654 new_deref->type = deref->type;
655
656 if (deref->deref_type == nir_deref_type_var) {
657 new_deref->var = deref->var;
658 } else {
659 nir_deref_instr *parent = nir_src_as_deref(deref->parent);
660 if (parent) {
661 parent = rematerialize_deref_in_block(parent, state);
662 new_deref->parent = nir_src_for_ssa(&parent->dest.ssa);
663 } else {
664 nir_src_copy(&new_deref->parent, &deref->parent, new_deref);
665 }
666 }
667
668 switch (deref->deref_type) {
669 case nir_deref_type_var:
670 case nir_deref_type_array_wildcard:
671 /* Nothing more to do */
672 break;
673
674 case nir_deref_type_cast:
675 new_deref->cast.ptr_stride = deref->cast.ptr_stride;
676 break;
677
678 case nir_deref_type_array:
679 case nir_deref_type_ptr_as_array:
680 assert(!nir_src_as_deref(deref->arr.index));
681 nir_src_copy(&new_deref->arr.index, &deref->arr.index, new_deref);
682 break;
683
684 case nir_deref_type_struct:
685 new_deref->strct.index = deref->strct.index;
686 break;
687
688 default:
689 unreachable("Invalid deref instruction type");
690 }
691
692 nir_ssa_dest_init(&new_deref->instr, &new_deref->dest,
693 deref->dest.ssa.num_components,
694 deref->dest.ssa.bit_size,
695 deref->dest.ssa.name);
696 nir_builder_instr_insert(b, &new_deref->instr);
697
698 return new_deref;
699 }
700
701 static bool
702 rematerialize_deref_src(nir_src *src, void *_state)
703 {
704 struct rematerialize_deref_state *state = _state;
705
706 nir_deref_instr *deref = nir_src_as_deref(*src);
707 if (!deref)
708 return true;
709
710 nir_deref_instr *block_deref = rematerialize_deref_in_block(deref, state);
711 if (block_deref != deref) {
712 nir_instr_rewrite_src(src->parent_instr, src,
713 nir_src_for_ssa(&block_deref->dest.ssa));
714 nir_deref_instr_remove_if_unused(deref);
715 state->progress = true;
716 }
717
718 return true;
719 }
720
721 /** Re-materialize derefs in every block
722 *
723 * This pass re-materializes deref instructions in every block in which it is
724 * used. After this pass has been run, every use of a deref will be of a
725 * deref in the same block as the use. Also, all unused derefs will be
726 * deleted as a side-effect.
727 *
728 * Derefs used as sources of phi instructions are not rematerialized.
729 */
730 bool
731 nir_rematerialize_derefs_in_use_blocks_impl(nir_function_impl *impl)
732 {
733 struct rematerialize_deref_state state = { 0 };
734 nir_builder_init(&state.builder, impl);
735
736 nir_foreach_block(block, impl) {
737 state.block = block;
738
739 /* Start each block with a fresh cache */
740 if (state.cache)
741 _mesa_hash_table_clear(state.cache, NULL);
742
743 nir_foreach_instr_safe(instr, block) {
744 if (instr->type == nir_instr_type_deref &&
745 nir_deref_instr_remove_if_unused(nir_instr_as_deref(instr)))
746 continue;
747
748 /* If a deref is used in a phi, we can't rematerialize it, as the new
749 * derefs would appear before the phi, which is not valid.
750 */
751 if (instr->type == nir_instr_type_phi)
752 continue;
753
754 state.builder.cursor = nir_before_instr(instr);
755 nir_foreach_src(instr, rematerialize_deref_src, &state);
756 }
757
758 #ifndef NDEBUG
759 nir_if *following_if = nir_block_get_following_if(block);
760 if (following_if)
761 assert(!nir_src_as_deref(following_if->condition));
762 #endif
763 }
764
765 _mesa_hash_table_destroy(state.cache, NULL);
766
767 return state.progress;
768 }
769
770 static void
771 nir_deref_instr_fixup_child_types(nir_deref_instr *parent)
772 {
773 nir_foreach_use(use, &parent->dest.ssa) {
774 if (use->parent_instr->type != nir_instr_type_deref)
775 continue;
776
777 nir_deref_instr *child = nir_instr_as_deref(use->parent_instr);
778 switch (child->deref_type) {
779 case nir_deref_type_var:
780 unreachable("nir_deref_type_var cannot be a child");
781
782 case nir_deref_type_array:
783 case nir_deref_type_array_wildcard:
784 child->type = glsl_get_array_element(parent->type);
785 break;
786
787 case nir_deref_type_ptr_as_array:
788 child->type = parent->type;
789 break;
790
791 case nir_deref_type_struct:
792 child->type = glsl_get_struct_field(parent->type,
793 child->strct.index);
794 break;
795
796 case nir_deref_type_cast:
797 /* We stop the recursion here */
798 continue;
799 }
800
801 /* Recurse into children */
802 nir_deref_instr_fixup_child_types(child);
803 }
804 }
805
806 static bool
807 is_trivial_array_deref_cast(nir_deref_instr *cast)
808 {
809 assert(is_trivial_deref_cast(cast));
810
811 nir_deref_instr *parent = nir_src_as_deref(cast->parent);
812
813 if (parent->deref_type == nir_deref_type_array) {
814 return cast->cast.ptr_stride ==
815 glsl_get_explicit_stride(nir_deref_instr_parent(parent)->type);
816 } else if (parent->deref_type == nir_deref_type_ptr_as_array) {
817 return cast->cast.ptr_stride ==
818 nir_deref_instr_ptr_as_array_stride(parent);
819 } else {
820 return false;
821 }
822 }
823
824 static bool
825 is_deref_ptr_as_array(nir_instr *instr)
826 {
827 return instr->type == nir_instr_type_deref &&
828 nir_instr_as_deref(instr)->deref_type == nir_deref_type_ptr_as_array;
829 }
830
831 /**
832 * Remove casts that just wrap other casts.
833 */
834 static bool
835 opt_remove_cast_cast(nir_deref_instr *cast)
836 {
837 nir_deref_instr *first_cast = cast;
838
839 while (true) {
840 nir_deref_instr *parent = nir_deref_instr_parent(first_cast);
841 if (parent == NULL || parent->deref_type != nir_deref_type_cast)
842 break;
843 first_cast = parent;
844 }
845 if (cast == first_cast)
846 return false;
847
848 nir_instr_rewrite_src(&cast->instr, &cast->parent,
849 nir_src_for_ssa(first_cast->parent.ssa));
850 return true;
851 }
852
853 static bool
854 opt_remove_sampler_cast(nir_deref_instr *cast)
855 {
856 assert(cast->deref_type == nir_deref_type_cast);
857 nir_deref_instr *parent = nir_src_as_deref(cast->parent);
858 if (parent == NULL)
859 return false;
860
861 /* Strip both types down to their non-array type and bail if there are any
862 * discrepancies in array lengths.
863 */
864 const struct glsl_type *parent_type = parent->type;
865 const struct glsl_type *cast_type = cast->type;
866 while (glsl_type_is_array(parent_type) && glsl_type_is_array(cast_type)) {
867 if (glsl_get_length(parent_type) != glsl_get_length(cast_type))
868 return false;
869 parent_type = glsl_get_array_element(parent_type);
870 cast_type = glsl_get_array_element(cast_type);
871 }
872
873 if (glsl_type_is_array(parent_type) || glsl_type_is_array(cast_type))
874 return false;
875
876 if (!glsl_type_is_sampler(parent_type) ||
877 cast_type != glsl_bare_sampler_type())
878 return false;
879
880 /* We're a cast from a more detailed sampler type to a bare sampler */
881 nir_ssa_def_rewrite_uses(&cast->dest.ssa,
882 nir_src_for_ssa(&parent->dest.ssa));
883 nir_instr_remove(&cast->instr);
884
885 /* Recursively crawl the deref tree and clean up types */
886 nir_deref_instr_fixup_child_types(parent);
887
888 return true;
889 }
890
891 /**
892 * Is this casting a struct to a contained struct.
893 * struct a { struct b field0 };
894 * ssa_5 is structa;
895 * deref_cast (structb *)ssa_5 (function_temp structb);
896 * converts to
897 * deref_struct &ssa_5->field0 (function_temp structb);
898 * This allows subsequent copy propagation to work.
899 */
900 static bool
901 opt_replace_struct_wrapper_cast(nir_builder *b, nir_deref_instr *cast)
902 {
903 nir_deref_instr *parent = nir_src_as_deref(cast->parent);
904 if (!parent)
905 return false;
906
907 if (!glsl_type_is_struct(parent->type))
908 return false;
909
910 if (glsl_get_struct_field_offset(parent->type, 0) != 0)
911 return false;
912
913 if (cast->type != glsl_get_struct_field(parent->type, 0))
914 return false;
915
916 nir_deref_instr *replace = nir_build_deref_struct(b, parent, 0);
917 nir_ssa_def_rewrite_uses(&cast->dest.ssa, nir_src_for_ssa(&replace->dest.ssa));
918 nir_deref_instr_remove_if_unused(cast);
919 return true;
920 }
921
922 static bool
923 opt_deref_cast(nir_builder *b, nir_deref_instr *cast)
924 {
925 bool progress;
926
927 if (opt_replace_struct_wrapper_cast(b, cast))
928 return true;
929
930 if (opt_remove_sampler_cast(cast))
931 return true;
932
933 progress = opt_remove_cast_cast(cast);
934 if (!is_trivial_deref_cast(cast))
935 return progress;
936
937 bool trivial_array_cast = is_trivial_array_deref_cast(cast);
938
939 assert(cast->dest.is_ssa);
940 assert(cast->parent.is_ssa);
941
942 nir_foreach_use_safe(use_src, &cast->dest.ssa) {
943 /* If this isn't a trivial array cast, we can't propagate into
944 * ptr_as_array derefs.
945 */
946 if (is_deref_ptr_as_array(use_src->parent_instr) &&
947 !trivial_array_cast)
948 continue;
949
950 nir_instr_rewrite_src(use_src->parent_instr, use_src, cast->parent);
951 progress = true;
952 }
953
954 /* If uses would be a bit crazy */
955 assert(list_is_empty(&cast->dest.ssa.if_uses));
956
957 if (nir_deref_instr_remove_if_unused(cast))
958 progress = true;
959
960 return progress;
961 }
962
963 static bool
964 opt_deref_ptr_as_array(nir_builder *b, nir_deref_instr *deref)
965 {
966 assert(deref->deref_type == nir_deref_type_ptr_as_array);
967
968 nir_deref_instr *parent = nir_deref_instr_parent(deref);
969
970 if (nir_src_is_const(deref->arr.index) &&
971 nir_src_as_int(deref->arr.index) == 0) {
972 /* If it's a ptr_as_array deref with an index of 0, it does nothing
973 * and we can just replace its uses with its parent.
974 *
975 * The source of a ptr_as_array deref always has a deref_type of
976 * nir_deref_type_array or nir_deref_type_cast. If it's a cast, it
977 * may be trivial and we may be able to get rid of that too. Any
978 * trivial cast of trivial cast cases should be handled already by
979 * opt_deref_cast() above.
980 */
981 if (parent->deref_type == nir_deref_type_cast &&
982 is_trivial_deref_cast(parent))
983 parent = nir_deref_instr_parent(parent);
984 nir_ssa_def_rewrite_uses(&deref->dest.ssa,
985 nir_src_for_ssa(&parent->dest.ssa));
986 nir_instr_remove(&deref->instr);
987 return true;
988 }
989
990 if (parent->deref_type != nir_deref_type_array &&
991 parent->deref_type != nir_deref_type_ptr_as_array)
992 return false;
993
994 assert(parent->parent.is_ssa);
995 assert(parent->arr.index.is_ssa);
996 assert(deref->arr.index.is_ssa);
997
998 nir_ssa_def *new_idx = nir_iadd(b, parent->arr.index.ssa,
999 deref->arr.index.ssa);
1000
1001 deref->deref_type = parent->deref_type;
1002 nir_instr_rewrite_src(&deref->instr, &deref->parent, parent->parent);
1003 nir_instr_rewrite_src(&deref->instr, &deref->arr.index,
1004 nir_src_for_ssa(new_idx));
1005 return true;
1006 }
1007
1008 bool
1009 nir_opt_deref_impl(nir_function_impl *impl)
1010 {
1011 bool progress = false;
1012
1013 nir_builder b;
1014 nir_builder_init(&b, impl);
1015
1016 nir_foreach_block(block, impl) {
1017 nir_foreach_instr_safe(instr, block) {
1018 if (instr->type != nir_instr_type_deref)
1019 continue;
1020
1021 b.cursor = nir_before_instr(instr);
1022
1023 nir_deref_instr *deref = nir_instr_as_deref(instr);
1024 switch (deref->deref_type) {
1025 case nir_deref_type_ptr_as_array:
1026 if (opt_deref_ptr_as_array(&b, deref))
1027 progress = true;
1028 break;
1029
1030 case nir_deref_type_cast:
1031 if (opt_deref_cast(&b, deref))
1032 progress = true;
1033 break;
1034
1035 default:
1036 /* Do nothing */
1037 break;
1038 }
1039 }
1040 }
1041
1042 if (progress) {
1043 nir_metadata_preserve(impl, nir_metadata_block_index |
1044 nir_metadata_dominance);
1045 } else {
1046 nir_metadata_preserve(impl, nir_metadata_all);
1047 }
1048
1049 return progress;
1050 }
1051
1052 bool
1053 nir_opt_deref(nir_shader *shader)
1054 {
1055 bool progress = false;
1056
1057 nir_foreach_function(func, shader) {
1058 if (func->impl && nir_opt_deref_impl(func->impl))
1059 progress = true;
1060 }
1061
1062 return progress;
1063 }