removed C99 constructs
[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
35 #include "field_temperature.h"
36
37 #define MY_SIZE 1024     /* Size of an array that actually should be computed. */
38
39 int dump_node_opcode(FILE *F, ir_node *n); /* from irdump.c */
40
41
42 /* Just opens a file, mangling a file name.
43  *
44  * The name consists of the following parts:
45  *
46  * @arg basename  The basis of the name telling about the content.
47  * @arg
48  *
49  */
50 static FILE *text_open (const char *basename, const char * suffix1, const char *suffix2, const char *suffix3) {
51   FILE *F;
52   int len = strlen(basename), i, j;
53   char *fname;  /* filename to put the vcg information in */
54
55   if (!basename) assert(basename);
56   if (!suffix1) suffix1 = "";
57   if (!suffix2) suffix2 = "";
58   if (!suffix3) suffix3 = ".txt";
59
60   /* open file for vcg graph */
61   fname = malloc (strlen(basename)*2 + strlen(suffix1) + strlen(suffix2) + 5); /* *2: space for excapes. */
62
63   j = 0;
64   for (i = 0; i < len; ++i) {  /* replase '/' in the name: escape by @. */
65     if (basename[i] == '/') {
66       fname[j] = '@'; j++; fname[j] = '1'; j++;
67     } else if (basename[i] == '@') {
68       fname[j] = '@'; j++; fname[j] = '2'; j++;
69     } else {
70       fname[j] = basename[i]; j++;
71     }
72   }
73   fname[j] = '\0';
74   strcat (fname, suffix1);  /* append file suffix */
75   strcat (fname, suffix2);  /* append file suffix */
76   strcat (fname, suffix3);  /* append the .txt suffix */
77
78   F = fopen (fname, "w");   /* open file for writing */
79   if (!F) {
80     assert(0);
81   }
82   free(fname);
83
84   return F;
85 }
86
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   if (opt_dump_pointer_values_to_info)
96     fprintf (F, "  addr:    %p \n", (void *)n);
97   fprintf (F, "  mode:    %s\n", get_mode_name(get_irn_mode(n)));
98   fprintf (F, "  visited: %ld \n", get_irn_visited(n));
99   irg = get_irn_irg(n);
100   if (irg != get_const_code_irg())
101     fprintf (F, "  irg:     %s\n", get_ent_dump_name(get_irg_entity(irg)));
102
103   if (get_irn_pinned(n) == op_pin_state_floats &&
104       get_irg_pinned(get_irn_irg(n)) == op_pin_state_floats) {
105     fprintf(F, "  node was pinned in ");
106     dump_node_opcode(F, get_nodes_block(n));
107     fprintf(F, " %ld\n", get_irn_node_nr(get_nodes_block(n)));
108   }
109
110   fprintf(F, "  arity:   %d\n", get_irn_intra_arity(n));
111   /* show all predecessor nodes */
112   fprintf(F, "  pred nodes: \n");
113   if (!is_Block(n)) {
114     fprintf(F, "    -1:    ");
115     dump_node_opcode(F, get_nodes_block(n));
116     fprintf(F, " %ld\n", get_irn_node_nr(get_nodes_block(n)));
117   }
118   for ( i = 0; i < get_irn_intra_arity(n); ++i) {
119     fprintf(F, "     %d: %s ", i, is_intra_backedge(n, i) ? "be" : "  ");
120     dump_node_opcode(F, get_irn_intra_n(n, i));
121     fprintf(F, " %ld\n", get_irn_node_nr(get_irn_intra_n(n, i)));
122   }
123
124   fprintf(F, "  Private Attributes:\n");
125
126   if ((get_irp_ip_view_state() != ip_view_no)
127       && (get_irn_opcode(n) == iro_Filter || get_irn_opcode(n) == iro_Block)) {
128     fprintf(F, "  inter arity: %d", get_irn_inter_arity(n));
129     fprintf(F, "  inter pred nodes: \n");
130     for ( i = 0; i < get_irn_inter_arity(n); ++i) {
131       fprintf(F, "     %d: %s ", i, is_intra_backedge(n, i) ? "be" : "  ");
132       dump_node_opcode(F, get_irn_inter_n(n, i));
133       fprintf(F, " %ld\n", get_irn_node_nr(get_irn_inter_n(n, i)));
134     }
135   }
136
137   if (is_fragile_op(n)) {
138     fprintf(F, "  pinned state: %s\n", get_op_pin_state_name(get_irn_pinned(n)));
139     /* not dumped: frag array */
140   }
141
142   /* This is not nice, output it as a marker in the predecessor list. */
143   if ((get_irn_op(n) == op_Block) ||
144       (get_irn_op(n) == op_Phi) ||
145       ((get_irn_op(n) == op_Filter) && get_interprocedural_view())) {
146     fprintf(F, "  backedges:");
147     comma = ' ';
148     for (i = 0; i < get_irn_arity(n); i++)
149       if (is_backedge(n, i)) { fprintf(F, "%c %d", comma, i); comma = ','; }
150     fprintf(F, "\n");
151   }
152
153   /* Loop node   Someone else please tell me what's wrong ...
154   if (get_irn_loop(n)) {
155     ir_loop *loop = get_irn_loop(n);
156     assert(loop);
157     fprintf(F, " in loop %d with depth %d\n",
158         get_loop_loop_nr(loop), get_loop_depth(loop));
159   }
160   */
161
162   /* Source types */
163   switch (get_irn_opcode(n)) {
164   case iro_Block: {
165     fprintf(F, "  block visited: %ld", get_Block_block_visited(n));
166     fprintf(F, "  dominator info: not implemented\n");
167     /* not dumped: graph_arr */
168     /* not dumped: mature    */
169   }  break;
170   case iro_Start: {
171     type *tp = get_entity_type(get_irg_entity(get_irn_irg(n)));
172     fprintf(F, "  start of method of type %s \n", get_type_name_ex(tp, &bad));
173     for (i = 0; i < get_method_n_params(tp); ++i)
174       fprintf(F, "    param %d type: %s \n", i, get_type_name_ex(get_method_param_type(tp, i), &bad));
175     if ((get_irp_ip_view_state() == ip_view_valid) && !get_interprocedural_view()) {
176       ir_node *sbl = get_nodes_block(n);
177       int i, n_cfgpreds = get_Block_cg_n_cfgpreds(sbl);
178       fprintf(F, "  graph has %d interprocedural predecessors:\n", n_cfgpreds);
179       for (i = 0; i < n_cfgpreds; ++i) {
180         ir_node *cfgpred = get_Block_cg_cfgpred(sbl, i);
181         fprintf(F, "    %d: Call %ld in graph %s\n", i, get_irn_node_nr(cfgpred),
182                 get_irg_dump_name(get_irn_irg(cfgpred)));
183       }
184     }
185   } break;
186   case iro_Cond: {
187     fprintf(F, "  condition kind: %s\n",  get_Cond_kind(n) == dense ? "dense" : "fragmentary");
188     fprintf(F, "  default ProjNr: %ld\n", get_Cond_defaultProj(n));
189   } break;
190   case iro_Alloc: {
191     fprintf(F, "  allocating entity of type: %s \n", get_type_name_ex(get_Alloc_type(n), &bad));
192     fprintf(F, "  allocating on: the %s\n", (get_Alloc_where(n) == stack_alloc) ? "stack" : "heap");
193   } break;
194   case iro_Free: {
195     fprintf(F, "  freeing entity of type %s \n", get_type_name_ex(get_Free_type(n), &bad));
196   } break;
197   case iro_Sel: {
198     entity *ent = get_Sel_entity(n);
199
200     if (ent) {
201       fprintf(F, "  Selecting entity of type %s\n", get_type_name_ex(get_entity_type(ent), &bad));
202       fprintf(F, "    from entity of type %s\n", get_type_name_ex(get_entity_owner(ent), &bad));
203     }
204     else {
205       fprintf(F, "  <NULL entity>\n");
206       bad = 1;
207     }
208   } break;
209   case iro_Call: {
210     type *tp = get_Call_type(n);
211     fprintf(F, "  calling method of type %s \n", get_type_name_ex(tp, &bad));
212     if(get_unknown_type() != tp) {
213       for (i = 0; i < get_method_n_params(tp); ++i)
214         fprintf(F, "    param %d type: %s \n", i, get_type_name_ex(get_method_param_type(tp, i), &bad));
215       for (i = 0; i < get_method_n_ress(tp); ++i)
216         fprintf(F, "    resul %d type: %s \n", i, get_type_name_ex(get_method_res_type(tp, i), &bad));
217     }
218     if (Call_has_callees(n)) {
219       fprintf(F, "  possible callees: \n");
220       for (i = 0; i < get_Call_n_callees(n); i++) {
221         fprintf(F, "    %d: %s\n", i, get_ent_dump_name(get_Call_callee(n, i)));
222       }
223     }
224   } break;
225   case iro_CallBegin: {
226     ir_node *call = get_CallBegin_call(n);
227     fprintf(F, "  Call: %ld\n", get_irn_node_nr(call));
228     if (Call_has_callees(call)) {
229       fprintf(F, "  possible callees: \n");
230       for (i = 0; i < get_Call_n_callees(call); i++) {
231         fprintf(F, "    %d: %s\n", i, get_ent_dump_name(get_Call_callee(call, i)));
232       }
233     }
234   } break;
235   case iro_Cast: {
236     fprintf(F, "  cast to type: %s\n", get_type_name_ex(get_Cast_type(n), &bad));
237   } break;
238   case iro_Return: {
239     if (!get_interprocedural_view()) {
240       type *tp = get_entity_type(get_irg_entity(get_irn_irg(n)));
241       fprintf(F, "  return in method of type %s \n", get_type_name_ex(tp, &bad));
242       for (i = 0; i < get_method_n_ress(tp); ++i)
243         fprintf(F, "    res %d type: %s \n", i, get_type_name_ex(get_method_res_type(tp, i), &bad));
244     }
245   } break;
246   case iro_Const: {
247     type *tp = get_Const_type(n);
248     assert(tp != none_type);
249     fprintf(F, "  Const of type %s \n", get_type_name_ex(get_Const_type(n), &bad));
250   } break;
251   case iro_SymConst: {
252     switch(get_SymConst_kind(n)) {
253     case symconst_addr_name:
254       fprintf(F, "  kind: addr_name\n");
255       fprintf(F, "  name: %s\n", get_id_str(get_SymConst_name(n)));
256       break;
257     case symconst_addr_ent:
258       fprintf(F, "  kind:   addr_ent\n");
259       fprintf(F, "  entity: ");
260       dump_entity_to_file(F, get_SymConst_entity(n), dump_verbosity_onlynames);
261       break;
262     case symconst_type_tag:
263       fprintf(F, "  kind: type_tag\n");
264       fprintf(F, "  type: ");
265       dump_type_to_file(F, get_SymConst_type(n), dump_verbosity_onlynames);
266       break;
267     case symconst_size:
268       fprintf(F, "  kind: size\n");
269       fprintf(F, "  type: ");
270       dump_type_to_file(F, get_SymConst_type(n), dump_verbosity_onlynames);
271       break;
272     }
273     fprintf(F, "  type of value: %s \n", get_type_name_ex(get_SymConst_value_type(n), &bad));
274   } break;
275   case iro_Load:
276     fprintf(F, "  mode of loaded value: %s\n", get_mode_name_ex(get_Load_mode(n), &bad));
277     fprintf(F, "  volatility: %s\n", get_volatility_name(get_Load_volatility(n)));
278     break;
279   case iro_Store:
280     fprintf(F, "  volatility: %s\n", get_volatility_name(get_Store_volatility(n)));
281     break;
282   case iro_Confirm:
283     fprintf(F, "  compare operation: %s\n", get_pnc_string(get_Confirm_cmp(n)));
284     break;
285
286   default: ;
287   }
288
289   if (get_irg_typeinfo_state(get_irn_irg(n)) == irg_typeinfo_consistent  ||
290       get_irg_typeinfo_state(get_irn_irg(n)) == irg_typeinfo_inconsistent  )
291     if (get_irn_typeinfo_type(n) != none_type)
292       fprintf (F, "  Analysed type: %s\n", get_type_name_ex(get_irn_typeinfo_type(n), &bad));
293
294   return bad;
295 }
296
297
298
299 void dump_irnode(ir_node *n) {
300   dump_irnode_to_file(stdout, n);
301 }
302
303
304 void dump_graph_to_file(FILE *F, ir_graph *irg) {
305   fprintf(F, "graph %s\n", get_irg_dump_name(irg));
306 }
307
308 void dump_graph(ir_graph *g) {
309   dump_graph_to_file(stdout, g);
310 }
311
312 static void dump_node_to_graph_file(ir_node *n, void *env) {
313   FILE *F = (FILE *)env;
314
315   dump_irnode_to_file(F, n);
316   fprintf(F, "\n");
317 }
318
319 void dump_graph_as_text(ir_graph *irg, const char *suffix) {
320   const char *basename = get_irg_dump_name(irg);
321   FILE *F;
322
323   F = text_open (basename, suffix, "", ".txt");
324
325   dump_graph_to_file(F, irg);
326   fprintf(F, "\n\n");
327   irg_walk_graph (irg, NULL, dump_node_to_graph_file, F);
328
329   fclose (F);
330 }
331
332
333 int addr_is_alloc(ir_node *acc) {
334   ir_node *addr = NULL;
335   opcode addr_op;
336   if (is_memop(acc)) {
337     addr = get_memop_ptr(acc);
338   } else {
339     assert(get_irn_op(acc) == op_Call);
340     addr = get_Call_ptr(acc);
341   }
342
343   addr_op = get_irn_opcode(addr);
344
345   while (addr_op != iro_Alloc) {
346
347     switch (addr_op) {
348     case iro_Sel:
349       addr = get_Sel_ptr(addr);
350       break;
351     case iro_Cast:
352       addr = get_Cast_op(addr);
353       break;
354     case iro_Proj:
355       addr = get_Proj_pred(addr);
356       break;
357     case iro_SymConst:
358     case iro_Const:
359       return 0;
360       break;
361     case iro_Phi:
362     case iro_Load:
363     case iro_Call:
364     case iro_Start:
365       return 0;
366       break;
367
368     default:
369       DDMN(addr);
370       assert(0 && "unexpected address node");
371     }
372     addr_op = get_irn_opcode(addr);
373   }
374
375   /* In addition, the alloc must be in the same loop. */
376
377   return 1;
378 }
379
380 #define X(a)    case a: fprintf(F, #a); break
381 void    dump_entity_to_file_prefix (FILE *F, entity *ent, char *prefix, unsigned verbosity) {
382   int i, j;
383   type *owner, *type;
384
385   assert(is_entity(ent));
386   owner = get_entity_owner(ent);
387   type  = get_entity_type(ent);
388   if (verbosity & dump_verbosity_onlynames) {
389     fprintf(F, "%sentity %s.%s (%ld)\n", prefix, get_type_name(get_entity_owner(ent)),
390             get_entity_name(ent), get_entity_nr(ent));
391     return;
392   }
393
394   if (verbosity & dump_verbosity_entattrs) {
395     fprintf(F, "%sentity %s (%ld)\n", prefix, get_entity_name(ent), get_entity_nr(ent));
396     fprintf(F, "%s  type:  %s (%ld)\n", prefix, get_type_name(type),  get_type_nr(type));
397     fprintf(F, "%s  owner: %s (%ld)\n", prefix, get_type_name(owner), get_type_nr(owner));
398
399     if (is_class_type(get_entity_owner(ent))) {
400       if (get_entity_n_overwrites(ent) > 0) {
401             fprintf(F, "%s  overwrites:\n", prefix);
402             for (i = 0; i < get_entity_n_overwrites(ent); ++i) {
403               entity *ov = get_entity_overwrites(ent, i);
404               fprintf(F, "%s    %d: %s of class %s\n", prefix, i, get_entity_name(ov),
405                       get_type_name(get_entity_owner(ov)));
406             }
407       } else {
408             fprintf(F, "%s  Does not overwrite other entities. \n", prefix);
409       }
410       if (get_entity_n_overwrittenby(ent) > 0) {
411             fprintf(F, "%s  overwritten by:\n", prefix);
412             for (i = 0; i < get_entity_n_overwrittenby(ent); ++i) {
413               entity *ov = get_entity_overwrittenby(ent, i);
414               fprintf(F, "%s    %d: %s of class %s\n", prefix, i, get_entity_name(ov),
415                       get_type_name(get_entity_owner(ov)));
416         }
417       } else {
418             fprintf(F, "%s  Is not overwritten by other entities. \n", prefix);
419       }
420     }
421
422     fprintf(F, "%s  allocation:  ", prefix);
423     switch (get_entity_allocation(ent)) {
424       X(allocation_dynamic);
425       X(allocation_automatic);
426       X(allocation_static);
427       X(allocation_parameter);
428     }
429
430     fprintf(F, "\n%s  visibility:  ", prefix);
431     switch (get_entity_visibility(ent)) {
432       X(visibility_local);
433       X(visibility_external_visible);
434       X(visibility_external_allocated);
435     }
436
437     fprintf(F, "\n%s  variability: ", prefix);
438     switch (get_entity_variability(ent)) {
439       X(variability_uninitialized);
440       X(variability_initialized);
441       X(variability_part_constant);
442       X(variability_constant);
443     }
444     fprintf(F, "\n");
445   } else {  /* no entattrs */
446     fprintf(F, "%s(%3d) %*s: %s", prefix,
447             get_entity_offset_bits(ent), -40, get_type_name(get_entity_type(ent)), get_entity_name(ent));
448     if (is_method_type(get_entity_type(ent))) fprintf(F, "(...)");
449
450     if (verbosity & dump_verbosity_accessStats) {
451       if (get_entity_allocation(ent) == allocation_static) fprintf(F, " (stat)");
452       if (get_entity_peculiarity(ent) == peculiarity_description) fprintf(F, " (desc)");
453       if (get_entity_peculiarity(ent) == peculiarity_inherited)   fprintf(F, " (inh)");
454     }
455     fprintf(F, "\n");
456   }
457
458   if (verbosity & dump_verbosity_entconsts) {
459     if (get_entity_variability(ent) != variability_uninitialized) {
460       if (is_atomic_entity(ent)) {
461         fprintf(F, "%s  atomic value: ", prefix);
462         dump_node_opcode(F, get_atomic_ent_value(ent));
463       } else {
464         fprintf(F, "%s  compound values:", prefix);
465         for (i = 0; i < get_compound_ent_n_values(ent); ++i) {
466           compound_graph_path *path = get_compound_ent_value_path(ent, i);
467           entity *ent0 = get_compound_graph_path_node(path, 0);
468           fprintf(F, "\n%s    %3d ", prefix, get_entity_offset_bits(ent0));
469           if (get_type_state(type) == layout_fixed)
470             fprintf(F, "(%3d) ",   get_compound_ent_value_offset_bits(ent, i));
471           fprintf(F, "%s", get_entity_name(ent0));
472           for (j = 0; j < get_compound_graph_path_length(path); ++j) {
473             entity *node = get_compound_graph_path_node(path, j);
474             fprintf(F, ".%s", get_entity_name(node));
475             if (is_array_type(get_entity_owner(node)))
476               fprintf(F, "[%d]", get_compound_graph_path_array_index(path, j));
477           }
478           fprintf(F, "\t = ");
479           dump_node_opcode(F, get_compound_ent_value(ent, i));
480         }
481       }
482       fprintf(F, "\n");
483     }
484   }
485
486   if (verbosity & dump_verbosity_entattrs) {
487     fprintf(F, "%s  volatility:  ", prefix);
488     switch (get_entity_volatility(ent)) {
489       X(volatility_non_volatile);
490       X(volatility_is_volatile);
491     }
492
493     fprintf(F, "\n%s  peculiarity: %s", prefix, get_peculiarity_string(get_entity_peculiarity(ent)));
494     fprintf(F, "\n%s  ld_name: %s", prefix, ent->ld_name ? get_entity_ld_name(ent) : "no yet set");
495     fprintf(F, "\n%s  offset:  %d", prefix, get_entity_offset_bits(ent));
496     if (is_method_type(get_entity_type(ent))) {
497       if (get_entity_irg(ent))   /* can be null */ {
498         fprintf(F, "\n%s  irg = %ld", prefix, get_irg_graph_nr(get_entity_irg(ent)));
499         if (get_irp_callgraph_state() == irp_callgraph_and_calltree_consistent) {
500           fprintf(F, "\n%s    recursion depth %d", prefix, get_irg_recursion_depth(get_entity_irg(ent)));
501           fprintf(F, "\n%s    loop depth      %d", prefix, get_irg_loop_depth(get_entity_irg(ent)));
502         }
503       } else {
504         fprintf(F, "\n%s  irg = NULL", prefix);
505       }
506     }
507     fprintf(F, "\n");
508   }
509
510   if (verbosity & dump_verbosity_accessStats) {
511     int n_acc = get_entity_n_accesses(ent);
512     int max_depth = 0;
513     int max_L_freq = -1;
514     int max_S_freq = -1;
515     int max_LA_freq = -1;
516     int max_SA_freq = -1;
517     int *L_freq;
518     int *S_freq;
519     int *LA_freq;
520     int *SA_freq;
521
522     /* Find maximal depth */
523     for (i = 0; i < n_acc; ++i) {
524       ir_node *acc = get_entity_access(ent, i);
525       int depth = get_weighted_loop_depth(acc);
526       max_depth = (depth > max_depth) ? depth : max_depth ;
527     }
528
529     L_freq = xmalloc(sizeof(*L_freq) * 4 * max_depth);
530     memset(L_freq, 0, sizeof(*L_freq) * 4 * max_depth);
531
532     S_freq  = L_freq + 1*max_depth;
533     LA_freq = L_freq + 2*max_depth;
534     SA_freq = L_freq + 3*max_depth;
535
536     for (i = 0; i < n_acc; ++i) {
537       ir_node *acc = get_entity_access(ent, i);
538       int depth = get_weighted_loop_depth(acc);
539       assert(depth < max_depth);
540       if ((get_irn_op(acc) == op_Load) || (get_irn_op(acc) == op_Call)) {
541             L_freq[depth]++;
542             max_L_freq = (depth > max_L_freq) ? depth : max_L_freq;
543             if (addr_is_alloc(acc)) {
544               LA_freq[depth]++;
545               max_LA_freq = (depth > max_LA_freq) ? depth : max_LA_freq;
546             }
547       } else if (get_irn_op(acc) == op_Store) {
548             S_freq[depth]++;
549             max_S_freq = (depth > max_S_freq) ? depth : max_S_freq;
550             if (addr_is_alloc(acc)) {
551               SA_freq[depth]++;
552               max_SA_freq = (depth > max_SA_freq) ? depth : max_SA_freq;
553             }
554       } else {
555             assert(0);
556       }
557     }
558
559     if (max_L_freq >= 0) {
560       char comma = ':';
561
562       fprintf(F, "%s  Load  Stats", prefix);
563       for (i = 0; i <= max_L_freq; ++i) {
564             if (L_freq[i])
565               fprintf(F, "%c %d x  L%d", comma, L_freq[i], i);
566             else
567               fprintf(F, "         ");
568             comma = ',';
569       }
570       fprintf(F, "\n");
571     }
572     if (max_LA_freq >= 0) {
573       //fprintf(F, "%s  LoadA Stats", prefix);
574       char comma = ':';
575       for (i = 0; i <= max_LA_freq; ++i) {
576             //if (LA_freq[i])
577               //fprintf(F, "%c %d x LA%d", comma, LA_freq[i], i);
578               //else
579               //fprintf(F, "         ");
580             comma = ',';
581       }
582       fprintf(F, "\n");
583     }
584     if (max_S_freq >= 0) {
585       char comma = ':';
586
587       fprintf(F, "%s  Store Stats", prefix);
588       for (i = 0; i <= max_S_freq; ++i) {
589             if (S_freq[i])
590               fprintf(F, "%c %d x  S%d", comma, S_freq[i], i);
591             else
592               fprintf(F, "         ");
593             comma = ',';
594       }
595       fprintf(F, "\n");
596     }
597     if (max_SA_freq >= 0) {
598       //fprintf(F, "%s  StoreAStats", prefix);
599       char comma = ':';
600       for (i = 0; i <= max_SA_freq; ++i) {
601             //if (SA_freq[i])
602               //fprintf(F, "%c %d x SA%d", comma, SA_freq[i], i);
603             //else
604               //fprintf(F, "         ");
605             comma = ',';
606       }
607       fprintf(F, "\n");
608     }
609
610     /* free allocated space */
611     free(L_freq);
612   }
613
614 }
615 #undef X
616
617 void    dump_entity_to_file (FILE *F, entity *ent, unsigned verbosity) {
618   dump_entity_to_file_prefix (F, ent, "", verbosity);
619   fprintf(F, "\n");
620 }
621
622 void dump_entity (entity *ent) {
623   dump_entity_to_file(stdout, ent, dump_verbosity_max);
624 }
625
626 void    dump_entitycsv_to_file_prefix (FILE *F, entity *ent, char *prefix, unsigned verbosity,
627                                        int *max_disp, int disp[], const char *comma) {
628   int i, max_depth = 0;
629   int n_acc = get_entity_n_accesses(ent);
630   int max_L_freq = -1;
631   int max_S_freq = -1;
632   int max_LA_freq = -1;
633   int max_SA_freq = -1;
634   int *L_freq;
635   int *S_freq;
636   int *LA_freq;
637   int *SA_freq;
638
639   /* Find maximal depth */
640   for (i = 0; i < n_acc; ++i) {
641     ir_node *acc = get_entity_access(ent, i);
642     int depth = get_weighted_loop_depth(acc);
643     max_depth = (depth > max_depth) ? depth : max_depth ;
644   }
645
646   L_freq = xmalloc(sizeof(*L_freq) * 4 * max_depth);
647   memset(L_freq, 0, sizeof(*L_freq) * 4 * max_depth);
648
649   S_freq  = L_freq + 1*max_depth;
650   LA_freq = L_freq + 2*max_depth;
651   SA_freq = L_freq + 3*max_depth;
652
653   for (i = 0; i < n_acc; ++i) {
654     ir_node *acc = get_entity_access(ent, i);
655     int depth = get_weighted_loop_depth(acc);
656     assert(depth < max_depth);
657     if ((get_irn_op(acc) == op_Load) || (get_irn_op(acc) == op_Call)) {
658       L_freq[depth]++;
659       max_L_freq = (depth > max_L_freq) ? depth : max_L_freq;
660       if (addr_is_alloc(acc)) {
661             LA_freq[depth]++;
662             max_LA_freq = (depth > max_LA_freq) ? depth : max_LA_freq;
663       }
664       if (get_entity_allocation(ent) == allocation_static) {
665             disp[depth]++;
666             *max_disp = (depth > *max_disp) ? depth : *max_disp;
667       }
668     } else if (get_irn_op(acc) == op_Store) {
669       S_freq[depth]++;
670       max_S_freq = (depth > max_S_freq) ? depth : max_S_freq;
671       if (addr_is_alloc(acc)) {
672             SA_freq[depth]++;
673             max_SA_freq = (depth > max_SA_freq) ? depth : max_SA_freq;
674       }
675       if (get_entity_allocation(ent) == allocation_static) {
676             assert(0);
677       }
678     } else {
679       assert(0);
680     }
681   }
682
683   if (get_entity_allocation(ent) != allocation_static) {
684
685     fprintf(F, "%s_%s", get_type_name(get_entity_owner(ent)), get_entity_name(ent));
686
687     if (max_L_freq >= 0) {
688       fprintf(F, "%s Load", comma);
689       for (i = 0; i <= max_L_freq; ++i) {
690         fprintf(F, "%s %d", comma, L_freq[i]);
691       }
692     }
693     if (max_S_freq >= 0) {
694       if (max_L_freq >= 0)    fprintf(F, "\n%s_%s", get_type_name(get_entity_owner(ent)), get_entity_name(ent));
695       fprintf(F, "%s Store", comma);
696       for (i = 0; i <= max_S_freq; ++i) {
697         fprintf(F, "%s %d", comma, S_freq[i]);
698       }
699     }
700     fprintf(F, "\n");
701   }
702   free(L_freq);
703 }
704
705 /* A fast hack to dump a csv. */
706 void dump_typecsv_to_file(FILE *F, type *tp, dump_verbosity verbosity, const char *comma) {
707   int max_freq = -1;
708   int max_disp = -1;
709   int *freq, *disp; /* Accumulated accesses to static members: dispatch table. */
710
711   if (!is_class_type(tp)) return;
712
713   if (verbosity & dump_verbosity_accessStats) {
714     int i, n_all = get_type_n_allocations(tp);
715     int max_depth = 0;
716
717     /* Find maximal depth */
718     for (i = 0; i < n_all; ++i) {
719       ir_node *all = get_type_allocation(tp, i);
720       int depth = get_weighted_loop_depth(all);
721       max_depth = (depth > max_depth) ? depth : max_depth ;
722     }
723
724     freq = xmalloc(sizeof(*freq) * 2 * max_depth);
725     memset(freq, 0, sizeof(*freq) * 2 * max_depth);
726
727     disp = freq + max_depth;
728
729     for (i = 0; i < n_all; ++i) {
730       ir_node *all = get_type_allocation(tp, i);
731       int depth = get_weighted_loop_depth(all);
732       assert(depth < max_depth);
733       freq[depth]++;
734       max_freq = (depth > max_freq) ? depth : max_freq;
735       assert(get_irn_op(all) == op_Alloc);
736     }
737
738     fprintf(F, "%s ", get_type_name(tp));
739     fprintf(F, "%s Alloc ", comma);
740
741     if (max_freq >= 0) {
742       for (i = 0; i <= max_freq; ++i) {
743             fprintf(F, "%s %d", comma, freq[i]);
744       }
745     }
746     fprintf(F, "\n");
747
748     for (i = 0; i < get_class_n_members(tp); ++i) {
749       entity *mem = get_class_member(tp, i);
750       if (((verbosity & dump_verbosity_methods) &&  is_method_type(get_entity_type(mem))) ||
751               ((verbosity & dump_verbosity_fields)  && !is_method_type(get_entity_type(mem)))   ) {
752             dump_entitycsv_to_file_prefix(F, mem, "    ", verbosity, &max_disp, disp, comma);
753       }
754     }
755
756     if (max_disp >= 0) {
757       fprintf(F, "%s__disp_tab%s Load", get_type_name(tp), comma);
758       for (i = 0; i <= max_disp; ++i) {
759             fprintf(F, "%s %d", comma, disp[i]);
760       }
761       fprintf(F, "\n");
762     }
763
764     /* free allocated space */
765     free(freq);
766   }
767 }
768
769 void dump_type_to_file (FILE *F, type *tp, dump_verbosity verbosity) {
770   int i;
771
772   if ((is_class_type(tp))       && (verbosity & dump_verbosity_noClassTypes)) return;
773   if ((is_struct_type(tp))      && (verbosity & dump_verbosity_noStructTypes)) return;
774   if ((is_union_type(tp))       && (verbosity & dump_verbosity_noUnionTypes)) return;
775   if ((is_array_type(tp))       && (verbosity & dump_verbosity_noArrayTypes)) return;
776   if ((is_pointer_type(tp))     && (verbosity & dump_verbosity_noPointerTypes)) return;
777   if ((is_method_type(tp))      && (verbosity & dump_verbosity_noMethodTypes)) return;
778   if ((is_primitive_type(tp))   && (verbosity & dump_verbosity_noPrimitiveTypes)) return;
779   if ((is_enumeration_type(tp)) && (verbosity & dump_verbosity_noEnumerationTypes)) return;
780
781   fprintf(F, "%s type %s (%ld)", get_tpop_name(get_type_tpop(tp)), get_type_name(tp), get_type_nr(tp));
782   if (verbosity & dump_verbosity_onlynames) { fprintf(F, "\n"); return; }
783
784   switch (get_type_tpop_code(tp)) {
785
786   case tpo_class:
787     if ((verbosity & dump_verbosity_methods) || (verbosity & dump_verbosity_fields)) {
788       fprintf(F, "\n  members: \n");
789     }
790     for (i = 0; i < get_class_n_members(tp); ++i) {
791       entity *mem = get_class_member(tp, i);
792       if (((verbosity & dump_verbosity_methods) &&  is_method_type(get_entity_type(mem))) ||
793               ((verbosity & dump_verbosity_fields)  && !is_method_type(get_entity_type(mem)))   ) {
794             dump_entity_to_file_prefix(F, mem, "    ", verbosity);
795       }
796     }
797     if (verbosity & dump_verbosity_typeattrs) {
798       fprintf(F, "  supertypes: ");
799       for (i = 0; i < get_class_n_supertypes(tp); ++i) {
800             type *stp = get_class_supertype(tp, i);
801             fprintf(F, "\n    %s", get_type_name(stp));
802       }
803       fprintf(F, "\n  subtypes: ");
804       for (i = 0; i < get_class_n_subtypes(tp); ++i) {
805             type *stp = get_class_subtype(tp, i);
806             fprintf(F, "\n    %s", get_type_name(stp));
807       }
808
809       fprintf(F, "\n  peculiarity: %s", get_peculiarity_string(get_class_peculiarity(tp)));
810     }
811     break;
812
813   case tpo_union:
814   case tpo_struct:
815     if (verbosity & dump_verbosity_fields) fprintf(F, "\n  members: ");
816     for (i = 0; i < get_compound_n_members(tp); ++i) {
817       entity *mem = get_compound_member(tp, i);
818       if (verbosity & dump_verbosity_fields) {
819             dump_entity_to_file_prefix(F, mem, "    ", verbosity);
820       }
821     }
822     break;
823
824   case tpo_pointer: {
825     if (verbosity & dump_verbosity_typeattrs) {
826       type *tt = get_pointer_points_to_type(tp);
827       fprintf(F, "\n  points to %s (%ld)", get_type_name(tt), get_type_nr(tt));
828     }
829
830   } break;
831
832   default:
833     if (verbosity & dump_verbosity_typeattrs) {
834       fprintf(F, ": details not implemented\n");
835     }
836   }
837
838   if (verbosity & dump_verbosity_accessStats) {
839     int n_all = get_type_n_allocations(tp);
840     int max_depth = 0;
841     int max_freq = -1;
842     int *freq;
843
844     /* Find maximal depth */
845     for (i = 0; i < n_all; ++i) {
846       ir_node *all = get_type_allocation(tp, i);
847       int depth = get_weighted_loop_depth(all);
848       max_depth = (depth > max_depth) ? depth : max_depth ;
849     }
850
851     freq = xmalloc(sizeof(*freq) * max_depth);
852     memset(freq, 0, sizeof(*freq) * max_depth);
853
854     for (i = 0; i < n_all; ++i) {
855       ir_node *all = get_type_allocation(tp, i);
856       int depth = get_weighted_loop_depth(all);
857       assert(depth < max_depth);
858       freq[depth]++;
859       max_freq = (depth > max_freq) ? depth : max_freq;
860       assert(get_irn_op(all) == op_Alloc);
861     }
862
863     if (max_freq >= 0) {
864       char comma = ':';
865
866       fprintf(F, "  Alloc Stats");
867       for (i = 0; i <= max_freq; ++i) {
868             fprintf(F, "%c %d x A%d", comma, freq[i], i);
869             comma = ',';
870       }
871       fprintf(F, "\n");
872     }
873
874     free(freq);
875   }
876
877   fprintf(F, "\n\n");
878 }
879
880 void dump_type(type *tp) {
881   dump_type_to_file (stdout, tp, dump_verbosity_max);
882 }
883
884
885 void dump_types_as_text(unsigned verbosity, const char *suffix) {
886   const char *basename;
887   FILE *F, *CSV;
888   int i, n_types = get_irp_n_types();
889
890   basename = irp_prog_name_is_set() ? get_irp_prog_name() : "TextTypes";
891   F = text_open (basename, suffix, "-types", ".txt");
892
893   if (verbosity & dump_verbosity_csv) {
894     CSV = text_open (basename, suffix, "-types", ".csv");
895     //fprintf(CSV, "Class, Field, Operation, L0, L1, L2, L3\n");
896   }
897
898   for (i = 0; i < n_types; ++i) {
899     type *t = get_irp_type(i);
900
901     if (is_jack_rts_class(t)) continue;
902
903     dump_type_to_file(F, t, verbosity);
904     if (verbosity & dump_verbosity_csv) {
905       dump_typecsv_to_file(CSV, t, verbosity, "");
906     }
907   }
908
909   fclose (F);
910   if (verbosity & dump_verbosity_csv) fclose (CSV);
911 }