Use ia32_copy_am_attrs() for splitting IMul reg, mem, imm and also reset base and...
[libfirm] / ir / opt / combo.c
index 3378fe2..057dacd 100644 (file)
@@ -48,7 +48,9 @@
 #include "irop.h"
 #include "irouts.h"
 #include "irgmod.h"
+#include "iropt_dbg.h"
 #include "debug.h"
+#include "array_t.h"
 #include "error.h"
 
 #include "tv_t.h"
@@ -62,9 +64,6 @@
 /* define this to check the consistency of partitions */
 #define CHECK_PARTITIONS
 
-/* define this to disable followers (may be buggy) */
-#undef NO_FOLLOWER
-
 typedef struct node_t            node_t;
 typedef struct partition_t       partition_t;
 typedef struct opcode_key_t      opcode_key_t;
@@ -224,6 +223,7 @@ static void check_all_partitions(environment_t *env) {
        partition_t *P;
        node_t      *node;
 
+#ifdef DEBUG_libfirm
        for (P = env->dbg_list; P != NULL; P = P->dbg_next) {
                check_partition(P);
                list_for_each_entry(node_t, node, &P->Follower, node_list) {
@@ -232,6 +232,7 @@ static void check_all_partitions(environment_t *env) {
                        assert(leader != node && leader->part == node->part);
                }
        }
+#endif
 }
 
 /**
@@ -499,6 +500,7 @@ static INLINE tarval *get_node_tarval(const ir_node *irn) {
  */
 static INLINE void add_to_worklist(partition_t *X, environment_t *env) {
        assert(X->on_worklist == 0);
+       DB((dbg, LEVEL_2, "Adding part%d to worklist\n", X->nr));
        X->wl_next     = env->worklist;
        X->on_worklist = 1;
        env->worklist  = X;
@@ -813,12 +815,6 @@ static partition_t *split_no_followers(partition_t *Z, node_t *g, environment_t
        return Z_prime;
 }  /* split_no_followers */
 
-#ifdef NO_FOLLOWER
-
-#define split(Z, g, env) split_no_followers(*(Z), g, env)
-
-#else
-
 /**
  * Make the Follower -> Leader transition for a node.
  *
@@ -1150,7 +1146,6 @@ static partition_t *split(partition_t **pX, node_t *gg, environment_t *env) {
 
        return X_prime;
 }  /* split */
-#endif /* NO_FOLLOWER */
 
 /**
  * Returns non-zero if the i'th input of a Phi node is live.
@@ -1891,7 +1886,9 @@ static void compute_Proj_Cmp(node_t *node, ir_node *cmp) {
                 * NaN != NaN is defined, so we must check this here.
                 */
                tv = new_tarval_from_long(pnc & pn_Cmp_Eq, mode_b);
+#ifdef WITH_UNKNOWN
 not_equal:
+#endif
 
                /* if the node was ONCE evaluated by all constants, but now
                   this breakes AND we cat by partition a different result, switch to bottom.
@@ -2553,13 +2550,9 @@ static void propagate(environment_t *env) {
                for (x = fallen; x != NULL; x = x->next)
                        x->on_fallen = 0;
 
-#ifndef NO_FOLLOWER
                if (old_type_was_T_or_C) {
                        node_t *y, *tmp;
 
-                       if (Y->on_worklist == 0)
-                               add_to_worklist(Y, env);
-
                        /* check if some nodes will make the leader -> follower transition */
                        list_for_each_entry_safe(node_t, y, tmp, &Y->Leader, node_list) {
                                if (y->type.tv != tarval_top && ! is_con(y->type)) {
@@ -2578,7 +2571,6 @@ static void propagate(environment_t *env) {
                                }
                        }
                }
-#endif
                split_by(Y, env);
        }
 }  /* propagate */
@@ -2637,7 +2629,7 @@ static int can_exchange(ir_node *pred) {
                return 1;
        }
        return 0;
-}
+}  /* can_exchange */
 
 /**
  * Block Post-Walker, apply the analysis results on control flow by
@@ -2650,26 +2642,55 @@ static void apply_cf(ir_node *block, void *ctx) {
        ir_node       **ins, **in_X;
        ir_node       *phi, *next;
 
-       if (block == get_irg_end_block(current_ir_graph) ||
-           block == get_irg_start_block(current_ir_graph)) {
+       n = get_Block_n_cfgpreds(block);
+
+       if (node->type.tv == tarval_unreachable) {
+               env->modified = 1;
+
+               for (i = n - 1; i >= 0; --i) {
+                       ir_node *pred = get_Block_cfgpred(block, i);
+
+                       if (! is_Bad(pred)) {
+                               node_t *pred_bl = get_irn_node(get_nodes_block(skip_Proj(pred)));
+
+                               if (pred_bl->flagged == 0) {
+                                       pred_bl->flagged = 3;
+
+                                       if (pred_bl->type.tv == tarval_reachable) {
+                                               /*
+                                                * We will remove an edge from block to its pred.
+                                                * This might leave the pred block as an endless loop
+                                                */
+                                               if (! is_backedge(block, i))
+                                                       keep_alive(pred_bl->node);
+                                       }
+                               }
+                       }
+               }
+
                /* the EndBlock is always reachable even if the analysis
                   finds out the opposite :-) */
