nir: Use nir_builder in nir_lower_io's get_io_offset().
[mesa.git] / src / glsl / nir / glsl_to_nir.cpp
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 *
26 */
27
28 #include "glsl_to_nir.h"
29 #include "ir_visitor.h"
30 #include "ir_hierarchical_visitor.h"
31 #include "ir.h"
32
33 /*
34 * pass to lower GLSL IR to NIR
35 *
36 * This will lower variable dereferences to loads/stores of corresponding
37 * variables in NIR - the variables will be converted to registers in a later
38 * pass.
39 */
40
41 namespace {
42
43 class nir_visitor : public ir_visitor
44 {
45 public:
46 nir_visitor(nir_shader *shader, gl_shader_stage stage);
47 ~nir_visitor();
48
49 virtual void visit(ir_variable *);
50 virtual void visit(ir_function *);
51 virtual void visit(ir_function_signature *);
52 virtual void visit(ir_loop *);
53 virtual void visit(ir_if *);
54 virtual void visit(ir_discard *);
55 virtual void visit(ir_loop_jump *);
56 virtual void visit(ir_return *);
57 virtual void visit(ir_call *);
58 virtual void visit(ir_assignment *);
59 virtual void visit(ir_emit_vertex *);
60 virtual void visit(ir_end_primitive *);
61 virtual void visit(ir_expression *);
62 virtual void visit(ir_swizzle *);
63 virtual void visit(ir_texture *);
64 virtual void visit(ir_constant *);
65 virtual void visit(ir_dereference_variable *);
66 virtual void visit(ir_dereference_record *);
67 virtual void visit(ir_dereference_array *);
68 virtual void visit(ir_barrier *);
69
70 void create_function(ir_function *ir);
71
72 private:
73 void create_overload(ir_function_signature *ir, nir_function *function);
74 void add_instr(nir_instr *instr, unsigned num_components);
75 nir_src evaluate_rvalue(ir_rvalue *ir);
76
77 nir_alu_instr *emit(nir_op op, unsigned dest_size, nir_src *srcs);
78 nir_alu_instr *emit(nir_op op, unsigned dest_size, nir_src src1);
79 nir_alu_instr *emit(nir_op op, unsigned dest_size, nir_src src1,
80 nir_src src2);
81 nir_alu_instr *emit(nir_op op, unsigned dest_size, nir_src src1,
82 nir_src src2, nir_src src3);
83
84 bool supports_ints;
85
86 nir_shader *shader;
87 gl_shader_stage stage;
88 nir_function_impl *impl;
89 exec_list *cf_node_list;
90 nir_instr *result; /* result of the expression tree last visited */
91
92 nir_deref_var *evaluate_deref(nir_instr *mem_ctx, ir_instruction *ir);
93
94 /* the head of the dereference chain we're creating */
95 nir_deref_var *deref_head;
96 /* the tail of the dereference chain we're creating */
97 nir_deref *deref_tail;
98
99 nir_variable *var; /* variable created by ir_variable visitor */
100
101 /* whether the IR we're operating on is per-function or global */
102 bool is_global;
103
104 /* map of ir_variable -> nir_variable */
105 struct hash_table *var_table;
106
107 /* map of ir_function_signature -> nir_function_overload */
108 struct hash_table *overload_table;
109 };
110
111 /*
112 * This visitor runs before the main visitor, calling create_function() for
113 * each function so that the main visitor can resolve forward references in
114 * calls.
115 */
116
117 class nir_function_visitor : public ir_hierarchical_visitor
118 {
119 public:
120 nir_function_visitor(nir_visitor *v) : visitor(v)
121 {
122 }
123 virtual ir_visitor_status visit_enter(ir_function *);
124
125 private:
126 nir_visitor *visitor;
127 };
128
129 }; /* end of anonymous namespace */
130
131 nir_shader *
132 glsl_to_nir(struct gl_shader *sh, const nir_shader_compiler_options *options)
133 {
134 nir_shader *shader = nir_shader_create(NULL, options);
135
136 nir_visitor v1(shader, sh->Stage);
137 nir_function_visitor v2(&v1);
138 v2.run(sh->ir);
139 visit_exec_list(sh->ir, &v1);
140
141 return shader;
142 }
143
144 nir_visitor::nir_visitor(nir_shader *shader, gl_shader_stage stage)
145 {
146 this->supports_ints = shader->options->native_integers;
147 this->shader = shader;
148 this->stage = stage;
149 this->is_global = true;
150 this->var_table = _mesa_hash_table_create(NULL, _mesa_hash_pointer,
151 _mesa_key_pointer_equal);
152 this->overload_table = _mesa_hash_table_create(NULL, _mesa_hash_pointer,
153 _mesa_key_pointer_equal);
154 }
155
156 nir_visitor::~nir_visitor()
157 {
158 _mesa_hash_table_destroy(this->var_table, NULL);
159 _mesa_hash_table_destroy(this->overload_table, NULL);
160 }
161
162 nir_deref_var *
163 nir_visitor::evaluate_deref(nir_instr *mem_ctx, ir_instruction *ir)
164 {
165 ir->accept(this);
166 ralloc_steal(mem_ctx, this->deref_head);
167 return this->deref_head;
168 }
169
170 static nir_constant *
171 constant_copy(ir_constant *ir, void *mem_ctx)
172 {
173 if (ir == NULL)
174 return NULL;
175
176 nir_constant *ret = ralloc(mem_ctx, nir_constant);
177
178 unsigned total_elems = ir->type->components();
179 unsigned i;
180 switch (ir->type->base_type) {
181 case GLSL_TYPE_UINT:
182 for (i = 0; i < total_elems; i++)
183 ret->value.u[i] = ir->value.u[i];
184 break;
185
186 case GLSL_TYPE_INT:
187 for (i = 0; i < total_elems; i++)
188 ret->value.i[i] = ir->value.i[i];
189 break;
190
191 case GLSL_TYPE_FLOAT:
192 for (i = 0; i < total_elems; i++)
193 ret->value.f[i] = ir->value.f[i];
194 break;
195
196 case GLSL_TYPE_BOOL:
197 for (i = 0; i < total_elems; i++)
198 ret->value.b[i] = ir->value.b[i];
199 break;
200
201 case GLSL_TYPE_STRUCT:
202 ret->elements = ralloc_array(mem_ctx, nir_constant *,
203 ir->type->length);
204 i = 0;
205 foreach_in_list(ir_constant, field, &ir->components) {
206 ret->elements[i] = constant_copy(field, mem_ctx);
207 i++;
208 }
209 break;
210
211 case GLSL_TYPE_ARRAY:
212 ret->elements = ralloc_array(mem_ctx, nir_constant *,
213 ir->type->length);
214
215 for (i = 0; i < ir->type->length; i++)
216 ret->elements[i] = constant_copy(ir->array_elements[i], mem_ctx);
217 break;
218
219 default:
220 unreachable("not reached");
221 }
222
223 return ret;
224 }
225
226 void
227 nir_visitor::visit(ir_variable *ir)
228 {
229 nir_variable *var = ralloc(shader, nir_variable);
230 var->type = ir->type;
231 var->name = ralloc_strdup(var, ir->name);
232
233 if (ir->is_interface_instance() && ir->get_max_ifc_array_access() != NULL) {
234 unsigned size = ir->get_interface_type()->length;
235 var->max_ifc_array_access = ralloc_array(var, unsigned, size);
236 memcpy(var->max_ifc_array_access, ir->get_max_ifc_array_access(),
237 size * sizeof(unsigned));
238 } else {
239 var->max_ifc_array_access = NULL;
240 }
241
242 var->data.read_only = ir->data.read_only;
243 var->data.centroid = ir->data.centroid;
244 var->data.sample = ir->data.sample;
245 var->data.invariant = ir->data.invariant;
246 var->data.location = ir->data.location;
247
248 switch(ir->data.mode) {
249 case ir_var_auto:
250 case ir_var_temporary:
251 if (is_global)
252 var->data.mode = nir_var_global;
253 else
254 var->data.mode = nir_var_local;
255 break;
256
257 case ir_var_function_in:
258 case ir_var_function_out:
259 case ir_var_function_inout:
260 case ir_var_const_in:
261 var->data.mode = nir_var_local;
262 break;
263
264 case ir_var_shader_in:
265 if (stage == MESA_SHADER_FRAGMENT &&
266 ir->data.location == VARYING_SLOT_FACE) {
267 /* For whatever reason, GLSL IR makes gl_FrontFacing an input */
268 var->data.location = SYSTEM_VALUE_FRONT_FACE;
269 var->data.mode = nir_var_system_value;
270 } else {
271 var->data.mode = nir_var_shader_in;
272 }
273 break;
274
275 case ir_var_shader_out:
276 var->data.mode = nir_var_shader_out;
277 break;
278
279 case ir_var_uniform:
280 var->data.mode = nir_var_uniform;
281 break;
282
283 case ir_var_shader_storage:
284 var->data.mode = nir_var_shader_storage;
285 break;
286
287 case ir_var_system_value:
288 var->data.mode = nir_var_system_value;
289 break;
290
291 default:
292 unreachable("not reached");
293 }
294
295 var->data.interpolation = ir->data.interpolation;
296 var->data.origin_upper_left = ir->data.origin_upper_left;
297 var->data.pixel_center_integer = ir->data.pixel_center_integer;
298 var->data.explicit_location = ir->data.explicit_location;
299 var->data.explicit_index = ir->data.explicit_index;
300 var->data.explicit_binding = ir->data.explicit_binding;
301 var->data.has_initializer = ir->data.has_initializer;
302 var->data.is_unmatched_generic_inout = ir->data.is_unmatched_generic_inout;
303 var->data.location_frac = ir->data.location_frac;
304 var->data.from_named_ifc_block_array = ir->data.from_named_ifc_block_array;
305 var->data.from_named_ifc_block_nonarray = ir->data.from_named_ifc_block_nonarray;
306
307 switch (ir->data.depth_layout) {
308 case ir_depth_layout_none:
309 var->data.depth_layout = nir_depth_layout_none;
310 break;
311 case ir_depth_layout_any:
312 var->data.depth_layout = nir_depth_layout_any;
313 break;
314 case ir_depth_layout_greater:
315 var->data.depth_layout = nir_depth_layout_greater;
316 break;
317 case ir_depth_layout_less:
318 var->data.depth_layout = nir_depth_layout_less;
319 break;
320 case ir_depth_layout_unchanged:
321 var->data.depth_layout = nir_depth_layout_unchanged;
322 break;
323 default:
324 unreachable("not reached");
325 }
326
327 var->data.index = ir->data.index;
328 var->data.binding = ir->data.binding;
329 /* XXX Get rid of buffer_index */
330 var->data.atomic.buffer_index = ir->data.binding;
331 var->data.atomic.offset = ir->data.atomic.offset;
332 var->data.image.read_only = ir->data.image_read_only;
333 var->data.image.write_only = ir->data.image_write_only;
334 var->data.image.coherent = ir->data.image_coherent;
335 var->data.image._volatile = ir->data.image_volatile;
336 var->data.image.restrict_flag = ir->data.image_restrict;
337 var->data.image.format = ir->data.image_format;
338 var->data.max_array_access = ir->data.max_array_access;
339
340 var->num_state_slots = ir->get_num_state_slots();
341 if (var->num_state_slots > 0) {
342 var->state_slots = ralloc_array(var, nir_state_slot,
343 var->num_state_slots);
344
345 ir_state_slot *state_slots = ir->get_state_slots();
346 for (unsigned i = 0; i < var->num_state_slots; i++) {
347 for (unsigned j = 0; j < 5; j++)
348 var->state_slots[i].tokens[j] = state_slots[i].tokens[j];
349 var->state_slots[i].swizzle = state_slots[i].swizzle;
350 }
351 } else {
352 var->state_slots = NULL;
353 }
354
355 var->constant_initializer = constant_copy(ir->constant_initializer, var);
356
357 var->interface_type = ir->get_interface_type();
358
359 switch (var->data.mode) {
360 case nir_var_local:
361 exec_list_push_tail(&impl->locals, &var->node);
362 break;
363
364 case nir_var_global:
365 exec_list_push_tail(&shader->globals, &var->node);
366 break;
367
368 case nir_var_shader_in:
369 exec_list_push_tail(&shader->inputs, &var->node);
370 break;
371
372 case nir_var_shader_out:
373 exec_list_push_tail(&shader->outputs, &var->node);
374 break;
375
376 case nir_var_uniform:
377 case nir_var_shader_storage:
378 exec_list_push_tail(&shader->uniforms, &var->node);
379 break;
380
381 case nir_var_system_value:
382 exec_list_push_tail(&shader->system_values, &var->node);
383 break;
384
385 default:
386 unreachable("not reached");
387 }
388
389 _mesa_hash_table_insert(var_table, ir, var);
390 this->var = var;
391 }
392
393 ir_visitor_status
394 nir_function_visitor::visit_enter(ir_function *ir)
395 {
396 visitor->create_function(ir);
397 return visit_continue_with_parent;
398 }
399
400
401 void
402 nir_visitor::create_function(ir_function *ir)
403 {
404 nir_function *func = nir_function_create(this->shader, ir->name);
405 foreach_in_list(ir_function_signature, sig, &ir->signatures) {
406 create_overload(sig, func);
407 }
408 }
409
410
411
412 void
413 nir_visitor::create_overload(ir_function_signature *ir, nir_function *function)
414 {
415 if (ir->is_intrinsic)
416 return;
417
418 nir_function_overload *overload = nir_function_overload_create(function);
419
420 unsigned num_params = ir->parameters.length();
421 overload->num_params = num_params;
422 overload->params = ralloc_array(shader, nir_parameter, num_params);
423
424 unsigned i = 0;
425 foreach_in_list(ir_variable, param, &ir->parameters) {
426 switch (param->data.mode) {
427 case ir_var_function_in:
428 overload->params[i].param_type = nir_parameter_in;
429 break;
430
431 case ir_var_function_out:
432 overload->params[i].param_type = nir_parameter_out;
433 break;
434
435 case ir_var_function_inout:
436 overload->params[i].param_type = nir_parameter_inout;
437 break;
438
439 default:
440 unreachable("not reached");
441 }
442
443 overload->params[i].type = param->type;
444 i++;
445 }
446
447 overload->return_type = ir->return_type;
448
449 _mesa_hash_table_insert(this->overload_table, ir, overload);
450 }
451
452 void
453 nir_visitor::visit(ir_function *ir)
454 {
455 foreach_in_list(ir_function_signature, sig, &ir->signatures)
456 sig->accept(this);
457 }
458
459 void
460 nir_visitor::visit(ir_function_signature *ir)
461 {
462 if (ir->is_intrinsic)
463 return;
464
465 struct hash_entry *entry =
466 _mesa_hash_table_search(this->overload_table, ir);
467
468 assert(entry);
469 nir_function_overload *overload = (nir_function_overload *) entry->data;
470
471 if (ir->is_defined) {
472 nir_function_impl *impl = nir_function_impl_create(overload);
473 this->impl = impl;
474
475 unsigned num_params = overload->num_params;
476 impl->num_params = num_params;
477 impl->params = ralloc_array(this->shader, nir_variable *, num_params);
478 unsigned i = 0;
479 foreach_in_list(ir_variable, param, &ir->parameters) {
480 param->accept(this);
481 impl->params[i] = this->var;
482 i++;
483 }
484
485 if (overload->return_type == glsl_type::void_type) {
486 impl->return_var = NULL;
487 } else {
488 impl->return_var = ralloc(this->shader, nir_variable);
489 impl->return_var->name = ralloc_strdup(impl->return_var,
490 "return_var");
491 impl->return_var->type = overload->return_type;
492 }
493
494 this->is_global = false;
495
496 this->cf_node_list = &impl->body;
497 visit_exec_list(&ir->body, this);
498
499 this->is_global = true;
500 } else {
501 overload->impl = NULL;
502 }
503 }
504
505 void
506 nir_visitor::visit(ir_loop *ir)
507 {
508 exec_list *old_list = this->cf_node_list;
509
510 nir_loop *loop = nir_loop_create(this->shader);
511 nir_cf_node_insert_end(old_list, &loop->cf_node);
512 this->cf_node_list = &loop->body;
513 visit_exec_list(&ir->body_instructions, this);
514
515 this->cf_node_list = old_list;
516 }
517
518 void
519 nir_visitor::visit(ir_if *ir)
520 {
521 nir_src condition = evaluate_rvalue(ir->condition);
522
523 exec_list *old_list = this->cf_node_list;
524
525 nir_if *if_stmt = nir_if_create(this->shader);
526 if_stmt->condition = condition;
527 nir_cf_node_insert_end(old_list, &if_stmt->cf_node);
528
529 this->cf_node_list = &if_stmt->then_list;
530 visit_exec_list(&ir->then_instructions, this);
531
532 this->cf_node_list = &if_stmt->else_list;
533 visit_exec_list(&ir->else_instructions, this);
534
535 this->cf_node_list = old_list;
536 }
537
538 void
539 nir_visitor::visit(ir_discard *ir)
540 {
541 /*
542 * discards aren't treated as control flow, because before we lower them
543 * they can appear anywhere in the shader and the stuff after them may still
544 * be executed (yay, crazy GLSL rules!). However, after lowering, all the
545 * discards will be immediately followed by a return.
546 */
547
548 nir_intrinsic_instr *discard;
549 if (ir->condition) {
550 discard = nir_intrinsic_instr_create(this->shader,
551 nir_intrinsic_discard_if);
552 discard->src[0] = evaluate_rvalue(ir->condition);
553 } else {
554 discard = nir_intrinsic_instr_create(this->shader, nir_intrinsic_discard);
555 }
556 nir_instr_insert_after_cf_list(this->cf_node_list, &discard->instr);
557 }
558
559 void
560 nir_visitor::visit(ir_emit_vertex *ir)
561 {
562 nir_intrinsic_instr *instr =
563 nir_intrinsic_instr_create(this->shader, nir_intrinsic_emit_vertex);
564 instr->const_index[0] = ir->stream_id();
565 nir_instr_insert_after_cf_list(this->cf_node_list, &instr->instr);
566 }
567
568 void
569 nir_visitor::visit(ir_end_primitive *ir)
570 {
571 nir_intrinsic_instr *instr =
572 nir_intrinsic_instr_create(this->shader, nir_intrinsic_end_primitive);
573 instr->const_index[0] = ir->stream_id();
574 nir_instr_insert_after_cf_list(this->cf_node_list, &instr->instr);
575 }
576
577 void
578 nir_visitor::visit(ir_loop_jump *ir)
579 {
580 nir_jump_type type;
581 switch (ir->mode) {
582 case ir_loop_jump::jump_break:
583 type = nir_jump_break;
584 break;
585 case ir_loop_jump::jump_continue:
586 type = nir_jump_continue;
587 break;
588 default:
589 unreachable("not reached");
590 }
591
592 nir_jump_instr *instr = nir_jump_instr_create(this->shader, type);
593 nir_instr_insert_after_cf_list(this->cf_node_list, &instr->instr);
594 }
595
596 void
597 nir_visitor::visit(ir_return *ir)
598 {
599 if (ir->value != NULL) {
600 nir_intrinsic_instr *copy =
601 nir_intrinsic_instr_create(this->shader, nir_intrinsic_copy_var);
602
603 copy->variables[0] = nir_deref_var_create(copy, this->impl->return_var);
604 copy->variables[1] = evaluate_deref(&copy->instr, ir->value);
605 }
606
607 nir_jump_instr *instr = nir_jump_instr_create(this->shader, nir_jump_return);
608 nir_instr_insert_after_cf_list(this->cf_node_list, &instr->instr);
609 }
610
611 void
612 nir_visitor::visit(ir_call *ir)
613 {
614 if (ir->callee->is_intrinsic) {
615 nir_intrinsic_op op;
616 if (strcmp(ir->callee_name(), "__intrinsic_atomic_read") == 0) {
617 op = nir_intrinsic_atomic_counter_read_var;
618 } else if (strcmp(ir->callee_name(), "__intrinsic_atomic_increment") == 0) {
619 op = nir_intrinsic_atomic_counter_inc_var;
620 } else if (strcmp(ir->callee_name(), "__intrinsic_atomic_predecrement") == 0) {
621 op = nir_intrinsic_atomic_counter_dec_var;
622 } else if (strcmp(ir->callee_name(), "__intrinsic_image_load") == 0) {
623 op = nir_intrinsic_image_load;
624 } else if (strcmp(ir->callee_name(), "__intrinsic_image_store") == 0) {
625 op = nir_intrinsic_image_store;
626 } else if (strcmp(ir->callee_name(), "__intrinsic_image_atomic_add") == 0) {
627 op = nir_intrinsic_image_atomic_add;
628 } else if (strcmp(ir->callee_name(), "__intrinsic_image_atomic_min") == 0) {
629 op = nir_intrinsic_image_atomic_min;
630 } else if (strcmp(ir->callee_name(), "__intrinsic_image_atomic_max") == 0) {
631 op = nir_intrinsic_image_atomic_max;
632 } else if (strcmp(ir->callee_name(), "__intrinsic_image_atomic_and") == 0) {
633 op = nir_intrinsic_image_atomic_and;
634 } else if (strcmp(ir->callee_name(), "__intrinsic_image_atomic_or") == 0) {
635 op = nir_intrinsic_image_atomic_or;
636 } else if (strcmp(ir->callee_name(), "__intrinsic_image_atomic_xor") == 0) {
637 op = nir_intrinsic_image_atomic_xor;
638 } else if (strcmp(ir->callee_name(), "__intrinsic_image_atomic_exchange") == 0) {
639 op = nir_intrinsic_image_atomic_exchange;
640 } else if (strcmp(ir->callee_name(), "__intrinsic_image_atomic_comp_swap") == 0) {
641 op = nir_intrinsic_image_atomic_comp_swap;
642 } else if (strcmp(ir->callee_name(), "__intrinsic_memory_barrier") == 0) {
643 op = nir_intrinsic_memory_barrier;
644 } else {
645 unreachable("not reached");
646 }
647
648 nir_intrinsic_instr *instr = nir_intrinsic_instr_create(shader, op);
649
650 switch (op) {
651 case nir_intrinsic_atomic_counter_read_var:
652 case nir_intrinsic_atomic_counter_inc_var:
653 case nir_intrinsic_atomic_counter_dec_var: {
654 ir_dereference *param =
655 (ir_dereference *) ir->actual_parameters.get_head();
656 instr->variables[0] = evaluate_deref(&instr->instr, param);
657 nir_ssa_dest_init(&instr->instr, &instr->dest, 1, NULL);
658 break;
659 }
660 case nir_intrinsic_image_load:
661 case nir_intrinsic_image_store:
662 case nir_intrinsic_image_atomic_add:
663 case nir_intrinsic_image_atomic_min:
664 case nir_intrinsic_image_atomic_max:
665 case nir_intrinsic_image_atomic_and:
666 case nir_intrinsic_image_atomic_or:
667 case nir_intrinsic_image_atomic_xor:
668 case nir_intrinsic_image_atomic_exchange:
669 case nir_intrinsic_image_atomic_comp_swap: {
670 nir_ssa_undef_instr *instr_undef =
671 nir_ssa_undef_instr_create(shader, 1);
672 nir_instr_insert_after_cf_list(this->cf_node_list,
673 &instr_undef->instr);
674
675 /* Set the image variable dereference. */
676 exec_node *param = ir->actual_parameters.get_head();
677 ir_dereference *image = (ir_dereference *)param;
678 const glsl_type *type =
679 image->variable_referenced()->type->without_array();
680
681 instr->variables[0] = evaluate_deref(&instr->instr, image);
682 param = param->get_next();
683
684 /* Set the address argument, extending the coordinate vector to four
685 * components.
686 */
687 const nir_src src_addr = evaluate_rvalue((ir_dereference *)param);
688 nir_alu_instr *instr_addr = nir_alu_instr_create(shader, nir_op_vec4);
689 nir_ssa_dest_init(&instr_addr->instr, &instr_addr->dest.dest, 4, NULL);
690
691 for (int i = 0; i < 4; i++) {
692 if (i < type->coordinate_components()) {
693 instr_addr->src[i].src = src_addr;
694 instr_addr->src[i].swizzle[0] = i;
695 } else {
696 instr_addr->src[i].src = nir_src_for_ssa(&instr_undef->def);
697 }
698 }
699
700 nir_instr_insert_after_cf_list(cf_node_list, &instr_addr->instr);
701 instr->src[0] = nir_src_for_ssa(&instr_addr->dest.dest.ssa);
702 param = param->get_next();
703
704 /* Set the sample argument, which is undefined for single-sample
705 * images.
706 */
707 if (type->sampler_dimensionality == GLSL_SAMPLER_DIM_MS) {
708 instr->src[1] = evaluate_rvalue((ir_dereference *)param);
709 param = param->get_next();
710 } else {
711 instr->src[1] = nir_src_for_ssa(&instr_undef->def);
712 }
713
714 /* Set the intrinsic parameters. */
715 if (!param->is_tail_sentinel()) {
716 instr->src[2] = evaluate_rvalue((ir_dereference *)param);
717 param = param->get_next();
718 }
719
720 if (!param->is_tail_sentinel()) {
721 instr->src[3] = evaluate_rvalue((ir_dereference *)param);
722 param = param->get_next();
723 }
724
725 /* Set the intrinsic destination. */
726 if (ir->return_deref)
727 nir_ssa_dest_init(&instr->instr, &instr->dest,
728 ir->return_deref->type->vector_elements, NULL);
729 break;
730 }
731 case nir_intrinsic_memory_barrier:
732 break;
733 default:
734 unreachable("not reached");
735 }
736
737 nir_instr_insert_after_cf_list(this->cf_node_list, &instr->instr);
738
739 if (ir->return_deref) {
740 nir_intrinsic_instr *store_instr =
741 nir_intrinsic_instr_create(shader, nir_intrinsic_store_var);
742 store_instr->num_components = ir->return_deref->type->vector_elements;
743
744 store_instr->variables[0] =
745 evaluate_deref(&store_instr->instr, ir->return_deref);
746 store_instr->src[0] = nir_src_for_ssa(&instr->dest.ssa);
747
748 nir_instr_insert_after_cf_list(this->cf_node_list,
749 &store_instr->instr);
750 }
751
752 return;
753 }
754
755 struct hash_entry *entry =
756 _mesa_hash_table_search(this->overload_table, ir->callee);
757 assert(entry);
758 nir_function_overload *callee = (nir_function_overload *) entry->data;
759
760 nir_call_instr *instr = nir_call_instr_create(this->shader, callee);
761
762 unsigned i = 0;
763 foreach_in_list(ir_dereference, param, &ir->actual_parameters) {
764 instr->params[i] = evaluate_deref(&instr->instr, param);
765 i++;
766 }
767
768 instr->return_deref = evaluate_deref(&instr->instr, ir->return_deref);
769 nir_instr_insert_after_cf_list(this->cf_node_list, &instr->instr);
770 }
771
772 void
773 nir_visitor::visit(ir_assignment *ir)
774 {
775 unsigned num_components = ir->lhs->type->vector_elements;
776
777 if ((ir->rhs->as_dereference() || ir->rhs->as_constant()) &&
778 (ir->write_mask == (1 << num_components) - 1 || ir->write_mask == 0)) {
779 /* We're doing a plain-as-can-be copy, so emit a copy_var */
780 nir_intrinsic_instr *copy =
781 nir_intrinsic_instr_create(this->shader, nir_intrinsic_copy_var);
782
783 copy->variables[0] = evaluate_deref(&copy->instr, ir->lhs);
784 copy->variables[1] = evaluate_deref(&copy->instr, ir->rhs);
785
786 if (ir->condition) {
787 nir_if *if_stmt = nir_if_create(this->shader);
788 if_stmt->condition = evaluate_rvalue(ir->condition);
789 nir_cf_node_insert_end(this->cf_node_list, &if_stmt->cf_node);
790 nir_instr_insert_after_cf_list(&if_stmt->then_list, &copy->instr);
791 } else {
792 nir_instr_insert_after_cf_list(this->cf_node_list, &copy->instr);
793 }
794 return;
795 }
796
797 assert(ir->rhs->type->is_scalar() || ir->rhs->type->is_vector());
798
799 ir->lhs->accept(this);
800 nir_deref_var *lhs_deref = this->deref_head;
801 nir_src src = evaluate_rvalue(ir->rhs);
802
803 if (ir->write_mask != (1 << num_components) - 1 && ir->write_mask != 0) {
804 /*
805 * We have no good way to update only part of a variable, so just load
806 * the LHS and do a vec operation to combine the old with the new, and
807 * then store it
808 * back into the LHS. Copy propagation should get rid of the mess.
809 */
810
811 nir_intrinsic_instr *load =
812 nir_intrinsic_instr_create(this->shader, nir_intrinsic_load_var);
813 load->num_components = ir->lhs->type->vector_elements;
814 nir_ssa_dest_init(&load->instr, &load->dest, num_components, NULL);
815 load->variables[0] = lhs_deref;
816 ralloc_steal(load, load->variables[0]);
817 nir_instr_insert_after_cf_list(this->cf_node_list, &load->instr);
818
819 nir_op vec_op;
820 switch (ir->lhs->type->vector_elements) {
821 case 1: vec_op = nir_op_imov; break;
822 case 2: vec_op = nir_op_vec2; break;
823 case 3: vec_op = nir_op_vec3; break;
824 case 4: vec_op = nir_op_vec4; break;
825 default: unreachable("Invalid number of components"); break;
826 }
827 nir_alu_instr *vec = nir_alu_instr_create(this->shader, vec_op);
828 nir_ssa_dest_init(&vec->instr, &vec->dest.dest, num_components, NULL);
829 vec->dest.write_mask = (1 << num_components) - 1;
830
831 unsigned component = 0;
832 for (unsigned i = 0; i < ir->lhs->type->vector_elements; i++) {
833 if (ir->write_mask & (1 << i)) {
834 vec->src[i].src = src;
835
836 /* GLSL IR will give us the input to the write-masked assignment
837 * in a single packed vector. So, for example, if the
838 * writemask is xzw, then we have to swizzle x -> x, y -> z,
839 * and z -> w and get the y component from the load.
840 */
841 vec->src[i].swizzle[0] = component++;
842 } else {
843 vec->src[i].src.is_ssa = true;
844 vec->src[i].src.ssa = &load->dest.ssa;
845 vec->src[i].swizzle[0] = i;
846 }
847 }
848
849 nir_instr_insert_after_cf_list(this->cf_node_list, &vec->instr);
850
851 src.is_ssa = true;
852 src.ssa = &vec->dest.dest.ssa;
853 }
854
855 nir_intrinsic_instr *store =
856 nir_intrinsic_instr_create(this->shader, nir_intrinsic_store_var);
857 store->num_components = ir->lhs->type->vector_elements;
858 nir_deref *store_deref = nir_copy_deref(store, &lhs_deref->deref);
859 store->variables[0] = nir_deref_as_var(store_deref);
860 store->src[0] = src;
861
862 if (ir->condition) {
863 nir_if *if_stmt = nir_if_create(this->shader);
864 if_stmt->condition = evaluate_rvalue(ir->condition);
865 nir_cf_node_insert_end(this->cf_node_list, &if_stmt->cf_node);
866 nir_instr_insert_after_cf_list(&if_stmt->then_list, &store->instr);
867 } else {
868 nir_instr_insert_after_cf_list(this->cf_node_list, &store->instr);
869 }
870 }
871
872 /*
873 * Given an instruction, returns a pointer to its destination or NULL if there
874 * is no destination.
875 *
876 * Note that this only handles instructions we generate at this level.
877 */
878 static nir_dest *
879 get_instr_dest(nir_instr *instr)
880 {
881 nir_alu_instr *alu_instr;
882 nir_intrinsic_instr *intrinsic_instr;
883 nir_tex_instr *tex_instr;
884
885 switch (instr->type) {
886 case nir_instr_type_alu:
887 alu_instr = nir_instr_as_alu(instr);
888 return &alu_instr->dest.dest;
889
890 case nir_instr_type_intrinsic:
891 intrinsic_instr = nir_instr_as_intrinsic(instr);
892 if (nir_intrinsic_infos[intrinsic_instr->intrinsic].has_dest)
893 return &intrinsic_instr->dest;
894 else
895 return NULL;
896
897 case nir_instr_type_tex:
898 tex_instr = nir_instr_as_tex(instr);
899 return &tex_instr->dest;
900
901 default:
902 unreachable("not reached");
903 }
904
905 return NULL;
906 }
907
908 void
909 nir_visitor::add_instr(nir_instr *instr, unsigned num_components)
910 {
911 nir_dest *dest = get_instr_dest(instr);
912
913 nir_ssa_dest_init(instr, dest, num_components, NULL);
914
915 nir_instr_insert_after_cf_list(this->cf_node_list, instr);
916 this->result = instr;
917 }
918
919 nir_src
920 nir_visitor::evaluate_rvalue(ir_rvalue* ir)
921 {
922 ir->accept(this);
923 if (ir->as_dereference() || ir->as_constant()) {
924 /*
925 * A dereference is being used on the right hand side, which means we
926 * must emit a variable load.
927 */
928
929 nir_intrinsic_instr *load_instr =
930 nir_intrinsic_instr_create(this->shader, nir_intrinsic_load_var);
931 load_instr->num_components = ir->type->vector_elements;
932 load_instr->variables[0] = this->deref_head;
933 ralloc_steal(load_instr, load_instr->variables[0]);
934 add_instr(&load_instr->instr, ir->type->vector_elements);
935 }
936
937 nir_dest *dest = get_instr_dest(this->result);
938 assert(dest->is_ssa);
939
940 return nir_src_for_ssa(&dest->ssa);
941 }
942
943 nir_alu_instr *
944 nir_visitor::emit(nir_op op, unsigned dest_size, nir_src *srcs)
945 {
946 nir_alu_instr *instr = nir_alu_instr_create(this->shader, op);
947 for (unsigned i = 0; i < nir_op_infos[op].num_inputs; i++)
948 instr->src[i].src = srcs[i];
949 instr->dest.write_mask = (1 << dest_size) - 1;
950 add_instr(&instr->instr, dest_size);
951 return instr;
952 }
953
954 nir_alu_instr *
955 nir_visitor::emit(nir_op op, unsigned dest_size, nir_src src1)
956 {
957 assert(nir_op_infos[op].num_inputs == 1);
958 return emit(op, dest_size, &src1);
959 }
960
961 nir_alu_instr *
962 nir_visitor::emit(nir_op op, unsigned dest_size, nir_src src1,
963 nir_src src2)
964 {
965 assert(nir_op_infos[op].num_inputs == 2);
966 nir_src srcs[] = { src1, src2 };
967 return emit(op, dest_size, srcs);
968 }
969
970 nir_alu_instr *
971 nir_visitor::emit(nir_op op, unsigned dest_size, nir_src src1,
972 nir_src src2, nir_src src3)
973 {
974 assert(nir_op_infos[op].num_inputs == 3);
975 nir_src srcs[] = { src1, src2, src3 };
976 return emit(op, dest_size, srcs);
977 }
978
979 void
980 nir_visitor::visit(ir_expression *ir)
981 {
982 /* Some special cases */
983 switch (ir->operation) {
984 case ir_binop_ubo_load: {
985 ir_constant *const_index = ir->operands[1]->as_constant();
986
987 nir_intrinsic_op op;
988 if (const_index) {
989 op = nir_intrinsic_load_ubo;
990 } else {
991 op = nir_intrinsic_load_ubo_indirect;
992 }
993 nir_intrinsic_instr *load = nir_intrinsic_instr_create(this->shader, op);
994 load->num_components = ir->type->vector_elements;
995 load->const_index[0] = const_index ? const_index->value.u[0] : 0; /* base offset */
996 load->const_index[1] = 1; /* number of vec4's */
997 load->src[0] = evaluate_rvalue(ir->operands[0]);
998 if (!const_index)
999 load->src[1] = evaluate_rvalue(ir->operands[1]);
1000 add_instr(&load->instr, ir->type->vector_elements);
1001
1002 /*
1003 * In UBO's, a true boolean value is any non-zero value, but we consider
1004 * a true boolean to be ~0. Fix this up with a != 0 comparison.
1005 */
1006
1007 if (ir->type->base_type == GLSL_TYPE_BOOL) {
1008 nir_load_const_instr *const_zero = nir_load_const_instr_create(shader, 1);
1009 const_zero->value.u[0] = 0;
1010 nir_instr_insert_after_cf_list(this->cf_node_list, &const_zero->instr);
1011
1012 nir_alu_instr *compare = nir_alu_instr_create(shader, nir_op_ine);
1013 compare->src[0].src.is_ssa = true;
1014 compare->src[0].src.ssa = &load->dest.ssa;
1015 compare->src[1].src.is_ssa = true;
1016 compare->src[1].src.ssa = &const_zero->def;
1017 for (unsigned i = 0; i < ir->type->vector_elements; i++)
1018 compare->src[1].swizzle[i] = 0;
1019 compare->dest.write_mask = (1 << ir->type->vector_elements) - 1;
1020
1021 add_instr(&compare->instr, ir->type->vector_elements);
1022 }
1023
1024 return;
1025 }
1026
1027 case ir_unop_interpolate_at_centroid:
1028 case ir_binop_interpolate_at_offset:
1029 case ir_binop_interpolate_at_sample: {
1030 ir_dereference *deref = ir->operands[0]->as_dereference();
1031 ir_swizzle *swizzle = NULL;
1032 if (!deref) {
1033 /* the api does not allow a swizzle here, but the varying packing code
1034 * may have pushed one into here.
1035 */
1036 swizzle = ir->operands[0]->as_swizzle();
1037 assert(swizzle);
1038 deref = swizzle->val->as_dereference();
1039 assert(deref);
1040 }
1041
1042 deref->accept(this);
1043
1044 nir_intrinsic_op op;
1045 if (this->deref_head->var->data.mode == nir_var_shader_in) {
1046 switch (ir->operation) {
1047 case ir_unop_interpolate_at_centroid:
1048 op = nir_intrinsic_interp_var_at_centroid;
1049 break;
1050 case ir_binop_interpolate_at_offset:
1051 op = nir_intrinsic_interp_var_at_offset;
1052 break;
1053 case ir_binop_interpolate_at_sample:
1054 op = nir_intrinsic_interp_var_at_sample;
1055 break;
1056 default:
1057 unreachable("Invalid interpolation intrinsic");
1058 }
1059 } else {
1060 /* This case can happen if the vertex shader does not write the
1061 * given varying. In this case, the linker will lower it to a
1062 * global variable. Since interpolating a variable makes no
1063 * sense, we'll just turn it into a load which will probably
1064 * eventually end up as an SSA definition.
1065 */
1066 assert(this->deref_head->var->data.mode == nir_var_global);
1067 op = nir_intrinsic_load_var;
1068 }
1069
1070 nir_intrinsic_instr *intrin = nir_intrinsic_instr_create(shader, op);
1071 intrin->num_components = deref->type->vector_elements;
1072 intrin->variables[0] = this->deref_head;
1073 ralloc_steal(intrin, intrin->variables[0]);
1074
1075 if (intrin->intrinsic == nir_intrinsic_interp_var_at_offset ||
1076 intrin->intrinsic == nir_intrinsic_interp_var_at_sample)
1077 intrin->src[0] = evaluate_rvalue(ir->operands[1]);
1078
1079 add_instr(&intrin->instr, deref->type->vector_elements);
1080
1081 if (swizzle) {
1082 nir_alu_instr *mov = nir_alu_instr_create(shader, nir_op_imov);
1083 mov->dest.write_mask = (1 << swizzle->type->vector_elements) - 1;
1084 mov->src[0].src.is_ssa = true;
1085 mov->src[0].src.ssa = &intrin->dest.ssa;
1086
1087 mov->src[0].swizzle[0] = swizzle->mask.x;
1088 mov->src[0].swizzle[1] = swizzle->mask.y;
1089 mov->src[0].swizzle[2] = swizzle->mask.z;
1090 mov->src[0].swizzle[3] = swizzle->mask.w;
1091 for (unsigned i = deref->type->vector_elements; i < 4; i++)
1092 mov->src[0].swizzle[i] = 0;
1093
1094 add_instr(&mov->instr, swizzle->type->vector_elements);
1095 }
1096
1097 return;
1098 }
1099
1100 default:
1101 break;
1102 }
1103
1104 nir_src srcs[4];
1105 for (unsigned i = 0; i < ir->get_num_operands(); i++)
1106 srcs[i] = evaluate_rvalue(ir->operands[i]);
1107
1108 glsl_base_type types[4];
1109 for (unsigned i = 0; i < ir->get_num_operands(); i++)
1110 if (supports_ints)
1111 types[i] = ir->operands[i]->type->base_type;
1112 else
1113 types[i] = GLSL_TYPE_FLOAT;
1114
1115 glsl_base_type out_type;
1116 if (supports_ints)
1117 out_type = ir->type->base_type;
1118 else
1119 out_type = GLSL_TYPE_FLOAT;
1120
1121 unsigned dest_size = ir->type->vector_elements;
1122
1123 nir_alu_instr *instr;
1124 nir_op op;
1125
1126 switch (ir->operation) {
1127 case ir_unop_bit_not: emit(nir_op_inot, dest_size, srcs); break;
1128 case ir_unop_logic_not:
1129 emit(supports_ints ? nir_op_inot : nir_op_fnot, dest_size, srcs);
1130 break;
1131 case ir_unop_neg:
1132 instr = emit(types[0] == GLSL_TYPE_FLOAT ? nir_op_fneg : nir_op_ineg,
1133 dest_size, srcs);
1134 break;
1135 case ir_unop_abs:
1136 instr = emit(types[0] == GLSL_TYPE_FLOAT ? nir_op_fabs : nir_op_iabs,
1137 dest_size, srcs);
1138 break;
1139 case ir_unop_saturate:
1140 assert(types[0] == GLSL_TYPE_FLOAT);
1141 instr = emit(nir_op_fsat, dest_size, srcs);
1142 break;
1143 case ir_unop_sign:
1144 emit(types[0] == GLSL_TYPE_FLOAT ? nir_op_fsign : nir_op_isign,
1145 dest_size, srcs);
1146 break;
1147 case ir_unop_rcp: emit(nir_op_frcp, dest_size, srcs); break;
1148 case ir_unop_rsq: emit(nir_op_frsq, dest_size, srcs); break;
1149 case ir_unop_sqrt: emit(nir_op_fsqrt, dest_size, srcs); break;
1150 case ir_unop_exp: unreachable("ir_unop_exp should have been lowered");
1151 case ir_unop_log: unreachable("ir_unop_log should have been lowered");
1152 case ir_unop_exp2: emit(nir_op_fexp2, dest_size, srcs); break;
1153 case ir_unop_log2: emit(nir_op_flog2, dest_size, srcs); break;
1154 case ir_unop_i2f:
1155 emit(supports_ints ? nir_op_i2f : nir_op_fmov, dest_size, srcs);
1156 break;
1157 case ir_unop_u2f:
1158 emit(supports_ints ? nir_op_u2f : nir_op_fmov, dest_size, srcs);
1159 break;
1160 case ir_unop_b2f:
1161 emit(supports_ints ? nir_op_b2f : nir_op_fmov, dest_size, srcs);
1162 break;
1163 case ir_unop_f2i: emit(nir_op_f2i, dest_size, srcs); break;
1164 case ir_unop_f2u: emit(nir_op_f2u, dest_size, srcs); break;
1165 case ir_unop_f2b: emit(nir_op_f2b, dest_size, srcs); break;
1166 case ir_unop_i2b: emit(nir_op_i2b, dest_size, srcs); break;
1167 case ir_unop_b2i: emit(nir_op_b2i, dest_size, srcs); break;
1168 case ir_unop_i2u:
1169 case ir_unop_u2i:
1170 case ir_unop_bitcast_i2f:
1171 case ir_unop_bitcast_f2i:
1172 case ir_unop_bitcast_u2f:
1173 case ir_unop_bitcast_f2u:
1174 case ir_unop_subroutine_to_int:
1175 /* no-op */
1176 emit(nir_op_imov, dest_size, srcs);
1177 break;
1178 case ir_unop_any:
1179 switch (ir->operands[0]->type->vector_elements) {
1180 case 2:
1181 emit(supports_ints ? nir_op_bany2 : nir_op_fany2,
1182 dest_size, srcs);
1183 break;
1184 case 3:
1185 emit(supports_ints ? nir_op_bany3 : nir_op_fany3,
1186 dest_size, srcs);
1187 break;
1188 case 4:
1189 emit(supports_ints ? nir_op_bany4 : nir_op_fany4,
1190 dest_size, srcs);
1191 break;
1192 default:
1193 unreachable("not reached");
1194 }
1195 break;
1196 case ir_unop_trunc: emit(nir_op_ftrunc, dest_size, srcs); break;
1197 case ir_unop_ceil: emit(nir_op_fceil, dest_size, srcs); break;
1198 case ir_unop_floor: emit(nir_op_ffloor, dest_size, srcs); break;
1199 case ir_unop_fract: emit(nir_op_ffract, dest_size, srcs); break;
1200 case ir_unop_round_even: emit(nir_op_fround_even, dest_size, srcs); break;
1201 case ir_unop_sin: emit(nir_op_fsin, dest_size, srcs); break;
1202 case ir_unop_cos: emit(nir_op_fcos, dest_size, srcs); break;
1203 case ir_unop_dFdx: emit(nir_op_fddx, dest_size, srcs); break;
1204 case ir_unop_dFdy: emit(nir_op_fddy, dest_size, srcs); break;
1205 case ir_unop_dFdx_fine: emit(nir_op_fddx_fine, dest_size, srcs); break;
1206 case ir_unop_dFdy_fine: emit(nir_op_fddy_fine, dest_size, srcs); break;
1207 case ir_unop_dFdx_coarse: emit(nir_op_fddx_coarse, dest_size, srcs); break;
1208 case ir_unop_dFdy_coarse: emit(nir_op_fddy_coarse, dest_size, srcs); break;
1209 case ir_unop_pack_snorm_2x16:
1210 emit(nir_op_pack_snorm_2x16, dest_size, srcs);
1211 break;
1212 case ir_unop_pack_snorm_4x8:
1213 emit(nir_op_pack_snorm_4x8, dest_size, srcs);
1214 break;
1215 case ir_unop_pack_unorm_2x16:
1216 emit(nir_op_pack_unorm_2x16, dest_size, srcs);
1217 break;
1218 case ir_unop_pack_unorm_4x8:
1219 emit(nir_op_pack_unorm_4x8, dest_size, srcs);
1220 break;
1221 case ir_unop_pack_half_2x16:
1222 emit(nir_op_pack_half_2x16, dest_size, srcs);
1223 break;
1224 case ir_unop_unpack_snorm_2x16:
1225 emit(nir_op_unpack_snorm_2x16, dest_size, srcs);
1226 break;
1227 case ir_unop_unpack_snorm_4x8:
1228 emit(nir_op_unpack_snorm_4x8, dest_size, srcs);
1229 break;
1230 case ir_unop_unpack_unorm_2x16:
1231 emit(nir_op_unpack_unorm_2x16, dest_size, srcs);
1232 break;
1233 case ir_unop_unpack_unorm_4x8:
1234 emit(nir_op_unpack_unorm_4x8, dest_size, srcs);
1235 break;
1236 case ir_unop_unpack_half_2x16:
1237 emit(nir_op_unpack_half_2x16, dest_size, srcs);
1238 break;
1239 case ir_unop_unpack_half_2x16_split_x:
1240 emit(nir_op_unpack_half_2x16_split_x, dest_size, srcs);
1241 break;
1242 case ir_unop_unpack_half_2x16_split_y:
1243 emit(nir_op_unpack_half_2x16_split_y, dest_size, srcs);
1244 break;
1245 case ir_unop_bitfield_reverse:
1246 emit(nir_op_bitfield_reverse, dest_size, srcs);
1247 break;
1248 case ir_unop_bit_count:
1249 emit(nir_op_bit_count, dest_size, srcs);
1250 break;
1251 case ir_unop_find_msb:
1252 switch (types[0]) {
1253 case GLSL_TYPE_UINT:
1254 emit(nir_op_ufind_msb, dest_size, srcs);
1255 break;
1256 case GLSL_TYPE_INT:
1257 emit(nir_op_ifind_msb, dest_size, srcs);
1258 break;
1259 default:
1260 unreachable("Invalid type for findMSB()");
1261 }
1262 break;
1263 case ir_unop_find_lsb:
1264 emit(nir_op_find_lsb, dest_size, srcs);
1265 break;
1266
1267 case ir_unop_noise:
1268 switch (ir->type->vector_elements) {
1269 case 1:
1270 switch (ir->operands[0]->type->vector_elements) {
1271 case 1: emit(nir_op_fnoise1_1, dest_size, srcs); break;
1272 case 2: emit(nir_op_fnoise1_2, dest_size, srcs); break;
1273 case 3: emit(nir_op_fnoise1_3, dest_size, srcs); break;
1274 case 4: emit(nir_op_fnoise1_4, dest_size, srcs); break;
1275 default: unreachable("not reached");
1276 }
1277 break;
1278 case 2:
1279 switch (ir->operands[0]->type->vector_elements) {
1280 case 1: emit(nir_op_fnoise2_1, dest_size, srcs); break;
1281 case 2: emit(nir_op_fnoise2_2, dest_size, srcs); break;
1282 case 3: emit(nir_op_fnoise2_3, dest_size, srcs); break;
1283 case 4: emit(nir_op_fnoise2_4, dest_size, srcs); break;
1284 default: unreachable("not reached");
1285 }
1286 break;
1287 case 3:
1288 switch (ir->operands[0]->type->vector_elements) {
1289 case 1: emit(nir_op_fnoise3_1, dest_size, srcs); break;
1290 case 2: emit(nir_op_fnoise3_2, dest_size, srcs); break;
1291 case 3: emit(nir_op_fnoise3_3, dest_size, srcs); break;
1292 case 4: emit(nir_op_fnoise3_4, dest_size, srcs); break;
1293 default: unreachable("not reached");
1294 }
1295 break;
1296 case 4:
1297 switch (ir->operands[0]->type->vector_elements) {
1298 case 1: emit(nir_op_fnoise4_1, dest_size, srcs); break;
1299 case 2: emit(nir_op_fnoise4_2, dest_size, srcs); break;
1300 case 3: emit(nir_op_fnoise4_3, dest_size, srcs); break;
1301 case 4: emit(nir_op_fnoise4_4, dest_size, srcs); break;
1302 default: unreachable("not reached");
1303 }
1304 break;
1305 default:
1306 unreachable("not reached");
1307 }
1308 break;
1309 case ir_binop_add:
1310 case ir_binop_sub:
1311 case ir_binop_mul:
1312 case ir_binop_div:
1313 case ir_binop_mod:
1314 case ir_binop_min:
1315 case ir_binop_max:
1316 case ir_binop_pow:
1317 case ir_binop_bit_and:
1318 case ir_binop_bit_or:
1319 case ir_binop_bit_xor:
1320 case ir_binop_logic_and:
1321 case ir_binop_logic_or:
1322 case ir_binop_logic_xor:
1323 case ir_binop_lshift:
1324 case ir_binop_rshift:
1325 switch (ir->operation) {
1326 case ir_binop_add:
1327 if (out_type == GLSL_TYPE_FLOAT)
1328 op = nir_op_fadd;
1329 else
1330 op = nir_op_iadd;
1331 break;
1332 case ir_binop_sub:
1333 if (out_type == GLSL_TYPE_FLOAT)
1334 op = nir_op_fsub;
1335 else
1336 op = nir_op_isub;
1337 break;
1338 case ir_binop_mul:
1339 if (out_type == GLSL_TYPE_FLOAT)
1340 op = nir_op_fmul;
1341 else
1342 op = nir_op_imul;
1343 break;
1344 case ir_binop_div:
1345 if (out_type == GLSL_TYPE_FLOAT)
1346 op = nir_op_fdiv;
1347 else if (out_type == GLSL_TYPE_INT)
1348 op = nir_op_idiv;
1349 else
1350 op = nir_op_udiv;
1351 break;
1352 case ir_binop_mod:
1353 if (out_type == GLSL_TYPE_FLOAT)
1354 op = nir_op_fmod;
1355 else
1356 op = nir_op_umod;
1357 break;
1358 case ir_binop_min:
1359 if (out_type == GLSL_TYPE_FLOAT)
1360 op = nir_op_fmin;
1361 else if (out_type == GLSL_TYPE_INT)
1362 op = nir_op_imin;
1363 else
1364 op = nir_op_umin;
1365 break;
1366 case ir_binop_max:
1367 if (out_type == GLSL_TYPE_FLOAT)
1368 op = nir_op_fmax;
1369 else if (out_type == GLSL_TYPE_INT)
1370 op = nir_op_imax;
1371 else
1372 op = nir_op_umax;
1373 break;
1374 case ir_binop_bit_and:
1375 op = nir_op_iand;
1376 break;
1377 case ir_binop_bit_or:
1378 op = nir_op_ior;
1379 break;
1380 case ir_binop_bit_xor:
1381 op = nir_op_ixor;
1382 break;
1383 case ir_binop_logic_and:
1384 if (supports_ints)
1385 op = nir_op_iand;
1386 else
1387 op = nir_op_fand;
1388 break;
1389 case ir_binop_logic_or:
1390 if (supports_ints)
1391 op = nir_op_ior;
1392 else
1393 op = nir_op_for;
1394 break;
1395 case ir_binop_logic_xor:
1396 if (supports_ints)
1397 op = nir_op_ixor;
1398 else
1399 op = nir_op_fxor;
1400 break;
1401 case ir_binop_lshift:
1402 op = nir_op_ishl;
1403 break;
1404 case ir_binop_rshift:
1405 if (out_type == GLSL_TYPE_INT)
1406 op = nir_op_ishr;
1407 else
1408 op = nir_op_ushr;
1409 break;
1410 case ir_binop_pow:
1411 op = nir_op_fpow;
1412 break;
1413
1414 default:
1415 unreachable("not reached");
1416 }
1417
1418 instr = emit(op, dest_size, srcs);
1419
1420 if (ir->operands[0]->type->vector_elements != 1 &&
1421 ir->operands[1]->type->vector_elements == 1) {
1422 for (unsigned i = 0; i < ir->operands[0]->type->vector_elements;
1423 i++) {
1424 instr->src[1].swizzle[i] = 0;
1425 }
1426 }
1427
1428 if (ir->operands[1]->type->vector_elements != 1 &&
1429 ir->operands[0]->type->vector_elements == 1) {
1430 for (unsigned i = 0; i < ir->operands[1]->type->vector_elements;
1431 i++) {
1432 instr->src[0].swizzle[i] = 0;
1433 }
1434 }
1435
1436 break;
1437 case ir_binop_imul_high:
1438 emit(out_type == GLSL_TYPE_UINT ? nir_op_umul_high : nir_op_imul_high,
1439 dest_size, srcs);
1440 break;
1441 case ir_binop_carry: emit(nir_op_uadd_carry, dest_size, srcs); break;
1442 case ir_binop_borrow: emit(nir_op_usub_borrow, dest_size, srcs); break;
1443 case ir_binop_less:
1444 if (supports_ints) {
1445 if (types[0] == GLSL_TYPE_FLOAT)
1446 emit(nir_op_flt, dest_size, srcs);
1447 else if (types[0] == GLSL_TYPE_INT)
1448 emit(nir_op_ilt, dest_size, srcs);
1449 else
1450 emit(nir_op_ult, dest_size, srcs);
1451 } else {
1452 emit(nir_op_slt, dest_size, srcs);
1453 }
1454 break;
1455 case ir_binop_greater:
1456 if (supports_ints) {
1457 if (types[0] == GLSL_TYPE_FLOAT)
1458 emit(nir_op_flt, dest_size, srcs[1], srcs[0]);
1459 else if (types[0] == GLSL_TYPE_INT)
1460 emit(nir_op_ilt, dest_size, srcs[1], srcs[0]);
1461 else
1462 emit(nir_op_ult, dest_size, srcs[1], srcs[0]);
1463 } else {
1464 emit(nir_op_slt, dest_size, srcs[1], srcs[0]);
1465 }
1466 break;
1467 case ir_binop_lequal:
1468 if (supports_ints) {
1469 if (types[0] == GLSL_TYPE_FLOAT)
1470 emit(nir_op_fge, dest_size, srcs[1], srcs[0]);
1471 else if (types[0] == GLSL_TYPE_INT)
1472 emit(nir_op_ige, dest_size, srcs[1], srcs[0]);
1473 else
1474 emit(nir_op_uge, dest_size, srcs[1], srcs[0]);
1475 } else {
1476 emit(nir_op_slt, dest_size, srcs[1], srcs[0]);
1477 }
1478 break;
1479 case ir_binop_gequal:
1480 if (supports_ints) {
1481 if (types[0] == GLSL_TYPE_FLOAT)
1482 emit(nir_op_fge, dest_size, srcs);
1483 else if (types[0] == GLSL_TYPE_INT)
1484 emit(nir_op_ige, dest_size, srcs);
1485 else
1486 emit(nir_op_uge, dest_size, srcs);
1487 } else {
1488 emit(nir_op_slt, dest_size, srcs);
1489 }
1490 break;
1491 case ir_binop_equal:
1492 if (supports_ints) {
1493 if (types[0] == GLSL_TYPE_FLOAT)
1494 emit(nir_op_feq, dest_size, srcs);
1495 else
1496 emit(nir_op_ieq, dest_size, srcs);
1497 } else {
1498 emit(nir_op_seq, dest_size, srcs);
1499 }
1500 break;
1501 case ir_binop_nequal:
1502 if (supports_ints) {
1503 if (types[0] == GLSL_TYPE_FLOAT)
1504 emit(nir_op_fne, dest_size, srcs);
1505 else
1506 emit(nir_op_ine, dest_size, srcs);
1507 } else {
1508 emit(nir_op_sne, dest_size, srcs);
1509 }
1510 break;
1511 case ir_binop_all_equal:
1512 if (supports_ints) {
1513 if (types[0] == GLSL_TYPE_FLOAT) {
1514 switch (ir->operands[0]->type->vector_elements) {
1515 case 1: emit(nir_op_feq, dest_size, srcs); break;
1516 case 2: emit(nir_op_ball_fequal2, dest_size, srcs); break;
1517 case 3: emit(nir_op_ball_fequal3, dest_size, srcs); break;
1518 case 4: emit(nir_op_ball_fequal4, dest_size, srcs); break;
1519 default:
1520 unreachable("not reached");
1521 }
1522 } else {
1523 switch (ir->operands[0]->type->vector_elements) {
1524 case 1: emit(nir_op_ieq, dest_size, srcs); break;
1525 case 2: emit(nir_op_ball_iequal2, dest_size, srcs); break;
1526 case 3: emit(nir_op_ball_iequal3, dest_size, srcs); break;
1527 case 4: emit(nir_op_ball_iequal4, dest_size, srcs); break;
1528 default:
1529 unreachable("not reached");
1530 }
1531 }
1532 } else {
1533 switch (ir->operands[0]->type->vector_elements) {
1534 case 1: emit(nir_op_seq, dest_size, srcs); break;
1535 case 2: emit(nir_op_fall_equal2, dest_size, srcs); break;
1536 case 3: emit(nir_op_fall_equal3, dest_size, srcs); break;
1537 case 4: emit(nir_op_fall_equal4, dest_size, srcs); break;
1538 default:
1539 unreachable("not reached");
1540 }
1541 }
1542 break;
1543 case ir_binop_any_nequal:
1544 if (supports_ints) {
1545 if (types[0] == GLSL_TYPE_FLOAT) {
1546 switch (ir->operands[0]->type->vector_elements) {
1547 case 1: emit(nir_op_fne, dest_size, srcs); break;
1548 case 2: emit(nir_op_bany_fnequal2, dest_size, srcs); break;
1549 case 3: emit(nir_op_bany_fnequal3, dest_size, srcs); break;
1550 case 4: emit(nir_op_bany_fnequal4, dest_size, srcs); break;
1551 default:
1552 unreachable("not reached");
1553 }
1554 } else {
1555 switch (ir->operands[0]->type->vector_elements) {
1556 case 1: emit(nir_op_ine, dest_size, srcs); break;
1557 case 2: emit(nir_op_bany_inequal2, dest_size, srcs); break;
1558 case 3: emit(nir_op_bany_inequal3, dest_size, srcs); break;
1559 case 4: emit(nir_op_bany_inequal4, dest_size, srcs); break;
1560 default:
1561 unreachable("not reached");
1562 }
1563 }
1564 } else {
1565 switch (ir->operands[0]->type->vector_elements) {
1566 case 1: emit(nir_op_sne, dest_size, srcs); break;
1567 case 2: emit(nir_op_fany_nequal2, dest_size, srcs); break;
1568 case 3: emit(nir_op_fany_nequal3, dest_size, srcs); break;
1569 case 4: emit(nir_op_fany_nequal4, dest_size, srcs); break;
1570 default:
1571 unreachable("not reached");
1572 }
1573 }
1574 break;
1575 case ir_binop_dot:
1576 switch (ir->operands[0]->type->vector_elements) {
1577 case 2: emit(nir_op_fdot2, dest_size, srcs); break;
1578 case 3: emit(nir_op_fdot3, dest_size, srcs); break;
1579 case 4: emit(nir_op_fdot4, dest_size, srcs); break;
1580 default:
1581 unreachable("not reached");
1582 }
1583 break;
1584
1585 case ir_binop_pack_half_2x16_split:
1586 emit(nir_op_pack_half_2x16_split, dest_size, srcs);
1587 break;
1588 case ir_binop_bfm: emit(nir_op_bfm, dest_size, srcs); break;
1589 case ir_binop_ldexp: emit(nir_op_ldexp, dest_size, srcs); break;
1590 case ir_triop_fma: emit(nir_op_ffma, dest_size, srcs); break;
1591 case ir_triop_lrp:
1592 instr = emit(nir_op_flrp, dest_size, srcs);
1593 if (ir->operands[0]->type->vector_elements != 1 &&
1594 ir->operands[2]->type->vector_elements == 1) {
1595 for (unsigned i = 0; i < ir->operands[0]->type->vector_elements;
1596 i++) {
1597 instr->src[2].swizzle[i] = 0;
1598 }
1599 }
1600 break;
1601 case ir_triop_csel:
1602 if (supports_ints)
1603 emit(nir_op_bcsel, dest_size, srcs);
1604 else
1605 emit(nir_op_fcsel, dest_size, srcs);
1606 break;
1607 case ir_triop_bfi:
1608 instr = emit(nir_op_bfi, dest_size, srcs);
1609 for (unsigned i = 0; i < ir->operands[1]->type->vector_elements; i++) {
1610 instr->src[0].swizzle[i] = 0;
1611 }
1612 break;
1613 case ir_triop_bitfield_extract:
1614 instr = emit(out_type == GLSL_TYPE_INT ? nir_op_ibitfield_extract :
1615 nir_op_ubitfield_extract, dest_size, srcs);
1616 for (unsigned i = 0; i < ir->operands[0]->type->vector_elements; i++) {
1617 instr->src[1].swizzle[i] = 0;
1618 instr->src[2].swizzle[i] = 0;
1619 }
1620 break;
1621 case ir_quadop_bitfield_insert:
1622 instr = emit(nir_op_bitfield_insert, dest_size, srcs);
1623 for (unsigned i = 0; i < ir->operands[0]->type->vector_elements; i++) {
1624 instr->src[2].swizzle[i] = 0;
1625 instr->src[3].swizzle[i] = 0;
1626 }
1627 break;
1628 case ir_quadop_vector:
1629 switch (ir->type->vector_elements) {
1630 case 2: emit(nir_op_vec2, dest_size, srcs); break;
1631 case 3: emit(nir_op_vec3, dest_size, srcs); break;
1632 case 4: emit(nir_op_vec4, dest_size, srcs); break;
1633 default: unreachable("not reached");
1634 }
1635 break;
1636
1637 default:
1638 unreachable("not reached");
1639 }
1640 }
1641
1642 void
1643 nir_visitor::visit(ir_swizzle *ir)
1644 {
1645 nir_alu_instr *instr = emit(supports_ints ? nir_op_imov : nir_op_fmov,
1646 ir->type->vector_elements,
1647 evaluate_rvalue(ir->val));
1648
1649 unsigned swizzle[4] = { ir->mask.x, ir->mask.y, ir->mask.z, ir->mask.w };
1650 for (unsigned i = 0; i < ir->type->vector_elements; i++)
1651 instr->src[0].swizzle[i] = swizzle[i];
1652 }
1653
1654 void
1655 nir_visitor::visit(ir_texture *ir)
1656 {
1657 unsigned num_srcs;
1658 nir_texop op;
1659 switch (ir->op) {
1660 case ir_tex:
1661 op = nir_texop_tex;
1662 num_srcs = 1; /* coordinate */
1663 break;
1664
1665 case ir_txb:
1666 case ir_txl:
1667 op = (ir->op == ir_txb) ? nir_texop_txb : nir_texop_txl;
1668 num_srcs = 2; /* coordinate, bias/lod */
1669 break;
1670
1671 case ir_txd:
1672 op = nir_texop_txd; /* coordinate, dPdx, dPdy */
1673 num_srcs = 3;
1674 break;
1675
1676 case ir_txf:
1677 op = nir_texop_txf;
1678 if (ir->lod_info.lod != NULL)
1679 num_srcs = 2; /* coordinate, lod */
1680 else
1681 num_srcs = 1; /* coordinate */
1682 break;
1683
1684 case ir_txf_ms:
1685 op = nir_texop_txf_ms;
1686 num_srcs = 2; /* coordinate, sample_index */
1687 break;
1688
1689 case ir_txs:
1690 op = nir_texop_txs;
1691 if (ir->lod_info.lod != NULL)
1692 num_srcs = 1; /* lod */
1693 else
1694 num_srcs = 0;
1695 break;
1696
1697 case ir_lod:
1698 op = nir_texop_lod;
1699 num_srcs = 1; /* coordinate */
1700 break;
1701
1702 case ir_tg4:
1703 op = nir_texop_tg4;
1704 num_srcs = 1; /* coordinate */
1705 break;
1706
1707 case ir_query_levels:
1708 op = nir_texop_query_levels;
1709 num_srcs = 0;
1710 break;
1711
1712 default:
1713 unreachable("not reached");
1714 }
1715
1716 if (ir->projector != NULL)
1717 num_srcs++;
1718 if (ir->shadow_comparitor != NULL)
1719 num_srcs++;
1720 if (ir->offset != NULL && ir->offset->as_constant() == NULL)
1721 num_srcs++;
1722
1723 nir_tex_instr *instr = nir_tex_instr_create(this->shader, num_srcs);
1724
1725 instr->op = op;
1726 instr->sampler_dim =
1727 (glsl_sampler_dim) ir->sampler->type->sampler_dimensionality;
1728 instr->is_array = ir->sampler->type->sampler_array;
1729 instr->is_shadow = ir->sampler->type->sampler_shadow;
1730 if (instr->is_shadow)
1731 instr->is_new_style_shadow = (ir->type->vector_elements == 1);
1732 switch (ir->type->base_type) {
1733 case GLSL_TYPE_FLOAT:
1734 instr->dest_type = nir_type_float;
1735 break;
1736 case GLSL_TYPE_INT:
1737 instr->dest_type = nir_type_int;
1738 break;
1739 case GLSL_TYPE_UINT:
1740 instr->dest_type = nir_type_unsigned;
1741 break;
1742 default:
1743 unreachable("not reached");
1744 }
1745
1746 instr->sampler = evaluate_deref(&instr->instr, ir->sampler);
1747
1748 unsigned src_number = 0;
1749
1750 if (ir->coordinate != NULL) {
1751 instr->coord_components = ir->coordinate->type->vector_elements;
1752 instr->src[src_number].src = evaluate_rvalue(ir->coordinate);
1753 instr->src[src_number].src_type = nir_tex_src_coord;
1754 src_number++;
1755 }
1756
1757 if (ir->projector != NULL) {
1758 instr->src[src_number].src = evaluate_rvalue(ir->projector);
1759 instr->src[src_number].src_type = nir_tex_src_projector;
1760 src_number++;
1761 }
1762
1763 if (ir->shadow_comparitor != NULL) {
1764 instr->src[src_number].src = evaluate_rvalue(ir->shadow_comparitor);
1765 instr->src[src_number].src_type = nir_tex_src_comparitor;
1766 src_number++;
1767 }
1768
1769 if (ir->offset != NULL) {
1770 /* we don't support multiple offsets yet */
1771 assert(ir->offset->type->is_vector() || ir->offset->type->is_scalar());
1772
1773 ir_constant *const_offset = ir->offset->as_constant();
1774 if (const_offset != NULL) {
1775 for (unsigned i = 0; i < const_offset->type->vector_elements; i++)
1776 instr->const_offset[i] = const_offset->value.i[i];
1777 } else {
1778 instr->src[src_number].src = evaluate_rvalue(ir->offset);
1779 instr->src[src_number].src_type = nir_tex_src_offset;
1780 src_number++;
1781 }
1782 }
1783
1784 switch (ir->op) {
1785 case ir_txb:
1786 instr->src[src_number].src = evaluate_rvalue(ir->lod_info.bias);
1787 instr->src[src_number].src_type = nir_tex_src_bias;
1788 src_number++;
1789 break;
1790
1791 case ir_txl:
1792 case ir_txf:
1793 case ir_txs:
1794 if (ir->lod_info.lod != NULL) {
1795 instr->src[src_number].src = evaluate_rvalue(ir->lod_info.lod);
1796 instr->src[src_number].src_type = nir_tex_src_lod;
1797 src_number++;
1798 }
1799 break;
1800
1801 case ir_txd:
1802 instr->src[src_number].src = evaluate_rvalue(ir->lod_info.grad.dPdx);
1803 instr->src[src_number].src_type = nir_tex_src_ddx;
1804 src_number++;
1805 instr->src[src_number].src = evaluate_rvalue(ir->lod_info.grad.dPdy);
1806 instr->src[src_number].src_type = nir_tex_src_ddy;
1807 src_number++;
1808 break;
1809
1810 case ir_txf_ms:
1811 instr->src[src_number].src = evaluate_rvalue(ir->lod_info.sample_index);
1812 instr->src[src_number].src_type = nir_tex_src_ms_index;
1813 src_number++;
1814 break;
1815
1816 case ir_tg4:
1817 instr->component = ir->lod_info.component->as_constant()->value.u[0];
1818 break;
1819
1820 default:
1821 break;
1822 }
1823
1824 assert(src_number == num_srcs);
1825
1826 add_instr(&instr->instr, nir_tex_instr_dest_size(instr));
1827 }
1828
1829 void
1830 nir_visitor::visit(ir_constant *ir)
1831 {
1832 /*
1833 * We don't know if this variable is an an array or struct that gets
1834 * dereferenced, so do the safe thing an make it a variable with a
1835 * constant initializer and return a dereference.
1836 */
1837
1838 nir_variable *var = ralloc(this->shader, nir_variable);
1839 var->name = ralloc_strdup(var, "const_temp");
1840 var->type = ir->type;
1841 var->data.mode = nir_var_local;
1842 var->data.read_only = true;
1843 var->constant_initializer = constant_copy(ir, var);
1844 exec_list_push_tail(&this->impl->locals, &var->node);
1845
1846 this->deref_head = nir_deref_var_create(this->shader, var);
1847 this->deref_tail = &this->deref_head->deref;
1848 }
1849
1850 void
1851 nir_visitor::visit(ir_dereference_variable *ir)
1852 {
1853 struct hash_entry *entry =
1854 _mesa_hash_table_search(this->var_table, ir->var);
1855 assert(entry);
1856 nir_variable *var = (nir_variable *) entry->data;
1857
1858 nir_deref_var *deref = nir_deref_var_create(this->shader, var);
1859 this->deref_head = deref;
1860 this->deref_tail = &deref->deref;
1861 }
1862
1863 void
1864 nir_visitor::visit(ir_dereference_record *ir)
1865 {
1866 ir->record->accept(this);
1867
1868 int field_index = this->deref_tail->type->field_index(ir->field);
1869 assert(field_index >= 0);
1870
1871 nir_deref_struct *deref = nir_deref_struct_create(this->deref_tail, field_index);
1872 deref->deref.type = ir->type;
1873 this->deref_tail->child = &deref->deref;
1874 this->deref_tail = &deref->deref;
1875 }
1876
1877 void
1878 nir_visitor::visit(ir_dereference_array *ir)
1879 {
1880 nir_deref_array *deref = nir_deref_array_create(this->shader);
1881 deref->deref.type = ir->type;
1882
1883 ir_constant *const_index = ir->array_index->as_constant();
1884 if (const_index != NULL) {
1885 deref->deref_array_type = nir_deref_array_type_direct;
1886 deref->base_offset = const_index->value.u[0];
1887 } else {
1888 deref->deref_array_type = nir_deref_array_type_indirect;
1889 deref->indirect = evaluate_rvalue(ir->array_index);
1890 }
1891
1892 ir->array->accept(this);
1893
1894 this->deref_tail->child = &deref->deref;
1895 ralloc_steal(this->deref_tail, deref);
1896 this->deref_tail = &deref->deref;
1897 }
1898
1899 void
1900 nir_visitor::visit(ir_barrier *ir)
1901 {
1902 nir_intrinsic_instr *instr =
1903 nir_intrinsic_instr_create(this->shader, nir_intrinsic_barrier);
1904 nir_instr_insert_after_cf_list(this->cf_node_list, &instr->instr);
1905 }