d20815f055ed0be2efe662a35d3d539b53083f46
[mesa.git] / src / gallium / drivers / vc4 / vc4_qir_schedule.c
1 /*
2 * Copyright © 2010 Intel Corporation
3 * Copyright © 2014-2015 Broadcom
4 *
5 * Permission is hereby granted, free of charge, to any person obtaining a
6 * copy of this software and associated documentation files (the "Software"),
7 * to deal in the Software without restriction, including without limitation
8 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
9 * and/or sell copies of the Software, and to permit persons to whom the
10 * Software is furnished to do so, subject to the following conditions:
11 *
12 * The above copyright notice and this permission notice (including the next
13 * paragraph) shall be included in all copies or substantial portions of the
14 * Software.
15 *
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
19 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
21 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
22 * IN THE SOFTWARE.
23 */
24
25 /**
26 * @file vc4_qir_schedule.c
27 *
28 * The basic model of the list scheduler is to take a basic block, compute a
29 * DAG of the dependencies from the bottom up, and make a list of the DAG
30 * heads. Heuristically pick a DAG head and schedule (remove) it, then put
31 * all the parents that are now DAG heads into the list of things to
32 * schedule.
33 *
34 * The goal of scheduling here, before register allocation and conversion to
35 * QPU instructions, is to reduce register pressure by reordering instructions
36 * to consume values when possible.
37 */
38
39 #include "vc4_qir.h"
40
41 static bool debug;
42
43 struct schedule_node {
44 struct list_head link;
45 struct qinst *inst;
46
47 struct schedule_node **children;
48 uint32_t child_count;
49 uint32_t child_array_size;
50 uint32_t parent_count;
51
52 /* Length of the longest (latency) chain from a DAG head to the this
53 * instruction.
54 */
55 uint32_t delay;
56
57 /* Longest time + latency_between(parent, this) of any parent of this
58 * node.
59 */
60 uint32_t unblocked_time;
61 };
62
63 struct schedule_state {
64 /* List of struct schedule_node *. This starts out with all
65 * instructions, and after dependency updates it's trimmed to be just
66 * the DAG heads.
67 */
68 struct list_head worklist;
69
70 uint32_t time;
71
72 uint32_t *temp_writes;
73
74 BITSET_WORD *temp_live;
75 };
76
77 /* When walking the instructions in reverse, we need to swap before/after in
78 * add_dep().
79 */
80 enum direction { F, R };
81
82 /**
83 * Marks a dependency between two intructions, that @after must appear after
84 * @before.
85 *
86 * Our dependencies are tracked as a DAG. Since we're scheduling bottom-up,
87 * the latest instructions with nothing left to schedule are the DAG heads,
88 * and their inputs are their children.
89 */
90 static void
91 add_dep(enum direction dir,
92 struct schedule_node *before,
93 struct schedule_node *after)
94 {
95 if (!before || !after)
96 return;
97
98 assert(before != after);
99
100 if (dir == R) {
101 struct schedule_node *t = before;
102 before = after;
103 after = t;
104 }
105
106 for (int i = 0; i < after->child_count; i++) {
107 if (after->children[i] == after)
108 return;
109 }
110
111 if (after->child_array_size <= after->child_count) {
112 after->child_array_size = MAX2(after->child_array_size * 2, 16);
113 after->children = reralloc(after, after->children,
114 struct schedule_node *,
115 after->child_array_size);
116 }
117
118 after->children[after->child_count] = before;
119 after->child_count++;
120 before->parent_count++;
121 }
122
123 static void
124 add_write_dep(enum direction dir,
125 struct schedule_node **before,
126 struct schedule_node *after)
127 {
128 add_dep(dir, *before, after);
129 *before = after;
130 }
131
132 struct schedule_setup_state {
133 struct schedule_node **last_temp_write;
134 struct schedule_node *last_sf;
135 struct schedule_node *last_vary_read;
136 struct schedule_node *last_vpm_read;
137 struct schedule_node *last_vpm_write;
138 struct schedule_node *last_tex_coord;
139 struct schedule_node *last_tex_result;
140 struct schedule_node *last_tlb;
141 enum direction dir;
142
143 /**
144 * Texture FIFO tracking. This is done top-to-bottom, and is used to
145 * track the QOP_TEX_RESULTs and add dependencies on previous ones
146 * when trying to submit texture coords with TFREQ full or new texture
147 * fetches with TXRCV full.
148 */
149 struct {
150 struct schedule_node *node;
151 int coords;
152 } tex_fifo[8];
153 int tfreq_count; /**< Number of texture coords outstanding. */
154 int tfrcv_count; /**< Number of texture results outstanding. */
155 int tex_fifo_pos;
156 };
157
158 static void
159 block_until_tex_result(struct schedule_setup_state *state, struct schedule_node *n)
160 {
161 add_dep(state->dir, state->tex_fifo[0].node, n);
162
163 state->tfreq_count -= state->tex_fifo[0].coords;
164 state->tfrcv_count--;
165
166 memmove(&state->tex_fifo[0],
167 &state->tex_fifo[1],
168 state->tex_fifo_pos * sizeof(state->tex_fifo[0]));
169 state->tex_fifo_pos--;
170 }
171
172 /**
173 * Common code for dependencies that need to be tracked both forward and
174 * backward.
175 *
176 * This is for things like "all VPM reads have to happen in order."
177 */
178 static void
179 calculate_deps(struct schedule_setup_state *state, struct schedule_node *n)
180 {
181 struct qinst *inst = n->inst;
182 enum direction dir = state->dir;
183
184
185 /* Add deps for temp registers and varyings accesses. Note that we
186 * ignore uniforms accesses, because qir_reorder_uniforms() happens
187 * after this.
188 */
189 for (int i = 0; i < qir_get_op_nsrc(inst->op); i++) {
190 switch (inst->src[i].file) {
191 case QFILE_TEMP:
192 add_dep(dir,
193 state->last_temp_write[inst->src[i].index], n);
194 break;
195
196 case QFILE_VARY:
197 add_write_dep(dir, &state->last_vary_read, n);
198 break;
199
200 case QFILE_VPM:
201 add_write_dep(dir, &state->last_vpm_read, n);
202 break;
203
204 default:
205 break;
206 }
207 }
208
209 switch (inst->op) {
210 case QOP_VARY_ADD_C:
211 add_dep(dir, state->last_vary_read, n);
212 break;
213
214 case QOP_TEX_S:
215 case QOP_TEX_T:
216 case QOP_TEX_R:
217 case QOP_TEX_B:
218 case QOP_TEX_DIRECT:
219 /* Texturing setup gets scheduled in order, because
220 * the uniforms referenced by them have to land in a
221 * specific order.
222 */
223 add_write_dep(dir, &state->last_tex_coord, n);
224 break;
225
226 case QOP_TEX_RESULT:
227 /* Results have to be fetched in order. */
228 add_write_dep(dir, &state->last_tex_result, n);
229 break;
230
231 case QOP_TLB_COLOR_WRITE:
232 case QOP_TLB_COLOR_READ:
233 case QOP_TLB_Z_WRITE:
234 case QOP_TLB_STENCIL_SETUP:
235 case QOP_MS_MASK:
236 add_write_dep(dir, &state->last_tlb, n);
237 break;
238
239 case QOP_TLB_DISCARD_SETUP:
240 add_write_dep(dir, &state->last_sf, n);
241 add_write_dep(dir, &state->last_tlb, n);
242 break;
243
244 default:
245 break;
246 }
247
248 if (inst->dst.file == QFILE_VPM)
249 add_write_dep(dir, &state->last_vpm_write, n);
250 else if (inst->dst.file == QFILE_TEMP)
251 add_write_dep(dir, &state->last_temp_write[inst->dst.index], n);
252
253 if (inst->sf)
254 add_write_dep(dir, &state->last_sf, n);
255
256 if (qir_depends_on_flags(inst)) {
257 add_dep(dir, state->last_sf, n);
258 }
259 }
260
261 static void
262 calculate_forward_deps(struct vc4_compile *c, void *mem_ctx,
263 struct list_head *schedule_list)
264 {
265 struct schedule_setup_state state;
266
267 memset(&state, 0, sizeof(state));
268 state.last_temp_write = rzalloc_array(mem_ctx, struct schedule_node *,
269 c->num_temps);
270 state.dir = F;
271
272 list_for_each_entry(struct schedule_node, n, schedule_list, link) {
273 struct qinst *inst = n->inst;
274
275 calculate_deps(&state, n);
276
277 switch (inst->op) {
278 case QOP_TEX_S:
279 case QOP_TEX_T:
280 case QOP_TEX_R:
281 case QOP_TEX_B:
282 case QOP_TEX_DIRECT:
283 /* If the texture coordinate fifo is full,
284 * block this on the last QOP_TEX_RESULT.
285 */
286 if (state.tfreq_count == 8) {
287 block_until_tex_result(&state, n);
288 }
289
290 /* If the texture result fifo is full, block
291 * adding any more to it until the last
292 * QOP_TEX_RESULT.
293 */
294 if (inst->op == QOP_TEX_S ||
295 inst->op == QOP_TEX_DIRECT) {
296 if (state.tfrcv_count == 4)
297 block_until_tex_result(&state, n);
298 state.tfrcv_count++;
299 }
300
301 state.tex_fifo[state.tex_fifo_pos].coords++;
302 state.tfreq_count++;
303 break;
304
305 case QOP_TEX_RESULT:
306 /* Results have to be fetched after the
307 * coordinate setup. Note that we're assuming
308 * here that our input shader has the texture
309 * coord setup and result fetch in order,
310 * which is true initially but not of our
311 * instruction stream after this pass.
312 */
313 add_dep(state.dir, state.last_tex_coord, n);
314
315 state.tex_fifo[state.tex_fifo_pos].node = n;
316
317 state.tex_fifo_pos++;
318 memset(&state.tex_fifo[state.tex_fifo_pos], 0,
319 sizeof(state.tex_fifo[0]));
320 break;
321 default:
322 assert(!qir_is_tex(inst));
323 break;
324 }
325 }
326 }
327
328 static void
329 calculate_reverse_deps(struct vc4_compile *c, void *mem_ctx,
330 struct list_head *schedule_list)
331 {
332 struct schedule_setup_state state;
333
334 memset(&state, 0, sizeof(state));
335 state.dir = R;
336 state.last_temp_write = rzalloc_array(mem_ctx, struct schedule_node *,
337 c->num_temps);
338
339 list_for_each_entry_rev(struct schedule_node, n, schedule_list, link) {
340 calculate_deps(&state, n);
341 }
342 }
343
344 static int
345 get_register_pressure_cost(struct schedule_state *state, struct qinst *inst)
346 {
347 int cost = 0;
348
349 if (inst->dst.file == QFILE_TEMP &&
350 state->temp_writes[inst->dst.index] == 1)
351 cost--;
352
353 for (int i = 0; i < qir_get_op_nsrc(inst->op); i++) {
354 if (inst->src[i].file == QFILE_TEMP &&
355 !BITSET_TEST(state->temp_live, inst->src[i].index)) {
356 cost++;
357 }
358 }
359
360 return cost;
361 }
362
363 static bool
364 locks_scoreboard(struct qinst *inst)
365 {
366 switch (inst->op) {
367 case QOP_TLB_Z_WRITE:
368 case QOP_TLB_COLOR_WRITE:
369 case QOP_TLB_COLOR_WRITE_MS:
370 case QOP_TLB_COLOR_READ:
371 return true;
372 default:
373 return false;
374 }
375 }
376
377 static struct schedule_node *
378 choose_instruction(struct schedule_state *state)
379 {
380 struct schedule_node *chosen = NULL;
381
382 list_for_each_entry(struct schedule_node, n, &state->worklist, link) {
383 if (!chosen) {
384 chosen = n;
385 continue;
386 }
387
388 /* Prefer scheduling things that lock the scoreboard, so that
389 * they appear late in the program and we get more parallelism
390 * between shaders on multiple QPUs hitting the same fragment.
391 */
392 if (locks_scoreboard(n->inst) &&
393 !locks_scoreboard(chosen->inst)) {
394 chosen = n;
395 continue;
396 } else if (!locks_scoreboard(n->inst) &&
397 locks_scoreboard(chosen->inst)) {
398 continue;
399 }
400
401 /* If we would block on the previously chosen node, but would
402 * block less on this one, then then prefer it.
403 */
404 if (chosen->unblocked_time > state->time &&
405 n->unblocked_time < chosen->unblocked_time) {
406 chosen = n;
407 continue;
408 } else if (n->unblocked_time > state->time &&
409 n->unblocked_time > chosen->unblocked_time) {
410 continue;
411 }
412
413 /* If we can definitely reduce register pressure, do so
414 * immediately.
415 */
416 int register_pressure_cost =
417 get_register_pressure_cost(state, n->inst);
418 int chosen_register_pressure_cost =
419 get_register_pressure_cost(state, chosen->inst);
420
421 if (register_pressure_cost < chosen_register_pressure_cost) {
422 chosen = n;
423 continue;
424 } else if (register_pressure_cost >
425 chosen_register_pressure_cost) {
426 continue;
427 }
428
429 /* Otherwise, prefer instructions with the deepest chain to
430 * the end of the program. This avoids the problem of
431 * "everything generates a temp, nothing finishes freeing one,
432 * guess I'll just keep emitting varying mul/adds".
433 */
434 if (n->delay > chosen->delay) {
435 chosen = n;
436 continue;
437 } else if (n->delay < chosen->delay) {
438 continue;
439 }
440 }
441
442 return chosen;
443 }
444
445 static void
446 dump_state(struct vc4_compile *c, struct schedule_state *state)
447 {
448 uint32_t i = 0;
449 list_for_each_entry(struct schedule_node, n, &state->worklist, link) {
450 fprintf(stderr, "%3d: ", i++);
451 qir_dump_inst(c, n->inst);
452 fprintf(stderr, " (%d cost)\n",
453 get_register_pressure_cost(state, n->inst));
454
455 for (int i = 0; i < n->child_count; i++) {
456 struct schedule_node *child = n->children[i];
457 fprintf(stderr, " - ");
458 qir_dump_inst(c, child->inst);
459 fprintf(stderr, " (%d parents)\n", child->parent_count);
460 }
461 }
462 }
463
464 /* Estimate of how many instructions we should schedule between operations.
465 *
466 * These aren't in real cycle counts, because we're just estimating cycle
467 * times anyway. QIR instructions will get paired up when turned into QPU
468 * instructions, or extra NOP delays will have to be added due to register
469 * allocation choices.
470 */
471 static uint32_t
472 latency_between(struct schedule_node *before, struct schedule_node *after)
473 {
474 if ((before->inst->op == QOP_TEX_S ||
475 before->inst->op == QOP_TEX_DIRECT) &&
476 after->inst->op == QOP_TEX_RESULT)
477 return 100;
478
479 return 1;
480 }
481
482 /** Recursive computation of the delay member of a node. */
483 static void
484 compute_delay(struct schedule_node *n)
485 {
486 if (!n->child_count) {
487 /* The color read needs to be scheduled late, to avoid locking
488 * the scoreboard early. This is our best tool for
489 * encouraging that. The other scoreboard locking ops will
490 * have this happen by default, since they are generally the
491 * DAG heads or close to them.
492 */
493 if (n->inst->op == QOP_TLB_COLOR_READ)
494 n->delay = 1000;
495 else
496 n->delay = 1;
497 } else {
498 for (int i = 0; i < n->child_count; i++) {
499 if (!n->children[i]->delay)
500 compute_delay(n->children[i]);
501 n->delay = MAX2(n->delay,
502 n->children[i]->delay +
503 latency_between(n, n->children[i]));
504 }
505 }
506 }
507
508 static void
509 schedule_instructions(struct vc4_compile *c, struct schedule_state *state)
510 {
511 if (debug) {
512 fprintf(stderr, "initial deps:\n");
513 dump_state(c, state);
514 }
515
516 /* Remove non-DAG heads from the list. */
517 list_for_each_entry_safe(struct schedule_node, n,
518 &state->worklist, link) {
519 if (n->parent_count != 0)
520 list_del(&n->link);
521 }
522
523 state->time = 0;
524 while (!list_empty(&state->worklist)) {
525 struct schedule_node *chosen = choose_instruction(state);
526 struct qinst *inst = chosen->inst;
527
528 if (debug) {
529 fprintf(stderr, "current list:\n");
530 dump_state(c, state);
531 fprintf(stderr, "chose: ");
532 qir_dump_inst(c, inst);
533 fprintf(stderr, " (%d cost)\n",
534 get_register_pressure_cost(state, inst));
535 }
536
537 state->time = MAX2(state->time, chosen->unblocked_time);
538
539 /* Schedule this instruction back onto the QIR list. */
540 list_del(&chosen->link);
541 list_add(&inst->link, &c->instructions);
542
543 /* Now that we've scheduled a new instruction, some of its
544 * children can be promoted to the list of instructions ready to
545 * be scheduled. Update the children's unblocked time for this
546 * DAG edge as we do so.
547 */
548 for (int i = chosen->child_count - 1; i >= 0; i--) {
549 struct schedule_node *child = chosen->children[i];
550
551 child->unblocked_time = MAX2(child->unblocked_time,
552 state->time +
553 latency_between(chosen,
554 child));
555 child->parent_count--;
556 if (child->parent_count == 0)
557 list_add(&child->link, &state->worklist);
558 }
559
560 /* Update our tracking of register pressure. */
561 for (int i = 0; i < qir_get_op_nsrc(inst->op); i++) {
562 if (inst->src[i].file == QFILE_TEMP)
563 BITSET_SET(state->temp_live, inst->src[i].index);
564 }
565 if (inst->dst.file == QFILE_TEMP) {
566 state->temp_writes[inst->dst.index]--;
567 if (state->temp_writes[inst->dst.index] == 0)
568 BITSET_CLEAR(state->temp_live, inst->dst.index);
569 }
570
571 state->time++;
572 }
573 }
574
575 void
576 qir_schedule_instructions(struct vc4_compile *c)
577 {
578 void *mem_ctx = ralloc_context(NULL);
579 struct schedule_state state = { 0 };
580
581 if (debug) {
582 fprintf(stderr, "Pre-schedule instructions\n");
583 qir_dump(c);
584 }
585
586 state.temp_writes = rzalloc_array(mem_ctx, uint32_t, c->num_temps);
587 state.temp_live = rzalloc_array(mem_ctx, BITSET_WORD,
588 BITSET_WORDS(c->num_temps));
589 list_inithead(&state.worklist);
590
591 /* Wrap each instruction in a scheduler structure. */
592 list_for_each_entry_safe(struct qinst, inst, &c->instructions, link) {
593 struct schedule_node *n = rzalloc(mem_ctx, struct schedule_node);
594
595 n->inst = inst;
596 list_del(&inst->link);
597 list_addtail(&n->link, &state.worklist);
598
599 if (inst->dst.file == QFILE_TEMP)
600 state.temp_writes[inst->dst.index]++;
601 }
602
603 /* Dependencies tracked top-to-bottom. */
604 calculate_forward_deps(c, mem_ctx, &state.worklist);
605 /* Dependencies tracked bottom-to-top. */
606 calculate_reverse_deps(c, mem_ctx, &state.worklist);
607
608 list_for_each_entry(struct schedule_node, n, &state.worklist, link)
609 compute_delay(n);
610
611 schedule_instructions(c, &state);
612
613 if (debug) {
614 fprintf(stderr, "Post-schedule instructions\n");
615 qir_dump(c);
616 }
617
618 ralloc_free(mem_ctx);
619 }