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