more
[libfirm] / ir / ir / irdumptxt.c
index 172d960..5a0428b 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Project:     libFIRM
- * File name:   ir/ir/irdump.c
+ * File name:   ir/ir/irdumptxt.c
  * Purpose:     Write vcg representation of firm to file.
  * Author:      Martin Trapp, Christian Schaefer
  * Modified by: Goetz Lindenmaier, Hubert Schmidt
  * Copyright:   (c) 1998-2003 Universität Karlsruhe
  * Licence:     This file protected by GPL -  GNU GENERAL PUBLIC LICENSE.
  */
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
 
+#ifdef HAVE_STRING_H
 #include <string.h>
+#endif
+#ifdef HAVE_STDLIB_H
 #include <stdlib.h>
+#endif
+
 #include <stdarg.h>
 
-#include "irdump.h"
+#include "irdump_t.h"
 
 #include "firm_common_t.h"
 
 #include "irgraph_t.h"
 #include "irprog_t.h"
 #include "entity_t.h"
+#include "trouts.h"
+#include "irgwalk.h"
+#include "tv.h"
 
 #include "field_temperature.h"
 
-#define MY_SIZE 32     /* Size of an array that actually should be computed. */
+#define MY_SIZE 1024     /* Size of an array that actually should be computed. */
 
 int dump_node_opcode(FILE *F, ir_node *n); /* from irdump.c */
 
 
