nir/tex_instr: Rename sampler to texture
[mesa.git] / src / compiler / nir / nir_print.c
1 /*
2 * Copyright © 2014 Intel Corporation
3 *
4 * Permission is hereby granted, free of charge, to any person obtaining a
5 * copy of this software and associated documentation files (the "Software"),
6 * to deal in the Software without restriction, including without limitation
7 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
8 * and/or sell copies of the Software, and to permit persons to whom the
9 * Software is furnished to do so, subject to the following conditions:
10 *
11 * The above copyright notice and this permission notice (including the next
12 * paragraph) shall be included in all copies or substantial portions of the
13 * Software.
14 *
15 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
18 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
20 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
21 * IN THE SOFTWARE.
22 *
23 * Authors:
24 * Connor Abbott (cwabbott0@gmail.com)
25 *
26 */
27
28 #include "nir.h"
29 #include "compiler/shader_enums.h"
30 #include <stdio.h>
31 #include <stdlib.h>
32
33 static void
34 print_tabs(unsigned num_tabs, FILE *fp)
35 {
36 for (unsigned i = 0; i < num_tabs; i++)
37 fprintf(fp, "\t");
38 }
39
40 typedef struct {
41 FILE *fp;
42 nir_shader *shader;
43 /** map from nir_variable -> printable name */
44 struct hash_table *ht;
45
46 /** set of names used so far for nir_variables */
47 struct set *syms;
48
49 /* an index used to make new non-conflicting names */
50 unsigned index;
51 } print_state;
52
53 static void
54 print_register(nir_register *reg, print_state *state)
55 {
56 FILE *fp = state->fp;
57 if (reg->name != NULL)
58 fprintf(fp, "/* %s */ ", reg->name);
59 if (reg->is_global)
60 fprintf(fp, "gr%u", reg->index);
61 else
62 fprintf(fp, "r%u", reg->index);
63 }
64
65 static const char *sizes[] = { "error", "vec1", "vec2", "vec3", "vec4" };
66
67 static void
68 print_register_decl(nir_register *reg, print_state *state)
69 {
70 FILE *fp = state->fp;
71 fprintf(fp, "decl_reg %s ", sizes[reg->num_components]);
72 if (reg->is_packed)
73 fprintf(fp, "(packed) ");
74 print_register(reg, state);
75 if (reg->num_array_elems != 0)
76 fprintf(fp, "[%u]", reg->num_array_elems);
77 fprintf(fp, "\n");
78 }
79
80 static void
81 print_ssa_def(nir_ssa_def *def, print_state *state)
82 {
83 FILE *fp = state->fp;
84 if (def->name != NULL)
85 fprintf(fp, "/* %s */ ", def->name);
86 fprintf(fp, "%s ssa_%u", sizes[def->num_components], def->index);
87 }
88
89 static void
90 print_ssa_use(nir_ssa_def *def, print_state *state)
91 {
92 FILE *fp = state->fp;
93 if (def->name != NULL)
94 fprintf(fp, "/* %s */ ", def->name);
95 fprintf(fp, "ssa_%u", def->index);
96 }
97
98 static void print_src(nir_src *src, print_state *state);
99
100 static void
101 print_reg_src(nir_reg_src *src, print_state *state)
102 {
103 FILE *fp = state->fp;
104 print_register(src->reg, state);
105 if (src->reg->num_array_elems != 0) {
106 fprintf(fp, "[%u", src->base_offset);
107 if (src->indirect != NULL) {
108 fprintf(fp, " + ");
109 print_src(src->indirect, state);
110 }
111 fprintf(fp, "]");
112 }
113 }
114
115 static void
116 print_reg_dest(nir_reg_dest *dest, print_state *state)
117 {
118 FILE *fp = state->fp;
119 print_register(dest->reg, state);
120 if (dest->reg->num_array_elems != 0) {
121 fprintf(fp, "[%u", dest->base_offset);
122 if (dest->indirect != NULL) {
123 fprintf(fp, " + ");
124 print_src(dest->indirect, state);
125 }
126 fprintf(fp, "]");
127 }
128 }
129
130 static void
131 print_src(nir_src *src, print_state *state)
132 {
133 if (src->is_ssa)
134 print_ssa_use(src->ssa, state);
135 else
136 print_reg_src(&src->reg, state);
137 }
138
139 static void
140 print_dest(nir_dest *dest, print_state *state)
141 {
142 if (dest->is_ssa)
143 print_ssa_def(&dest->ssa, state);
144 else
145 print_reg_dest(&dest->reg, state);
146 }
147
148 static void
149 print_alu_src(nir_alu_instr *instr, unsigned src, print_state *state)
150 {
151 FILE *fp = state->fp;
152
153 if (instr->src[src].negate)
154 fprintf(fp, "-");
155 if (instr->src[src].abs)
156 fprintf(fp, "abs(");
157
158 print_src(&instr->src[src].src, state);
159
160 bool print_swizzle = false;
161 for (unsigned i = 0; i < 4; i++) {
162 if (!nir_alu_instr_channel_used(instr, src, i))
163 continue;
164
165 if (instr->src[src].swizzle[i] != i) {
166 print_swizzle = true;
167 break;
168 }
169 }
170
171 if (print_swizzle) {
172 fprintf(fp, ".");
173 for (unsigned i = 0; i < 4; i++) {
174 if (!nir_alu_instr_channel_used(instr, src, i))
175 continue;
176
177 fprintf(fp, "%c", "xyzw"[instr->src[src].swizzle[i]]);
178 }
179 }
180
181 if (instr->src[src].abs)
182 fprintf(fp, ")");
183 }
184
185 static void
186 print_alu_dest(nir_alu_dest *dest, print_state *state)
187 {
188 FILE *fp = state->fp;
189 /* we're going to print the saturate modifier later, after the opcode */
190
191 print_dest(&dest->dest, state);
192
193 if (!dest->dest.is_ssa &&
194 dest->write_mask != (1 << dest->dest.reg.reg->num_components) - 1) {
195 fprintf(fp, ".");
196 for (unsigned i = 0; i < 4; i++)
197 if ((dest->write_mask >> i) & 1)
198 fprintf(fp, "%c", "xyzw"[i]);
199 }
200 }
201
202 static void
203 print_alu_instr(nir_alu_instr *instr, print_state *state)
204 {
205 FILE *fp = state->fp;
206
207 print_alu_dest(&instr->dest, state);
208
209 fprintf(fp, " = %s", nir_op_infos[instr->op].name);
210 if (instr->dest.saturate)
211 fprintf(fp, ".sat");
212 fprintf(fp, " ");
213
214 for (unsigned i = 0; i < nir_op_infos[instr->op].num_inputs; i++) {
215 if (i != 0)
216 fprintf(fp, ", ");
217
218 print_alu_src(instr, i, state);
219 }
220 }
221
222 static void
223 print_constant(nir_constant *c, const struct glsl_type *type, print_state *state)
224 {
225 FILE *fp = state->fp;
226 unsigned total_elems = glsl_get_components(type);
227 unsigned i;
228
229 switch (glsl_get_base_type(type)) {
230 case GLSL_TYPE_UINT:
231 case GLSL_TYPE_INT:
232 case GLSL_TYPE_BOOL:
233 for (i = 0; i < total_elems; i++) {
234 if (i > 0) fprintf(fp, ", ");
235 fprintf(fp, "0x%08x", c->value.u[i]);
236 }
237 break;
238
239 case GLSL_TYPE_FLOAT:
240 for (i = 0; i < total_elems; i++) {
241 if (i > 0) fprintf(fp, ", ");
242 fprintf(fp, "%f", c->value.f[i]);
243 }
244 break;
245
246 case GLSL_TYPE_STRUCT:
247 for (i = 0; i < c->num_elements; i++) {
248 if (i > 0) fprintf(fp, ", ");
249 fprintf(fp, "{ ");
250 print_constant(c->elements[i], glsl_get_struct_field(type, i), state);
251 fprintf(fp, " }");
252 }
253 break;
254
255 case GLSL_TYPE_ARRAY:
256 for (i = 0; i < c->num_elements; i++) {
257 if (i > 0) fprintf(fp, ", ");
258 fprintf(fp, "{ ");
259 print_constant(c->elements[i], glsl_get_array_element(type), state);
260 fprintf(fp, " }");
261 }
262 break;
263
264 default:
265 unreachable("not reached");
266 }
267 }
268
269 static void
270 print_var_decl(nir_variable *var, print_state *state)
271 {
272 FILE *fp = state->fp;
273
274 fprintf(fp, "decl_var ");
275
276 const char *const cent = (var->data.centroid) ? "centroid " : "";
277 const char *const samp = (var->data.sample) ? "sample " : "";
278 const char *const patch = (var->data.patch) ? "patch " : "";
279 const char *const inv = (var->data.invariant) ? "invariant " : "";
280 const char *const mode[] = { "shader_in ", "shader_out ", "", "",
281 "uniform ", "shader_storage", "system " };
282
283 fprintf(fp, "%s%s%s%s%s%s ",
284 cent, samp, patch, inv, mode[var->data.mode],
285 glsl_interp_qualifier_name(var->data.interpolation));
286
287 glsl_print_type(var->type, fp);
288
289 struct set_entry *entry = NULL;
290 if (state->syms)
291 entry = _mesa_set_search(state->syms, var->name);
292
293 char *name;
294
295 if (entry != NULL) {
296 /* we have a collision with another name, append an @ + a unique index */
297 name = ralloc_asprintf(state->syms, "%s@%u", var->name, state->index++);
298 } else {
299 name = var->name;
300 }
301
302 fprintf(fp, " %s", name);
303
304 if (var->data.mode == nir_var_shader_in ||
305 var->data.mode == nir_var_shader_out ||
306 var->data.mode == nir_var_uniform ||
307 var->data.mode == nir_var_shader_storage) {
308 const char *loc = NULL;
309 char buf[4];
310
311 switch (state->shader->stage) {
312 case MESA_SHADER_VERTEX:
313 if (var->data.mode == nir_var_shader_in)
314 loc = gl_vert_attrib_name(var->data.location);
315 else if (var->data.mode == nir_var_shader_out)
316 loc = gl_varying_slot_name(var->data.location);
317 break;
318 case MESA_SHADER_GEOMETRY:
319 if ((var->data.mode == nir_var_shader_in) ||
320 (var->data.mode == nir_var_shader_out))
321 loc = gl_varying_slot_name(var->data.location);
322 break;
323 case MESA_SHADER_FRAGMENT:
324 if (var->data.mode == nir_var_shader_in)
325 loc = gl_varying_slot_name(var->data.location);
326 else if (var->data.mode == nir_var_shader_out)
327 loc = gl_frag_result_name(var->data.location);
328 break;
329 case MESA_SHADER_TESS_CTRL:
330 case MESA_SHADER_TESS_EVAL:
331 case MESA_SHADER_COMPUTE:
332 default:
333 /* TODO */
334 break;
335 }
336
337 if (!loc) {
338 snprintf(buf, sizeof(buf), "%u", var->data.location);
339 loc = buf;
340 }
341
342 fprintf(fp, " (%s, %u)", loc, var->data.driver_location);
343 }
344
345 if (var->constant_initializer) {
346 fprintf(fp, " = { ");
347 print_constant(var->constant_initializer, var->type, state);
348 fprintf(fp, " }");
349 }
350
351 fprintf(fp, "\n");
352
353 if (state->syms) {
354 _mesa_set_add(state->syms, name);
355 _mesa_hash_table_insert(state->ht, var, name);
356 }
357 }
358
359 static void
360 print_var(nir_variable *var, print_state *state)
361 {
362 FILE *fp = state->fp;
363 const char *name;
364 if (state->ht) {
365 struct hash_entry *entry = _mesa_hash_table_search(state->ht, var);
366
367 assert(entry != NULL);
368 name = entry->data;
369 } else {
370 name = var->name;
371 }
372
373 fprintf(fp, "%s", name);
374 }
375
376 static void
377 print_deref_var(nir_deref_var *deref, print_state *state)
378 {
379 print_var(deref->var, state);
380 }
381
382 static void
383 print_deref_array(nir_deref_array *deref, print_state *state)
384 {
385 FILE *fp = state->fp;
386 fprintf(fp, "[");
387 switch (deref->deref_array_type) {
388 case nir_deref_array_type_direct:
389 fprintf(fp, "%u", deref->base_offset);
390 break;
391 case nir_deref_array_type_indirect:
392 if (deref->base_offset != 0)
393 fprintf(fp, "%u + ", deref->base_offset);
394 print_src(&deref->indirect, state);
395 break;
396 case nir_deref_array_type_wildcard:
397 fprintf(fp, "*");
398 break;
399 }
400 fprintf(fp, "]");
401 }
402
403 static void
404 print_deref_struct(nir_deref_struct *deref, const struct glsl_type *parent_type,
405 print_state *state)
406 {
407 FILE *fp = state->fp;
408 fprintf(fp, ".%s", glsl_get_struct_elem_name(parent_type, deref->index));
409 }
410
411 static void
412 print_deref(nir_deref_var *deref, print_state *state)
413 {
414 nir_deref *tail = &deref->deref;
415 nir_deref *pretail = NULL;
416 while (tail != NULL) {
417 switch (tail->deref_type) {
418 case nir_deref_type_var:
419 assert(pretail == NULL);
420 assert(tail == &deref->deref);
421 print_deref_var(deref, state);
422 break;
423
424 case nir_deref_type_array:
425 assert(pretail != NULL);
426 print_deref_array(nir_deref_as_array(tail), state);
427 break;
428
429 case nir_deref_type_struct:
430 assert(pretail != NULL);
431 print_deref_struct(nir_deref_as_struct(tail),
432 pretail->type, state);
433 break;
434
435 default:
436 unreachable("Invalid deref type");
437 }
438
439 pretail = tail;
440 tail = pretail->child;
441 }
442 }
443
444 static void
445 print_intrinsic_instr(nir_intrinsic_instr *instr, print_state *state)
446 {
447 const nir_intrinsic_info *info = &nir_intrinsic_infos[instr->intrinsic];
448 unsigned num_srcs = info->num_srcs;
449 FILE *fp = state->fp;
450
451 if (info->has_dest) {
452 print_dest(&instr->dest, state);
453 fprintf(fp, " = ");
454 }
455
456 fprintf(fp, "intrinsic %s (", info->name);
457
458 for (unsigned i = 0; i < num_srcs; i++) {
459 if (i != 0)
460 fprintf(fp, ", ");
461
462 print_src(&instr->src[i], state);
463 }
464
465 fprintf(fp, ") (");
466
467 for (unsigned i = 0; i < info->num_variables; i++) {
468 if (i != 0)
469 fprintf(fp, ", ");
470
471 print_deref(instr->variables[i], state);
472 }
473
474 fprintf(fp, ") (");
475
476 for (unsigned i = 0; i < info->num_indices; i++) {
477 if (i != 0)
478 fprintf(fp, ", ");
479
480 fprintf(fp, "%d", instr->const_index[i]);
481 }
482
483 fprintf(fp, ")");
484
485 static const char *index_name[NIR_INTRINSIC_NUM_INDEX_FLAGS] = {
486 [NIR_INTRINSIC_BASE] = "base",
487 [NIR_INTRINSIC_WRMASK] = "wrmask",
488 [NIR_INTRINSIC_STREAM_ID] = "stream-id",
489 [NIR_INTRINSIC_UCP_ID] = "ucp-id",
490 };
491 for (unsigned idx = 1; idx < NIR_INTRINSIC_NUM_INDEX_FLAGS; idx++) {
492 if (!info->index_map[idx])
493 continue;
494 fprintf(fp, " /*");
495 if (idx == NIR_INTRINSIC_WRMASK) {
496 /* special case wrmask to show it as a writemask.. */
497 unsigned wrmask = nir_intrinsic_write_mask(instr);
498 fprintf(fp, " wrmask=");
499 for (unsigned i = 0; i < 4; i++)
500 if ((wrmask >> i) & 1)
501 fprintf(fp, "%c", "xyzw"[i]);
502 } else {
503 unsigned off = info->index_map[idx] - 1;
504 assert(index_name[idx]); /* forgot to update index_name table? */
505 fprintf(fp, " %s=%d", index_name[idx], instr->const_index[off]);
506 }
507 fprintf(fp, " */");
508 }
509
510 if (!state->shader)
511 return;
512
513 struct exec_list *var_list = NULL;
514
515 switch (instr->intrinsic) {
516 case nir_intrinsic_load_uniform:
517 var_list = &state->shader->uniforms;
518 break;
519 case nir_intrinsic_load_input:
520 case nir_intrinsic_load_per_vertex_input:
521 var_list = &state->shader->inputs;
522 break;
523 case nir_intrinsic_load_output:
524 case nir_intrinsic_store_output:
525 case nir_intrinsic_store_per_vertex_output:
526 var_list = &state->shader->outputs;
527 break;
528 default:
529 return;
530 }
531
532 nir_foreach_variable(var, var_list) {
533 if ((var->data.driver_location == nir_intrinsic_base(instr)) &&
534 var->name) {
535 fprintf(fp, "\t/* %s */", var->name);
536 break;
537 }
538 }
539 }
540
541 static void
542 print_tex_instr(nir_tex_instr *instr, print_state *state)
543 {
544 FILE *fp = state->fp;
545
546 print_dest(&instr->dest, state);
547
548 fprintf(fp, " = ");
549
550 switch (instr->op) {
551 case nir_texop_tex:
552 fprintf(fp, "tex ");
553 break;
554 case nir_texop_txb:
555 fprintf(fp, "txb ");
556 break;
557 case nir_texop_txl:
558 fprintf(fp, "txl ");
559 break;
560 case nir_texop_txd:
561 fprintf(fp, "txd ");
562 break;
563 case nir_texop_txf:
564 fprintf(fp, "txf ");
565 break;
566 case nir_texop_txf_ms:
567 fprintf(fp, "txf_ms ");
568 break;
569 case nir_texop_txs:
570 fprintf(fp, "txs ");
571 break;
572 case nir_texop_lod:
573 fprintf(fp, "lod ");
574 break;
575 case nir_texop_tg4:
576 fprintf(fp, "tg4 ");
577 break;
578 case nir_texop_query_levels:
579 fprintf(fp, "query_levels ");
580 break;
581 case nir_texop_texture_samples:
582 fprintf(fp, "texture_samples ");
583 break;
584 case nir_texop_samples_identical:
585 fprintf(fp, "samples_identical ");
586 break;
587 default:
588 unreachable("Invalid texture operation");
589 break;
590 }
591
592 for (unsigned i = 0; i < instr->num_srcs; i++) {
593 print_src(&instr->src[i].src, state);
594
595 fprintf(fp, " ");
596
597 switch(instr->src[i].src_type) {
598 case nir_tex_src_coord:
599 fprintf(fp, "(coord)");
600 break;
601 case nir_tex_src_projector:
602 fprintf(fp, "(projector)");
603 break;
604 case nir_tex_src_comparitor:
605 fprintf(fp, "(comparitor)");
606 break;
607 case nir_tex_src_offset:
608 fprintf(fp, "(offset)");
609 break;
610 case nir_tex_src_bias:
611 fprintf(fp, "(bias)");
612 break;
613 case nir_tex_src_lod:
614 fprintf(fp, "(lod)");
615 break;
616 case nir_tex_src_ms_index:
617 fprintf(fp, "(ms_index)");
618 break;
619 case nir_tex_src_ddx:
620 fprintf(fp, "(ddx)");
621 break;
622 case nir_tex_src_ddy:
623 fprintf(fp, "(ddy)");
624 break;
625 case nir_tex_src_texture_offset:
626 fprintf(fp, "(texture_offset)");
627 break;
628
629 default:
630 unreachable("Invalid texture source type");
631 break;
632 }
633
634 fprintf(fp, ", ");
635 }
636
637 bool has_nonzero_offset = false;
638 for (unsigned i = 0; i < 4; i++) {
639 if (instr->const_offset[i] != 0) {
640 has_nonzero_offset = true;
641 break;
642 }
643 }
644
645 if (has_nonzero_offset) {
646 fprintf(fp, "[%i %i %i %i] (offset), ",
647 instr->const_offset[0], instr->const_offset[1],
648 instr->const_offset[2], instr->const_offset[3]);
649 }
650
651 if (instr->op == nir_texop_tg4) {
652 fprintf(fp, "%u (gather_component), ", instr->component);
653 }
654
655 if (instr->texture) {
656 print_deref(instr->texture, state);
657 } else {
658 fprintf(fp, "%u", instr->texture_index);
659 }
660
661 fprintf(fp, " (texture)");
662 }
663
664 static void
665 print_call_instr(nir_call_instr *instr, print_state *state)
666 {
667 FILE *fp = state->fp;
668
669 fprintf(fp, "call %s ", instr->callee->name);
670
671 for (unsigned i = 0; i < instr->num_params; i++) {
672 if (i != 0)
673 fprintf(fp, ", ");
674
675 print_deref(instr->params[i], state);
676 }
677
678 if (instr->return_deref != NULL) {
679 if (instr->num_params != 0)
680 fprintf(fp, ", ");
681 fprintf(fp, "returning ");
682 print_deref(instr->return_deref, state);
683 }
684 }
685
686 static void
687 print_load_const_instr(nir_load_const_instr *instr, print_state *state)
688 {
689 FILE *fp = state->fp;
690
691 print_ssa_def(&instr->def, state);
692
693 fprintf(fp, " = load_const (");
694
695 for (unsigned i = 0; i < instr->def.num_components; i++) {
696 if (i != 0)
697 fprintf(fp, ", ");
698
699 /*
700 * we don't really know the type of the constant (if it will be used as a
701 * float or an int), so just print the raw constant in hex for fidelity
702 * and then print the float in a comment for readability.
703 */
704
705 fprintf(fp, "0x%08x /* %f */", instr->value.u[i], instr->value.f[i]);
706 }
707
708 fprintf(fp, ")");
709 }
710
711 static void
712 print_jump_instr(nir_jump_instr *instr, print_state *state)
713 {
714 FILE *fp = state->fp;
715
716 switch (instr->type) {
717 case nir_jump_break:
718 fprintf(fp, "break");
719 break;
720
721 case nir_jump_continue:
722 fprintf(fp, "continue");
723 break;
724
725 case nir_jump_return:
726 fprintf(fp, "return");
727 break;
728 }
729 }
730
731 static void
732 print_ssa_undef_instr(nir_ssa_undef_instr* instr, print_state *state)
733 {
734 FILE *fp = state->fp;
735 print_ssa_def(&instr->def, state);
736 fprintf(fp, " = undefined");
737 }
738
739 static void
740 print_phi_instr(nir_phi_instr *instr, print_state *state)
741 {
742 FILE *fp = state->fp;
743 print_dest(&instr->dest, state);
744 fprintf(fp, " = phi ");
745 nir_foreach_phi_src(instr, src) {
746 if (&src->node != exec_list_get_head(&instr->srcs))
747 fprintf(fp, ", ");
748
749 fprintf(fp, "block_%u: ", src->pred->index);
750 print_src(&src->src, state);
751 }
752 }
753
754 static void
755 print_parallel_copy_instr(nir_parallel_copy_instr *instr, print_state *state)
756 {
757 FILE *fp = state->fp;
758 nir_foreach_parallel_copy_entry(instr, entry) {
759 if (&entry->node != exec_list_get_head(&instr->entries))
760 fprintf(fp, "; ");
761
762 print_dest(&entry->dest, state);
763 fprintf(fp, " = ");
764 print_src(&entry->src, state);
765 }
766 }
767
768 static void
769 print_instr(const nir_instr *instr, print_state *state, unsigned tabs)
770 {
771 FILE *fp = state->fp;
772 print_tabs(tabs, fp);
773
774 switch (instr->type) {
775 case nir_instr_type_alu:
776 print_alu_instr(nir_instr_as_alu(instr), state);
777 break;
778
779 case nir_instr_type_call:
780 print_call_instr(nir_instr_as_call(instr), state);
781 break;
782
783 case nir_instr_type_intrinsic:
784 print_intrinsic_instr(nir_instr_as_intrinsic(instr), state);
785 break;
786
787 case nir_instr_type_tex:
788 print_tex_instr(nir_instr_as_tex(instr), state);
789 break;
790
791 case nir_instr_type_load_const:
792 print_load_const_instr(nir_instr_as_load_const(instr), state);
793 break;
794
795 case nir_instr_type_jump:
796 print_jump_instr(nir_instr_as_jump(instr), state);
797 break;
798
799 case nir_instr_type_ssa_undef:
800 print_ssa_undef_instr(nir_instr_as_ssa_undef(instr), state);
801 break;
802
803 case nir_instr_type_phi:
804 print_phi_instr(nir_instr_as_phi(instr), state);
805 break;
806
807 case nir_instr_type_parallel_copy:
808 print_parallel_copy_instr(nir_instr_as_parallel_copy(instr), state);
809 break;
810
811 default:
812 unreachable("Invalid instruction type");
813 break;
814 }
815 }
816
817 static int
818 compare_block_index(const void *p1, const void *p2)
819 {
820 const nir_block *block1 = *((const nir_block **) p1);
821 const nir_block *block2 = *((const nir_block **) p2);
822
823 return (int) block1->index - (int) block2->index;
824 }
825
826 static void print_cf_node(nir_cf_node *node, print_state *state,
827 unsigned tabs);
828
829 static void
830 print_block(nir_block *block, print_state *state, unsigned tabs)
831 {
832 FILE *fp = state->fp;
833
834 print_tabs(tabs, fp);
835 fprintf(fp, "block block_%u:\n", block->index);
836
837 /* sort the predecessors by index so we consistently print the same thing */
838
839 nir_block **preds =
840 malloc(block->predecessors->entries * sizeof(nir_block *));
841
842 struct set_entry *entry;
843 unsigned i = 0;
844 set_foreach(block->predecessors, entry) {
845 preds[i++] = (nir_block *) entry->key;
846 }
847
848 qsort(preds, block->predecessors->entries, sizeof(nir_block *),
849 compare_block_index);
850
851 print_tabs(tabs, fp);
852 fprintf(fp, "/* preds: ");
853 for (unsigned i = 0; i < block->predecessors->entries; i++) {
854 fprintf(fp, "block_%u ", preds[i]->index);
855 }
856 fprintf(fp, "*/\n");
857
858 free(preds);
859
860 nir_foreach_instr(block, instr) {
861 print_instr(instr, state, tabs);
862 fprintf(fp, "\n");
863 }
864
865 print_tabs(tabs, fp);
866 fprintf(fp, "/* succs: ");
867 for (unsigned i = 0; i < 2; i++)
868 if (block->successors[i]) {
869 fprintf(fp, "block_%u ", block->successors[i]->index);
870 }
871 fprintf(fp, "*/\n");
872 }
873
874 static void
875 print_if(nir_if *if_stmt, print_state *state, unsigned tabs)
876 {
877 FILE *fp = state->fp;
878
879 print_tabs(tabs, fp);
880 fprintf(fp, "if ");
881 print_src(&if_stmt->condition, state);
882 fprintf(fp, " {\n");
883 foreach_list_typed(nir_cf_node, node, node, &if_stmt->then_list) {
884 print_cf_node(node, state, tabs + 1);
885 }
886 print_tabs(tabs, fp);
887 fprintf(fp, "} else {\n");
888 foreach_list_typed(nir_cf_node, node, node, &if_stmt->else_list) {
889 print_cf_node(node, state, tabs + 1);
890 }
891 print_tabs(tabs, fp);
892 fprintf(fp, "}\n");
893 }
894
895 static void
896 print_loop(nir_loop *loop, print_state *state, unsigned tabs)
897 {
898 FILE *fp = state->fp;
899
900 print_tabs(tabs, fp);
901 fprintf(fp, "loop {\n");
902 foreach_list_typed(nir_cf_node, node, node, &loop->body) {
903 print_cf_node(node, state, tabs + 1);
904 }
905 print_tabs(tabs, fp);
906 fprintf(fp, "}\n");
907 }
908
909 static void
910 print_cf_node(nir_cf_node *node, print_state *state, unsigned int tabs)
911 {
912 switch (node->type) {
913 case nir_cf_node_block:
914 print_block(nir_cf_node_as_block(node), state, tabs);
915 break;
916
917 case nir_cf_node_if:
918 print_if(nir_cf_node_as_if(node), state, tabs);
919 break;
920
921 case nir_cf_node_loop:
922 print_loop(nir_cf_node_as_loop(node), state, tabs);
923 break;
924
925 default:
926 unreachable("Invalid CFG node type");
927 }
928 }
929
930 static void
931 print_function_impl(nir_function_impl *impl, print_state *state)
932 {
933 FILE *fp = state->fp;
934
935 fprintf(fp, "\nimpl %s ", impl->function->name);
936
937 for (unsigned i = 0; i < impl->num_params; i++) {
938 if (i != 0)
939 fprintf(fp, ", ");
940
941 print_var(impl->params[i], state);
942 }
943
944 if (impl->return_var != NULL) {
945 if (impl->num_params != 0)
946 fprintf(fp, ", ");
947 fprintf(fp, "returning ");
948 print_var(impl->return_var, state);
949 }
950
951 fprintf(fp, "{\n");
952
953 nir_foreach_variable(var, &impl->locals) {
954 fprintf(fp, "\t");
955 print_var_decl(var, state);
956 }
957
958 foreach_list_typed(nir_register, reg, node, &impl->registers) {
959 fprintf(fp, "\t");
960 print_register_decl(reg, state);
961 }
962
963 nir_index_blocks(impl);
964
965 foreach_list_typed(nir_cf_node, node, node, &impl->body) {
966 print_cf_node(node, state, 1);
967 }
968
969 fprintf(fp, "\tblock block_%u:\n}\n\n", impl->end_block->index);
970 }
971
972 static void
973 print_function(nir_function *function, print_state *state)
974 {
975 FILE *fp = state->fp;
976
977 fprintf(fp, "decl_function %s ", function->name);
978
979 for (unsigned i = 0; i < function->num_params; i++) {
980 if (i != 0)
981 fprintf(fp, ", ");
982
983 switch (function->params[i].param_type) {
984 case nir_parameter_in:
985 fprintf(fp, "in ");
986 break;
987 case nir_parameter_out:
988 fprintf(fp, "out ");
989 break;
990 case nir_parameter_inout:
991 fprintf(fp, "inout ");
992 break;
993 default:
994 unreachable("Invalid parameter type");
995 }
996
997 glsl_print_type(function->params[i].type, fp);
998 }
999
1000 if (function->return_type != NULL) {
1001 if (function->num_params != 0)
1002 fprintf(fp, ", ");
1003 fprintf(fp, "returning ");
1004 glsl_print_type(function->return_type, fp);
1005 }
1006
1007 fprintf(fp, "\n");
1008
1009 if (function->impl != NULL) {
1010 print_function_impl(function->impl, state);
1011 return;
1012 }
1013 }
1014
1015 static void
1016 init_print_state(print_state *state, nir_shader *shader, FILE *fp)
1017 {
1018 state->fp = fp;
1019 state->shader = shader;
1020 state->ht = _mesa_hash_table_create(NULL, _mesa_hash_pointer,
1021 _mesa_key_pointer_equal);
1022 state->syms = _mesa_set_create(NULL, _mesa_key_hash_string,
1023 _mesa_key_string_equal);
1024 state->index = 0;
1025 }
1026
1027 static void
1028 destroy_print_state(print_state *state)
1029 {
1030 _mesa_hash_table_destroy(state->ht, NULL);
1031 _mesa_set_destroy(state->syms, NULL);
1032 }
1033
1034 void
1035 nir_print_shader(nir_shader *shader, FILE *fp)
1036 {
1037 print_state state;
1038 init_print_state(&state, shader, fp);
1039
1040 fprintf(fp, "shader: %s\n", gl_shader_stage_name(shader->stage));
1041
1042 if (shader->info.name)
1043 fprintf(fp, "name: %s\n", shader->info.name);
1044
1045 if (shader->info.label)
1046 fprintf(fp, "label: %s\n", shader->info.label);
1047
1048 fprintf(fp, "inputs: %u\n", shader->num_inputs);
1049 fprintf(fp, "outputs: %u\n", shader->num_outputs);
1050 fprintf(fp, "uniforms: %u\n", shader->num_uniforms);
1051
1052 nir_foreach_variable(var, &shader->uniforms) {
1053 print_var_decl(var, &state);
1054 }
1055
1056 nir_foreach_variable(var, &shader->inputs) {
1057 print_var_decl(var, &state);
1058 }
1059
1060 nir_foreach_variable(var, &shader->outputs) {
1061 print_var_decl(var, &state);
1062 }
1063
1064 nir_foreach_variable(var, &shader->globals) {
1065 print_var_decl(var, &state);
1066 }
1067
1068 nir_foreach_variable(var, &shader->system_values) {
1069 print_var_decl(var, &state);
1070 }
1071
1072 foreach_list_typed(nir_register, reg, node, &shader->registers) {
1073 print_register_decl(reg, &state);
1074 }
1075
1076 foreach_list_typed(nir_function, func, node, &shader->functions) {
1077 print_function(func, &state);
1078 }
1079
1080 destroy_print_state(&state);
1081 }
1082
1083 void
1084 nir_print_instr(const nir_instr *instr, FILE *fp)
1085 {
1086 print_state state = {
1087 .fp = fp,
1088 };
1089 print_instr(instr, &state, 0);
1090
1091 }