Merge remote-tracking branch 'public/master' into vulkan
[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 const char *
223 get_var_name(nir_variable *var, print_state *state)
224 {
225 if (state->ht == NULL)
226 return var->name;
227
228 assert(state->syms);
229
230 struct hash_entry *entry = _mesa_hash_table_search(state->ht, var);
231 if (entry)
232 return entry->data;
233
234 char *name;
235 if (var->name == NULL) {
236 name = ralloc_asprintf(state->syms, "@%u", state->index++);
237 } else {
238 struct set_entry *set_entry = _mesa_set_search(state->syms, var->name);
239 if (set_entry != NULL) {
240 /* we have a collision with another name, append an @ + a unique
241 * index */
242 name = ralloc_asprintf(state->syms, "%s@%u", var->name,
243 state->index++);
244 } else {
245 /* Mark this one as seen */
246 _mesa_set_add(state->syms, var->name);
247 name = var->name;
248 }
249 }
250
251 _mesa_hash_table_insert(state->ht, var, name);
252
253 return name;
254 }
255
256 static void
257 print_constant(nir_constant *c, const struct glsl_type *type, print_state *state)
258 {
259 FILE *fp = state->fp;
260 unsigned total_elems = glsl_get_components(type);
261 unsigned i;
262
263 switch (glsl_get_base_type(type)) {
264 case GLSL_TYPE_UINT:
265 case GLSL_TYPE_INT:
266 case GLSL_TYPE_BOOL:
267 for (i = 0; i < total_elems; i++) {
268 if (i > 0) fprintf(fp, ", ");
269 fprintf(fp, "0x%08x", c->value.u[i]);
270 }
271 break;
272
273 case GLSL_TYPE_FLOAT:
274 for (i = 0; i < total_elems; i++) {
275 if (i > 0) fprintf(fp, ", ");
276 fprintf(fp, "%f", c->value.f[i]);
277 }
278 break;
279
280 case GLSL_TYPE_STRUCT:
281 for (i = 0; i < c->num_elements; i++) {
282 if (i > 0) fprintf(fp, ", ");
283 fprintf(fp, "{ ");
284 print_constant(c->elements[i], glsl_get_struct_field(type, i), state);
285 fprintf(fp, " }");
286 }
287 break;
288
289 case GLSL_TYPE_ARRAY:
290 for (i = 0; i < c->num_elements; i++) {
291 if (i > 0) fprintf(fp, ", ");
292 fprintf(fp, "{ ");
293 print_constant(c->elements[i], glsl_get_array_element(type), state);
294 fprintf(fp, " }");
295 }
296 break;
297
298 default:
299 unreachable("not reached");
300 }
301 }
302
303 static void
304 print_var_decl(nir_variable *var, print_state *state)
305 {
306 FILE *fp = state->fp;
307
308 fprintf(fp, "decl_var ");
309
310 const char *const cent = (var->data.centroid) ? "centroid " : "";
311 const char *const samp = (var->data.sample) ? "sample " : "";
312 const char *const patch = (var->data.patch) ? "patch " : "";
313 const char *const inv = (var->data.invariant) ? "invariant " : "";
314 const char *const mode[] = { "shader_in ", "shader_out ", "", "",
315 "uniform ", "shader_storage ", "shared ",
316 "system "};
317
318 fprintf(fp, "%s%s%s%s%s%s ",
319 cent, samp, patch, inv, mode[var->data.mode],
320 glsl_interp_qualifier_name(var->data.interpolation));
321
322 glsl_print_type(var->type, fp);
323
324 fprintf(fp, " %s", get_var_name(var, state));
325
326 if (var->data.mode == nir_var_shader_in ||
327 var->data.mode == nir_var_shader_out ||
328 var->data.mode == nir_var_uniform ||
329 var->data.mode == nir_var_shader_storage) {
330 const char *loc = NULL;
331 char buf[4];
332
333 switch (state->shader->stage) {
334 case MESA_SHADER_VERTEX:
335 if (var->data.mode == nir_var_shader_in)
336 loc = gl_vert_attrib_name(var->data.location);
337 else if (var->data.mode == nir_var_shader_out)
338 loc = gl_varying_slot_name(var->data.location);
339 break;
340 case MESA_SHADER_GEOMETRY:
341 if ((var->data.mode == nir_var_shader_in) ||
342 (var->data.mode == nir_var_shader_out))
343 loc = gl_varying_slot_name(var->data.location);
344 break;
345 case MESA_SHADER_FRAGMENT:
346 if (var->data.mode == nir_var_shader_in)
347 loc = gl_varying_slot_name(var->data.location);
348 else if (var->data.mode == nir_var_shader_out)
349 loc = gl_frag_result_name(var->data.location);
350 break;
351 case MESA_SHADER_TESS_CTRL:
352 case MESA_SHADER_TESS_EVAL:
353 case MESA_SHADER_COMPUTE:
354 default:
355 /* TODO */
356 break;
357 }
358
359 if (!loc) {
360 snprintf(buf, sizeof(buf), "%u", var->data.location);
361 loc = buf;
362 }
363
364 fprintf(fp, " (%s, %u)", loc, var->data.driver_location);
365 }
366
367 if (var->constant_initializer) {
368 fprintf(fp, " = { ");
369 print_constant(var->constant_initializer, var->type, state);
370 fprintf(fp, " }");
371 }
372
373 fprintf(fp, "\n");
374 }
375
376 static void
377 print_var(nir_variable *var, print_state *state)
378 {
379 FILE *fp = state->fp;
380 fprintf(fp, "%s", get_var_name(var, state));
381 }
382
383 static void
384 print_arg(nir_variable *var, print_state *state)
385 {
386 FILE *fp = state->fp;
387 glsl_print_type(var->type, fp);
388 fprintf(fp, " %s", get_var_name(var, state));
389 }
390
391 static void
392 print_deref_var(nir_deref_var *deref, print_state *state)
393 {
394 print_var(deref->var, state);
395 }
396
397 static void
398 print_deref_array(nir_deref_array *deref, print_state *state)
399 {
400 FILE *fp = state->fp;
401 fprintf(fp, "[");
402 switch (deref->deref_array_type) {
403 case nir_deref_array_type_direct:
404 fprintf(fp, "%u", deref->base_offset);
405 break;
406 case nir_deref_array_type_indirect:
407 if (deref->base_offset != 0)
408 fprintf(fp, "%u + ", deref->base_offset);
409 print_src(&deref->indirect, state);
410 break;
411 case nir_deref_array_type_wildcard:
412 fprintf(fp, "*");
413 break;
414 }
415 fprintf(fp, "]");
416 }
417
418 static void
419 print_deref_struct(nir_deref_struct *deref, const struct glsl_type *parent_type,
420 print_state *state)
421 {
422 FILE *fp = state->fp;
423 fprintf(fp, ".%s", glsl_get_struct_elem_name(parent_type, deref->index));
424 }
425
426 static void
427 print_deref(nir_deref_var *deref, print_state *state)
428 {
429 nir_deref *tail = &deref->deref;
430 nir_deref *pretail = NULL;
431 while (tail != NULL) {
432 switch (tail->deref_type) {
433 case nir_deref_type_var:
434 assert(pretail == NULL);
435 assert(tail == &deref->deref);
436 print_deref_var(deref, state);
437 break;
438
439 case nir_deref_type_array:
440 assert(pretail != NULL);
441 print_deref_array(nir_deref_as_array(tail), state);
442 break;
443
444 case nir_deref_type_struct:
445 assert(pretail != NULL);
446 print_deref_struct(nir_deref_as_struct(tail),
447 pretail->type, state);
448 break;
449
450 default:
451 unreachable("Invalid deref type");
452 }
453
454 pretail = tail;
455 tail = pretail->child;
456 }
457 }
458
459 static void
460 print_intrinsic_instr(nir_intrinsic_instr *instr, print_state *state)
461 {
462 const nir_intrinsic_info *info = &nir_intrinsic_infos[instr->intrinsic];
463 unsigned num_srcs = info->num_srcs;
464 FILE *fp = state->fp;
465
466 if (info->has_dest) {
467 print_dest(&instr->dest, state);
468 fprintf(fp, " = ");
469 }
470
471 fprintf(fp, "intrinsic %s (", info->name);
472
473 for (unsigned i = 0; i < num_srcs; i++) {
474 if (i != 0)
475 fprintf(fp, ", ");
476
477 print_src(&instr->src[i], state);
478 }
479
480 fprintf(fp, ") (");
481
482 for (unsigned i = 0; i < info->num_variables; i++) {
483 if (i != 0)
484 fprintf(fp, ", ");
485
486 print_deref(instr->variables[i], state);
487 }
488
489 fprintf(fp, ") (");
490
491 for (unsigned i = 0; i < info->num_indices; i++) {
492 if (i != 0)
493 fprintf(fp, ", ");
494
495 fprintf(fp, "%d", instr->const_index[i]);
496 }
497
498 fprintf(fp, ")");
499
500 static const char *index_name[NIR_INTRINSIC_NUM_INDEX_FLAGS] = {
501 [NIR_INTRINSIC_BASE] = "base",
502 [NIR_INTRINSIC_WRMASK] = "wrmask",
503 [NIR_INTRINSIC_STREAM_ID] = "stream-id",
504 [NIR_INTRINSIC_UCP_ID] = "ucp-id",
505 [NIR_INTRINSIC_RANGE] = "range",
506 [NIR_INTRINSIC_DESC_SET] = "desc-set",
507 [NIR_INTRINSIC_BINDING] = "binding",
508 };
509 for (unsigned idx = 1; idx < NIR_INTRINSIC_NUM_INDEX_FLAGS; idx++) {
510 if (!info->index_map[idx])
511 continue;
512 fprintf(fp, " /*");
513 if (idx == NIR_INTRINSIC_WRMASK) {
514 /* special case wrmask to show it as a writemask.. */
515 unsigned wrmask = nir_intrinsic_write_mask(instr);
516 fprintf(fp, " wrmask=");
517 for (unsigned i = 0; i < 4; i++)
518 if ((wrmask >> i) & 1)
519 fprintf(fp, "%c", "xyzw"[i]);
520 } else {
521 unsigned off = info->index_map[idx] - 1;
522 assert(index_name[idx]); /* forgot to update index_name table? */
523 fprintf(fp, " %s=%d", index_name[idx], instr->const_index[off]);
524 }
525 fprintf(fp, " */");
526 }
527
528 if (!state->shader)
529 return;
530
531 struct exec_list *var_list = NULL;
532
533 switch (instr->intrinsic) {
534 case nir_intrinsic_load_uniform:
535 var_list = &state->shader->uniforms;
536 break;
537 case nir_intrinsic_load_input:
538 case nir_intrinsic_load_per_vertex_input:
539 var_list = &state->shader->inputs;
540 break;
541 case nir_intrinsic_load_output:
542 case nir_intrinsic_store_output:
543 case nir_intrinsic_store_per_vertex_output:
544 var_list = &state->shader->outputs;
545 break;
546 default:
547 return;
548 }
549
550 nir_foreach_variable(var, var_list) {
551 if ((var->data.driver_location == nir_intrinsic_base(instr)) &&
552 var->name) {
553 fprintf(fp, "\t/* %s */", var->name);
554 break;
555 }
556 }
557 }
558
559 static void
560 print_tex_instr(nir_tex_instr *instr, print_state *state)
561 {
562 FILE *fp = state->fp;
563
564 print_dest(&instr->dest, state);
565
566 fprintf(fp, " = ");
567
568 switch (instr->op) {
569 case nir_texop_tex:
570 fprintf(fp, "tex ");
571 break;
572 case nir_texop_txb:
573 fprintf(fp, "txb ");
574 break;
575 case nir_texop_txl:
576 fprintf(fp, "txl ");
577 break;
578 case nir_texop_txd:
579 fprintf(fp, "txd ");
580 break;
581 case nir_texop_txf:
582 fprintf(fp, "txf ");
583 break;
584 case nir_texop_txf_ms:
585 fprintf(fp, "txf_ms ");
586 break;
587 case nir_texop_txs:
588 fprintf(fp, "txs ");
589 break;
590 case nir_texop_lod:
591 fprintf(fp, "lod ");
592 break;
593 case nir_texop_tg4:
594 fprintf(fp, "tg4 ");
595 break;
596 case nir_texop_query_levels:
597 fprintf(fp, "query_levels ");
598 break;
599 case nir_texop_texture_samples:
600 fprintf(fp, "texture_samples ");
601 break;
602 case nir_texop_samples_identical:
603 fprintf(fp, "samples_identical ");
604 break;
605 default:
606 unreachable("Invalid texture operation");
607 break;
608 }
609
610 for (unsigned i = 0; i < instr->num_srcs; i++) {
611 print_src(&instr->src[i].src, state);
612
613 fprintf(fp, " ");
614
615 switch(instr->src[i].src_type) {
616 case nir_tex_src_coord:
617 fprintf(fp, "(coord)");
618 break;
619 case nir_tex_src_projector:
620 fprintf(fp, "(projector)");
621 break;
622 case nir_tex_src_comparitor:
623 fprintf(fp, "(comparitor)");
624 break;
625 case nir_tex_src_offset:
626 fprintf(fp, "(offset)");
627 break;
628 case nir_tex_src_bias:
629 fprintf(fp, "(bias)");
630 break;
631 case nir_tex_src_lod:
632 fprintf(fp, "(lod)");
633 break;
634 case nir_tex_src_ms_index:
635 fprintf(fp, "(ms_index)");
636 break;
637 case nir_tex_src_ddx:
638 fprintf(fp, "(ddx)");
639 break;
640 case nir_tex_src_ddy:
641 fprintf(fp, "(ddy)");
642 break;
643 case nir_tex_src_texture_offset:
644 fprintf(fp, "(texture_offset)");
645 break;
646 case nir_tex_src_sampler_offset:
647 fprintf(fp, "(sampler_offset)");
648 break;
649
650 default:
651 unreachable("Invalid texture source type");
652 break;
653 }
654
655 fprintf(fp, ", ");
656 }
657
658 if (instr->op == nir_texop_tg4) {
659 fprintf(fp, "%u (gather_component), ", instr->component);
660 }
661
662 if (instr->texture) {
663 print_deref(instr->texture, state);
664 fprintf(fp, " (texture)");
665 if (instr->sampler) {
666 print_deref(instr->sampler, state);
667 fprintf(fp, " (sampler)");
668 }
669 } else {
670 assert(instr->sampler == NULL);
671 fprintf(fp, "%u (texture) %u (sampler)",
672 instr->texture_index, instr->sampler_index);
673 }
674 }
675
676 static void
677 print_call_instr(nir_call_instr *instr, print_state *state)
678 {
679 FILE *fp = state->fp;
680
681 fprintf(fp, "call %s ", instr->callee->name);
682
683 for (unsigned i = 0; i < instr->num_params; i++) {
684 if (i != 0)
685 fprintf(fp, ", ");
686
687 print_deref(instr->params[i], state);
688 }
689
690 if (instr->return_deref != NULL) {
691 if (instr->num_params != 0)
692 fprintf(fp, ", ");
693 fprintf(fp, "returning ");
694 print_deref(instr->return_deref, state);
695 }
696 }
697
698 static void
699 print_load_const_instr(nir_load_const_instr *instr, print_state *state)
700 {
701 FILE *fp = state->fp;
702
703 print_ssa_def(&instr->def, state);
704
705 fprintf(fp, " = load_const (");
706
707 for (unsigned i = 0; i < instr->def.num_components; i++) {
708 if (i != 0)
709 fprintf(fp, ", ");
710
711 /*
712 * we don't really know the type of the constant (if it will be used as a
713 * float or an int), so just print the raw constant in hex for fidelity
714 * and then print the float in a comment for readability.
715 */
716
717 fprintf(fp, "0x%08x /* %f */", instr->value.u[i], instr->value.f[i]);
718 }
719
720 fprintf(fp, ")");
721 }
722
723 static void
724 print_jump_instr(nir_jump_instr *instr, print_state *state)
725 {
726 FILE *fp = state->fp;
727
728 switch (instr->type) {
729 case nir_jump_break:
730 fprintf(fp, "break");
731 break;
732
733 case nir_jump_continue:
734 fprintf(fp, "continue");
735 break;
736
737 case nir_jump_return:
738 fprintf(fp, "return");
739 break;
740 }
741 }
742
743 static void
744 print_ssa_undef_instr(nir_ssa_undef_instr* instr, print_state *state)
745 {
746 FILE *fp = state->fp;
747 print_ssa_def(&instr->def, state);
748 fprintf(fp, " = undefined");
749 }
750
751 static void
752 print_phi_instr(nir_phi_instr *instr, print_state *state)
753 {
754 FILE *fp = state->fp;
755 print_dest(&instr->dest, state);
756 fprintf(fp, " = phi ");
757 nir_foreach_phi_src(instr, src) {
758 if (&src->node != exec_list_get_head(&instr->srcs))
759 fprintf(fp, ", ");
760
761 fprintf(fp, "block_%u: ", src->pred->index);
762 print_src(&src->src, state);
763 }
764 }
765
766 static void
767 print_parallel_copy_instr(nir_parallel_copy_instr *instr, print_state *state)
768 {
769 FILE *fp = state->fp;
770 nir_foreach_parallel_copy_entry(instr, entry) {
771 if (&entry->node != exec_list_get_head(&instr->entries))
772 fprintf(fp, "; ");
773
774 print_dest(&entry->dest, state);
775 fprintf(fp, " = ");
776 print_src(&entry->src, state);
777 }
778 }
779
780 static void
781 print_instr(const nir_instr *instr, print_state *state, unsigned tabs)
782 {
783 FILE *fp = state->fp;
784 print_tabs(tabs, fp);
785
786 switch (instr->type) {
787 case nir_instr_type_alu:
788 print_alu_instr(nir_instr_as_alu(instr), state);
789 break;
790
791 case nir_instr_type_call:
792 print_call_instr(nir_instr_as_call(instr), state);
793 break;
794
795 case nir_instr_type_intrinsic:
796 print_intrinsic_instr(nir_instr_as_intrinsic(instr), state);
797 break;
798
799 case nir_instr_type_tex:
800 print_tex_instr(nir_instr_as_tex(instr), state);
801 break;
802
803 case nir_instr_type_load_const:
804 print_load_const_instr(nir_instr_as_load_const(instr), state);
805 break;
806
807 case nir_instr_type_jump:
808 print_jump_instr(nir_instr_as_jump(instr), state);
809 break;
810
811 case nir_instr_type_ssa_undef:
812 print_ssa_undef_instr(nir_instr_as_ssa_undef(instr), state);
813 break;
814
815 case nir_instr_type_phi:
816 print_phi_instr(nir_instr_as_phi(instr), state);
817 break;
818
819 case nir_instr_type_parallel_copy:
820 print_parallel_copy_instr(nir_instr_as_parallel_copy(instr), state);
821 break;
822
823 default:
824 unreachable("Invalid instruction type");
825 break;
826 }
827 }
828
829 static int
830 compare_block_index(const void *p1, const void *p2)
831 {
832 const nir_block *block1 = *((const nir_block **) p1);
833 const nir_block *block2 = *((const nir_block **) p2);
834
835 return (int) block1->index - (int) block2->index;
836 }
837
838 static void print_cf_node(nir_cf_node *node, print_state *state,
839 unsigned tabs);
840
841 static void
842 print_block(nir_block *block, print_state *state, unsigned tabs)
843 {
844 FILE *fp = state->fp;
845
846 print_tabs(tabs, fp);
847 fprintf(fp, "block block_%u:\n", block->index);
848
849 /* sort the predecessors by index so we consistently print the same thing */
850
851 nir_block **preds =
852 malloc(block->predecessors->entries * sizeof(nir_block *));
853
854 struct set_entry *entry;
855 unsigned i = 0;
856 set_foreach(block->predecessors, entry) {
857 preds[i++] = (nir_block *) entry->key;
858 }
859
860 qsort(preds, block->predecessors->entries, sizeof(nir_block *),
861 compare_block_index);
862
863 print_tabs(tabs, fp);
864 fprintf(fp, "/* preds: ");
865 for (unsigned i = 0; i < block->predecessors->entries; i++) {
866 fprintf(fp, "block_%u ", preds[i]->index);
867 }
868 fprintf(fp, "*/\n");
869
870 free(preds);
871
872 nir_foreach_instr(block, instr) {
873 print_instr(instr, state, tabs);
874 fprintf(fp, "\n");
875 }
876
877 print_tabs(tabs, fp);
878 fprintf(fp, "/* succs: ");
879 for (unsigned i = 0; i < 2; i++)
880 if (block->successors[i]) {
881 fprintf(fp, "block_%u ", block->successors[i]->index);
882 }
883 fprintf(fp, "*/\n");
884 }
885
886 static void
887 print_if(nir_if *if_stmt, print_state *state, unsigned tabs)
888 {
889 FILE *fp = state->fp;
890
891 print_tabs(tabs, fp);
892 fprintf(fp, "if ");
893 print_src(&if_stmt->condition, state);
894 fprintf(fp, " {\n");
895 foreach_list_typed(nir_cf_node, node, node, &if_stmt->then_list) {
896 print_cf_node(node, state, tabs + 1);
897 }
898 print_tabs(tabs, fp);
899 fprintf(fp, "} else {\n");
900 foreach_list_typed(nir_cf_node, node, node, &if_stmt->else_list) {
901 print_cf_node(node, state, tabs + 1);
902 }
903 print_tabs(tabs, fp);
904 fprintf(fp, "}\n");
905 }
906
907 static void
908 print_loop(nir_loop *loop, print_state *state, unsigned tabs)
909 {
910 FILE *fp = state->fp;
911
912 print_tabs(tabs, fp);
913 fprintf(fp, "loop {\n");
914 foreach_list_typed(nir_cf_node, node, node, &loop->body) {
915 print_cf_node(node, state, tabs + 1);
916 }
917 print_tabs(tabs, fp);
918 fprintf(fp, "}\n");
919 }
920
921 static void
922 print_cf_node(nir_cf_node *node, print_state *state, unsigned int tabs)
923 {
924 switch (node->type) {
925 case nir_cf_node_block:
926 print_block(nir_cf_node_as_block(node), state, tabs);
927 break;
928
929 case nir_cf_node_if:
930 print_if(nir_cf_node_as_if(node), state, tabs);
931 break;
932
933 case nir_cf_node_loop:
934 print_loop(nir_cf_node_as_loop(node), state, tabs);
935 break;
936
937 default:
938 unreachable("Invalid CFG node type");
939 }
940 }
941
942 static void
943 print_function_impl(nir_function_impl *impl, print_state *state)
944 {
945 FILE *fp = state->fp;
946
947 fprintf(fp, "\nimpl %s ", impl->function->name);
948
949 for (unsigned i = 0; i < impl->num_params; i++) {
950 if (i != 0)
951 fprintf(fp, ", ");
952
953 print_arg(impl->params[i], state);
954 }
955
956 if (impl->return_var != NULL) {
957 if (impl->num_params != 0)
958 fprintf(fp, ", ");
959 fprintf(fp, "returning ");
960 print_arg(impl->return_var, state);
961 }
962
963 fprintf(fp, "{\n");
964
965 for (unsigned i = 0; i < impl->num_params; i++) {
966 fprintf(fp, "\t");
967 print_var_decl(impl->params[i], state);
968 }
969
970 if (impl->return_var) {
971 fprintf(fp, "\t");
972 print_var_decl(impl->return_var, state);
973 }
974
975 nir_foreach_variable(var, &impl->locals) {
976 fprintf(fp, "\t");
977 print_var_decl(var, state);
978 }
979
980 foreach_list_typed(nir_register, reg, node, &impl->registers) {
981 fprintf(fp, "\t");
982 print_register_decl(reg, state);
983 }
984
985 nir_index_blocks(impl);
986
987 foreach_list_typed(nir_cf_node, node, node, &impl->body) {
988 print_cf_node(node, state, 1);
989 }
990
991 fprintf(fp, "\tblock block_%u:\n}\n\n", impl->end_block->index);
992 }
993
994 static void
995 print_function(nir_function *function, print_state *state)
996 {
997 FILE *fp = state->fp;
998
999 fprintf(fp, "decl_function %s ", function->name);
1000
1001 for (unsigned i = 0; i < function->num_params; i++) {
1002 if (i != 0)
1003 fprintf(fp, ", ");
1004
1005 switch (function->params[i].param_type) {
1006 case nir_parameter_in:
1007 fprintf(fp, "in ");
1008 break;
1009 case nir_parameter_out:
1010 fprintf(fp, "out ");
1011 break;
1012 case nir_parameter_inout:
1013 fprintf(fp, "inout ");
1014 break;
1015 default:
1016 unreachable("Invalid parameter type");
1017 }
1018
1019 glsl_print_type(function->params[i].type, fp);
1020 }
1021
1022 if (function->return_type != NULL) {
1023 if (function->num_params != 0)
1024 fprintf(fp, ", ");
1025 fprintf(fp, "returning ");
1026 glsl_print_type(function->return_type, fp);
1027 }
1028
1029 fprintf(fp, "\n");
1030
1031 if (function->impl != NULL) {
1032 print_function_impl(function->impl, state);
1033 return;
1034 }
1035 }
1036
1037 static void
1038 init_print_state(print_state *state, nir_shader *shader, FILE *fp)
1039 {
1040 state->fp = fp;
1041 state->shader = shader;
1042 state->ht = _mesa_hash_table_create(NULL, _mesa_hash_pointer,
1043 _mesa_key_pointer_equal);
1044 state->syms = _mesa_set_create(NULL, _mesa_key_hash_string,
1045 _mesa_key_string_equal);
1046 state->index = 0;
1047 }
1048
1049 static void
1050 destroy_print_state(print_state *state)
1051 {
1052 _mesa_hash_table_destroy(state->ht, NULL);
1053 _mesa_set_destroy(state->syms, NULL);
1054 }
1055
1056 void
1057 nir_print_shader(nir_shader *shader, FILE *fp)
1058 {
1059 print_state state;
1060 init_print_state(&state, shader, fp);
1061
1062 fprintf(fp, "shader: %s\n", gl_shader_stage_name(shader->stage));
1063
1064 if (shader->info.name)
1065 fprintf(fp, "name: %s\n", shader->info.name);
1066
1067 if (shader->info.label)
1068 fprintf(fp, "label: %s\n", shader->info.label);
1069
1070 fprintf(fp, "inputs: %u\n", shader->num_inputs);
1071 fprintf(fp, "outputs: %u\n", shader->num_outputs);
1072 fprintf(fp, "uniforms: %u\n", shader->num_uniforms);
1073 fprintf(fp, "shared: %u\n", shader->num_shared);
1074
1075 nir_foreach_variable(var, &shader->uniforms) {
1076 print_var_decl(var, &state);
1077 }
1078
1079 nir_foreach_variable(var, &shader->inputs) {
1080 print_var_decl(var, &state);
1081 }
1082
1083 nir_foreach_variable(var, &shader->outputs) {
1084 print_var_decl(var, &state);
1085 }
1086
1087 nir_foreach_variable(var, &shader->shared) {
1088 print_var_decl(var, &state);
1089 }
1090
1091 nir_foreach_variable(var, &shader->globals) {
1092 print_var_decl(var, &state);
1093 }
1094
1095 nir_foreach_variable(var, &shader->system_values) {
1096 print_var_decl(var, &state);
1097 }
1098
1099 foreach_list_typed(nir_register, reg, node, &shader->registers) {
1100 print_register_decl(reg, &state);
1101 }
1102
1103 foreach_list_typed(nir_function, func, node, &shader->functions) {
1104 print_function(func, &state);
1105 }
1106
1107 destroy_print_state(&state);
1108 }
1109
1110 void
1111 nir_print_instr(const nir_instr *instr, FILE *fp)
1112 {
1113 print_state state = {
1114 .fp = fp,
1115 };
1116 print_instr(instr, &state, 0);
1117
1118 }