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