removed dependency of irnode.h
[libfirm] / ir / stat / stat_dmp.c
index 13a660b..96b1215 100644 (file)
@@ -50,8 +50,10 @@ static const struct {
   { FS_OPT_NEUTRAL_1,      "algebraic simplification: a op 1 = 1 op a = a" },
   { FS_OPT_ADD_A_A,        "algebraic simplification: a + a = a * 2" },
   { FS_OPT_ADD_A_MINUS_B,  "algebraic simplification: a + -b = a - b" },
-  { FS_OPT_ADD_SUB,        "algebraic simplification: (a + x) - x = (a - x) + x" },
-  { FS_OPT_SUB_0_A,        "algebraic simplification:  0 - a = -a" },
+  { FS_OPT_ADD_SUB,        "algebraic simplification: (a + x) - x = (a - x) + x = a" },
+  { FS_OPT_ADD_MUL_A_X_A,  "algebraic simplification: a * x + a = a * (x + 1)" },
+  { FS_OPT_SUB_0_A,        "algebraic simplification: 0 - a = -a" },
+  { FS_OPT_SUB_MUL_A_X_A,  "algebraic simplification: a * x - a = a * (x - 1)" },
   { FS_OPT_MUL_MINUS_1,    "algebraic simplification: a * -1 = -a" },
   { FS_OPT_OR,             "algebraic simplification: a | a = a | 0 = 0 | a = a" },
   { FS_OPT_AND,            "algebraic simplification: a & 0b1...1 = 0b1...1 & a =  a & a = a" },
@@ -179,6 +181,7 @@ static void simple_dump_graph(dumper_t *dmp, graph_entry_t *entry)
 {
   int i, dump_opts = 1;
   block_entry_t *b_entry;
+  extbb_entry_t *eb_entry;
 
   if (! dmp->f)
     return;
@@ -249,7 +252,7 @@ static void simple_dump_graph(dumper_t *dmp, graph_entry_t *entry)
     for (b_entry = pset_first(entry->block_hash);
               b_entry;
               b_entry = pset_next(entry->block_hash)) {
-      fprintf(dmp->f, "BLK %12ld %12u %12u %12u %12u %12u %4.8f\n",
+      fprintf(dmp->f, "BLK   %6ld %12u %12u %12u %12u %12u %4.8f\n",
              b_entry->block_nr,
              b_entry->cnt_nodes.cnt[0],
              b_entry->cnt_edges.cnt[0],
@@ -259,6 +262,24 @@ static void simple_dump_graph(dumper_t *dmp, graph_entry_t *entry)
              (double)b_entry->cnt_edges.cnt[0] / (double)b_entry->cnt_nodes.cnt[0]
       );
     }
+
+    if (dmp->status->stat_options & FIRMSTAT_COUNT_EXTBB) {
+      /* dump extended block info */
+      fprintf(dmp->f, "\n%12s %12s %12s %12s %12s %12s %12s\n", "Extbb Nr", "Nodes", "intern E", "incoming E", "outgoing E", "Phi", "quot");
+      for (eb_entry = pset_first(entry->extbb_hash);
+           eb_entry;
+           eb_entry = pset_next(entry->extbb_hash)) {
+        fprintf(dmp->f, "ExtBB %6ld %12u %12u %12u %12u %12u %4.8f\n",
+          eb_entry->block_nr,
+          eb_entry->cnt_nodes.cnt[0],
+          eb_entry->cnt_edges.cnt[0],
+          eb_entry->cnt_in_edges.cnt[0],
+          eb_entry->cnt_out_edges.cnt[0],
+          eb_entry->cnt_phi_data.cnt[0],
+          (double)eb_entry->cnt_edges.cnt[0] / (double)eb_entry->cnt_nodes.cnt[0]
+        );
+      }
+    }
   }
 }