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