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