added architectures evaluate function that decides, whether the
authorMichael Beck <beck@ipd.info.uni-karlsruhe.de>
Wed, 30 Mar 2005 09:06:38 +0000 (09:06 +0000)
committerMichael Beck <beck@ipd.info.uni-karlsruhe.de>
Wed, 30 Mar 2005 09:06:38 +0000 (09:06 +0000)
Mux should be created or not

[r5490]

ir/opt/ifconv.c
ir/opt/ifconv.h

index 0c907d3..bc4ec8e 100644 (file)
@@ -1,9 +1,20 @@
+/*
+ * Project:     libFIRM
+ * File name:   ir/opt/ifconv.c
+ * Purpose:     If conversion
+ * Author:      Sebastian Hack.
+ * Created:
+ * CVS-ID:      $Id$
+ * Copyright:   (c) 1998-2005 Universität Karlsruhe
+ * Licence:     This file protected by GPL -  GNU GENERAL PUBLIC LICENSE.
+ */
+
 /**
+ * @file ifconv.c
  * If conversion.
  * Make Mux nodes from Conds where it its possible.
  * @author Sebastian Hack
  * @date 4.2.2005
- * $Id$
  */
 #ifdef HAVE_CONFIG_H
 #include "config.h"
@@ -42,7 +53,7 @@
 #include "irhooks.h"
 #include "return.h"
 
-#define MAX_DEPTH                              4
+#define MAX_DEPTH   4
 
 /**
  * check, if a node is const and return its tarval or
@@ -53,7 +64,7 @@
  */
 static tarval *get_value_or(ir_node *cnst, tarval *or)
 {
-       return get_irn_op(cnst) == op_Const ? get_Const_tarval(cnst) : or;
+  return get_irn_op(cnst) == op_Const ? get_Const_tarval(cnst) : or;
 }
 
 
@@ -67,87 +78,87 @@ static tarval *get_value_or(ir_node *cnst, tarval *or)
  */
 static ir_node *optimize_mux_chain(ir_node *mux)
 {
-       int i;
-       ir_node *res;
-       ir_node *ops[2];
-       ir_mode *mode = get_irn_mode(mux);
-       tarval *null;
-       tarval *minus_one;
-
-       /*
-        * If we have no mux, or its mode is not integer, we
-        * can return.
-        */
-       if(get_irn_op(mux) != op_Mux || !mode_is_int(mode))
-               return mux;
-
-       res = mux;
-       null = get_tarval_null(mode);
-       minus_one = tarval_sub(null, get_tarval_one(mode));
-
-       ops[0] = get_Mux_false(mux);
-       ops[1] = get_Mux_true(mux);
-
-       for(i = 0; i < 2; ++i) {
-               ir_node *a, *b, *d;
-               tarval *tva, *tvb, *tvd;
-               ir_node *child_mux;
-
-               /*
-                * A mux operand at the first position can be factored
-                * out, if the operands fulfill several conditions:
-                *
-                * mux(c1, mux(c2, a, b), d)
-                *
-                * This can be made into:
-                * 1) mux(c1, 0, d) | mux(c2, a, b)
-                *    if a | d == d and b | d == d
-                *
-                * 2) mux(c1, -1, d) & mux(c2, a, b)
-                *    if a & d == d and a & b == b
-                */
-               if(get_irn_op(ops[i]) == op_Mux) {
-
-                       child_mux = ops[i];
-                       a = get_Mux_false(child_mux);
-                       b = get_Mux_true(child_mux);
-                       d = ops[1 - i];
-
-                       /* Try the or stuff */
-                       tva = get_value_or(a, minus_one);
-                       tvb = get_value_or(b, minus_one);
-                       tvd = get_value_or(d, null);
-
-                       if(tarval_cmp(tarval_or(tva, tvd), tvd) == pn_Cmp_Eq
-                                       && tarval_cmp(tarval_or(tvb, tvd), tvd) == pn_Cmp_Eq) {
-
-                               ops[i] = new_Const(mode, null);
-                               res = new_r_Or(current_ir_graph, get_nodes_block(mux),
-                                               mux, child_mux, mode);
-                               break;
-                       }
-
-                       /* If the or didn't go, try the and stuff */
-                       tva = get_value_or(a, null);
-                       tvb = get_value_or(b, null);
-                       tvd = get_value_or(d, minus_one);
-
-                       if(tarval_cmp(tarval_and(tva, tvd), tvd) == pn_Cmp_Eq
-                                       && tarval_cmp(tarval_and(tvb, tvd), tvd) == pn_Cmp_Eq) {
-
-                               ops[i] = new_Const(mode, minus_one);
-                               res = new_r_And(current_ir_graph, get_nodes_block(mux),
-                                               mux, child_mux, mode);
-                               break;
-                       }
-               }
-       }
-
-       /* recursively optimize nested muxes. */
-       set_irn_n(mux, 1, optimize_mux_chain(ops[0]));
-       set_irn_n(mux, 2, optimize_mux_chain(ops[1]));
-
-       return res;
+  int i;
+  ir_node *res;
+  ir_node *ops[2];
+  ir_mode *mode = get_irn_mode(mux);
+  tarval *null;
+  tarval *minus_one;
+
+  /*
+   * If we have no mux, or its mode is not integer, we
+   * can return.
+   */
+  if(get_irn_op(mux) != op_Mux || !mode_is_int(mode))
+    return mux;
+
+  res = mux;
+  null = get_tarval_null(mode);
+  minus_one = tarval_sub(null, get_tarval_one(mode));
+
+  ops[0] = get_Mux_false(mux);
+  ops[1] = get_Mux_true(mux);
+
+  for(i = 0; i < 2; ++i) {
+    ir_node *a, *b, *d;
+    tarval *tva, *tvb, *tvd;
+    ir_node *child_mux;
+
+    /*
+     * A mux operand at the first position can be factored
+     * out, if the operands fulfill several conditions:
+     *
+     * mux(c1, mux(c2, a, b), d)
+     *
+     * This can be made into:
+     * 1) mux(c1, 0, d) | mux(c2, a, b)
+     *    if a | d == d and b | d == d
+     *
+     * 2) mux(c1, -1, d) & mux(c2, a, b)
+     *    if a & d == d and a & b == b
+     */
+    if(get_irn_op(ops[i]) == op_Mux) {
+
+      child_mux = ops[i];
+      a = get_Mux_false(child_mux);
+      b = get_Mux_true(child_mux);
+      d = ops[1 - i];
+
+      /* Try the or stuff */
+      tva = get_value_or(a, minus_one);
+      tvb = get_value_or(b, minus_one);
+      tvd = get_value_or(d, null);
+
+      if(tarval_cmp(tarval_or(tva, tvd), tvd) == pn_Cmp_Eq
+          && tarval_cmp(tarval_or(tvb, tvd), tvd) == pn_Cmp_Eq) {
+
+        ops[i] = new_Const(mode, null);
+        res = new_r_Or(current_ir_graph, get_nodes_block(mux),
+            mux, child_mux, mode);
+        break;
+      }
+
+      /* If the or didn't go, try the and stuff */
+      tva = get_value_or(a, null);
+      tvb = get_value_or(b, null);
+      tvd = get_value_or(d, minus_one);
+
+      if(tarval_cmp(tarval_and(tva, tvd), tvd) == pn_Cmp_Eq
+          && tarval_cmp(tarval_and(tvb, tvd), tvd) == pn_Cmp_Eq) {
+
+        ops[i] = new_Const(mode, minus_one);
+        res = new_r_And(current_ir_graph, get_nodes_block(mux),
+            mux, child_mux, mode);
+        break;
+      }
+    }
+  }
+
+  /* recursively optimize nested muxes. */
+  set_irn_n(mux, 1, optimize_mux_chain(ops[0]));
+  set_irn_n(mux, 2, optimize_mux_chain(ops[1]));
+
+  return res;
 }
 
 