+/* Just opens a file, mangling a file name.
+ *
+ * The name consists of the following parts:
+ *
+ * @arg basename  The basis of the name telling about the content.
+ * @arg
+ *
+ */
+static FILE *text_open (const char *basename, const char * suffix1, const char *suffix2, const char *suffix3) {
+  FILE *F;
+  int len = strlen(basename), i, j;
+  char *fname;  /* filename to put the vcg information in */
+
+  if (!basename) assert(basename);
+  if (!suffix1) suffix1 = "";
+  if (!suffix2) suffix2 = "";
+  if (!suffix3) suffix3 = ".txt";
+
+  /* open file for vcg graph */
+  fname = malloc (strlen(basename)*2 + strlen(suffix1) + strlen(suffix2) + 5); /* *2: space for excapes. */
+
+  j = 0;
+  for (i = 0; i < len; ++i) {  /* replase '/' in the name: escape by @. */
+    if (basename[i] == '/') {
+      fname[j] = '@'; j++; fname[j] = '1'; j++;
+    } else if (basename[i] == '@') {
+      fname[j] = '@'; j++; fname[j] = '2'; j++;
+    } else {
+      fname[j] = basename[i]; j++;
+    }
+  }
+  fname[j] = '\0';
+  strcat (fname, suffix1);  /* append file suffix */
+  strcat (fname, suffix2);  /* append file suffix */
+  strcat (fname, suffix3);  /* append the .txt suffix */
+
+  F = fopen (fname, "w");   /* open file for writing */
+  if (!F) {
+    assert(0);
+  }
+  free(fname);
+
+  return F;
+}
+
+int dump_irnode_to_file(FILE *F, ir_node *n) {
+  int i, bad = 0;
+  char comma;
+  ir_graph *irg;
+
+  dump_node_opcode(F, n);
+  fprintf(F, " %ld\n", get_irn_node_nr(n));
+
+  if (opt_dump_pointer_values_to_info)
+    fprintf (F, "  addr:    %p \n", (void *)n);
+  fprintf (F, "  mode:    %s\n", get_mode_name(get_irn_mode(n)));
+  fprintf (F, "  visited: %ld \n", get_irn_visited(n));
+  irg = get_irn_irg(n);
+  if (irg != get_const_code_irg())
+    fprintf (F, "  irg:     %s\n", get_ent_dump_name(get_irg_entity(irg)));
+
+  if (get_irn_pinned(n) == op_pin_state_floats &&
+      get_irg_pinned(get_irn_irg(n)) == op_pin_state_floats) {
+    fprintf(F, "  node was pinned in ");
+    dump_node_opcode(F, get_nodes_block(n));
+    fprintf(F, " %ld\n", get_irn_node_nr(get_nodes_block(n)));
+  }
+
+  fprintf(F, "  arity:   %d\n", get_irn_intra_arity(n));
+  /* show all predecessor nodes */
+  fprintf(F, "  pred nodes: \n");
+  if (!is_Block(n)) {
+    fprintf(F, "    -1:    ");
+    dump_node_opcode(F, get_nodes_block(n));
+    fprintf(F, " %ld\n", get_irn_node_nr(get_nodes_block(n)));
+  }
+  for ( i = 0; i < get_irn_intra_arity(n); ++i) {
+    fprintf(F, "     %d: %s ", i, is_intra_backedge(n, i) ? "be" : "  ");
+    dump_node_opcode(F, get_irn_intra_n(n, i));
+    fprintf(F, " %ld\n", get_irn_node_nr(get_irn_intra_n(n, i)));
+  }
+
+  fprintf(F, "  Private Attributes:\n");
+
+  if ((get_irp_ip_view_state() != ip_view_no)
+      && (get_irn_opcode(n) == iro_Filter || get_irn_opcode(n) == iro_Block)) {
+    fprintf(F, "  inter arity: %d\n", get_irn_inter_arity(n));
+    fprintf(F, "  inter pred nodes: \n");
+    for ( i = 0; i < get_irn_inter_arity(n); ++i) {
+      fprintf(F, "     %d: %s ", i, is_intra_backedge(n, i) ? "be" : "  ");
+      dump_node_opcode(F, get_irn_inter_n(n, i));
+      fprintf(F, " %ld\n", get_irn_node_nr(get_irn_inter_n(n, i)));
+    }
+  }
+
+  if (is_fragile_op(n)) {
+    fprintf(F, "  pinned state: %s\n", get_op_pin_state_name(get_irn_pinned(n)));
+    /* not dumped: frag array */
+  }
+
+  /* This is not nice, output it as a marker in the predecessor list. */
+  if ((get_irn_op(n) == op_Block) ||
+      (get_irn_op(n) == op_Phi) ||
+      ((get_irn_op(n) == op_Filter) && get_interprocedural_view())) {
+    fprintf(F, "  backedges:");
+    comma = ' ';
+    for (i = 0; i < get_irn_arity(n); i++)
+      if (is_backedge(n, i)) { fprintf(F, "%c %d", comma, i); comma = ','; }
+    fprintf(F, "\n");
+  }
+
+  /* Loop node.   Someone else please tell me what's wrong ... */
+  if (get_irn_loop(n)) {
+    ir_loop *loop = get_irn_loop(n);
+    assert(loop);
+    fprintf(F, "  in loop %d with depth %d\n",
+        get_loop_loop_nr(loop), get_loop_depth(loop));
+  }
+
+
+  /* Source types */
+  switch (get_irn_opcode(n)) {
+  case iro_Block: {
+    fprintf(F, "  block visited: %ld\n", get_Block_block_visited(n));
+    fprintf(F, "  dominator info: output not implemented\n");
+    /* not dumped: graph_arr */
+    /* not dumped: mature    */
+  }  break;
+  case iro_Start: {
+    type *tp = get_entity_type(get_irg_entity(get_irn_irg(n)));
+    fprintf(F, "  start of method of type %s \n", get_type_name_ex(tp, &bad));
+    for (i = 0; i < get_method_n_params(tp); ++i)
+      fprintf(F, "    param %d type: %s \n", i, get_type_name_ex(get_method_param_type(tp, i), &bad));
+    if ((get_irp_ip_view_state() == ip_view_valid) && !get_interprocedural_view()) {
+      ir_node *sbl = get_nodes_block(n);
+      int i, n_cfgpreds = get_Block_cg_n_cfgpreds(sbl);
+      fprintf(F, "  graph has %d interprocedural predecessors:\n", n_cfgpreds);
+      for (i = 0; i < n_cfgpreds; ++i) {
+        ir_node *cfgpred = get_Block_cg_cfgpred(sbl, i);
+        fprintf(F, "    %d: Call %ld in graph %s\n", i, get_irn_node_nr(cfgpred),
+                get_irg_dump_name(get_irn_irg(cfgpred)));
+      }
+    }
+  } break;
+  case iro_Cond: {
+    fprintf(F, "  condition kind: %s\n",  get_Cond_kind(n) == dense ? "dense" : "fragmentary");
+    fprintf(F, "  default ProjNr: %ld\n", get_Cond_defaultProj(n));
+  } break;
+  case iro_Alloc: {
+    fprintf(F, "  allocating entity of type: %s \n", get_type_name_ex(get_Alloc_type(n), &bad));
+    fprintf(F, "  allocating on: the %s\n", (get_Alloc_where(n) == stack_alloc) ? "stack" : "heap");
+  } break;
+  case iro_Free: {
+    fprintf(F, "  freeing entity of type %s \n", get_type_name_ex(get_Free_type(n), &bad));
+  } break;
+  case iro_Sel: {
+    entity *ent = get_Sel_entity(n);
+
+    if (ent) {
+      fprintf(F, "  Selecting entity of type %s\n", get_type_name_ex(get_entity_type(ent), &bad));
+      fprintf(F, "    from entity %s (%ld)\n", get_entity_name(ent), get_entity_nr(ent));
+      fprintf(F, "    of type %s\n", get_type_name_ex(get_entity_owner(ent), &bad));
+    }
+    else {
+      fprintf(F, "  <NULL entity>\n");
+      bad = 1;
+    }
+  } break;
+  case iro_Call: {
+    type *tp = get_Call_type(n);
+    fprintf(F, "  calling method of type %s \n", get_type_name_ex(tp, &bad));
+    if(get_unknown_type() != tp) {
+      for (i = 0; i < get_method_n_params(tp); ++i)
+       fprintf(F, "    param %d type: %s \n", i, get_type_name_ex(get_method_param_type(tp, i), &bad));
+      for (i = 0; i < get_method_n_ress(tp); ++i)
+       fprintf(F, "    resul %d type: %s \n", i, get_type_name_ex(get_method_res_type(tp, i), &bad));
+    }
+    if (Call_has_callees(n)) {
+      fprintf(F, "  possible callees: \n");
+      for (i = 0; i < get_Call_n_callees(n); i++) {
+       fprintf(F, "    %d: %s\n", i, get_ent_dump_name(get_Call_callee(n, i)));
+      }
+    }
+  } break;
+  case iro_CallBegin: {
+    ir_node *call = get_CallBegin_call(n);
+    fprintf(F, "  Call: %ld\n", get_irn_node_nr(call));
+    if (Call_has_callees(call)) {
+      fprintf(F, "  possible callees: \n");
+      for (i = 0; i < get_Call_n_callees(call); i++) {
+       fprintf(F, "    %d: %s\n", i, get_ent_dump_name(get_Call_callee(call, i)));
+      }
+    }
+  } break;
+  case iro_Cast: {
+    fprintf(F, "  cast to type: %s\n", get_type_name_ex(get_Cast_type(n), &bad));
+  } break;
+  case iro_Return: {
+    if (!get_interprocedural_view()) {
+      type *tp = get_entity_type(get_irg_entity(get_irn_irg(n)));
+      fprintf(F, "  return in method of type %s \n", get_type_name_ex(tp, &bad));
+      for (i = 0; i < get_method_n_ress(tp); ++i)
+        fprintf(F, "    res %d type: %s \n", i, get_type_name_ex(get_method_res_type(tp, i), &bad));
+    }
+  } break;
+  case iro_Const: {
+    type *tp = get_Const_type(n);
+    assert(tp != firm_none_type);
+    fprintf(F, "  Const of type %s \n", get_type_name_ex(get_Const_type(n), &bad));
+  } break;
+  case iro_SymConst: {
+    switch(get_SymConst_kind(n)) {
+    case symconst_addr_name:
+      fprintf(F, "  kind: addr_name\n");
+      fprintf(F, "  name: %s\n", get_id_str(get_SymConst_name(n)));
+      break;
+    case symconst_addr_ent:
+      fprintf(F, "  kind:   addr_ent\n");
+      fprintf(F, "  entity: ");
+      dump_entity_to_file(F, get_SymConst_entity(n), dump_verbosity_onlynames);
+      break;
+    case symconst_type_tag:
+      fprintf(F, "  kind: type_tag\n");
+      fprintf(F, "  type: ");
+      dump_type_to_file(F, get_SymConst_type(n), dump_verbosity_onlynames);
+      break;
+    case symconst_size:
+      fprintf(F, "  kind: size\n");
+      fprintf(F, "  type: ");
+      dump_type_to_file(F, get_SymConst_type(n), dump_verbosity_onlynames);
+      break;
+    }
+    fprintf(F, "  type of value: %s \n", get_type_name_ex(get_SymConst_value_type(n), &bad));
+  } break;
+  case iro_Load:
+    fprintf(F, "  mode of loaded value: %s\n", get_mode_name_ex(get_Load_mode(n), &bad));
+    fprintf(F, "  volatility: %s\n", get_volatility_name(get_Load_volatility(n)));
+    break;
+  case iro_Store:
+    fprintf(F, "  volatility: %s\n", get_volatility_name(get_Store_volatility(n)));
+    break;
+  case iro_Confirm:
+    fprintf(F, "  compare operation: %s\n", get_pnc_string(get_Confirm_cmp(n)));
+    break;
+
+  default: ;
+  }
+
+  if (get_irg_typeinfo_state(get_irn_irg(n)) == ir_typeinfo_consistent  ||
+      get_irg_typeinfo_state(get_irn_irg(n)) == ir_typeinfo_inconsistent  )
+    if (get_irn_typeinfo_type(n) != firm_none_type)
+      fprintf (F, "  Analysed type: %s\n", get_type_name_ex(get_irn_typeinfo_type(n), &bad));
+
+  return bad;
+}
+
+
+
+void dump_irnode(ir_node *n) {
+  dump_irnode_to_file(stdout, n);
+}
+
+
+void dump_graph_to_file(FILE *F, ir_graph *irg) {
+  fprintf(F, "graph %s\n", get_irg_dump_name(irg));
+}
+
+void dump_graph(ir_graph *g) {
+  dump_graph_to_file(stdout, g);
+}
+
+static void dump_node_to_graph_file(ir_node *n, void *env) {
+  FILE *F = (FILE *)env;
+
+  dump_irnode_to_file(F, n);
+  fprintf(F, "\n");
+}
+
+void dump_graph_as_text(ir_graph *irg, const char *suffix) {
+  const char *basename = get_irg_dump_name(irg);
+  FILE *F;
+
+  F = text_open (basename, suffix, "", ".txt");
+
+  dump_graph_to_file(F, irg);
+  fprintf(F, "\n\n");
+  irg_walk_graph (irg, NULL, dump_node_to_graph_file, F);
+
+  fclose (F);
+}
+
 
 int addr_is_alloc(ir_node *acc) {
   ir_node *addr = NULL;
@@ -66,8 +368,9 @@ int addr_is_alloc(ir_node *acc) {
       break;
 
     default:
-      DDMN(addr);
-      assert(0 && "unexpected address node");
+      //DDMN(addr);
+      //assert(0 && "unexpected address node");
+      ;
     }
     addr_op = get_irn_opcode(addr);
   }
