make code a bit more readble
[libfirm] / ir / be / bespill.c
index 149923d..2dae0bc 100644 (file)
@@ -3,6 +3,7 @@
  * Date:               29.09.2005
  * Copyright:   (c) Universitaet Karlsruhe
  * Licence:     This file protected by GPL -  GNU GENERAL PUBLIC LICENSE.
+ * CVS-Id:      $Id$
  */
 #ifdef HAVE_CONFIG_H
 #include "config.h"
@@ -45,7 +46,9 @@ typedef struct _reloader_t reloader_t;
 
 struct _reloader_t {
        reloader_t *next;
-       ir_node *reloader;
+       ir_node    *reloader;
+       ir_node    *rematted_node;
+       int        allow_remat;     /**< the node may be rematted instead of reloaded if global remat option is on */
 };
 
 typedef struct _spill_info_t {
@@ -59,12 +62,14 @@ typedef struct _spill_info_t {
        /** if we had the value of a phi spilled before but not the phi itself then
         * this field contains the spill for the phi value */
        ir_node *old_spill;
+
+       /** the register class in which the reload should be placed */
+       const arch_register_class_t *reload_cls;
 } spill_info_t;
 
 struct _spill_env_t {
-       const arch_register_class_t *cls;
        const arch_env_t *arch_env;
-       const be_chordal_env_t *chordal_env;
+       ir_graph *irg;
        struct obstack obst;
        be_irg_t *birg;
        int spill_cost;     /**< the cost of a single spill node */
@@ -111,6 +116,7 @@ static spill_info_t *get_spillinfo(const spill_env_t *env, ir_node *value) {
                info.reloaders = NULL;
                info.spill = NULL;
                info.old_spill = NULL;
+               info.reload_cls = NULL;
                res = set_insert(env->spills, &info, sizeof(info), hash);
        }
 
@@ -125,15 +131,15 @@ void be_set_spill_env_dbg_module(spill_env_t *env, firm_dbg_module_t *dbg) {
 )
 
 /* Creates a new spill environment. */
-spill_env_t *be_new_spill_env(const be_chordal_env_t *chordal_env) {
+spill_env_t *be_new_spill_env(be_irg_t *birg) {
        spill_env_t *env        = xmalloc(sizeof(env[0]));
        env->spills                     = new_set(cmp_spillinfo, 1024);
-       env->cls                        = chordal_env->cls;
-       env->chordal_env        = chordal_env;
-       env->birg           = chordal_env->birg;
-       env->arch_env       = env->chordal_env->birg->main_env->arch_env;
+       env->irg            = be_get_birg_irg(birg);
+       env->birg           = birg;
+       env->arch_env       = birg->main_env->arch_env;
        env->mem_phis           = pset_new_ptr_default();
-       // TODO, ask backend about costs...
+       // TODO, ask backend about costs..., or even ask backend whether we should
+       // rematerialize...
        env->spill_cost     = 8;
        env->reload_cost    = 5;
        obstack_init(&env->obst);
@@ -157,18 +163,38 @@ void be_delete_spill_env(spill_env_t *env) {
  *
  */
 
-void be_add_reload(spill_env_t *env, ir_node *to_spill, ir_node *before) {
+void be_add_remat(spill_env_t *env, ir_node *to_spill, ir_node *before, ir_node *rematted_node) {
+       spill_info_t *spill_info;
+       reloader_t *reloader;
+
+       spill_info = get_spillinfo(env, to_spill);
+
+       /* add the remat information */
+       reloader                = obstack_alloc(&env->obst, sizeof(reloader[0]));
+       reloader->next          = spill_info->reloaders;
+       reloader->reloader      = before;
+       reloader->rematted_node = rematted_node;
+       reloader->allow_remat   = 1;
+
+       spill_info->reloaders  = reloader;
+
+       DBG((env->dbg, LEVEL_1, "creating spillinfo for %+F, will be rematerialized before %+F\n",
+               to_spill, before));
+}
+
+void be_add_reload(spill_env_t *env, ir_node *to_spill, ir_node *before,
+               const arch_register_class_t *reload_cls, int allow_remat)
+{
        spill_info_t *info;
        reloader_t *rel;
 
-       assert(arch_irn_consider_in_reg_alloc(env->arch_env, env->cls, to_spill));
-
        info = get_spillinfo(env, to_spill);
 
-       if(is_Phi(to_spill)) {
+       if (is_Phi(to_spill)) {
                int i, arity;
-               // create spillinfos for the phi arguments
-               for(i = 0, arity = get_irn_arity(to_spill); i < arity; ++i) {
+
+               /* create spillinfos for the phi arguments */
+               for (i = 0, arity = get_irn_arity(to_spill); i < arity; ++i) {
                        ir_node *arg = get_irn_n(to_spill, i);
                        get_spillinfo(env, arg);
                }
@@ -178,18 +204,28 @@ void be_add_reload(spill_env_t *env, ir_node *to_spill, ir_node *before) {
                // the belady algo decides later to spill the whole phi, then sees the
                // spill node and adds a reload for that spill node, problem is the
                // reload gets attach to that same spill (and is totally unnecessary)
-               if(info->old_spill != NULL &&
-                       (before == info->old_spill || value_dominates(before, info->old_spill))) {
+               if (info->old_spill != NULL &&
+                       (before == info->old_spill || value_dominates(before, info->old_spill)))
+               {
                        printf("spilledphi hack was needed...\n");
                        before = sched_next(info->old_spill);
                }
 #endif
        }
 
-       rel           = obstack_alloc(&env->obst, sizeof(rel[0]));
-       rel->reloader = before;
-       rel->next     = info->reloaders;
-       info->reloaders = rel;
+       /* put reload into list */
+       rel                = obstack_alloc(&env->obst, sizeof(rel[0]));
+       rel->next          = info->reloaders;
+       rel->reloader      = before;
+       rel->rematted_node = NULL;
+       rel->allow_remat   = allow_remat;
+
+       info->reloaders  = rel;
+       assert(info->reload_cls == NULL || info->reload_cls == reload_cls);
+       info->reload_cls = reload_cls;
+
+       DBG((env->dbg, LEVEL_1, "creating spillinfo for %+F, will be reloaded before %+F, may%s be rematerialized\n",
+               to_spill, before, allow_remat ? "" : " not"));
 }
 
 static ir_node *get_reload_insertion_point(ir_node *block, int pos) {
@@ -226,9 +262,11 @@ static ir_node *get_reload_insertion_point(ir_node *block, int pos) {
        return last;
 }
 
-void be_add_reload_on_edge(spill_env_t *env, ir_node *to_spill, ir_node *block, int pos) {
+void be_add_reload_on_edge(spill_env_t *env, ir_node *to_spill, ir_node *block, int pos,
+               const arch_register_class_t *reload_cls, int allow_remat)
+{
        ir_node *before = get_reload_insertion_point(block, pos);
-       be_add_reload(env, to_spill, before);
+       be_add_reload(env, to_spill, before, reload_cls, allow_remat);
 }
 
 void be_spill_phi(spill_env_t *env, ir_node *node) {
@@ -309,10 +347,7 @@ static void spill_irn(spill_env_t *env, spill_info_t *spillinfo) {
        }
 
        if (arch_irn_is(env->arch_env, to_spill, dont_spill)) {
-               if (env->chordal_env->opts->vrfy_option == BE_CH_VRFY_WARN)
-                       ir_fprintf(stderr, "Verify warning: spilling 'dont_spill' node %+F\n", to_spill);
-               else if (env->chordal_env->opts->vrfy_option == BE_CH_VRFY_ASSERT)
-                       assert(0 && "Attempt to spill a node marked 'dont_spill'");
+               assert(0 && "Attempt to spill a node marked 'dont_spill'");
        }
 
        spillinfo->spill = be_spill(env->arch_env, to_spill);
@@ -343,9 +378,9 @@ static void spill_phi(spill_env_t *env, spill_info_t *spillinfo) {
        /* build a new PhiM */
        ins = alloca(sizeof(ir_node*) * arity);
        for(i = 0; i < arity; ++i) {
-               ins[i] = get_irg_bad(env->chordal_env->irg);
+               ins[i] = get_irg_bad(env->irg);
        }
-       spillinfo->spill = new_r_Phi(env->chordal_env->irg, block, arity, ins, mode_M);
+       spillinfo->spill = new_r_Phi(env->irg, block, arity, ins, mode_M);
 
        for(i = 0; i < arity; ++i) {
                ir_node *arg = get_irn_n(phi, i);
@@ -366,7 +401,6 @@ static void spill_phi(spill_env_t *env, spill_info_t *spillinfo) {
                        assert(be_is_Reload(reload) || is_Phi(reload));
                        set_irn_n(reload, get_edge_src_pos(edge), spillinfo->spill);
                }
-               set_irn_n(old_spill, be_pos_Spill_frame, new_Bad());
                set_irn_n(old_spill, be_pos_Spill_val, new_Bad());
                //sched_remove(old_spill);
                spillinfo->old_spill = NULL;
@@ -415,7 +449,7 @@ static int is_value_available(spill_env_t *env, ir_node *arg, ir_node *reloader)
        if(be_is_Spill(arg))
                return 1;
 
-       if(arg == get_irg_frame(env->chordal_env->irg))
+       if(arg == get_irg_frame(env->irg))
                return 1;
 
        // hack for now (happens when command should be inserted at end of block)
@@ -423,32 +457,35 @@ static int is_value_available(spill_env_t *env, ir_node *arg, ir_node *reloader)
                return 0;
        }
 
+       /*
+        * Ignore registers are always available
+        */
+       if(arch_irn_is(env->arch_env, arg, ignore)) {
+               return 1;
+       }
+
+#if 0
        /* the following test does not work while spilling,
         * because the liveness info is not adapted yet to the effects of the
         * additional spills/reloads.
-        *
-        * So we can only do this test for ignore registers (of our register class)
         */
-       if(arch_get_irn_reg_class(env->arch_env, arg, -1) == env->chordal_env->cls
-          && arch_irn_is(env->arch_env, arg, ignore)) {
-               int i, arity;
 
-               /* we want to remat before the insn reloader
-                * thus an arguments is alive if
-                *   - it interferes with the reloaders result
-                *   - or it is (last-) used by reloader itself
-                */
-               if (values_interfere(env->birg->lv, reloader, arg)) {
-                       return 1;
-               }
+       /* we want to remat before the insn reloader
+        * thus an arguments is alive if
+        *   - it interferes with the reloaders result
+        *   - or it is (last-) used by reloader itself
+        */
+       if (values_interfere(env->birg->lv, reloader, arg)) {
+               return 1;
+       }
 
-               arity = get_irn_arity(reloader);
-               for (i = 0; i < arity; ++i) {
-                       ir_node *rel_arg = get_irn_n(reloader, i);
-                       if (rel_arg == arg)
-                               return 1;
-               }
+       arity = get_irn_arity(reloader);
+       for (i = 0; i < arity; ++i) {
+               ir_node *rel_arg = get_irn_n(reloader, i);
+               if (rel_arg == arg)
+                       return 1;
        }
+#endif
 
        return 0;
 }
@@ -559,15 +596,16 @@ static ir_node *do_remat(spill_env_t *env, ir_node *spilled, ir_node *reloader)
        }
 
        /* create a copy of the node */
-       res = new_ir_node(get_irn_dbg_info(spilled), env->chordal_env->irg, bl,
+       res = new_ir_node(get_irn_dbg_info(spilled), env->irg, bl,
                get_irn_op(spilled),
                get_irn_mode(spilled),
                get_irn_arity(spilled),
                ins);
        copy_node_attr(spilled, res);
        new_backedge_info(res);
+       sched_reset(res);
 
-       DBG((env->dbg, LEVEL_1, "Insert remat %+F before reloader %+F\n", res, reloader));
+       DBG((env->dbg, LEVEL_1, "Insert remat %+F of %+F before reloader %+F\n", res, spilled, reloader));
 
        /* insert in schedule */
        sched_add_before(reloader, res);
@@ -609,33 +647,41 @@ int be_get_reload_costs_on_edge(spill_env_t *env, ir_node *to_spill, ir_node *bl
 
 void be_insert_spills_reloads(spill_env_t *env) {
        const arch_env_t *arch_env = env->arch_env;
-       spill_info_t *si;
-       int remats = 0;
-       int reloads = 0;
-       int spills = 0;
+       int              remats    = 0;
+       int              reloads   = 0;
+       int              spills    = 0;
+       spill_info_t     *si;
 
        /* process each spilled node */
-       for(si = set_first(env->spills); si; si = set_next(env->spills)) {
+       for (si = set_first(env->spills); si; si = set_next(env->spills)) {
                reloader_t *rld;
-               ir_mode *mode = get_irn_mode(si->spilled_node);
-               pset *values = pset_new_ptr(16);
+               ir_mode    *mode   = get_irn_mode(si->spilled_node);
+               pset       *values = pset_new_ptr(16);
+
+               DBG((env->dbg, LEVEL_1, "\nhandling all reloaders of %+F:\n", si->spilled_node));
 
                /* go through all reloads for this spill */
-               for(rld = si->reloaders; rld; rld = rld->next) {
+               for (rld = si->reloaders; rld; rld = rld->next) {
                        ir_node *new_val;
 
-                       if (be_do_remats && check_remat_conditions(env, si->spilled_node, rld->reloader)) {
+                       if (rld->rematted_node != NULL) {
+                               new_val = rld->rematted_node;
+                               remats++;
+                               sched_add_before(rld->reloader, new_val);
+                       }
+                       else if (be_do_remats && rld->allow_remat && check_remat_conditions(env, si->spilled_node, rld->reloader)) {
                                new_val = do_remat(env, si->spilled_node, rld->reloader);
                                remats++;
-                       } else {
+                       }
+                       else {
                                /* make sure we have a spill */
-                               if(si->spill == NULL) {
+                               if (si->spill == NULL) {
                                        spill_node(env, si);
                                        spills++;
                                }
 
                                /* create a reload */
-                               new_val = be_reload(arch_env, env->cls, rld->reloader, mode, si->spill);
+                               new_val = be_reload(arch_env, si->reload_cls, rld->reloader, mode, si->spill);
                                reloads++;
                        }
 
@@ -643,7 +689,7 @@ void be_insert_spills_reloads(spill_env_t *env) {
                        pset_insert_ptr(values, new_val);
                }
 
-               if(pset_count(values) > 0) {
+               if (pset_count(values) > 0) {
                        /* introduce copies, rewire the uses */
                        pset_insert_ptr(values, si->spilled_node);
                        be_ssa_constr_set_ignore(env->birg->dom_front, env->birg->lv, values, env->mem_phis);
@@ -654,13 +700,15 @@ void be_insert_spills_reloads(spill_env_t *env) {
                si->reloaders = NULL;
        }
 
-       if(be_stat_ev_is_active()) {
+#ifdef FIRM_STATISTICS
+       if (be_stat_ev_is_active()) {
                be_stat_ev("spill_spills", spills);
                be_stat_ev("spill_reloads", reloads);
                be_stat_ev("spill_remats", remats);
        }
+#endif /* FIRM_STATISTICS */
 
-       be_remove_dead_nodes_from_schedule(env->chordal_env->irg);
+       be_remove_dead_nodes_from_schedule(env->irg);
        //be_liveness_recompute(env->birg->lv);
        be_invalidate_liveness(env->birg);
 }