beifg: Factorise code to count interference components.
[libfirm] / ir / be / beschednormal.c
index 75071c5..e32ebef 100644 (file)
@@ -1,85 +1,66 @@
 /*
- * Copyright (C) 1995-2008 University of Karlsruhe.  All right reserved.
- *
  * This file is part of libFirm.
- *
- * This file may be distributed and/or modified under the terms of the
- * GNU General Public License version 2 as published by the Free Software
- * Foundation and appearing in the file LICENSE.GPL included in the
- * packaging of this file.
- *
- * Licensees holding valid libFirm Professional Edition licenses may use
- * this file in accordance with the libFirm Commercial License.
- * Agreement provided with the Software.
- *
- * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
- * WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE.
+ * Copyright (C) 2012 University of Karlsruhe.
  */
 
 /**
  * @brief   Use the strong normal form theorem (though it does not hold)
  * @author  Christoph Mallon
- * @version $Id$
  */
-#ifdef HAVE_CONFIG_H
 #include "config.h"
-#endif
 
 #include <stdlib.h>
 
-#include "besched_t.h"
+#include "besched.h"
 #include "belistsched.h"
 #include "belive_t.h"
 #include "beutil.h"
-#include "height.h"
-#include "irtools.h"
+#include "heights.h"
 #include "irgwalk.h"
-#include "benode_t.h"
-
+#include "benode.h"
+#include "bemodule.h"
+#include "util.h"
+#include "array_t.h"
 
 // XXX there is no one time init for schedulers
 //#define NORMAL_DBG
+#include "irprintf.h"
 
+/** An instance of the normal scheduler. */
+typedef struct instance_t {
+       ir_graph*      irg;          /**< the IR graph of this instance */
+       struct obstack obst;         /**< obstack for temporary data */
+       ir_node*       curr_list;    /**< current block schedule list */
+} instance_t;
 
 static int must_be_scheduled(const ir_node* const irn)
 {
-       return !is_Proj(irn) && !is_Sync(irn);
+       return !is_Proj(irn) && !arch_irn_is(irn, not_scheduled);
 }
 
 
