use a hook to dump vrp info instead of polluting irdump.c
[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 "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 /* Write the irnode and all its attributes to the file passed. */
60 void dump_irnode_to_file(FILE *F, ir_node *n)
61 {
62         char     comma;
63         ir_graph *irg;
64
65         dump_node_opcode(F, n);
66         fprintf(F, " %ld\n", get_irn_node_nr(n));
67
68         fprintf(F, "  index: %u\n", get_irn_idx(n));
69         if (ir_get_dump_flags() & ir_dump_flag_analysed_types)
70                 fprintf (F, "  addr:    %p\n", (void *)n);
71         fprintf (F, "  mode:    %s\n", get_mode_name(get_irn_mode(n)));
72         fprintf (F, "  visited: %lu\n", get_irn_visited(n));
73         irg = get_irn_irg(n);
74         if (irg != get_const_code_irg())
75                 fprintf (F, "  irg:     %s\n", get_ent_dump_name(get_irg_entity(irg)));
76
77         if (get_irn_pinned(n) == op_pin_state_floats &&
78                 get_irg_pinned(get_irn_irg(n)) == op_pin_state_floats) {
79                 fprintf(F, "  node was pinned in ");
80                 dump_node_opcode(F, get_irn_n(n, -1));
81                 fprintf(F, " %ld\n", get_irn_node_nr(get_irn_n(n, -1)));
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                 dump_node_opcode(F, get_irn_n(n, -1));
90                 fprintf(F, " %ld\n", get_irn_node_nr(get_irn_n(n, -1)));
91         }
92
93         {
94                 int i;
95                 for (i = 0; i < get_irn_arity(n); ++i) {
96                         fprintf(F, "     %d: %s ", i, is_backedge(n, i) ? "be" : "  ");
97                         dump_node_opcode(F, get_irn_n(n, i));
98                         fprintf(F, " %ld\n", get_irn_node_nr(get_irn_n(n, i)));
99                 }
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) || get_irn_op(n) == op_Phi) {
114             int i;
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 (is_irg_state(irg, IR_GRAPH_STATE_CONSISTENT_LOOPINFO)) {
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: %lu\n", get_Block_block_visited(n));
137                 fprintf(F, "  block marked: %u\n", get_Block_mark(n));
138                 if (is_irg_state(get_irn_irg(n), IR_GRAPH_STATE_CONSISTENT_DOMINANCE)) {
139                         fprintf(F, "  dom depth %d\n", get_Block_dom_depth(n));
140                         fprintf(F, "  domtree pre num %u\n", get_Block_dom_tree_pre_num(n));
141                         fprintf(F, "  max subtree pre num %u\n", get_Block_dom_max_subtree_pre_num(n));
142                 }
143                 if (is_irg_state(get_irn_irg(n), IR_GRAPH_STATE_CONSISTENT_POSTDOMINANCE)) {
144                         fprintf(F, "  pdom depth %d\n", get_Block_postdom_depth(n));
145                         fprintf(F, "  pdomtree pre num %u\n", get_Block_pdom_tree_pre_num(n));
146                         fprintf(F, "  max pdomsubtree pre num %u\n", get_Block_pdom_max_subtree_pre_num(n));
147                 }
148
149                 /* not dumped: graph_arr */
150                 /* not dumped: mature    */
151         }  break;
152         case iro_Start: {
153                 size_t   i;
154                 ir_type *tp = get_entity_type(get_irg_entity(get_irn_irg(n)));
155                 ir_fprintf(F, "  start of method of type %+F\n", tp);
156                 for (i = 0; i < get_method_n_params(tp); ++i)
157                         ir_fprintf(F, "    param %d type: %+F\n", i, get_method_param_type(tp, i));
158         } break;
159         case iro_Cond: {
160                 fprintf(F, "  default ProjNr: %ld\n", get_Cond_default_proj(n));
161                 if (get_Cond_jmp_pred(n) != COND_JMP_PRED_NONE) {
162                         fprintf(F, "  jump prediction: %s\n",
163                                 get_cond_jmp_predicate_name(get_Cond_jmp_pred(n)));
164                 }
165         } break;
166         case iro_Alloc: {
167                 ir_fprintf(F, "  allocating entity of type: %+F\n", get_Alloc_type(n));
168                 fprintf(F, "  allocating on: the %s\n", (get_Alloc_where(n) == stack_alloc) ? "stack" : "heap");
169         } break;
170         case iro_Free: {
171                 ir_fprintf(F, "  freeing entity of type %+F\n", get_Free_type(n));
172                 fprintf(F, "  allocated on: the %s\n", (get_Free_where(n) == stack_alloc) ? "stack" : "heap");
173         } break;
174         case iro_Sel: {
175                 ir_entity *ent = get_Sel_entity(n);
176                 if (ent) {
177                         fprintf(F, "  Selecting entity %s (%ld)\n", get_entity_name(ent), get_entity_nr(ent));
178                         ir_fprintf(F, "    of type    %+F\n",  get_entity_type(ent));
179                         ir_fprintf(F, "    with owner %+F.\n", get_entity_owner(ent));
180                 } else {
181                         fprintf(F, "  <NULL entity>\n");
182                 }
183         } break;
184         case iro_Call: {
185                 ir_type *tp = get_Call_type(n);
186                 if (get_Call_tail_call(n))
187                         fprintf(F, "  tail call\n");
188                 ir_fprintf(F, "  calling method of type %+F\n", tp);
189                 if (get_unknown_type() != tp) {
190                         size_t i;
191                         for (i = 0; i < get_method_n_params(tp); ++i)
192                                 ir_fprintf(F, "    param %d type: %+F\n", i, get_method_param_type(tp, i));
193                         for (i = 0; i < get_method_n_ress(tp); ++i)
194                                 ir_fprintf(F, "    result %d type: %+F\n", i, get_method_res_type(tp, i));
195                 }
196                 if (Call_has_callees(n)) {
197                         size_t i;
198                         fprintf(F, "  possible callees:\n");
199                         for (i = 0; i < get_Call_n_callees(n); i++) {
200                                 ir_fprintf(F, "    %zu: %s\n", i, get_ent_dump_name(get_Call_callee(n, i)));
201                         }
202                 }
203         } break;
204         case iro_Cast: {
205                 ir_fprintf(F, "  cast to type: %+F\n", get_Cast_type(n));
206         } break;
207         case iro_Cmp: {
208                 ir_relation relation = get_Cmp_relation(n);
209                 ir_fprintf(F, "  relation: %s\n", get_relation_string(relation));
210         } break;
211         case iro_Return: {
212                 size_t   i;
213                 ir_type *tp = get_entity_type(get_irg_entity(get_irn_irg(n)));
214                 ir_fprintf(F, "  return in method of type %+F\n", tp);
215                 for (i = 0; i < get_method_n_ress(tp); ++i) {
216                         ir_fprintf(F, "    result %d type: %+F\n", i,
217                                            get_method_res_type(tp, i));
218                 }
219         } break;
220         case iro_SymConst: {
221                 switch (get_SymConst_kind(n)) {
222                 case symconst_addr_ent:
223                         fprintf(F, "  kind:   addr_ent\n");
224                         fprintf(F, "  entity: ");
225                         dump_entity_to_file(F, get_SymConst_entity(n));
226                         break;
227                 case symconst_ofs_ent:
228                         fprintf(F, "  kind:   offset\n");
229                         fprintf(F, "  entity: ");
230                         dump_entity_to_file(F, get_SymConst_entity(n));
231                         break;
232                 case symconst_type_tag:
233                         fprintf(F, "  kind: type_tag\n");
234                         fprintf(F, "  type: ");
235                         dump_type_to_file(F, get_SymConst_type(n));
236                         break;
237                 case symconst_type_size:
238                         fprintf(F, "  kind: size\n");
239                         fprintf(F, "  type: ");
240                         dump_type_to_file(F, get_SymConst_type(n));
241                         break;
242                 case symconst_type_align:
243                         fprintf(F, "  kind: alignment\n");
244                         fprintf(F, "  type: ");
245                         dump_type_to_file(F, get_SymConst_type(n));
246                         break;
247                 case symconst_enum_const:
248                         fprintf(F, "  kind: enumeration\n");
249                         fprintf(F, "  name: %s\n", get_enumeration_const_name(get_SymConst_enum(n)));
250                         break;
251                 }
252         } break;
253         case iro_Load:
254                 fprintf(F, "  mode of loaded value: %s\n", get_mode_name_ex(get_Load_mode(n), NULL));
255                 fprintf(F, "  volatility: %s\n", get_volatility_name(get_Load_volatility(n)));
256                 fprintf(F, "  align: %s\n", get_align_name(get_Load_unaligned(n)));
257                 break;
258         case iro_Store:
259                 fprintf(F, "  volatility: %s\n", get_volatility_name(get_Store_volatility(n)));
260                 fprintf(F, "  align: %s\n", get_align_name(get_Store_unaligned(n)));
261                 break;
262         case iro_Confirm:
263                 fprintf(F, "  compare operation: %s\n", get_relation_string(get_Confirm_relation(n)));
264                 break;
265         case iro_ASM: {
266                 const ir_asm_constraint *cons;
267                 ident **clobber;
268                 int l;
269
270                 fprintf(F, "  assembler text: %s", get_id_str(get_ASM_text(n)));
271                 l = get_ASM_n_input_constraints(n);
272                 if (l > 0) {
273                         int i;
274                         fprintf(F, "\n  inputs:  ");
275                         cons = get_ASM_input_constraints(n);
276                         for (i = 0; i < l; ++i)
277                                 fprintf(F, "%%%u %s ", cons[i].pos, get_id_str(cons[i].constraint));
278                 }
279                 l = get_ASM_n_output_constraints(n);
280                 if (l > 0) {
281                         int i;
282                         fprintf(F, "\n  outputs: ");
283                         cons = get_ASM_output_constraints(n);
284                         for (i = 0; i < l; ++i)
285                                 fprintf(F, "%%%u %s ", cons[i].pos, get_id_str(cons[i].constraint));
286                 }
287                 l = get_ASM_n_clobbers(n);
288                 if (l > 0) {
289                         int i;
290                         fprintf(F, "\n  clobber: ");
291                         clobber = get_ASM_clobbers(n);
292                         for (i = 0; i < l; ++i)
293                                 fprintf(F, "%s ", get_id_str(clobber[i]));
294                 }
295                 if (get_irn_pinned(n) != op_pin_state_floats)
296                         fprintf(F, "\n  volatile");
297                 fprintf(F, "\n");
298         } break;
299
300         default:
301                 break;
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 static int need_nl = 1;
316
317 /**
318  * Dump initializers.
319  */
320 static void dump_ir_initializers_to_file(FILE *F, const char *prefix,
321                                          const ir_initializer_t *initializer,
322                                          ir_type *type)
323 {
324         ir_tarval *tv;
325         ir_node   *value;
326
327         if (need_nl) {
328                 fprintf(F, "\n%s    ", prefix);
329                 need_nl = 0;
330         }
331         switch (get_initializer_kind(initializer)) {
332         case IR_INITIALIZER_NULL:
333                 fprintf(F, "\t = <NOT_SET>");
334                 break;
335         case IR_INITIALIZER_TARVAL:
336                 tv = get_initializer_tarval_value(initializer);
337                 ir_fprintf(F, "\t = <TV>%F", tv);
338                 break;
339         case IR_INITIALIZER_CONST:
340                 value = get_initializer_const_value(initializer);
341                 ir_fprintf(F, "\t = %F", value);
342                 break;
343         case IR_INITIALIZER_COMPOUND:
344                 if (is_Array_type(type)) {
345                         size_t i, n = get_initializer_compound_n_entries(initializer);
346                         ir_type *element_type = get_array_element_type(type);
347                         for (i = 0; i < n; ++i) {
348                                 ir_initializer_t *sub_initializer
349                                         = get_initializer_compound_value(initializer, i);
350
351                                 if (need_nl) {
352                                         fprintf(F, "\n%s    ", prefix);
353                                         need_nl = 0;
354                                 }
355                                 fprintf(F, "[%d]", (int) i);
356                                 dump_ir_initializers_to_file(F, prefix, sub_initializer, element_type);
357                         }
358                 } else {
359                         size_t i, n;
360                         assert(is_compound_type(type));
361                         n = get_compound_n_members(type);
362                         for (i = 0; i < n; ++i) {
363                                 ir_entity        *member    = get_compound_member(type, i);
364                                 ir_type          *subtype   = get_entity_type(member);
365                                 ir_initializer_t *sub_initializer;
366
367                                 assert(i < get_initializer_compound_n_entries(initializer));
368                                 sub_initializer
369                                         = get_initializer_compound_value(initializer, i);
370
371                                 if (need_nl) {
372                                         fprintf(F, "\n%s    ", prefix);
373                                         need_nl = 0;
374                                 }
375                                 ir_fprintf(F, ".%F", member);
376                                 dump_ir_initializers_to_file(F, prefix, sub_initializer, subtype);
377                         }
378                 }
379                 break;
380         default:
381                 panic("invalid ir_initializer kind found");
382         }
383         need_nl = 1;
384 }
385
386 static void dump_entity_linkage(FILE *F, const ir_entity *entity)
387 {
388         ir_linkage linkage = get_entity_linkage(entity);
389
390         if (linkage == IR_LINKAGE_DEFAULT) {
391                 fprintf(F, " default");
392                 return;
393         }
394         if (linkage & IR_LINKAGE_CONSTANT)
395                 fprintf(F, " constant");
396         if (linkage & IR_LINKAGE_WEAK)
397                 fprintf(F, " weak");
398         if (linkage & IR_LINKAGE_GARBAGE_COLLECT)
399                 fprintf(F, " garbage_collect");
400         if (linkage & IR_LINKAGE_MERGE)
401                 fprintf(F, " merge");
402         if (linkage & IR_LINKAGE_HIDDEN_USER)
403                 fprintf(F, " hidden_user");
404 }
405
406 static void dump_entity_to_file_prefix(FILE *F, ir_entity *ent, const char *prefix)
407 {
408         ir_type *owner, *type;
409
410         assert(is_entity(ent));
411         owner = get_entity_owner(ent);
412         type  = get_entity_type(ent);
413         if (verbosity & dump_verbosity_onlynames) {
414                 fprintf(F, "%sentity %s.%s (%ld)\n", prefix, get_compound_name(get_entity_owner(ent)),
415                         get_entity_name(ent), get_entity_nr(ent));
416                 return;
417         }
418
419         if (verbosity & dump_verbosity_entattrs) {
420                 fprintf(F, "%sentity %s (%ld)\n", prefix, get_entity_name(ent), get_entity_nr(ent));
421                 ir_fprintf(F, "%s  type:  %+F\n", prefix, type);
422                 ir_fprintf(F, "%s  owner: %+F\n", prefix, owner);
423
424                 if (is_Class_type(get_entity_owner(ent))) {
425                         if (get_entity_n_overwrites(ent) > 0) {
426                                 size_t i;
427                                 fprintf(F, "%s  overwrites:\n", prefix);
428                                 for (i = 0; i < get_entity_n_overwrites(ent); ++i) {
429                                         ir_entity *ov = get_entity_overwrites(ent, i);
430                                         ir_fprintf(F, "%s    %d: %s of class %+F\n", prefix, i,
431                                                 get_entity_name(ov), get_entity_owner(ov));
432                                 }
433                         } else {
434                                 fprintf(F, "%s  Does not overwrite other entities.\n", prefix);
435                         }
436                         if (get_entity_n_overwrittenby(ent) > 0) {
437                                 size_t i;
438                                 fprintf(F, "%s  overwritten by:\n", prefix);
439                                 for (i = 0; i < get_entity_n_overwrittenby(ent); ++i) {
440                                         ir_entity *ov = get_entity_overwrittenby(ent, i);
441                                         ir_fprintf(F, "%s    %d: %s of class %+F\n", prefix, i,
442                                                    get_entity_name(ov), get_entity_owner(ov));
443                                 }
444                         } else {
445                                 fprintf(F, "%s  Is not overwritten by other entities.\n",
446                                         prefix);
447                         }
448
449                         if (get_irp_inh_transitive_closure_state() != inh_transitive_closure_none) {
450                                 ir_entity *ov;
451                                 fprintf(F, "%s  transitive overwrites:\n", prefix);
452                                 for (ov = get_entity_trans_overwrites_first(ent);
453                                 ov;
454                                 ov = get_entity_trans_overwrites_next(ent)) {
455                                         ir_fprintf(F, "%s    : %s of class %+F\n", prefix,
456                                                    get_entity_name(ov), get_entity_owner(ov));
457                                 }
458                                 fprintf(F, "%s  transitive overwritten by:\n", prefix);
459                                 for (ov = get_entity_trans_overwrittenby_first(ent);
460                                 ov;
461                                 ov = get_entity_trans_overwrittenby_next(ent)) {
462                                         ir_fprintf(F, "%s    : %s of class %+F\n", prefix,
463                                                    get_entity_name(ov), get_entity_owner(ov));
464                                 }
465                         }
466                 }
467
468                 if (is_Method_type(get_entity_type(ent))) {
469                         unsigned mask = get_entity_additional_properties(ent);
470                         unsigned cc   = get_method_calling_convention(get_entity_type(ent));
471                         ir_graph *irg = get_entity_irg(ent);
472
473                         if (irg) {
474                                 fprintf(F, "%s  estimated node count: %u\n", prefix, get_irg_estimated_node_cnt(irg));
475                                 fprintf(F, "%s  maximum node index:   %u\n", prefix, get_irg_last_idx(irg));
476                         }
477
478                         if (mask) {
479                                 fprintf(F, "%s  additional prop: ", prefix);
480
481                                 if (mask & mtp_property_const)         fputs("const_function, ", F);
482                                 if (mask & mtp_property_pure)          fputs("pure_function, ", F);
483                                 if (mask & mtp_property_noreturn)      fputs("noreturn_function, ", F);
484                                 if (mask & mtp_property_nothrow)       fputs("nothrow_function, ", F);
485                                 if (mask & mtp_property_naked)         fputs("naked_function, ", F);
486                                 if (mask & mtp_property_malloc)        fputs("malloc_function, ", F);
487                                 if (mask & mtp_property_returns_twice) fputs("weak_function, ", F);
488                                 if (mask & mtp_property_intrinsic)     fputs("intrinsic_function, ", F);
489                                 if (mask & mtp_property_runtime)       fputs("runtime_function, ", F);
490                                 if (mask & mtp_property_private)       fputs("private_function, ", F);
491                                 if (mask & mtp_property_has_loop)      fputs("has_loop_function, ", F);
492                                 fputc('\n', F);
493                         }
494                         fprintf(F, "%s  calling convention: ", prefix);
495                         if (cc & cc_reg_param)           fputs("regparam, ", F);
496                         if (cc & cc_this_call)           fputs("thiscall, ", F);
497                         if (cc & cc_compound_ret)        fputs("compound_ret, ", F);
498                         if (cc & cc_frame_on_caller_stk) fputs("frame on caller's stack, ", F);
499                         cc &= ~(cc_compound_ret|cc_frame_on_caller_stk);
500                         if (IS_CDECL(cc))
501                                 fputs("cdecl", F);
502                         else if (IS_STDCALL(cc))
503                                 fputs("stdcall", F);
504                         else {
505                                 fputs(cc & cc_last_on_top      ? "last param on top, " : "first param on top, ", F);
506                                 fputs(cc & cc_callee_clear_stk ? "callee clear stack" : "caller clear stack", F);
507                         }
508                         fprintf(F, "\n%s  vtable number:        %u\n", prefix, get_entity_vtable_number(ent));
509                 }
510         } else {  /* no entattrs */
511                 ir_fprintf(F, "%s(%3d:%d) %+F: %s", prefix,
512                         get_entity_offset(ent), get_entity_offset_bits_remainder(ent),
513                         get_entity_type(ent), get_entity_name(ent));
514                 if (is_Method_type(get_entity_type(ent))) fputs("(...)", F);
515
516                 if (verbosity & dump_verbosity_accessStats) {
517                         dump_entity_linkage(F, ent);
518                 }
519                 fputc('\n', F);
520         }
521
522         if (verbosity & dump_verbosity_entconsts) {
523                 if (ent->initializer != NULL) {
524                         const ir_initializer_t *initializer = get_entity_initializer(ent);
525                         fprintf(F, "\n%s  Initializers:", prefix);
526                         need_nl = 1;
527                         dump_ir_initializers_to_file(F, prefix, initializer, get_entity_type(ent));
528                         fputc('\n', F);
529                 } else if (entity_has_compound_ent_values(ent)) {
530                         size_t i;
531                         fprintf(F, "%s  compound values:", prefix);
532                         for (i = 0; i < get_compound_ent_n_values(ent); ++i) {
533                                 size_t j;
534                                 compound_graph_path *path = get_compound_ent_value_path(ent, i);
535                                 ir_entity *ent0 = get_compound_graph_path_node(path, 0);
536                                 fprintf(F, "\n%s    %3d:%d ", prefix, get_entity_offset(ent0), get_entity_offset_bits_remainder(ent0));
537                                 if (get_type_state(type) == layout_fixed)
538                                         fprintf(F, "(%3u:%u) ",   get_compound_ent_value_offset_bytes(ent, i), get_compound_ent_value_offset_bit_remainder(ent, i));
539                                 fprintf(F, "%s", get_entity_name(ent));
540                                 for (j = 0; j < get_compound_graph_path_length(path); ++j) {
541                                         ir_entity *node = get_compound_graph_path_node(path, j);
542                                         fprintf(F, ".%s", get_entity_name(node));
543                                         if (is_Array_type(get_entity_owner(node)))
544                                                 fprintf(F, "[%ld]", get_compound_graph_path_array_index(path, j));
545                                 }
546                                 fprintf(F, "\t = ");
547                                 dump_node_opcode(F, get_compound_ent_value(ent, i));
548                         }
549                         fputc('\n', F);
550                 }
551         }
552
553         if (verbosity & dump_verbosity_entattrs) {
554                 fprintf(F, "%s  linkage:", prefix);
555                 dump_entity_linkage(F, ent);
556                 fprintf(F, "\n%s  volatility:  %s", prefix, get_volatility_name(get_entity_volatility(ent)));
557                 fprintf(F, "\n%s  aligned:  %s", prefix, get_align_name(get_entity_aligned(ent)));
558                 fprintf(F, "\n%s  alignment:  %u", prefix, get_entity_alignment(ent));
559                 fprintf(F, "\n%s  ld_name: %s", prefix, ent->ld_name ? get_entity_ld_name(ent) : "no yet set");
560                 fprintf(F, "\n%s  offset:  %d bytes, %d rem bits", prefix, get_entity_offset(ent), get_entity_offset_bits_remainder(ent));
561                 if (is_Method_type(get_entity_type(ent))) {
562                         if (get_entity_irg(ent))   /* can be null */ {
563                                 fprintf(F, "\n%s  irg = %ld", prefix, get_irg_graph_nr(get_entity_irg(ent)));
564                         } else {
565                                 fprintf(F, "\n%s  irg = NULL", prefix);
566                         }
567                 }
568                 fputc('\n', F);
569         }
570 }
571
572 void dump_entity_to_file(FILE *out, ir_entity *ent)
573 {
574         dump_entity_to_file_prefix(out, ent, "");
575         fprintf(out, "\n");
576 }
577
578 void dump_type_to_file(FILE *F, ir_type *tp)
579 {
580         size_t i;
581
582         if ((is_Class_type(tp))       && (verbosity & dump_verbosity_noClassTypes)) return;
583         if ((is_Struct_type(tp))      && (verbosity & dump_verbosity_noStructTypes)) return;
584         if ((is_Union_type(tp))       && (verbosity & dump_verbosity_noUnionTypes)) return;
585         if ((is_Array_type(tp))       && (verbosity & dump_verbosity_noArrayTypes)) return;
586         if ((is_Pointer_type(tp))     && (verbosity & dump_verbosity_noPointerTypes)) return;
587         if ((is_Method_type(tp))      && (verbosity & dump_verbosity_noMethodTypes)) return;
588         if ((is_Primitive_type(tp))   && (verbosity & dump_verbosity_noPrimitiveTypes)) return;
589         if ((is_Enumeration_type(tp)) && (verbosity & dump_verbosity_noEnumerationTypes)) return;
590
591         ir_fprintf(F, "%+F", tp);
592         if (verbosity & dump_verbosity_onlynames) { fprintf(F, "\n"); return; }
593
594         switch (get_type_tpop_code(tp)) {
595
596         case tpo_class:
597                 if ((verbosity & dump_verbosity_methods) || (verbosity & dump_verbosity_fields)) {
598                         fprintf(F, "\n  members:\n");
599                 }
600                 for (i = 0; i < get_class_n_members(tp); ++i) {
601                         ir_entity *mem = get_class_member(tp, i);
602                         if (((verbosity & dump_verbosity_methods) &&  is_Method_type(get_entity_type(mem))) ||
603                                 ((verbosity & dump_verbosity_fields)  && !is_Method_type(get_entity_type(mem)))   ) {
604                                 if (!(verbosity & dump_verbosity_nostatic)) {
605                                         dump_entity_to_file_prefix(F, mem, "    ");
606                                 }
607                         }
608                 }
609                 if (verbosity & dump_verbosity_typeattrs) {
610                         fprintf(F, "  supertypes: ");
611                         for (i = 0; i < get_class_n_supertypes(tp); ++i) {
612                                 ir_type *stp = get_class_supertype(tp, i);
613                                 ir_fprintf(F, "\n    %d %+F", i, stp);
614                         }
615                         fprintf(F, "\n  subtypes: ");
616                         for (i = 0; i < get_class_n_subtypes(tp); ++i) {
617                                 ir_type *stp = get_class_subtype(tp, i);
618                                 ir_fprintf(F, "\n    %d %+F", i, stp);
619                         }
620
621                         if (get_irp_inh_transitive_closure_state() != inh_transitive_closure_none) {
622                                 ir_type *stp;
623                                 fprintf(F, "\n  transitive supertypes: ");
624                                 for (stp = get_class_trans_supertype_first(tp);
625                                 stp;
626                                 stp = get_class_trans_supertype_next(tp)) {
627                                         ir_fprintf(F, "\n    %+F", stp);
628                                 }
629                                 fprintf(F, "\n  transitive subtypes: ");
630                                 for (stp = get_class_trans_subtype_first(tp);
631                                 stp;
632                                 stp = get_class_trans_subtype_next(tp)) {
633                                         ir_fprintf(F, "\n    %+F", stp);
634                                 }
635                         }
636
637                         fprintf(F, "\n  flags:       ");
638                         if (is_class_final(tp))
639                                 fprintf(F, "final, ");
640                         if (is_class_interface(tp))
641                                 fprintf(F, "interface, ");
642                         if (is_class_abstract(tp))
643                                 fprintf(F, "abstract, ");
644                         fprintf(F, "\n");
645                 }
646                 break;
647
648         case tpo_union:
649         case tpo_struct:
650                 if (verbosity & dump_verbosity_fields) fprintf(F, "\n  members: ");
651                 for (i = 0; i < get_compound_n_members(tp); ++i) {
652                         ir_entity *mem = get_compound_member(tp, i);
653                         if (verbosity & dump_verbosity_fields) {
654                                 dump_entity_to_file_prefix(F, mem, "    ");
655                         }
656                 }
657                 break;
658
659         case tpo_array:
660                 if (verbosity & dump_verbosity_typeattrs) {
661                         size_t n_dim;
662                         ir_type *elem_tp = get_array_element_type(tp);
663
664                         fprintf(F, "\n  array ");
665
666                         n_dim = get_array_n_dimensions(tp);
667                         for (i = 0; i < n_dim; ++i) {
668                                 ir_node *lower, *upper;
669
670                                 lower = get_array_lower_bound(tp, i);
671                                 upper = get_array_upper_bound(tp, i);
672
673                                 fprintf(F, "[");
674
675                                 if (is_Const(lower)) {
676                                         fprintf(F, "%ld .. ", get_tarval_long(get_Const_tarval(lower)));
677                                 } else {
678                                         dump_node_opcode(F, lower);
679                                         fprintf(F, " %ld .. ", get_irn_node_nr(lower));
680                                 }
681
682                                 if (is_Const(upper)) {
683                                         fprintf(F, "%ld]", get_tarval_long(get_Const_tarval(lower)));
684                                 } else {
685                                         dump_node_opcode(F, upper);
686                                         fprintf(F, " %ld]", get_irn_node_nr(upper));
687                                 }
688                         }
689                         ir_fprintf(F, " of <%+F>", elem_tp);
690
691                         fprintf(F, "\n  order: ");
692                         for (i = 0; i < n_dim; ++i)
693                                 fprintf(F, "<%zu>", get_array_order(tp, i));
694
695                         fprintf(F, "\n");
696
697                         if (verbosity & dump_verbosity_fields) {
698                                 dump_entity_to_file_prefix(F, get_array_element_entity(tp),
699                                                            "    ");
700                         }
701                 }
702                 break;
703
704         case tpo_pointer:
705                 if (verbosity & dump_verbosity_typeattrs) {
706                         ir_type *tt = get_pointer_points_to_type(tp);
707                         ir_fprintf(F, "\n  points to %+F\n", tt);
708                 }
709                 break;
710
711         case tpo_method:
712                 if (verbosity & dump_verbosity_typeattrs) {
713                         mtp_additional_properties mtp = get_method_additional_properties(tp);
714                         unsigned cconv = get_method_calling_convention(tp);
715                         fprintf(F, "\n  variadicity: %s", get_variadicity_name(get_method_variadicity(tp)));
716                         fprintf(F, "\n  return types: %lu",
717                                 (unsigned long) get_method_n_ress(tp));
718                         for (i = 0; i < get_method_n_ress(tp); ++i) {
719                                 ir_type *rtp = get_method_res_type(tp, i);
720                                 ir_fprintf(F, "\n    %+F", rtp);
721                         }
722
723                         fprintf(F, "\n  parameter types: %lu",
724                                 (unsigned long) get_method_n_params(tp));
725                         for (i = 0; i < get_method_n_params(tp); ++i) {
726                                 ir_type *ptp = get_method_param_type(tp, i);
727                                 ir_fprintf(F, "\n    %+F", ptp);
728                         }
729                         fprintf(F, "\n  properties:");
730                         if (mtp & mtp_property_const)
731                                 fputs(" const", F);
732                         if (mtp & mtp_property_pure)
733                                 fputs(" pure", F);
734                         if (mtp & mtp_property_noreturn)
735                                 fputs(" noreturn", F);
736                         if (mtp & mtp_property_nothrow)
737                                 fputs(" nothrow", F);
738                         if (mtp & mtp_property_naked)
739                                 fputs(" naked", F);
740                         if (mtp & mtp_property_malloc)
741                                 fputs(" malloc", F);
742                         if (mtp & mtp_property_returns_twice)
743                                 fputs(" returns_twice", F);
744                         if (mtp & mtp_property_intrinsic)
745                                 fputs(" intrinsic", F);
746                         if (mtp & mtp_property_runtime)
747                                 fputs(" runtime", F);
748                         if (mtp & mtp_property_private)
749                                 fputs(" private", F);
750                         if (mtp & mtp_property_has_loop)
751                                 fputs(" has_Loop", F);
752
753                         fprintf(F, "\n  calling convention:");
754                         if (cconv & cc_reg_param)
755                                 fputs(" regparam", F);
756                         if (cconv & cc_last_on_top)
757                                 fputs(" last_on_top", F);
758                         if (cconv & cc_callee_clear_stk)
759                                 fputs(" calle_clear_stk", F);
760                         if (cconv & cc_this_call)
761                                 fputs(" this_call", F);
762                         if (cconv & cc_compound_ret)
763                                 fputs(" compound_ret", F);
764                         if (cconv & cc_frame_on_caller_stk)
765                                 fputs(" frame_on_caller_stk", F);
766                         if (cconv & cc_fpreg_param)
767                                 fputs(" fpreg_param", F);
768
769                         if (get_method_variadicity(tp)) {
770                                 fprintf(F, "\n    ...");
771                         }
772                         fprintf(F, "\n");
773                 }
774                 break;
775
776         case tpo_primitive:
777                 if (verbosity & dump_verbosity_typeattrs) {
778                         ir_type *base_tp = get_primitive_base_type(tp);
779                         if (base_tp != NULL)
780                                 ir_fprintf(F, "\n  base type: %+F", tp);
781                         fprintf(F, "\n");
782                 }
783                 break;
784
785         case tpo_none:
786         case tpo_unknown:
787                 fprintf(F, "\n");
788                 break;
789
790         default:
791                 if (verbosity & dump_verbosity_typeattrs) {
792                         fprintf(F, ": details not implemented\n");
793                 }
794         }
795
796         fprintf(F, "  state:      %s,\n", get_type_state_name(get_type_state(tp)));
797         fprintf(F, "  size:       %2u Bytes,\n", get_type_size_bytes(tp));
798         fprintf(F, "  alignment:  %2u Bytes,\n", get_type_alignment_bytes(tp));
799         if (is_atomic_type(tp) || is_Method_type(tp))
800                 fprintf(F, "  mode:       %s,\n",  get_mode_name(get_type_mode(tp)));
801
802         fprintf(F, "\n\n");
803 }
804
805 void dump_types_as_text(FILE *out)
806 {
807         size_t i, n_types = get_irp_n_types();
808
809         for (i = 0; i < n_types; ++i) {
810                 ir_type *type = get_irp_type(i);
811                 dump_type_to_file(out, type);
812         }
813 }
814
815 void dump_globals_as_text(FILE *out)
816 {
817         ir_type *global_type = get_glob_type();
818         size_t   n_members   = get_class_n_members(global_type);
819         size_t   i;
820
821         for (i = 0; i < n_members; ++i) {
822                 ir_entity *entity = get_class_member(global_type, i);
823                 dump_entity_to_file(out, entity);
824         }
825 }