added option to select between schedulers (list or ilp)
[libfirm] / ir / be / bestat.c
index d68480a..486fad8 100644 (file)
@@ -10,6 +10,8 @@
 
 #ifdef FIRM_STATISTICS
 
+#include <time.h>
+
 #include "irnode_t.h"
 #include "irprintf.h"
 #include "irgwalk.h"
@@ -88,11 +90,17 @@ static be_stat_irg_t *get_stat_irg_entry(ir_graph *irg) {
        return entry;
 }
 
+struct a_pressure_walker {
+       be_irg_t *birg;
+       be_lv_t *lv;
+};
+
 /**
  * Collect reg pressure statistics per block and per class.
  */
-static void stat_reg_pressure_block(ir_node *block, void *env) {
-       be_irg_t         *birg = env;
+static void stat_reg_pressure_block(ir_node *block, void *data) {
+       struct a_pressure_walker *env = data;
+       be_irg_t         *birg = env->birg;
        const arch_env_t *aenv = birg->main_env->arch_env;
        int i, n = arch_isa_get_n_reg_class(aenv->isa);
 
@@ -102,7 +110,7 @@ static void stat_reg_pressure_block(ir_node *block, void *env) {
                pset     *live_nodes = pset_new_ptr(64);
                int       max_live;
 
-               live_nodes = be_liveness_end_of_block(aenv, cls, block, live_nodes);
+               live_nodes = be_liveness_end_of_block(env->lv, aenv, cls, block, live_nodes);
                max_live   = pset_count(live_nodes);
 
                sched_foreach_reverse(block, irn) {
@@ -113,19 +121,22 @@ static void stat_reg_pressure_block(ir_node *block, void *env) {
 
                        live_nodes = be_liveness_transfer(aenv, cls, irn, live_nodes);
                        cnt        = pset_count(live_nodes);
-
-                       max_live = cnt < max_live ? max_live : cnt;
+                       max_live   = cnt < max_live ? max_live : cnt;
                }
 
-               stat_be_block_regpressure(birg->irg, block, MIN(max_live, 5), cls->name);
+               stat_be_block_regpressure(birg->irg, block, max_live, cls->name);
        }
 }
 
 void be_do_stat_reg_pressure(be_irg_t *birg) {
        if (stat_is_active()) {
-               be_liveness(birg->irg);
+               struct a_pressure_walker w;
+
+               w.birg = birg;
+               w.lv   = be_liveness(birg->irg);
                /* Collect register pressure information for each block */
-               irg_block_walk_graph(birg->irg, stat_reg_pressure_block, NULL, birg);
+               irg_block_walk_graph(birg->irg, stat_reg_pressure_block, NULL, &w);
+               be_liveness_free(w.lv);
        }
 }
 
@@ -134,7 +145,7 @@ void be_do_stat_reg_pressure(be_irg_t *birg) {
  */
 void be_do_stat_sched_ready(ir_node *block, nodeset *ready_set) {
        if (stat_is_active()) {
-               stat_be_block_sched_ready(get_irn_irg(block), block, nodeset_count(ready_set));
+               stat_be_block_sched_ready(get_irn_irg(block), block, MIN(nodeset_count(ready_set), 5));
        }
 }
 
@@ -160,9 +171,10 @@ void be_do_stat_permcycle(const char *class_name, ir_node *perm, ir_node *block,
  * Updates nodes statistics.
  */
 static void do_nodes_stat(ir_node *irn, void *env) {
-       be_stat_phase_t *phase = env;
-       ir_mode         *mode;
-       opcode          opc;
+       be_stat_phase_t  *phase = env;
+       ir_mode          *mode;
+       opcode           opc;
+       arch_irn_class_t irn_class;
 
        if (is_Block(irn))
                return;
@@ -179,7 +191,7 @@ static void do_nodes_stat(ir_node *irn, void *env) {
                opc == iro_End)
                return;
 
-       if (is_Proj(irn)) {
+       if (is_Proj(irn) && (mode != mode_X)) {
                phase->num_proj++;
                return;
        }
@@ -187,7 +199,7 @@ static void do_nodes_stat(ir_node *irn, void *env) {
                phase->num_phi++;
                return;
        }
-       else if (mode_is_datab(mode) || (mode == mode_T && ! is_be_node(irn)))
+       else if (mode_is_datab(mode) || ((mode == mode_T) && ! is_be_node(irn)) || (is_Proj(irn) && (mode == mode_X)))
                phase->num_data++;
 
        if (opc == iro_Load)
@@ -195,23 +207,17 @@ static void do_nodes_stat(ir_node *irn, void *env) {
        else if (opc == iro_Store)
                phase->num_store++;
 
-       switch (arch_irn_classify(phase->arch_env, irn)) {
-               case arch_irn_class_spill:
-                       phase->num_spill++;
-                       break;
-               case arch_irn_class_reload:
-                       phase->num_reload++;
-                       break;
-               case arch_irn_class_stackparam:
-               case arch_irn_class_load:
-                       phase->num_load++;
-                       break;
-               case arch_irn_class_store:
-                       phase->num_store++;
-                       break;
-               default:
-                       break;
-       }
+       irn_class = arch_irn_classify(phase->arch_env, irn);
+       if (irn_class & arch_irn_class_spill)
+               phase->num_spill++;
+       else if (irn_class & arch_irn_class_reload)
+               phase->num_reload++;
+       else if (irn_class & arch_irn_class_stackparam)
+               phase->num_load++;
+       else if (irn_class & arch_irn_class_load)
+               phase->num_load++;
+       else if (irn_class & arch_irn_class_store)
+               phase->num_store++;
 }
 
 /**
@@ -297,6 +303,50 @@ void be_stat_init_irg(const arch_env_t *arch_env, ir_graph *irg) {
        }
 }
 
+const char *be_stat_tags[STAT_TAG_LAST];
+
+FILE *be_stat_file = NULL;
+
+void be_init_stat_file(const char *stat_file_name, ir_graph *irg)
+{
+       unsigned line;
+       static char time_str[32];
+       static char irg_name[128];
+
+       assert(be_stat_file == NULL);
+
+       /* if we want to do some statistics, push the environment. */
+       if(strlen(stat_file_name) == 0)
+               return;
+
+       be_stat_file = fopen(stat_file_name, "at");
+       if(be_stat_file == NULL) {
+               fprintf(stderr, "Warning couldn't open statfile '%s'\n", stat_file_name);
+               return;
+       }
+
+       /* initialize the statistics tags */
+       ir_snprintf(time_str, sizeof(time_str),"%u", time(NULL));
+       ir_snprintf(irg_name, sizeof(irg_name), "%F", irg);
+
+       be_stat_tags[STAT_TAG_FILE] = be_retrieve_dbg_info(get_entity_dbg_info(get_irg_entity(irg)), &line);
+       be_stat_tags[STAT_TAG_TIME] = time_str;
+       be_stat_tags[STAT_TAG_IRG]  = irg_name;
+       be_stat_tags[STAT_TAG_CLS]  = "<all>";
+
+       be_stat_ev_push(be_stat_tags, STAT_TAG_LAST, be_stat_file);
+}
+
+void be_close_stat_file()
+{
+       be_stat_ev_pop();
+       if(be_stat_file != NULL) {
+               fclose(be_stat_file);
+               be_stat_file = NULL;
+       }
+}
+
+
 #else
 
 void (be_stat_init_irg)(const arch_env_t *arch_env, ir_graph *irg) {}