Heavy changes
[libfirm] / ir / opt / ifconv.c
1 /**
2  * If conversion.
3  * Make Mux nodes from Conds where it its possible.
4  * @author Sebastian Hack
5  * @date 4.2.2005
6  * $Id$
7  */
8
9 #include <stdlib.h>
10 #include <string.h>
11 #include <alloca.h>
12
13 #include "irgraph_t.h"
14 #include "irnode_t.h"
15 #include "iropt_t.h"
16 #include "irgmod.h"
17 #include "irmode_t.h"
18 #include "ircons_t.h"
19 #include "irdom_t.h"
20
21 #include "ifconv.h"
22 #include "irflag_t.h"
23
24 #include "irprintf.h"
25 #include "debug.h"
26 #include "obst.h"
27 #include "set.h"
28 #include "bitset.h"
29 #include "bitfiddle.h"
30
31 #define MAX_DEPTH                               20
32
33 /*
34  * Mux optimization routines.
35  */
36
37 #if 0
38 static ir_node *local_optimize_mux(ir_node *mux)
39 {
40         int i, n;
41         ir_node *res = mux;
42   ir_node *sel = get_Mux_sel(mux);
43         ir_node *cmp = skip_Proj(sel);
44
45         /* Optimize the children  */
46         for(i = 1, n = get_irn_arity(mux); i < n; ++i) {
47                 ir_node *operand = get_irn_n(mux, i);
48                 if(get_irn_op(operand) == op_Mux)
49                         optimize_mux(operand);
50         }
51
52         /* If we have no cmp above the mux, get out. */
53         if(is_Proj(sel) && get_irn_mode(sel) == mode_b && get_irn_opcode(cmp) == iro_Cmp) {
54
55                 pn_Cmp cc = get_Proj_proj(sel);
56                 ir_mode *mode = get_irn_mode(mux);
57                 ir_node *block = get_nodes_block(n);
58                 ir_node *cmp_left = get_Cmp_left(cmp);
59                 ir_node *cmp_right = get_Cmp_right(cmp);
60                 ir_node *mux_true = get_Mux_true(mux);
61                 ir_node *mux_false = get_Mux_false(mux);
62
63                 /*
64                  * Check for comparisons with signed integers.
65                  */
66                 if(mode_is_int(mode)                                    /* We need an integral mode */
67                                 && mode_is_signed(mode)   /* which is signed */
68                                 && cc == Lt) {                                          /* and have to compare for < */
69
70                         /*
71                          * Mux(x:T < 0, -1, 0) -> Shrs(x, sizeof_bits(T) - 1)
72                          * Conditions:
73                          * T must be signed.
74                          */
75                         if(classify_Const(cmp_right) == CNST_NULL
76                                 && classify_Const(mux_true) == CNST_ALL_ONE
77                                 && classify_Const(mux_false) == CNST_NULL) {
78
79                                 ir_mode *u_mode = find_unsigned_mode(mode);
80
81                                 res = new_r_Shrs(current_ir_graph, block, cmp_left,
82                                                 new_r_Const_long(current_ir_graph, block, u_mode,
83                                                         get_mode_size_bits(mode) - 1),
84                                                 mode);
85                         }
86
87                         /*
88                          * Mux(0 < x:T, 1, 0) -> Shr(-x, sizeof_bits(T) - 1)
89                          * Conditions:
90                          * T must be signed.
91                          */
92                         else if(classify_Const(cmp_left) == CNST_NULL
93                                 && classify_Const(mux_true) == CNST_ONE
94                                 && classify_Const(mux_false) == CNST_NULL) {
95
96                                 ir_mode *u_mode = find_unsigned_mode(mode);
97
98                                 res = new_r_Shr(current_ir_graph, block,
99
100                                                 /* -x goes to 0 - x in Firm (cmp_left is 0, see the if) */
101                                                 new_r_Sub(current_ir_graph, block, cmp_left, cmp_right, mode),
102
103                                                 /* This is sizeof_bits(T) - 1 */
104                                                 new_r_Const_long(current_ir_graph, block, u_mode,
105                                                         get_mode_size_bits(mode) - 1),
106                                                 mode);
107                         }
108                 }
109         }
110
111         return res;
112 }
113 #endif
114
115 /**
116  * check, if a node is const and return its tarval or
117  * return a default tarval.
118  * @param cnst The node whose tarval to get.
119  * @param or The alternative tarval, if the node is no Const.
120  * @return The tarval of @p cnst, if the node is Const, @p otherwise.
121  */
122 static tarval *get_value_or(ir_node *cnst, tarval *or)
123 {
124         return get_irn_op(cnst) == op_Const ? get_Const_tarval(cnst) : or;
125 }
126
127
128 /**
129  * Try to optimize nested muxes into a dis- or conjunction
130  * of two muxes.
131  * @param mux The parent mux, which has muxes as operands.
132  * @return The replacement node for this mux. If the optimization is
133  * successful, this might be an And or Or node, if not, its the mux
134  * himself.
135  */
136 static ir_node *optimize_mux_chain(ir_node *mux)
137 {
138         int i;
139         ir_node *res;
140         ir_node *ops[2];
141         ir_mode *mode = get_irn_mode(mux);
142         tarval *null;
143         tarval *minus_one;
144
145         /*
146          * If we have no mux, or its mode is not integer, we
147          * can return.
148          */
149         if(get_irn_op(mux) != op_Mux || !mode_is_int(mode))
150                 return mux;
151
152         res = mux;
153         null = get_tarval_null(mode);
154         minus_one = tarval_sub(null, get_tarval_one(mode));
155
156         ops[0] = get_Mux_false(mux);
157         ops[1] = get_Mux_true(mux);
158
159         for(i = 0; i < 2; ++i) {
160                 ir_node *a, *b, *d;
161                 tarval *tva, *tvb, *tvd;
162                 ir_node *child_mux;
163
164                 /*
165                  * A mux operand at the first position can be factored
166                  * out, if the operands fulfill several conditions:
167                  *
168                  * mux(c1, mux(c2, a, b), d)
169                  *
170                  * This can be made into:
171                  * 1) mux(c1, 0, d) | mux(c2, a, b)
172                  *    if a | d == d and b | d == d
173                  *
174                  * 2) mux(c1, -1, d) & mux(c2, a, b)
175                  *    if a & d == d and a & b == b
176                  */
177                 if(get_irn_op(ops[i]) == op_Mux) {
178
179                         child_mux = ops[i];
180                         a = get_Mux_false(child_mux);
181                         b = get_Mux_true(child_mux);
182                         d = ops[1 - i];
183
184                         /* Try the or stuff */
185                         tva = get_value_or(a, minus_one);
186                         tvb = get_value_or(b, minus_one);
187                         tvd = get_value_or(d, null);
188
189                         if(tarval_cmp(tarval_or(tva, tvd), tvd) == pn_Cmp_Eq
190                                         && tarval_cmp(tarval_or(tvb, tvd), tvd) == pn_Cmp_Eq) {
191
192                                 ops[i] = new_Const(mode, null);
193                                 res = new_r_Or(current_ir_graph, get_nodes_block(mux),
194                                                 mux, child_mux, mode);
195                                 break;
196                         }
197
198                         /* If the or didn't go, try the and stuff */
199                         tva = get_value_or(a, null);
200                         tvb = get_value_or(b, null);
201                         tvd = get_value_or(d, minus_one);
202
203                         if(tarval_cmp(tarval_and(tva, tvd), tvd) == pn_Cmp_Eq
204                                         && tarval_cmp(tarval_and(tvb, tvd), tvd) == pn_Cmp_Eq) {
205
206                                 ops[i] = new_Const(mode, minus_one);
207                                 res = new_r_And(current_ir_graph, get_nodes_block(mux),
208                                                 mux, child_mux, mode);
209                                 break;
210                         }
211                 }
212         }
213
214         /* recursively optimize nested muxes. */
215         set_irn_n(mux, 1, optimize_mux_chain(ops[0]));
216         set_irn_n(mux, 2, optimize_mux_chain(ops[1]));
217
218         return res;
219 }
220
221
222 /***********************************************************
223  * The If conversion itself.
224  ***********************************************************/
225
226 /**
227  * Default options.
228  */
229 static opt_if_conv_info_t default_info = {
230         MAX_DEPTH
231 };
232
233 /** The debugging module. */
234 static firm_dbg_module_t *dbg;
235
236 /**
237  * A simple check for sde effects upton an opcode of a ir node.
238  * @param irn The ir node to check,
239  * @return 1 if the opcode itself may produce side effects, 0 if not.
240  */
241 static INLINE int has_side_effects(const ir_node *irn)
242 {
243         opcode opc = get_irn_opcode(irn);
244
245         if(opc == iro_Cmp)
246                 return 0;
247
248         return !mode_is_datab(get_irn_mode(irn));
249 }
250
251 /**
252  * Decdies, if a given expression and its subexpressions
253  * (to certain, also given extent) can be moved to a block.
254  * @param expr The expression to examine.
255  * @param block The block where the expression should go.
256  * @param depth The current depth, passed recursively. Use 0 for
257  * non-recursive calls.
258  * @param max_depth The maximum depth to which the expression should be
259  * examined.
260  */
261 static int _can_move_to(ir_node *expr, ir_node *dest_block, int depth, int max_depth)
262 {
263         int i, n;
264         int res = 1;
265         ir_node *expr_block = get_nodes_block(expr);
266
267
268         /*
269          * If we are forced to look too deep into the expression,
270          * treat it like it could not be moved.
271          */
272         if(depth >= max_depth) {
273                 res = 0;
274                 goto end;
275         }
276
277         /*
278          * If the block of the expression dominates the specified
279          * destination block, it does not matter if the expression
280          * has side effects or anything else. It is executed on each
281          * path the destination block is reached.
282          */
283         if(block_dominates(expr_block, dest_block))
284                 goto end;
285
286         /*
287          * We cannot move phis!
288          */
289         if(is_Phi(expr)) {
290                 res = 0;
291                 goto end;
292         }
293
294         /*
295          * This should be superflous and could be converted into a assertion.
296          * The destination block _must_ dominate the block of the expression,
297          * else the expression could be used without its definition.
298          */
299         if(!block_dominates(dest_block, expr_block)) {
300                 res = 0;
301                 goto end;
302         }
303
304         /*
305          * Surely, if the expression does not have a data mode, it is not
306          * movable. Perhaps onw should also test the floating property of
307          * the opcode/node.
308          */
309         if(has_side_effects(expr)) {
310                 res = 0;
311                 goto end;
312         }
313
314         /*
315          * If the node looks alright so far, look at its operands and
316          * check them out. If one of them cannot be moved, this one
317          * cannot be moved either.
318          */
319         for(i = 0, n = get_irn_arity(expr); i < n; ++i) {
320                 ir_node *op = get_irn_n(expr, i);
321                 int new_depth = is_Proj(op) ? depth : depth + 1;
322                 if(!_can_move_to(op, dest_block, new_depth, max_depth)) {
323                         res = 0;
324                         goto end;
325                 }
326         }
327
328 end:
329         DBG((dbg, LEVEL_3, "\t\t\t%Dcan move to %n: %d\n", depth, expr, res));
330
331         return res;
332 }
333
334 /**
335  * Convenience function for _can_move_to.
336  * Checks, if an expression can be moved to another block. The check can
337  * be limited to a expression depth meaning if we need to crawl in
338  * deeper into an expression than a given threshold to examine if
339  * it can be moved, the expression is rejected and the test returns
340  * false.
341  * @param expr The expression to check for.
342  * @param dest_block The destination block you want @p expr to be.
343  * @param max_depth The maximum depth @p expr should be investigated.
344  * @return 1, if the expression can be moved to the destination block,
345  * 0 if not.
346  */
347 static INLINE int can_move_to(ir_node *expr, ir_node *dest_block, int max_depth)
348 {
349         return _can_move_to(expr, dest_block, 0, max_depth);
350 }
351
352 static void move_to(ir_node *expr, ir_node *dest_block)
353 {
354         int i, n;
355         ir_node *expr_block = get_nodes_block(expr);
356
357         /*
358          * If we reached the dominator, we are done.
359          * We will never put code through the dominator
360          */
361         if(block_dominates(expr_block, dest_block))
362                 return;
363
364         for(i = 0, n = get_irn_arity(expr); i < n; ++i)
365                 move_to(get_irn_n(expr, i), dest_block);
366
367         set_nodes_block(expr, dest_block);
368 }
369
370 static INLINE ir_node *common_idom(ir_node *b1, ir_node *b2)
371 {
372         if(block_dominates(b1, b2))
373                 return b1;
374         else if(block_dominates(b2, b1))
375                 return b2;
376         else {
377                 ir_node *p;
378
379                 for(p = b1; !block_dominates(p, b2); p = get_Block_idom(p));
380                 return p;
381         }
382 }
383
384
385 /**
386  * Information about a cond node.
387  */
388 typedef struct _cond_t {
389         ir_node *cond;                                  /**< The cond node. */
390         struct list_head list;  /**< List head which is used for queueing this cond
391                                                                                                                 into the cond bunch it belongs to. */
392         unsigned in_list : 1;
393         unsigned is_new : 1;
394         struct _cond_t *link;
395         long visited_nr;
396
397         /**
398          * Information about the both 'branches'
399          * (true and false), the cond creates.
400          */
401         struct {
402                 int pos;                                                /**< Number of the predecessor of the
403                                                                                                         phi block by which this branch is
404                                                                                                         reached. It is -1, if this branch is
405                                                                                                         only reached through another cond. */
406
407                 struct _cond_t *masked_by;      /**< If this cond's branch is only reached
408                                                                                                                                         through another cond, we store this
409                                                                                                                                         cond ir_node here. */
410         } cases[2];
411 } cond_t;
412
413 static INLINE cond_t *get_cond(ir_node *irn, set *cond_set)
414 {
415         cond_t templ;
416
417         templ.cond = irn;
418         return set_find(cond_set, &templ, sizeof(templ), HASH_PTR(templ.cond));
419 }
420
421
422 typedef void (cond_walker_t)(cond_t *cond, void *env);
423
424 static void _walk_conds(cond_t *cond, cond_walker_t *pre, cond_walker_t *post,
425                         long visited_nr, void *env)
426 {
427         int i;
428
429         if(cond->visited_nr >= visited_nr)
430                 return;
431
432         cond->visited_nr = visited_nr;
433
434         if(pre)
435                 pre(cond, env);
436
437         for(i = 0; i < 2; ++i) {
438                 cond_t *c = cond->cases[i].masked_by;
439
440                 if(c)
441                         _walk_conds(c, pre, post, visited_nr, env);
442         }
443
444         if(post)
445                 post(cond, env);
446 }
447
448 static void walk_conds(cond_t *cond, cond_walker_t *pre, cond_walker_t *post, void *env)
449 {
450         static long visited_nr = 0;
451         _walk_conds(cond, pre, post, ++visited_nr, env);
452 }
453
454 static void link_conds(cond_t *cond, void *env)
455 {
456         cond_t **ptr = (cond_t **) env;
457
458         cond->link = *ptr;
459         *ptr = cond;
460 }
461
462 /**
463  * Compare two conds for use in a firm set.
464  * Two cond_t's are equal, if they designate the same cond node.
465  * @param a A cond_t.
466  * @param b Another one.
467  * @param size Not used.
468  * @return 0 (!) if they are equal, != 0 otherwise.
469  */
470 static int cond_cmp(const void *a, const void *b, size_t size)
471 {
472         const cond_t *x = a;
473         const cond_t *y = b;
474         return x->cond != y->cond;
475 }
476
477 /**
478  * Information about conds which can be made to muxes.
479  * Instances of this struct are attached to the link field of
480  * blocks in which phis are located.
481  */
482 typedef struct _cond_info_t {
483         struct list_head list;                  /**< Used to list all of these structs per class. */
484
485         struct list_head roots;                 /**< A list of non-depending conds. Two conds are
486                                                                                                                                 independent, if yot can not reach the one from the
487                                                                                                                                 other (all conds in this list have to dominate the
488                                                                                                                                 block this struct is attached to. */
489
490         set *cond_set;                                                  /**< A set of all dominating reachable conds. */
491 } cond_info_t;
492
493 /**
494  * @see find_conds.
495  */
496 static void _find_conds(ir_node *irn, long visited_nr,
497                 ir_node *dominator, cond_t *masked_by, int pos, int depth, cond_info_t *ci)
498 {
499         ir_node *block;
500         int is_modeb_cond = 0;
501
502         block = get_nodes_block(irn);
503
504         /*
505          * Only check this block if it is dominated by the specified
506          * dominator or it has not been visited yet.
507          */
508         if(block_dominates(dominator, block) && get_Block_block_visited(block) < visited_nr) {
509                 cond_t *res = NULL;
510                 int i, n;
511
512                 /* check, if we're on a ProjX
513                  *
514                  * Further, the ProjX/Cond block must dominate the base block
515                  * (the block with the phi in it), otherwise, the Cond
516                  * is not affecting the phi so that a mux can be inserted.
517                  */
518                 if(is_Proj(irn) && get_irn_mode(irn) == mode_X) {
519
520                         int proj = get_Proj_proj(irn);
521                         ir_node *cond = get_Proj_pred(irn);
522
523                         /* true, if the mode is a mode_b cond _NO_ switch cond */
524                         is_modeb_cond = get_irn_opcode(cond) == iro_Cond
525                                 && get_irn_mode(get_Cond_selector(cond)) == mode_b;
526
527                         /* Check, if the pred of the proj is a Cond
528                          * with a Projb as selector.
529                          */
530                         if(is_modeb_cond) {
531                                 cond_t c;
532
533                                 memset(&c, 0, sizeof(c));
534                                 c.cond = cond;
535                                 c.is_new = 1;
536                                 c.cases[0].pos = -1;
537                                 c.cases[1].pos = -1;
538
539                                 /* get or insert the cond info into the set. */
540                                 res = set_insert(ci->cond_set, &c, sizeof(c), HASH_PTR(cond));
541
542                                 if(res->is_new) {
543                                         res->is_new = 0;
544                                         INIT_LIST_HEAD(&res->list);
545                                 }
546
547                                 if(!res->in_list) {
548                                         res->in_list = 1;
549                                         list_add(&res->list, &ci->roots);
550                                 }
551
552                                 /*
553                                  * Set masked by (either NULL or another cond node.
554                                  * If this cond is truly masked by another one, set
555                                  * the position of the actually investigated branch
556                                  * to -1. Since the cond is masked by another one,
557                                  * there could be more ways from the start block
558                                  * to this branch, so we choose -1.
559                                  */
560                                 res->cases[proj].masked_by = masked_by;
561
562                                 if(!masked_by)
563                                         res->cases[proj].pos = pos;
564
565                                 /*
566                                  * Since the masked_by nodes masks a cond, remove it from the
567                                  * root list of the conf trees.
568                                  */
569                                 else if(!list_empty(&masked_by->list)) {
570                                         list_del_init(&masked_by->list);
571                                 }
572
573                                 DBG((dbg, LEVEL_2, "%{firm:indent}found cond %n (%s branch) "
574                                                         "for pos %d in block %n reached by %n\n",
575                                                         depth, cond, get_Proj_proj(irn) ? "true" : "false", pos,
576                                                         block, masked_by ? masked_by->cond : NULL));
577                         }
578                 }
579
580                 if(get_Block_block_visited(block) < visited_nr) {
581
582                         set_Block_block_visited(block, visited_nr);
583
584                         /* Search recursively from this cond. */
585                         for(i = 0, n = get_irn_arity(block); i < n; ++i) {
586                                 ir_node *pred = get_irn_n(block, i);
587
588                                 /*
589                                  * If the depth is 0 (the first recursion), we set the pos to
590                                  * the current viewed predecessor, else we adopt the position
591                                  * as given by the caller. We also increase the depth for the
592                                  * recursively called functions.
593                                  */
594                                 _find_conds(pred, visited_nr, dominator, res, pos, depth + 1, ci);
595                         }
596                 }
597         }
598 }
599
600
601 /**
602  * A convenience function for _find_conds.
603  * It sets some parameters needed for recursion to appropriate start
604  * values. Always use this function.
605  * @param irn The node to start looking for conds from. This might
606  *      be the phi node we are investigating.
607  * @param conds The set to record the found conds in.
608  */
609 static INLINE void find_conds(ir_node *irn, cond_info_t *ci)
610 {
611         int i, n;
612         long visited_nr;
613         ir_node *block = get_nodes_block(irn);
614         ir_node *dom = get_Block_idom(block);
615
616
617         for(i = 0, n = get_irn_arity(block); i < n; ++i) {
618                 ir_node *pred = get_irn_n(block, i);
619
620                 inc_irg_block_visited(current_ir_graph);
621                 visited_nr = get_irg_block_visited(current_ir_graph);
622                 set_Block_block_visited(block, visited_nr);
623                 DBG((dbg, LEVEL_2, "find conds at pred %d (%n) and idom %n\n", i, pred, dom));
624                 _find_conds(pred, visited_nr, dom, NULL, i, 0, ci);
625         }
626 }
627
628
629 /**
630  * Make the mux for a given cond.
631  * @param phi The phi node which shall be replaced by a mux.
632  * @param dom The block where the muxes shall be placed.
633  * @param cond The cond information.
634  * @return The mux node made for this cond.
635  */
636 static ir_node *make_mux_on_demand(ir_node *phi, ir_node *dom, cond_t *cond,
637                 int max_depth, ir_node **mux, bitset_t *positions)
638 {
639         int i;
640         ir_node *projb = get_Cond_selector(cond->cond);
641         ir_node *bl = get_nodes_block(cond->cond);
642         ir_node *operands[2];
643         int set[2];
644
645         DBG((dbg, LEVEL_2, "%n\n", cond->cond));
646         for(i = 0; i < 2; ++i) {
647                 cond_t *masked_by = cond->cases[i].masked_by;
648                 int pos = cond->cases[i].pos;
649
650                 operands[i] = NULL;
651                 set[i] = -1;
652
653                 /*
654                  * If this cond branch is masked by another cond, make the mux
655                  * for that cond first, since the mux for this cond takes
656                  * it as an operand.
657                  */
658                 if(masked_by) {
659                         assert(pos < 0);
660                         operands[i] = make_mux_on_demand(phi, dom, masked_by, max_depth, mux, positions);
661                 }
662
663                 /*
664                  * If this cond branch is not masked by another cond, take
665                  * the corresponding phi operand as an operand to the mux.
666                  */
667                 else if(pos >= 0) {
668                         operands[i] = get_irn_n(phi, pos);
669                         set[i] = pos;
670                 }
671         }
672
673         /*
674          * Move the operands to the dominator block if the cond
675          * made sense. Some conds found are not suitable for making a mux
676          * out of them, since one of their branches cannot be reached from
677          * the phi block. In that case we do not make a mux and return NULL.
678          */
679         if(operands[0] && operands[1]
680                         && can_move_to(operands[0], bl, max_depth)
681                         && can_move_to(operands[1], bl, max_depth)) {
682
683                 move_to(operands[0], bl);
684                 move_to(operands[1], bl);
685
686                 /* Make the mux. */
687                 *mux = new_r_Mux(current_ir_graph, bl, projb,
688                                 operands[0], operands[1], get_irn_mode(operands[0]));
689
690                 DBG((dbg, LEVEL_2, "\t%n(%n, %n, %n)[%d, %d]\n",
691                                         *mux, projb, operands[0], operands[1], set[0], set[1]));
692
693                 for(i = 0; i < 2; ++i)
694                         if(set[i] >= 0)
695                                 bitset_set(positions, set[i]);
696         }
697
698         return *mux;
699 }
700
701 typedef struct _phi_info_t {
702         struct list_head list;
703         cond_info_t *cond_info;
704         ir_node *irn;
705 } phi_info_t;
706
707
708 /**
709  * Examine a phi node if it can be replaced by some muxes.
710  * @param irn A phi node.
711  * @param info Parameters for the if conversion algorithm.
712  */
713 static void check_out_phi(phi_info_t *phi_info, opt_if_conv_info_t *info)
714 {
715         int max_depth = info->max_depth;
716         ir_node *irn = phi_info->irn;
717         ir_node *block, *nw;
718         cond_info_t *cond_info = phi_info->cond_info;
719         cond_t *cond;
720         int i, arity;
721         bitset_t *positions;
722
723         block = get_nodes_block(irn);
724         arity = get_irn_arity(irn);
725         positions = bitset_alloca(arity);
726
727         assert(is_Phi(irn));
728         assert(get_irn_arity(irn) == get_irn_arity(block));
729         assert(arity > 0);
730
731         DBG((dbg, LEVEL_2, "phi candidate: %n\n", irn));
732
733         list_for_each_entry(cond_t, cond, &cond_info->roots, list) {
734                 ir_node *cidom = block;
735                 ir_node *mux = NULL;
736                 cond_t *p, *head = NULL;
737                 long pos;
738
739                 bitset_clear_all(positions);
740
741                 DBG((dbg, LEVEL_2, "\tcond root: %n\n", cond->cond));
742                 /*
743                  * Link all conds which are in the subtree of
744                  * the current cond in the list together.
745                  */
746                 walk_conds(cond, link_conds, NULL, &head);
747
748                 cidom = block;
749                 for(p = head; p; p = p->link) {
750                         for(i = 0; i < 2; ++i) {
751                                 int pos = p->cases[i].pos;
752                                 if(pos != -1)
753                                         cidom = common_idom(cidom, get_nodes_block(get_irn_n(block, pos)));
754                         }
755                 }
756
757                 DBG((dbg, LEVEL_2, "\tcommon idom: %n\n", cidom));
758                 make_mux_on_demand(irn, cidom, cond, max_depth, &mux, positions);
759
760                 if(mux) {
761                         bitset_foreach(positions, pos) {
762                                 set_irn_n(irn, (int) pos, mux);
763                         }
764                 }
765         }
766
767         /*
768          * optimize the phi away. This can anable further runs of this
769          * function. Look at _can_move. phis cannot be moved there.
770          */
771         nw = optimize_in_place_2(irn);
772         if(nw != irn)
773                 exchange(irn, nw);
774 }
775
776 typedef struct _cond_walk_info_t {
777         struct obstack *obst;
778         struct list_head cond_info_head;
779         struct list_head phi_head;
780 } cond_walk_info_t;
781
782
783 static void annotate_cond_info_pre(ir_node *irn, void *data)
784 {
785         set_irn_link(irn, NULL);
786 }
787
788 static void annotate_cond_info_post(ir_node *irn, void *data)
789 {
790         cond_walk_info_t *cwi = data;
791
792         /*
793          * Check, if the node is a phi
794          * we then compute a set of conds which are reachable from this
795          * phi's block up to its dominator.
796          * The set is attached to the blocks link field.
797          */
798         if(is_Phi(irn) && mode_is_datab(get_irn_mode(irn))) {
799                 ir_node *block = get_nodes_block(irn);
800
801                 cond_info_t *ci = get_irn_link(block);
802
803                 /* If the set is not yet computed, do it now. */
804                 if(!ci) {
805                         ci = obstack_alloc(cwi->obst, sizeof(*ci));
806                         ci->cond_set = new_set(cond_cmp, log2_ceil(get_irn_arity(block)));
807                         INIT_LIST_HEAD(&ci->roots);
808                         INIT_LIST_HEAD(&ci->list);
809
810                         /*
811                          * Add this cond info to the list of all cond infos
812                          * in this graph. This is just done to free the
813                          * set easier afterwards (we save an irg_walk_graph).
814                          */
815                         list_add(&cwi->cond_info_head, &ci->list);
816
817                         DBG((dbg, LEVEL_2, "searching conds at %n\n", irn));
818
819                         /*
820                          * Fill the set with conds we find on the way from
821                          * the block to its dominator.
822                          */
823                         find_conds(irn, ci);
824
825                         /*
826                          * If there where no suitable conds, delete the set
827                          * immediately and reset the set pointer to NULL
828                          */
829                         if(set_count(ci->cond_set) == 0) {
830                                 del_set(ci->cond_set);
831                                 list_del(&ci->list);
832                                 obstack_free(cwi->obst, ci);
833                                 ci = NULL;
834                         }
835                 }
836
837                 else
838                         DBG((dbg, LEVEL_2, "conds already computed for %n\n", irn));
839
840                 set_irn_link(block, ci);
841
842                 if(ci) {
843                         phi_info_t *pi = obstack_alloc(cwi->obst, sizeof(*pi));
844                         pi->irn = irn;
845                         pi->cond_info = ci;
846                         INIT_LIST_HEAD(&pi->list);
847                         list_add(&pi->list, &cwi->phi_head);
848                 }
849
850         }
851 }
852
853 static void dump_conds(cond_t *cond, void *env)
854 {
855         int i;
856         FILE *f = env;
857
858         ir_fprintf(f, "node:{title:\"n%p\" label:\"%n(%d, %d)\n%n\"}\n",
859                         cond, cond->cond, cond->cases[0].pos, cond->cases[1].pos,
860                         get_nodes_block(cond->cond));
861
862         for(i = 0; i < 2; ++i)
863                 if(cond->cases[i].masked_by)
864                         ir_fprintf(f, "edge:{sourcename:\"n%p\" targetname:\"n%p\" label:\"%d\"}\n",
865                                         cond, cond->cases[i].masked_by, i);
866 }
867
868 static void vcg_dump_conds(ir_graph *irg, cond_walk_info_t *cwi)
869 {
870         char buf[512];
871         FILE *f;
872
873         snprintf(buf, sizeof(buf), "%s-conds.vcg", get_entity_name(get_irg_entity(irg)));
874
875         if((f = fopen(buf, "wt")) != NULL) {
876                 cond_info_t *ci;
877                 phi_info_t *phi;
878                 cond_t *cond;
879
880                 ir_fprintf(f, "graph:{\ndisplay_edge_labels:yes\n");
881                 list_for_each_entry(cond_info_t, ci, &cwi->cond_info_head, list) {
882                         ir_fprintf(f, "node:{title:\"n%p\" label:\"cond info\"}\n", ci);
883                         list_for_each_entry(cond_t, cond, &ci->roots, list) {
884                                 walk_conds(cond, NULL, dump_conds, f);
885                                 ir_fprintf(f, "edge:{sourcename:\"n%p\" targetname:\"n%p\"}\n", ci, cond);
886                         }
887                 }
888
889                 list_for_each_entry(phi_info_t, phi, &cwi->phi_head, list) {
890                         ir_fprintf(f, "node:{title:\"n%p\" label:\"%n\n%n\"}\n",
891                                         phi->irn, phi->irn, get_nodes_block(phi->irn));
892                         ir_fprintf(f, "edge:{sourcename:\"n%p\" targetname:\"n%p\"}\n", phi->irn, phi->cond_info);
893                 }
894                 fprintf(f, "}\n");
895         }
896 }
897
898 #if 0
899 /**
900  * Free the sets which are put at some blocks.
901  */
902 static void free_sets(ir_node *irn, void *data)
903 {
904         if(is_Block(irn) && get_irn_link(irn)) {
905                 set *conds = get_irn_link(irn);
906                 del_set(conds);
907         }
908 }
909 #endif
910
911 void opt_if_conv(ir_graph *irg, opt_if_conv_info_t *params)
912 {
913         struct obstack obst;
914         phi_info_t *phi_info;
915         cond_info_t *cond_info;
916         cond_walk_info_t cwi;
917
918         opt_if_conv_info_t *p = params ? params : &default_info;
919
920         if(!get_opt_if_conversion())
921                 return;
922
923         obstack_init(&obst);
924
925         cwi.obst = &obst;
926         INIT_LIST_HEAD(&cwi.cond_info_head);
927         INIT_LIST_HEAD(&cwi.phi_head);
928
929         /* Init the debug stuff. */
930         dbg = firm_dbg_register("firm.opt.ifconv");
931 #if 0
932         firm_dbg_set_mask(dbg, LEVEL_1 | LEVEL_2 | LEVEL_3);
933 #endif
934
935         /* Ensure, that the dominators are computed. */
936         compute_doms(irg);
937
938         DBG((dbg, LEVEL_2, "if conversion for irg %s(%p)\n",
939                                 get_entity_name(get_irg_entity(irg)), irg));
940
941         /*
942          * Collect information about the conds pu the phis on an obstack.
943          * It is important that phi nodes which are 'higher' (with a
944          * lower dfs pre order) are in front of the obstack. Since they are
945          * possibly turned in to muxes this can enable the optimization
946          * of 'lower' ones.
947          */
948         irg_walk_graph(irg, annotate_cond_info_pre, annotate_cond_info_post, &cwi);
949
950 #if 0
951         vcg_dump_conds(irg, &cwi);
952 #endif
953
954         /* Process each suitable phi found. */
955         list_for_each_entry(phi_info_t, phi_info, &cwi.phi_head, list) {
956                 DBG((dbg, LEVEL_4, "phi node %n\n", phi_info->irn));
957                 check_out_phi(phi_info, p);
958         }
959
960         list_for_each_entry(cond_info_t, cond_info, &cwi.cond_info_head, list) {
961                 del_set(cond_info->cond_set);
962         }
963
964         obstack_free(&obst, NULL);
965 }