+               if (block != get_irg_end_block(current_ir_graph)) {
+                       /* mark dead blocks */
+                       set_Block_dead(block);
+                       DB((dbg, LEVEL_1, "Removing dead %+F\n", block));
+               } else {
+                       /* the endblock is unreachable */
+                       set_irn_in(block, 0, NULL);
+               }
                return;
        }
-       if (node->type.tv == tarval_unreachable) {
-               /* mark dead blocks */
-               set_Block_dead(block);
-               return;
-       }
-
-       n = get_Block_n_cfgpreds(block);
 
        if (n == 1) {
                /* only one predecessor combine */
                ir_node *pred = skip_Proj(get_Block_cfgpred(block, 0));
 
                if (can_exchange(pred)) {
-                       exchange(block, get_nodes_block(pred));
+                       ir_node *new_block = get_nodes_block(pred);
+                       DB((dbg, LEVEL_1, "Fuse %+F with %+F\n", block, new_block));
+                       DBG_OPT_COMBO(block, new_block, FS_OPT_COMBO_CF);
+                       exchange(block, new_block);
+                       node->node = new_block;
                        env->modified = 1;
                }
                return;
@@ -2683,6 +2704,24 @@ static void apply_cf(ir_node *block, void *ctx) {
 
                if (node->type.tv == tarval_reachable) {
                        in_X[k++] = pred;
+               } else {
+                       DB((dbg, LEVEL_1, "Removing dead input %d from %+F (%+F)\n", i, block, pred));
+                       if (! is_Bad(pred)) {
+                               node_t *pred_bl = get_irn_node(get_nodes_block(skip_Proj(pred)));
+
+                               if (pred_bl->flagged == 0) {
+                                       pred_bl->flagged = 3;
+
+                                       if (pred_bl->type.tv == tarval_reachable) {
+                                               /*
+                                                * We will remove an edge from block to its pred.
+                                                * This might leave the pred block as an endless loop
+                                                */
+                                               if (! is_backedge(block, i))
+                                                       keep_alive(pred_bl->node);
+                                       }
+                               }
+                       }
                }
        }
        if (k >= n)
@@ -2701,6 +2740,7 @@ static void apply_cf(ir_node *block, void *ctx) {
                        set_irn_node(c, node);
                        node->node = c;
                        DB((dbg, LEVEL_1, "%+F is replaced by %+F\n", phi, c));
+                       DBG_OPT_COMBO(phi, c, FS_OPT_COMBO_CONST);
                        exchange(phi, c);
                        env->modified = 1;
                } else {
@@ -2712,13 +2752,16 @@ static void apply_cf(ir_node *block, void *ctx) {
                                        ins[j++] = get_Phi_pred(phi, i);
                                }
                        }
-                       if (j <= 1) {
+                       if (j == 1) {
                                /* this Phi is replaced by a single predecessor */
                                ir_node *s = ins[0];
+                               node_t *phi_node = get_irn_node(phi);
 
                                node->node = s;
                                DB((dbg, LEVEL_1, "%+F is replaced by %+F because of cf change\n", phi, s));
+                               DBG_OPT_COMBO(phi, s, FS_OPT_COMBO_FOLLOWER);
                                exchange(phi, s);
+                               phi_node->node = s;
                                env->modified = 1;
                        } else {
                                set_irn_in(phi, j, ins);
@@ -2727,12 +2770,15 @@ static void apply_cf(ir_node *block, void *ctx) {
                }
        }
 
-       if (k <= 1) {
+       if (k == 1) {
                /* this Block has only one live predecessor */
                ir_node *pred = skip_Proj(in_X[0]);
 
                if (can_exchange(pred)) {
-                       exchange(block, get_nodes_block(pred));
+                       ir_node *new_block = get_nodes_block(pred);
+                       DBG_OPT_COMBO(block, new_block, FS_OPT_COMBO_CF);
+                       exchange(block, new_block);
+                       node->node = new_block;
                        env->modified = 1;
                }
        } else {
@@ -2786,11 +2832,12 @@ static void apply_result(ir_node *irn, void *ctx) {
                                        node_t *sel = get_irn_node(get_Cond_selector(cond));
 
                                        if (is_tarval(sel->type.tv) && tarval_is_constant(sel->type.tv)) {
-                                               /* Cond selector is a constant, make a Jmp */
-                                               ir_node *jmp = new_r_Jmp(current_ir_graph, block->node);
+                                               /* Cond selector is a constant and the Proj is reachable, make a Jmp */
+                                               ir_node *jmp  = new_r_Jmp(current_ir_graph, block->node);
                                                set_irn_node(jmp, node);
                                                node->node = jmp;
                                                DB((dbg, LEVEL_1, "%+F is replaced by %+F\n", irn, jmp));
+                                               DBG_OPT_COMBO(irn, jmp, FS_OPT_COMBO_CF);
                                                exchange(irn, jmp);
                                                env->modified = 1;
                                        }
@@ -2811,6 +2858,7 @@ static void apply_result(ir_node *irn, void *ctx) {
                                        set_irn_node(c, node);
                                        node->node = c;
                                        DB((dbg, LEVEL_1, "%+F is replaced by %+F\n", irn, c));
+                                       DBG_OPT_COMBO(irn, c, FS_OPT_COMBO_CONST);
                                        exchange(irn, c);
                                        env->modified = 1;
                                }
@@ -2822,6 +2870,7 @@ static void apply_result(ir_node *irn, void *ctx) {
                                        node->node = symc;
 
                                        DB((dbg, LEVEL_1, "%+F is replaced by %+F\n", irn, symc));
+                                       DBG_OPT_COMBO(irn, symc, FS_OPT_COMBO_CONST);
                                        exchange(irn, symc);
                                        env->modified = 1;
                                }
@@ -2832,6 +2881,10 @@ static void apply_result(ir_node *irn, void *ctx) {
 
                                if (leader != irn) {
                                        DB((dbg, LEVEL_1, "%+F from part%d is replaced by %+F\n", irn, node->part->nr, leader));
+                                       if (node->is_follower)
+                                               DBG_OPT_COMBO(irn, leader, FS_OPT_COMBO_FOLLOWER);
+                                       else
+                                               DBG_OPT_COMBO(irn, leader, FS_OPT_COMBO_CONGRUENT);
                                        exchange(irn, leader);
                                        env->modified = 1;
                                }
@@ -2855,17 +2908,11 @@ static void apply_end(ir_node *end, environment_t *env) {
                ir_node *ka   = get_End_keepalive(end, i);
                node_t  *node = get_irn_node(ka);
 
-               /* Use the flagged bits to mark already visited nodes.
-                * This should not be ready but better safe than sorry. */
-               if (node->flagged == 0) {
-                       node->flagged = 3;
+               if (! is_Block(ka))
+                       node = get_irn_node(get_nodes_block(ka));
 
-                       if (! is_Block(ka))
-                               node = get_irn_node(get_nodes_block(ka));
-
-                       if (node->type.tv != tarval_unreachable)
-                               in[j++] = ka;
-               }
+               if (node->type.tv != tarval_unreachable)
+                       in[j++] = ka;
        }
        if (j != n) {
                set_End_keepalives(end, j, in);
@@ -2910,11 +2957,13 @@ static void set_compute_functions(void) {
 }  /* set_compute_functions */
 
 static int dump_partition_hook(FILE *F, ir_node *n, ir_node *local) {
+#ifdef DEBUG_libfirm
        ir_node *irn = local != NULL ? local : n;
        node_t *node = get_irn_node(irn);
 
        ir_fprintf(F, "info2 : \"partition %u type %+F\"\n", node->part->nr, node->type);
        return 1;
+#endif
 }
 
 void combo(ir_graph *irg) {
@@ -2947,6 +2996,7 @@ void combo(ir_graph *irg) {
        env.modified       = 0;
 
        assure_irg_outs(irg);
+       assure_cf_loop(irg);
 
        /* we have our own value_of function */
        set_value_of_func(get_node_tarval);
@@ -2954,6 +3004,8 @@ void combo(ir_graph *irg) {
        set_compute_functions();
        DEBUG_ONLY(part_nr = 0);
 
+       ir_reserve_resources(irg, IR_RESOURCE_IRN_LINK);
+
        /* create the initial partition and place it on the work list */
        env.initial = new_partition(&env);
        add_to_worklist(env.initial, &env);
@@ -3004,6 +3056,8 @@ void combo(ir_graph *irg) {
                set_irg_loopinfo_inconsistent(irg);
        }
 
+       ir_free_resources(irg, IR_RESOURCE_IRN_LINK);
+
        pmap_destroy(env.type2id_map);
        del_set(env.opcode2id_map);
        obstack_free(&env.obst, NULL);