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