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