vk: Add four unit tests for our lock-free data-structures
[mesa.git] / src / mesa / drivers / dri / i965 / brw_cfg.cpp
1 /*
2 * Copyright © 2012 Intel Corporation
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 * Authors:
24 * Eric Anholt <eric@anholt.net>
25 *
26 */
27
28 #include "brw_cfg.h"
29
30 /** @file brw_cfg.cpp
31 *
32 * Walks the shader instructions generated and creates a set of basic
33 * blocks with successor/predecessor edges connecting them.
34 */
35
36 static bblock_t *
37 pop_stack(exec_list *list)
38 {
39 bblock_link *link = (bblock_link *)list->get_tail();
40 bblock_t *block = link->block;
41 link->link.remove();
42
43 return block;
44 }
45
46 static exec_node *
47 link(void *mem_ctx, bblock_t *block)
48 {
49 bblock_link *l = new(mem_ctx) bblock_link(block);
50 return &l->link;
51 }
52
53 bblock_t::bblock_t(cfg_t *cfg) :
54 cfg(cfg), idom(NULL), start_ip(0), end_ip(0), num(0)
55 {
56 instructions.make_empty();
57 parents.make_empty();
58 children.make_empty();
59 }
60
61 void
62 bblock_t::add_successor(void *mem_ctx, bblock_t *successor)
63 {
64 successor->parents.push_tail(::link(mem_ctx, this));
65 children.push_tail(::link(mem_ctx, successor));
66 }
67
68 bool
69 bblock_t::is_predecessor_of(const bblock_t *block) const
70 {
71 foreach_list_typed_safe (bblock_link, parent, link, &block->parents) {
72 if (parent->block == this) {
73 return true;
74 }
75 }
76
77 return false;
78 }
79
80 bool
81 bblock_t::is_successor_of(const bblock_t *block) const
82 {
83 foreach_list_typed_safe (bblock_link, child, link, &block->children) {
84 if (child->block == this) {
85 return true;
86 }
87 }
88
89 return false;
90 }
91
92 static bool
93 ends_block(const backend_instruction *inst)
94 {
95 enum opcode op = inst->opcode;
96
97 return op == BRW_OPCODE_IF ||
98 op == BRW_OPCODE_ELSE ||
99 op == BRW_OPCODE_CONTINUE ||
100 op == BRW_OPCODE_BREAK ||
101 op == BRW_OPCODE_WHILE;
102 }
103
104 static bool
105 starts_block(const backend_instruction *inst)
106 {
107 enum opcode op = inst->opcode;
108
109 return op == BRW_OPCODE_DO ||
110 op == BRW_OPCODE_ENDIF;
111 }
112
113 bool
114 bblock_t::can_combine_with(const bblock_t *that) const
115 {
116 if ((const bblock_t *)this->link.next != that)
117 return false;
118
119 if (ends_block(this->end()) ||
120 starts_block(that->start()))
121 return false;
122
123 return true;
124 }
125
126 void
127 bblock_t::combine_with(bblock_t *that)
128 {
129 assert(this->can_combine_with(that));
130 foreach_list_typed (bblock_link, link, link, &this->children) {
131 assert(link->block == that);
132 }
133 foreach_list_typed (bblock_link, link, link, &that->parents) {
134 assert(link->block == this);
135 }
136
137 this->end_ip = that->end_ip;
138 this->instructions.append_list(&that->instructions);
139
140 this->cfg->remove_block(that);
141 }
142
143 void
144 bblock_t::dump(backend_shader *s) const
145 {
146 int ip = this->start_ip;
147 foreach_inst_in_block(backend_instruction, inst, this) {
148 fprintf(stderr, "%5d: ", ip);
149 s->dump_instruction(inst);
150 ip++;
151 }
152 }
153
154 cfg_t::cfg_t(exec_list *instructions)
155 {
156 mem_ctx = ralloc_context(NULL);
157 block_list.make_empty();
158 blocks = NULL;
159 num_blocks = 0;
160 idom_dirty = true;
161
162 bblock_t *cur = NULL;
163 int ip = 0;
164
165 bblock_t *entry = new_block();
166 bblock_t *cur_if = NULL; /**< BB ending with IF. */
167 bblock_t *cur_else = NULL; /**< BB ending with ELSE. */
168 bblock_t *cur_endif = NULL; /**< BB starting with ENDIF. */
169 bblock_t *cur_do = NULL; /**< BB starting with DO. */
170 bblock_t *cur_while = NULL; /**< BB immediately following WHILE. */
171 exec_list if_stack, else_stack, do_stack, while_stack;
172 bblock_t *next;
173
174 set_next_block(&cur, entry, ip);
175
176 foreach_in_list_safe(backend_instruction, inst, instructions) {
177 /* set_next_block wants the post-incremented ip */
178 ip++;
179
180 switch (inst->opcode) {
181 case BRW_OPCODE_IF:
182 inst->exec_node::remove();
183 cur->instructions.push_tail(inst);
184
185 /* Push our information onto a stack so we can recover from
186 * nested ifs.
187 */
188 if_stack.push_tail(link(mem_ctx, cur_if));
189 else_stack.push_tail(link(mem_ctx, cur_else));
190
191 cur_if = cur;
192 cur_else = NULL;
193 cur_endif = NULL;
194
195 /* Set up our immediately following block, full of "then"
196 * instructions.
197 */
198 next = new_block();
199 cur_if->add_successor(mem_ctx, next);
200
201 set_next_block(&cur, next, ip);
202 break;
203
204 case BRW_OPCODE_ELSE:
205 inst->exec_node::remove();
206 cur->instructions.push_tail(inst);
207
208 cur_else = cur;
209
210 next = new_block();
211 cur_if->add_successor(mem_ctx, next);
212
213 set_next_block(&cur, next, ip);
214 break;
215
216 case BRW_OPCODE_ENDIF: {
217 if (cur->instructions.is_empty()) {
218 /* New block was just created; use it. */
219 cur_endif = cur;
220 } else {
221 cur_endif = new_block();
222
223 cur->add_successor(mem_ctx, cur_endif);
224
225 set_next_block(&cur, cur_endif, ip - 1);
226 }
227
228 inst->exec_node::remove();
229 cur->instructions.push_tail(inst);
230
231 if (cur_else) {
232 cur_else->add_successor(mem_ctx, cur_endif);
233 } else {
234 assert(cur_if != NULL);
235 cur_if->add_successor(mem_ctx, cur_endif);
236 }
237
238 assert(cur_if->end()->opcode == BRW_OPCODE_IF);
239 assert(!cur_else || cur_else->end()->opcode == BRW_OPCODE_ELSE);
240
241 /* Pop the stack so we're in the previous if/else/endif */
242 cur_if = pop_stack(&if_stack);
243 cur_else = pop_stack(&else_stack);
244 break;
245 }
246 case BRW_OPCODE_DO:
247 /* Push our information onto a stack so we can recover from
248 * nested loops.
249 */
250 do_stack.push_tail(link(mem_ctx, cur_do));
251 while_stack.push_tail(link(mem_ctx, cur_while));
252
253 /* Set up the block just after the while. Don't know when exactly
254 * it will start, yet.
255 */
256 cur_while = new_block();
257
258 if (cur->instructions.is_empty()) {
259 /* New block was just created; use it. */
260 cur_do = cur;
261 } else {
262 cur_do = new_block();
263
264 cur->add_successor(mem_ctx, cur_do);
265
266 set_next_block(&cur, cur_do, ip - 1);
267 }
268
269 inst->exec_node::remove();
270 cur->instructions.push_tail(inst);
271 break;
272
273 case BRW_OPCODE_CONTINUE:
274 inst->exec_node::remove();
275 cur->instructions.push_tail(inst);
276
277 cur->add_successor(mem_ctx, cur_do);
278
279 next = new_block();
280 if (inst->predicate)
281 cur->add_successor(mem_ctx, next);
282
283 set_next_block(&cur, next, ip);
284 break;
285
286 case BRW_OPCODE_BREAK:
287 inst->exec_node::remove();
288 cur->instructions.push_tail(inst);
289
290 cur->add_successor(mem_ctx, cur_while);
291
292 next = new_block();
293 if (inst->predicate)
294 cur->add_successor(mem_ctx, next);
295
296 set_next_block(&cur, next, ip);
297 break;
298
299 case BRW_OPCODE_WHILE:
300 inst->exec_node::remove();
301 cur->instructions.push_tail(inst);
302
303 assert(cur_do != NULL && cur_while != NULL);
304 cur->add_successor(mem_ctx, cur_do);
305 set_next_block(&cur, cur_while, ip);
306
307 /* Pop the stack so we're in the previous loop */
308 cur_do = pop_stack(&do_stack);
309 cur_while = pop_stack(&while_stack);
310 break;
311
312 default:
313 inst->exec_node::remove();
314 cur->instructions.push_tail(inst);
315 break;
316 }
317 }
318
319 cur->end_ip = ip - 1;
320
321 make_block_array();
322 }
323
324 cfg_t::~cfg_t()
325 {
326 ralloc_free(mem_ctx);
327 }
328
329 void
330 cfg_t::remove_block(bblock_t *block)
331 {
332 foreach_list_typed_safe (bblock_link, predecessor, link, &block->parents) {
333 /* Remove block from all of its predecessors' successor lists. */
334 foreach_list_typed_safe (bblock_link, successor, link,
335 &predecessor->block->children) {
336 if (block == successor->block) {
337 successor->link.remove();
338 ralloc_free(successor);
339 }
340 }
341
342 /* Add removed-block's successors to its predecessors' successor lists. */
343 foreach_list_typed (bblock_link, successor, link, &block->children) {
344 if (!successor->block->is_successor_of(predecessor->block)) {
345 predecessor->block->children.push_tail(link(mem_ctx,
346 successor->block));
347 }
348 }
349 }
350
351 foreach_list_typed_safe (bblock_link, successor, link, &block->children) {
352 /* Remove block from all of its childrens' parents lists. */
353 foreach_list_typed_safe (bblock_link, predecessor, link,
354 &successor->block->parents) {
355 if (block == predecessor->block) {
356 predecessor->link.remove();
357 ralloc_free(predecessor);
358 }
359 }
360
361 /* Add removed-block's predecessors to its successors' predecessor lists. */
362 foreach_list_typed (bblock_link, predecessor, link, &block->parents) {
363 if (!predecessor->block->is_predecessor_of(successor->block)) {
364 successor->block->parents.push_tail(link(mem_ctx,
365 predecessor->block));
366 }
367 }
368 }
369
370 block->link.remove();
371
372 for (int b = block->num; b < this->num_blocks - 1; b++) {
373 this->blocks[b] = this->blocks[b + 1];
374 this->blocks[b]->num = b;
375 }
376
377 this->blocks[this->num_blocks - 1]->num = this->num_blocks - 2;
378 this->num_blocks--;
379 idom_dirty = true;
380 }
381
382 bblock_t *
383 cfg_t::new_block()
384 {
385 bblock_t *block = new(mem_ctx) bblock_t(this);
386
387 return block;
388 }
389
390 void
391 cfg_t::set_next_block(bblock_t **cur, bblock_t *block, int ip)
392 {
393 if (*cur) {
394 (*cur)->end_ip = ip - 1;
395 }
396
397 block->start_ip = ip;
398 block->num = num_blocks++;
399 block_list.push_tail(&block->link);
400 *cur = block;
401 }
402
403 void
404 cfg_t::make_block_array()
405 {
406 blocks = ralloc_array(mem_ctx, bblock_t *, num_blocks);
407
408 int i = 0;
409 foreach_block (block, this) {
410 blocks[i++] = block;
411 }
412 assert(i == num_blocks);
413 }
414
415 void
416 cfg_t::dump(backend_shader *s)
417 {
418 if (idom_dirty)
419 calculate_idom();
420
421 foreach_block (block, this) {
422 fprintf(stderr, "START B%d IDOM(B%d)", block->num, block->idom->num);
423 foreach_list_typed(bblock_link, link, link, &block->parents) {
424 fprintf(stderr, " <-B%d",
425 link->block->num);
426 }
427 fprintf(stderr, "\n");
428 if (s != NULL)
429 block->dump(s);
430 fprintf(stderr, "END B%d", block->num);
431 foreach_list_typed(bblock_link, link, link, &block->children) {
432 fprintf(stderr, " ->B%d",
433 link->block->num);
434 }
435 fprintf(stderr, "\n");
436 }
437 }
438
439 /* Calculates the immediate dominator of each block, according to "A Simple,
440 * Fast Dominance Algorithm" by Keith D. Cooper, Timothy J. Harvey, and Ken
441 * Kennedy.
442 *
443 * The authors claim that for control flow graphs of sizes normally encountered
444 * (less than 1000 nodes) that this algorithm is significantly faster than
445 * others like Lengauer-Tarjan.
446 */
447 void
448 cfg_t::calculate_idom()
449 {
450 foreach_block(block, this) {
451 block->idom = NULL;
452 }
453 blocks[0]->idom = blocks[0];
454
455 bool changed;
456 do {
457 changed = false;
458
459 foreach_block(block, this) {
460 if (block->num == 0)
461 continue;
462
463 bblock_t *new_idom = NULL;
464 foreach_list_typed(bblock_link, parent, link, &block->parents) {
465 if (parent->block->idom) {
466 if (new_idom == NULL) {
467 new_idom = parent->block;
468 } else if (parent->block->idom != NULL) {
469 new_idom = intersect(parent->block, new_idom);
470 }
471 }
472 }
473
474 if (block->idom != new_idom) {
475 block->idom = new_idom;
476 changed = true;
477 }
478 }
479 } while (changed);
480
481 idom_dirty = false;
482 }
483
484 bblock_t *
485 cfg_t::intersect(bblock_t *b1, bblock_t *b2)
486 {
487 /* Note, the comparisons here are the opposite of what the paper says
488 * because we index blocks from beginning -> end (i.e. reverse post-order)
489 * instead of post-order like they assume.
490 */
491 while (b1->num != b2->num) {
492 while (b1->num > b2->num)
493 b1 = b1->idom;
494 while (b2->num > b1->num)
495 b2 = b2->idom;
496 }
497 assert(b1);
498 return b1;
499 }
500
501 void
502 cfg_t::dump_cfg()
503 {
504 printf("digraph CFG {\n");
505 for (int b = 0; b < num_blocks; b++) {
506 bblock_t *block = this->blocks[b];
507
508 foreach_list_typed_safe (bblock_link, child, link, &block->children) {
509 printf("\t%d -> %d\n", b, child->block->num);
510 }
511 }
512 printf("}\n");
513 }
514
515 void
516 cfg_t::dump_domtree()
517 {
518 printf("digraph DominanceTree {\n");
519 foreach_block(block, this) {
520 printf("\t%d -> %d\n", block->idom->num, block->num);
521 }
522 printf("}\n");
523 }