Further pushed size_t: trouts functions uses size_t now.
[libfirm] / ir / ir / irdumptxt.c
1 /*
2  * Copyright (C) 1995-2011 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 text representation of firm to file.
23  * @author  Martin Trapp, Christian Schaefer, Goetz Lindenmaier, Hubert Schmidt,
24  *          Matthias Braun
25  * @version $Id$
26  */
27 #include "config.h"
28
29 #include <string.h>
30 #include <stdlib.h>
31 #include <stdarg.h>
32 #include <stdbool.h>
33
34 #include "irdump_t.h"
35 #include "irgraph_t.h"
36
37 #include "irprog_t.h"
38 #include "entity_t.h"
39 #include "trouts.h"
40 #include "irgwalk.h"
41 #include "tv_t.h"
42 #include "vrp.h"
43 #include "irprintf.h"
44 #include "error.h"
45
46 #include "irdom.h"
47 #include "field_temperature.h"
48
49 static ir_dump_verbosity_t  verbosity = dump_verbosity_max;
50
51 void ir_set_dump_verbosity(ir_dump_verbosity_t new_verbosity)
52 {
53         verbosity = new_verbosity;
54 }
55
56 ir_dump_verbosity_t ir_get_dump_verbosity(void)
57 {
58         return verbosity;
59 }
60
61 /* Write the irnode and all its attributes to the file passed. */
62 void dump_irnode_to_file(FILE *F, ir_node *n)
63 {
64         int      i;
65         char     comma;
66         ir_graph *irg;
67         vrp_attr *vrp_info;
68
69         dump_node_opcode(F, n);
70         fprintf(F, " %ld\n", get_irn_node_nr(n));
71
72         fprintf(F, "  index: %u\n", get_irn_idx(n));
73         if (ir_get_dump_flags() & ir_dump_flag_analysed_types)
74                 fprintf (F, "  addr:    %p\n", (void *)n);
75         fprintf (F, "  mode:    %s\n", get_mode_name(get_irn_mode(n)));
76         fprintf (F, "  visited: %ld\n", get_irn_visited(n));
77         irg = get_irn_irg(n);
78         if (irg != get_const_code_irg())
79                 fprintf (F, "  irg:     %s\n", get_ent_dump_name(get_irg_entity(irg)));
80
81         if (get_irn_pinned(n) == op_pin_state_floats &&
82                 get_irg_pinned(get_irn_irg(n)) == op_pin_state_floats) {
83                 fprintf(F, "  node was pinned in ");
84                 dump_node_opcode(F, get_irn_n(n, -1));
85                 fprintf(F, " %ld\n", get_irn_node_nr(get_irn_n(n, -1)));
86         }
87
88         fprintf(F, "  arity:   %d\n", get_irn_arity(n));
89         /* show all predecessor nodes */
90         fprintf(F, "  pred nodes:\n");
91         if (!is_Block(n)) {
92                 fprintf(F, "    -1:    ");
93                 dump_node_opcode(F, get_irn_n(n, -1));
94                 fprintf(F, " %ld\n", get_irn_node_nr(get_irn_n(n, -1)));
95         }
96         for ( i = 0; i < get_irn_arity(n); ++i) {
97                 fprintf(F, "     %d: %s ", i, is_backedge(n, i) ? "be" : "  ");
98                 dump_node_opcode(F, get_irn_n(n, i));
99                 fprintf(F, " %ld\n", get_irn_node_nr(get_irn_n(n, i)));
100         }
101
102         fprintf(F, "  Private Attributes:\n");
103
104         if (is_Proj(n))
105                 fprintf(F, "  proj nr: %ld\n", get_Proj_proj(n));
106
107         if (is_fragile_op(n)) {
108                 fprintf(F, "  pinned state: %s\n", get_op_pin_state_name(get_irn_pinned(n)));
109                 /* not dumped: frag array */
110         }
111
112         /* This is not nice, output it as a marker in the predecessor list. */
113         if (is_Block(n)             ||
114             get_irn_op(n) == op_Phi) {
115                 fprintf(F, "  backedges:");
116                 comma = ' ';
117                 for (i = 0; i < get_irn_arity(n); i++)
118                         if (is_backedge(n, i)) { fprintf(F, "%c %d", comma, i); comma = ','; }
119                         fprintf(F, "\n");
120         }
121
122         /* Loop node.   Someone else please tell me what's wrong ... */
123         if (get_irg_loopinfo_state(irg) & loopinfo_valid) {
124                 ir_loop *loop = get_irn_loop(n);
125                 if (loop != NULL) {
126                         fprintf(F, "  in loop %ld with depth %u\n",
127                                 get_loop_loop_nr(loop), get_loop_depth(loop));
128                 }
129         }
130
131         /* Source types */
132         switch (get_irn_opcode(n)) {
133         case iro_Block: {
134                 if (has_Block_entity(n))
135                         fprintf(F, "  Label: %lu\n", get_entity_label(get_Block_entity(n)));
136                 fprintf(F, "  block visited: %ld\n", get_Block_block_visited(n));
137                 fprintf(F, "  block marked: %u\n", get_Block_mark(n));
138                 if (get_irg_dom_state(get_irn_irg(n)) != dom_none) {
139                         fprintf(F, "  dom depth %d\n", get_Block_dom_depth(n));
140                         fprintf(F, "  tree pre num %d\n", get_Block_dom_tree_pre_num(n));
141                         fprintf(F, "  max subtree pre num %d\n", get_Block_dom_max_subtree_pre_num(n));
142                 }
143
144                 fprintf(F, "  Execution frequency statistics:\n");
145                 if (get_irg_exec_freq_state(get_irn_irg(n)) != exec_freq_none)
146                         fprintf(F, "    procedure local evaluation:   %8.2lf\n", get_irn_exec_freq(n));
147
148                 /* not dumped: graph_arr */
149                 /* not dumped: mature    */
150         }  break;
151         case iro_Start: {
152                 size_t   i;
153                 ir_type *tp = get_entity_type(get_irg_entity(get_irn_irg(n)));
154                 ir_fprintf(F, "  start of method of type %+F\n", tp);
155                 for (i = 0; i < get_method_n_params(tp); ++i)
156                         ir_fprintf(F, "    param %d type: %+F\n", i, get_method_param_type(tp, i));
157         } break;
158         case iro_Cond: {
159                 fprintf(F, "  default ProjNr: %ld\n", get_Cond_default_proj(n));
160                 if (get_Cond_jmp_pred(n) != COND_JMP_PRED_NONE) {
161                         fprintf(F, "  jump prediction: %s\n",
162                                 get_cond_jmp_predicate_name(get_Cond_jmp_pred(n)));
163                 }
164         } break;
165         case iro_Alloc: {
166                 ir_fprintf(F, "  allocating entity of type: %+F\n", get_Alloc_type(n));
167                 fprintf(F, "  allocating on: the %s\n", (get_Alloc_where(n) == stack_alloc) ? "stack" : "heap");
168         } break;
169         case iro_Free: {
170                 ir_fprintf(F, "  freeing entity of type %+F\n", get_Free_type(n));
171                 fprintf(F, "  allocated on: the %s\n", (get_Free_where(n) == stack_alloc) ? "stack" : "heap");
172         } break;
173         case iro_Sel: {
174                 ir_entity *ent = get_Sel_entity(n);
175                 if (ent) {
176                         fprintf(F, "  Selecting entity %s (%ld)\n", get_entity_name(ent), get_entity_nr(ent));
177                         ir_fprintf(F, "    of type    %+F\n",  get_entity_type(ent));
178                         ir_fprintf(F, "    with owner %+F.\n", get_entity_owner(ent));
179                 } else {
180                         fprintf(F, "  <NULL entity>\n");
181                 }
182         } break;
183         case iro_Call: {
184                 ir_type *tp = get_Call_type(n);
185                 if (get_Call_tail_call(n))
186                         fprintf(F, "  tail call\n");
187                 ir_fprintf(F, "  calling method of type %+F\n", tp);
188                 if (get_unknown_type() != tp) {
189                         size_t i;
190                         for (i = 0; i < get_method_n_params(tp); ++i)
191                                 ir_fprintf(F, "    param %d type: %+F\n", i, get_method_param_type(tp, i));
192                         for (i = 0; i < get_method_n_ress(tp); ++i)
193                                 ir_fprintf(F, "    result %d type: %+F\n", i, get_method_res_type(tp, i));
194                 }
195                 if (Call_has_callees(n)) {
196                         fprintf(F, "  possible callees:\n");
197                         for (i = 0; i < get_Call_n_callees(n); i++) {
198                                 fprintf(F, "    %d: %s\n", i, get_ent_dump_name(get_Call_callee(n, i)));
199                         }
200                 }
201         } break;
202         case iro_Cast: {
203                 ir_fprintf(F, "  cast to type: %+F\n", get_Cast_type(n));
204         } break;
205         case iro_Cmp: {
206                 ir_relation relation = get_Cmp_relation(n);
207                 ir_fprintf(F, "  relation: %s\n", get_relation_string(relation));
208         } break;
209         case iro_Return: {
210                 size_t   i;
211                 ir_type *tp = get_entity_type(get_irg_entity(get_irn_irg(n)));
212                 ir_fprintf(F, "  return in method of type %+F\n", tp);
213                 for (i = 0; i < get_method_n_ress(tp); ++i) {
214                         ir_fprintf(F, "    result %d type: %+F\n", i,
215                                            get_method_res_type(tp, i));
216                 }
217         } break;
218         case iro_SymConst: {
219                 switch (get_SymConst_kind(n)) {
220                 case symconst_addr_ent:
221                         fprintf(F, "  kind:   addr_ent\n");
222                         fprintf(F, "  entity: ");
223                         dump_entity_to_file(F, get_SymConst_entity(n));
224                         break;
225                 case symconst_ofs_ent:
226                         fprintf(F, "  kind:   offset\n");
227                         fprintf(F, "  entity: ");
228                         dump_entity_to_file(F, get_SymConst_entity(n));
229                         break;
230                 case symconst_type_tag:
231                         fprintf(F, "  kind: type_tag\n");
232                         fprintf(F, "  type: ");
233                         dump_type_to_file(F, get_SymConst_type(n));
234                         break;
235                 case symconst_type_size:
236                         fprintf(F, "  kind: size\n");
237                         fprintf(F, "  type: ");
238                         dump_type_to_file(F, get_SymConst_type(n));
239                         break;
240                 case symconst_type_align:
241                         fprintf(F, "  kind: alignment\n");
242                         fprintf(F, "  type: ");
243                         dump_type_to_file(F, get_SymConst_type(n));
244                         break;
245                 case symconst_enum_const:
246                         fprintf(F, "  kind: enumeration\n");
247                         fprintf(F, "  name: %s\n", get_enumeration_const_name(get_SymConst_enum(n)));
248                         break;
249                 }
250         } break;
251         case iro_Load:
252                 fprintf(F, "  mode of loaded value: %s\n", get_mode_name_ex(get_Load_mode(n), NULL));
253                 fprintf(F, "  volatility: %s\n", get_volatility_name(get_Load_volatility(n)));
254                 fprintf(F, "  align: %s\n", get_align_name(get_Load_align(n)));
255                 break;
256         case iro_Store:
257                 fprintf(F, "  volatility: %s\n", get_volatility_name(get_Store_volatility(n)));
258                 fprintf(F, "  align: %s\n", get_align_name(get_Store_align(n)));
259                 break;
260         case iro_Confirm:
261                 fprintf(F, "  compare operation: %s\n", get_relation_string(get_Confirm_relation(n)));
262                 break;
263         case iro_ASM: {
264                 const ir_asm_constraint *cons;
265                 ident **clobber;
266                 int l;
267
268                 fprintf(F, "  assembler text: %s", get_id_str(get_ASM_text(n)));
269                 l = get_ASM_n_input_constraints(n);
270                 if (l > 0) {
271                         fprintf(F, "\n  inputs:  ");
272                         cons = get_ASM_input_constraints(n);
273                         for (i = 0; i < l; ++i)
274                                 fprintf(F, "%%%u %s ", cons[i].pos, get_id_str(cons[i].constraint));
275                 }
276                 l = get_ASM_n_output_constraints(n);
277                 if (l > 0) {
278                         fprintf(F, "\n  outputs: ");
279                         cons = get_ASM_output_constraints(n);
280                         for (i = 0; i < l; ++i)
281                                 fprintf(F, "%%%u %s ", cons[i].pos, get_id_str(cons[i].constraint));
282                 }
283                 l = get_ASM_n_clobbers(n);
284                 if (l > 0) {
285                         fprintf(F, "\n  clobber: ");
286                         clobber = get_ASM_clobbers(n);
287                         for (i = 0; i < l; ++i)
288                                 fprintf(F, "%s ", get_id_str(clobber[i]));
289                 }
290                 if (get_irn_pinned(n) != op_pin_state_floats)
291                         fprintf(F, "\n  volatile");
292                 fprintf(F, "\n");
293         } break;
294
295         default:
296                 break;
297         }
298
299         vrp_info = vrp_get_info(n);
300         if (vrp_info) {
301                 dump_vrp_info(F, n);
302         }
303
304         if (get_irg_typeinfo_state(get_irn_irg(n)) == ir_typeinfo_consistent  ||
305                 get_irg_typeinfo_state(get_irn_irg(n)) == ir_typeinfo_inconsistent  )
306                 if (get_irn_typeinfo_type(n) != firm_none_type)
307                         ir_fprintf (F, "  Analysed type: %s\n", get_irn_typeinfo_type(n));
308 }
309
310 void dump_graph_as_text(FILE *out, ir_graph *irg)
311 {
312         fprintf(out, "graph %s\n", get_irg_dump_name(irg));
313 }
314
315 /** dumps something like:
316  *
317  *  "prefix"  "Name" (x): node1, ... node7,\n
318  *  "prefix"    node8, ... node15,\n
319  *  "prefix"    node16, node17\n
320  */
321 static void dump_node_list(FILE *F, firm_kind *k, const char *prefix,
322                            size_t (*get_entity_n_nodes)(firm_kind *ent),
323                            ir_node *(*get_entity_node)(firm_kind *ent, size_t pos),
324                            const char *name)
325 {
326         size_t i, n_nodes = get_entity_n_nodes(k);
327         const char *comma = "";
328
329         ir_fprintf(F, "%s  %s (%zu):", prefix, name, n_nodes);
330         for (i = 0; i < n_nodes; ++i) {
331                 if (i > 7 && !(i & 7)) { /* line break every eight node. */
332                         fprintf(F, ",\n%s   ", prefix);
333                         comma = "";
334                 }
335                 fprintf(F, "%s ", comma);
336                 dump_node_label(F, get_entity_node(k, i));
337                 comma = ",";
338         }
339         fprintf(F, "\n");
340 }
341
342 /** dumps something like:
343  *
344  *  "prefix"  "Name" (x): node1, ... node7,\n
345  *  "prefix"    node8, ... node15,\n
346  *  "prefix"    node16, node17\n
347  */
348 static void dump_type_list(FILE *F, ir_type *tp, const char *prefix,
349                            size_t (*get_n_types)(const ir_type *tp),
350                            ir_type *(*get_type)(const ir_type *tp, size_t pos),
351                            const char *name)
352 {
353         size_t i, n_nodes = get_n_types(tp);
354         const char *comma = "";
355
356         ir_fprintf(F, "%s  %s (%zu):", prefix, name, n_nodes);
357         for (i = 0; i < n_nodes; ++i) {
358                 if (i > 7 && !(i & 7)) { /* line break every eight node. */
359                         fprintf(F, ",\n%s   ", prefix);
360                         comma = "";
361                 }
362                 ir_fprintf(F, "%s %+F", comma, get_type(tp, i));
363                 comma = ",";
364         }
365         fprintf(F, "\n");
366 }
367
368 static int need_nl = 1;
369
370 /**
371  * Dump initializers.
372  */
373 static void dump_ir_initializers_to_file(FILE *F, const char *prefix,
374                                          const ir_initializer_t *initializer,
375                                          ir_type *type)
376 {
377         ir_tarval *tv;
378         ir_node   *value;
379
380         if (need_nl) {
381                 fprintf(F, "\n%s    ", prefix);
382                 need_nl = 0;
383         }
384         switch (get_initializer_kind(initializer)) {
385         case IR_INITIALIZER_NULL:
386                 fprintf(F, "\t = <NOT_SET>");
387                 break;
388         case IR_INITIALIZER_TARVAL:
389                 tv = get_initializer_tarval_value(initializer);
390                 ir_fprintf(F, "\t = <TV>%F", tv);
391                 break;
392         case IR_INITIALIZER_CONST:
393                 value = get_initializer_const_value(initializer);
394                 fprintf(F, "\t = <CONST>");
395                 dump_node_opcode(F, value);
396                 break;
397         case IR_INITIALIZER_COMPOUND:
398                 if (is_Array_type(type)) {
399                         size_t i, n = get_initializer_compound_n_entries(initializer);
400                         ir_type *element_type = get_array_element_type(type);
401                         for (i = 0; i < n; ++i) {
402                                 ir_initializer_t *sub_initializer
403                                         = get_initializer_compound_value(initializer, i);
404
405                                 if (need_nl) {
406                                         fprintf(F, "\n%s    ", prefix);
407                                         need_nl = 0;
408                                 }
409                                 fprintf(F, "[%d]", (int) i);
410                                 dump_ir_initializers_to_file(F, prefix, sub_initializer, element_type);
411                         }
412                 } else {
413                         size_t i, n;
414                         assert(is_compound_type(type));
415                         n = get_compound_n_members(type);
416                         for (i = 0; i < n; ++i) {
417                                 ir_entity        *member    = get_compound_member(type, i);
418                                 ir_type          *subtype   = get_entity_type(member);
419                                 ir_initializer_t *sub_initializer;
420
421                                 assert(i < get_initializer_compound_n_entries(initializer));
422                                 sub_initializer
423                                         = get_initializer_compound_value(initializer, i);
424
425                                 if (need_nl) {
426                                         fprintf(F, "\n%s    ", prefix);
427                                         need_nl = 0;
428                                 }
429                                 ir_fprintf(F, ".%F", member);
430                                 dump_ir_initializers_to_file(F, prefix, sub_initializer, subtype);
431                         }
432                 }
433                 break;
434         default:
435                 panic("invalid ir_initializer kind found");
436         }
437         need_nl = 1;
438 }
439
440 static void dump_entity_linkage(FILE *F, const ir_entity *entity)
441 {
442         ir_linkage linkage = get_entity_linkage(entity);
443
444         if (linkage & IR_LINKAGE_CONSTANT)
445                 fprintf(F, " constant");
446         if (linkage & IR_LINKAGE_WEAK)
447                 fprintf(F, " weak");
448         if (linkage & IR_LINKAGE_GARBAGE_COLLECT)
449                 fprintf(F, " garbage_collect");
450         if (linkage & IR_LINKAGE_MERGE)
451                 fprintf(F, " merge");
452         if (linkage & IR_LINKAGE_HIDDEN_USER)
453                 fprintf(F, " hidden_user");
454 }
455
456 static void dump_entity_to_file_prefix(FILE *F, ir_entity *ent, const char *prefix)
457 {
458         ir_type *owner, *type;
459
460         assert(is_entity(ent));
461         owner = get_entity_owner(ent);
462         type  = get_entity_type(ent);
463         if (verbosity & dump_verbosity_onlynames) {
464                 fprintf(F, "%sentity %s.%s (%ld)\n", prefix, get_compound_name(get_entity_owner(ent)),
465                         get_entity_name(ent), get_entity_nr(ent));
466                 return;
467         }
468
469         if (verbosity & dump_verbosity_entattrs) {
470                 fprintf(F, "%sentity %s (%ld)\n", prefix, get_entity_name(ent), get_entity_nr(ent));
471                 ir_fprintf(F, "%s  type:  %+F\n", prefix, type);
472                 ir_fprintf(F, "%s  owner: %+F\n", prefix, owner);
473
474                 if (is_Class_type(get_entity_owner(ent))) {
475                         if (get_entity_n_overwrites(ent) > 0) {
476                                 size_t i;
477                                 fprintf(F, "%s  overwrites:\n", prefix);
478                                 for (i = 0; i < get_entity_n_overwrites(ent); ++i) {
479                                         ir_entity *ov = get_entity_overwrites(ent, i);
480                                         ir_fprintf(F, "%s    %d: %s of class %+F\n", prefix, i,
481                                                 get_entity_name(ov), get_entity_owner(ov));
482                                 }
483                         } else {
484                                 fprintf(F, "%s  Does not overwrite other entities.\n", prefix);
485                         }
486                         if (get_entity_n_overwrittenby(ent) > 0) {
487                                 size_t i;
488                                 fprintf(F, "%s  overwritten by:\n", prefix);
489                                 for (i = 0; i < get_entity_n_overwrittenby(ent); ++i) {
490                                         ir_entity *ov = get_entity_overwrittenby(ent, i);
491                                         ir_fprintf(F, "%s    %d: %s of class %+F\n", prefix, i,
492                                                    get_entity_name(ov), get_entity_owner(ov));
493                                 }
494                         } else {
495                                 fprintf(F, "%s  Is not overwritten by other entities.\n",
496                                         prefix);
497                         }
498
499                         if (get_irp_inh_transitive_closure_state() != inh_transitive_closure_none) {
500                                 ir_entity *ov;
501                                 fprintf(F, "%s  transitive overwrites:\n", prefix);
502                                 for (ov = get_entity_trans_overwrites_first(ent);
503                                 ov;
504                                 ov = get_entity_trans_overwrites_next(ent)) {
505                                         ir_fprintf(F, "%s    : %s of class %+F\n", prefix,
506                                                    get_entity_name(ov), get_entity_owner(ov));
507                                 }
508                                 fprintf(F, "%s  transitive overwritten by:\n", prefix);
509                                 for (ov = get_entity_trans_overwrittenby_first(ent);
510                                 ov;
511                                 ov = get_entity_trans_overwrittenby_next(ent)) {
512                                         ir_fprintf(F, "%s    : %s of class %+F\n", prefix,
513                                                    get_entity_name(ov), get_entity_owner(ov));
514                                 }
515                         }
516                 }
517
518                 fprintf(F, "%s  linkage:", prefix);
519                 dump_entity_linkage(F, ent);
520
521                 if (is_Method_type(get_entity_type(ent))) {
522                         unsigned mask = get_entity_additional_properties(ent);
523                         unsigned cc   = get_method_calling_convention(get_entity_type(ent));
524                         ir_graph *irg = get_entity_irg(ent);
525
526                         if (irg) {
527                                 fprintf(F, "\n%s  estimated node count: %u", prefix, get_irg_estimated_node_cnt(irg));
528                                 fprintf(F, "\n%s  maximum node index:   %u", prefix, get_irg_last_idx(irg));
529                         }
530
531                         if (mask) {
532                                 fprintf(F, "\n%s  additional prop: ", prefix);
533
534                                 if (mask & mtp_property_const)         fputs("const_function, ", F);
535                                 if (mask & mtp_property_pure)          fputs("pure_function, ", F);
536                                 if (mask & mtp_property_noreturn)      fputs("noreturn_function, ", F);
537                                 if (mask & mtp_property_nothrow)       fputs("nothrow_function, ", F);
538                                 if (mask & mtp_property_naked)         fputs("naked_function, ", F);
539                                 if (mask & mtp_property_malloc)        fputs("malloc_function, ", F);
540                                 if (mask & mtp_property_returns_twice) fputs("weak_function, ", F);
541                                 if (mask & mtp_property_intrinsic)     fputs("intrinsic_function, ", F);
542                                 if (mask & mtp_property_runtime)       fputs("runtime_function, ", F);
543                                 if (mask & mtp_property_private)       fputs("private_function, ", F);
544                                 if (mask & mtp_property_has_loop)      fputs("has_loop_function, ", F);
545                         }
546                         fprintf(F, "\n%s  calling convention: ", prefix);
547                         if (cc & cc_reg_param)           fputs("regparam, ", F);
548                         if (cc & cc_this_call)           fputs("thiscall, ", F);
549                         if (cc & cc_compound_ret)        fputs("compound_ret, ", F);
550                         if (cc & cc_frame_on_caller_stk) fputs("frame on caller's stack, ", F);
551                         cc &= ~(cc_compound_ret|cc_frame_on_caller_stk);
552                         if (IS_CDECL(cc))
553                                 fputs("cdecl", F);
554                         else if (IS_STDCALL(cc))
555                                 fputs("stdcall", F);
556                         else {
557                                 fputs(cc & cc_last_on_top      ? "last param on top, " : "first param on top, ", F);
558                                 fputs(cc & cc_callee_clear_stk ? "callee clear stack" : "caller clear stack", F);
559                         }
560                         fprintf(F, "\n%s  vtable number:        %u", prefix, get_entity_vtable_number(ent));
561                 }
562
563                 fputc('\n', F);
564         } else {  /* no entattrs */
565                 ir_fprintf(F, "%s(%3d:%d) %+F: %s", prefix,
566                         get_entity_offset(ent), get_entity_offset_bits_remainder(ent),
567                         get_entity_type(ent), get_entity_name(ent));
568                 if (is_Method_type(get_entity_type(ent))) fputs("(...)", F);
569
570                 if (verbosity & dump_verbosity_accessStats) {
571                         dump_entity_linkage(F, ent);
572                 }
573                 fputc('\n', F);
574         }
575
576         if (verbosity & dump_verbosity_entconsts) {
577                 if (ent->initializer != NULL) {
578                         const ir_initializer_t *initializer = get_entity_initializer(ent);
579                         fprintf(F, "\n%s  Initializers:", prefix);
580                         need_nl = 1;
581                         dump_ir_initializers_to_file(F, prefix, initializer, get_entity_type(ent));
582                 } else if (entity_has_compound_ent_values(ent)) {
583                         size_t i;
584                         fprintf(F, "%s  compound values:", prefix);
585                         for (i = 0; i < get_compound_ent_n_values(ent); ++i) {
586                                 size_t j;
587                                 compound_graph_path *path = get_compound_ent_value_path(ent, i);
588                                 ir_entity *ent0 = get_compound_graph_path_node(path, 0);
589                                 fprintf(F, "\n%s    %3d:%u ", prefix, get_entity_offset(ent0), get_entity_offset_bits_remainder(ent0));
590                                 if (get_type_state(type) == layout_fixed)
591                                         fprintf(F, "(%3u:%u) ",   get_compound_ent_value_offset_bytes(ent, i), get_compound_ent_value_offset_bit_remainder(ent, i));
592                                 fprintf(F, "%s", get_entity_name(ent));
593                                 for (j = 0; j < get_compound_graph_path_length(path); ++j) {
594                                         ir_entity *node = get_compound_graph_path_node(path, j);
595                                         fprintf(F, ".%s", get_entity_name(node));
596                                         if (is_Array_type(get_entity_owner(node)))
597                                                 fprintf(F, "[%ld]", get_compound_graph_path_array_index(path, j));
598                                 }
599                                 fprintf(F, "\t = ");
600                                 dump_node_opcode(F, get_compound_ent_value(ent, i));
601                         }
602                         fputc('\n', F);
603                 }
604         }
605
606         if (verbosity & dump_verbosity_entattrs) {
607                 fprintf(F, "%s  linkage:", prefix);
608                 dump_entity_linkage(F, ent);
609                 fprintf(F, "%s  volatility:  %s", prefix, get_volatility_name(get_entity_volatility(ent)));
610                 fprintf(F, "\n%s  aligned:  %s", prefix, get_align_name(get_entity_aligned(ent)));
611                 fprintf(F, "\n%s  alignment:  %u", prefix, get_entity_alignment(ent));
612                 fprintf(F, "\n%s  ld_name: %s", prefix, ent->ld_name ? get_entity_ld_name(ent) : "no yet set");
613                 fprintf(F, "\n%s  offset:  %d bytes, %d rem bits", prefix, get_entity_offset(ent), get_entity_offset_bits_remainder(ent));
614                 if (is_Method_type(get_entity_type(ent))) {
615                         if (get_entity_irg(ent))   /* can be null */ {
616                                 fprintf(F, "\n%s  irg = %ld", prefix, get_irg_graph_nr(get_entity_irg(ent)));
617                         } else {
618                                 fprintf(F, "\n%s  irg = NULL", prefix);
619                         }
620                 }
621                 fputc('\n', F);
622         }
623
624         if (get_trouts_state()) {
625                 fprintf(F, "%s  Entity outs:\n", prefix);
626                 dump_node_list(F, (firm_kind *)ent, prefix, (size_t(*)(firm_kind *))get_entity_n_accesses,
627                         (ir_node *(*)(firm_kind *, size_t))get_entity_access, "Accesses");
628                 dump_node_list(F, (firm_kind *)ent, prefix, (size_t(*)(firm_kind *))get_entity_n_references,
629                         (ir_node *(*)(firm_kind *, size_t))get_entity_reference, "References");
630         }
631 }
632
633 void dump_entity_to_file(FILE *out, ir_entity *ent)
634 {
635         dump_entity_to_file_prefix(out, ent, "");
636         fprintf(out, "\n");
637 }
638
639 void dump_type_to_file(FILE *F, ir_type *tp)
640 {
641         size_t i;
642
643         if ((is_Class_type(tp))       && (verbosity & dump_verbosity_noClassTypes)) return;
644         if ((is_Struct_type(tp))      && (verbosity & dump_verbosity_noStructTypes)) return;
645         if ((is_Union_type(tp))       && (verbosity & dump_verbosity_noUnionTypes)) return;
646         if ((is_Array_type(tp))       && (verbosity & dump_verbosity_noArrayTypes)) return;
647         if ((is_Pointer_type(tp))     && (verbosity & dump_verbosity_noPointerTypes)) return;
648         if ((is_Method_type(tp))      && (verbosity & dump_verbosity_noMethodTypes)) return;
649         if ((is_Primitive_type(tp))   && (verbosity & dump_verbosity_noPrimitiveTypes)) return;
650         if ((is_Enumeration_type(tp)) && (verbosity & dump_verbosity_noEnumerationTypes)) return;
651
652         ir_fprintf(F, "%+F", tp);
653         if (verbosity & dump_verbosity_onlynames) { fprintf(F, "\n"); return; }
654
655         switch (get_type_tpop_code(tp)) {
656
657         case tpo_class:
658                 if ((verbosity & dump_verbosity_methods) || (verbosity & dump_verbosity_fields)) {
659                         fprintf(F, "\n  members:\n");
660                 }
661                 for (i = 0; i < get_class_n_members(tp); ++i) {
662                         ir_entity *mem = get_class_member(tp, i);
663                         if (((verbosity & dump_verbosity_methods) &&  is_Method_type(get_entity_type(mem))) ||
664                                 ((verbosity & dump_verbosity_fields)  && !is_Method_type(get_entity_type(mem)))   ) {
665                                 if (!(verbosity & dump_verbosity_nostatic)) {
666                                         dump_entity_to_file_prefix(F, mem, "    ");
667                                 }
668                         }
669                 }
670                 if (verbosity & dump_verbosity_typeattrs) {
671                         fprintf(F, "  supertypes: ");
672                         for (i = 0; i < get_class_n_supertypes(tp); ++i) {
673                                 ir_type *stp = get_class_supertype(tp, i);
674                                 ir_fprintf(F, "\n    %d %+F", i, stp);
675                         }
676                         fprintf(F, "\n  subtypes: ");
677                         for (i = 0; i < get_class_n_subtypes(tp); ++i) {
678                                 ir_type *stp = get_class_subtype(tp, i);
679                                 ir_fprintf(F, "\n    %d %+F", i, stp);
680                         }
681
682                         if (get_irp_inh_transitive_closure_state() != inh_transitive_closure_none) {
683                                 ir_type *stp;
684                                 fprintf(F, "\n  transitive supertypes: ");
685                                 for (stp = get_class_trans_supertype_first(tp);
686                                 stp;
687                                 stp = get_class_trans_supertype_next(tp)) {
688                                         ir_fprintf(F, "\n    %+F", stp);
689                                 }
690                                 fprintf(F, "\n  transitive subtypes: ");
691                                 for (stp = get_class_trans_subtype_first(tp);
692                                 stp;
693                                 stp = get_class_trans_subtype_next(tp)) {
694                                         ir_fprintf(F, "\n    %+F", stp);
695                                 }
696                         }
697
698                         fprintf(F, "\n  flags:       ");
699                         if (is_class_final(tp))
700                                 fprintf(F, "final, ");
701                         if (is_class_interface(tp))
702                                 fprintf(F, "interface, ");
703                         if (is_class_abstract(tp))
704                                 fprintf(F, "abstract, ");
705                         fprintf(F, "\n");
706                 }
707                 break;
708
709         case tpo_union:
710         case tpo_struct:
711                 if (verbosity & dump_verbosity_fields) fprintf(F, "\n  members: ");
712                 for (i = 0; i < get_compound_n_members(tp); ++i) {
713                         ir_entity *mem = get_compound_member(tp, i);
714                         if (verbosity & dump_verbosity_fields) {
715                                 dump_entity_to_file_prefix(F, mem, "    ");
716                         }
717                 }
718                 break;
719
720         case tpo_array:
721                 if (verbosity & dump_verbosity_typeattrs) {
722                         size_t i, n_dim;
723                         ir_type *elem_tp = get_array_element_type(tp);
724
725                         fprintf(F, "\n  array ");
726
727                         n_dim = get_array_n_dimensions(tp);
728                         for (i = 0; i < n_dim; ++i) {
729                                 ir_node *lower, *upper;
730
731                                 lower = get_array_lower_bound(tp, i);
732                                 upper = get_array_upper_bound(tp, i);
733
734                                 fprintf(F, "[");
735
736                                 if (is_Const(lower)) {
737                                         fprintf(F, "%ld .. ", get_tarval_long(get_Const_tarval(lower)));
738                                 } else {
739                                         dump_node_opcode(F, lower);
740                                         fprintf(F, " %ld .. ", get_irn_node_nr(lower));
741                                 }
742
743                                 if (is_Const(upper)) {
744                                         fprintf(F, "%ld]", get_tarval_long(get_Const_tarval(lower)));
745                                 } else {
746                                         dump_node_opcode(F, upper);
747                                         fprintf(F, " %ld]", get_irn_node_nr(upper));
748                                 }
749                         }
750                         ir_fprintf(F, " of <%+F>", elem_tp);
751
752                         fprintf(F, "\n  order: ");
753                         for (i = 0; i < n_dim; ++i)
754                                 fprintf(F, "<%d>", get_array_order(tp, i));
755
756                         fprintf(F, "\n");
757
758                         if (verbosity & dump_verbosity_fields) {
759                                 dump_entity_to_file_prefix(F, get_array_element_entity(tp),
760                                                            "    ");
761                         }
762                 }
763                 break;
764
765         case tpo_pointer:
766                 if (verbosity & dump_verbosity_typeattrs) {
767                         ir_type *tt = get_pointer_points_to_type(tp);
768                         ir_fprintf(F, "\n  points to %+F\n", tt);
769                 }
770                 break;
771
772         case tpo_method:
773                 if (verbosity & dump_verbosity_typeattrs) {
774                         fprintf(F, "\n  variadicity: %s", get_variadicity_name(get_method_variadicity(tp)));
775                         fprintf(F, "\n  return types: %lu",
776                                 (unsigned long) get_method_n_ress(tp));
777                         for (i = 0; i < get_method_n_ress(tp); ++i) {
778                                 ir_type *rtp = get_method_res_type(tp, i);
779                                 ir_fprintf(F, "\n    %+F", rtp);
780                         }
781
782                         fprintf(F, "\n  parameter types: %lu",
783                                 (unsigned long) get_method_n_params(tp));
784                         for (i = 0; i < get_method_n_params(tp); ++i) {
785                                 ir_type *ptp = get_method_param_type(tp, i);
786                                 ir_fprintf(F, "\n    %+F", ptp);
787                         }
788                         if (get_method_variadicity(tp)) {
789                                 fprintf(F, "\n    ...");
790                         }
791                         fprintf(F, "\n");
792                 }
793                 break;
794
795         case tpo_primitive:
796                 if (verbosity & dump_verbosity_typeattrs) {
797                         ir_type *base_tp = get_primitive_base_type(tp);
798                         if (base_tp != NULL)
799                                 ir_fprintf(F, "\n  base type: %+F", tp);
800                         fprintf(F, "\n");
801                 }
802                 break;
803
804         case tpo_none:
805         case tpo_unknown:
806                 fprintf(F, "\n");
807                 break;
808
809         default:
810                 if (verbosity & dump_verbosity_typeattrs) {
811                         fprintf(F, ": details not implemented\n");
812                 }
813         }
814
815         fprintf(F, "  state:      %s,\n", get_type_state_name(get_type_state(tp)));
816         fprintf(F, "  size:       %2u Bytes,\n", get_type_size_bytes(tp));
817         fprintf(F, "  alignment:  %2u Bytes,\n", get_type_alignment_bytes(tp));
818         if (is_atomic_type(tp) || is_Method_type(tp))
819                 fprintf(F, "  mode:       %s,\n",  get_mode_name(get_type_mode(tp)));
820
821         if (get_trouts_state()) {
822                 fprintf(F, "\n  Type outs:\n");
823                 dump_node_list(F, (firm_kind *)tp, "  ", (size_t(*)(firm_kind *))get_type_n_allocs,
824                         (ir_node *(*)(firm_kind *, size_t))get_type_alloc, "Allocations");
825                 dump_node_list(F, (firm_kind *)tp, "  ", (size_t(*)(firm_kind *))get_type_n_casts,
826                         (ir_node *(*)(firm_kind *, size_t))get_type_cast, "Casts");
827                 dump_type_list(F, tp, "  ", get_type_n_pointertypes_to, get_type_pointertype_to, "PointerTpsTo");
828         }
829
830         fprintf(F, "\n\n");
831 }
832
833 void dump_types_as_text(FILE *out)
834 {
835         size_t i, n_types = get_irp_n_types();
836
837         for (i = 0; i < n_types; ++i) {
838                 ir_type *type = get_irp_type(i);
839                 dump_type_to_file(out, type);
840         }
841 }
842
843 void dump_globals_as_text(FILE *out)
844 {
845         ir_type *global_type = get_glob_type();
846         size_t   n_members   = get_class_n_members(global_type);
847         size_t   i;
848
849         for (i = 0; i < n_members; ++i) {
850                 ir_entity *entity = get_class_member(global_type, i);
851                 dump_entity_to_file(out, entity);
852         }
853 }