lima: introduce ppir_op_load_coords_reg to differentiate between loading texture...
[mesa.git] / src / gallium / drivers / lima / ir / pp / nir.c
1 /*
2 * Copyright (c) 2017 Lima Project
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, sub license,
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
12 * next paragraph) shall be included in all copies or substantial portions
13 * of the 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 NON-INFRINGEMENT. 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
21 * DEALINGS IN THE SOFTWARE.
22 *
23 */
24
25 #include <string.h>
26
27 #include "util/hash_table.h"
28 #include "util/ralloc.h"
29 #include "util/bitscan.h"
30 #include "compiler/nir/nir.h"
31 #include "pipe/p_state.h"
32
33
34 #include "ppir.h"
35
36 static void *ppir_node_create_ssa(ppir_block *block, ppir_op op, nir_ssa_def *ssa)
37 {
38 ppir_node *node = ppir_node_create(block, op, ssa->index, 0);
39 if (!node)
40 return NULL;
41
42 ppir_dest *dest = ppir_node_get_dest(node);
43 dest->type = ppir_target_ssa;
44 dest->ssa.num_components = ssa->num_components;
45 dest->ssa.live_in = INT_MAX;
46 dest->ssa.live_out = 0;
47 dest->write_mask = u_bit_consecutive(0, ssa->num_components);
48
49 if (node->type == ppir_node_type_load ||
50 node->type == ppir_node_type_store)
51 dest->ssa.is_head = true;
52
53 return node;
54 }
55
56 static void *ppir_node_create_reg(ppir_block *block, ppir_op op,
57 nir_register *reg, unsigned mask)
58 {
59 ppir_node *node = ppir_node_create(block, op, reg->index, mask);
60 if (!node)
61 return NULL;
62
63 ppir_dest *dest = ppir_node_get_dest(node);
64
65 list_for_each_entry(ppir_reg, r, &block->comp->reg_list, list) {
66 if (r->index == reg->index) {
67 dest->reg = r;
68 break;
69 }
70 }
71
72 dest->type = ppir_target_register;
73 dest->write_mask = mask;
74
75 if (node->type == ppir_node_type_load ||
76 node->type == ppir_node_type_store)
77 dest->reg->is_head = true;
78
79 return node;
80 }
81
82 static void *ppir_node_create_dest(ppir_block *block, ppir_op op,
83 nir_dest *dest, unsigned mask)
84 {
85 unsigned index = -1;
86
87 if (dest) {
88 if (dest->is_ssa)
89 return ppir_node_create_ssa(block, op, &dest->ssa);
90 else
91 return ppir_node_create_reg(block, op, dest->reg.reg, mask);
92 }
93
94 return ppir_node_create(block, op, index, 0);
95 }
96
97 static void ppir_node_add_src(ppir_compiler *comp, ppir_node *node,
98 ppir_src *ps, nir_src *ns, unsigned mask)
99 {
100 ppir_node *child = NULL;
101
102 if (ns->is_ssa) {
103 child = comp->var_nodes[ns->ssa->index];
104 /* Clone consts for each successor */
105 switch (child->op) {
106 case ppir_op_const:
107 child = ppir_node_clone(node->block, child);
108 break;
109 case ppir_op_load_varying:
110 if ((node->op != ppir_op_load_texture)) {
111 /* Clone varying loads for each block */
112 if (child->block != node->block) {
113 child = ppir_node_clone(node->block, child);
114 comp->var_nodes[ns->ssa->index] = child;
115 }
116 break;
117 }
118 /* At least one successor is load_texture, promote it to load_coords
119 * to ensure that is has exactly one successor */
120 child->op = ppir_op_load_coords;
121 /* Fallthrough */
122 case ppir_op_load_uniform:
123 case ppir_op_load_coords:
124 case ppir_op_load_coords_reg:
125 /* Clone uniform and texture coord loads for each block.
126 * Also ensure that each load has a single successor.
127 * Let's do a fetch each time and hope for a cache hit instead
128 * of increasing reg pressure.
129 */
130 if (child->block != node->block || !ppir_node_is_root(child)) {
131 child = ppir_node_clone(node->block, child);
132 comp->var_nodes[ns->ssa->index] = child;
133 }
134 break;
135 default:
136 break;
137 }
138
139 if (child->op != ppir_op_undef)
140 ppir_node_add_dep(node, child, ppir_dep_src);
141 }
142 else {
143 nir_register *reg = ns->reg.reg;
144 while (mask) {
145 int swizzle = ps->swizzle[u_bit_scan(&mask)];
146 child = comp->var_nodes[(reg->index << 2) + comp->reg_base + swizzle];
147 /* Reg is read before it was written, create a dummy node for it */
148 if (!child) {
149 child = ppir_node_create_reg(node->block, ppir_op_undef, reg,
150 u_bit_consecutive(0, 4));
151 comp->var_nodes[(reg->index << 2) + comp->reg_base + swizzle] = child;
152 }
153 /* Don't add dummies or recursive deps for ops like r1 = r1 + ssa1 */
154 if (child && node != child && child->op != ppir_op_undef)
155 ppir_node_add_dep(node, child, ppir_dep_src);
156 }
157 }
158
159 ppir_node_target_assign(ps, child);
160 }
161
162 static int nir_to_ppir_opcodes[nir_num_opcodes] = {
163 /* not supported */
164 [0 ... nir_last_opcode] = -1,
165
166 [nir_op_mov] = ppir_op_mov,
167 [nir_op_fmul] = ppir_op_mul,
168 [nir_op_fabs] = ppir_op_abs,
169 [nir_op_fneg] = ppir_op_neg,
170 [nir_op_fadd] = ppir_op_add,
171 [nir_op_fsum3] = ppir_op_sum3,
172 [nir_op_fsum4] = ppir_op_sum4,
173 [nir_op_frsq] = ppir_op_rsqrt,
174 [nir_op_flog2] = ppir_op_log2,
175 [nir_op_fexp2] = ppir_op_exp2,
176 [nir_op_fsqrt] = ppir_op_sqrt,
177 [nir_op_fsin] = ppir_op_sin,
178 [nir_op_fcos] = ppir_op_cos,
179 [nir_op_fmax] = ppir_op_max,
180 [nir_op_fmin] = ppir_op_min,
181 [nir_op_frcp] = ppir_op_rcp,
182 [nir_op_ffloor] = ppir_op_floor,
183 [nir_op_fceil] = ppir_op_ceil,
184 [nir_op_ffract] = ppir_op_fract,
185 [nir_op_sge] = ppir_op_ge,
186 [nir_op_slt] = ppir_op_lt,
187 [nir_op_seq] = ppir_op_eq,
188 [nir_op_sne] = ppir_op_ne,
189 [nir_op_fcsel] = ppir_op_select,
190 [nir_op_inot] = ppir_op_not,
191 [nir_op_ftrunc] = ppir_op_trunc,
192 [nir_op_fsat] = ppir_op_sat,
193 [nir_op_fddx] = ppir_op_ddx,
194 [nir_op_fddy] = ppir_op_ddy,
195 };
196
197 static ppir_node *ppir_emit_alu(ppir_block *block, nir_instr *ni)
198 {
199 nir_alu_instr *instr = nir_instr_as_alu(ni);
200 int op = nir_to_ppir_opcodes[instr->op];
201
202 if (op < 0) {
203 ppir_error("unsupported nir_op: %s\n", nir_op_infos[instr->op].name);
204 return NULL;
205 }
206
207 ppir_alu_node *node = ppir_node_create_dest(block, op, &instr->dest.dest,
208 instr->dest.write_mask);
209 if (!node)
210 return NULL;
211
212 ppir_dest *pd = &node->dest;
213 nir_alu_dest *nd = &instr->dest;
214 if (nd->saturate)
215 pd->modifier = ppir_outmod_clamp_fraction;
216
217 unsigned src_mask;
218 switch (op) {
219 case ppir_op_sum3:
220 src_mask = 0b0111;
221 break;
222 case ppir_op_sum4:
223 src_mask = 0b1111;
224 break;
225 default:
226 src_mask = pd->write_mask;
227 break;
228 }
229
230 unsigned num_child = nir_op_infos[instr->op].num_inputs;
231 node->num_src = num_child;
232
233 for (int i = 0; i < num_child; i++) {
234 nir_alu_src *ns = instr->src + i;
235 ppir_src *ps = node->src + i;
236 memcpy(ps->swizzle, ns->swizzle, sizeof(ps->swizzle));
237 ppir_node_add_src(block->comp, &node->node, ps, &ns->src, src_mask);
238
239 ps->absolute = ns->abs;
240 ps->negate = ns->negate;
241 }
242
243 return &node->node;
244 }
245
246 static ppir_block *ppir_block_create(ppir_compiler *comp);
247
248 static bool ppir_emit_discard_block(ppir_compiler *comp)
249 {
250 ppir_block *block = ppir_block_create(comp);
251 ppir_discard_node *discard;
252 if (!block)
253 return false;
254
255 comp->discard_block = block;
256 block->comp = comp;
257
258 discard = ppir_node_create(block, ppir_op_discard, -1, 0);
259 if (discard)
260 list_addtail(&discard->node.list, &block->node_list);
261 else
262 return false;
263
264 return true;
265 }
266
267 static ppir_node *ppir_emit_discard_if(ppir_block *block, nir_instr *ni)
268 {
269 nir_intrinsic_instr *instr = nir_instr_as_intrinsic(ni);
270 ppir_node *node;
271 ppir_compiler *comp = block->comp;
272 ppir_branch_node *branch;
273
274 if (!comp->discard_block && !ppir_emit_discard_block(comp))
275 return NULL;
276
277 node = ppir_node_create(block, ppir_op_branch, -1, 0);
278 if (!node)
279 return NULL;
280 branch = ppir_node_to_branch(node);
281
282 /* second src and condition will be updated during lowering */
283 ppir_node_add_src(block->comp, node, &branch->src[0],
284 &instr->src[0], u_bit_consecutive(0, instr->num_components));
285 branch->num_src = 1;
286 branch->target = comp->discard_block;
287
288 return node;
289 }
290
291 static ppir_node *ppir_emit_discard(ppir_block *block, nir_instr *ni)
292 {
293 ppir_node *node = ppir_node_create(block, ppir_op_discard, -1, 0);
294
295 return node;
296 }
297
298 static ppir_node *ppir_emit_intrinsic(ppir_block *block, nir_instr *ni)
299 {
300 nir_intrinsic_instr *instr = nir_instr_as_intrinsic(ni);
301 unsigned mask = 0;
302 ppir_load_node *lnode;
303 ppir_alu_node *alu_node;
304
305 switch (instr->intrinsic) {
306 case nir_intrinsic_load_input:
307 if (!instr->dest.is_ssa)
308 mask = u_bit_consecutive(0, instr->num_components);
309
310 lnode = ppir_node_create_dest(block, ppir_op_load_varying, &instr->dest, mask);
311 if (!lnode)
312 return NULL;
313
314 lnode->num_components = instr->num_components;
315 lnode->index = nir_intrinsic_base(instr) * 4 + nir_intrinsic_component(instr);
316 if (nir_src_is_const(instr->src[0]))
317 lnode->index += (uint32_t)(nir_src_as_float(instr->src[0]) * 4);
318 else {
319 lnode->num_src = 1;
320 ppir_node_add_src(block->comp, &lnode->node, &lnode->src, instr->src, 1);
321 }
322 return &lnode->node;
323
324 case nir_intrinsic_load_frag_coord:
325 case nir_intrinsic_load_point_coord:
326 case nir_intrinsic_load_front_face:
327 if (!instr->dest.is_ssa)
328 mask = u_bit_consecutive(0, instr->num_components);
329
330 ppir_op op;
331 switch (instr->intrinsic) {
332 case nir_intrinsic_load_frag_coord:
333 op = ppir_op_load_fragcoord;
334 break;
335 case nir_intrinsic_load_point_coord:
336 op = ppir_op_load_pointcoord;
337 break;
338 case nir_intrinsic_load_front_face:
339 op = ppir_op_load_frontface;
340 break;
341 default:
342 assert(0);
343 break;
344 }
345
346 lnode = ppir_node_create_dest(block, op, &instr->dest, mask);
347 if (!lnode)
348 return NULL;
349
350 lnode->num_components = instr->num_components;
351 return &lnode->node;
352
353 case nir_intrinsic_load_uniform:
354 if (!instr->dest.is_ssa)
355 mask = u_bit_consecutive(0, instr->num_components);
356
357 lnode = ppir_node_create_dest(block, ppir_op_load_uniform, &instr->dest, mask);
358 if (!lnode)
359 return NULL;
360
361 lnode->num_components = instr->num_components;
362 lnode->index = nir_intrinsic_base(instr);
363 if (nir_src_is_const(instr->src[0]))
364 lnode->index += (uint32_t)nir_src_as_float(instr->src[0]);
365 else {
366 lnode->num_src = 1;
367 ppir_node_add_src(block->comp, &lnode->node, &lnode->src, instr->src, 1);
368 }
369
370 return &lnode->node;
371
372 case nir_intrinsic_store_output: {
373 alu_node = ppir_node_create_dest(block, ppir_op_store_color, NULL, 0);
374 if (!alu_node)
375 return NULL;
376
377 ppir_dest *dest = ppir_node_get_dest(&alu_node->node);
378 dest->type = ppir_target_ssa;
379 dest->ssa.num_components = instr->num_components;
380 dest->ssa.live_in = INT_MAX;
381 dest->ssa.live_out = 0;
382 dest->ssa.index = 0;
383 dest->write_mask = u_bit_consecutive(0, instr->num_components);
384
385 alu_node->num_src = 1;
386
387 for (int i = 0; i < instr->num_components; i++)
388 alu_node->src[0].swizzle[i] = i;
389
390 ppir_node_add_src(block->comp, &alu_node->node, alu_node->src, instr->src,
391 u_bit_consecutive(0, instr->num_components));
392
393 return &alu_node->node;
394 }
395
396 case nir_intrinsic_discard:
397 return ppir_emit_discard(block, ni);
398
399 case nir_intrinsic_discard_if:
400 return ppir_emit_discard_if(block, ni);
401
402 default:
403 ppir_error("unsupported nir_intrinsic_instr %s\n",
404 nir_intrinsic_infos[instr->intrinsic].name);
405 return NULL;
406 }
407 }
408
409 static ppir_node *ppir_emit_load_const(ppir_block *block, nir_instr *ni)
410 {
411 nir_load_const_instr *instr = nir_instr_as_load_const(ni);
412 ppir_const_node *node = ppir_node_create_ssa(block, ppir_op_const, &instr->def);
413 if (!node)
414 return NULL;
415
416 assert(instr->def.bit_size == 32);
417
418 for (int i = 0; i < instr->def.num_components; i++)
419 node->constant.value[i].i = instr->value[i].i32;
420 node->constant.num = instr->def.num_components;
421
422 return &node->node;
423 }
424
425 static ppir_node *ppir_emit_ssa_undef(ppir_block *block, nir_instr *ni)
426 {
427 nir_ssa_undef_instr *undef = nir_instr_as_ssa_undef(ni);
428 ppir_node *node = ppir_node_create_ssa(block, ppir_op_undef, &undef->def);
429 if (!node)
430 return NULL;
431 ppir_alu_node *alu = ppir_node_to_alu(node);
432
433 ppir_dest *dest = &alu->dest;
434 dest->ssa.undef = true;
435 ppir_reg *ssa = &dest->ssa;
436
437 list_add(&ssa->list, &block->comp->reg_list);
438
439 return node;
440 }
441
442 static ppir_node *ppir_emit_tex(ppir_block *block, nir_instr *ni)
443 {
444 nir_tex_instr *instr = nir_instr_as_tex(ni);
445 ppir_load_texture_node *node;
446
447 if (instr->op != nir_texop_tex) {
448 ppir_error("unsupported texop %d\n", instr->op);
449 return NULL;
450 }
451
452 unsigned mask = 0;
453 if (!instr->dest.is_ssa)
454 mask = u_bit_consecutive(0, nir_tex_instr_dest_size(instr));
455
456 node = ppir_node_create_dest(block, ppir_op_load_texture, &instr->dest, mask);
457 if (!node)
458 return NULL;
459
460 node->sampler = instr->texture_index;
461
462 switch (instr->sampler_dim) {
463 case GLSL_SAMPLER_DIM_2D:
464 case GLSL_SAMPLER_DIM_RECT:
465 case GLSL_SAMPLER_DIM_EXTERNAL:
466 break;
467 default:
468 ppir_error("unsupported sampler dim: %d\n", instr->sampler_dim);
469 return NULL;
470 }
471
472 node->sampler_dim = instr->sampler_dim;
473
474 for (int i = 0; i < instr->coord_components; i++)
475 node->src_coords.swizzle[i] = i;
476
477 for (int i = 0; i < instr->num_srcs; i++) {
478 switch (instr->src[i].src_type) {
479 case nir_tex_src_coord:
480 ppir_node_add_src(block->comp, &node->node, &node->src_coords, &instr->src[i].src,
481 u_bit_consecutive(0, instr->coord_components));
482 break;
483 default:
484 ppir_error("unsupported texture source type\n");
485 assert(0);
486 return NULL;
487 }
488 }
489
490 return &node->node;
491 }
492
493 static ppir_block *ppir_get_block(ppir_compiler *comp, nir_block *nblock)
494 {
495 ppir_block *block = _mesa_hash_table_u64_search(comp->blocks, (uint64_t)nblock);
496
497 return block;
498 }
499
500 static ppir_node *ppir_emit_jump(ppir_block *block, nir_instr *ni)
501 {
502 ppir_node *node;
503 ppir_compiler *comp = block->comp;
504 ppir_branch_node *branch;
505 ppir_block *jump_block;
506 nir_jump_instr *jump = nir_instr_as_jump(ni);
507
508 switch (jump->type) {
509 case nir_jump_break: {
510 assert(comp->current_block->successors[0]);
511 assert(!comp->current_block->successors[1]);
512 jump_block = comp->current_block->successors[0];
513 }
514 break;
515 case nir_jump_continue:
516 jump_block = comp->loop_cont_block;
517 break;
518 default:
519 ppir_error("nir_jump_instr not support\n");
520 return NULL;
521 }
522
523 assert(jump_block != NULL);
524
525 node = ppir_node_create(block, ppir_op_branch, -1, 0);
526 if (!node)
527 return NULL;
528 branch = ppir_node_to_branch(node);
529
530 /* Unconditional */
531 branch->num_src = 0;
532 branch->target = jump_block;
533
534 return node;
535 }
536
537 static ppir_node *(*ppir_emit_instr[nir_instr_type_phi])(ppir_block *, nir_instr *) = {
538 [nir_instr_type_alu] = ppir_emit_alu,
539 [nir_instr_type_intrinsic] = ppir_emit_intrinsic,
540 [nir_instr_type_load_const] = ppir_emit_load_const,
541 [nir_instr_type_ssa_undef] = ppir_emit_ssa_undef,
542 [nir_instr_type_tex] = ppir_emit_tex,
543 [nir_instr_type_jump] = ppir_emit_jump,
544 };
545
546 static ppir_block *ppir_block_create(ppir_compiler *comp)
547 {
548 ppir_block *block = rzalloc(comp, ppir_block);
549 if (!block)
550 return NULL;
551
552 list_inithead(&block->node_list);
553 list_inithead(&block->instr_list);
554
555 block->comp = comp;
556
557 return block;
558 }
559
560 static bool ppir_emit_block(ppir_compiler *comp, nir_block *nblock)
561 {
562 ppir_block *block = ppir_get_block(comp, nblock);
563
564 comp->current_block = block;
565
566 list_addtail(&block->list, &comp->block_list);
567
568 nir_foreach_instr(instr, nblock) {
569 assert(instr->type < nir_instr_type_phi);
570 ppir_node *node = ppir_emit_instr[instr->type](block, instr);
571 if (!node)
572 return false;
573
574 list_addtail(&node->list, &block->node_list);
575 }
576
577 return true;
578 }
579
580 static bool ppir_emit_cf_list(ppir_compiler *comp, struct exec_list *list);
581
582 static bool ppir_emit_if(ppir_compiler *comp, nir_if *if_stmt)
583 {
584 ppir_node *node;
585 ppir_branch_node *else_branch, *after_branch;
586 nir_block *nir_else_block = nir_if_first_else_block(if_stmt);
587 bool empty_else_block =
588 (nir_else_block == nir_if_last_else_block(if_stmt) &&
589 exec_list_is_empty(&nir_else_block->instr_list));
590 ppir_block *block = comp->current_block;
591
592 node = ppir_node_create(block, ppir_op_branch, -1, 0);
593 if (!node)
594 return false;
595 else_branch = ppir_node_to_branch(node);
596 ppir_node_add_src(block->comp, node, &else_branch->src[0],
597 &if_stmt->condition, 1);
598 else_branch->num_src = 1;
599 /* Negate condition to minimize branching. We're generating following:
600 * current_block: { ...; if (!statement) branch else_block; }
601 * then_block: { ...; branch after_block; }
602 * else_block: { ... }
603 * after_block: { ... }
604 *
605 * or if else list is empty:
606 * block: { if (!statement) branch else_block; }
607 * then_block: { ... }
608 * else_block: after_block: { ... }
609 */
610 else_branch->negate = true;
611 list_addtail(&else_branch->node.list, &block->node_list);
612
613 ppir_emit_cf_list(comp, &if_stmt->then_list);
614 if (empty_else_block) {
615 nir_block *nblock = nir_if_last_else_block(if_stmt);
616 assert(nblock->successors[0]);
617 assert(!nblock->successors[1]);
618 else_branch->target = ppir_get_block(comp, nblock->successors[0]);
619 /* Add empty else block to the list */
620 list_addtail(&block->successors[1]->list, &comp->block_list);
621 return true;
622 }
623
624 else_branch->target = ppir_get_block(comp, nir_if_first_else_block(if_stmt));
625
626 nir_block *last_then_block = nir_if_last_then_block(if_stmt);
627 assert(last_then_block->successors[0]);
628 assert(!last_then_block->successors[1]);
629 block = ppir_get_block(comp, last_then_block);
630 node = ppir_node_create(block, ppir_op_branch, -1, 0);
631 if (!node)
632 return false;
633 after_branch = ppir_node_to_branch(node);
634 /* Unconditional */
635 after_branch->num_src = 0;
636 after_branch->target = ppir_get_block(comp, last_then_block->successors[0]);
637 /* Target should be after_block, will fixup later */
638 list_addtail(&after_branch->node.list, &block->node_list);
639
640 ppir_emit_cf_list(comp, &if_stmt->else_list);
641
642 return true;
643 }
644
645 static bool ppir_emit_loop(ppir_compiler *comp, nir_loop *nloop)
646 {
647 ppir_block *save_loop_cont_block = comp->loop_cont_block;
648 ppir_block *block;
649 ppir_branch_node *loop_branch;
650 nir_block *loop_last_block;
651 ppir_node *node;
652
653 comp->loop_cont_block = ppir_get_block(comp, nir_loop_first_block(nloop));
654
655 ppir_emit_cf_list(comp, &nloop->body);
656
657 loop_last_block = nir_loop_last_block(nloop);
658 block = ppir_get_block(comp, loop_last_block);
659 node = ppir_node_create(block, ppir_op_branch, -1, 0);
660 if (!node)
661 return false;
662 loop_branch = ppir_node_to_branch(node);
663 /* Unconditional */
664 loop_branch->num_src = 0;
665 loop_branch->target = comp->loop_cont_block;
666 list_addtail(&loop_branch->node.list, &block->node_list);
667
668 comp->loop_cont_block = save_loop_cont_block;
669
670 comp->num_loops++;
671
672 return true;
673 }
674
675 static bool ppir_emit_function(ppir_compiler *comp, nir_function_impl *nfunc)
676 {
677 ppir_error("function nir_cf_node not support\n");
678 return false;
679 }
680
681 static bool ppir_emit_cf_list(ppir_compiler *comp, struct exec_list *list)
682 {
683 foreach_list_typed(nir_cf_node, node, node, list) {
684 bool ret;
685
686 switch (node->type) {
687 case nir_cf_node_block:
688 ret = ppir_emit_block(comp, nir_cf_node_as_block(node));
689 break;
690 case nir_cf_node_if:
691 ret = ppir_emit_if(comp, nir_cf_node_as_if(node));
692 break;
693 case nir_cf_node_loop:
694 ret = ppir_emit_loop(comp, nir_cf_node_as_loop(node));
695 break;
696 case nir_cf_node_function:
697 ret = ppir_emit_function(comp, nir_cf_node_as_function(node));
698 break;
699 default:
700 ppir_error("unknown NIR node type %d\n", node->type);
701 return false;
702 }
703
704 if (!ret)
705 return false;
706 }
707
708 return true;
709 }
710
711 static ppir_compiler *ppir_compiler_create(void *prog, unsigned num_reg, unsigned num_ssa)
712 {
713 ppir_compiler *comp = rzalloc_size(
714 prog, sizeof(*comp) + ((num_reg << 2) + num_ssa) * sizeof(ppir_node *));
715 if (!comp)
716 return NULL;
717
718 list_inithead(&comp->block_list);
719 list_inithead(&comp->reg_list);
720 comp->blocks = _mesa_hash_table_u64_create(prog);
721
722 comp->var_nodes = (ppir_node **)(comp + 1);
723 comp->reg_base = num_ssa;
724 comp->prog = prog;
725 return comp;
726 }
727
728 static void ppir_add_ordering_deps(ppir_compiler *comp)
729 {
730 /* Some intrinsics do not have explicit dependencies and thus depend
731 * on instructions order. Consider discard_if and store_ouput as
732 * example. If we don't add fake dependency of discard_if to store_output
733 * scheduler may put store_output first and since store_output terminates
734 * shader on Utgard PP, rest of it will never be executed.
735 * Add fake dependencies for discard/branch/store to preserve
736 * instruction order.
737 *
738 * TODO: scheduler should schedule discard_if as early as possible otherwise
739 * we may end up with suboptimal code for cases like this:
740 *
741 * s3 = s1 < s2
742 * discard_if s3
743 * s4 = s1 + s2
744 * store s4
745 *
746 * In this case store depends on discard_if and s4, but since dependencies can
747 * be scheduled in any order it can result in code like this:
748 *
749 * instr1: s3 = s1 < s3
750 * instr2: s4 = s1 + s2
751 * instr3: discard_if s3
752 * instr4: store s4
753 */
754 list_for_each_entry(ppir_block, block, &comp->block_list, list) {
755 ppir_node *prev_node = NULL;
756 list_for_each_entry_rev(ppir_node, node, &block->node_list, list) {
757 if (prev_node && ppir_node_is_root(node) && node->op != ppir_op_const) {
758 ppir_node_add_dep(prev_node, node, ppir_dep_sequence);
759 }
760 if (node->op == ppir_op_discard ||
761 node->op == ppir_op_store_color ||
762 node->op == ppir_op_store_temp ||
763 node->op == ppir_op_branch) {
764 prev_node = node;
765 }
766 }
767 }
768 }
769
770 static void ppir_print_shader_db(struct nir_shader *nir, ppir_compiler *comp,
771 struct pipe_debug_callback *debug)
772 {
773 const struct shader_info *info = &nir->info;
774 char *shaderdb;
775 int ret = asprintf(&shaderdb,
776 "%s shader: %d inst, %d loops, %d:%d spills:fills\n",
777 gl_shader_stage_name(info->stage),
778 comp->cur_instr_index,
779 comp->num_loops,
780 comp->num_spills,
781 comp->num_fills);
782 assert(ret >= 0);
783
784 if (lima_debug & LIMA_DEBUG_SHADERDB)
785 fprintf(stderr, "SHADER-DB: %s\n", shaderdb);
786
787 pipe_debug_message(debug, SHADER_INFO, "%s", shaderdb);
788 free(shaderdb);
789 }
790
791 static void ppir_add_write_after_read_deps(ppir_compiler *comp)
792 {
793 list_for_each_entry(ppir_block, block, &comp->block_list, list) {
794 list_for_each_entry(ppir_reg, reg, &comp->reg_list, list) {
795 ppir_node *write = NULL;
796 list_for_each_entry_rev(ppir_node, node, &block->node_list, list) {
797 for (int i = 0; i < ppir_node_get_src_num(node); i++) {
798 ppir_src *src = ppir_node_get_src(node, i);
799 if (src && src->type == ppir_target_register &&
800 src->reg == reg &&
801 write) {
802 ppir_debug("Adding dep %d for write %d\n", node->index, write->index);
803 ppir_node_add_dep(write, node, ppir_dep_write_after_read);
804 }
805 }
806 ppir_dest *dest = ppir_node_get_dest(node);
807 if (dest && dest->type == ppir_target_register &&
808 dest->reg == reg)
809 write = node;
810 }
811 }
812 }
813 }
814
815 bool ppir_compile_nir(struct lima_fs_shader_state *prog, struct nir_shader *nir,
816 struct ra_regs *ra,
817 struct pipe_debug_callback *debug)
818 {
819 nir_function_impl *func = nir_shader_get_entrypoint(nir);
820 ppir_compiler *comp = ppir_compiler_create(prog, func->reg_alloc, func->ssa_alloc);
821 if (!comp)
822 return false;
823
824 comp->ra = ra;
825
826 /* 1st pass: create ppir blocks */
827 nir_foreach_function(function, nir) {
828 if (!function->impl)
829 continue;
830
831 nir_foreach_block(nblock, function->impl) {
832 ppir_block *block = ppir_block_create(comp);
833 if (!block)
834 return false;
835 block->index = nblock->index;
836 _mesa_hash_table_u64_insert(comp->blocks, (uint64_t)nblock, block);
837 }
838 }
839
840 /* 2nd pass: populate successors */
841 nir_foreach_function(function, nir) {
842 if (!function->impl)
843 continue;
844
845 nir_foreach_block(nblock, function->impl) {
846 ppir_block *block = ppir_get_block(comp, nblock);
847 assert(block);
848
849 for (int i = 0; i < 2; i++) {
850 if (nblock->successors[i])
851 block->successors[i] = ppir_get_block(comp, nblock->successors[i]);
852 }
853 }
854 }
855
856 /* Validate outputs, we support only gl_FragColor */
857 nir_foreach_variable(var, &nir->outputs) {
858 switch (var->data.location) {
859 case FRAG_RESULT_COLOR:
860 case FRAG_RESULT_DATA0:
861 break;
862 default:
863 ppir_error("unsupported output type\n");
864 goto err_out0;
865 break;
866 }
867 }
868
869 foreach_list_typed(nir_register, reg, node, &func->registers) {
870 ppir_reg *r = rzalloc(comp, ppir_reg);
871 if (!r)
872 return false;
873
874 r->index = reg->index;
875 r->num_components = reg->num_components;
876 r->live_in = INT_MAX;
877 r->live_out = 0;
878 r->is_head = false;
879 list_addtail(&r->list, &comp->reg_list);
880 }
881
882 if (!ppir_emit_cf_list(comp, &func->body))
883 goto err_out0;
884
885 /* If we have discard block add it to the very end */
886 if (comp->discard_block)
887 list_addtail(&comp->discard_block->list, &comp->block_list);
888
889 ppir_node_print_prog(comp);
890
891 if (!ppir_lower_prog(comp))
892 goto err_out0;
893
894 ppir_add_ordering_deps(comp);
895 ppir_add_write_after_read_deps(comp);
896
897 ppir_node_print_prog(comp);
898
899 if (!ppir_node_to_instr(comp))
900 goto err_out0;
901
902 if (!ppir_schedule_prog(comp))
903 goto err_out0;
904
905 if (!ppir_regalloc_prog(comp))
906 goto err_out0;
907
908 if (!ppir_codegen_prog(comp))
909 goto err_out0;
910
911 ppir_print_shader_db(nir, comp, debug);
912
913 _mesa_hash_table_u64_destroy(comp->blocks, NULL);
914 ralloc_free(comp);
915 return true;
916
917 err_out0:
918 _mesa_hash_table_u64_destroy(comp->blocks, NULL);
919 ralloc_free(comp);
920 return false;
921 }
922