0499eb9406fab21c01f4aa8070c2fb2a61f6c66f
[mesa.git] / src / gallium / drivers / vc4 / vc4_qir.c
1 /*
2 * Copyright © 2014 Broadcom
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
24 #include <stdio.h>
25
26 #include "util/u_memory.h"
27 #include "util/u_simple_list.h"
28
29 #include "vc4_qir.h"
30 #include "vc4_qpu.h"
31
32 struct qir_op_info {
33 const char *name;
34 uint8_t ndst, nsrc;
35 bool has_side_effects;
36 };
37
38 static const struct qir_op_info qir_op_info[] = {
39 [QOP_MOV] = { "mov", 1, 1 },
40 [QOP_FADD] = { "fadd", 1, 2 },
41 [QOP_FSUB] = { "fsub", 1, 2 },
42 [QOP_FMUL] = { "fmul", 1, 2 },
43 [QOP_FMIN] = { "fmin", 1, 2 },
44 [QOP_FMAX] = { "fmax", 1, 2 },
45 [QOP_FMINABS] = { "fminabs", 1, 2 },
46 [QOP_FMAXABS] = { "fmaxabs", 1, 2 },
47
48 [QOP_SEQ] = { "seq", 1, 2 },
49 [QOP_SNE] = { "sne", 1, 2 },
50 [QOP_SGE] = { "sge", 1, 2 },
51 [QOP_SLT] = { "slt", 1, 2 },
52 [QOP_CMP] = { "cmp", 1, 3 },
53
54 [QOP_FTOI] = { "ftoi", 1, 1 },
55 [QOP_ITOF] = { "itof", 1, 1 },
56 [QOP_RCP] = { "rcp", 1, 1 },
57 [QOP_RSQ] = { "rsq", 1, 1 },
58 [QOP_EXP2] = { "exp2", 1, 2 },
59 [QOP_LOG2] = { "log2", 1, 2 },
60 [QOP_PACK_COLORS] = { "pack_colors", 1, 4 },
61 [QOP_PACK_SCALED] = { "pack_scaled", 1, 2 },
62 [QOP_VPM_WRITE] = { "vpm_write", 0, 1, true },
63 [QOP_VPM_READ] = { "vpm_read", 0, 1, true },
64 [QOP_TLB_COLOR_WRITE] = { "tlb_color", 0, 1, true },
65 [QOP_VARY_ADD_C] = { "vary_add_c", 1, 1 },
66
67 [QOP_TEX_S] = { "tex_s", 0, 2 },
68 [QOP_TEX_T] = { "tex_t", 0, 2 },
69 [QOP_TEX_R] = { "tex_r", 0, 2 },
70 [QOP_TEX_B] = { "tex_b", 0, 2 },
71 [QOP_TEX_RESULT] = { "tex_result", 0, 0 },
72 [QOP_R4_UNPACK_A] = { "r4_unpack_a", 1, 0 },
73 [QOP_R4_UNPACK_B] = { "r4_unpack_b", 1, 0 },
74 [QOP_R4_UNPACK_C] = { "r4_unpack_c", 1, 0 },
75 [QOP_R4_UNPACK_D] = { "r4_unpack_d", 1, 0 },
76 };
77
78 static const char *
79 qir_get_op_name(enum qop qop)
80 {
81 if (qop < ARRAY_SIZE(qir_op_info) && qir_op_info[qop].name)
82 return qir_op_info[qop].name;
83 else
84 return "???";
85 }
86
87 int
88 qir_get_op_nsrc(enum qop qop)
89 {
90 if (qop < ARRAY_SIZE(qir_op_info) && qir_op_info[qop].name)
91 return qir_op_info[qop].nsrc;
92 else
93 abort();
94 }
95
96 bool
97 qir_has_side_effects(struct qinst *inst)
98 {
99 for (int i = 0; i < qir_get_op_nsrc(inst->op); i++) {
100 if (inst->src[i].file == QFILE_VARY ||
101 inst->src[i].file == QFILE_UNIF)
102 return true;
103 }
104
105 return qir_op_info[inst->op].has_side_effects;
106 }
107
108 static void
109 qir_print_reg(struct qreg reg)
110 {
111 const char *files[] = {
112 [QFILE_TEMP] = "t",
113 [QFILE_VARY] = "v",
114 [QFILE_UNIF] = "u",
115 };
116
117 if (reg.file == QFILE_NULL)
118 fprintf(stderr, "null");
119 else
120 fprintf(stderr, "%s%d", files[reg.file], reg.index);
121 }
122
123 void
124 qir_dump_inst(struct qinst *inst)
125 {
126 fprintf(stderr, "%s ", qir_get_op_name(inst->op));
127
128 qir_print_reg(inst->dst);
129 for (int i = 0; i < qir_get_op_nsrc(inst->op); i++) {
130 fprintf(stderr, ", ");
131 qir_print_reg(inst->src[i]);
132 }
133 }
134
135 void
136 qir_dump(struct qcompile *c)
137 {
138 struct simple_node *node;
139
140 foreach(node, &c->instructions) {
141 struct qinst *inst = (struct qinst *)node;
142 qir_dump_inst(inst);
143 fprintf(stderr, "\n");
144 }
145 }
146
147 struct qreg
148 qir_get_temp(struct qcompile *c)
149 {
150 struct qreg reg;
151
152 reg.file = QFILE_TEMP;
153 reg.index = c->num_temps++;
154
155 return reg;
156 }
157
158 struct qinst *
159 qir_inst(enum qop op, struct qreg dst, struct qreg src0, struct qreg src1)
160 {
161 struct qinst *inst = CALLOC_STRUCT(qinst);
162
163 inst->op = op;
164 inst->dst = dst;
165 inst->src = calloc(2, sizeof(inst->src[0]));
166 inst->src[0] = src0;
167 inst->src[1] = src1;
168
169 return inst;
170 }
171
172 struct qinst *
173 qir_inst4(enum qop op, struct qreg dst,
174 struct qreg a,
175 struct qreg b,
176 struct qreg c,
177 struct qreg d)
178 {
179 struct qinst *inst = CALLOC_STRUCT(qinst);
180
181 inst->op = op;
182 inst->dst = dst;
183 inst->src = calloc(4, sizeof(*inst->src));
184 inst->src[0] = a;
185 inst->src[1] = b;
186 inst->src[2] = c;
187 inst->src[3] = d;
188
189 return inst;
190 }
191
192 void
193 qir_emit(struct qcompile *c, struct qinst *inst)
194 {
195 insert_at_tail(&c->instructions, &inst->link);
196 }
197
198 bool
199 qir_reg_equals(struct qreg a, struct qreg b)
200 {
201 return a.file == b.file && a.index == b.index;
202 }
203
204 struct qcompile *
205 qir_compile_init(void)
206 {
207 struct qcompile *c = CALLOC_STRUCT(qcompile);
208
209 make_empty_list(&c->instructions);
210
211 return c;
212 }
213
214 void
215 qir_compile_destroy(struct qcompile *c)
216 {
217 free(c);
218 }
219
220 const char *
221 qir_get_stage_name(enum qstage stage)
222 {
223 static const char *names[] = {
224 [QSTAGE_FRAG] = "FS",
225 [QSTAGE_VERT] = "VS",
226 [QSTAGE_COORD] = "CS",
227 };
228
229 return names[stage];
230 }
231
232 #define OPTPASS(func) \
233 do { \
234 bool stage_progress = func(c); \
235 if (stage_progress) { \
236 progress = true; \
237 if (print_opt_debug) { \
238 fprintf(stderr, \
239 "QIR opt pass %2d: %s progress\n", \
240 pass, #func); \
241 } \
242 } \
243 } while (0)
244
245 void
246 qir_optimize(struct qcompile *c)
247 {
248 bool print_opt_debug = false;
249 int pass = 1;
250
251 while (true) {
252 bool progress = false;
253
254 OPTPASS(qir_opt_algebraic);
255 OPTPASS(qir_opt_copy_propagation);
256 OPTPASS(qir_opt_dead_code);
257
258 if (!progress)
259 break;
260
261 pass++;
262 }
263 }