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