lima/ppir: don't clone texture loads
[mesa.git] / src / gallium / drivers / lima / ir / pp / node.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 "util/u_math.h"
26 #include "util/ralloc.h"
27 #include "util/bitscan.h"
28
29 #include "ppir.h"
30
31 const ppir_op_info ppir_op_infos[] = {
32 [ppir_op_mov] = {
33 .name = "mov",
34 .slots = (int []) {
35 PPIR_INSTR_SLOT_ALU_SCL_ADD, PPIR_INSTR_SLOT_ALU_SCL_MUL,
36 PPIR_INSTR_SLOT_ALU_VEC_ADD, PPIR_INSTR_SLOT_ALU_VEC_MUL,
37 PPIR_INSTR_SLOT_END
38 },
39 },
40 [ppir_op_abs] = {
41 .name = "abs",
42 },
43 [ppir_op_neg] = {
44 .name = "neg",
45 },
46 [ppir_op_sat] = {
47 .name = "sat",
48 },
49 [ppir_op_mul] = {
50 .name = "mul",
51 .slots = (int []) {
52 PPIR_INSTR_SLOT_ALU_SCL_MUL, PPIR_INSTR_SLOT_ALU_VEC_MUL,
53 PPIR_INSTR_SLOT_END
54 },
55 },
56 [ppir_op_add] = {
57 .name = "add",
58 .slots = (int []) {
59 PPIR_INSTR_SLOT_ALU_SCL_ADD, PPIR_INSTR_SLOT_ALU_VEC_ADD,
60 PPIR_INSTR_SLOT_END
61 },
62 },
63 [ppir_op_sum3] = {
64 .name = "sum3",
65 .slots = (int []) {
66 PPIR_INSTR_SLOT_ALU_VEC_ADD, PPIR_INSTR_SLOT_END
67 },
68 },
69 [ppir_op_sum4] = {
70 .name = "sum4",
71 .slots = (int []) {
72 PPIR_INSTR_SLOT_ALU_VEC_ADD, PPIR_INSTR_SLOT_END
73 },
74 },
75 [ppir_op_rsqrt] = {
76 .name = "rsqrt",
77 .slots = (int []) {
78 PPIR_INSTR_SLOT_ALU_COMBINE, PPIR_INSTR_SLOT_END
79 },
80 },
81 [ppir_op_log2] = {
82 .name = "log2",
83 .slots = (int []) {
84 PPIR_INSTR_SLOT_ALU_COMBINE, PPIR_INSTR_SLOT_END
85 },
86 },
87 [ppir_op_exp2] = {
88 .name = "exp2",
89 .slots = (int []) {
90 PPIR_INSTR_SLOT_ALU_COMBINE, PPIR_INSTR_SLOT_END
91 },
92 },
93 [ppir_op_sqrt] = {
94 .name = "sqrt",
95 .slots = (int []) {
96 PPIR_INSTR_SLOT_ALU_COMBINE, PPIR_INSTR_SLOT_END
97 },
98 },
99 [ppir_op_sin] = {
100 .name = "sin",
101 .slots = (int []) {
102 PPIR_INSTR_SLOT_ALU_COMBINE, PPIR_INSTR_SLOT_END
103 },
104 },
105 [ppir_op_cos] = {
106 .name = "cos",
107 .slots = (int []) {
108 PPIR_INSTR_SLOT_ALU_COMBINE, PPIR_INSTR_SLOT_END
109 },
110 },
111 [ppir_op_max] = {
112 .name = "max",
113 .slots = (int []) {
114 PPIR_INSTR_SLOT_ALU_SCL_ADD, PPIR_INSTR_SLOT_ALU_SCL_MUL,
115 PPIR_INSTR_SLOT_ALU_VEC_ADD, PPIR_INSTR_SLOT_ALU_VEC_MUL,
116 PPIR_INSTR_SLOT_END
117 },
118 },
119 [ppir_op_min] = {
120 .name = "min",
121 .slots = (int []) {
122 PPIR_INSTR_SLOT_ALU_SCL_ADD, PPIR_INSTR_SLOT_ALU_SCL_MUL,
123 PPIR_INSTR_SLOT_ALU_VEC_ADD, PPIR_INSTR_SLOT_ALU_VEC_MUL,
124 PPIR_INSTR_SLOT_END
125 },
126 },
127 [ppir_op_floor] = {
128 .name = "floor",
129 .slots = (int []) {
130 PPIR_INSTR_SLOT_ALU_SCL_ADD, PPIR_INSTR_SLOT_ALU_VEC_ADD,
131 PPIR_INSTR_SLOT_END
132 },
133 },
134 [ppir_op_ceil] = {
135 .name = "ceil",
136 .slots = (int []) {
137 PPIR_INSTR_SLOT_ALU_SCL_ADD, PPIR_INSTR_SLOT_ALU_VEC_ADD,
138 PPIR_INSTR_SLOT_END
139 },
140 },
141 [ppir_op_fract] = {
142 .name = "fract",
143 .slots = (int []) {
144 PPIR_INSTR_SLOT_ALU_SCL_ADD, PPIR_INSTR_SLOT_ALU_VEC_ADD,
145 PPIR_INSTR_SLOT_END
146 },
147 },
148 [ppir_op_ddx] = {
149 .name = "ddx",
150 .slots = (int []) {
151 PPIR_INSTR_SLOT_ALU_SCL_ADD, PPIR_INSTR_SLOT_ALU_VEC_ADD,
152 PPIR_INSTR_SLOT_END
153 },
154 },
155 [ppir_op_ddy] = {
156 .name = "ddy",
157 .slots = (int []) {
158 PPIR_INSTR_SLOT_ALU_SCL_ADD, PPIR_INSTR_SLOT_ALU_VEC_ADD,
159 PPIR_INSTR_SLOT_END
160 },
161 },
162 [ppir_op_and] = {
163 .name = "and",
164 .slots = (int []) {
165 PPIR_INSTR_SLOT_ALU_SCL_MUL, PPIR_INSTR_SLOT_ALU_VEC_MUL,
166 PPIR_INSTR_SLOT_END
167 },
168 },
169 [ppir_op_or] = {
170 .name = "or",
171 .slots = (int []) {
172 PPIR_INSTR_SLOT_ALU_SCL_MUL, PPIR_INSTR_SLOT_ALU_VEC_MUL,
173 PPIR_INSTR_SLOT_END
174 },
175 },
176 [ppir_op_xor] = {
177 .name = "xor",
178 .slots = (int []) {
179 PPIR_INSTR_SLOT_ALU_SCL_MUL, PPIR_INSTR_SLOT_ALU_VEC_MUL,
180 PPIR_INSTR_SLOT_END
181 },
182 },
183 [ppir_op_not] = {
184 .name = "not",
185 .slots = (int []) {
186 PPIR_INSTR_SLOT_ALU_SCL_MUL, PPIR_INSTR_SLOT_ALU_VEC_MUL,
187 PPIR_INSTR_SLOT_END
188 },
189 },
190 [ppir_op_lt] = {
191 .name = "lt",
192 },
193 [ppir_op_le] = {
194 .name = "le",
195 },
196 [ppir_op_gt] = {
197 .name = "gt",
198 .slots = (int []) {
199 PPIR_INSTR_SLOT_ALU_SCL_MUL, PPIR_INSTR_SLOT_ALU_SCL_ADD,
200 PPIR_INSTR_SLOT_ALU_VEC_MUL, PPIR_INSTR_SLOT_ALU_VEC_ADD,
201 PPIR_INSTR_SLOT_END
202 },
203 },
204 [ppir_op_ge] = {
205 .name = "ge",
206 .slots = (int []) {
207 PPIR_INSTR_SLOT_ALU_SCL_MUL, PPIR_INSTR_SLOT_ALU_SCL_ADD,
208 PPIR_INSTR_SLOT_ALU_VEC_MUL, PPIR_INSTR_SLOT_ALU_VEC_ADD,
209 PPIR_INSTR_SLOT_END
210 },
211 },
212 [ppir_op_eq] = {
213 .name = "eq",
214 .slots = (int []) {
215 PPIR_INSTR_SLOT_ALU_SCL_MUL, PPIR_INSTR_SLOT_ALU_SCL_ADD,
216 PPIR_INSTR_SLOT_ALU_VEC_MUL, PPIR_INSTR_SLOT_ALU_VEC_ADD,
217 PPIR_INSTR_SLOT_END
218 },
219 },
220 [ppir_op_ne] = {
221 .name = "ne",
222 .slots = (int []) {
223 PPIR_INSTR_SLOT_ALU_SCL_MUL, PPIR_INSTR_SLOT_ALU_SCL_ADD,
224 PPIR_INSTR_SLOT_ALU_VEC_MUL, PPIR_INSTR_SLOT_ALU_VEC_ADD,
225 PPIR_INSTR_SLOT_END
226 },
227 },
228 [ppir_op_sel_cond] = {
229 /* effectively mov, but must be scheduled only to
230 * PPIR_INSTR_SLOT_ALU_SCL_MUL */
231 .name = "sel_cond",
232 .slots = (int []) {
233 PPIR_INSTR_SLOT_ALU_SCL_MUL, PPIR_INSTR_SLOT_END
234 },
235 },
236 [ppir_op_select] = {
237 .name = "select",
238 .slots = (int []) {
239 PPIR_INSTR_SLOT_ALU_SCL_ADD, PPIR_INSTR_SLOT_ALU_VEC_ADD,
240 PPIR_INSTR_SLOT_END
241 },
242 },
243 [ppir_op_rcp] = {
244 .name = "rcp",
245 .slots = (int []) {
246 PPIR_INSTR_SLOT_ALU_COMBINE, PPIR_INSTR_SLOT_END
247 },
248 },
249 [ppir_op_load_varying] = {
250 .name = "ld_var",
251 .type = ppir_node_type_load,
252 .slots = (int []) {
253 PPIR_INSTR_SLOT_VARYING, PPIR_INSTR_SLOT_END
254 },
255 },
256 [ppir_op_load_coords] = {
257 .name = "ld_coords",
258 .type = ppir_node_type_load,
259 .slots = (int []) {
260 PPIR_INSTR_SLOT_VARYING, PPIR_INSTR_SLOT_END
261 },
262 },
263 [ppir_op_load_fragcoord] = {
264 .name = "ld_fragcoord",
265 .type = ppir_node_type_load,
266 .slots = (int []) {
267 PPIR_INSTR_SLOT_VARYING, PPIR_INSTR_SLOT_END
268 },
269 },
270 [ppir_op_load_pointcoord] = {
271 .name = "ld_pointcoord",
272 .type = ppir_node_type_load,
273 .slots = (int []) {
274 PPIR_INSTR_SLOT_VARYING, PPIR_INSTR_SLOT_END
275 },
276 },
277 [ppir_op_load_frontface] = {
278 .name = "ld_frontface",
279 .type = ppir_node_type_load,
280 .slots = (int []) {
281 PPIR_INSTR_SLOT_VARYING, PPIR_INSTR_SLOT_END
282 },
283 },
284 [ppir_op_load_uniform] = {
285 .name = "ld_uni",
286 .type = ppir_node_type_load,
287 .slots = (int []) {
288 PPIR_INSTR_SLOT_UNIFORM, PPIR_INSTR_SLOT_END
289 },
290 },
291 [ppir_op_load_texture] = {
292 .name = "ld_tex",
293 .type = ppir_node_type_load_texture,
294 .slots = (int []) {
295 PPIR_INSTR_SLOT_TEXLD, PPIR_INSTR_SLOT_END
296 },
297 },
298 [ppir_op_load_temp] = {
299 .name = "ld_temp",
300 .type = ppir_node_type_load,
301 .slots = (int []) {
302 PPIR_INSTR_SLOT_UNIFORM, PPIR_INSTR_SLOT_END
303 },
304 },
305 [ppir_op_const] = {
306 .name = "const",
307 .type = ppir_node_type_const,
308 },
309 [ppir_op_store_color] = {
310 .name = "st_col",
311 .type = ppir_node_type_alu,
312 .slots = (int []) {
313 PPIR_INSTR_SLOT_ALU_VEC_ADD, PPIR_INSTR_SLOT_ALU_VEC_MUL,
314 PPIR_INSTR_SLOT_END
315 },
316 },
317 [ppir_op_store_temp] = {
318 .name = "st_temp",
319 .type = ppir_node_type_store,
320 .slots = (int []) {
321 PPIR_INSTR_SLOT_STORE_TEMP, PPIR_INSTR_SLOT_END
322 },
323 },
324 [ppir_op_discard] = {
325 .name = "discard",
326 .type = ppir_node_type_discard,
327 .slots = (int []) {
328 PPIR_INSTR_SLOT_BRANCH, PPIR_INSTR_SLOT_END
329 },
330 },
331 [ppir_op_branch] = {
332 .name = "branch",
333 .type = ppir_node_type_branch,
334 .slots = (int []) {
335 PPIR_INSTR_SLOT_BRANCH, PPIR_INSTR_SLOT_END
336 },
337 },
338 [ppir_op_undef] = {
339 .name = "undef",
340 .type = ppir_node_type_alu,
341 .slots = (int []) {
342 },
343 },
344 };
345
346 void *ppir_node_create(ppir_block *block, ppir_op op, int index, unsigned mask)
347 {
348 ppir_compiler *comp = block->comp;
349 static const int node_size[] = {
350 [ppir_node_type_alu] = sizeof(ppir_alu_node),
351 [ppir_node_type_const] = sizeof(ppir_const_node),
352 [ppir_node_type_load] = sizeof(ppir_load_node),
353 [ppir_node_type_store] = sizeof(ppir_store_node),
354 [ppir_node_type_load_texture] = sizeof(ppir_load_texture_node),
355 [ppir_node_type_discard] = sizeof(ppir_discard_node),
356 [ppir_node_type_branch] = sizeof(ppir_branch_node),
357 };
358
359 ppir_node_type type = ppir_op_infos[op].type;
360 int size = node_size[type];
361 ppir_node *node = rzalloc_size(block, size);
362 if (!node)
363 return NULL;
364
365 list_inithead(&node->succ_list);
366 list_inithead(&node->pred_list);
367
368 if (index >= 0) {
369 if (mask) {
370 /* reg has 4 slots for each componemt write node */
371 while (mask)
372 comp->var_nodes[(index << 2) + comp->reg_base + u_bit_scan(&mask)] = node;
373 snprintf(node->name, sizeof(node->name), "reg%d", index);
374 } else {
375 comp->var_nodes[index] = node;
376 snprintf(node->name, sizeof(node->name), "ssa%d", index);
377 }
378 }
379 else
380 snprintf(node->name, sizeof(node->name), "new");
381
382 node->op = op;
383 node->type = type;
384 node->index = comp->cur_index++;
385 node->block = block;
386
387 return node;
388 }
389
390 void ppir_node_add_dep(ppir_node *succ, ppir_node *pred,
391 ppir_dep_type type)
392 {
393 /* don't add dep for two nodes from different block */
394 if (succ->block != pred->block)
395 return;
396
397 /* don't add duplicated dep */
398 ppir_node_foreach_pred(succ, dep) {
399 if (dep->pred == pred)
400 return;
401 }
402
403 ppir_dep *dep = ralloc(succ, ppir_dep);
404 dep->pred = pred;
405 dep->succ = succ;
406 dep->type = type;
407 list_addtail(&dep->pred_link, &succ->pred_list);
408 list_addtail(&dep->succ_link, &pred->succ_list);
409 }
410
411 void ppir_node_remove_dep(ppir_dep *dep)
412 {
413 list_del(&dep->succ_link);
414 list_del(&dep->pred_link);
415 ralloc_free(dep);
416 }
417
418 static void _ppir_node_replace_child(ppir_src *src, ppir_node *old_child, ppir_node *new_child)
419 {
420 ppir_dest *od = ppir_node_get_dest(old_child);
421 if (ppir_node_target_equal(src, od)) {
422 ppir_node_target_assign(src, new_child);
423 }
424 }
425
426 void ppir_node_replace_child(ppir_node *parent, ppir_node *old_child, ppir_node *new_child)
427 {
428 switch (parent->type) {
429 case ppir_node_type_alu:
430 {
431 ppir_alu_node *alu = ppir_node_to_alu(parent);
432 for (int i = 0; i < alu->num_src; i++)
433 _ppir_node_replace_child(alu->src + i, old_child, new_child);
434 break;
435 }
436 case ppir_node_type_branch:
437 {
438 ppir_branch_node *branch = ppir_node_to_branch(parent);
439 for (int i = 0; i < 2; i++)
440 _ppir_node_replace_child(branch->src + i, old_child, new_child);
441 break;
442 }
443 case ppir_node_type_load:
444 {
445 ppir_load_node *load = ppir_node_to_load(parent);
446 _ppir_node_replace_child(&load->src, old_child, new_child);
447 break;
448 }
449 case ppir_node_type_load_texture:
450 {
451 ppir_load_texture_node *load_texture = ppir_node_to_load_texture(parent);
452 _ppir_node_replace_child(&load_texture->src_coords, old_child, new_child);
453 break;
454 }
455 case ppir_node_type_store:
456 {
457 ppir_store_node *store = ppir_node_to_store(parent);
458 _ppir_node_replace_child(&store->src, old_child, new_child);
459 break;
460 }
461 default:
462 ppir_debug("unknown node type in %s\n", __func__);
463 break;
464 }
465 }
466
467 void ppir_node_replace_pred(ppir_dep *dep, ppir_node *new_pred)
468 {
469 list_del(&dep->succ_link);
470 dep->pred = new_pred;
471 list_addtail(&dep->succ_link, &new_pred->succ_list);
472 }
473
474 ppir_dep *ppir_dep_for_pred(ppir_node *node, ppir_node *pred)
475 {
476 if (!pred)
477 return NULL;
478
479 if (node->block != pred->block)
480 return NULL;
481
482 ppir_node_foreach_pred(node, dep) {
483 if (dep->pred == pred)
484 return dep;
485 }
486 return NULL;
487 }
488
489 void ppir_node_replace_all_succ(ppir_node *dst, ppir_node *src)
490 {
491 ppir_node_foreach_succ_safe(src, dep) {
492 ppir_node_replace_pred(dep, dst);
493 ppir_node_replace_child(dep->succ, src, dst);
494 }
495 }
496
497 void ppir_node_delete(ppir_node *node)
498 {
499 ppir_node_foreach_succ_safe(node, dep)
500 ppir_node_remove_dep(dep);
501
502 ppir_node_foreach_pred_safe(node, dep)
503 ppir_node_remove_dep(dep);
504
505 list_del(&node->list);
506 ralloc_free(node);
507 }
508
509 static void ppir_node_print_dest(ppir_dest *dest)
510 {
511 switch (dest->type) {
512 case ppir_target_ssa:
513 printf("ssa%d", dest->ssa.index);
514 break;
515 case ppir_target_pipeline:
516 printf("pipeline %d", dest->pipeline);
517 break;
518 case ppir_target_register:
519 printf("reg %d", dest->reg->index);
520 break;
521 }
522 }
523
524 static void ppir_node_print_src(ppir_src *src)
525 {
526 switch (src->type) {
527 case ppir_target_ssa: {
528 if (src->node)
529 printf("ssa node %d", src->node->index);
530 else
531 printf("ssa idx %d", src->ssa ? src->ssa->index : -1);
532 break;
533 }
534 case ppir_target_pipeline:
535 if (src->node)
536 printf("pipeline %d node %d", src->pipeline, src->node->index);
537 else
538 printf("pipeline %d", src->pipeline);
539 break;
540 case ppir_target_register:
541 printf("reg %d", src->reg->index);
542 break;
543 }
544 }
545
546 static void ppir_node_print_node(ppir_node *node, int space)
547 {
548 for (int i = 0; i < space; i++)
549 printf(" ");
550
551 printf("%s%d: %s %s: ", node->printed && !ppir_node_is_leaf(node) ? "+" : "",
552 node->index, ppir_op_infos[node->op].name, node->name);
553
554 ppir_dest *dest = ppir_node_get_dest(node);
555 if (dest) {
556 printf("dest: ");
557 ppir_node_print_dest(dest);
558 }
559
560 if (ppir_node_get_src_num(node) > 0) {
561 printf(" src: ");
562 }
563 for (int i = 0; i < ppir_node_get_src_num(node); i++) {
564 ppir_node_print_src(ppir_node_get_src(node, i));
565 if (i != (ppir_node_get_src_num(node) - 1))
566 printf(", ");
567 }
568 printf("\n");
569
570 if (!node->printed) {
571 ppir_node_foreach_pred(node, dep) {
572 ppir_node *pred = dep->pred;
573 ppir_node_print_node(pred, space + 2);
574 }
575
576 node->printed = true;
577 }
578 }
579
580 void ppir_node_print_prog(ppir_compiler *comp)
581 {
582 if (!(lima_debug & LIMA_DEBUG_PP))
583 return;
584
585 list_for_each_entry(ppir_block, block, &comp->block_list, list) {
586 list_for_each_entry(ppir_node, node, &block->node_list, list) {
587 node->printed = false;
588 }
589 }
590
591 printf("========prog========\n");
592 list_for_each_entry(ppir_block, block, &comp->block_list, list) {
593 printf("-------block %3d-------\n", block->index);
594 list_for_each_entry(ppir_node, node, &block->node_list, list) {
595 if (ppir_node_is_root(node))
596 ppir_node_print_node(node, 0);
597 }
598 }
599 printf("====================\n");
600 }
601
602 static ppir_node *ppir_node_clone_const(ppir_block *block, ppir_node *node)
603 {
604 ppir_const_node *cnode = ppir_node_to_const(node);
605 ppir_const_node *new_cnode = ppir_node_create(block, ppir_op_const, -1, 0);
606
607 if (!new_cnode)
608 return NULL;
609
610 list_addtail(&new_cnode->node.list, &block->node_list);
611
612 new_cnode->constant.num = cnode->constant.num;
613 for (int i = 0; i < cnode->constant.num; i++) {
614 new_cnode->constant.value[i] = cnode->constant.value[i];
615 }
616 new_cnode->dest.type = ppir_target_ssa;
617 new_cnode->dest.ssa.num_components = cnode->dest.ssa.num_components;
618 new_cnode->dest.ssa.live_in = INT_MAX;
619 new_cnode->dest.ssa.live_out = 0;
620 new_cnode->dest.write_mask = cnode->dest.write_mask;
621
622 return &new_cnode->node;
623 }
624
625 static ppir_node *
626 ppir_node_clone_load(ppir_block *block, ppir_node *node)
627 {
628 ppir_load_node *load_node = ppir_node_to_load(node);
629 ppir_load_node *new_lnode = ppir_node_create(block, node->op, -1, 0);
630
631 if (!new_lnode)
632 return NULL;
633
634 list_addtail(&new_lnode->node.list, &block->node_list);
635
636 new_lnode->num_components = load_node->num_components;
637 new_lnode->index = load_node->index;
638
639 ppir_dest *dest = ppir_node_get_dest(node);
640 new_lnode->dest = *dest;
641
642 ppir_src *src = ppir_node_get_src(node, 0);
643 if (src) {
644 new_lnode->num_src = 1;
645 switch (src->type) {
646 case ppir_target_ssa:
647 ppir_node_target_assign(&new_lnode->src, src->node);
648 ppir_node_add_dep(&new_lnode->node, src->node, ppir_dep_src);
649 break;
650 case ppir_target_register:
651 new_lnode->src.type = src->type;
652 new_lnode->src.reg = src->reg;
653 new_lnode->src.node = NULL;
654 break;
655 default:
656 /* Load nodes can't consume pipeline registers */
657 assert(0);
658 }
659 }
660
661 return &new_lnode->node;
662 }
663
664 ppir_node *ppir_node_clone(ppir_block *block, ppir_node *node)
665 {
666 switch (node->op) {
667 case ppir_op_const:
668 return ppir_node_clone_const(block, node);
669 case ppir_op_load_uniform:
670 case ppir_op_load_varying:
671 case ppir_op_load_temp:
672 case ppir_op_load_coords:
673 return ppir_node_clone_load(block, node);
674 default:
675 return NULL;
676 }
677 }
678
679 ppir_node *ppir_node_insert_mov(ppir_node *node)
680 {
681 ppir_node *move = ppir_node_create(node->block, ppir_op_mov, -1, 0);
682 if (unlikely(!move))
683 return NULL;
684
685 ppir_dest *dest = ppir_node_get_dest(node);
686 ppir_alu_node *alu = ppir_node_to_alu(move);
687 alu->dest = *dest;
688 alu->num_src = 1;
689 ppir_node_target_assign(alu->src, node);
690
691 for (int s = 0; s < 4; s++)
692 alu->src->swizzle[s] = s;
693
694 ppir_node_replace_all_succ(move, node);
695 ppir_node_add_dep(move, node, ppir_dep_src);
696 list_addtail(&move->list, &node->list);
697
698 return move;
699 }
700
701 bool ppir_node_has_single_src_succ(ppir_node *node)
702 {
703 if (list_is_singular(&node->succ_list) &&
704 list_first_entry(&node->succ_list,
705 ppir_dep, succ_link)->type == ppir_dep_src)
706 return true;
707
708 int cnt = 0;
709 ppir_node_foreach_succ(node, dep) {
710 if (dep->type != ppir_dep_src)
711 continue;
712 cnt++;
713 }
714
715 return cnt == 1;
716 }