fix uninitialized variable
[libfirm] / ir / be / bestat.c
index f283d58..7fe6404 100644 (file)
@@ -1,8 +1,27 @@
+/*
+ * Copyright (C) 1995-2007 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.
+ */
+
 /**
- * This file calls the corresponding statistic functions for
- * some backend statistics.
- * @author Christian Wuerdig
- * $Id$
+ * @file
+ * @brief       Provides several statistic functions for the backend.
+ * @author      Christian Wuerdig
+ * @version     $Id$
  */
 #ifdef HAVE_CONFIG_H
 #include "config.h"
 #include "irprintf.h"
 #include "irgwalk.h"
 #include "irhooks.h"
+#include "execfreq.h"
 #include "dbginfo_t.h"
 #include "firmstat_t.h"
 #include "irtools.h"
 #include "pset.h"
+#include "statev.h"
 
+#include "bearch_t.h"
 #include "bestat.h"
 #include "belive_t.h"
 #include "besched.h"
@@ -58,6 +80,7 @@ static int cmp_stat_phase(const void *a, const void *b) {
 static int cmp_stat_data(const void *a, const void *b, size_t len) {
        const be_stat_irg_t *p1 = a;
        const be_stat_irg_t *p2 = b;
+       (void) len;
 
        return p1->irg != p2->irg;
 }
@@ -101,17 +124,19 @@ struct a_pressure_walker {
 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;
+       ir_graph         *irg  = be_get_birg_irg(birg);
+       const arch_env_t *aenv = be_get_birg_arch_env(birg);
        int i, n = arch_isa_get_n_reg_class(aenv->isa);
 
        for (i = 0; i < n; i++) {
                const arch_register_class_t *cls = arch_isa_get_reg_class(aenv->isa, i);
-               ir_node  *irn;
-               pset     *live_nodes = pset_new_ptr(64);
-               int       max_live;
+               ir_node      *irn;
+               ir_nodeset_t  live_nodes;
+               int           max_live;
 
-               live_nodes = be_liveness_end_of_block(env->lv, aenv, cls, block, live_nodes);
-               max_live   = pset_count(live_nodes);
+               ir_nodeset_init(&live_nodes);
+               be_liveness_end_of_block(env->lv, aenv, cls, block, &live_nodes);
+               max_live = ir_nodeset_size(&live_nodes);
 
                sched_foreach_reverse(block, irn) {
                        int cnt;
@@ -119,23 +144,26 @@ static void stat_reg_pressure_block(ir_node *block, void *data) {
                        if(is_Phi(irn))
                                break;
 
-                       live_nodes = be_liveness_transfer(aenv, cls, irn, live_nodes);
-                       cnt        = pset_count(live_nodes);
+                       be_liveness_transfer(aenv, cls, irn, &live_nodes);
+                       cnt        = ir_nodeset_size(&live_nodes);
                        max_live   = cnt < max_live ? max_live : cnt;
                }
 
-               stat_be_block_regpressure(birg->irg, block, max_live, cls->name);
+               stat_be_block_regpressure(irg, block, max_live, cls->name);
+               ir_nodeset_destroy(&live_nodes);
        }
 }
 
 void be_do_stat_reg_pressure(be_irg_t *birg) {
+       ir_graph *irg = be_get_birg_irg(birg);
+
        if (stat_is_active()) {
                struct a_pressure_walker w;
 
                w.birg = birg;
-               w.lv   = be_liveness(birg->irg);
+               w.lv   = be_liveness(irg);
                /* Collect register pressure information for each block */
-               irg_block_walk_graph(birg->irg, stat_reg_pressure_block, NULL, &w);
+               irg_block_walk_graph(irg, stat_reg_pressure_block, NULL, &w);
                be_liveness_free(w.lv);
        }
 }
@@ -143,9 +171,9 @@ void be_do_stat_reg_pressure(be_irg_t *birg) {
 /**
  * Notify statistic module about amount of ready nodes.
  */
-void be_do_stat_sched_ready(ir_node *block, nodeset *ready_set) {
+void be_do_stat_sched_ready(ir_node *block, const ir_nodeset_t *ready_set) {
        if (stat_is_active()) {
-               stat_be_block_sched_ready(get_irn_irg(block), block, MIN(nodeset_count(ready_set), 5));
+               stat_be_block_sched_ready(get_irn_irg(block), block, MIN(ir_nodeset_size(ready_set), 5));
        }
 }
 
@@ -173,7 +201,7 @@ void be_do_stat_permcycle(const char *class_name, ir_node *perm, ir_node *block,
 static void do_nodes_stat(ir_node *irn, void *env) {
        be_stat_phase_t  *phase = env;
        ir_mode          *mode;
-       opcode           opc;
+       ir_opcode        opc;
        arch_irn_class_t irn_class;
 
        if (is_Block(irn))
@@ -302,19 +330,19 @@ void be_stat_init_irg(const arch_env_t *arch_env, ir_graph *irg) {
                }
        }
 }
-#endif
+#endif /* FIRM_STATISTICS */
 
 typedef struct _estimate_irg_costs_env_t {
        const arch_env_t *arch_env;
-       ir_exec_freq *execfreqs;
-       double costs;
+       ir_exec_freq     *execfreqs;
+       double           costs;
 } estimate_irg_costs_env_t;
 
 static void estimate_block_costs(ir_node *block, void *data)
 {
        estimate_irg_costs_env_t *env = data;
        ir_node *node;
-       double costs = 0;
+       double  costs = 0.0;
 
        sched_foreach(block, node) {
                costs += arch_get_op_estimated_cost(env->arch_env, node);
@@ -326,9 +354,10 @@ static void estimate_block_costs(ir_node *block, void *data)
 double be_estimate_irg_costs(ir_graph *irg, const arch_env_t *arch_env, ir_exec_freq *execfreqs)
 {
        estimate_irg_costs_env_t env;
-       env.arch_env = arch_env;
+
+       env.arch_env  = arch_env;
        env.execfreqs = execfreqs;
-       env.costs 0;
+       env.costs     = 0.0;
 
        irg_block_walk_graph(irg, estimate_block_costs, NULL, &env);
 
@@ -336,52 +365,14 @@ double be_estimate_irg_costs(ir_graph *irg, const arch_env_t *arch_env, ir_exec_
 }
 
 #ifdef FIRM_STATISTICS
-const char *be_stat_tags[STAT_TAG_LAST];
-FILE *be_stat_file = NULL;
-
-void be_init_stat_file(const char *stat_file_name, const char *sourcefilename)
-{
-       static char time_str[32];
-
-       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));
-
-       be_stat_tags[STAT_TAG_FILE] = sourcefilename;
-       be_stat_tags[STAT_TAG_TIME] = time_str;
-       be_stat_tags[STAT_TAG_IRG]  = "<all>";
-       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
+#else /* FIRM_STATISTICS */
 
 void (be_stat_init_irg)(const arch_env_t *arch_env, ir_graph *irg) {}
 void (be_do_stat_nodes)(ir_graph *irg, const char *phase) {}
 void (be_do_stat_reg_pressure)(be_irg_t *birg) {}
-void (be_do_stat_sched_ready)(ir_node *block, nodeset *ready_set) {}
+void (be_do_stat_sched_ready)(ir_node *block, ir_nodeset_t *ready_set) {}
 void (be_do_stat_perm)(const char *class_name, int n_regs, ir_node *perm, ir_node *block, int n, int real_size) {}
 
 #endif /* FIRM_STATISTICS */