@@ -155,11 +166,17 @@ static ir_node *optimize_mux_chain(ir_node *mux)
  * The If conversion itself.
  ***********************************************************/
 
+/** allow every Mux to be created. */
+static int default_allow_mux(ir_node *sel, ir_node *false_res, ir_node *true_res) {
+  return 1;
+}
+
 /**
  * Default options.
  */
-static opt_if_conv_info_t default_info = {
-       MAX_DEPTH
+static const opt_if_conv_info_t default_info = {
+  MAX_DEPTH,
+  default_allow_mux
 };
 
 /** The debugging module. */
@@ -172,19 +189,23 @@ static firm_dbg_module_t *dbg;
  */
 static INLINE int has_side_effects(const ir_node *irn)
 {
-       ir_op *op = get_irn_op(irn);
+  ir_op *op = get_irn_op(irn);
 
-       if (op == op_Cmp)
-               return 0;
+  if (op == op_Cmp)
+    return 0;
 
-       return !mode_is_datab(get_irn_mode(irn));
+  return !mode_is_datab(get_irn_mode(irn));
 }
 
+/**
+ * Possible failure reasons
+ */
 enum failure_reason_t {
   SUCCESS      = IF_RESULT_SUCCESS,
   TO_DEEP      = IF_RESULT_TOO_DEEP,
   SIDE_EFFECTS = IF_RESULT_SIDE_EFFECT,
-  PHI_FOUND    = IF_RESULT_SIDE_EFFECT_PHI
+  PHI_FOUND    = IF_RESULT_SIDE_EFFECT_PHI,
+  DENIED       = IF_RESULT_DENIED
 };
 
 /**
@@ -195,82 +216,82 @@ enum failure_reason_t {
  * @param block     The block where the expression should go.
  * @param depth     The current depth, passed recursively. Use 0 for
  *                  non-recursive calls.
- * @param max_depth The maximum depth to which the expression should be
+ * @param info      The options for createing Mux nodes.
  * examined.
  *
  * @return a failure reason
  */
-static int _can_move_to(ir_node *expr, ir_node *dest_block, int depth, int max_depth)
+static int _can_move_to(ir_node *expr, ir_node *dest_block, int depth, const opt_if_conv_info_t *info)
 {
-       int i, n;
-       int res = SUCCESS;
-       ir_node *expr_block = get_nodes_block(expr);
-
-       /*
-        * If we are forced to look too deep into the expression,
-        * treat it like it could not be moved.
-        */
-       if(depth >= max_depth) {
-               res = TO_DEEP;
-               goto end;
-       }
-
-       /*
-        * If the block of the expression dominates the specified
-        * destination block, it does not matter if the expression
-        * has side effects or anything else. It is executed on each
-        * path the destination block is reached.
-        */
-       if (block_dominates(expr_block, dest_block))
-               goto end;
-
-       /*
-        * We cannot move phis!
-        */
-       if (is_Phi(expr)) {
-               res = PHI_FOUND;
-               goto end;
-       }
-
-       /*
-        * This should be superfluous and could be converted into a assertion.
-        * The destination block _must_ dominate the block of the expression,
-        * else the expression could be used without its definition.
-        */
-       if (! block_dominates(dest_block, expr_block)) {
-               res = IF_RESULT_SIDE_EFFECT;
-               goto end;
-       }
-
-       /*
-        * Surely, if the expression does not have a data mode, it is not
-        * movable. Perhaps one should also test the floating property of
-        * the opcode/node.
-        */
-       if (has_side_effects(expr)) {
-               res = IF_RESULT_SIDE_EFFECT;
-               goto end;
-       }
-
-       /*
-        * If the node looks alright so far, look at its operands and
-        * check them out. If one of them cannot be moved, this one
-        * cannot be moved either.
-        */
-       for (i = 0, n = get_irn_arity(expr); i < n; ++i) {
-               ir_node *op = get_irn_n(expr, i);
-               int new_depth = is_Proj(op) ? depth : depth + 1;
-
-    res = _can_move_to(op, dest_block, new_depth, max_depth);
+  int i, n;
+  int res = SUCCESS;
+  ir_node *expr_block = get_nodes_block(expr);
+
+  /*
+   * If we are forced to look too deep into the expression,
+   * treat it like it could not be moved.
+   */
+  if(depth >= info->max_depth) {
+    res = TO_DEEP;
+    goto end;
+  }
+
+  /*
+   * If the block of the expression dominates the specified
+   * destination block, it does not matter if the expression
+   * has side effects or anything else. It is executed on each
+   * path the destination block is reached.
+   */
+  if (block_dominates(expr_block, dest_block))
+    goto end;
+
+  /*
+   * We cannot move phis!
+   */
+  if (is_Phi(expr)) {
+    res = PHI_FOUND;
+    goto end;
+  }
+
+  /*
+   * This should be superfluous and could be converted into a assertion.
+   * The destination block _must_ dominate the block of the expression,
+   * else the expression could be used without its definition.
+   */
+  if (! block_dominates(dest_block, expr_block)) {
+    res = IF_RESULT_SIDE_EFFECT;
+    goto end;
+  }
+
+  /*
+   * Surely, if the expression does not have a data mode, it is not
+   * movable. Perhaps one should also test the floating property of
+   * the opcode/node.
+   */
+  if (has_side_effects(expr)) {
+    res = IF_RESULT_SIDE_EFFECT;
+    goto end;
+  }
+
+  /*
+   * If the node looks alright so far, look at its operands and
+   * check them out. If one of them cannot be moved, this one
+   * cannot be moved either.
+   */
+  for (i = 0, n = get_irn_arity(expr); i < n; ++i) {
+    ir_node *op = get_irn_n(expr, i);
+    int new_depth = is_Proj(op) ? depth : depth + 1;
+
+    res = _can_move_to(op, dest_block, new_depth, info);
 
     if (res != SUCCESS)
-                       goto end;
-       }
+      goto end;
+  }
 
 end:
-       DBG((dbg, LEVEL_3, "\t\t\t%Dcan move to %n: %d\n", depth, expr, res));
+  DBG((dbg, LEVEL_3, "\t\t\t%Dcan move to %n: %d\n", depth, expr, res));
 
-       return res;
+  return res;
 }
 
 /**
@@ -283,13 +304,13 @@ end:
  *
  * @param expr       The expression to check for.
  * @param dest_block The destination block you want @p expr to be.
- * @param max_depth  The maximum depth @p expr should be investigated.
+ * @param info       The options for createing Mux nodes.
  *
  * @return return a failure reason
  */
-static INLINE int can_move_to(ir_node *expr, ir_node *dest_block, int max_depth)
+static INLINE int can_move_to(ir_node *expr, ir_node *dest_block, const opt_if_conv_info_t *info)
 {
-       return _can_move_to(expr, dest_block, 0, max_depth);
+  return _can_move_to(expr, dest_block, 0, info);
 }
 
 /**
@@ -300,20 +321,20 @@ static INLINE int can_move_to(ir_node *expr, ir_node *dest_block, int max_depth)
  */
 static void move_to(ir_node *expr, ir_node *dest_block)
 {
-       int i, n;
-       ir_node *expr_block = get_nodes_block(expr);
+  int i, n;
+  ir_node *expr_block = get_nodes_block(expr);
 
-       /*
-        * If we reached the dominator, we are done.
-        * We will never put code through the dominator
-        */
-       if (block_dominates(expr_block, dest_block))
-               return;
+  /*
+   * If we reached the dominator, we are done.
+   * We will never put code through the dominator
+   */
+  if (block_dominates(expr_block, dest_block))
+    return;
 
-       for (i = 0, n = get_irn_arity(expr); i < n; ++i)
-               move_to(get_irn_n(expr, i), dest_block);
+  for (i = 0, n = get_irn_arity(expr); i < n; ++i)
+    move_to(get_irn_n(expr, i), dest_block);
 
-       set_nodes_block(expr, dest_block);
+  set_nodes_block(expr, dest_block);
 }
 
 /**
@@ -321,44 +342,44 @@ static void move_to(ir_node *expr, ir_node *dest_block)
  */
 static INLINE ir_node *common_idom(ir_node *b1, ir_node *b2)
 {
-       if(block_dominates(b1, b2))
-               return b1;
-       else if(block_dominates(b2, b1))
-               return b2;
-       else {
-               ir_node *p;
-
-               for (p = get_Block_idom(b1); !block_dominates(p, b2); p = get_Block_idom(p));
-               return p;
-       }
+  if(block_dominates(b1, b2))
+    return b1;
+  else if(block_dominates(b2, b1))
+    return b2;
+  else {
+    ir_node *p;
+
+    for (p = get_Block_idom(b1); !block_dominates(p, b2); p = get_Block_idom(p));
+    return p;
+  }
 }
 
 /**
  * Information about a cond node.
  */
 typedef struct _cond_t {
-       ir_node *cond;                                  /**< The cond node. */
-       struct list_head list;  /**< List head which is used for queuing this cond
-                                                                                                               into the cond bunch it belongs to. */
-       unsigned is_new : 1;
-       unsigned totally_covers : 1;
-       struct _cond_t *link;
-       long visited_nr;
-
-       /**
-        * Information about the both 'branches'
-        * (true and false), the cond creates.
-        */
-       struct {
-               int pos;                                                /**< Number of the predecessor of the
-                                                                                                       phi block by which this branch is
-                                                                                                       reached. It is -1, if this branch is
-                                                                                                       only reached through another cond. */
-
-               struct _cond_t *masked_by;      /**< If this cond's branch is only reached
-                                                                                                                                       through another cond, we store this
-                                                                                                                                       cond ir_node here. */
-       } cases[2];
+  ir_node *cond;          /**< The cond node. */
+  struct list_head list;  /**< List head which is used for queuing this cond
+                               into the cond bunch it belongs to. */
+  unsigned is_new : 1;
+  unsigned totally_covers : 1;
+  struct _cond_t *link;
+  long visited_nr;
+
+  /**
+   * Information about the both 'branches'
+   * (true and false), the cond creates.
+   */
+  struct {
+    int pos;         /**< Number of the predecessor of the
+                          phi block by which this branch is
+                          reached. It is -1, if this branch is
+                          only reached through another cond. */
+
+    struct _cond_t *masked_by; /**< If this cond's branch is only reached
+                                    through another cond, we store this
+                                    cond ir_node here. */
+  } cases[2];
 } cond_t;
 
 /**
@@ -366,52 +387,52 @@ typedef struct _cond_t {
  */
 static INLINE cond_t *get_cond(ir_node *irn, set *cond_set)
 {
-       cond_t templ;
+  cond_t templ;
 
-       templ.cond = irn;
-       return set_find(cond_set, &templ, sizeof(templ), HASH_PTR(templ.cond));
+  templ.cond = irn;
+  return set_find(cond_set, &templ, sizeof(templ), HASH_PTR(templ.cond));
 }
 
 
 typedef void (cond_walker_t)(cond_t *cond, void *env);
 
 static void _walk_conds(cond_t *cond, cond_walker_t *pre, cond_walker_t *post,
-                       long visited_nr, void *env)
+      long visited_nr, void *env)
 {
-       int i;
+  int i;
 
-       if(cond->visited_nr >= visited_nr)
-               return;
+  if(cond->visited_nr >= visited_nr)
+    return;
 
-       cond->visited_nr = visited_nr;
+  cond->visited_nr = visited_nr;
 
-       if(pre)
-               pre(cond, env);
+  if(pre)
+    pre(cond, env);
 
-       for(i = 0; i < 2; ++i) {
-               cond_t *c = cond->cases[i].masked_by;
+  for(i = 0; i < 2; ++i) {
+    cond_t *c = cond->cases[i].masked_by;
 
-               if(c)
-                       _walk_conds(c, pre, post, visited_nr, env);
-       }
+    if(c)
+      _walk_conds(c, pre, post, visited_nr, env);
+  }
 
-       if(post)
-               post(cond, env);
+  if(post)
+    post(cond, env);
 }
 
 static long cond_visited_nr = 0;
 
 static void walk_conds(cond_t *cond, cond_walker_t *pre, cond_walker_t *post, void *env)
 {
-       _walk_conds(cond, pre, post, ++cond_visited_nr, env);
+  _walk_conds(cond, pre, post, ++cond_visited_nr, env);
 }
 
 static void link_conds(cond_t *cond, void *env)
 {
-       cond_t **ptr = (cond_t **) env;
+  cond_t **ptr = (cond_t **) env;
 
-       cond->link = *ptr;
-       *ptr = cond;
+  cond->link = *ptr;
+  *ptr = cond;
 }
 
 /**
@@ -424,9 +445,9 @@ static void link_conds(cond_t *cond, void *env)
  */
 static int cond_cmp(const void *a, const void *b, size_t size)
 {
-       const cond_t *x = a;
-       const cond_t *y = b;
-       return x->cond != y->cond;
+  const cond_t *x = a;
+  const cond_t *y = b;
+  return x->cond != y->cond;
 }
 
 /**
@@ -435,127 +456,127 @@ static int cond_cmp(const void *a, const void *b, size_t size)
  * blocks in which phis are located.
  */
 typedef struct _cond_info_t {
-       struct list_head list;                  /**< Used to list all of these structs per class. */
+  struct list_head list;      /**< Used to list all of these structs per class. */
 
-       struct list_head roots;                 /**< A list of non-depending Conds. Two Conds are
-                                                                                                                               independent, if it's not possible not reach one from the
-                                                                                                                               other (all Conds in this list have to dominate the
-                                                                                                                               block this struct is attached to). */
+  struct list_head roots;     /**< A list of non-depending Conds. Two Conds are
+                                independent, if it's not possible not reach one from the
+                                other (all Conds in this list have to dominate the
+                                block this struct is attached to). */
 
-       ir_node *first_phi;                                     /**< The first phi node this cond info was made for. */
-       set *cond_set;                                                  /**< A set of all dominating reachable Conds. */
+  ir_node *first_phi;         /**< The first phi node this cond info was made for. */
+  set *cond_set;              /**< A set of all dominating reachable Conds. */
 } cond_info_t;
 
 /**
  * @see find_conds.
  */
 static void _find_conds(ir_node *irn, unsigned long visited_nr,
-               ir_node *dominator, cond_t *masked_by, int pos, int depth, cond_info_t *ci)
+    ir_node *dominator, cond_t *masked_by, int pos, int depth, cond_info_t *ci)
 {
-       ir_node *block;
-       int saw_select_cond = 0;
-
-       block = get_nodes_block(irn);
-
-       /*
-        * Only check this block if it is dominated by the specified
-        * dominator or it has not been visited yet.
-        */
-       if (block_dominates(dominator, block) && get_Block_block_visited(block) < visited_nr) {
-               cond_t *res = masked_by;
-               int i, n;
-
-               /* check, if we're on a ProjX
-                *
-                * Further, the ProjX/Cond block must dominate the base block
-                * (the block with the phi in it), otherwise, the Cond
-                * is not affecting the phi so that a mux can be inserted.
-                */
-               if(is_Proj(irn) && get_irn_mode(irn) == mode_X) {
-
-                       int proj = get_Proj_proj(irn);
-                       ir_node *cond = get_Proj_pred(irn);
-
-                       /* true, if the mode is a mode_b cond _NO_ switch cond */
-                       int is_modeb_cond = get_irn_opcode(cond) == iro_Cond
-                               && get_irn_mode(get_Cond_selector(cond)) == mode_b;
+  ir_node *block;
+  int saw_select_cond = 0;
+
+  block = get_nodes_block(irn);
+
+  /*
+   * Only check this block if it is dominated by the specified
+   * dominator or it has not been visited yet.
+   */
+  if (block_dominates(dominator, block) && get_Block_block_visited(block) < visited_nr) {
+    cond_t *res = masked_by;
+    int i, n;
+
+    /* check, if we're on a ProjX
+     *
+     * Further, the ProjX/Cond block must dominate the base block
+     * (the block with the phi in it), otherwise, the Cond
+     * is not affecting the phi so that a mux can be inserted.
+     */
+    if(is_Proj(irn) && get_irn_mode(irn) == mode_X) {
+
+      int proj = get_Proj_proj(irn);
+      ir_node *cond = get_Proj_pred(irn);
+
+      /* true, if the mode is a mode_b cond _NO_ switch cond */
+      int is_modeb_cond = get_irn_opcode(cond) == iro_Cond
+        && get_irn_mode(get_Cond_selector(cond)) == mode_b;
 
       saw_select_cond = !is_modeb_cond;
 
-                       /* Check, if the pred of the proj is a Cond
-                        * with a Projb as selector.
-                        */
-                       if(is_modeb_cond) {
-                               cond_t c;
-
-                               memset(&c, 0, sizeof(c));
-                               c.cond = cond;
-                               c.is_new = 1;
-                               c.cases[0].pos = -1;
-                               c.cases[1].pos = -1;
-
-                               /* get or insert the cond info into the set. */
-                               res = set_insert(ci->cond_set, &c, sizeof(c), HASH_PTR(cond));
-
-                               /*
-                                * If this cond is already masked by the masked_by cond
-                                * return immediately, since we don't have anything to add.
-                                */
-                               if(masked_by && res->cases[proj].masked_by == masked_by)
-                                       return;
-
-                               if(res->is_new) {
-                                       res->is_new = 0;
-                                       list_add(&res->list, &ci->roots);
-                               }
-
-                               /*
-                                * Set masked by (either NULL or another cond node.
-                                * If this cond is truly masked by another one, set
-                                * the position of the actually investigated branch
-                                * to -1. Since the cond is masked by another one,
-                                * there could be more ways from the start block
-                                * to this branch, so we choose -1.
-                                */
-                               res->cases[proj].masked_by = masked_by;
-
-                               if(!masked_by)
-                                       res->cases[proj].pos = pos;
-
-                               /*
-                                * Since the masked_by nodes masks a cond, remove it from the
-                                * root list of the conf trees.
-                                */
-                               else {
-                                       assert(res->cases[proj].pos < 0);
-                                       list_del_init(&masked_by->list);
-                               }
-
-                               DBG((dbg, LEVEL_2, "%D%n (%s branch) "
-                                                       "for pos %d in block %n reached by %n\n",
-                                                       depth, cond, proj ? "true" : "false", pos,
-                                                       block, masked_by ? masked_by->cond : NULL));
-                       }
-               }
-
-               if(get_Block_block_visited(block) < visited_nr && !saw_select_cond) {
-
-                       set_Block_block_visited(block, visited_nr);
-
-                       /* Search recursively from this cond. */
-                       for(i = 0, n = get_irn_arity(block); i < n; ++i) {
-                               ir_node *pred = get_irn_n(block, i);
-
-                               /*
-                                * If the depth is 0 (the first recursion), we set the pos to
-                                * the current viewed predecessor, else we adopt the position
-                                * as given by the caller. We also increase the depth for the
-                                * recursively called functions.
-                                */
-                               _find_conds(pred, visited_nr, dominator, res, pos, depth + (res != masked_by), ci);
-                       }
-               }
-       }
+      /* Check, if the pred of the proj is a Cond
+       * with a Projb as selector.
+       */
+      if(is_modeb_cond) {
+        cond_t c;
+
+        memset(&c, 0, sizeof(c));
+        c.cond = cond;
+        c.is_new = 1;
+        c.cases[0].pos = -1;
+        c.cases[1].pos = -1;
+
+        /* get or insert the cond info into the set. */
+        res = set_insert(ci->cond_set, &c, sizeof(c), HASH_PTR(cond));
+
+        /*
+         * If this cond is already masked by the masked_by cond
+         * return immediately, since we don't have anything to add.
+         */
+        if(masked_by && res->cases[proj].masked_by == masked_by)
+          return;
+
+        if(res->is_new) {
+          res->is_new = 0;
+          list_add(&res->list, &ci->roots);
+        }
+
+        /*
+         * Set masked by (either NULL or another cond node.
+         * If this cond is truly masked by another one, set
+         * the position of the actually investigated branch
+         * to -1. Since the cond is masked by another one,
+         * there could be more ways from the start block
+         * to this branch, so we choose -1.
+         */
+        res->cases[proj].masked_by = masked_by;
+
+        if(!masked_by)
+          res->cases[proj].pos = pos;
+
+        /*
+         * Since the masked_by nodes masks a cond, remove it from the
+         * root list of the conf trees.
+         */
+        else {
+          assert(res->cases[proj].pos < 0);
+          list_del_init(&masked_by->list);
+        }
+
+        DBG((dbg, LEVEL_2, "%D%n (%s branch) "
+              "for pos %d in block %n reached by %n\n",
+              depth, cond, proj ? "true" : "false", pos,
+              block, masked_by ? masked_by->cond : NULL));
+      }
+    }
+
+    if(get_Block_block_visited(block) < visited_nr && !saw_select_cond) {
+
+      set_Block_block_visited(block, visited_nr);
+
+      /* Search recursively from this cond. */
+      for(i = 0, n = get_irn_arity(block); i < n; ++i) {
+        ir_node *pred = get_irn_n(block, i);
+
+        /*
+         * If the depth is 0 (the first recursion), we set the pos to
+         * the current viewed predecessor, else we adopt the position
+         * as given by the caller. We also increase the depth for the
+         * recursively called functions.
+         */
+        _find_conds(pred, visited_nr, dominator, res, pos, depth + (res != masked_by), ci);
+      }
+    }
+  }
 }
 
 
