freedreno/ir3: remove tgsi f/e
[mesa.git] / src / gallium / drivers / freedreno / ir3 / ir3_print.c
1 /* -*- mode: C; c-file-style: "k&r"; tab-width 4; indent-tabs-mode: t; -*- */
2
3 /*
4 * Copyright (C) 2014 Rob Clark <robclark@freedesktop.org>
5 *
6 * Permission is hereby granted, free of charge, to any person obtaining a
7 * copy of this software and associated documentation files (the "Software"),
8 * to deal in the Software without restriction, including without limitation
9 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
10 * and/or sell copies of the Software, and to permit persons to whom the
11 * Software is furnished to do so, subject to the following conditions:
12 *
13 * The above copyright notice and this permission notice (including the next
14 * paragraph) shall be included in all copies or substantial portions of the
15 * Software.
16 *
17 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
18 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
20 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
21 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
22 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
23 * SOFTWARE.
24 *
25 * Authors:
26 * Rob Clark <robclark@freedesktop.org>
27 */
28
29 #include <stdarg.h>
30 #include <stdio.h>
31
32 #include "ir3.h"
33
34 #define PTRID(x) ((unsigned long)(x))
35
36 static void print_instr_name(struct ir3_instruction *instr)
37 {
38 #ifdef DEBUG
39 printf("%04u:", instr->serialno);
40 #endif
41 printf("%03u: ", instr->depth);
42
43 if (instr->flags & IR3_INSTR_SY)
44 printf("(sy)");
45 if (instr->flags & IR3_INSTR_SS)
46 printf("(ss)");
47
48 if (is_meta(instr)) {
49 switch(instr->opc) {
50 case OPC_META_PHI:
51 printf("&#934;");
52 break;
53 default:
54 /* shouldn't hit here.. just for debugging: */
55 switch (instr->opc) {
56 case OPC_META_INPUT: printf("_meta:in"); break;
57 case OPC_META_FO: printf("_meta:fo"); break;
58 case OPC_META_FI: printf("_meta:fi"); break;
59
60 default: printf("_meta:%d", instr->opc); break;
61 }
62 break;
63 }
64 } else if (instr->category == 1) {
65 static const char *type[] = {
66 [TYPE_F16] = "f16",
67 [TYPE_F32] = "f32",
68 [TYPE_U16] = "u16",
69 [TYPE_U32] = "u32",
70 [TYPE_S16] = "s16",
71 [TYPE_S32] = "s32",
72 [TYPE_U8] = "u8",
73 [TYPE_S8] = "s8",
74 };
75 if (instr->cat1.src_type == instr->cat1.dst_type)
76 printf("mov");
77 else
78 printf("cov");
79 printf(".%s%s", type[instr->cat1.src_type], type[instr->cat1.dst_type]);
80 } else {
81 printf("%s", ir3_instr_name(instr));
82 if (instr->flags & IR3_INSTR_3D)
83 printf(".3d");
84 if (instr->flags & IR3_INSTR_A)
85 printf(".a");
86 if (instr->flags & IR3_INSTR_O)
87 printf(".o");
88 if (instr->flags & IR3_INSTR_P)
89 printf(".p");
90 if (instr->flags & IR3_INSTR_S)
91 printf(".s");
92 if (instr->flags & IR3_INSTR_S2EN)
93 printf(".s2en");
94 }
95 }
96
97 static void print_reg_name(struct ir3_register *reg, bool followssa)
98 {
99 if ((reg->flags & (IR3_REG_FABS | IR3_REG_SABS)) &&
100 (reg->flags & (IR3_REG_FNEG | IR3_REG_SNEG | IR3_REG_BNOT)))
101 printf("(absneg)");
102 else if (reg->flags & (IR3_REG_FNEG | IR3_REG_SNEG | IR3_REG_BNOT))
103 printf("(neg)");
104 else if (reg->flags & (IR3_REG_FABS | IR3_REG_SABS))
105 printf("(abs)");
106
107 if (reg->flags & IR3_REG_IMMED) {
108 printf("imm[%f,%d,0x%x]", reg->fim_val, reg->iim_val, reg->iim_val);
109 } else if (reg->flags & IR3_REG_SSA) {
110 printf("_");
111 if (followssa) {
112 printf("[");
113 print_instr_name(reg->instr);
114 printf("]");
115 }
116 } else if (reg->flags & IR3_REG_RELATIV) {
117 if (reg->flags & IR3_REG_HALF)
118 printf("h");
119 if (reg->flags & IR3_REG_CONST)
120 printf("c<a0.x + %u>", reg->num);
121 else
122 printf("\x1b[0;31mr<a0.x + %u>\x1b[0m (%u)", reg->num, reg->size);
123 } else {
124 if (reg->flags & IR3_REG_HALF)
125 printf("h");
126 if (reg->flags & IR3_REG_CONST)
127 printf("c%u.%c", reg_num(reg), "xyzw"[reg_comp(reg)]);
128 else
129 printf("\x1b[0;31mr%u.%c\x1b[0m", reg_num(reg), "xyzw"[reg_comp(reg)]);
130 }
131 }
132
133 static void
134 tab(int lvl)
135 {
136 for (int i = 0; i < lvl; i++)
137 printf("\t");
138 }
139
140 static void
141 print_instr(struct ir3_instruction *instr, int lvl)
142 {
143 unsigned i;
144
145 tab(lvl);
146
147 print_instr_name(instr);
148 for (i = 0; i < instr->regs_count; i++) {
149 struct ir3_register *reg = instr->regs[i];
150 printf(i ? ", " : " ");
151 print_reg_name(reg, !!i);
152 }
153
154 if (instr->address) {
155 printf(", address=_");
156 printf("[");
157 print_instr_name(instr->address);
158 printf("]");
159 }
160
161 if (instr->fanin) {
162 printf(", fanin=_");
163 printf("[");
164 print_instr_name(instr->fanin);
165 printf("]");
166 }
167
168 if (is_meta(instr)) {
169 if (instr->opc == OPC_META_FO) {
170 printf(", off=%d", instr->fo.off);
171 } else if ((instr->opc == OPC_META_FI) && instr->fi.aid) {
172 printf(", aid=%d", instr->fi.aid);
173 }
174 }
175
176 printf("\n");
177 }
178
179 void ir3_print_instr(struct ir3_instruction *instr)
180 {
181 print_instr(instr, 0);
182 }
183
184 static void
185 print_block(struct ir3_block *block, int lvl)
186 {
187 tab(lvl); printf("block {\n");
188 list_for_each_entry (struct ir3_instruction, instr, &block->instr_list, node) {
189 print_instr(instr, lvl+1);
190 }
191 tab(lvl); printf("}\n");
192 }
193
194 void
195 ir3_print(struct ir3 *ir)
196 {
197 struct ir3_block *block = ir->block;
198
199 print_block(block, 0);
200
201 for (unsigned i = 0; i < block->noutputs; i++) {
202 if (!block->outputs[i])
203 continue;
204 printf("out%d: ", i);
205 print_instr(block->outputs[i], 0);
206 }
207 }