no need for no_float_fold hack anymore
[libfirm] / ir / be / becopystat.c
index a21f0db..8132419 100644 (file)
@@ -113,6 +113,7 @@ int curr_vals[ASIZE];
 static ir_nodeset_t *all_phi_nodes;
 static ir_nodeset_t *all_copy_nodes;
 
+BE_REGISTER_MODULE_CONSTRUCTOR(be_init_copystat);
 void be_init_copystat(void)
 {
        FIRM_DBG_REGISTER(dbg, "firm.be.copystat");
@@ -121,14 +122,19 @@ void be_init_copystat(void)
        all_copy_nodes = ir_nodeset_new(64);
        memset(curr_vals, 0, sizeof(curr_vals));
 }
-BE_REGISTER_MODULE_CONSTRUCTOR(be_init_copystat);
 
+BE_REGISTER_MODULE_DESTRUCTOR(be_quit_copystat);
 void be_quit_copystat(void)
 {
-       ir_nodeset_del(all_phi_nodes);
-       ir_nodeset_del(all_copy_nodes);
+       if (all_phi_nodes != NULL) {
+               ir_nodeset_del(all_phi_nodes);
+               all_phi_nodes = NULL;
+       }
+       if (all_copy_nodes != NULL) {
+               ir_nodeset_del(all_copy_nodes);
+               all_copy_nodes = NULL;
+       }
 }
-BE_REGISTER_MODULE_DESTRUCTOR(be_quit_copystat);
 
 /**
  * @return 1 if the block at pos @p pos removed a critical edge
@@ -171,14 +177,6 @@ void copystat_add_heur_costs(int costs)
 {
        curr_vals[I_COPIES_HEUR] += costs;
 }
-void copystat_add_ilp_5_sec_costs(int costs)
-{
-       curr_vals[I_COPIES_5SEC] += costs;
-}
-void copystat_add_ilp_30_sec_costs(int costs)
-{
-       curr_vals[I_COPIES_30SEC] += costs;
-}
 void copystat_add_opt_costs(int costs)
 {
        curr_vals[I_COPIES_OPT] += costs;
@@ -190,6 +188,14 @@ void copystat_add_heur_time(int time)
 
 #ifdef WITH_ILP
 
+void copystat_add_ilp_5_sec_costs(int costs)
+{
+       curr_vals[I_COPIES_5SEC] += costs;
+}
+void copystat_add_ilp_30_sec_costs(int costs)
+{
+       curr_vals[I_COPIES_30SEC] += costs;
+}
 void copystat_add_ilp_time(int time)
 {
        curr_vals[I_ILP_TIME] += time;
@@ -209,6 +215,23 @@ void copystat_add_ilp_iter(int iters)
 
 #endif /* WITH_ILP */
 
+/**
+ * Opens a file named base.ext with the mode mode.
+ */
+static FILE *be_ffopen(const char *base, const char *ext, const char *mode)
+{
+       FILE *out;
+       char buf[1024];
+
+       snprintf(buf, sizeof(buf), "%s.%s", base, ext);
+       buf[sizeof(buf) - 1] = '\0';
+       if (! (out = fopen(buf, mode))) {
+               fprintf(stderr, "Cannot open file %s in mode %s\n", buf, mode);
+               return NULL;
+       }
+       return out;
+}
+
 void copystat_dump(ir_graph *irg)
 {
        int i;