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