dump additional graph properties for method entities
[libfirm] / ir / ir / irdumptxt.c
1 /*
2  * Project:     libFIRM
3  * File name:   ir/ir/irdumptxt.c
4  * Purpose:     Write vcg representation of firm to file.
5  * Author:      Martin Trapp, Christian Schaefer
6  * Modified by: Goetz Lindenmaier, Hubert Schmidt
7  * Created:
8  * CVS-ID:      $Id$
9  * Copyright:   (c) 1998-2003 Universität Karlsruhe
10  * Licence:     This file protected by GPL -  GNU GENERAL PUBLIC LICENSE.
11  */
12 #ifdef HAVE_CONFIG_H
13 #include "config.h"
14 #endif
15
16 #ifdef HAVE_STRING_H
17 #include <string.h>
18 #endif
19 #ifdef HAVE_STDLIB_H
20 #include <stdlib.h>
21 #endif
22
23 #include <stdarg.h>
24
25 #include "irdump_t.h"
26
27 #include "firm_common_t.h"
28
29 #include "irgraph_t.h"
30 #include "irprog_t.h"
31 #include "entity_t.h"
32 #include "trouts.h"
33 #include "irgwalk.h"
34 #include "tv_t.h"
35
36 #include "irdom.h"
37 #include "field_temperature.h"
38
39 #define MY_SIZE 1024     /* Size of an array that actually should be computed. */
40
41 /* Just opens a file, mangling a file name.
42  *
43  * The name consists of the following parts:
44  *
45  * @arg basename  The basis of the name telling about the content.
46  * @arg
47  *
48  */
49 static FILE *text_open (const char *basename, const char * suffix1, const char *suffix2, const char *suffix3) {
50   FILE *F;
51   int len = strlen(basename), i, j;
52   char *fname;  /* filename to put the vcg information in */
53
54   if (!basename) assert(basename);
55   if (!suffix1) suffix1 = "";
56   if (!suffix2) suffix2 = "";
57   if (!suffix3) suffix3 = ".txt";
58
59   /* open file for vcg graph */
60   fname = malloc (strlen(basename)*2 + strlen(suffix1) + strlen(suffix2) + 5); /* *2: space for excapes. */
61
62   j = 0;
63   for (i = 0; i < len; ++i) {  /* replace '/' in the name: escape by @. */
64     if (basename[i] == '/') {
65       fname[j] = '@'; j++; fname[j] = '1'; j++;
66     } else if (basename[i] == '@') {
67       fname[j] = '@'; j++; fname[j] = '2'; j++;
68     } else {
69       fname[j] = basename[i]; j++;
70     }
71   }
72   fname[j] = '\0';
73   strcat (fname, suffix1);  /* append file suffix */
74   strcat (fname, suffix2);  /* append file suffix */
75   strcat (fname, suffix3);  /* append the .txt suffix */
76
77   F = fopen (fname, "w");   /* open file for writing */
78   if (!F) {
79     assert(0);
80   }
81   free(fname);
82
83   return F;
84 }
85
86 int dump_irnode_to_file(FILE *F, ir_node *n) {
87   int i, bad = 0;
88   char comma;
89   ir_graph *irg;
90
91   dump_node_opcode(F, n);
92   fprintf(F, " %ld\n", get_irn_node_nr(n));
93
94   if (opt_dump_pointer_values_to_info)
95     fprintf (F, "  addr:    %p \n", (void *)n);
96   fprintf (F, "  mode:    %s\n", get_mode_name(get_irn_mode(n)));
97   fprintf (F, "  visited: %ld \n", get_irn_visited(n));
98   irg = get_irn_irg(n);
99   if (irg != get_const_code_irg())
100     fprintf (F, "  irg:     %s\n", get_ent_dump_name(get_irg_entity(irg)));
101
102   if (get_irn_pinned(n) == op_pin_state_floats &&
103       get_irg_pinned(get_irn_irg(n)) == op_pin_state_floats) {
104     fprintf(F, "  node was pinned in ");
105     dump_node_opcode(F, get_irn_n(n, -1));
106     fprintf(F, " %ld\n", get_irn_node_nr(get_irn_n(n, -1)));
107   }
108
109   fprintf(F, "  arity:   %d\n", get_irn_intra_arity(n));
110   /* show all predecessor nodes */
111   fprintf(F, "  pred nodes: \n");
112   if (!is_Block(n)) {
113     fprintf(F, "    -1:    ");
114     dump_node_opcode(F, get_irn_n(n, -1));
115     fprintf(F, " %ld\n", get_irn_node_nr(get_irn_n(n, -1)));
116   }
117   for ( i = 0; i < get_irn_intra_arity(n); ++i) {
118     fprintf(F, "     %d: %s ", i, is_intra_backedge(n, i) ? "be" : "  ");
119     dump_node_opcode(F, get_irn_intra_n(n, i));
120     fprintf(F, " %ld\n", get_irn_node_nr(get_irn_intra_n(n, i)));
121   }
122
123   fprintf(F, "  Private Attributes:\n");
124
125   if (get_irn_opcode(n) == iro_Proj)
126     fprintf(F, "  proj nr: %ld\n", get_Proj_proj(n));
127
128   if ((get_irp_ip_view_state() != ip_view_no)
129       && (get_irn_opcode(n) == iro_Filter || get_irn_opcode(n) == iro_Block)) {
130     fprintf(F, "  inter arity: %d\n", get_irn_inter_arity(n));
131     fprintf(F, "  inter pred nodes: \n");
132     for ( i = 0; i < get_irn_inter_arity(n); ++i) {
133       fprintf(F, "     %d: %s ", i, is_intra_backedge(n, i) ? "be" : "  ");
134       dump_node_opcode(F, get_irn_inter_n(n, i));
135       fprintf(F, " %ld\n", get_irn_node_nr(get_irn_inter_n(n, i)));
136     }
137   }
138
139   if (is_fragile_op(n)) {
140     fprintf(F, "  pinned state: %s\n", get_op_pin_state_name(get_irn_pinned(n)));
141     /* not dumped: frag array */
142   }
143
144   /* This is not nice, output it as a marker in the predecessor list. */
145   if ((get_irn_op(n) == op_Block) ||
146       (get_irn_op(n) == op_Phi) ||
147       ((get_irn_op(n) == op_Filter) && get_interprocedural_view())) {
148     fprintf(F, "  backedges:");
149     comma = ' ';
150     for (i = 0; i < get_irn_arity(n); i++)
151       if (is_backedge(n, i)) { fprintf(F, "%c %d", comma, i); comma = ','; }
152     fprintf(F, "\n");
153   }
154
155   /* Loop node.   Someone else please tell me what's wrong ... */
156   if (get_irn_loop(n)) {
157     ir_loop *loop = get_irn_loop(n);
158     assert(loop);
159     fprintf(F, "  in loop %d with depth %d\n",
160         get_loop_loop_nr(loop), get_loop_depth(loop));
161   }
162
163
164   /* Source types */
165   switch (get_irn_opcode(n)) {
166   case iro_Block: {
167     fprintf(F, "  block visited: %ld\n", get_Block_block_visited(n));
168     if (get_irg_dom_state(get_irn_irg(n)) != dom_none) {
169       fprintf(F, "  dom depth %d\n", get_Block_dom_depth(n));
170       fprintf(F, "  tree pre num %d\n", get_Block_dom_tree_pre_num(n));
171       fprintf(F, "  max subtree pre num %d\n", get_Block_dom_max_subtree_pre_num(n));
172     }
173
174     fprintf(F, "  Execution freqency statistics:\n");
175     if (get_irg_exec_freq_state(get_irn_irg(n)) != exec_freq_none)
176       fprintf(F, "    procedure local evaluation:   %8.2lf\n", get_irn_exec_freq(n));
177     if (get_irp_loop_nesting_depth_state() != loop_nesting_depth_none)
178       fprintf(F, "    call freqency of procedure:   %8.2lf\n",
179               get_irg_method_execution_frequency(get_irn_irg(n)));
180     if (get_irp_callgraph_state() == irp_callgraph_and_calltree_consistent)
181       fprintf(F, "    recursion depth of procedure: %8.2lf\n", (double)get_irn_recursion_depth(n));
182     if ((get_irg_exec_freq_state(get_irn_irg(n)) != exec_freq_none) &&
183         (get_irp_loop_nesting_depth_state() != loop_nesting_depth_none) &&
184         (get_irp_callgraph_state() == irp_callgraph_and_calltree_consistent))
185       fprintf(F, "    final evaluation:           **%8.2lf**\n", get_irn_final_cost(n));
186
187     /* not dumped: graph_arr */
188     /* not dumped: mature    */
189   }  break;
190   case iro_Start: {
191     type *tp = get_entity_type(get_irg_entity(get_irn_irg(n)));
192     fprintf(F, "  start of method of type %s \n", get_type_name_ex(tp, &bad));
193     for (i = 0; i < get_method_n_params(tp); ++i)
194       fprintf(F, "    param %d type: %s \n", i, get_type_name_ex(get_method_param_type(tp, i), &bad));
195     if ((get_irp_ip_view_state() == ip_view_valid) && !get_interprocedural_view()) {
196       ir_node *sbl = get_nodes_block(n);
197       int i, n_cfgpreds = get_Block_cg_n_cfgpreds(sbl);
198       fprintf(F, "  graph has %d interprocedural predecessors:\n", n_cfgpreds);
199       for (i = 0; i < n_cfgpreds; ++i) {
200         ir_node *cfgpred = get_Block_cg_cfgpred(sbl, i);
201         fprintf(F, "    %d: Call %ld in graph %s\n", i, get_irn_node_nr(cfgpred),
202                 get_irg_dump_name(get_irn_irg(cfgpred)));
203       }
204     }
205   } break;
206   case iro_Cond: {
207     fprintf(F, "  condition kind: %s\n",  get_Cond_kind(n) == dense ? "dense" : "fragmentary");
208     fprintf(F, "  default ProjNr: %ld\n", get_Cond_defaultProj(n));
209   } break;
210   case iro_Alloc: {
211     fprintf(F, "  allocating entity of type: %s \n", get_type_name_ex(get_Alloc_type(n), &bad));
212     fprintf(F, "  allocating on: the %s\n", (get_Alloc_where(n) == stack_alloc) ? "stack" : "heap");
213   } break;
214   case iro_Free: {
215     fprintf(F, "  freeing entity of type %s \n", get_type_name_ex(get_Free_type(n), &bad));
216   } break;
217   case iro_Sel: {
218     entity *ent = get_Sel_entity(n);
219     if (ent) {
220       fprintf(F, "  Selecting entity %s (%ld)\n", get_entity_name(ent), get_entity_nr(ent));
221       fprintf(F, "    of type    %s\n",  get_type_name_ex(get_entity_type(ent),  &bad));
222       fprintf(F, "    with owner %s.\n", get_type_name_ex(get_entity_owner(ent), &bad));
223     }
224     else {
225       fprintf(F, "  <NULL entity>\n");
226       bad = 1;
227     }
228   } break;
229   case iro_Call: {
230     type *tp = get_Call_type(n);
231     fprintf(F, "  calling method of type %s \n", get_type_name_ex(tp, &bad));
232     if(get_unknown_type() != tp) {
233       for (i = 0; i < get_method_n_params(tp); ++i)
234         fprintf(F, "    param %d type: %s \n", i, get_type_name_ex(get_method_param_type(tp, i), &bad));
235       for (i = 0; i < get_method_n_ress(tp); ++i)
236         fprintf(F, "    resul %d type: %s \n", i, get_type_name_ex(get_method_res_type(tp, i), &bad));
237     }
238     if (Call_has_callees(n)) {
239       fprintf(F, "  possible callees: \n");
240       for (i = 0; i < get_Call_n_callees(n); i++) {
241         fprintf(F, "    %d: %s\n", i, get_ent_dump_name(get_Call_callee(n, i)));
242       }
243     }
244   } break;
245   case iro_CallBegin: {
246     ir_node *call = get_CallBegin_call(n);
247     fprintf(F, "  Call: %ld\n", get_irn_node_nr(call));
248     if (Call_has_callees(call)) {
249       fprintf(F, "  possible callees: \n");
250       for (i = 0; i < get_Call_n_callees(call); i++) {
251         fprintf(F, "    %d: %s\n", i, get_ent_dump_name(get_Call_callee(call, i)));
252       }
253     }
254   } break;
255   case iro_Cast: {
256     fprintf(F, "  cast to type: %s\n", get_type_name_ex(get_Cast_type(n), &bad));
257   } break;
258   case iro_Return: {
259     if (!get_interprocedural_view()) {
260       type *tp = get_entity_type(get_irg_entity(get_irn_irg(n)));
261       fprintf(F, "  return in method of type %s \n", get_type_name_ex(tp, &bad));
262       for (i = 0; i < get_method_n_ress(tp); ++i)
263         fprintf(F, "    res %d type: %s \n", i, get_type_name_ex(get_method_res_type(tp, i), &bad));
264     }
265   } break;
266   case iro_Const: {
267     type *tp = get_Const_type(n);
268     assert(tp != firm_none_type);
269     fprintf(F, "  Const of type %s \n", get_type_name_ex(get_Const_type(n), &bad));
270   } break;
271   case iro_SymConst: {
272     switch(get_SymConst_kind(n)) {
273     case symconst_addr_name:
274       fprintf(F, "  kind: addr_name\n");
275       fprintf(F, "  name: %s\n", get_id_str(get_SymConst_name(n)));
276       break;
277     case symconst_addr_ent:
278       fprintf(F, "  kind:   addr_ent\n");
279       fprintf(F, "  entity: ");
280       dump_entity_to_file(F, get_SymConst_entity(n), dump_verbosity_onlynames);
281       break;
282     case symconst_type_tag:
283       fprintf(F, "  kind: type_tag\n");
284       fprintf(F, "  type: ");
285       dump_type_to_file(F, get_SymConst_type(n), dump_verbosity_onlynames);
286       break;
287     case symconst_size:
288       fprintf(F, "  kind: size\n");
289       fprintf(F, "  type: ");
290       dump_type_to_file(F, get_SymConst_type(n), dump_verbosity_onlynames);
291       break;
292     }
293     fprintf(F, "  type of value: %s \n", get_type_name_ex(get_SymConst_value_type(n), &bad));
294   } break;
295   case iro_Load:
296     fprintf(F, "  mode of loaded value: %s\n", get_mode_name_ex(get_Load_mode(n), &bad));
297     fprintf(F, "  volatility: %s\n", get_volatility_name(get_Load_volatility(n)));
298     break;
299   case iro_Store:
300     fprintf(F, "  volatility: %s\n", get_volatility_name(get_Store_volatility(n)));
301     break;
302   case iro_Confirm:
303     fprintf(F, "  compare operation: %s\n", get_pnc_string(get_Confirm_cmp(n)));
304     break;
305
306   default: ;
307   }
308
309   if (get_irg_typeinfo_state(get_irn_irg(n)) == ir_typeinfo_consistent  ||
310       get_irg_typeinfo_state(get_irn_irg(n)) == ir_typeinfo_inconsistent  )
311     if (get_irn_typeinfo_type(n) != firm_none_type)
312       fprintf (F, "  Analysed type: %s\n", get_type_name_ex(get_irn_typeinfo_type(n), &bad));
313
314   return bad;
315 }
316
317
318
319 void dump_irnode(ir_node *n) {
320   dump_irnode_to_file(stdout, n);
321 }
322
323
324 void dump_graph_to_file(FILE *F, ir_graph *irg) {
325   fprintf(F, "graph %s\n", get_irg_dump_name(irg));
326 }
327
328 void dump_graph(ir_graph *g) {
329   dump_graph_to_file(stdout, g);
330 }
331
332 static void dump_node_to_graph_file(ir_node *n, void *env) {
333   FILE *F = (FILE *)env;
334
335   dump_irnode_to_file(F, n);
336   fprintf(F, "\n");
337 }
338
339 void dump_graph_as_text(ir_graph *irg, const char *suffix) {
340   const char *basename = get_irg_dump_name(irg);
341   FILE *F;
342
343   F = text_open (basename, suffix, "", ".txt");
344
345   dump_graph_to_file(F, irg);
346   fprintf(F, "\n\n");
347   irg_walk_graph (irg, NULL, dump_node_to_graph_file, F);
348
349   fclose (F);
350 }
351
352
353 int addr_is_alloc(ir_node *acc) {
354   ir_node *addr = NULL;
355   opcode addr_op;
356   if (is_memop(acc)) {
357     addr = get_memop_ptr(acc);
358   } else {
359     assert(get_irn_op(acc) == op_Call);
360     addr = get_Call_ptr(acc);
361   }
362
363   addr_op = get_irn_opcode(addr);
364
365   while (addr_op != iro_Alloc) {
366
367     switch (addr_op) {
368     case iro_Sel:
369       addr = get_Sel_ptr(addr);
370       break;
371     case iro_Cast:
372       addr = get_Cast_op(addr);
373       break;
374     case iro_Proj:
375       addr = get_Proj_pred(addr);
376       break;
377     case iro_SymConst:
378     case iro_Const:
379       return 0;
380       break;
381     case iro_Phi:
382     case iro_Load:
383     case iro_Call:
384     case iro_Start:
385       return 0;
386       break;
387
388     default:
389       //DDMN(addr);
390       //assert(0 && "unexpected address node");
391       ;
392     }
393     addr_op = get_irn_opcode(addr);
394   }
395
396   /* In addition, the alloc must be in the same loop. */
397
398   return 1;
399 }
400
401 /** dumps something like:
402  *
403  *  "prefix"  "Name" (x): node1, ... node7,\n
404  *  "prefix"    node8, ... node15,\n
405  *  "prefix"    node16, node17\n
406  */
407 static void dump_node_list(FILE *F, firm_kind *k, char *prefix,
408                            int (*get_entity_n_nodes)(firm_kind *ent),
409                            ir_node *(*get_entity_node)(firm_kind *ent, int pos),
410                            char *name) {
411   int i, n_nodes = get_entity_n_nodes(k);
412   char *comma = "";
413
414   fprintf(F, "%s  %s (%d):", prefix, name, n_nodes);
415   for (i = 0; i < n_nodes; ++i) {
416     int rem;
417     if (i > 7 && !(i & 7)) { /* line break every eigth node. */
418       fprintf(F, ",\n%s   ", prefix);
419       comma = "";
420     }
421     fprintf(F, "%s ", comma);
422     rem = opt_dump_analysed_type_info;
423     opt_dump_analysed_type_info = 0;
424     dump_node_label(F, get_entity_node(k, i));
425     opt_dump_analysed_type_info = rem;
426     comma = ",";
427   }
428   fprintf(F, "\n");
429 }
430
431 /** dumps something like:
432  *
433  *  "prefix"  "Name" (x): node1, ... node7,\n
434  *  "prefix"    node8, ... node15,\n
435  *  "prefix"    node16, node17\n
436  */
437 static void dump_type_list(FILE *F, type *tp, char *prefix,
438                            int (*get_n_types)(type *tp),
439                            type *(*get_type)(type *tp, int pos),
440                            char *name) {
441   int i, n_nodes = get_n_types(tp);
442   char *comma = "";
443
444   fprintf(F, "%s  %s (%d):", prefix, name, n_nodes);
445   for (i = 0; i < n_nodes; ++i) {
446     if (i > 7 && !(i & 7)) { /* line break every eigth node. */
447       fprintf(F, ",\n%s   ", prefix);
448       comma = "";
449     }
450     fprintf(F, "%s %s(%ld)", comma, get_type_name(get_type(tp, i)), get_type_nr(tp));
451     //dump_type_to_file(F, get_type(tp, i), dump_verbosity_onlynames);
452     comma = ",";
453   }
454   fprintf(F, "\n");
455 }
456
457 #define X(a)    case a: fprintf(F, #a); break
458 void    dump_entity_to_file_prefix (FILE *F, entity *ent, char *prefix, unsigned verbosity) {
459   int i, j;
460   type *owner, *type;
461
462   assert(is_entity(ent));
463   owner = get_entity_owner(ent);
464   type  = get_entity_type(ent);
465   if (verbosity & dump_verbosity_onlynames) {
466     fprintf(F, "%sentity %s.%s (%ld)\n", prefix, get_type_name(get_entity_owner(ent)),
467             get_entity_name(ent), get_entity_nr(ent));
468     return;
469   }
470
471   if (verbosity & dump_verbosity_entattrs) {
472     fprintf(F, "%sentity %s (%ld)\n", prefix, get_entity_name(ent), get_entity_nr(ent));
473     fprintf(F, "%s  type:  %s (%ld)\n", prefix, get_type_name(type),  get_type_nr(type));
474     fprintf(F, "%s  owner: %s (%ld)\n", prefix, get_type_name(owner), get_type_nr(owner));
475
476     if (is_Class_type(get_entity_owner(ent))) {
477       if (get_entity_n_overwrites(ent) > 0) {
478         fprintf(F, "%s  overwrites:\n", prefix);
479         for (i = 0; i < get_entity_n_overwrites(ent); ++i) {
480                 entity *ov = get_entity_overwrites(ent, i);
481                 fprintf(F, "%s    %d: %s of class %s\n", prefix, i, get_entity_name(ov),
482                         get_type_name(get_entity_owner(ov)));
483         }
484       } else {
485         fprintf(F, "%s  Does not overwrite other entities. \n", prefix);
486       }
487       if (get_entity_n_overwrittenby(ent) > 0) {
488         fprintf(F, "%s  overwritten by:\n", prefix);
489         for (i = 0; i < get_entity_n_overwrittenby(ent); ++i) {
490                 entity *ov = get_entity_overwrittenby(ent, i);
491                 fprintf(F, "%s    %d: %s of class %s\n", prefix, i, get_entity_name(ov),
492                         get_type_name(get_entity_owner(ov)));
493         }
494       } else {
495         fprintf(F, "%s  Is not overwritten by other entities. \n", prefix);
496       }
497
498       if (get_irp_inh_transitive_closure_state() != inh_transitive_closure_none) {
499         entity *ov;
500         fprintf(F, "%s  transitive overwrites:\n", prefix);
501         for (ov = get_entity_trans_overwrites_first(ent);
502                    ov;
503                    ov = get_entity_trans_overwrites_next(ent)) {
504                 fprintf(F, "%s    : %s of class %s\n", prefix, get_entity_name(ov),
505                         get_type_name(get_entity_owner(ov)));
506         }
507         fprintf(F, "%s  transitive overwritten by:\n", prefix);
508         for (ov = get_entity_trans_overwrittenby_first(ent);
509                    ov;
510                    ov = get_entity_trans_overwrittenby_next(ent)) {
511                 fprintf(F, "%s    : %s of class %s\n", prefix, get_entity_name(ov),
512                         get_type_name(get_entity_owner(ov)));
513         }
514       }
515     }
516
517     fprintf(F, "%s  allocation:  ", prefix);
518     switch (get_entity_allocation(ent)) {
519       X(allocation_dynamic);
520       X(allocation_automatic);
521       X(allocation_static);
522       X(allocation_parameter);
523     }
524
525     fprintf(F, "\n%s  visibility:  ", prefix);
526     switch (get_entity_visibility(ent)) {
527       X(visibility_local);
528       X(visibility_external_visible);
529       X(visibility_external_allocated);
530     }
531
532     fprintf(F, "\n%s  variability: ", prefix);
533     switch (get_entity_variability(ent)) {
534       X(variability_uninitialized);
535       X(variability_initialized);
536       X(variability_part_constant);
537       X(variability_constant);
538     }
539
540     if (is_Method_type(get_entity_type(ent))) {
541       unsigned mask = get_entity_additional_properties(ent);
542
543       if (mask) {
544         fprintf(F, "\n%s  additional prop: ", prefix);
545
546         if (mask & irg_const_function)    fprintf(F, "const_function, ");
547         if (mask & irg_pure_function)     fprintf(F, "pure_function, ");
548         if (mask & irg_noreturn_function) fprintf(F, "noreturn_function, ");
549         if (mask & irg_nothrow_function)  fprintf(F, "nothrow_function, ");
550         if (mask & irg_naked_function)    fprintf(F, "naked_function, ");
551       }
552     }
553
554     fprintf(F, "\n");
555   } else {  /* no entattrs */
556     fprintf(F, "%s(%3d) %*s: %s", prefix,
557             get_entity_offset_bits(ent), -40, get_type_name(get_entity_type(ent)), get_entity_name(ent));
558     if (is_Method_type(get_entity_type(ent))) fprintf(F, "(...)");
559
560     if (verbosity & dump_verbosity_accessStats) {
561       if (get_entity_allocation(ent) == allocation_static) fprintf(F, " (stat)");
562       if (get_entity_peculiarity(ent) == peculiarity_description) fprintf(F, " (desc)");
563       if (get_entity_peculiarity(ent) == peculiarity_inherited)   fprintf(F, " (inh)");
564     }
565     fprintf(F, "\n");
566   }
567
568   if (verbosity & dump_verbosity_entconsts) {
569     if (get_entity_variability(ent) != variability_uninitialized) {
570       if (is_atomic_entity(ent)) {
571         fprintf(F, "%s  atomic value: ", prefix);
572         dump_node_opcode(F, get_atomic_ent_value(ent));
573       } else {
574         fprintf(F, "%s  compound values:", prefix);
575         for (i = 0; i < get_compound_ent_n_values(ent); ++i) {
576           compound_graph_path *path = get_compound_ent_value_path(ent, i);
577           entity *ent0 = get_compound_graph_path_node(path, 0);
578           fprintf(F, "\n%s    %3d ", prefix, get_entity_offset_bits(ent0));
579           if (get_type_state(type) == layout_fixed)
580             fprintf(F, "(%3d) ",   get_compound_ent_value_offset_bits(ent, i));
581           fprintf(F, "%s", get_entity_name(ent));
582           for (j = 0; j < get_compound_graph_path_length(path); ++j) {
583             entity *node = get_compound_graph_path_node(path, j);
584             fprintf(F, ".%s", get_entity_name(node));
585             if (is_Array_type(get_entity_owner(node)))
586               fprintf(F, "[%d]", get_compound_graph_path_array_index(path, j));
587           }
588           fprintf(F, "\t = ");
589           dump_node_opcode(F, get_compound_ent_value(ent, i));
590         }
591       }
592       fprintf(F, "\n");
593     }
594   }
595
596   if (verbosity & dump_verbosity_entattrs) {
597     fprintf(F, "%s  volatility:  ", prefix);
598     switch (get_entity_volatility(ent)) {
599       X(volatility_non_volatile);
600       X(volatility_is_volatile);
601     }
602
603     fprintf(F, "\n%s  peculiarity: %s", prefix, get_peculiarity_string(get_entity_peculiarity(ent)));
604     fprintf(F, "\n%s  ld_name: %s", prefix, ent->ld_name ? get_entity_ld_name(ent) : "no yet set");
605     fprintf(F, "\n%s  offset:  %d bits, %d bytes", prefix, get_entity_offset_bits(ent), get_entity_offset_bytes(ent));
606     if (is_Method_type(get_entity_type(ent))) {
607       if (get_entity_irg(ent))   /* can be null */ {
608         fprintf(F, "\n%s  irg = %ld", prefix, get_irg_graph_nr(get_entity_irg(ent)));
609         if (get_irp_callgraph_state() == irp_callgraph_and_calltree_consistent) {
610           fprintf(F, "\n%s    recursion depth %d", prefix, get_irg_recursion_depth(get_entity_irg(ent)));
611           fprintf(F, "\n%s    loop depth      %d", prefix, get_irg_loop_depth(get_entity_irg(ent)));
612         }
613       } else {
614               fprintf(F, "\n%s  irg = NULL", prefix);
615       }
616     }
617     fprintf(F, "\n");
618   }
619
620   if (get_trouts_state()) {
621     fprintf(F, "%s  Entity outs:\n", prefix);
622     dump_node_list(F, (firm_kind *)ent, prefix, (int(*)(firm_kind *))get_entity_n_accesses,
623                    (ir_node *(*)(firm_kind *, int))get_entity_access, "Accesses");
624     dump_node_list(F, (firm_kind *)ent, prefix, (int(*)(firm_kind *))get_entity_n_references,
625                    (ir_node *(*)(firm_kind *, int))get_entity_reference, "References");
626   }
627
628   if (verbosity & dump_verbosity_accessStats) {
629 #if 0
630     int n_acc = get_entity_n_accesses(ent);
631     int max_depth = 0;
632     int max_L_freq = -1;
633     int max_S_freq = -1;
634     int max_LA_freq = -1;
635     int max_SA_freq = -1;
636     int *L_freq;
637     int *S_freq;
638     int *LA_freq;
639     int *SA_freq;
640
641     /* Find maximal depth */
642     for (i = 0; i < n_acc; ++i) {
643       ir_node *acc = get_entity_access(ent, i);
644       int depth = get_weighted_loop_depth(acc);
645       max_depth = (depth > max_depth) ? depth : max_depth ;
646     }
647
648     L_freq = xcalloc(4 * max_depth, sizeof(L_freq[0]));
649
650     S_freq  = L_freq + 1*max_depth;
651     LA_freq = L_freq + 2*max_depth;
652     SA_freq = L_freq + 3*max_depth;
653
654     for (i = 0; i < n_acc; ++i) {
655       ir_node *acc = get_entity_access(ent, i);
656       int depth = get_weighted_loop_depth(acc);
657       assert(depth < max_depth);
658       if ((get_irn_op(acc) == op_Load) || (get_irn_op(acc) == op_Call)) {
659         L_freq[depth]++;
660         max_L_freq = (depth > max_L_freq) ? depth : max_L_freq;
661         if (addr_is_alloc(acc)) {
662                 LA_freq[depth]++;
663                 max_LA_freq = (depth > max_LA_freq) ? depth : max_LA_freq;
664         }
665       } else if (get_irn_op(acc) == op_Store) {
666         S_freq[depth]++;
667         max_S_freq = (depth > max_S_freq) ? depth : max_S_freq;
668         if (addr_is_alloc(acc)) {
669                 SA_freq[depth]++;
670                 max_SA_freq = (depth > max_SA_freq) ? depth : max_SA_freq;
671         }
672       } else {
673         assert(0);
674       }
675     }
676
677     if (max_L_freq >= 0) {
678       char comma = ':';
679
680       fprintf(F, "%s  Load  Stats", prefix);
681       for (i = 0; i <= max_L_freq; ++i) {
682         if (L_freq[i])
683                 fprintf(F, "%c %d x  L%d", comma, L_freq[i], i);
684         else
685                 fprintf(F, "         ");
686         comma = ',';
687       }
688       fprintf(F, "\n");
689     }
690     if (max_LA_freq >= 0) {
691       //fprintf(F, "%s  LoadA Stats", prefix);
692       char comma = ':';
693       for (i = 0; i <= max_LA_freq; ++i) {
694         //if (LA_freq[i])
695                 //fprintf(F, "%c %d x LA%d", comma, LA_freq[i], i);
696                 //else
697                 //fprintf(F, "         ");
698         comma = ',';
699       }
700       fprintf(F, "\n");
701     }
702     if (max_S_freq >= 0) {
703       char comma = ':';
704
705       fprintf(F, "%s  Store Stats", prefix);
706       for (i = 0; i <= max_S_freq; ++i) {
707         if (S_freq[i])
708                 fprintf(F, "%c %d x  S%d", comma, S_freq[i], i);
709         else
710                 fprintf(F, "         ");
711         comma = ',';
712       }
713       fprintf(F, "\n");
714     }
715     if (max_SA_freq >= 0) {
716       //fprintf(F, "%s  StoreAStats", prefix);
717       char comma = ':';
718       for (i = 0; i <= max_SA_freq; ++i) {
719         //if (SA_freq[i])
720                 //fprintf(F, "%c %d x SA%d", comma, SA_freq[i], i);
721         //else
722                 //fprintf(F, "         ");
723         comma = ',';
724       }
725       fprintf(F, "\n");
726     }
727
728     /* free allocated space */
729     free(L_freq);
730 #endif
731     if (get_trouts_state() != outs_none) {
732       if (is_Method_type(get_entity_type(ent))) {
733         fprintf(F, "%s  Estimated #Calls:    %lf\n", prefix, get_entity_estimated_n_calls(ent));
734         fprintf(F, "%s  Estimated #dynCalls: %lf\n", prefix, get_entity_estimated_n_calls(ent));
735       } else {
736         fprintf(F, "%s  Estimated #Loads:  %lf\n", prefix, get_entity_estimated_n_loads(ent));
737         fprintf(F, "%s  Estimated #Stores: %lf\n", prefix, get_entity_estimated_n_stores(ent));
738       }
739     }
740   }
741
742 }
743 #undef X
744
745 void    dump_entity_to_file (FILE *F, entity *ent, unsigned verbosity) {
746   dump_entity_to_file_prefix (F, ent, "", verbosity);
747   fprintf(F, "\n");
748 }
749
750 void dump_entity (entity *ent) {
751   dump_entity_to_file(stdout, ent, dump_verbosity_max);
752 }
753
754 void    dump_entitycsv_to_file_prefix (FILE *F, entity *ent, char *prefix, unsigned verbosity,
755                                        int *max_disp, int disp[], const char *comma) {
756
757 #if 0   /* Outputs loop depth of all occurrences. */
758   int n_acc = get_entity_n_accesses(ent);
759   int max_L_freq = -1;
760   int max_S_freq = -1;
761   int max_LA_freq = -1;
762   int max_SA_freq = -1;
763   int *L_freq;
764   int *S_freq;
765   int *LA_freq;
766   int *SA_freq;
767   int i, max_depth = 0;
768
769   /* Find maximal depth */
770   for (i = 0; i < n_acc; ++i) {
771     ir_node *acc = get_entity_access(ent, i);
772     int depth = get_weighted_loop_depth(acc);
773     max_depth = (depth > max_depth) ? depth : max_depth ;
774   }
775
776   L_freq = xcalloc(4 * (max_depth+1), sizeof(L_freq[0]));
777
778   S_freq  = L_freq + 1*max_depth;
779   LA_freq = L_freq + 2*max_depth;
780   SA_freq = L_freq + 3*max_depth;
781
782   for (i = 0; i < n_acc; ++i) {
783     ir_node *acc = get_entity_access(ent, i);
784     int depth = get_weighted_loop_depth(acc);
785     assert(depth <= max_depth);
786     if ((get_irn_op(acc) == op_Load) || (get_irn_op(acc) == op_Call)) {
787       L_freq[depth]++;
788       max_L_freq = (depth > max_L_freq) ? depth : max_L_freq;
789       if (addr_is_alloc(acc)) {
790         LA_freq[depth]++;
791         max_LA_freq = (depth > max_LA_freq) ? depth : max_LA_freq;
792       }
793       if (get_entity_allocation(ent) == allocation_static) {
794         disp[depth]++;
795         *max_disp = (depth > *max_disp) ? depth : *max_disp;
796       }
797     } else if (get_irn_op(acc) == op_Store) {
798       S_freq[depth]++;
799       max_S_freq = (depth > max_S_freq) ? depth : max_S_freq;
800       if (addr_is_alloc(acc)) {
801         SA_freq[depth]++;
802         max_SA_freq = (depth > max_SA_freq) ? depth : max_SA_freq;
803       }
804       if (get_entity_allocation(ent) == allocation_static) {
805         assert(0);
806       }
807     } else {
808       assert(0);
809     }
810   }
811
812   if (get_entity_allocation(ent) != allocation_static) {
813
814     fprintf(F, "%s_%s", get_type_name(get_entity_owner(ent)), get_entity_name(ent));
815
816     if (max_L_freq >= 0) {
817       fprintf(F, "%s Load", comma);
818       for (i = 0; i <= max_L_freq; ++i) {
819         fprintf(F, "%s %d", comma, L_freq[i]);
820       }
821     }
822     if (max_S_freq >= 0) {
823       if (max_L_freq >= 0)    fprintf(F, "\n%s_%s", get_type_name(get_entity_owner(ent)), get_entity_name(ent));
824       fprintf(F, "%s Store", comma);
825       for (i = 0; i <= max_S_freq; ++i) {
826         fprintf(F, "%s %d", comma, S_freq[i]);
827       }
828     }
829     fprintf(F, "\n");
830   }
831   free(L_freq);
832 #endif
833
834   if (get_entity_allocation(ent) != allocation_static) {
835     if (is_Method_type(get_entity_type(ent))) return;
836
837     /* Output the entity name. */
838     fprintf(F, "%s%-40s ", prefix, get_entity_ld_name(ent));
839
840     if (get_trouts_state() != outs_none) {
841       if (is_Method_type(get_entity_type(ent))) {
842         //fprintf(F, "%s  Estimated #Calls:    %lf\n", prefix, get_entity_estimated_n_calls(ent));
843         //fprintf(F, "%s  Estimated #dynCalls: %lf\n", prefix, get_entity_estimated_n_calls(ent));
844       } else {
845         fprintf(F, "%6.2lf ", get_entity_estimated_n_loads(ent));
846         fprintf(F, "%6.2lf", get_entity_estimated_n_stores(ent));
847       }
848     }
849
850     fprintf(F, "\n");
851   }
852 }
853
854 /* A fast hack to dump a csv. */
855 void dump_typecsv_to_file(FILE *F, type *tp, dump_verbosity verbosity, const char *comma) {
856   int i;
857   char buf[1024 + 10];
858   if (!is_Class_type(tp)) return;   // we also want array types. Stupid, these are classes in java.
859
860   if (verbosity & dump_verbosity_accessStats) {
861
862 #if 0      /* Outputs loop depth of all occurrences. */
863     int max_freq = -1;
864     int max_disp = -1;
865     int *freq, *disp; /* Accumulated accesses to static members: dispatch table. */
866     int n_all = get_type_n_allocs(tp);
867     int max_depth = 0;
868     /* Find maximal depth */
869     for (i = 0; i < n_all; ++i) {
870       ir_node *all = get_type_alloc(tp, i);
871       int depth = get_weighted_loop_depth(all);
872       max_depth = (depth > max_depth) ? depth : max_depth ;
873     }
874
875     freq = xcalloc(2 * (max_depth+1), sizeof(freq[0]));
876
877     disp = freq + max_depth;
878
879     for (i = 0; i < n_all; ++i) {
880       ir_node *all = get_type_alloc(tp, i);
881       int depth = get_weighted_loop_depth(all);
882       assert(depth <= max_depth);
883       freq[depth]++;
884       max_freq = (depth > max_freq) ? depth : max_freq;
885       assert(get_irn_op(all) == op_Alloc);
886     }
887
888     fprintf(F, "%s ", get_type_name(tp));
889     fprintf(F, "%s Alloc ", comma);
890
891     if (max_freq >= 0) {
892       for (i = 0; i <= max_freq; ++i) {
893             fprintf(F, "%s %d", comma, freq[i]);
894       }
895     }
896     fprintf(F, "\n");
897
898     for (i = 0; i < get_class_n_members(tp); ++i) {
899       entity *mem = get_class_member(tp, i);
900       if (((verbosity & dump_verbosity_methods) &&  is_Method_type(get_entity_type(mem))) ||
901                 ((verbosity & dump_verbosity_fields)  && !is_Method_type(get_entity_type(mem)))   ) {
902         if (!((verbosity & dump_verbosity_nostatic) && (get_entity_allocation(mem) == allocation_static))) {
903                 dump_entitycsv_to_file_prefix(F, mem, "    ", verbosity, &max_disp, disp, comma);
904         }
905       }
906     }
907
908     if (max_disp >= 0) {
909       fprintf(F, "%s__disp_tab%s Load", get_type_name(tp), comma);
910       for (i = 0; i <= max_disp; ++i) {
911               fprintf(F, "%s %d", comma, disp[i]);
912       }
913       fprintf(F, "\n");
914     }
915
916     /* free allocated space */
917     free(freq);
918 #endif
919
920 #define DISP_TAB_SUFFIX "__disp_tab"
921     if (get_trouts_state() != outs_none) {
922       assert(strlen(get_type_name(tp)) < 1024);
923       fprintf(F, "%-44s %6.2lf  -1.00\n", get_type_name(tp), get_type_estimated_n_instances(tp));
924       sprintf(buf, "%s%s", get_type_name(tp), DISP_TAB_SUFFIX);
925       fprintf(F, "%-44s %6.2lf   0.00\n", buf, get_class_estimated_n_dyncalls(tp));
926     }
927
928     for (i = 0; i < get_class_n_members(tp); ++i) {
929       entity *mem = get_class_member(tp, i);
930       if (((verbosity & dump_verbosity_methods) &&  is_Method_type(get_entity_type(mem))) ||
931                 ((verbosity & dump_verbosity_fields)  && !is_Method_type(get_entity_type(mem)))   ) {
932         if (!((verbosity & dump_verbosity_nostatic) && (get_entity_allocation(mem) == allocation_static))) {
933                 dump_entitycsv_to_file_prefix(F, mem, "    ", verbosity, NULL, 0, 0);
934         }
935       }
936     }
937   }
938 }
939
940 void dump_type_to_file (FILE *F, type *tp, dump_verbosity verbosity) {
941   int i;
942
943   if ((is_Class_type(tp))       && (verbosity & dump_verbosity_noClassTypes)) return;
944   if ((is_Struct_type(tp))      && (verbosity & dump_verbosity_noStructTypes)) return;
945   if ((is_Union_type(tp))       && (verbosity & dump_verbosity_noUnionTypes)) return;
946   if ((is_Array_type(tp))       && (verbosity & dump_verbosity_noArrayTypes)) return;
947   if ((is_Pointer_type(tp))     && (verbosity & dump_verbosity_noPointerTypes)) return;
948   if ((is_Method_type(tp))      && (verbosity & dump_verbosity_noMethodTypes)) return;
949   if ((is_Primitive_type(tp))   && (verbosity & dump_verbosity_noPrimitiveTypes)) return;
950   if ((is_Enumeration_type(tp)) && (verbosity & dump_verbosity_noEnumerationTypes)) return;
951
952   fprintf(F, "%s type %s (%ld)", get_tpop_name(get_type_tpop(tp)), get_type_name(tp), get_type_nr(tp));
953   if (verbosity & dump_verbosity_onlynames) { fprintf(F, "\n"); return; }
954
955   switch (get_type_tpop_code(tp)) {
956
957   case tpo_class:
958     if ((verbosity & dump_verbosity_methods) || (verbosity & dump_verbosity_fields)) {
959       fprintf(F, "\n  members: \n");
960     }
961     for (i = 0; i < get_class_n_members(tp); ++i) {
962       entity *mem = get_class_member(tp, i);
963       if (((verbosity & dump_verbosity_methods) &&  is_Method_type(get_entity_type(mem))) ||
964                 ((verbosity & dump_verbosity_fields)  && !is_Method_type(get_entity_type(mem)))   ) {
965         if (!((verbosity & dump_verbosity_nostatic) && (get_entity_allocation(mem) == allocation_static))) {
966                 dump_entity_to_file_prefix(F, mem, "    ", verbosity);
967         }
968       }
969     }
970     if (verbosity & dump_verbosity_typeattrs) {
971       fprintf(F, "  supertypes: ");
972       for (i = 0; i < get_class_n_supertypes(tp); ++i) {
973         type *stp = get_class_supertype(tp, i);
974         fprintf(F, "\n    %s", get_type_name(stp));
975       }
976       fprintf(F, "\n  subtypes: ");
977       for (i = 0; i < get_class_n_subtypes(tp); ++i) {
978         type *stp = get_class_subtype(tp, i);
979         fprintf(F, "\n    %s", get_type_name(stp));
980       }
981
982       if (get_irp_inh_transitive_closure_state() != inh_transitive_closure_none) {
983         type *stp;
984         fprintf(F, "\n  transitive supertypes: ");
985         for (stp = get_class_trans_supertype_first(tp);
986                    stp;
987                    stp = get_class_trans_supertype_next(tp)) {
988                 fprintf(F, "\n    %s", get_type_name(stp));
989         }
990         fprintf(F, "\n  transitive subtypes: ");
991         for (stp = get_class_trans_subtype_first(tp);
992                    stp;
993                    stp = get_class_trans_subtype_next(tp)) {
994                 fprintf(F, "\n    %s", get_type_name(stp));
995         }
996       }
997
998       fprintf(F, "\n  peculiarity: %s\n", get_peculiarity_string(get_class_peculiarity(tp)));
999
1000     }
1001     break;
1002
1003   case tpo_union:
1004   case tpo_struct:
1005     if (verbosity & dump_verbosity_fields) fprintf(F, "\n  members: ");
1006     for (i = 0; i < get_compound_n_members(tp); ++i) {
1007       entity *mem = get_compound_member(tp, i);
1008       if (verbosity & dump_verbosity_fields) {
1009               dump_entity_to_file_prefix(F, mem, "    ", verbosity);
1010       }
1011     }
1012     break;
1013
1014   case tpo_array:
1015     if (verbosity & dump_verbosity_typeattrs) {
1016       int i, n_dim;
1017       type *elem_tp = get_array_element_type(tp);
1018
1019       fprintf(F, "\n  array ");
1020
1021       n_dim = get_array_n_dimensions(tp);
1022       for (i = 0; i < n_dim; ++i) {
1023         ir_node *lower, *upper;
1024
1025         lower = get_array_lower_bound(tp, i);
1026         upper = get_array_upper_bound(tp, i);
1027
1028         fprintf(F, "[");
1029
1030         if (get_irn_op(lower) == op_Const)
1031           fprintf(F, "%ld .. ", get_tarval_long(get_Const_tarval(lower)));
1032         else {
1033           dump_node_opcode(F, lower);
1034           fprintf(F, " %ld .. ", get_irn_node_nr(lower));
1035         }
1036
1037         if (get_irn_op(upper) == op_Const)
1038           fprintf(F, "%ld]", get_tarval_long(get_Const_tarval(lower)));
1039         else {
1040           dump_node_opcode(F, upper);
1041           fprintf(F, " %ld]", get_irn_node_nr(upper));
1042         }
1043       }
1044       fprintf(F, " of <%s (%ld)>", get_type_name(elem_tp), get_type_nr(elem_tp));
1045
1046       fprintf(F, "\n  order: ");
1047       for (i = 0; i < n_dim; ++i)
1048         fprintf(F, "<%d>", get_array_order(tp, i));
1049
1050       fprintf(F, "\n");
1051
1052       if (verbosity & dump_verbosity_fields) {
1053         dump_entity_to_file_prefix(F, get_array_element_entity(tp),
1054                                    "    ", verbosity);
1055       }
1056     }
1057     break;
1058
1059   case tpo_pointer:
1060     if (verbosity & dump_verbosity_typeattrs) {
1061       type *tt = get_pointer_points_to_type(tp);
1062       fprintf(F, "\n  points to %s (%ld)\n", get_type_name(tt), get_type_nr(tt));
1063     }
1064     break;
1065
1066   case tpo_method:
1067     if (verbosity & dump_verbosity_typeattrs) {
1068       fprintf(F, "\n  variadicity: %s", get_variadicity_name(get_method_variadicity(tp)));
1069       fprintf(F, "\n  return types: %d", get_method_n_ress(tp));
1070       for (i = 0; i < get_method_n_ress(tp); ++i) {
1071         type *rtp = get_method_res_type(tp, i);
1072         fprintf(F, "\n    %s", get_type_name(rtp));
1073       }
1074
1075       fprintf(F, "\n  parameter types: %d", get_method_n_params(tp));
1076       for (i = 0; i < get_method_n_params(tp); ++i) {
1077         type *ptp = get_method_param_type(tp, i);
1078         fprintf(F, "\n    %s", get_type_name(ptp));
1079       }
1080       if (get_method_variadicity(tp)) {
1081         fprintf(F, "\n    ...");
1082       }
1083       fprintf(F, "\n");
1084     }
1085     break;
1086
1087   case tpo_primitive:
1088   case tpo_id:
1089   case tpo_none:
1090   case tpo_unknown:
1091       fprintf(F, "\n");
1092     break;
1093
1094   default:
1095     if (verbosity & dump_verbosity_typeattrs) {
1096       fprintf(F, ": details not implemented\n");
1097     }
1098   }
1099
1100   fprintf(F, "  visibility: %s,\n", get_visibility_name(get_type_visibility(tp)));
1101   fprintf(F, "  state:      %s,\n", get_type_state_name(get_type_state(tp)));
1102   fprintf(F, "  size:       %2d Bits,\n",  get_type_size_bits(tp));
1103   fprintf(F, "  alignment:  %2d Bits,\n",  get_type_alignment_bits(tp));
1104   if (is_atomic_type(tp) || is_Method_type(tp))
1105     fprintf(F, "  mode:       %s,\n",  get_mode_name(get_type_mode(tp)));
1106
1107   if (get_trouts_state()) {
1108     fprintf(F, "\n  Type outs:\n");
1109     dump_node_list(F, (firm_kind *)tp, "  ", (int(*)(firm_kind *))get_type_n_allocs,
1110                    (ir_node *(*)(firm_kind *, int))get_type_alloc, "Allocations");
1111     dump_node_list(F, (firm_kind *)tp, "  ", (int(*)(firm_kind *))get_type_n_casts,
1112                    (ir_node *(*)(firm_kind *, int))get_type_cast, "Casts");
1113     dump_type_list(F, tp, "  ", get_type_n_pointertypes_to, get_type_pointertype_to, "PointerTpsTo");
1114   }
1115
1116
1117   if (verbosity & dump_verbosity_accessStats) {
1118 #if 0
1119     int n_all = get_type_n_allocs(tp);
1120     int max_depth = 0;
1121     int max_freq = -1;
1122     int *freq;
1123
1124     /* Find maximal depth */
1125     for (i = 0; i < n_all; ++i) {
1126       ir_node *all = get_type_alloc(tp, i);
1127       int depth = get_weighted_loop_depth(all);
1128       max_depth = (depth > max_depth) ? depth : max_depth ;
1129     }
1130
1131     freq = xcalloc(max_depth+1, sizeof(freq[0]));
1132
1133     for (i = 0; i < n_all; ++i) {
1134       ir_node *all = get_type_alloc(tp, i);
1135       int depth = get_weighted_loop_depth(all);
1136       assert(depth <= max_depth);
1137       freq[depth]++;
1138       max_freq = (depth > max_freq) ? depth : max_freq;
1139       assert(get_irn_op(all) == op_Alloc);
1140     }
1141
1142     if (max_freq >= 0) {
1143       char comma = ':';
1144
1145       fprintf(F, "  Alloc Stats");
1146       for (i = 0; i <= max_freq; ++i) {
1147             fprintf(F, "%c %d x A%d", comma, freq[i], i);
1148             comma = ',';
1149       }
1150       fprintf(F, "\n");
1151     }
1152
1153     free(freq);
1154 #endif
1155     if (get_trouts_state() != outs_none) {
1156       fprintf(F, "  Estimated #Instances: %lf\n", get_type_estimated_n_instances(tp));
1157       if (is_Class_type(tp) && (get_irp_typeinfo_state() != ir_typeinfo_none)) {
1158         fprintf(F, "  Estimated #dyn Calls: %lf\n", get_class_estimated_n_dyncalls(tp));
1159         fprintf(F, "  Estimated #Upcasts:   %lf (#CastOps: %d)\n", get_class_estimated_n_upcasts(tp), get_class_n_upcasts(tp));
1160         fprintf(F, "  Estimated #Downcasts: %lf (#CastOps: %d)\n", get_class_estimated_n_downcasts(tp), get_class_n_downcasts(tp));
1161         assert(get_class_n_upcasts(tp) + get_class_n_downcasts(tp) == get_type_n_casts(tp));
1162       }
1163     }
1164
1165   }
1166
1167   fprintf(F, "\n\n");
1168 }
1169
1170 void dump_type(type *tp) {
1171   dump_type_to_file (stdout, tp, dump_verbosity_max);
1172 }
1173
1174
1175 void dump_types_as_text(unsigned verbosity, const char *suffix) {
1176   const char *basename;
1177   FILE *F, *CSV = NULL;
1178   int i, n_types = get_irp_n_types();
1179
1180   basename = irp_prog_name_is_set() ? get_irp_prog_name() : "TextTypes";
1181   F = text_open (basename, suffix, "-types", ".txt");
1182
1183   if (verbosity & dump_verbosity_csv) {
1184     CSV = text_open (basename, suffix, "-types", ".csv");
1185     //fprintf(CSV, "Class, Field, Operation, L0, L1, L2, L3\n");
1186   }
1187
1188   for (i = 0; i < n_types; ++i) {
1189     type *t = get_irp_type(i);
1190
1191     //if (is_jack_rts_class(t)) continue;
1192
1193     dump_type_to_file(F, t, verbosity);
1194     if (CSV) {
1195       dump_typecsv_to_file(CSV, t, verbosity, "");
1196     }
1197   }
1198
1199   fclose (F);
1200   if (CSV) fclose (CSV);
1201 }
1202
1203
1204 void dump_globals_as_text(unsigned verbosity, const char *suffix) {
1205   const char *basename;
1206   FILE *F, *CSV = NULL;
1207   type *g = get_glob_type();
1208   int i, n_mems = get_class_n_members(g);
1209
1210   basename = irp_prog_name_is_set() ? get_irp_prog_name() : "TextGlobals";
1211   F = text_open (basename, suffix, "-globals", ".txt");
1212
1213   if (verbosity & dump_verbosity_csv) {
1214     CSV = text_open (basename, suffix, "-types", ".csv");
1215     //fprintf(CSV, "Class, Field, Operation, L0, L1, L2, L3\n");
1216   }
1217
1218   for (i = 0; i < n_mems; ++i) {
1219     entity *e = get_class_member(g, i);
1220
1221     dump_entity_to_file(F, e, verbosity);
1222     if (CSV) {
1223       //dump_entitycsv_to_file_prefix(CSV, e, "", verbosity, ""???);
1224     }
1225   }
1226
1227   fclose (F);
1228   if (CSV) fclose (CSV);
1229 }