-static const arch_env_t *cur_arch_env;
-
-
-static ir_node *normal_select(void *block_env, ir_nodeset_t *ready_set,
-                              ir_nodeset_t *live_set)
+static ir_node *normal_select(void *block_env, ir_nodeset_t *ready_set)
 {
-       ir_nodeset_iterator_t iter;
-       ir_node*  block;
-       ir_node*  irn;
-       ir_node** sched;
-       int sched_count;
-
-       (void)block_env;
-       (void)live_set;
-
-       ir_nodeset_iterator_init(&iter, ready_set);
-       irn = ir_nodeset_iterator_next(&iter);
-       block = get_nodes_block(irn);
-       sched = get_irn_link(block);
-       sched_count = ARR_LEN(sched);
-       for (; sched_count-- != 0; ++sched) {
-               ir_node* irn = *sched;
-               if (ir_nodeset_contains(ready_set, irn) &&
-                               !arch_irn_class_is(cur_arch_env, irn, branch)) {
+       instance_t* inst = (instance_t*)block_env;
+       ir_node*    irn;
+       ir_node*    next;
+       ir_node*    last = NULL;
+
+       for (irn = inst->curr_list; irn != NULL; last = irn, irn = next) {
+               next = (ir_node*)get_irn_link(irn);
+               if (ir_nodeset_contains(ready_set, irn)) {
 #if defined NORMAL_DBG
                        ir_fprintf(stderr, "scheduling %+F\n", irn);
 #endif
+                       if (last == NULL)
+                               inst->curr_list = next;
+                       else
+                               set_irn_link(last, next);
                        return irn;
                }
        }
 
-       return irn;
+       return ir_nodeset_first(ready_set);
 }
 
 
@@ -88,14 +69,15 @@ typedef struct irn_cost_pair {
        int      cost;
 } irn_cost_pair;
 
-
 static int cost_cmp(const void* a, const void* b)
 {
-       const irn_cost_pair* const a1 = a;
-       const irn_cost_pair* const b1 = b;
+       const irn_cost_pair* const a1 = (const irn_cost_pair*)a;
+       const irn_cost_pair* const b1 = (const irn_cost_pair*)b;
        int ret = b1->cost - a1->cost;
+       if (ret == 0)
+               ret = (int)get_irn_idx(a1->irn) - (int)get_irn_idx(b1->irn);
 #if defined NORMAL_DBG
-       ir_fprintf(stderr, "%+F %s %+F\n", a1->irn, ret < 0 ? "<" : ret > 0 ? ">" : "=", b1->irn);
+       ir_fprintf(stderr, "cost %+F %s %+F\n", a1->irn, ret < 0 ? "<" : ret > 0 ? ">" : "=", b1->irn);
 #endif
        return ret;
 }
@@ -106,26 +88,36 @@ typedef struct flag_and_cost {
        irn_cost_pair costs[];
 } flag_and_cost;
 
+#define get_irn_fc(irn)     ((flag_and_cost*)get_irn_link(irn))
+#define set_irn_fc(irn, fc) set_irn_link(irn, fc)
+
 
 static int count_result(const ir_node* irn)
 {
        const ir_mode* mode = get_irn_mode(irn);
-       return
-               mode != mode_M &&
-               mode != mode_X &&
-               !arch_irn_is(cur_arch_env, irn, ignore);
+
+       if (mode == mode_M || mode == mode_X)
+               return 0;
+
+       if (mode == mode_T)
+               return 1;
+
+       arch_register_req_t const *const req = arch_get_irn_register_req(irn);
+       if (arch_register_req_is(req, ignore))
+               return 0;
+
+       return 1;
 }
 
 
 /* TODO high cost for store trees
  */
 
-
-static int normal_tree_cost(ir_node* irn)
+static int normal_tree_cost(ir_node* irn, instance_t *inst)
 {
-       flag_and_cost* fc    = get_irn_link(irn);
-       ir_node*       block = get_nodes_block(irn);
-       int            arity = get_irn_arity(irn);
+       flag_and_cost* fc;
+       int            arity;
+       ir_node*       last;
        int            n_res;
        int            cost;
        int            n_op_res = 0;
@@ -135,22 +127,24 @@ static int normal_tree_cost(ir_node* irn)
                return 0;
 
        if (is_Proj(irn)) {
-               return normal_tree_cost(get_Proj_pred(irn));
+               return normal_tree_cost(get_Proj_pred(irn), inst);
        }
 
+       arity = get_irn_arity(irn);
+       fc    = get_irn_fc(irn);
+
        if (fc == NULL) {
                irn_cost_pair* costs;
-               int            i;
+               ir_node*       block = get_nodes_block(irn);
 
-               fc = malloc(sizeof(*fc) + sizeof(*fc->costs) * arity);
+               fc = OALLOCF(&inst->obst, flag_and_cost, costs, arity);
                fc->no_root = 0;
                costs = fc->costs;
 
                for (i = 0; i < arity; ++i) {
                        ir_node* pred = get_irn_n(irn, i);
-                       int cost;
 
-                       if (is_Phi(irn) || get_irn_mode(pred) == mode_M || is_Block(pred)) {
+                       if (is_Phi(irn) || get_irn_mode(pred) == mode_M) {
                                cost = 0;
                        } else if (get_nodes_block(pred) != block) {
                                cost = 1;
@@ -158,11 +152,10 @@ static int normal_tree_cost(ir_node* irn)
                                flag_and_cost* pred_fc;
                                ir_node*       real_pred;
 
-                               cost = normal_tree_cost(pred);
-                               if (be_is_Barrier(pred)) cost = 1; // XXX hack: the barrier causes all users to have a reguse of #regs
-                               if (!arch_irn_is(cur_arch_env, pred, ignore)) {
+                               cost = normal_tree_cost(pred, inst);
+                               if (!arch_irn_is_ignore(pred)) {
                                        real_pred = (is_Proj(pred) ? get_Proj_pred(pred) : pred);
-                                       pred_fc = get_irn_link(real_pred);
+                                       pred_fc = get_irn_fc(real_pred);
                                        pred_fc->no_root = 1;
 #if defined NORMAL_DBG
                                        ir_fprintf(stderr, "%+F says that %+F is no root\n", irn, real_pred);
@@ -179,10 +172,19 @@ static int normal_tree_cost(ir_node* irn)
        }
 
        cost = 0;
+       last = 0;
        for (i = 0; i < arity; ++i) {
-               if (get_irn_mode(fc->costs[i].irn) == mode_M) continue;
-               if (arch_irn_is(cur_arch_env, fc->costs[i].irn, ignore)) continue;
+               ir_node* op = fc->costs[i].irn;
+               ir_mode* mode;
+               if (op == last)
+                       continue;
+               mode = get_irn_mode(op);
+               if (mode == mode_M)
+                       continue;
+               if (arch_irn_is_ignore(op))
+                       continue;
                cost = MAX(fc->costs[i].cost + n_op_res, cost);
+               last = op;
                ++n_op_res;
        }
        n_res = count_result(irn);
@@ -198,14 +200,18 @@ static int normal_tree_cost(ir_node* irn)
 
 static void normal_cost_walker(ir_node* irn, void* env)
 {
-       (void)env;
+       instance_t *inst = (instance_t*)env;
 
 #if defined NORMAL_DBG
        ir_fprintf(stderr, "cost walking node %+F\n", irn);
 #endif
-       if (is_Block(irn)) return;
+       if (is_Block(irn)) {
+               ir_node **const roots = NEW_ARR_F(ir_node*, 0);
+               set_irn_link(irn, roots);
+               return;
+       }
        if (!must_be_scheduled(irn)) return;
-       normal_tree_cost(irn);
+       normal_tree_cost(irn, inst);
 }
 
 
@@ -215,10 +221,9 @@ static void collect_roots(ir_node* irn, void* env)
 
        (void)env;
 
-       if (is_Block(irn)) return;
        if (!must_be_scheduled(irn)) return;
 
-       is_root = be_is_Keep(irn) || !((flag_and_cost*)get_irn_link(irn))->no_root;
+       is_root = be_is_Keep(irn) || !get_irn_fc(irn)->no_root;
 
 #if defined NORMAL_DBG
        ir_fprintf(stderr, "%+F is %sroot\n", irn, is_root ? "" : "no ");
@@ -226,10 +231,7 @@ static void collect_roots(ir_node* irn, void* env)
 
        if (is_root) {
                ir_node* block = get_nodes_block(irn);
-               ir_node** roots = get_irn_link(block);
-               if (roots == NULL) {
-                       roots = NEW_ARR_F(ir_node*, 0);
-               }
+               ir_node** roots = (ir_node**)get_irn_link(block);
                ARR_APP1(ir_node*, roots, irn);
                set_irn_link(block, roots);
        }
@@ -238,16 +240,15 @@ static void collect_roots(ir_node* irn, void* env)
 
 static ir_node** sched_node(ir_node** sched, ir_node* irn)
 {
-       ir_node*       block = get_nodes_block(irn);
-       flag_and_cost* fc    = get_irn_link(irn);
-       irn_cost_pair* irns  = fc->costs;
-       int            arity = get_irn_arity(irn);
-       int            i;
-
-       if (irn_visited(irn)) return sched;
-       if (is_End(irn))      return sched;
+       if (irn_visited_else_mark(irn)) return sched;
 
        if (!is_Phi(irn) && !be_is_Keep(irn)) {
+               ir_node*       block = get_nodes_block(irn);
+               int            arity = get_irn_arity(irn);
+               flag_and_cost* fc    = get_irn_fc(irn);
+               irn_cost_pair* irns  = fc->costs;
+               int            i;
+
                for (i = 0; i < arity; ++i) {
                        ir_node* pred = irns[i].irn;
                        if (get_nodes_block(pred) != block) continue;
@@ -257,7 +258,6 @@ static ir_node** sched_node(ir_node** sched, ir_node* irn)
                }
        }
 
-       mark_irn_visited(irn);
        ARR_APP1(ir_node*, sched, irn);
        return sched;
 }
@@ -265,22 +265,26 @@ static ir_node** sched_node(ir_node** sched, ir_node* irn)
 
 static int root_cmp(const void* a, const void* b)
 {
-       const irn_cost_pair* const a1 = a;
-       const irn_cost_pair* const b1 = b;
+       const irn_cost_pair* const a1 = (const irn_cost_pair*)a;
+       const irn_cost_pair* const b1 = (const irn_cost_pair*)b;
        int ret;
-       if (is_irn_forking(a1->irn)) {
+       if (is_irn_forking(a1->irn) && !is_irn_forking(b1->irn)) {
                ret = 1;
-       } else if (is_irn_forking(b1->irn)) {
+       } else if (is_irn_forking(b1->irn) && !is_irn_forking(a1->irn)) {
                ret = -1;
        } else {
                ret = b1->cost - a1->cost;
                if (ret == 0) {
                        /* place live-out nodes later */
                        ret = (count_result(a1->irn) != 0) - (count_result(b1->irn) != 0);
+                       if (ret == 0) {
+                               /* compare node idx */
+                               ret = get_irn_idx(a1->irn) - get_irn_idx(b1->irn);
+                       }
                }
        }
 #if defined NORMAL_DBG
-       ir_fprintf(stderr, "%+F %s %+F\n", a1->irn, ret < 0 ? "<" : ret > 0 ? ">" : "=", b1->irn);
+       ir_fprintf(stderr, "root %+F %s %+F\n", a1->irn, ret < 0 ? "<" : ret > 0 ? ">" : "=", b1->irn);
 #endif
        return ret;
 }
@@ -288,9 +292,8 @@ static int root_cmp(const void* a, const void* b)
 
 static void normal_sched_block(ir_node* block, void* env)
 {
-       heights_t*     heights = env;
-       ir_node**      roots   = get_irn_link(block);
-       int            root_count;
+       ir_node**      roots = (ir_node**)get_irn_link(block);
+       ir_heights_t*  heights = (ir_heights_t*)env;
        irn_cost_pair* root_costs;
        int i;
        ir_node**      sched;
@@ -299,14 +302,14 @@ static void normal_sched_block(ir_node* block, void* env)
        ir_fprintf(stderr, "sched walking block %+F\n", block);
 #endif
 
-       if (roots == NULL) {
+       int const root_count = ARR_LEN(roots);
+       if (root_count == 0) {
 #if defined NORMAL_DBG
                fprintf(stderr, "has no roots\n");
 #endif
                return;
        }
 
-       root_count = ARR_LEN(roots);
        NEW_ARR_A(irn_cost_pair, root_costs, root_count);
        for (i = 0; i < root_count; ++i) {
                root_costs[i].irn  = roots[i];
@@ -353,49 +356,81 @@ static void normal_sched_block(ir_node* block, void* env)
 }
 
 
-static void *normal_init_graph(const list_sched_selector_t *vtab,
-                               const be_irg_t *birg)
+static void *normal_init_graph(ir_graph *irg)
 {
-       ir_graph  *irg = be_get_birg_irg(birg);
-       heights_t *heights;
-
-       (void)vtab;
-
-       cur_arch_env = be_get_birg_arch_env(birg);
+       instance_t   *inst = XMALLOC(instance_t);
+       ir_heights_t *heights;
 
        be_clear_links(irg);
 
+       obstack_init(&inst->obst);
+       inst->irg         = irg;
+
        heights = heights_new(irg);
 
-       irg_walk_graph(irg, normal_cost_walker,  NULL, NULL);
+       ir_reserve_resources(irg, IR_RESOURCE_IRN_LINK);
+       irg_walk_graph(irg, normal_cost_walker,  NULL, inst);
        irg_walk_graph(irg, collect_roots, NULL, NULL);
        inc_irg_visited(irg);
+       ir_reserve_resources(irg, IR_RESOURCE_IRN_VISITED);
        irg_block_walk_graph(irg, normal_sched_block, NULL, heights);
+       ir_free_resources(irg, IR_RESOURCE_IRN_VISITED);
 
        heights_free(heights);
 
-       return NULL;
+       return inst;
 }
 
-
 static void *normal_init_block(void *graph_env, ir_node *block)
 {
-       (void)graph_env;
-       (void)block;
+       instance_t* inst  = (instance_t*)graph_env;
+       ir_node**   sched = (ir_node**)get_irn_link(block);
+       ir_node*    first = NULL;
+       int         i;
+
+       /* turn into a list, so we can easily remove nodes.
+          The link field is used anyway. */
+       for (i = ARR_LEN(sched) - 1; i >= 0; --i) {
+               ir_node* irn = sched[i];
+               if (!is_cfop(irn)) {
+                       set_irn_link(irn, first);
+                       first = irn;
+               }
+       }
+       /* note: we can free sched here, there should be no attempt to schedule
+          a block twice */
+       DEL_ARR_F(sched);
+       set_irn_link(block, sched);
+       inst->curr_list = first;
+       return inst;
+}
+
+static void normal_finish_graph(void *env)
+{
+       instance_t *inst = (instance_t*)env;
 
-       return NULL;
+       /* block uses the link field to store the schedule */
+       ir_free_resources(inst->irg, IR_RESOURCE_IRN_LINK);
+       obstack_free(&inst->obst, NULL);
+       xfree(inst);
 }
 
+static void sched_normal(ir_graph *irg)
+{
+       static const list_sched_selector_t normal_selector = {
+               normal_init_graph,
+               normal_init_block,
+               normal_select,
+               NULL,              /* node_ready */
+               NULL,              /* node_selected */
+               NULL,              /* finish_block */
+               normal_finish_graph
+       };
+       be_list_sched_graph(irg, &normal_selector);
+}
 
-const list_sched_selector_t normal_selector = {
-       normal_init_graph,
-       normal_init_block,
-       normal_select,
-       NULL,              /* to_appear_in_schedule */
-       NULL,              /* node_ready */
-       NULL,              /* node_selected */
-       NULL,              /* exectime */
-       NULL,              /* latency */
-       NULL,              /* finish_block */
-       NULL               /* finish_graph */
-};
+BE_REGISTER_MODULE_CONSTRUCTOR(be_init_sched_normal)
+void be_init_sched_normal(void)
+{
+       be_register_scheduler("normal", sched_normal);
+}