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