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