@@ -565,81 +586,84 @@ static void _find_conds(ir_node *irn, unsigned long visited_nr,
  * values. Always use this function.
  *
  * @param irn   The node to start looking for Conds from. This might
- *                 be the phi node we are investigating.
+ *              be the phi node we are investigating.
  * @param conds The set to record the found Conds in.
  */
 static INLINE void find_conds(ir_node *irn, cond_info_t *ci)
 {
-       int i, n;
-       unsigned long visited_nr;
-       ir_node *block = get_nodes_block(irn);
-       ir_node *dom = get_Block_idom(block);
+  int i, n;
+  unsigned long visited_nr;
+  ir_node *block = get_nodes_block(irn);
+  ir_node *dom = get_Block_idom(block);
 
-       for(i = 0, n = get_irn_arity(block); i < n; ++i) {
-               ir_node *pred = get_irn_n(block, i);
+  for(i = 0, n = get_irn_arity(block); i < n; ++i) {
+    ir_node *pred = get_irn_n(block, i);
 
-               inc_irg_block_visited(current_ir_graph);
-               visited_nr = get_irg_block_visited(current_ir_graph);
-               set_Block_block_visited(block, visited_nr);
+    inc_irg_block_visited(current_ir_graph);
+    visited_nr = get_irg_block_visited(current_ir_graph);
+    set_Block_block_visited(block, visited_nr);
 
-               DBG((dbg, LEVEL_2, "find conds at pred %d (%n) and idom %n\n", i, pred, dom));
-               _find_conds(pred, visited_nr, dom, NULL, i, 0, ci);
-       }
+    DBG((dbg, LEVEL_2, "find conds at pred %d (%n) and idom %n\n", i, pred, dom));
+    _find_conds(pred, visited_nr, dom, NULL, i, 0, ci);
+  }
 }
 
 /**
  * Make the mux for a given cond.
- * @param phi The phi node which shall be replaced by a mux.
- * @param dom The block where the muxes shall be placed.
- * @param cond The cond information.
+ *
+ * @param phi       The phi node which shall be replaced by a mux.
+ * @param dom       The block where the muxes shall be placed.
+ * @param cond      The cond information.
+ * @param info      The options for createing Mux nodes.
  * @return The mux node made for this cond.
  */
 static ir_node *make_mux_on_demand(ir_node *phi, ir_node *dom, cond_t *cond,
-               int max_depth, ir_node **mux, bitset_t *positions, int *muxes_made, long visited_nr)
+    const opt_if_conv_info_t *info, ir_node **mux, bitset_t *positions,
+    int *muxes_made, long visited_nr)
 {
-       int i, can_move[2];
-       ir_node *projb = get_Cond_selector(cond->cond);
-       ir_node *bl = get_nodes_block(cond->cond);
-       ir_node *operands[2];
-       int set[2];
-
-       cond->visited_nr = visited_nr;
-       DBG((dbg, LEVEL_2, "%n\n", cond->cond));
-       for(i = 0; i < 2; ++i) {
-               cond_t *masked_by = cond->cases[i].masked_by;
-               int pos = cond->cases[i].pos;
-
-               operands[i] = NULL;
-               set[i] = -1;
-
-               /*
-                * If this Cond branch is masked by another cond, make the mux
-                * for that Cond first, since the Mux for this cond takes
-                * it as an operand.
-                */
-               if(masked_by) {
-                       assert(pos < 0);
-                       DBG((dbg, LEVEL_2, "\tmasked by: %n\n", masked_by->cond));
-                       if(masked_by->visited_nr < visited_nr)
-                               operands[i] = make_mux_on_demand(phi, dom, masked_by, max_depth, mux, positions, muxes_made, visited_nr);
-               }
-
-               /*
-                * If this cond branch is not masked by another cond, take
-                * the corresponding phi operand as an operand to the mux.
-                */
-               else if(pos >= 0) {
-                       operands[i] = get_irn_n(phi, pos);
-                       set[i] = pos;
-               }
-       }
-
-       /*
-        * Move the operands to the dominator block if the cond
-        * made sense. Some Conds found are not suitable for making a mux
-        * out of them, since one of their branches cannot be reached from
-        * the phi block. In that case we do not make a mux and return NULL.
-        */
+  int i, can_move[2];
+  ir_node *projb = get_Cond_selector(cond->cond);
+  ir_node *bl = get_nodes_block(cond->cond);
+  ir_node *operands[2];
+  int set[2];
+
+  cond->visited_nr = visited_nr;
+  DBG((dbg, LEVEL_2, "%n\n", cond->cond));
+  for(i = 0; i < 2; ++i) {
+    cond_t *masked_by = cond->cases[i].masked_by;
+    int pos = cond->cases[i].pos;
+
+    operands[i] = NULL;
+    set[i] = -1;
+
+    /*
+     * If this Cond branch is masked by another cond, make the mux
+     * for that Cond first, since the Mux for this cond takes
+     * it as an operand.
+     */
+    if(masked_by) {
+      assert(pos < 0);
+      DBG((dbg, LEVEL_2, "\tmasked by: %n\n", masked_by->cond));
+      if(masked_by->visited_nr < visited_nr)
+        operands[i] = make_mux_on_demand(phi, dom, masked_by, info, mux, positions, muxes_made, visited_nr);
+    }
+
+    /*
+     * If this cond branch is not masked by another cond, take
+     * the corresponding phi operand as an operand to the mux.
+     */
+    else if(pos >= 0) {
+      operands[i] = get_irn_n(phi, pos);
+      set[i] = pos;
+    }
+  }
+
+  /*
+   * Move the operands to the dominator block if the cond
+   * made sense. Some Conds found are not suitable for making a mux
+   * out of them, since one of their branches cannot be reached from
+   * the phi block. In that case we do not make a mux and return NULL.
+   */
   if(operands[0] && operands[1]) {
     if (operands[0] == operands[1]) {
       /* there is no gain in using mux in this case, as
@@ -654,29 +678,34 @@ static ir_node *make_mux_on_demand(ir_node *phi, ir_node *dom, cond_t *cond,
       return *mux;
     }
 
-               can_move[0] = can_move_to(operands[0], bl, max_depth);
-               can_move[1] = can_move_to(operands[1], bl, max_depth);
+    can_move[0] = can_move_to(operands[0], bl, info);
+    can_move[1] = can_move_to(operands[1], bl, info);
 
     if (can_move[0] == SUCCESS && can_move[1] == SUCCESS) {
-                 move_to(operands[0], bl);
-                 move_to(operands[1], bl);
-
-                 /* Make the mux. */
-                 *mux = new_r_Mux(current_ir_graph, bl, projb,
-                                 operands[0], operands[1], get_irn_mode(operands[0]));
-
-                 *muxes_made += 1;
-
-                 DBG((dbg, LEVEL_2, "\t%n(%n, %n, %n)[%d, %d]\n",
-                                         *mux, projb, operands[0], operands[1], set[0], set[1]));
-
-                 for(i = 0; i < 2; ++i)
-        if(set[i] >= 0) {
-                                 bitset_set(positions, set[i]);
-
-          /* we have done one */
-          hook_if_conversion(current_ir_graph, phi, set[i], *mux, IF_RESULT_SUCCESS);
-        }
+      if (info->allow_mux(projb, operands[0], operands[1])) {
+        move_to(operands[0], bl);
+        move_to(operands[1], bl);
+
+        /* Make the mux. */
+        *mux = new_r_Mux(current_ir_graph, bl, projb,
+            operands[0], operands[1], get_irn_mode(operands[0]));
+
+        *muxes_made += 1;
+
+        DBG((dbg, LEVEL_2, "\t%n(%n, %n, %n)[%d, %d]\n",
+              *mux, projb, operands[0], operands[1], set[0], set[1]));
+
+        for(i = 0; i < 2; ++i)
+          if(set[i] >= 0) {
+            bitset_set(positions, set[i]);
+
+            /* we have done one */
+            hook_if_conversion(current_ir_graph, phi, set[i], *mux, IF_RESULT_SUCCESS);
+          }
+      }
+      else {
+        hook_if_conversion(current_ir_graph, phi, set[i], *mux, IF_RESULT_DENIED);
+      }
     }
     else {
       if(can_move[0] != SUCCESS)
@@ -684,7 +713,7 @@ static ir_node *make_mux_on_demand(ir_node *phi, ir_node *dom, cond_t *cond,
       if(can_move[1] != SUCCESS)
         hook_if_conversion(current_ir_graph, phi, set[1], NULL, can_move[1]);
     }
-       }
+  }
   else {
     if(operands[0])
       hook_if_conversion(current_ir_graph, phi, set[0], NULL, IF_RESULT_BAD_CF);
@@ -692,13 +721,13 @@ static ir_node *make_mux_on_demand(ir_node *phi, ir_node *dom, cond_t *cond,
       hook_if_conversion(current_ir_graph, phi, set[1], NULL, IF_RESULT_BAD_CF);
   }
 
-       return *mux;
+  return *mux;
 }
 
 typedef struct _phi_info_t {
-       struct list_head list;
-       cond_info_t *cond_info;
-       ir_node *irn;
+  struct list_head list;
+  cond_info_t *cond_info;
+  ir_node *irn;
 } phi_info_t;
 
 
@@ -707,253 +736,261 @@ typedef struct _phi_info_t {
  * @param irn A phi node.
  * @param info Parameters for the if conversion algorithm.
  */
-static int check_out_phi(phi_info_t *phi_info, opt_if_conv_info_t *info)
+static int check_out_phi(phi_info_t *phi_info, const opt_if_conv_info_t *info)
 {
-       int max_depth = info->max_depth;
-       ir_node *irn = phi_info->irn;
-       ir_node *block, *nw;
-       cond_info_t *cond_info = phi_info->cond_info;
-       cond_t *cond;
-       int i, arity;
-       int muxes_made = 0;
-       bitset_t *positions;
-
-       block = get_nodes_block(irn);
-       arity = get_irn_arity(irn);
-       positions = bitset_alloca(arity);
-
-       assert(is_Phi(irn));
-       assert(get_irn_arity(irn) == get_irn_arity(block));
-       assert(arity > 0);
-
-       DBG((dbg, LEVEL_2, "phi candidate: %n\n", irn));
-
-       list_for_each_entry(cond_t, cond, &cond_info->roots, list) {
-               ir_node *cidom = block;
-               ir_node *mux = NULL;
-               cond_t *p, *head = NULL;
-               long pos;
-
-               bitset_clear_all(positions);
-
-               DBG((dbg, LEVEL_2, "\tcond root: %n\n", cond->cond));
-               /*
-                * Link all conds which are in the subtree of
-                * the current cond in the list together.
-                */
-               walk_conds(cond, link_conds, NULL, &head);
-
-               cidom = block;
-               for(p = head; p; p = p->link) {
-                       for(i = 0; i < 2; ++i) {
-                               int pos = p->cases[i].pos;
-                               if(pos != -1)
-                                       cidom = common_idom(cidom, get_nodes_block(get_irn_n(block, pos)));
-                       }
-               }
-
-               DBG((dbg, LEVEL_2, "\tcommon idom: %n\n", cidom));
-               make_mux_on_demand(irn, cidom, cond, max_depth, &mux, positions, &muxes_made, ++cond_visited_nr);
-
-               if(mux) {
-                       bitset_foreach(positions, pos)
-                               set_irn_n(irn, (int) pos, mux);
-               }
-       }
-
-       /*
-        * optimize the phi away. This can anable further runs of this
-        * function. Look at _can_move. phis cannot be moved there.
-        */
-       nw = optimize_in_place_2(irn);
-       if(nw != irn)
-               exchange(irn, nw);
-
-       return muxes_made;
+  ir_node *irn = phi_info->irn;
+  ir_node *block, *nw;
+  cond_info_t *cond_info = phi_info->cond_info;
+  cond_t *cond;
+  int i, arity;
+  int muxes_made = 0;
+  bitset_t *positions;
+
+  block = get_nodes_block(irn);
+  arity = get_irn_arity(irn);
+  positions = bitset_alloca(arity);
+
+  assert(is_Phi(irn));
+  assert(get_irn_arity(irn) == get_irn_arity(block));
+  assert(arity > 0);
+
+  DBG((dbg, LEVEL_2, "phi candidate: %n\n", irn));
+
+  list_for_each_entry(cond_t, cond, &cond_info->roots, list) {
+    ir_node *cidom = block;
+    ir_node *mux = NULL;
+    cond_t *p, *head = NULL;
+    long pos;
+
+    bitset_clear_all(positions);
+
+    DBG((dbg, LEVEL_2, "\tcond root: %n\n", cond->cond));
+    /*
+     * Link all conds which are in the subtree of
+     * the current cond in the list together.
+     */
+    walk_conds(cond, link_conds, NULL, &head);
+
+    cidom = block;
+    for(p = head; p; p = p->link) {
+      for(i = 0; i < 2; ++i) {
+        int pos = p->cases[i].pos;
+        if(pos != -1)
+          cidom = common_idom(cidom, get_nodes_block(get_irn_n(block, pos)));
+      }
+    }
+
+    DBG((dbg, LEVEL_2, "\tcommon idom: %n\n", cidom));
+    make_mux_on_demand(irn, cidom, cond, info, &mux, positions, &muxes_made, ++cond_visited_nr);
+
+    if(mux) {
+      bitset_foreach(positions, pos)
+        set_irn_n(irn, (int) pos, mux);
+    }
+  }
+
+  /*
+   * optimize the phi away. This can anable further runs of this
+   * function. Look at _can_move. phis cannot be moved there.
+   */
+  nw = optimize_in_place_2(irn);
+  if(nw != irn)
+    exchange(irn, nw);
+
+  return muxes_made;
 }
 
 typedef struct _cond_walk_info_t {
-       struct obstack *obst;
-       struct list_head cond_info_head;
-       struct list_head phi_head;
+  struct obstack *obst;
+  struct list_head cond_info_head;
+  struct list_head phi_head;
 } cond_walk_info_t;
 
 
 static void annotate_cond_info_pre(ir_node *irn, void *data)
 {
-       set_irn_link(irn, NULL);
+  set_irn_link(irn, NULL);
 }
 
 static void annotate_cond_info_post(ir_node *irn, void *data)
 {
-       cond_walk_info_t *cwi = data;
-
-       /*
-        * Check, if the node is a phi
-        * we then compute a set of conds which are reachable from this
-        * phi's block up to its dominator.
-        * The set is attached to the blocks link field.
-        */
-       if(is_Phi(irn) && mode_is_datab(get_irn_mode(irn))) {
-               ir_node *block = get_nodes_block(irn);
-
-               cond_info_t *ci = get_irn_link(block);
-
-               /* If the set is not yet computed, do it now. */
-               if(!ci) {
-                       ci = obstack_alloc(cwi->obst, sizeof(*ci));
-                       ci->cond_set = new_set(cond_cmp, log2_ceil(get_irn_arity(block)));
-                       ci->first_phi = irn;
-
-                       INIT_LIST_HEAD(&ci->roots);
-                       INIT_LIST_HEAD(&ci->list);
-
-                       /*
-                        * Add this cond info to the list of all cond infos
-                        * in this graph. This is just done to free the
-                        * set easier afterwards (we save an irg_walk_graph).
-                        */
-                       list_add(&cwi->cond_info_head, &ci->list);
-
-                       DBG((dbg, LEVEL_2, "searching conds at %n\n", irn));
-
-                       /*
-                        * Fill the set with conds we find on the way from
-                        * the block to its dominator.
-                        */
-                       find_conds(irn, ci);
-
-                       /*
-                        * If there where no suitable conds, delete the set
-                        * immediately and reset the set pointer to NULL
-                        */
-                       if(set_count(ci->cond_set) == 0) {
-                               del_set(ci->cond_set);
-                               list_del(&ci->list);
-                               obstack_free(cwi->obst, ci);
-                               ci = NULL;
-                       }
-               }
-
-               else
-                       DBG((dbg, LEVEL_2, "conds already computed for %n (look at %n)\n", irn, ci->first_phi));
-
-               set_irn_link(block, ci);
-
-               if(ci) {
-                       phi_info_t *pi = obstack_alloc(cwi->obst, sizeof(*pi));
-                       pi->irn = irn;
-                       pi->cond_info = ci;
-                       INIT_LIST_HEAD(&pi->list);
-                       list_add(&pi->list, &cwi->phi_head);
-               }
-
-       }
+  cond_walk_info_t *cwi = data;
+
+  /*
+   * Check, if the node is a phi
+   * we then compute a set of conds which are reachable from this
+   * phi's block up to its dominator.
+   * The set is attached to the blocks link field.
+   */
+  if(is_Phi(irn) && mode_is_datab(get_irn_mode(irn))) {
+    ir_node *block = get_nodes_block(irn);
+
+    cond_info_t *ci = get_irn_link(block);
+
+    /* If the set is not yet computed, do it now. */
+    if(!ci) {
+      ci = obstack_alloc(cwi->obst, sizeof(*ci));
+      ci->cond_set = new_set(cond_cmp, log2_ceil(get_irn_arity(block)));
+      ci->first_phi = irn;
+
+      INIT_LIST_HEAD(&ci->roots);
+      INIT_LIST_HEAD(&ci->list);
+
+      /*
+       * Add this cond info to the list of all cond infos
+       * in this graph. This is just done to free the
+       * set easier afterwards (we save an irg_walk_graph).
+       */
+      list_add(&cwi->cond_info_head, &ci->list);
+
+      DBG((dbg, LEVEL_2, "searching conds at %n\n", irn));
+
+      /*
+       * Fill the set with conds we find on the way from
+       * the block to its dominator.
+       */
+      find_conds(irn, ci);
+
+      /*
+       * If there where no suitable conds, delete the set
+       * immediately and reset the set pointer to NULL
+       */
+      if(set_count(ci->cond_set) == 0) {
+        del_set(ci->cond_set);
+        list_del(&ci->list);
+        obstack_free(cwi->obst, ci);
+        ci = NULL;
+      }
+    }
+
+    else
+      DBG((dbg, LEVEL_2, "conds already computed for %n (look at %n)\n", irn, ci->first_phi));
+
+    set_irn_link(block, ci);
+
+    if(ci) {
+      phi_info_t *pi = obstack_alloc(cwi->obst, sizeof(*pi));
+      pi->irn = irn;
+      pi->cond_info = ci;
+      INIT_LIST_HEAD(&pi->list);
+      list_add(&pi->list, &cwi->phi_head);
+    }
+
+  }
 }
 
 static void dump_conds(cond_t *cond, void *env)
 {
-       int i;
-       FILE *f = env;
+  int i;
+  FILE *f = env;
 
-       ir_fprintf(f, "node:{title:\"n%p\" label:\"%n(%d, %d)\n%n\"}\n",
-                       cond, cond->cond, cond->cases[0].pos, cond->cases[1].pos,
-                       get_nodes_block(cond->cond));
+  ir_fprintf(f, "node:{title:\"n%p\" label:\"%n(%d, %d)\n%n\"}\n",
+      cond, cond->cond, cond->cases[0].pos, cond->cases[1].pos,
+      get_nodes_block(cond->cond));
 
-       for(i = 0; i < 2; ++i)
-               if(cond->cases[i].masked_by)
-                       ir_fprintf(f, "edge:{sourcename:\"n%p\" targetname:\"n%p\" label:\"%d\"}\n",
-                                       cond, cond->cases[i].masked_by, i);
+  for(i = 0; i < 2; ++i)
+    if(cond->cases[i].masked_by)
+      ir_fprintf(f, "edge:{sourcename:\"n%p\" targetname:\"n%p\" label:\"%d\"}\n",
+          cond, cond->cases[i].masked_by, i);
 }
 
 static void vcg_dump_conds(ir_graph *irg, cond_walk_info_t *cwi)
 {
-       char buf[512];
-       FILE *f;
-
-       snprintf(buf, sizeof(buf), "%s-conds.vcg", get_entity_name(get_irg_entity(irg)));
-
-       if((f = fopen(buf, "wt")) != NULL) {
-               cond_info_t *ci;
-               phi_info_t *phi;
-               cond_t *cond;
-
-               ir_fprintf(f, "graph:{\ndisplay_edge_labels:yes\n");
-               list_for_each_entry(cond_info_t, ci, &cwi->cond_info_head, list) {
-                       ir_fprintf(f, "node:{title:\"n%p\" label:\"cond info\"}\n", ci);
-                       list_for_each_entry(cond_t, cond, &ci->roots, list) {
-                               walk_conds(cond, NULL, dump_conds, f);
-                               ir_fprintf(f, "edge:{sourcename:\"n%p\" targetname:\"n%p\"}\n", ci, cond);
-                       }
-               }
-
-               list_for_each_entry(phi_info_t, phi, &cwi->phi_head, list) {
-                       ir_fprintf(f, "node:{title:\"n%p\" label:\"%n\n%n\"}\n",
-                                       phi->irn, phi->irn, get_nodes_block(phi->irn));
-                       ir_fprintf(f, "edge:{sourcename:\"n%p\" targetname:\"n%p\"}\n", phi->irn, phi->cond_info);
-               }
-               fprintf(f, "}\n");
-       }
+  char buf[512];
+  FILE *f;
+
+  snprintf(buf, sizeof(buf), "%s-conds.vcg", get_entity_name(get_irg_entity(irg)));
+
+  if((f = fopen(buf, "wt")) != NULL) {
+    cond_info_t *ci;
+    phi_info_t *phi;
+    cond_t *cond;
+
+    ir_fprintf(f, "graph:{\ndisplay_edge_labels:yes\n");
+    list_for_each_entry(cond_info_t, ci, &cwi->cond_info_head, list) {
+      ir_fprintf(f, "node:{title:\"n%p\" label:\"cond info\"}\n", ci);
+      list_for_each_entry(cond_t, cond, &ci->roots, list) {
+        walk_conds(cond, NULL, dump_conds, f);
+        ir_fprintf(f, "edge:{sourcename:\"n%p\" targetname:\"n%p\"}\n", ci, cond);
+      }
+    }
+
+    list_for_each_entry(phi_info_t, phi, &cwi->phi_head, list) {
+      ir_fprintf(f, "node:{title:\"n%p\" label:\"%n\n%n\"}\n",
+          phi->irn, phi->irn, get_nodes_block(phi->irn));
+      ir_fprintf(f, "edge:{sourcename:\"n%p\" targetname:\"n%p\"}\n", phi->irn, phi->cond_info);
+    }
+    fprintf(f, "}\n");
+  }
 }
 
-void opt_if_conv(ir_graph *irg, opt_if_conv_info_t *params)
+void opt_if_conv(ir_graph *irg, const opt_if_conv_info_t *params)
 {
-       int muxes_made = 0;
-       struct obstack obst;
-       phi_info_t *phi_info;
-       cond_info_t *cond_info;
-       cond_walk_info_t cwi;
+  int muxes_made = 0;
+  struct obstack obst;
+  phi_info_t *phi_info;
+  cond_info_t *cond_info;
+  cond_walk_info_t cwi;
 
-       opt_if_conv_info_t *p = params ? params : &default_info;
+  opt_if_conv_info_t p;
 
-       if(!get_opt_if_conversion())
-               return;
+  if(!get_opt_if_conversion())
+    return;
 
-       obstack_init(&obst);
+  /* get the parameters */
+  if (params)
+    memcpy(&p, params, sizeof(p));
+  else
+    memcpy(&p, &default_info, sizeof(params));
 
-       cwi.obst = &obst;
-       INIT_LIST_HEAD(&cwi.cond_info_head);
-       INIT_LIST_HEAD(&cwi.phi_head);
+  if (! p.allow_mux)
+    p.allow_mux = default_info.allow_mux;
 
-       /* Init the debug stuff. */
-       dbg = firm_dbg_register("firm.opt.ifconv");
+  obstack_init(&obst);
+
+  cwi.obst = &obst;
+  INIT_LIST_HEAD(&cwi.cond_info_head);
+  INIT_LIST_HEAD(&cwi.phi_head);
+
+  /* Init the debug stuff. */
+  dbg = firm_dbg_register("firm.opt.ifconv");
 #if 0
-       firm_dbg_set_mask(dbg, LEVEL_1);
+  firm_dbg_set_mask(dbg, LEVEL_1);
 #endif
 
-       /* if-conversion works better with normalized returns */
-       normalize_one_return(irg);
+  /* if-conversion works better with normalized returns */
+  normalize_one_return(irg);
 
-       /* Ensure, that the dominators are computed. */
-       compute_doms(irg);
+  /* Ensure, that the dominators are computed. */
+  compute_doms(irg);
 
-       DBG((dbg, LEVEL_1, "if conversion for irg %s(%p)\n",
-                               get_entity_name(get_irg_entity(irg)), irg));
+  DBG((dbg, LEVEL_1, "if conversion for irg %s(%p)\n",
+        get_entity_name(get_irg_entity(irg)), irg));
 
-       /*
-        * Collect information about the conds pu the phis on an obstack.
-        * It is important that phi nodes which are 'higher' (with a
-        * lower dfs pre order) are in front of the obstack. Since they are
-        * possibly turned in to muxes this can enable the optimization
-        * of 'lower' ones.
-        */
-       irg_walk_graph(irg, annotate_cond_info_pre, annotate_cond_info_post, &cwi);
+  /*
+   * Collect information about the conds pu the phis on an obstack.
+   * It is important that phi nodes which are 'higher' (with a
+   * lower dfs pre order) are in front of the obstack. Since they are
+   * possibly turned in to muxes this can enable the optimization
+   * of 'lower' ones.
+   */
+  irg_walk_graph(irg, annotate_cond_info_pre, annotate_cond_info_post, &cwi);
 
 #if 0
-       vcg_dump_conds(irg, &cwi);
+  vcg_dump_conds(irg, &cwi);
 #endif
 
-       /* Process each suitable phi found. */
-       list_for_each_entry(phi_info_t, phi_info, &cwi.phi_head, list) {
-               DBG((dbg, LEVEL_2, "phi node %n\n", phi_info->irn));
-               muxes_made += check_out_phi(phi_info, p);
-       }
+  /* Process each suitable phi found. */
+  list_for_each_entry(phi_info_t, phi_info, &cwi.phi_head, list) {
+    DBG((dbg, LEVEL_2, "phi node %n\n", phi_info->irn));
+    muxes_made += check_out_phi(phi_info, &p);
+  }
 
-       list_for_each_entry(cond_info_t, cond_info, &cwi.cond_info_head, list) {
-               del_set(cond_info->cond_set);
-       }
+  list_for_each_entry(cond_info_t, cond_info, &cwi.cond_info_head, list) {
+    del_set(cond_info->cond_set);
+  }
 
-       DBG((dbg, LEVEL_1, "muxes made: %d\n", muxes_made));
+  DBG((dbg, LEVEL_1, "muxes made: %d\n", muxes_made));
 
-       obstack_free(&obst, NULL);
+  obstack_free(&obst, NULL);
 }
index 1c633f5..ee80c14 100644 (file)
@@ -1,28 +1,49 @@
+/*
+ * Project:     libFIRM
+ * File name:   ir/opt/ifconv.h
+ * Purpose:     If conversion.
+ * Author:      Sebastian Hack.
+ * Created:
+ * CVS-ID:      $Id$
+ * Copyright:   (c) 1998-2005 Universität Karlsruhe
+ * Licence:     This file protected by GPL -  GNU GENERAL PUBLIC LICENSE.
+ */
+#ifndef _FIRM_IF_CONV_H
+#define _FIRM_IF_CONV_H
 
 /**
+ * @file ifconv.h
+ *
  * If conversion.
  * @author Sebastian Hack
  * @date 10.2.2005
  */
+#include "irnode.h"
 
-#ifndef _FIRM_IF_CONV_H
-#define _FIRM_IF_CONV_H
+/**
+ * This function is called to evaluate, if a mux can build
+ * of the current architecture.
+ * If it returns non-zero, a mux is created, else the code
+ * is not modified.
+ */
+typedef int (*arch_allow_mux_func)(ir_node *sel, ir_node *false_res, ir_node *true_res);
 
 /**
  * The parameters structure.
  */
 typedef struct _opt_if_conv_info_t {
-       int max_depth;          /**< The maximum depth up to which expressions
-                                                                                       are examined when it has to be decided if they
-                                                                                       can be placed into another block. */
+  int                 max_depth;    /**< The maximum depth up to which expressions
+                                         are examined when it has to be decided if they
+                                         can be placed into another block. */
+  arch_allow_mux_func allow_mux;    /**< Evaluator function, if not set all possible Mux
+                                         nodes will be created. */
 } opt_if_conv_info_t;
 
-
 /**
  * Perform If conversion on a graph.
  * @param irg The graph.
  * @param params The parameters for the if conversion.
  */
-void opt_if_conv(ir_graph *irg, opt_if_conv_info_t *params);
+void opt_if_conv(ir_graph *irg, const opt_if_conv_info_t *params);
 
 #endif