nir/algebraic: Make algebraic_parser_test.sh executable.
[mesa.git] / src / compiler / nir / nir_lower_vars_to_ssa.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 * Jason Ekstrand (jason@jlekstrand.net)
25 *
26 */
27
28 #include "nir.h"
29 #include "nir_builder.h"
30 #include "nir_deref.h"
31 #include "nir_phi_builder.h"
32 #include "nir_vla.h"
33
34
35 struct deref_node {
36 struct deref_node *parent;
37 const struct glsl_type *type;
38
39 bool lower_to_ssa;
40
41 /* Only valid for things that end up in the direct list.
42 * Note that multiple nir_deref_instrs may correspond to this node, but
43 * they will all be equivalent, so any is as good as the other.
44 */
45 nir_deref_path path;
46 struct exec_node direct_derefs_link;
47
48 struct set *loads;
49 struct set *stores;
50 struct set *copies;
51
52 struct nir_phi_builder_value *pb_value;
53
54 /* True if this node is fully direct. If set, it must be in the children
55 * array of its parent.
56 */
57 bool is_direct;
58
59 struct deref_node *wildcard;
60 struct deref_node *indirect;
61 struct deref_node *children[0];
62 };
63
64 struct lower_variables_state {
65 nir_shader *shader;
66 void *dead_ctx;
67 nir_function_impl *impl;
68
69 /* A hash table mapping variables to deref_node data */
70 struct hash_table *deref_var_nodes;
71
72 /* A hash table mapping fully-qualified direct dereferences, i.e.
73 * dereferences with no indirect or wildcard array dereferences, to
74 * deref_node data.
75 *
76 * At the moment, we only lower loads, stores, and copies that can be
77 * trivially lowered to loads and stores, i.e. copies with no indirects
78 * and no wildcards. If a part of a variable that is being loaded from
79 * and/or stored into is also involved in a copy operation with
80 * wildcards, then we lower that copy operation to loads and stores, but
81 * otherwise we leave copies with wildcards alone. Since the only derefs
82 * used in these loads, stores, and trivial copies are ones with no
83 * wildcards and no indirects, these are precisely the derefs that we
84 * can actually consider lowering.
85 */
86 struct exec_list direct_deref_nodes;
87
88 /* Controls whether get_deref_node will add variables to the
89 * direct_deref_nodes table. This is turned on when we are initially
90 * scanning for load/store instructions. It is then turned off so we
91 * don't accidentally change the direct_deref_nodes table while we're
92 * iterating throug it.
93 */
94 bool add_to_direct_deref_nodes;
95
96 struct nir_phi_builder *phi_builder;
97 };
98
99 static struct deref_node *
100 deref_node_create(struct deref_node *parent,
101 const struct glsl_type *type,
102 bool is_direct, void *mem_ctx)
103 {
104 size_t size = sizeof(struct deref_node) +
105 glsl_get_length(type) * sizeof(struct deref_node *);
106
107 struct deref_node *node = rzalloc_size(mem_ctx, size);
108 node->type = type;
109 node->parent = parent;
110 exec_node_init(&node->direct_derefs_link);
111 node->is_direct = is_direct;
112
113 return node;
114 }
115
116 /* Returns the deref node associated with the given variable. This will be
117 * the root of the tree representing all of the derefs of the given variable.
118 */
119 static struct deref_node *
120 get_deref_node_for_var(nir_variable *var, struct lower_variables_state *state)
121 {
122 struct deref_node *node;
123
124 struct hash_entry *var_entry =
125 _mesa_hash_table_search(state->deref_var_nodes, var);
126
127 if (var_entry) {
128 return var_entry->data;
129 } else {
130 node = deref_node_create(NULL, var->type, true, state->dead_ctx);
131 _mesa_hash_table_insert(state->deref_var_nodes, var, node);
132 return node;
133 }
134 }
135
136 /* Gets the deref_node for the given deref chain and creates it if it
137 * doesn't yet exist. If the deref is fully-qualified and direct and
138 * state->add_to_direct_deref_nodes is true, it will be added to the hash
139 * table of of fully-qualified direct derefs.
140 */
141 static struct deref_node *
142 get_deref_node_recur(nir_deref_instr *deref,
143 struct lower_variables_state *state)
144 {
145 if (deref->deref_type == nir_deref_type_var)
146 return get_deref_node_for_var(deref->var, state);
147
148 struct deref_node *parent =
149 get_deref_node_recur(nir_deref_instr_parent(deref), state);
150
151 switch (deref->deref_type) {
152 case nir_deref_type_struct:
153 assert(glsl_type_is_struct(parent->type));
154 assert(deref->strct.index < glsl_get_length(parent->type));
155
156 if (parent->children[deref->strct.index] == NULL) {
157 parent->children[deref->strct.index] =
158 deref_node_create(parent, deref->type, parent->is_direct,
159 state->dead_ctx);
160 }
161
162 return parent->children[deref->strct.index];
163
164 case nir_deref_type_array: {
165 if (nir_src_is_const(deref->arr.index)) {
166 uint32_t index = nir_src_as_uint(deref->arr.index);
167 /* This is possible if a loop unrolls and generates an
168 * out-of-bounds offset. We need to handle this at least
169 * somewhat gracefully.
170 */
171 if (index >= glsl_get_length(parent->type))
172 return NULL;
173
174 if (parent->children[index] == NULL) {
175 parent->children[index] =
176 deref_node_create(parent, deref->type, parent->is_direct,
177 state->dead_ctx);
178 }
179
180 return parent->children[index];
181 } else {
182 if (parent->indirect == NULL) {
183 parent->indirect =
184 deref_node_create(parent, deref->type, false, state->dead_ctx);
185 }
186
187 return parent->indirect;
188 }
189 break;
190 }
191
192 case nir_deref_type_array_wildcard:
193 if (parent->wildcard == NULL) {
194 parent->wildcard =
195 deref_node_create(parent, deref->type, false, state->dead_ctx);
196 }
197
198 return parent->wildcard;
199
200 default:
201 unreachable("Invalid deref type");
202 }
203 }
204
205 static struct deref_node *
206 get_deref_node(nir_deref_instr *deref, struct lower_variables_state *state)
207 {
208 /* This pass only works on local variables. Just ignore any derefs with
209 * a non-local mode.
210 */
211 if (deref->mode != nir_var_local)
212 return NULL;
213
214 struct deref_node *node = get_deref_node_recur(deref, state);
215 if (!node)
216 return NULL;
217
218 /* Insert the node in the direct derefs list. We only do this if it's not
219 * already in the list and we only bother for deref nodes which are used
220 * directly in a load or store.
221 */
222 if (node->is_direct && state->add_to_direct_deref_nodes &&
223 node->direct_derefs_link.next == NULL) {
224 nir_deref_path_init(&node->path, deref, state->dead_ctx);
225 assert(deref->var != NULL);
226 exec_list_push_tail(&state->direct_deref_nodes,
227 &node->direct_derefs_link);
228 }
229
230 return node;
231 }
232
233 /* \sa foreach_deref_node_match */
234 static void
235 foreach_deref_node_worker(struct deref_node *node, nir_deref_instr **path,
236 void (* cb)(struct deref_node *node,
237 struct lower_variables_state *state),
238 struct lower_variables_state *state)
239 {
240 if (*path == NULL) {
241 cb(node, state);
242 return;
243 }
244
245 switch ((*path)->deref_type) {
246 case nir_deref_type_struct:
247 if (node->children[(*path)->strct.index]) {
248 foreach_deref_node_worker(node->children[(*path)->strct.index],
249 path + 1, cb, state);
250 }
251 return;
252
253 case nir_deref_type_array: {
254 uint32_t index = nir_src_as_uint((*path)->arr.index);
255
256 if (node->children[index]) {
257 foreach_deref_node_worker(node->children[index],
258 path + 1, cb, state);
259 }
260
261 if (node->wildcard) {
262 foreach_deref_node_worker(node->wildcard,
263 path + 1, cb, state);
264 }
265 return;
266 }
267
268 default:
269 unreachable("Unsupported deref type");
270 }
271 }
272
273 /* Walks over every "matching" deref_node and calls the callback. A node
274 * is considered to "match" if either refers to that deref or matches up t
275 * a wildcard. In other words, the following would match a[6].foo[3].bar:
276 *
277 * a[6].foo[3].bar
278 * a[*].foo[3].bar
279 * a[6].foo[*].bar
280 * a[*].foo[*].bar
281 *
282 * The given deref must be a full-length and fully qualified (no wildcards
283 * or indirects) deref chain.
284 */
285 static void
286 foreach_deref_node_match(nir_deref_path *path,
287 void (* cb)(struct deref_node *node,
288 struct lower_variables_state *state),
289 struct lower_variables_state *state)
290 {
291 assert(path->path[0]->deref_type == nir_deref_type_var);
292 struct deref_node *node = get_deref_node_for_var(path->path[0]->var, state);
293
294 if (node == NULL)
295 return;
296
297 foreach_deref_node_worker(node, &path->path[1], cb, state);
298 }
299
300 /* \sa deref_may_be_aliased */
301 static bool
302 path_may_be_aliased_node(struct deref_node *node, nir_deref_instr **path,
303 struct lower_variables_state *state)
304 {
305 if (*path == NULL)
306 return false;
307
308 switch ((*path)->deref_type) {
309 case nir_deref_type_struct:
310 if (node->children[(*path)->strct.index]) {
311 return path_may_be_aliased_node(node->children[(*path)->strct.index],
312 path + 1, state);
313 } else {
314 return false;
315 }
316
317 case nir_deref_type_array: {
318 if (!nir_src_is_const((*path)->arr.index))
319 return true;
320
321 uint32_t index = nir_src_as_uint((*path)->arr.index);
322
323 /* If there is an indirect at this level, we're aliased. */
324 if (node->indirect)
325 return true;
326
327 if (node->children[index] &&
328 path_may_be_aliased_node(node->children[index],
329 path + 1, state))
330 return true;
331
332 if (node->wildcard &&
333 path_may_be_aliased_node(node->wildcard, path + 1, state))
334 return true;
335
336 return false;
337 }
338
339 default:
340 unreachable("Unsupported deref type");
341 }
342 }
343
344 /* Returns true if there are no indirects that can ever touch this deref.
345 *
346 * For example, if the given deref is a[6].foo, then any uses of a[i].foo
347 * would cause this to return false, but a[i].bar would not affect it
348 * because it's a different structure member. A var_copy involving of
349 * a[*].bar also doesn't affect it because that can be lowered to entirely
350 * direct load/stores.
351 *
352 * We only support asking this question about fully-qualified derefs.
353 * Obviously, it's pointless to ask this about indirects, but we also
354 * rule-out wildcards. Handling Wildcard dereferences would involve
355 * checking each array index to make sure that there aren't any indirect
356 * references.
357 */
358 static bool
359 path_may_be_aliased(nir_deref_path *path,
360 struct lower_variables_state *state)
361 {
362 assert(path->path[0]->deref_type == nir_deref_type_var);
363 nir_variable *var = path->path[0]->var;
364
365 return path_may_be_aliased_node(get_deref_node_for_var(var, state),
366 &path->path[1], state);
367 }
368
369 static void
370 register_load_instr(nir_intrinsic_instr *load_instr,
371 struct lower_variables_state *state)
372 {
373 nir_deref_instr *deref = nir_src_as_deref(load_instr->src[0]);
374 struct deref_node *node = get_deref_node(deref, state);
375 if (node == NULL)
376 return;
377
378 if (node->loads == NULL)
379 node->loads = _mesa_set_create(state->dead_ctx, _mesa_hash_pointer,
380 _mesa_key_pointer_equal);
381
382 _mesa_set_add(node->loads, load_instr);
383 }
384
385 static void
386 register_store_instr(nir_intrinsic_instr *store_instr,
387 struct lower_variables_state *state)
388 {
389 nir_deref_instr *deref = nir_src_as_deref(store_instr->src[0]);
390 struct deref_node *node = get_deref_node(deref, state);
391 if (node == NULL)
392 return;
393
394 if (node->stores == NULL)
395 node->stores = _mesa_set_create(state->dead_ctx, _mesa_hash_pointer,
396 _mesa_key_pointer_equal);
397
398 _mesa_set_add(node->stores, store_instr);
399 }
400
401 static void
402 register_copy_instr(nir_intrinsic_instr *copy_instr,
403 struct lower_variables_state *state)
404 {
405 for (unsigned idx = 0; idx < 2; idx++) {
406 nir_deref_instr *deref = nir_src_as_deref(copy_instr->src[idx]);
407 struct deref_node *node = get_deref_node(deref, state);
408 if (node == NULL)
409 continue;
410
411 if (node->copies == NULL)
412 node->copies = _mesa_set_create(state->dead_ctx, _mesa_hash_pointer,
413 _mesa_key_pointer_equal);
414
415 _mesa_set_add(node->copies, copy_instr);
416 }
417 }
418
419 static void
420 register_variable_uses(nir_function_impl *impl,
421 struct lower_variables_state *state)
422 {
423 nir_foreach_block(block, impl) {
424 nir_foreach_instr_safe(instr, block) {
425 if (instr->type != nir_instr_type_intrinsic)
426 continue;
427
428 nir_intrinsic_instr *intrin = nir_instr_as_intrinsic(instr);
429
430 switch (intrin->intrinsic) {
431 case nir_intrinsic_load_deref:
432 register_load_instr(intrin, state);
433 break;
434
435 case nir_intrinsic_store_deref:
436 register_store_instr(intrin, state);
437 break;
438
439 case nir_intrinsic_copy_deref:
440 register_copy_instr(intrin, state);
441 break;
442
443 default:
444 continue;
445 }
446 }
447 }
448 }
449
450 /* Walks over all of the copy instructions to or from the given deref_node
451 * and lowers them to load/store intrinsics.
452 */
453 static void
454 lower_copies_to_load_store(struct deref_node *node,
455 struct lower_variables_state *state)
456 {
457 if (!node->copies)
458 return;
459
460 nir_builder b;
461 nir_builder_init(&b, state->impl);
462
463 set_foreach(node->copies, copy_entry) {
464 nir_intrinsic_instr *copy = (void *)copy_entry->key;
465
466 nir_lower_deref_copy_instr(&b, copy);
467
468 for (unsigned i = 0; i < 2; ++i) {
469 nir_deref_instr *arg_deref = nir_src_as_deref(copy->src[i]);
470 struct deref_node *arg_node = get_deref_node(arg_deref, state);
471
472 /* Only bother removing copy entries for other nodes */
473 if (arg_node == NULL || arg_node == node)
474 continue;
475
476 struct set_entry *arg_entry = _mesa_set_search(arg_node->copies, copy);
477 assert(arg_entry);
478 _mesa_set_remove(arg_node->copies, arg_entry);
479 }
480
481 nir_instr_remove(&copy->instr);
482 }
483
484 node->copies = NULL;
485 }
486
487 /* Performs variable renaming
488 *
489 * This algorithm is very similar to the one outlined in "Efficiently
490 * Computing Static Single Assignment Form and the Control Dependence
491 * Graph" by Cytron et al. The primary difference is that we only put one
492 * SSA def on the stack per block.
493 */
494 static bool
495 rename_variables(struct lower_variables_state *state)
496 {
497 nir_builder b;
498 nir_builder_init(&b, state->impl);
499
500 nir_foreach_block(block, state->impl) {
501 nir_foreach_instr_safe(instr, block) {
502 if (instr->type != nir_instr_type_intrinsic)
503 continue;
504
505 nir_intrinsic_instr *intrin = nir_instr_as_intrinsic(instr);
506
507 switch (intrin->intrinsic) {
508 case nir_intrinsic_load_deref: {
509 nir_deref_instr *deref = nir_src_as_deref(intrin->src[0]);
510 if (deref->mode != nir_var_local)
511 continue;
512
513 struct deref_node *node = get_deref_node(deref, state);
514 if (node == NULL) {
515 /* If we hit this path then we are referencing an invalid
516 * value. Most likely, we unrolled something and are
517 * reading past the end of some array. In any case, this
518 * should result in an undefined value.
519 */
520 nir_ssa_undef_instr *undef =
521 nir_ssa_undef_instr_create(state->shader,
522 intrin->num_components,
523 intrin->dest.ssa.bit_size);
524
525 nir_instr_insert_before(&intrin->instr, &undef->instr);
526 nir_instr_remove(&intrin->instr);
527
528 nir_ssa_def_rewrite_uses(&intrin->dest.ssa,
529 nir_src_for_ssa(&undef->def));
530 continue;
531 }
532
533 if (!node->lower_to_ssa)
534 continue;
535
536 nir_alu_instr *mov = nir_alu_instr_create(state->shader,
537 nir_op_imov);
538 mov->src[0].src = nir_src_for_ssa(
539 nir_phi_builder_value_get_block_def(node->pb_value, block));
540 for (unsigned i = intrin->num_components; i < 4; i++)
541 mov->src[0].swizzle[i] = 0;
542
543 assert(intrin->dest.is_ssa);
544
545 mov->dest.write_mask = (1 << intrin->num_components) - 1;
546 nir_ssa_dest_init(&mov->instr, &mov->dest.dest,
547 intrin->num_components,
548 intrin->dest.ssa.bit_size, NULL);
549
550 nir_instr_insert_before(&intrin->instr, &mov->instr);
551 nir_instr_remove(&intrin->instr);
552
553 nir_ssa_def_rewrite_uses(&intrin->dest.ssa,
554 nir_src_for_ssa(&mov->dest.dest.ssa));
555 break;
556 }
557
558 case nir_intrinsic_store_deref: {
559 nir_deref_instr *deref = nir_src_as_deref(intrin->src[0]);
560 if (deref->mode != nir_var_local)
561 continue;
562
563 struct deref_node *node = get_deref_node(deref, state);
564
565 assert(intrin->src[1].is_ssa);
566 nir_ssa_def *value = intrin->src[1].ssa;
567
568 if (node == NULL) {
569 /* Probably an out-of-bounds array store. That should be a
570 * no-op. */
571 nir_instr_remove(&intrin->instr);
572 continue;
573 }
574
575 if (!node->lower_to_ssa)
576 continue;
577
578 assert(intrin->num_components ==
579 glsl_get_vector_elements(node->type));
580
581 nir_ssa_def *new_def;
582 b.cursor = nir_before_instr(&intrin->instr);
583
584 unsigned wrmask = nir_intrinsic_write_mask(intrin);
585 if (wrmask == (1 << intrin->num_components) - 1) {
586 /* Whole variable store - just copy the source. Note that
587 * intrin->num_components and value->num_components
588 * may differ.
589 */
590 unsigned swiz[4];
591 for (unsigned i = 0; i < 4; i++)
592 swiz[i] = i < intrin->num_components ? i : 0;
593
594 new_def = nir_swizzle(&b, value, swiz,
595 intrin->num_components, false);
596 } else {
597 nir_ssa_def *old_def =
598 nir_phi_builder_value_get_block_def(node->pb_value, block);
599 /* For writemasked store_var intrinsics, we combine the newly
600 * written values with the existing contents of unwritten
601 * channels, creating a new SSA value for the whole vector.
602 */
603 nir_ssa_def *srcs[4];
604 for (unsigned i = 0; i < intrin->num_components; i++) {
605 if (wrmask & (1 << i)) {
606 srcs[i] = nir_channel(&b, value, i);
607 } else {
608 srcs[i] = nir_channel(&b, old_def, i);
609 }
610 }
611 new_def = nir_vec(&b, srcs, intrin->num_components);
612 }
613
614 assert(new_def->num_components == intrin->num_components);
615
616 nir_phi_builder_value_set_block_def(node->pb_value, block, new_def);
617 nir_instr_remove(&intrin->instr);
618 break;
619 }
620
621 default:
622 break;
623 }
624 }
625 }
626
627 return true;
628 }
629
630 /** Implements a pass to lower variable uses to SSA values
631 *
632 * This path walks the list of instructions and tries to lower as many
633 * local variable load/store operations to SSA defs and uses as it can.
634 * The process involves four passes:
635 *
636 * 1) Iterate over all of the instructions and mark where each local
637 * variable deref is used in a load, store, or copy. While we're at
638 * it, we keep track of all of the fully-qualified (no wildcards) and
639 * fully-direct references we see and store them in the
640 * direct_deref_nodes hash table.
641 *
642 * 2) Walk over the list of fully-qualified direct derefs generated in
643 * the previous pass. For each deref, we determine if it can ever be
644 * aliased, i.e. if there is an indirect reference anywhere that may
645 * refer to it. If it cannot be aliased, we mark it for lowering to an
646 * SSA value. At this point, we lower any var_copy instructions that
647 * use the given deref to load/store operations.
648 *
649 * 3) Walk over the list of derefs we plan to lower to SSA values and
650 * insert phi nodes as needed.
651 *
652 * 4) Perform "variable renaming" by replacing the load/store instructions
653 * with SSA definitions and SSA uses.
654 */
655 static bool
656 nir_lower_vars_to_ssa_impl(nir_function_impl *impl)
657 {
658 struct lower_variables_state state;
659
660 state.shader = impl->function->shader;
661 state.dead_ctx = ralloc_context(state.shader);
662 state.impl = impl;
663
664 state.deref_var_nodes = _mesa_hash_table_create(state.dead_ctx,
665 _mesa_hash_pointer,
666 _mesa_key_pointer_equal);
667 exec_list_make_empty(&state.direct_deref_nodes);
668
669 /* Build the initial deref structures and direct_deref_nodes table */
670 state.add_to_direct_deref_nodes = true;
671
672 register_variable_uses(impl, &state);
673
674 bool progress = false;
675
676 nir_metadata_require(impl, nir_metadata_block_index);
677
678 /* We're about to iterate through direct_deref_nodes. Don't modify it. */
679 state.add_to_direct_deref_nodes = false;
680
681 foreach_list_typed_safe(struct deref_node, node, direct_derefs_link,
682 &state.direct_deref_nodes) {
683 nir_deref_path *path = &node->path;
684
685 assert(path->path[0]->deref_type == nir_deref_type_var);
686
687 /* We don't build deref nodes for non-local variables */
688 assert(path->path[0]->var->data.mode == nir_var_local);
689
690 if (path_may_be_aliased(path, &state)) {
691 exec_node_remove(&node->direct_derefs_link);
692 continue;
693 }
694
695 node->lower_to_ssa = true;
696 progress = true;
697
698 foreach_deref_node_match(path, lower_copies_to_load_store, &state);
699 }
700
701 if (!progress)
702 return false;
703
704 nir_metadata_require(impl, nir_metadata_dominance);
705
706 /* We may have lowered some copy instructions to load/store
707 * instructions. The uses from the copy instructions hav already been
708 * removed but we need to rescan to ensure that the uses from the newly
709 * added load/store instructions are registered. We need this
710 * information for phi node insertion below.
711 */
712 register_variable_uses(impl, &state);
713
714 state.phi_builder = nir_phi_builder_create(state.impl);
715
716 NIR_VLA(BITSET_WORD, store_blocks, BITSET_WORDS(state.impl->num_blocks));
717 foreach_list_typed(struct deref_node, node, direct_derefs_link,
718 &state.direct_deref_nodes) {
719 if (!node->lower_to_ssa)
720 continue;
721
722 memset(store_blocks, 0,
723 BITSET_WORDS(state.impl->num_blocks) * sizeof(*store_blocks));
724
725 assert(node->path.path[0]->var->constant_initializer == NULL);
726
727 if (node->stores) {
728 set_foreach(node->stores, store_entry) {
729 nir_intrinsic_instr *store =
730 (nir_intrinsic_instr *)store_entry->key;
731 BITSET_SET(store_blocks, store->instr.block->index);
732 }
733 }
734
735 node->pb_value =
736 nir_phi_builder_add_value(state.phi_builder,
737 glsl_get_vector_elements(node->type),
738 glsl_get_bit_size(node->type),
739 store_blocks);
740 }
741
742 rename_variables(&state);
743
744 nir_phi_builder_finish(state.phi_builder);
745
746 nir_metadata_preserve(impl, nir_metadata_block_index |
747 nir_metadata_dominance);
748
749 ralloc_free(state.dead_ctx);
750
751 return progress;
752 }
753
754 bool
755 nir_lower_vars_to_ssa(nir_shader *shader)
756 {
757 bool progress = false;
758
759 nir_foreach_function(function, shader) {
760 if (function->impl)
761 progress |= nir_lower_vars_to_ssa_impl(function->impl);
762 }
763
764 return progress;
765 }