6f389025fec53d99547fd0220237c943dc0ead90
[mesa.git] / src / panfrost / midgard / midgard_print.c
1 /*
2 * Copyright (C) 2018-2019 Alyssa Rosenzweig <alyssa@rosenzweig.io>
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 FROM,
20 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21 * SOFTWARE.
22 */
23
24 #include <math.h>
25
26 #include "util/bitscan.h"
27 #include "util/half_float.h"
28 #include "compiler.h"
29 #include "helpers.h"
30 #include "midgard_ops.h"
31
32 /* Pretty printer for Midgard IR, for use debugging compiler-internal
33 * passes like register allocation. The output superficially resembles
34 * Midgard assembly, with the exception that unit information and such is
35 * (normally) omitted, and generic indices are usually used instead of
36 * registers */
37
38 static void
39 mir_print_index(int source)
40 {
41 if (source == ~0) {
42 printf("_");
43 return;
44 }
45
46 if (source >= SSA_FIXED_MINIMUM) {
47 /* Specific register */
48 int reg = SSA_REG_FROM_FIXED(source);
49
50 /* TODO: Moving threshold */
51 if (reg > 16 && reg < 24)
52 printf("u%d", 23 - reg);
53 else
54 printf("r%d", reg);
55 } else {
56 printf("%d", source);
57 }
58 }
59
60 static const char components[16] = "xyzwefghijklmnop";
61
62 static void
63 mir_print_mask(unsigned mask)
64 {
65 printf(".");
66
67 for (unsigned i = 0; i < 16; ++i) {
68 if (mask & (1 << i))
69 putchar(components[i]);
70 }
71 }
72
73 static void
74 mir_print_swizzle(unsigned *swizzle, nir_alu_type T)
75 {
76 unsigned comps = mir_components_for_type(T);
77
78 printf(".");
79
80 for (unsigned i = 0; i < comps; ++i) {
81 unsigned C = swizzle[i];
82 assert(C < comps);
83 putchar(components[C]);
84 }
85 }
86
87 static const char *
88 mir_get_unit(unsigned unit)
89 {
90 switch (unit) {
91 case ALU_ENAB_VEC_MUL:
92 return "vmul";
93 case ALU_ENAB_SCAL_ADD:
94 return "sadd";
95 case ALU_ENAB_VEC_ADD:
96 return "vadd";
97 case ALU_ENAB_SCAL_MUL:
98 return "smul";
99 case ALU_ENAB_VEC_LUT:
100 return "lut";
101 case ALU_ENAB_BR_COMPACT:
102 return "br";
103 case ALU_ENAB_BRANCH:
104 return "brx";
105 default:
106 return "???";
107 }
108 }
109
110 void
111 mir_print_constant_component(FILE *fp, const midgard_constants *consts, unsigned c,
112 midgard_reg_mode reg_mode, bool half,
113 unsigned mod, midgard_alu_op op)
114 {
115 bool is_sint = false, is_uint = false, is_hex = false;
116 const char *opname = alu_opcode_props[op].name;
117
118 /* Add a sentinel name to prevent crashing */
119 if (!opname)
120 opname = "unknown";
121
122 if (opname[0] == 'u') {
123 /* If the opcode starts with a 'u' we are sure we deal with an
124 * unsigned int operation
125 */
126 is_uint = true;
127 } else if (opname[0] == 'i') {
128 /* Bit ops are easier to follow when the constant is printed in
129 * hexadecimal. Other operations starting with a 'i' are
130 * considered to operate on signed integers. That might not
131 * be true for all of them, but it's good enough for traces.
132 */
133 if (op >= midgard_alu_op_iand &&
134 op <= midgard_alu_op_ibitcount8)
135 is_hex = true;
136 else
137 is_sint = true;
138 }
139
140 if (half)
141 reg_mode--;
142
143 switch (reg_mode) {
144 case midgard_reg_mode_64:
145 if (is_sint) {
146 fprintf(fp, "%"PRIi64, consts->i64[c]);
147 } else if (is_uint) {
148 fprintf(fp, "%"PRIu64, consts->u64[c]);
149 } else if (is_hex) {
150 fprintf(fp, "0x%"PRIX64, consts->u64[c]);
151 } else {
152 double v = consts->f64[c];
153
154 if (mod & MIDGARD_FLOAT_MOD_ABS) v = fabs(v);
155 if (mod & MIDGARD_FLOAT_MOD_NEG) v = -v;
156
157 printf("%g", v);
158 }
159 break;
160
161 case midgard_reg_mode_32:
162 if (is_sint) {
163 int64_t v;
164
165 if (half && mod == midgard_int_zero_extend)
166 v = consts->u32[c];
167 else if (half && mod == midgard_int_shift)
168 v = (uint64_t)consts->u32[c] << 32;
169 else
170 v = consts->i32[c];
171
172 fprintf(fp, "%"PRIi64, v);
173 } else if (is_uint || is_hex) {
174 uint64_t v;
175
176 if (half && mod == midgard_int_shift)
177 v = (uint64_t)consts->u32[c] << 32;
178 else
179 v = consts->u32[c];
180
181 fprintf(fp, is_uint ? "%"PRIu64 : "0x%"PRIX64, v);
182 } else {
183 float v = consts->f32[c];
184
185 if (mod & MIDGARD_FLOAT_MOD_ABS) v = fabsf(v);
186 if (mod & MIDGARD_FLOAT_MOD_NEG) v = -v;
187
188 fprintf(fp, "%g", v);
189 }
190 break;
191
192 case midgard_reg_mode_16:
193 if (is_sint) {
194 int32_t v;
195
196 if (half && mod == midgard_int_zero_extend)
197 v = consts->u16[c];
198 else if (half && mod == midgard_int_shift)
199 v = (uint32_t)consts->u16[c] << 16;
200 else
201 v = consts->i16[c];
202
203 fprintf(fp, "%d", v);
204 } else if (is_uint || is_hex) {
205 uint32_t v;
206
207 if (half && mod == midgard_int_shift)
208 v = (uint32_t)consts->u16[c] << 16;
209 else
210 v = consts->u16[c];
211
212 fprintf(fp, is_uint ? "%u" : "0x%X", v);
213 } else {
214 float v = _mesa_half_to_float(consts->f16[c]);
215
216 if (mod & MIDGARD_FLOAT_MOD_ABS) v = fabsf(v);
217 if (mod & MIDGARD_FLOAT_MOD_NEG) v = -v;
218
219 fprintf(fp, "%g", v);
220 }
221 break;
222
223 case midgard_reg_mode_8:
224 fprintf(fp, "0x%X", consts->u8[c]);
225
226 if (mod)
227 fprintf(fp, " /* %u */", mod);
228
229 assert(!half); /* No 4-bit */
230
231 break;
232 }
233 }
234
235 static void
236 mir_print_embedded_constant(midgard_instruction *ins, unsigned src_idx)
237 {
238 midgard_vector_alu_src src;
239
240 assert(src_idx <= 1);
241 if (src_idx == 0)
242 src = vector_alu_from_unsigned(ins->alu.src1);
243 else
244 src = vector_alu_from_unsigned(ins->alu.src2);
245
246 unsigned *swizzle = ins->swizzle[src_idx];
247 unsigned comp_mask = effective_writemask(ins->alu.op, ins->mask);
248 unsigned num_comp = util_bitcount(comp_mask);
249 unsigned max_comp = mir_components_for_type(ins->dest_type);
250 bool first = true;
251
252 printf("#");
253
254 if (num_comp > 1)
255 printf("vec%d(", num_comp);
256
257 for (unsigned comp = 0; comp < max_comp; comp++) {
258 if (!(comp_mask & (1 << comp)))
259 continue;
260
261 if (first)
262 first = false;
263 else
264 printf(", ");
265
266 mir_print_constant_component(stdout, &ins->constants,
267 swizzle[comp], ins->alu.reg_mode,
268 src.half, src.mod, ins->alu.op);
269 }
270
271 if (num_comp > 1)
272 printf(")");
273 }
274
275 #define PRINT_SRC(ins, c) \
276 do { mir_print_index(ins->src[c]); \
277 if (ins->src[c] != ~0 && ins->src_types[c] != nir_type_invalid) { \
278 pan_print_alu_type(ins->src_types[c], stdout); \
279 mir_print_swizzle(ins->swizzle[c], ins->src_types[c]); \
280 } } while (0)
281
282 void
283 mir_print_instruction(midgard_instruction *ins)
284 {
285 printf("\t");
286
287 if (midgard_is_branch_unit(ins->unit)) {
288 const char *branch_target_names[] = {
289 "goto", "break", "continue", "discard"
290 };
291
292 printf("%s.", mir_get_unit(ins->unit));
293 if (ins->branch.target_type == TARGET_DISCARD)
294 printf("discard.");
295 else if (ins->writeout)
296 printf("write.");
297 else if (ins->unit == ALU_ENAB_BR_COMPACT &&
298 !ins->branch.conditional)
299 printf("uncond.");
300 else
301 printf("cond.");
302
303 if (!ins->branch.conditional)
304 printf("always");
305 else if (ins->branch.invert_conditional)
306 printf("false");
307 else
308 printf("true");
309
310 if (ins->writeout) {
311 printf(" (c: ");
312 PRINT_SRC(ins, 0);
313 printf(", z: ");
314 PRINT_SRC(ins, 2);
315 printf(", s: ");
316 PRINT_SRC(ins, 3);
317 printf(")");
318 }
319
320 if (ins->branch.target_type != TARGET_DISCARD)
321 printf(" %s -> block(%d)\n",
322 ins->branch.target_type < 4 ?
323 branch_target_names[ins->branch.target_type] : "??",
324 ins->branch.target_block);
325
326 return;
327 }
328
329 switch (ins->type) {
330 case TAG_ALU_4: {
331 midgard_alu_op op = ins->alu.op;
332 const char *name = alu_opcode_props[op].name;
333
334 if (ins->unit)
335 printf("%s.", mir_get_unit(ins->unit));
336
337 printf("%s", name ? name : "??");
338 break;
339 }
340
341 case TAG_LOAD_STORE_4: {
342 midgard_load_store_op op = ins->load_store.op;
343 const char *name = load_store_opcode_props[op].name;
344
345 assert(name);
346 printf("%s", name);
347 break;
348 }
349
350 case TAG_TEXTURE_4: {
351 printf("texture");
352
353 if (ins->helper_terminate)
354 printf(".terminate");
355
356 if (ins->helper_execute)
357 printf(".execute");
358
359 break;
360 }
361
362 default:
363 assert(0);
364 }
365
366 if (ins->compact_branch && ins->branch.invert_conditional)
367 printf(".not");
368
369 printf(" ");
370 mir_print_index(ins->dest);
371
372 if (ins->dest != ~0) {
373 pan_print_alu_type(ins->dest_type, stdout);
374 mir_print_mask(ins->mask);
375 }
376
377 printf(", ");
378
379 unsigned r_constant = SSA_FIXED_REGISTER(REGISTER_CONSTANT);
380
381 if (ins->src[0] == r_constant)
382 mir_print_embedded_constant(ins, 0);
383 else
384 PRINT_SRC(ins, 0);
385
386 printf(", ");
387
388 if (ins->has_inline_constant)
389 printf("#%d", ins->inline_constant);
390 else if (ins->src[1] == r_constant)
391 mir_print_embedded_constant(ins, 1);
392 else
393 PRINT_SRC(ins, 1);
394
395 for (unsigned c = 2; c <= 3; ++c) {
396 printf(", ");
397 PRINT_SRC(ins, c);
398 }
399
400 if (ins->no_spill)
401 printf(" /* no spill */");
402
403 printf("\n");
404 }
405
406 /* Dumps MIR for a block or entire shader respective */
407
408 void
409 mir_print_block(midgard_block *block)
410 {
411 printf("block%u: {\n", block->base.name);
412
413 if (block->scheduled) {
414 mir_foreach_bundle_in_block(block, bundle) {
415 for (unsigned i = 0; i < bundle->instruction_count; ++i)
416 mir_print_instruction(bundle->instructions[i]);
417
418 printf("\n");
419 }
420 } else {
421 mir_foreach_instr_in_block(block, ins) {
422 mir_print_instruction(ins);
423 }
424 }
425
426 printf("}");
427
428 if (block->base.successors[0]) {
429 printf(" -> ");
430 pan_foreach_successor((&block->base), succ)
431 printf(" block%u ", succ->name);
432 }
433
434 printf(" from { ");
435 mir_foreach_predecessor(block, pred)
436 printf("block%u ", pred->base.name);
437 printf("}");
438
439 printf("\n\n");
440 }
441
442 void
443 mir_print_shader(compiler_context *ctx)
444 {
445 mir_foreach_block(ctx, block) {
446 mir_print_block((midgard_block *) block);
447 }
448 }