@@ -80,9 +383,11 @@ int addr_is_alloc(ir_node *acc) {
 #define X(a)    case a: fprintf(F, #a); break
 void    dump_entity_to_file_prefix (FILE *F, entity *ent, char *prefix, unsigned verbosity) {
   int i, j;
-  assert(ent && ent->kind == k_entity);
-  type *owner = get_entity_owner(ent);
-  type *type  = get_entity_type(ent);
+  type *owner, *type;
+
+  assert(is_entity(ent));
+  owner = get_entity_owner(ent);
+  type  = get_entity_type(ent);
   if (verbosity & dump_verbosity_onlynames) {
     fprintf(F, "%sentity %s.%s (%ld)\n", prefix, get_type_name(get_entity_owner(ent)),
            get_entity_name(ent), get_entity_nr(ent));
@@ -94,26 +399,26 @@ void    dump_entity_to_file_prefix (FILE *F, entity *ent, char *prefix, unsigned
     fprintf(F, "%s  type:  %s (%ld)\n", prefix, get_type_name(type),  get_type_nr(type));
     fprintf(F, "%s  owner: %s (%ld)\n", prefix, get_type_name(owner), get_type_nr(owner));
 
-    if (is_class_type(get_entity_owner(ent))) {
+    if (is_Class_type(get_entity_owner(ent))) {
       if (get_entity_n_overwrites(ent) > 0) {
-       fprintf(F, "%s  overwrites:\n", prefix);
-       for (i = 0; i < get_entity_n_overwrites(ent); ++i) {
-         entity *ov = get_entity_overwrites(ent, i);
-         fprintf(F, "%s    %d: %s of class %s\n", prefix, i, get_entity_name(ov),
-                 get_type_name(get_entity_owner(ov)));
-       }
+           fprintf(F, "%s  overwrites:\n", prefix);
+           for (i = 0; i < get_entity_n_overwrites(ent); ++i) {
+             entity *ov = get_entity_overwrites(ent, i);
+             fprintf(F, "%s    %d: %s of class %s\n", prefix, i, get_entity_name(ov),
+                     get_type_name(get_entity_owner(ov)));
+           }
       } else {
-       fprintf(F, "%s  Does not overwrite other entities. \n", prefix);
+           fprintf(F, "%s  Does not overwrite other entities. \n", prefix);
       }
       if (get_entity_n_overwrittenby(ent) > 0) {
-       fprintf(F, "%s  overwritten by:\n", prefix);
-       for (i = 0; i < get_entity_n_overwrittenby(ent); ++i) {
-         entity *ov = get_entity_overwrittenby(ent, i);
-         fprintf(F, "%s    %d: %s of class %s\n", prefix, i, get_entity_name(ov),
-                 get_type_name(get_entity_owner(ov)));
+           fprintf(F, "%s  overwritten by:\n", prefix);
+           for (i = 0; i < get_entity_n_overwrittenby(ent); ++i) {
+             entity *ov = get_entity_overwrittenby(ent, i);
+             fprintf(F, "%s    %d: %s of class %s\n", prefix, i, get_entity_name(ov),
+                     get_type_name(get_entity_owner(ov)));
        }
       } else {
-       fprintf(F, "%s  Is not overwritten by other entities. \n", prefix);
+           fprintf(F, "%s  Is not overwritten by other entities. \n", prefix);
       }
     }
 
@@ -143,7 +448,7 @@ void    dump_entity_to_file_prefix (FILE *F, entity *ent, char *prefix, unsigned
   } else {  /* no entattrs */
     fprintf(F, "%s(%3d) %*s: %s", prefix,
            get_entity_offset_bits(ent), -40, get_type_name(get_entity_type(ent)), get_entity_name(ent));
-    if (is_method_type(get_entity_type(ent))) fprintf(F, "(...)");
+    if (is_Method_type(get_entity_type(ent))) fprintf(F, "(...)");
 
     if (verbosity & dump_verbosity_accessStats) {
       if (get_entity_allocation(ent) == allocation_static) fprintf(F, " (stat)");
@@ -156,26 +461,26 @@ void    dump_entity_to_file_prefix (FILE *F, entity *ent, char *prefix, unsigned
   if (verbosity & dump_verbosity_entconsts) {
     if (get_entity_variability(ent) != variability_uninitialized) {
       if (is_atomic_entity(ent)) {
-       fprintf(F, "%s  atomic value: ", prefix);
-       dump_node_opcode(F, get_atomic_ent_value(ent));
+        fprintf(F, "%s  atomic value: ", prefix);
+        dump_node_opcode(F, get_atomic_ent_value(ent));
       } else {
-       fprintf(F, "%s  compound values:", prefix);
-       for (i = 0; i < get_compound_ent_n_values(ent); ++i) {
-         compound_graph_path *path = get_compound_ent_value_path(ent, i);
-         entity *ent0 = get_compound_graph_path_node(path, 0);
-         fprintf(F, "\n%s    %3d ", prefix, get_entity_offset_bits(ent0));
-         if (get_type_state(type) == layout_fixed)
-           fprintf(F, "(%3d) ",   get_compound_ent_value_offset_bits(ent, i));
-         fprintf(F, "%s", get_entity_name(ent0));
-         for (j = 0; j < get_compound_graph_path_length(path); ++j) {
-           entity *node = get_compound_graph_path_node(path, j);
-           fprintf(F, ".%s", get_entity_name(node));
-           if (is_array_type(get_entity_owner(node)))
-             fprintf(F, "[%d]", get_compound_graph_path_array_index(path, j));
-         }
-         fprintf(F, "\t = ");
-         dump_node_opcode(F, get_compound_ent_value(ent, i));
-       }
+        fprintf(F, "%s  compound values:", prefix);
+        for (i = 0; i < get_compound_ent_n_values(ent); ++i) {
+          compound_graph_path *path = get_compound_ent_value_path(ent, i);
+          entity *ent0 = get_compound_graph_path_node(path, 0);
+          fprintf(F, "\n%s    %3d ", prefix, get_entity_offset_bits(ent0));
+          if (get_type_state(type) == layout_fixed)
+            fprintf(F, "(%3d) ",   get_compound_ent_value_offset_bits(ent, i));
+          fprintf(F, "%s", get_entity_name(ent));
+          for (j = 0; j < get_compound_graph_path_length(path); ++j) {
+            entity *node = get_compound_graph_path_node(path, j);
+            fprintf(F, ".%s", get_entity_name(node));
+            if (is_Array_type(get_entity_owner(node)))
+              fprintf(F, "[%d]", get_compound_graph_path_array_index(path, j));
+          }
+          fprintf(F, "\t = ");
+          dump_node_opcode(F, get_compound_ent_value(ent, i));
+        }
       }
       fprintf(F, "\n");
     }
@@ -191,69 +496,79 @@ void    dump_entity_to_file_prefix (FILE *F, entity *ent, char *prefix, unsigned
     fprintf(F, "\n%s  peculiarity: %s", prefix, get_peculiarity_string(get_entity_peculiarity(ent)));
     fprintf(F, "\n%s  ld_name: %s", prefix, ent->ld_name ? get_entity_ld_name(ent) : "no yet set");
     fprintf(F, "\n%s  offset:  %d", prefix, get_entity_offset_bits(ent));
-    if (is_method_type(get_entity_type(ent))) {
+    if (is_Method_type(get_entity_type(ent))) {
       if (get_entity_irg(ent))   /* can be null */ {
-       fprintf(F, "\n%s  irg = %ld", prefix, get_irg_graph_nr(get_entity_irg(ent)));
-       if (get_irp_callgraph_state() == irp_callgraph_and_calltree_consistent) {
-         fprintf(F, "\n%s    recursion depth %d", prefix, get_irg_recursion_depth(get_entity_irg(ent)));
-         fprintf(F, "\n%s    loop depth      %d", prefix, get_irg_loop_depth(get_entity_irg(ent)));
-       }
+        fprintf(F, "\n%s  irg = %ld", prefix, get_irg_graph_nr(get_entity_irg(ent)));
+        if (get_irp_callgraph_state() == irp_callgraph_and_calltree_consistent) {
+          fprintf(F, "\n%s    recursion depth %d", prefix, get_irg_recursion_depth(get_entity_irg(ent)));
+          fprintf(F, "\n%s    loop depth      %d", prefix, get_irg_loop_depth(get_entity_irg(ent)));
+        }
       } else {
-       fprintf(F, "\n%s  irg = NULL", prefix);
+             fprintf(F, "\n%s  irg = NULL", prefix);
       }
     }
     fprintf(F, "\n");
   }
 
   if (verbosity & dump_verbosity_accessStats) {
+#if 0
     int n_acc = get_entity_n_accesses(ent);
-    int L_freq[MY_SIZE];
+    int max_depth = 0;
     int max_L_freq = -1;
-    int S_freq[MY_SIZE];
     int max_S_freq = -1;
-    int LA_freq[MY_SIZE];
     int max_LA_freq = -1;
-    int SA_freq[MY_SIZE];
     int max_SA_freq = -1;
-    for (i = 0; i < MY_SIZE; ++i) {
-      L_freq[i] = 0;
-      LA_freq[i] = 0;
-      S_freq[i] = 0;
-      SA_freq[i] = 0;
+    int *L_freq;
+    int *S_freq;
+    int *LA_freq;
+    int *SA_freq;
+
+    /* Find maximal depth */
+    for (i = 0; i < n_acc; ++i) {
+      ir_node *acc = get_entity_access(ent, i);
+      int depth = get_weighted_loop_depth(acc);
+      max_depth = (depth > max_depth) ? depth : max_depth ;
     }
 
+    L_freq = xcalloc(4 * max_depth, sizeof(L_freq[0]));
+
+    S_freq  = L_freq + 1*max_depth;
+    LA_freq = L_freq + 2*max_depth;
+    SA_freq = L_freq + 3*max_depth;
+
     for (i = 0; i < n_acc; ++i) {
       ir_node *acc = get_entity_access(ent, i);
       int depth = get_weighted_loop_depth(acc);
-      assert(depth < MY_SIZE);
+      assert(depth < max_depth);
       if ((get_irn_op(acc) == op_Load) || (get_irn_op(acc) == op_Call)) {
-       L_freq[depth]++;
-       max_L_freq = (depth > max_L_freq) ? depth : max_L_freq;
-       if (addr_is_alloc(acc)) {
-         LA_freq[depth]++;
-         max_LA_freq = (depth > max_LA_freq) ? depth : max_LA_freq;
-       }
+           L_freq[depth]++;
+           max_L_freq = (depth > max_L_freq) ? depth : max_L_freq;
+           if (addr_is_alloc(acc)) {
+             LA_freq[depth]++;
+             max_LA_freq = (depth > max_LA_freq) ? depth : max_LA_freq;
+           }
       } else if (get_irn_op(acc) == op_Store) {
-       S_freq[depth]++;
-       max_S_freq = (depth > max_S_freq) ? depth : max_S_freq;
-       if (addr_is_alloc(acc)) {
-         SA_freq[depth]++;
-         max_SA_freq = (depth > max_SA_freq) ? depth : max_SA_freq;
-       }
+           S_freq[depth]++;
+           max_S_freq = (depth > max_S_freq) ? depth : max_S_freq;
+           if (addr_is_alloc(acc)) {
+             SA_freq[depth]++;
+             max_SA_freq = (depth > max_SA_freq) ? depth : max_SA_freq;
+           }
       } else {
-       assert(0);
+           assert(0);
       }
     }
 
     if (max_L_freq >= 0) {
-      fprintf(F, "%s  Load  Stats", prefix);
       char comma = ':';
+
+      fprintf(F, "%s  Load  Stats", prefix);
       for (i = 0; i <= max_L_freq; ++i) {
-       if (L_freq[i])
-         fprintf(F, "%c %d x  L%d", comma, L_freq[i], i);
-       else
-         fprintf(F, "         ");
-       comma = ',';
+           if (L_freq[i])
+             fprintf(F, "%c %d x  L%d", comma, L_freq[i], i);
+           else
+             fprintf(F, "         ");
+           comma = ',';
       }
       fprintf(F, "\n");
     }
@@ -261,23 +576,24 @@ void    dump_entity_to_file_prefix (FILE *F, entity *ent, char *prefix, unsigned
       //fprintf(F, "%s  LoadA Stats", prefix);
       char comma = ':';
       for (i = 0; i <= max_LA_freq; ++i) {
-       //if (LA_freq[i])
-         //fprintf(F, "%c %d x LA%d", comma, LA_freq[i], i);
-         //else
-         //fprintf(F, "         ");
-       comma = ',';
+           //if (LA_freq[i])
+             //fprintf(F, "%c %d x LA%d", comma, LA_freq[i], i);
+             //else
+             //fprintf(F, "         ");
+           comma = ',';
       }
       fprintf(F, "\n");
     }
     if (max_S_freq >= 0) {
-      fprintf(F, "%s  Store Stats", prefix);
       char comma = ':';
+
+      fprintf(F, "%s  Store Stats", prefix);
       for (i = 0; i <= max_S_freq; ++i) {
-       if (S_freq[i])
-         fprintf(F, "%c %d x  S%d", comma, S_freq[i], i);
-       else
-         fprintf(F, "         ");
-       comma = ',';
+           if (S_freq[i])
+             fprintf(F, "%c %d x  S%d", comma, S_freq[i], i);
+           else
+             fprintf(F, "         ");
+           comma = ',';
       }
       fprintf(F, "\n");
     }
@@ -285,14 +601,27 @@ void    dump_entity_to_file_prefix (FILE *F, entity *ent, char *prefix, unsigned
       //fprintf(F, "%s  StoreAStats", prefix);
       char comma = ':';
       for (i = 0; i <= max_SA_freq; ++i) {
-       //if (SA_freq[i])
-         //fprintf(F, "%c %d x SA%d", comma, SA_freq[i], i);
-       //else
-         //fprintf(F, "         ");
-       comma = ',';
+           //if (SA_freq[i])
+             //fprintf(F, "%c %d x SA%d", comma, SA_freq[i], i);
+           //else
+             //fprintf(F, "         ");
+           comma = ',';
       }
       fprintf(F, "\n");
     }
+
+    /* free allocated space */
+    free(L_freq);
+#endif
+    if (get_trouts_state() != outs_none) {
+      if (is_Method_type(get_entity_type(ent))) {
+       fprintf(F, "%s  Estimated #Calls:    %lf\n", prefix, get_entity_estimated_n_calls(ent));
+       fprintf(F, "%s  Estimated #dynCalls: %lf\n", prefix, get_entity_estimated_n_calls(ent));
+      } else {
+       fprintf(F, "%s  Estimated #Loads:  %lf\n", prefix, get_entity_estimated_n_loads(ent));
+       fprintf(F, "%s  Estimated #Stores: %lf\n", prefix, get_entity_estimated_n_stores(ent));
+      }
+    }
   }
 
 }
@@ -309,92 +638,133 @@ void dump_entity (entity *ent) {
 
 void    dump_entitycsv_to_file_prefix (FILE *F, entity *ent, char *prefix, unsigned verbosity,
                                       int *max_disp, int disp[], const char *comma) {
-  int i;
+
+#if 0   /* Outputs loop depth of all occurences. */
   int n_acc = get_entity_n_accesses(ent);
-  int L_freq[MY_SIZE];
   int max_L_freq = -1;
-  int S_freq[MY_SIZE];
   int max_S_freq = -1;
-  int LA_freq[MY_SIZE];
   int max_LA_freq = -1;
-  int SA_freq[MY_SIZE];
   int max_SA_freq = -1;
-  for (i = 0; i < MY_SIZE; ++i) {
-    L_freq[i] = 0;
-    LA_freq[i] = 0;
-    S_freq[i] = 0;
-    SA_freq[i] = 0;
+  int *L_freq;
+  int *S_freq;
+  int *LA_freq;
+  int *SA_freq;
+  int i, max_depth = 0;
+
+  /* Find maximal depth */
+  for (i = 0; i < n_acc; ++i) {
+    ir_node *acc = get_entity_access(ent, i);
+    int depth = get_weighted_loop_depth(acc);
+    max_depth = (depth > max_depth) ? depth : max_depth ;
   }
 
+  L_freq = xcalloc(4 * (max_depth+1), sizeof(L_freq[0]));
+
+  S_freq  = L_freq + 1*max_depth;
+  LA_freq = L_freq + 2*max_depth;
+  SA_freq = L_freq + 3*max_depth;
+
   for (i = 0; i < n_acc; ++i) {
     ir_node *acc = get_entity_access(ent, i);
     int depth = get_weighted_loop_depth(acc);
-    assert(depth < MY_SIZE);
+    assert(depth <= max_depth);
     if ((get_irn_op(acc) == op_Load) || (get_irn_op(acc) == op_Call)) {
       L_freq[depth]++;
       max_L_freq = (depth > max_L_freq) ? depth : max_L_freq;
       if (addr_is_alloc(acc)) {
-       LA_freq[depth]++;
-       max_LA_freq = (depth > max_LA_freq) ? depth : max_LA_freq;
+           LA_freq[depth]++;
+           max_LA_freq = (depth > max_LA_freq) ? depth : max_LA_freq;
       }
       if (get_entity_allocation(ent) == allocation_static) {
-       disp[depth]++;
-       *max_disp = (depth > *max_disp) ? depth : *max_disp;
+           disp[depth]++;
+           *max_disp = (depth > *max_disp) ? depth : *max_disp;
       }
     } else if (get_irn_op(acc) == op_Store) {
       S_freq[depth]++;
       max_S_freq = (depth > max_S_freq) ? depth : max_S_freq;
       if (addr_is_alloc(acc)) {
-       SA_freq[depth]++;
-       max_SA_freq = (depth > max_SA_freq) ? depth : max_SA_freq;
+           SA_freq[depth]++;
+           max_SA_freq = (depth > max_SA_freq) ? depth : max_SA_freq;
       }
       if (get_entity_allocation(ent) == allocation_static) {
-       assert(0);
+           assert(0);
       }
     } else {
       assert(0);
     }
   }
 
-  if (get_entity_allocation(ent) == allocation_static) return;
+  if (get_entity_allocation(ent) != allocation_static) {
 
-  fprintf(F, "%s_%s", get_type_name(get_entity_owner(ent)), get_entity_name(ent));
+    fprintf(F, "%s_%s", get_type_name(get_entity_owner(ent)), get_entity_name(ent));
 
-  if (max_L_freq >= 0) {
-    fprintf(F, "%s Load", comma);
-    for (i = 0; i <= max_L_freq; ++i) {
-      fprintf(F, "%s %d", comma, L_freq[i]);
+    if (max_L_freq >= 0) {
+      fprintf(F, "%s Load", comma);
+      for (i = 0; i <= max_L_freq; ++i) {
+        fprintf(F, "%s %d", comma, L_freq[i]);
+      }
+    }
+    if (max_S_freq >= 0) {
+      if (max_L_freq >= 0)    fprintf(F, "\n%s_%s", get_type_name(get_entity_owner(ent)), get_entity_name(ent));
+      fprintf(F, "%s Store", comma);
+      for (i = 0; i <= max_S_freq; ++i) {
+        fprintf(F, "%s %d", comma, S_freq[i]);
+      }
     }
+    fprintf(F, "\n");
   }
-  if (max_S_freq >= 0) {
-    if (max_L_freq >= 0)    fprintf(F, "\n%s_%s", get_type_name(get_entity_owner(ent)), get_entity_name(ent));
-    fprintf(F, "%s Store", comma);
-    for (i = 0; i <= max_S_freq; ++i) {
-      fprintf(F, "%s %d", comma, S_freq[i]);
+  free(L_freq);
+#endif
+
+  if (get_entity_allocation(ent) != allocation_static) {
+    if (is_Method_type(get_entity_type(ent))) return;
+
+    /* Output the entity name. */
+    fprintf(F, "%s%-40s ", prefix, get_entity_ld_name(ent));
+
+    if (get_trouts_state() != outs_none) {
+      if (is_Method_type(get_entity_type(ent))) {
+       //fprintf(F, "%s  Estimated #Calls:    %lf\n", prefix, get_entity_estimated_n_calls(ent));
+       //fprintf(F, "%s  Estimated #dynCalls: %lf\n", prefix, get_entity_estimated_n_calls(ent));
+      } else {
+       fprintf(F, "%6.2lf ", get_entity_estimated_n_loads(ent));
+       fprintf(F, "%6.2lf", get_entity_estimated_n_stores(ent));
+      }
     }
+
+    fprintf(F, "\n");
   }
-  fprintf(F, "\n");
 }
 
 /* A fast hack to dump a csv. */
 void dump_typecsv_to_file(FILE *F, type *tp, dump_verbosity verbosity, const char *comma) {
-  if (!is_class_type(tp)) return;
+  int i;
+  char buf[1024 + 10];
+  if (!is_Class_type(tp)) return;   // we also want array types. Stupid, these are classes in java.
 
   if (verbosity & dump_verbosity_accessStats) {
-    int i, n_all = get_type_n_allocations(tp);
-    int freq[MY_SIZE];
+
+#if 0      /* Outputs loop depth of all occurences. */
     int max_freq = -1;
-    int disp[MY_SIZE];   /* Accumulated accesses to static members: dispatch table. */
     int max_disp = -1;
-    for (i = 0; i < MY_SIZE; ++i) {
-      freq[i] = 0;
-      disp[i] = 0;
+    int *freq, *disp; /* Accumulated accesses to static members: dispatch table. */
+    int n_all = get_type_n_allocs(tp);
+    int max_depth = 0;
+    /* Find maximal depth */
+    for (i = 0; i < n_all; ++i) {
+      ir_node *all = get_type_alloc(tp, i);
+      int depth = get_weighted_loop_depth(all);
+      max_depth = (depth > max_depth) ? depth : max_depth ;
     }
 
+    freq = xcalloc(2 * (max_depth+1), sizeof(freq[0]));
+
+    disp = freq + max_depth;
+
     for (i = 0; i < n_all; ++i) {
-      ir_node *all = get_type_allocation(tp, i);
+      ir_node *all = get_type_alloc(tp, i);
       int depth = get_weighted_loop_depth(all);
-      assert(depth < MY_SIZE);
+      assert(depth <= max_depth);
       freq[depth]++;
       max_freq = (depth > max_freq) ? depth : max_freq;
       assert(get_irn_op(all) == op_Alloc);
@@ -405,40 +775,64 @@ void dump_typecsv_to_file(FILE *F, type *tp, dump_verbosity verbosity, const cha
 
     if (max_freq >= 0) {
       for (i = 0; i <= max_freq; ++i) {
-       fprintf(F, "%s %d", comma, freq[i]);
+           fprintf(F, "%s %d", comma, freq[i]);
       }
     }
     fprintf(F, "\n");
 
     for (i = 0; i < get_class_n_members(tp); ++i) {
       entity *mem = get_class_member(tp, i);
-      if (((verbosity & dump_verbosity_methods) &&  is_method_type(get_entity_type(mem))) ||
-         ((verbosity & dump_verbosity_fields)  && !is_method_type(get_entity_type(mem)))   ) {
-       dump_entitycsv_to_file_prefix(F, mem, "    ", verbosity, &max_disp, disp, comma);
+      if (((verbosity & dump_verbosity_methods) &&  is_Method_type(get_entity_type(mem))) ||
+         ((verbosity & dump_verbosity_fields)  && !is_Method_type(get_entity_type(mem)))   ) {
+       if (!((verbosity & dump_verbosity_nostatic) && (get_entity_allocation(mem) == allocation_static))) {
+         dump_entitycsv_to_file_prefix(F, mem, "    ", verbosity, &max_disp, disp, comma);
+       }
       }
     }
 
     if (max_disp >= 0) {
       fprintf(F, "%s__disp_tab%s Load", get_type_name(tp), comma);
       for (i = 0; i <= max_disp; ++i) {
-       fprintf(F, "%s %d", comma, disp[i]);
+             fprintf(F, "%s %d", comma, disp[i]);
       }
       fprintf(F, "\n");
     }
+
+    /* free allocated space */
+    free(freq);
+#endif
+
+#define DISP_TAB_SUFFIX "__disp_tab"
+    if (get_trouts_state() != outs_none) {
+      assert(strlen(get_type_name(tp)) < 1024);
+      fprintf(F, "%-44s %6.2lf  -1.00\n", get_type_name(tp), get_type_estimated_n_instances(tp));
+      sprintf(buf, "%s%s", get_type_name(tp), DISP_TAB_SUFFIX);
+      fprintf(F, "%-44s %6.2lf   0.00\n", buf, get_class_estimated_n_dyncalls(tp));
+    }
+
+    for (i = 0; i < get_class_n_members(tp); ++i) {
+      entity *mem = get_class_member(tp, i);
+      if (((verbosity & dump_verbosity_methods) &&  is_Method_type(get_entity_type(mem))) ||
+         ((verbosity & dump_verbosity_fields)  && !is_Method_type(get_entity_type(mem)))   ) {
+       if (!((verbosity & dump_verbosity_nostatic) && (get_entity_allocation(mem) == allocation_static))) {
+         dump_entitycsv_to_file_prefix(F, mem, "    ", verbosity, NULL, 0, 0);
+       }
+      }
+    }
   }
 }
 
 void dump_type_to_file (FILE *F, type *tp, dump_verbosity verbosity) {
   int i;
 
-  if ((is_class_type(tp))       && (verbosity & dump_verbosity_noClassTypes)) return;
-  if ((is_struct_type(tp))      && (verbosity & dump_verbosity_noStructTypes)) return;
-  if ((is_union_type(tp))       && (verbosity & dump_verbosity_noUnionTypes)) return;
-  if ((is_array_type(tp))       && (verbosity & dump_verbosity_noArrayTypes)) return;
-  if ((is_pointer_type(tp))     && (verbosity & dump_verbosity_noPointerTypes)) return;
-  if ((is_method_type(tp))      && (verbosity & dump_verbosity_noMethodTypes)) return;
-  if ((is_primitive_type(tp))   && (verbosity & dump_verbosity_noPrimitiveTypes)) return;
-  if ((is_enumeration_type(tp)) && (verbosity & dump_verbosity_noEnumerationTypes)) return;
+  if ((is_Class_type(tp))       && (verbosity & dump_verbosity_noClassTypes)) return;
+  if ((is_Struct_type(tp))      && (verbosity & dump_verbosity_noStructTypes)) return;
+  if ((is_Union_type(tp))       && (verbosity & dump_verbosity_noUnionTypes)) return;
+  if ((is_Array_type(tp))       && (verbosity & dump_verbosity_noArrayTypes)) return;
+  if ((is_Pointer_type(tp))     && (verbosity & dump_verbosity_noPointerTypes)) return;
+  if ((is_Method_type(tp))      && (verbosity & dump_verbosity_noMethodTypes)) return;
+  if ((is_Primitive_type(tp))   && (verbosity & dump_verbosity_noPrimitiveTypes)) return;
+  if ((is_Enumeration_type(tp)) && (verbosity & dump_verbosity_noEnumerationTypes)) return;
 
   fprintf(F, "%s type %s (%ld)", get_tpop_name(get_type_tpop(tp)), get_type_name(tp), get_type_nr(tp));
   if (verbosity & dump_verbosity_onlynames) { fprintf(F, "\n"); return; }
@@ -451,21 +845,23 @@ void dump_type_to_file (FILE *F, type *tp, dump_verbosity verbosity) {
     }
     for (i = 0; i < get_class_n_members(tp); ++i) {
       entity *mem = get_class_member(tp, i);
-      if (((verbosity & dump_verbosity_methods) &&  is_method_type(get_entity_type(mem))) ||
-         ((verbosity & dump_verbosity_fields)  && !is_method_type(get_entity_type(mem)))   ) {
-       dump_entity_to_file_prefix(F, mem, "    ", verbosity);
+      if (((verbosity & dump_verbosity_methods) &&  is_Method_type(get_entity_type(mem))) ||
+         ((verbosity & dump_verbosity_fields)  && !is_Method_type(get_entity_type(mem)))   ) {
+       if (!((verbosity & dump_verbosity_nostatic) && (get_entity_allocation(mem) == allocation_static))) {
+         dump_entity_to_file_prefix(F, mem, "    ", verbosity);
+       }
       }
     }
     if (verbosity & dump_verbosity_typeattrs) {
       fprintf(F, "  supertypes: ");
       for (i = 0; i < get_class_n_supertypes(tp); ++i) {
-       type *stp = get_class_supertype(tp, i);
-       fprintf(F, "\n    %s", get_type_name(stp));
+             type *stp = get_class_supertype(tp, i);
+             fprintf(F, "\n    %s", get_type_name(stp));
       }
       fprintf(F, "\n  subtypes: ");
       for (i = 0; i < get_class_n_subtypes(tp); ++i) {
-       type *stp = get_class_subtype(tp, i);
-       fprintf(F, "\n    %s", get_type_name(stp));
+             type *stp = get_class_subtype(tp, i);
+             fprintf(F, "\n    %s", get_type_name(stp));
       }
 
       fprintf(F, "\n  peculiarity: %s", get_peculiarity_string(get_class_peculiarity(tp)));
@@ -478,18 +874,68 @@ void dump_type_to_file (FILE *F, type *tp, dump_verbosity verbosity) {
     for (i = 0; i < get_compound_n_members(tp); ++i) {
       entity *mem = get_compound_member(tp, i);
       if (verbosity & dump_verbosity_fields) {
-       dump_entity_to_file_prefix(F, mem, "    ", verbosity);
+             dump_entity_to_file_prefix(F, mem, "    ", verbosity);
+      }
+    }
+    break;
+
+  case tpo_array:
+    if (verbosity & dump_verbosity_typeattrs) {
+      int i, n_dim;
+      type *elem_tp = get_array_element_type(tp);
+
+      fprintf(F, "\n  array ");
+
+      n_dim = get_array_n_dimensions(tp);
+      for (i = 0; i < n_dim; ++i) {
+        ir_node *lower, *upper;
+
+        lower = get_array_lower_bound(tp, i);
+        upper = get_array_upper_bound(tp, i);
+
+        fprintf(F, "[");
+
+        if (get_irn_op(lower) == op_Const)
+          fprintf(F, "%ld .. ", get_tarval_long(get_Const_tarval(lower)));
+        else {
+          dump_node_opcode(F, lower);
+          fprintf(F, " %ld .. ", get_irn_node_nr(lower));
+        }
+
+        if (get_irn_op(upper) == op_Const)
+          fprintf(F, "%ld]", get_tarval_long(get_Const_tarval(lower)));
+        else {
+          dump_node_opcode(F, upper);
+          fprintf(F, " %ld]", get_irn_node_nr(upper));
+        }
+      }
+      fprintf(F, " of <%s (%ld)>", get_type_name(elem_tp), get_type_nr(elem_tp));
+
+      fprintf(F, "\n  order: ");
+      for (i = 0; i < n_dim; ++i)
+        fprintf(F, "<%d>", get_array_order(tp, i));
+
+      fprintf(F, "\n");
+
+      if (verbosity & dump_verbosity_fields) {
+        dump_entity_to_file_prefix(F, get_array_element_entity(tp),
+                                   "    ", verbosity);
       }
     }
     break;
 
-  case tpo_pointer: {
+  case tpo_pointer:
     if (verbosity & dump_verbosity_typeattrs) {
       type *tt = get_pointer_points_to_type(tp);
       fprintf(F, "\n  points to %s (%ld)", get_type_name(tt), get_type_nr(tt));
     }
+    break;
 
-  } break;
+  case tpo_primitive:
+  case tpo_id:
+  case tpo_none:
+  case tpo_unknown:
+    break;
 
   default:
     if (verbosity & dump_verbosity_typeattrs) {
@@ -497,30 +943,61 @@ void dump_type_to_file (FILE *F, type *tp, dump_verbosity verbosity) {
     }
   }
 
+  fprintf(F, "  state:     %s,\n", get_type_state_name(get_type_state(tp)));
+  fprintf(F, "  size:      %2d Bits,\n",  get_type_size_bits(tp));
+  fprintf(F, "  alignment: %2d Bits,\n",  get_type_alignment_bits(tp));
+  if (is_atomic_type(tp))
+    fprintf(F, "  mode:      %s,\n",  get_mode_name(get_type_mode(tp)));
+  fprintf(F, "  dbg info:  %p,",  (void *)get_type_dbg_info(tp));
+
   if (verbosity & dump_verbosity_accessStats) {
-    int n_all = get_type_n_allocations(tp);
-    int freq[MY_SIZE];
+#if 0
+    int n_all = get_type_n_allocs(tp);
+    int max_depth = 0;
     int max_freq = -1;
-    for (i = 0; i < MY_SIZE; ++i) freq[i] = 0;
+    int *freq;
+
+    /* Find maximal depth */
+    for (i = 0; i < n_all; ++i) {
+      ir_node *all = get_type_alloc(tp, i);
+      int depth = get_weighted_loop_depth(all);
+      max_depth = (depth > max_depth) ? depth : max_depth ;
+    }
+
+    freq = xcalloc(max_depth+1, sizeof(freq[0]));
 
     for (i = 0; i < n_all; ++i) {
-      ir_node *all = get_type_allocation(tp, i);
+      ir_node *all = get_type_alloc(tp, i);
       int depth = get_weighted_loop_depth(all);
-      assert(depth < MY_SIZE);
+      assert(depth <= max_depth);
       freq[depth]++;
       max_freq = (depth > max_freq) ? depth : max_freq;
       assert(get_irn_op(all) == op_Alloc);
     }
 
     if (max_freq >= 0) {
-      fprintf(F, "  Alloc Stats");
       char comma = ':';
+
+      fprintf(F, "  Alloc Stats");
       for (i = 0; i <= max_freq; ++i) {
-       fprintf(F, "%c %d x A%d", comma, freq[i], i);
-       comma = ',';
+           fprintf(F, "%c %d x A%d", comma, freq[i], i);
+           comma = ',';
       }
       fprintf(F, "\n");
     }
+
+    free(freq);
+#endif
+    if (get_trouts_state() != outs_none) {
+      fprintf(F, "  Estimated #Instances: %lf\n", get_type_estimated_n_instances(tp));
+      if (is_Class_type(tp)) {
+       fprintf(F, "  Estimated #dyn Calls: %lf\n", get_class_estimated_n_dyncalls(tp));
+       fprintf(F, "  Estimated #Upcasts:   %lf (#CastOps: %d)\n", get_class_estimated_n_upcasts(tp), get_class_n_upcasts(tp));
+       fprintf(F, "  Estimated #Downcasts: %lf (#CastOps: %d)\n", get_class_estimated_n_downcasts(tp), get_class_n_downcasts(tp));
+       assert(get_class_n_upcasts(tp) + get_class_n_downcasts(tp) == get_type_n_casts(tp));
+      }
+    }
+
   }
 
   fprintf(F, "\n\n");
@@ -530,55 +1007,10 @@ void dump_type(type *tp) {
   dump_type_to_file (stdout, tp, dump_verbosity_max);
 }
 
-/* Just opens a file, mangling a file name.
- *
- * The name consists of the following parts:
- *
- * @arg basename  The basis of the name telling about the content.
- * @arg
- *
- */
-
-static FILE *text_open (const char *basename, const char * suffix1, const char *suffix2, const char *suffix3) {
-  FILE *F;
-  int len = strlen(basename), i, j;
-  char *fname;  /* filename to put the vcg information in */
-
-  if (!basename) assert(basename);
-  if (!suffix1) suffix1 = "";
-  if (!suffix2) suffix2 = "";
-  if (!suffix3) suffix3 = ".txt";
-
-  /* open file for vcg graph */
-  fname = malloc (strlen(basename)*2 + strlen(suffix1) + strlen(suffix2) + 5); /* *2: space for excapes. */
-
-  j = 0;
-  for (i = 0; i < len; ++i) {  /* replase '/' in the name: escape by @. */
-    if (basename[i] == '/') {
-      fname[j] = '@'; j++; fname[j] = '1'; j++;
-    } else if (basename[i] == '@') {
-      fname[j] = '@'; j++; fname[j] = '2'; j++;
-    } else {
-      fname[j] = basename[i]; j++;
-    }
-  }
-  fname[j] = '\0';
-  strcat (fname, suffix1);  /* append file suffix */
-  strcat (fname, suffix2);  /* append file suffix */
-  strcat (fname, suffix3);  /* append the .txt suffix */
-
-  F = fopen (fname, "w");   /* open file for writing */
-  if (!F) {
-    assert(0);
-  }
-  free(fname);
-
-  return F;
-}
 
 void dump_types_as_text(unsigned verbosity, const char *suffix) {
   const char *basename;
-  FILE *F, *CSV;
+  FILE *F, *CSV = NULL;
   int i, n_types = get_irp_n_types();
 
   basename = irp_prog_name_is_set() ? get_irp_prog_name() : "TextTypes";
@@ -592,14 +1024,42 @@ void dump_types_as_text(unsigned verbosity, const char *suffix) {
   for (i = 0; i < n_types; ++i) {
     type *t = get_irp_type(i);
 
-    if (is_jack_rts_class(t)) continue;
+    //if (is_jack_rts_class(t)) continue;
 
     dump_type_to_file(F, t, verbosity);
-    if (verbosity & dump_verbosity_csv) {
+    if (CSV) {
       dump_typecsv_to_file(CSV, t, verbosity, "");
     }
   }
 
   fclose (F);
-  if (verbosity & dump_verbosity_csv) fclose (CSV);
+  if (CSV) fclose (CSV);
+}
+
+
+void dump_globals_as_text(unsigned verbosity, const char *suffix) {
+  const char *basename;
+  FILE *F, *CSV = NULL;
+  type *g = get_glob_type();
+  int i, n_mems = get_class_n_members(g);
+
+  basename = irp_prog_name_is_set() ? get_irp_prog_name() : "TextGlobals";
+  F = text_open (basename, suffix, "-globals", ".txt");
+
+  if (verbosity & dump_verbosity_csv) {
+    CSV = text_open (basename, suffix, "-types", ".csv");
+    //fprintf(CSV, "Class, Field, Operation, L0, L1, L2, L3\n");
+  }
+
+  for (i = 0; i < n_mems; ++i) {
+    entity *e = get_class_member(g, i);
+
+    dump_entity_to_file(F, e, verbosity);
+    if (CSV) {
+      //dump_entitycsv_to_file_prefix(CSV, e, "", verbosity, ""???);
+    }
+  }
+
+  fclose (F);
+  if (CSV) fclose (CSV);
 }