move util.h to private API, harmonize SIZ(array) vs. ARR_SIZE(array) vs. array_size...
[libfirm] / ir / ir / irdump.c
1 /*
2  * Copyright (C) 1995-2008 University of Karlsruhe.  All right reserved.
3  *
4  * This file is part of libFirm.
5  *
6  * This file may be distributed and/or modified under the terms of the
7  * GNU General Public License version 2 as published by the Free Software
8  * Foundation and appearing in the file LICENSE.GPL included in the
9  * packaging of this file.
10  *
11  * Licensees holding valid libFirm Professional Edition licenses may use
12  * this file in accordance with the libFirm Commercial License.
13  * Agreement provided with the Software.
14  *
15  * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
16  * WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR
17  * PURPOSE.
18  */
19
20 /**
21  * @file
22  * @brief   Write vcg representation of firm to file.
23  * @author  Martin Trapp, Christian Schaefer, Goetz Lindenmaier, Hubert Schmidt
24  * @version $Id$
25  */
26 #include "config.h"
27
28 #include <string.h>
29 #include <stdlib.h>
30 #include <stdarg.h>
31
32 #include "list.h"
33
34 #include "irnode_t.h"
35 #include "irgraph_t.h"
36 #include "irprog_t.h"
37 #include "entity_t.h"
38 #include "irop.h"
39
40 #include "irdump_t.h"
41 #include "irpass_t.h"
42
43 #include "irgwalk.h"
44 #include "tv_t.h"
45 #include "irouts.h"
46 #include "iredges.h"
47 #include "irdom.h"
48 #include "irloop_t.h"
49 #include "callgraph.h"
50 #include "irextbb_t.h"
51 #include "irhooks.h"
52 #include "dbginfo_t.h"
53 #include "irtools.h"
54 #include "irprintf.h"
55
56 #include "irvrfy.h"
57
58 #include "error.h"
59 #include "array.h"
60 #include "pmap.h"
61 #include "eset.h"
62 #include "pset.h"
63 #include "util.h"
64
65 /** Dump only irgs with names that start with this prefix. */
66 static ident *dump_file_filter_id = NULL;
67
68 #define ERROR_TXT       "<ERROR>"
69
70 /*******************************************************************/
71 /* flags to steer output                                           */
72 /*******************************************************************/
73
74 /** An option to turn off edge labels */
75 static int edge_label = 1;
76 /** An option to turn off dumping values of constant entities */
77 static int const_entities = 1;
78 /** An option to dump the keep alive edges */
79 static int dump_keepalive = 1;
80 /** An option to dump the new out edges */
81 static int dump_new_edges_flag = 0;
82 /** An option to dump ld_names instead of names. */
83 static int dump_ld_name = 1;
84 /** Compiler options to dump analysis information in dump_ir_graph */
85 static int dump_out_edge_flag = 0;
86 static int dump_loop_information_flag = 0;
87 static int dump_backedge_information_flag = 1;
88 /** An option to dump const-like nodes locally. */
89 static int dump_const_local = 1;
90 /** An option to dump the node index number. */
91 static int dump_node_idx_labels = 1;
92 /** An option to dump the node number */
93 static int dump_node_nr = 1;
94 /** An option to dump all graph anchors */
95 static int dump_anchors = 0;
96 /** An option to dump the macro block edges. */
97 static int dump_macro_block_edges = 0;
98 /** An option to dump block marker in the block title */
99 static int dump_block_marker = 0;
100
101 int dump_dominator_information_flag = 0;
102 int opt_dump_analysed_type_info = 1;
103 int opt_dump_pointer_values_to_info = 0;  /* default off: for test compares!! */
104
105 static ird_color_t overrule_nodecolor = ird_color_default_node;
106
107 /** The vcg node attribute hook. */
108 static DUMP_IR_GRAPH_FUNC dump_ir_graph_hook = NULL;
109 /** The vcg node attribute hook. */
110 static DUMP_NODE_VCGATTR_FUNC dump_node_vcgattr_hook = NULL;
111 /** The vcg edge attribute hook. */
112 static DUMP_EDGE_VCGATTR_FUNC dump_edge_vcgattr_hook = NULL;
113 /** The vcg dump block edge hook */
114 static DUMP_NODE_EDGE_FUNC dump_block_edge_hook = NULL;
115 /** The vcg dump node edge hook. */
116 static DUMP_NODE_EDGE_FUNC dump_node_edge_hook = NULL;
117
118 /* Set the hook to be called to dump additional edges to a node. */
119 void set_dump_node_edge_hook(DUMP_NODE_EDGE_FUNC func)
120 {
121         dump_node_edge_hook = func;
122 }
123
124 /* Get the additional edge dump hook. */
125 DUMP_NODE_EDGE_FUNC get_dump_node_edge_hook(void)
126 {
127         return dump_node_edge_hook;
128 }
129
130 /* Set the hook to be called to dump additional edges to a block. */
131 void set_dump_block_edge_hook(DUMP_NODE_EDGE_FUNC func)
132 {
133         dump_block_edge_hook = func;
134 }
135
136 /* Get the additional block edge dump hook. */
137 DUMP_NODE_EDGE_FUNC get_dump_block_edge_hook(void)
138 {
139         return dump_node_edge_hook;
140 }
141
142 /* set the ir graph hook */
143 void set_dump_ir_graph_hook(DUMP_IR_GRAPH_FUNC hook)
144 {
145         dump_ir_graph_hook = hook;
146 }
147
148 /* set the node attribute hook */
149 void set_dump_node_vcgattr_hook(DUMP_NODE_VCGATTR_FUNC hook)
150 {
151         dump_node_vcgattr_hook = hook;
152 }
153
154 /* set the edge attribute hook */
155 void set_dump_edge_vcgattr_hook(DUMP_EDGE_VCGATTR_FUNC hook)
156 {
157         dump_edge_vcgattr_hook = hook;
158 }
159
160 /** Returns 0 if dump_out_edge_flag or dump_loop_information_flag
161  * are set, else returns dump_const_local_flag.
162  */
163 static int get_opt_dump_const_local(void)
164 {
165         if (dump_out_edge_flag || dump_loop_information_flag || (dump_new_edges_flag && edges_activated(current_ir_graph)))
166                 return 0;
167         return dump_const_local;
168 }
169
170 /* Set a prefix filter for output functions. */
171 void only_dump_method_with_name(ident *name)
172 {
173         dump_file_filter_id = name;
174 }
175
176 /* Returns the prefix filter set with only_dump_method_with_name(). */
177 ident *get_dump_file_filter_ident(void)
178 {
179         return dump_file_filter_id;
180 }
181
182 /* Returns non-zero if dump file filter is not set, or if it is a prefix of name. */
183 int is_filtered_dump_name(ident *name)
184 {
185         if (!dump_file_filter_id) return 1;
186         return id_is_prefix(dump_file_filter_id, name);
187 }
188
189 /* To turn off display of edge labels.  Edge labels often cause xvcg to
190    abort with a segmentation fault. */
191 void turn_off_edge_labels(void)
192 {
193         edge_label = 0;
194 }
195
196 void dump_consts_local(int flag)
197 {
198         dump_const_local = flag;
199 }
200
201 void dump_node_idx_label(int flag)
202 {
203         dump_node_idx_labels = flag;
204 }
205
206 void dump_constant_entity_values(int flag)
207 {
208         const_entities = flag;
209 }
210
211 void dump_keepalive_edges(int flag)
212 {
213         dump_keepalive = flag;
214 }
215
216 void dump_new_edges(int flag)
217 {
218         dump_new_edges_flag = flag;
219 }
220
221 int get_opt_dump_keepalive_edges(void)
222 {
223         return dump_keepalive;
224 }
225
226 void dump_out_edges(int flag)
227 {
228         dump_out_edge_flag = flag;
229 }
230
231 void dump_dominator_information(int flag)
232 {
233         dump_dominator_information_flag = flag;
234 }
235
236 void dump_loop_information(int flag)
237 {
238         dump_loop_information_flag = flag;
239 }
240
241 void dump_backedge_information(int flag)
242 {
243         dump_backedge_information_flag = flag;
244 }
245
246 /* Dump the information of type field specified in ana/irtypeinfo.h.
247  * If the flag is set, the type name is output in [] in the node label,
248  * else it is output as info.
249  */
250 void set_opt_dump_analysed_type_info(int flag)
251 {
252         opt_dump_analysed_type_info = flag;
253 }
254
255 void dump_pointer_values_to_info(int flag)
256 {
257         opt_dump_pointer_values_to_info = flag;
258 }
259
260 void dump_ld_names(int flag)
261 {
262         dump_ld_name = flag;
263 }
264
265 void dump_all_anchors(int flag)
266 {
267         dump_anchors = flag;
268 }
269
270 void dump_macroblock_edges(int flag)
271 {
272         dump_macro_block_edges = flag;
273 }
274
275 void dump_block_marker_in_title(int flag)
276 {
277         dump_block_marker = flag;
278 }
279
280 /* -------------- some extended helper functions ----------------- */
281
282 /**
283  * returns the name of a mode or ERROR_TXT if mode is NOT a mode object.
284  * in the later case, sets bad.
285  */
286 const char *get_mode_name_ex(const ir_mode *mode, int *bad)
287 {
288         if (is_mode(mode))
289                 return get_mode_name(mode);
290         *bad |= 1;
291         return ERROR_TXT;
292 }
293
294 #define CUSTOM_COLOR_BASE    100
295 static const char *color_names[ird_color_count];
296 static const char *color_rgb[ird_color_count];
297 static struct obstack color_obst;
298
299 /** define a custom color. */
300 static void custom_color(int num, const char *rgb_def)
301 {
302         assert(num < ird_color_count);
303         obstack_printf(&color_obst, "%d", CUSTOM_COLOR_BASE + num);
304         obstack_1grow(&color_obst, '\0');
305
306         color_rgb[num]   = rgb_def;
307         color_names[num] = obstack_finish(&color_obst);
308 }
309
310 /** Define a named color. */
311 static void named_color(int num, const char *name)
312 {
313         assert(num < ird_color_count);
314         color_rgb[num]   = NULL;
315         color_names[num] = name;
316 }
317
318 /** Initializes the used colors. */
319 static void init_colors(void)
320 {
321         static int initialized = 0;
322         if (initialized)
323                 return;
324
325         obstack_init(&color_obst);
326
327         custom_color(ird_color_prog_background,       "204 204 204");
328         custom_color(ird_color_block_background,      "255 255 0");
329         custom_color(ird_color_dead_block_background, "190 150 150");
330         named_color(ird_color_block_inout,            "lightblue");
331         named_color(ird_color_default_node,           "white");
332         custom_color(ird_color_memory,                "153 153 255");
333         custom_color(ird_color_controlflow,           "255 153 153");
334         custom_color(ird_color_const,                 "204 255 255");
335         custom_color(ird_color_proj,                  "255 255 153");
336         custom_color(ird_color_uses_memory,           "153 153 255");
337         custom_color(ird_color_phi,                   "105 255 105");
338         custom_color(ird_color_anchor,                "100 100 255");
339         named_color(ird_color_error,                  "red");
340         custom_color(ird_color_entity,                "204 204 255");
341
342         initialized = 1;
343 }
344
345 /**
346  * Prints the VCG color to a file.
347  */
348 static void print_vcg_color(FILE *F, ird_color_t color)
349 {
350         assert(color < ird_color_count);
351         fprintf(F, "color:%s", color_names[color]);
352 }
353
354 /**
355  * Prints the edge kind of a given IR node.
356  *
357  * Projs should be dumped near their predecessor, so they get "nearedge".
358  */
359 static void print_node_edge_kind(FILE *F, ir_node *node)
360 {
361         if (is_Proj(node)) {
362                 fprintf(F, "nearedge: ");
363         } else {
364                 fprintf(F, "edge: ");
365         }
366 }
367
368 /**
369  * Prints the edge from a type S to a type T with additional info fmt, ...
370  * to the file F.
371  */
372 static void print_type_type_edge(FILE *F, const ir_type *S, const ir_type *T, const char *fmt, ...)
373 {
374         va_list ap;
375
376         va_start(ap, fmt);
377         fprintf(F, "edge: { sourcename: "); PRINT_TYPEID(S);
378         fprintf(F, " targetname: "); PRINT_TYPEID(T);
379         vfprintf(F, fmt, ap);
380         fprintf(F,"}\n");
381         va_end(ap);
382 }
383
384 /**
385  * Prints the edge from a type tp to an entity ent with additional info fmt, ...
386  * to the file F.
387  */
388 static void print_type_ent_edge(FILE *F, const ir_type *tp, const ir_entity *ent, const char *fmt, ...)
389 {
390         va_list ap;
391
392         va_start(ap, fmt);
393         fprintf(F, "edge: { sourcename: "); PRINT_TYPEID(tp);
394         fprintf(F, " targetname: \""); PRINT_ENTID(ent); fprintf(F, "\"");
395         vfprintf(F, fmt, ap);
396         fprintf(F, "}\n");
397         va_end(ap);
398 }
399
400 /**
401  * Prints the edge from an entity ent1 to an entity ent2 with additional info fmt, ...
402  * to the file F.
403  */
404 static void print_ent_ent_edge(FILE *F, const ir_entity *ent1, const ir_entity *ent2, int backedge, ird_color_t color, const char *fmt, ...)
405 {
406         va_list ap;
407
408         va_start(ap, fmt);
409         if (backedge)
410                 fprintf(F, "backedge: { sourcename: \"");
411         else
412                 fprintf(F, "edge: { sourcename: \"");
413         PRINT_ENTID(ent1);
414         fprintf(F, "\" targetname: \""); PRINT_ENTID(ent2);  fprintf(F, "\"");
415         vfprintf(F, fmt, ap);
416         fprintf(F, " ");
417         if (color != (ird_color_t) -1)
418                 print_vcg_color(F, color);
419         fprintf(F, "}\n");
420         va_end(ap);
421 }
422
423 /**
424  * Prints the edge from an entity ent to a type tp with additional info fmt, ...
425  * to the file F.
426  */
427 static void print_ent_type_edge(FILE *F, const ir_entity *ent, const ir_type *tp, const char *fmt, ...)
428 {
429         va_list ap;
430
431         va_start(ap, fmt);
432         fprintf(F, "edge: { sourcename: \""); PRINT_ENTID(ent);
433         fprintf(F, "\" targetname: "); PRINT_TYPEID(tp);
434         vfprintf(F, fmt, ap);
435         fprintf(F,"}\n");
436         va_end(ap);
437 }
438
439 /**
440  * Prints the edge from a node irn to a type tp with additional info fmt, ...
441  * to the file F.
442  */
443 static void print_node_type_edge(FILE *F, const ir_node *irn, ir_type *tp, const char *fmt, ...)
444 {
445         va_list ap;
446
447         va_start(ap, fmt);
448         fprintf(F, "edge: { sourcename: \""); PRINT_NODEID(irn);
449         fprintf(F, "\" targetname: "); PRINT_TYPEID(tp);
450         vfprintf(F, fmt, ap);
451         fprintf(F,"}\n");
452         va_end(ap);
453 }
454
455 /**
456  * Prints the edge from a node irn to an entity ent with additional info fmt, ...
457  * to the file F.
458  */
459 static void print_node_ent_edge(FILE *F, const ir_node *irn, const ir_entity *ent, const char *fmt, ...)
460 {
461         va_list ap;
462
463         va_start(ap, fmt);
464         fprintf(F, "edge: { sourcename: \""); PRINT_NODEID(irn);
465         fprintf(F, "\" targetname: \""); PRINT_ENTID(ent);
466         fprintf(F, "\"");
467         vfprintf(F, fmt, ap);
468         fprintf(F,"}\n");
469         va_end(ap);
470 }
471
472 /**
473  * Prints the edge from an entity ent to a node irn with additional info fmt, ...
474  * to the file F.
475  */
476 static void print_ent_node_edge(FILE *F, const ir_entity *ent, const ir_node *irn, const char *fmt, ...)
477 {
478         va_list ap;
479
480         va_start(ap, fmt);
481         fprintf(F, "edge: { sourcename: \""); PRINT_ENTID(ent);
482         fprintf(F, "\" targetname: \""); PRINT_NODEID(irn); fprintf(F, "\"");
483         vfprintf(F, fmt, ap);
484         fprintf(F,"}\n");
485         va_end(ap);
486 }
487
488 /**
489  * Prints the edge from a type tp to an enumeration item item with additional info fmt, ...
490  * to the file F.
491  */
492 static void print_enum_item_edge(FILE *F, const ir_type *tp, int item, const char *fmt, ...)
493 {
494         va_list ap;
495
496         va_start(ap, fmt);
497         fprintf(F, "edge: { sourcename: "); PRINT_TYPEID(tp);
498         fprintf(F, " targetname: \""); PRINT_ITEMID(tp, item); fprintf(F, "\" ");
499         vfprintf(F, fmt, ap);
500         fprintf(F,"}\n");
501         va_end(ap);
502 }
503
504 /*-----------------------------------------------------------------*/
505 /* global and ahead declarations                                   */
506 /*-----------------------------------------------------------------*/
507
508 static void dump_whole_node(ir_node *n, void *env);
509 static inline void dump_loop_nodes_into_graph(FILE *F, ir_graph *irg);
510
511 /*-----------------------------------------------------------------*/
512 /* Helper functions.                                                */
513 /*-----------------------------------------------------------------*/
514
515 /**
516  * This map is used as a private link attr to be able to call dumper
517  * anywhere without destroying link fields.
518  */
519 static pmap *irdump_link_map = NULL;
520
521 /** NOT A STANDARD LIBFIRM INIT METHOD
522  *
523  * We do not want to integrate dumping into libfirm, i.e., if the dumpers
524  * are off, we want to have as few interferences as possible.  Therefore the
525  * initialization is performed lazily and not called from within init_firm.
526  *
527  * Creates the link attribute map. */
528 static void init_irdump(void)
529 {
530         /* We need a new, empty map. */
531         if (irdump_link_map) pmap_destroy(irdump_link_map);
532         irdump_link_map = pmap_create();
533         if (!dump_file_filter_id)
534                 dump_file_filter_id = new_id_from_str("");
535 }
536
537 /**
538  * Returns the private link field.
539  */
540 static void *ird_get_irn_link(const ir_node *n)
541 {
542         void *res = NULL;
543         if (irdump_link_map == NULL)
544                 return NULL;
545
546         if (pmap_contains(irdump_link_map, n))
547                 res = pmap_get(irdump_link_map, n);
548         return res;
549 }
550
551 /**
552  * Sets the private link field.
553  */
554 static void ird_set_irn_link(const ir_node *n, void *x)
555 {
556         if (irdump_link_map == NULL)
557                 init_irdump();
558         pmap_insert(irdump_link_map, n, x);
559 }
560
561 /**
562  * Gets the private link field of an irg.
563  */
564 static void *ird_get_irg_link(const ir_graph *irg)
565 {
566         void *res = NULL;
567         if (irdump_link_map == NULL)
568                 return NULL;
569
570         if (pmap_contains(irdump_link_map, irg))
571                 res = pmap_get(irdump_link_map, irg);
572         return res;
573 }
574
575 /**
576  * Sets the private link field of an irg.
577  */
578 static void ird_set_irg_link(const ir_graph *irg, void *x)
579 {
580         if (irdump_link_map == NULL)
581                 init_irdump();
582         pmap_insert(irdump_link_map, irg, x);
583 }
584
585 /**
586  * Walker, clears the private link field.
587  */
588 static void clear_link(ir_node *node, void *env)
589 {
590         (void) env;
591         ird_set_irn_link(node, NULL);
592 }
593
594 /**
595  * If the entity has a ld_name, returns it if the dump_ld_name is set,
596  * else returns the name of the entity.
597  */
598 static const char *_get_ent_dump_name(const ir_entity *ent, int dump_ld_name)
599 {
600         if (ent == NULL)
601                 return "<NULL entity>";
602         if (dump_ld_name) {
603                 /* Don't use get_entity_ld_ident (ent) as it computes the mangled name! */
604                 if (ent->ld_name != NULL)
605                         return get_id_str(ent->ld_name);
606         }
607         return get_id_str(ent->name);
608 }
609
610 /**
611  * If the entity has a ld_name, returns it if the option dump_ld_name is set,
612  * else returns the name of the entity.
613  */
614 const char *get_ent_dump_name(const ir_entity *ent)
615 {
616         return _get_ent_dump_name(ent, dump_ld_name);
617 }
618
619 /* Returns the name of an IRG. */
620 const char *get_irg_dump_name(const ir_graph *irg)
621 {
622         /* Don't use get_entity_ld_ident (ent) as it computes the mangled name! */
623         return _get_ent_dump_name(get_irg_entity(irg), 1);
624 }
625
626 /**
627  * Returns non-zero if a node is in floating state.
628  */
629 static int node_floats(const ir_node *n)
630 {
631         return ((get_irn_pinned(n) == op_pin_state_floats) &&
632                 (get_irg_pinned(current_ir_graph) == op_pin_state_floats));
633 }
634
635 /**
636  *  Walker that visits the anchors
637  */
638 static void ird_walk_graph(ir_graph *irg, irg_walk_func *pre, irg_walk_func *post, void *env)
639 {
640         if (dump_anchors || (dump_new_edges_flag && edges_activated(irg))) {
641                 irg_walk_anchors(irg, pre, post, env);
642         } else {
643                 irg_walk_graph(irg, pre, post, env);
644         }
645 }
646
647 /**
648  * Walker, allocates an array for all blocks and puts it's nodes non-floating nodes into this array.
649  */
650 static void collect_node(ir_node *node, void *env)
651 {
652         (void) env;
653         if (is_Block(node)
654             || node_floats(node)
655             || (get_op_flags(get_irn_op(node)) & irop_flag_dump_noblock)) {
656                 ir_node ** arr = (ir_node **) ird_get_irg_link(get_irn_irg(node));
657                 if (!arr) arr = NEW_ARR_F(ir_node *, 0);
658                 ARR_APP1(ir_node *, arr, node);
659                 ird_set_irg_link(get_irn_irg(node), arr);    /* arr is an l-value, APP_ARR might change it! */
660         } else {
661                 ir_node * block = get_nodes_block(node);
662
663                 if (is_Bad(block)) {
664                         /* this node is in a Bad block, so we must place it into the graph's list */
665                         ir_node ** arr = (ir_node **) ird_get_irg_link(get_irn_irg(node));
666                         if (!arr) arr = NEW_ARR_F(ir_node *, 0);
667                         ARR_APP1(ir_node *, arr, node);
668                         ird_set_irg_link(get_irn_irg(node), arr);    /* arr is an l-value, APP_ARR might change it! */
669                 } else {
670                         ird_set_irn_link(node, ird_get_irn_link(block));
671                         ird_set_irn_link(block, node);
672                 }
673         }
674 }
675
676 /** Construct lists to walk ir block-wise.
677  *
678  * Collects all blocks, nodes not op_pin_state_pinned,
679  * Bad, NoMem and Unknown into a flexible array in link field of
680  * irg they belong to.  Sets the irg link field to NULL in all
681  * graphs not visited.
682  * Free the list with DEL_ARR_F().
683  */
684 static ir_node **construct_block_lists(ir_graph *irg)
685 {
686         int      i;
687 #ifdef INTERPROCEDURAL_VIEW
688         int      rem_view  = get_interprocedural_view();
689 #endif
690         int      walk_flag = ir_resources_reserved(irg) & IR_RESOURCE_IRN_VISITED;
691         ir_graph *rem      = current_ir_graph;
692
693         current_ir_graph = irg;
694
695         if (walk_flag) {
696                 ir_free_resources(irg, IR_RESOURCE_IRN_VISITED);
697         }
698
699         for (i = get_irp_n_irgs() - 1; i >= 0; --i)
700                 ird_set_irg_link(get_irp_irg(i), NULL);
701
702         ird_walk_graph(current_ir_graph, clear_link, collect_node, current_ir_graph);
703
704 #ifdef INTERPROCEDURAL_VIEW
705         /* Collect also EndReg and EndExcept. We do not want to change the walker. */
706         set_interprocedural_view(0);
707 #endif
708
709         set_irg_visited(current_ir_graph, get_irg_visited(current_ir_graph)-1);
710         irg_walk(get_irg_end_reg(current_ir_graph), clear_link, collect_node, current_ir_graph);
711         set_irg_visited(current_ir_graph, get_irg_visited(current_ir_graph)-1);
712         irg_walk(get_irg_end_except(current_ir_graph), clear_link, collect_node, current_ir_graph);
713
714 #ifdef INTERPROCEDURAL_VIEW
715         set_interprocedural_view(rem_view);
716 #endif
717
718         if (walk_flag) {
719                 ir_reserve_resources(irg, IR_RESOURCE_IRN_VISITED);
720         }
721
722         current_ir_graph = rem;
723         return ird_get_irg_link(irg);
724 }
725
726 typedef struct _list_tuple {
727         ir_node **blk_list;
728         ir_extblk **extbb_list;
729 } list_tuple;
730
731 /** Construct lists to walk IR extended block-wise.
732  * Free the lists in the tuple with DEL_ARR_F().
733  * Sets the irg link field to NULL in all
734  * graphs not visited.
735  */
736 static list_tuple *construct_extblock_lists(ir_graph *irg)
737 {
738         ir_node **blk_list = construct_block_lists(irg);
739         int i;
740         ir_graph *rem = current_ir_graph;
741         list_tuple *lists = XMALLOC(list_tuple);
742
743         current_ir_graph = irg;
744
745         lists->blk_list   = NEW_ARR_F(ir_node *, 0);
746         lists->extbb_list = NEW_ARR_F(ir_extblk *, 0);
747
748         inc_irg_block_visited(irg);
749         for (i = ARR_LEN(blk_list) - 1; i >= 0; --i) {
750                 ir_extblk *ext;
751
752                 if (is_Block(blk_list[i])) {
753                         ext = get_Block_extbb(blk_list[i]);
754
755                         if (extbb_not_visited(ext)) {
756                                 ARR_APP1(ir_extblk *, lists->extbb_list, ext);
757                                 mark_extbb_visited(ext);
758                         }
759                 } else
760                         ARR_APP1(ir_node *, lists->blk_list, blk_list[i]);
761         }
762         DEL_ARR_F(blk_list);
763
764         current_ir_graph = rem;
765         ird_set_irg_link(irg, lists);
766         return lists;
767 }
768
769 /*-----------------------------------------------------------------*/
770 /* Routines to dump information about a single ir node.            */
771 /*-----------------------------------------------------------------*/
772
773 /*
774  * dump the name of a node n to the File F.
775  */
776 int dump_node_opcode(FILE *F, ir_node *n)
777 {
778         int bad = 0;
779         const ir_op_ops *ops = get_op_ops(get_irn_op(n));
780
781         /* call the dump_node operation if available */
782         if (ops->dump_node)
783                 return ops->dump_node(n, F, dump_node_opcode_txt);
784
785         /* implementation for default nodes */
786         switch (get_irn_opcode(n)) {
787         case iro_SymConst:
788                 switch (get_SymConst_kind(n)) {
789                 case symconst_addr_ent:
790                         fprintf(F, "SymC &%s", get_entity_name(get_SymConst_entity(n)));
791                         break;
792                 case symconst_ofs_ent:
793                         fprintf(F, "SymC %s offset", get_entity_name(get_SymConst_entity(n)));
794                         break;
795                 case symconst_type_tag:
796                         ir_fprintf(F, "SymC %+F tag", get_SymConst_type(n));
797                         break;
798                 case symconst_type_size:
799                         ir_fprintf(F, "SymC %+F size", get_SymConst_type(n));
800                         break;
801                 case symconst_type_align:
802                         ir_fprintf(F, "SymC %+F align", get_SymConst_type(n));
803                         break;
804                 case symconst_enum_const:
805                         fprintf(F, "SymC %s enum", get_enumeration_const_name(get_SymConst_enum(n)));
806                         break;
807                 }
808                 break;
809
810 #ifdef INTERPROCEDURAL_VIEW
811         case iro_Filter:
812                 if (!get_interprocedural_view())
813                         fprintf(F, "Proj'");
814                 else
815                         goto default_case;
816                 break;
817 #endif
818
819         case iro_Proj: {
820                 ir_node *pred = get_Proj_pred(n);
821
822                 if (get_irn_opcode(pred) == iro_Cond
823                         && get_Proj_proj(n) == get_Cond_default_proj(pred)
824                         && get_irn_mode(get_Cond_selector(pred)) != mode_b)
825                         fprintf(F, "defProj");
826                 else
827                         goto default_case;
828         } break;
829
830 #ifdef INTERPROCEDURAL_VIEW
831         case iro_Start:
832         case iro_End:
833         case iro_EndExcept:
834         case iro_EndReg:
835                 if (get_interprocedural_view()) {
836                         fprintf(F, "%s %s", get_irn_opname(n), get_ent_dump_name(get_irg_entity(get_irn_irg(n))));
837                         break;
838                 } else
839                         goto default_case;
840 #endif
841
842         case iro_CallBegin: {
843                 ir_node *addr = get_CallBegin_ptr(n);
844                 ir_entity *ent = NULL;
845                 if (is_Sel(addr))
846                         ent = get_Sel_entity(addr);
847                 else if (is_Global(addr))
848                         ent = get_Global_entity(addr);
849                 fprintf(F, "%s", get_irn_opname(n));
850                 if (ent) fprintf(F, " %s", get_entity_name(ent));
851                 break;
852         }
853         case iro_Load:
854                 if (get_Load_align(n) == align_non_aligned)
855                         fprintf(F, "ua");
856                 fprintf(F, "%s[%s]", get_irn_opname(n), get_mode_name_ex(get_Load_mode(n), &bad));
857                 break;
858         case iro_Store:
859                 if (get_Store_align(n) == align_non_aligned)
860                         fprintf(F, "ua");
861                 fprintf(F, "%s", get_irn_opname(n));
862                 break;
863         case iro_Block:
864                 if (is_Block_dead(n))
865                         fputs("Dead ", F);
866                 if (n == get_irg_start_block(get_irn_irg(n)))
867                         fputs("Start ", F);
868                 if (n == get_irg_end_block(get_irn_irg(n)))
869                         fputs("End ", F);
870                 fprintf(F, "%s%s", get_irn_opname(n),
871                         dump_block_marker ? (get_Block_mark(n) ? "*" : "") : "");
872                 break;
873         case iro_Conv:
874                 if (get_Conv_strict(n))
875                         fprintf(F, "strict");
876                 fprintf(F, "%s", get_irn_opname(n));
877                 break;
878         case iro_Div:
879                 fprintf(F, "%s", get_irn_opname(n));
880                 if (get_Div_no_remainder(n))
881                         fprintf(F, "RL");
882                 fprintf(F, "[%s]", get_mode_name_ex(get_Div_resmode(n), &bad));
883                 break;
884         case iro_Mod:
885                 fprintf(F, "%s[%s]", get_irn_opname(n), get_mode_name_ex(get_Mod_resmode(n), &bad));
886                 break;
887         case iro_DivMod:
888                 fprintf(F, "%s[%s]", get_irn_opname(n), get_mode_name_ex(get_DivMod_resmode(n), &bad));
889                 break;
890         case iro_Builtin:
891                 fprintf(F, "%s[%s]", get_irn_opname(n), get_builtin_kind_name(get_Builtin_kind(n)));
892                 break;
893
894         default:
895 default_case:
896                 fprintf(F, "%s", get_irn_opname(n));
897
898         }  /* end switch */
899         return bad;
900 }
901
902 /**
903  * Dump the mode of a node n to a file F.
904  * Ignore modes that are "always known".
905  */
906 static int dump_node_mode(FILE *F, ir_node *n)
907 {
908         int             bad = 0;
909         const ir_op_ops *ops = get_op_ops(get_irn_op(n));
910         ir_opcode       iro;
911         ir_mode         *mode;
912
913         /* call the dump_node operation if available */
914         if (ops->dump_node)
915                 return ops->dump_node(n, F, dump_node_mode_txt);
916
917         /* default implementation */
918         iro = get_irn_opcode(n);
919         switch (iro) {
920         case iro_SymConst:
921         case iro_Sel:
922         case iro_End:
923         case iro_Return:
924         case iro_Free:
925         case iro_Sync:
926         case iro_Jmp:
927         case iro_NoMem:
928                 break;
929         default:
930                 mode = get_irn_mode(n);
931
932                 if (mode != NULL && mode != mode_BB && mode != mode_ANY && mode != mode_BAD &&
933                         (mode != mode_T || iro == iro_Proj))
934                         fprintf(F, "%s", get_mode_name_ex(mode, &bad));
935         }
936         return bad;
937 }
938
939 /**
940  * Dump the type of a node n to a file F if it's known.
941  */
942 static int dump_node_typeinfo(FILE *F, ir_node *n)
943 {
944         int bad = 0;
945
946         if (opt_dump_analysed_type_info) {
947                 if (get_irg_typeinfo_state(current_ir_graph) == ir_typeinfo_consistent  ||
948                         get_irg_typeinfo_state(current_ir_graph) == ir_typeinfo_inconsistent) {
949                         ir_type *tp = get_irn_typeinfo_type(n);
950                         if (tp != firm_none_type) {
951                                 ir_fprintf(F, "[%+F]", tp);
952                         } else {
953                                 fprintf(F, "[] ");
954                         }
955                 }
956         }
957         return bad;
958 }
959
960 typedef struct _pns_lookup {
961         long       nr;      /**< the proj number */
962         const char *name;   /**< the name of the Proj */
963 } pns_lookup_t;
964
965 typedef struct _proj_lookup {
966         ir_opcode          code;      /**< the opcode of the Proj predecessor */
967         unsigned           num_data;  /**< number of data entries */
968         const pns_lookup_t *data;     /**< the data */
969 } proj_lookup_t;
970
971 /** the lookup table for Proj(Start) names */
972 static const pns_lookup_t start_lut[] = {
973 #define X(a)    { pn_Start_##a, #a }
974         X(X_initial_exec),
975         X(P_frame_base),
976         X(P_tls),
977         X(T_args),
978 #undef X
979 };
980
981 /** the lookup table for Proj(Cond) names */
982 static const pns_lookup_t cond_lut[] = {
983 #define X(a)    { pn_Cond_##a, #a }
984         X(false),
985         X(true)
986 #undef X
987 };
988
989 /** the lookup table for Proj(Call) names */
990 static const pns_lookup_t call_lut[] = {
991 #define X(a)    { pn_Call_##a, #a }
992         X(M),
993         X(X_regular),
994         X(X_except),
995         X(T_result),
996         X(P_value_res_base)
997 #undef X
998 };
999
1000 /** the lookup table for Proj(Quot) names */
1001 static const pns_lookup_t quot_lut[] = {
1002 #define X(a)    { pn_Quot_##a, #a }
1003         X(M),
1004         X(X_regular),
1005         X(X_except),
1006         X(res)
1007 #undef X
1008 };
1009
1010 /** the lookup table for Proj(DivMod) names */
1011 static const pns_lookup_t divmod_lut[] = {
1012 #define X(a)    { pn_DivMod_##a, #a }
1013         X(M),
1014         X(X_regular),
1015         X(X_except),
1016         X(res_div),
1017         X(res_mod)
1018 #undef X
1019 };
1020
1021 /** the lookup table for Proj(Div) names */
1022 static const pns_lookup_t div_lut[] = {
1023 #define X(a)    { pn_Div_##a, #a }
1024         X(M),
1025         X(X_regular),
1026         X(X_except),
1027         X(res)
1028 #undef X
1029 };
1030
1031 /** the lookup table for Proj(Mod) names */
1032 static const pns_lookup_t mod_lut[] = {
1033 #define X(a)    { pn_Mod_##a, #a }
1034         X(M),
1035         X(X_regular),
1036         X(X_except),
1037         X(res)
1038 #undef X
1039 };
1040
1041 /** the lookup table for Proj(Load) names */
1042 static const pns_lookup_t load_lut[] = {
1043 #define X(a)    { pn_Load_##a, #a }
1044         X(M),
1045         X(X_regular),
1046         X(X_except),
1047         X(res)
1048 #undef X
1049 };
1050
1051 /** the lookup table for Proj(Store) names */
1052 static const pns_lookup_t store_lut[] = {
1053 #define X(a)    { pn_Store_##a, #a }
1054         X(M),
1055         X(X_regular),
1056         X(X_except)
1057 #undef X
1058 };
1059
1060 /** the lookup table for Proj(Alloc) names */
1061 static const pns_lookup_t alloc_lut[] = {
1062 #define X(a)    { pn_Alloc_##a, #a }
1063         X(M),
1064         X(X_regular),
1065         X(X_except),
1066         X(res)
1067 #undef X
1068 };
1069
1070 /** the lookup table for Proj(CopyB) names */
1071 static const pns_lookup_t copyb_lut[] = {
1072 #define X(a)    { pn_CopyB_##a, #a }
1073         X(M),
1074         X(X_regular),
1075         X(X_except),
1076 #undef X
1077 };
1078
1079 /** the lookup table for Proj(InstOf) names */
1080 static const pns_lookup_t instof_lut[] = {
1081 #define X(a)    { pn_InstOf_##a, #a }
1082         X(M),
1083         X(X_regular),
1084         X(X_except),
1085         X(res),
1086 #undef X
1087 };
1088
1089 /** the lookup table for Proj(Raise) names */
1090 static const pns_lookup_t raise_lut[] = {
1091 #define X(a)    { pn_Raise_##a, #a }
1092         X(M),
1093         X(X),
1094 #undef X
1095 };
1096
1097 /** the lookup table for Proj(Bound) names */
1098 static const pns_lookup_t bound_lut[] = {
1099 #define X(a)    { pn_Bound_##a, #a }
1100         X(M),
1101         X(X_regular),
1102         X(X_except),
1103         X(res),
1104 #undef X
1105 };
1106
1107 /** the Proj lookup table */
1108 static const proj_lookup_t proj_lut[] = {
1109 #define E(a)  ARRAY_SIZE(a), a
1110         { iro_Start,   E(start_lut) },
1111         { iro_Cond,    E(cond_lut) },
1112         { iro_Call,    E(call_lut) },
1113         { iro_Quot,    E(quot_lut) },
1114         { iro_DivMod,  E(divmod_lut) },
1115         { iro_Div,     E(div_lut) },
1116         { iro_Mod,     E(mod_lut) },
1117         { iro_Load,    E(load_lut) },
1118         { iro_Store,   E(store_lut) },
1119         { iro_Alloc,   E(alloc_lut) },
1120         { iro_CopyB,   E(copyb_lut) },
1121         { iro_InstOf,  E(instof_lut) },
1122         { iro_Raise,   E(raise_lut) },
1123         { iro_Bound,   E(bound_lut) }
1124 #undef E
1125 };
1126
1127 /**
1128  * Dump additional node attributes of some nodes to a file F.
1129  */
1130 static int dump_node_nodeattr(FILE *F, ir_node *n)
1131 {
1132         int bad = 0;
1133         ir_node *pred;
1134         ir_opcode code;
1135         long proj_nr;
1136         const ir_op_ops *ops = get_op_ops(get_irn_op(n));
1137
1138         /* call the dump_node operation if available */
1139         if (ops->dump_node)
1140                 return ops->dump_node(n, F, dump_node_nodeattr_txt);
1141
1142         switch (get_irn_opcode(n)) {
1143         case iro_Const:
1144                 ir_fprintf(F, "%T ", get_Const_tarval(n));
1145                 break;
1146
1147         case iro_Proj:
1148                 pred    = get_Proj_pred(n);
1149                 proj_nr = get_Proj_proj(n);
1150 #ifdef INTERPROCEDURAL_VIEW
1151 handle_lut:
1152 #endif
1153                 code    = get_irn_opcode(pred);
1154
1155                 if (code == iro_Cmp)
1156                         fprintf(F, "%s ", get_pnc_string(get_Proj_proj(n)));
1157                 else if (code == iro_Proj && get_irn_opcode(get_Proj_pred(pred)) == iro_Start)
1158                         fprintf(F, "Arg %ld ", proj_nr);
1159                 else if (code == iro_Cond && get_irn_mode(get_Cond_selector(pred)) != mode_b)
1160                         fprintf(F, "%ld ", proj_nr);
1161                 else {
1162                         unsigned i, j, f = 0;
1163
1164                         for (i = 0; i < ARRAY_SIZE(proj_lut); ++i) {
1165                                 if (code == proj_lut[i].code) {
1166                                         for (j = 0; j < proj_lut[i].num_data; ++j) {
1167                                                 if (proj_nr == proj_lut[i].data[j].nr) {
1168                                                         fprintf(F, "%s ", proj_lut[i].data[j].name);
1169                                                         f = 1;
1170                                                         break;
1171                                                 }
1172                                         }
1173                                         break;
1174                                 }
1175                         }
1176                         if (! f)
1177                                 fprintf(F, "%ld ", proj_nr);
1178                         if (code == iro_Cond && get_Cond_jmp_pred(pred) != COND_JMP_PRED_NONE) {
1179                                 if (proj_nr == pn_Cond_false && get_Cond_jmp_pred(pred) == COND_JMP_PRED_FALSE)
1180                                         fprintf(F, "PRED ");
1181                                 if (proj_nr == pn_Cond_true && get_Cond_jmp_pred(pred) == COND_JMP_PRED_TRUE)
1182                                         fprintf(F, "PRED ");
1183                         }
1184                 }
1185                 break;
1186         case iro_Filter:
1187                 proj_nr = get_Filter_proj(n);
1188 #ifdef INTERPROCEDURAL_VIEW
1189                 if (! get_interprocedural_view()) {
1190                         /* it's a Proj' */
1191                         pred    = get_Filter_pred(n);
1192                         goto handle_lut;
1193                 } else
1194 #endif
1195                         fprintf(F, "%ld ", proj_nr);
1196                 break;
1197         case iro_Sel:
1198                 fprintf(F, "%s ", get_ent_dump_name(get_Sel_entity(n)));
1199                 break;
1200         case iro_Cast:
1201                 ir_fprintf(F, "(%+F)", get_Cast_type(n));
1202                 break;
1203         case iro_Confirm:
1204                 fprintf(F, "%s ", get_pnc_string(get_Confirm_cmp(n)));
1205                 break;
1206         case iro_CopyB:
1207                 ir_fprintf(F, "(%+F)", get_CopyB_type(n));
1208                 break;
1209
1210         default:
1211                 ;
1212         } /* end switch */
1213
1214         return bad;
1215 }
1216
1217 #include <math.h>
1218 #include "execution_frequency.h"
1219
1220 static void dump_node_ana_vals(FILE *F, ir_node *n)
1221 {
1222         (void) F;
1223         (void) n;
1224         return;
1225 #ifdef INTERPROCEDURAL_VIEW
1226         fprintf(F, " %lf*(%2.0lf + %2.0lf) = %2.0lf ",
1227                 get_irn_exec_freq(n),
1228                 get_irg_method_execution_frequency(get_irn_irg(n)),
1229                 pow(5, get_irg_recursion_depth(get_irn_irg(n))),
1230                 get_irn_exec_freq(n) * (get_irg_method_execution_frequency(get_irn_irg(n)) + pow(5, get_irg_recursion_depth(get_irn_irg(n))))
1231         );
1232 #endif
1233 }
1234
1235
1236 /* Dumps a node label without the enclosing ". */
1237 int dump_node_label(FILE *F, ir_node *n)
1238 {
1239         int bad = 0;
1240
1241         bad |= dump_node_opcode(F, n);
1242         fputs(" ", F);
1243         bad |= dump_node_mode(F, n);
1244         fprintf(F, " ");
1245         bad |= dump_node_typeinfo(F, n);
1246         bad |= dump_node_nodeattr(F, n);
1247         if (dump_node_nr) {
1248                 fprintf(F, "%ld", get_irn_node_nr(n));
1249         }
1250         if (dump_node_idx_labels) {
1251                 fprintf(F, ":%u", get_irn_idx(n));
1252         }
1253
1254         return bad;
1255 }
1256
1257 /* Dumps the vrp information of a node to a file */
1258 int dump_vrp_info(FILE *F, ir_node *n)
1259 {
1260         vrp_attr *vrp = vrp_get_info(n);
1261         if (!n) {
1262                 return 1;
1263         }
1264
1265         fprintf(F, "range_type: %d\n", (int) vrp->range_type);
1266         if (vrp->range_type == VRP_RANGE || vrp->range_type ==
1267                         VRP_ANTIRANGE) {
1268                 ir_fprintf(F, "range_bottom: %F\n",vrp->range_bottom);
1269                 ir_fprintf(F, "range_top: %F\n", vrp->range_top);
1270         }
1271         ir_fprintf(F, "bits_set: %T\n", vrp->bits_set);
1272         ir_fprintf(F, "bits_not_set: %T\n", vrp->bits_not_set);
1273
1274         return 0;
1275 }
1276
1277 /**
1278  * Dumps the attributes of a node n into the file F.
1279  * Currently this is only the color of a node.
1280  */
1281 static void dump_node_vcgattr(FILE *F, ir_node *node, ir_node *local, int bad)
1282 {
1283         ir_mode *mode;
1284         ir_node *n;
1285
1286         if (bad) {
1287                 print_vcg_color(F, ird_color_error);
1288                 return;
1289         }
1290
1291         if (dump_node_vcgattr_hook)
1292                 if (dump_node_vcgattr_hook(F, node, local))
1293                         return;
1294
1295         n = local ? local : node;
1296
1297         if (overrule_nodecolor != ird_color_default_node) {
1298                 print_vcg_color(F, overrule_nodecolor);
1299                 return;
1300         }
1301
1302         mode = get_irn_mode(n);
1303         if (mode == mode_M) {
1304                 print_vcg_color(F, ird_color_memory);
1305                 return;
1306         }
1307         if (mode == mode_X) {
1308                 print_vcg_color(F, ird_color_controlflow);
1309                 return;
1310         }
1311
1312         switch (get_irn_opcode(n)) {
1313         case iro_Start:
1314         case iro_EndReg:
1315         case iro_EndExcept:
1316         case iro_End:
1317                 print_vcg_color(F, ird_color_anchor);
1318                 break;
1319         case iro_Bad:
1320                 print_vcg_color(F, ird_color_error);
1321                 break;
1322         case iro_Block:
1323                 if (is_Block_dead(n))
1324                         print_vcg_color(F, ird_color_dead_block_background);
1325                 else
1326                         print_vcg_color(F, ird_color_block_background);
1327                 break;
1328         case iro_Phi:
1329                 print_vcg_color(F, ird_color_phi);
1330                 break;
1331         case iro_Pin:
1332                 print_vcg_color(F, ird_color_memory);
1333                 break;
1334         case iro_SymConst:
1335         case iro_Const:
1336                 print_vcg_color(F, ird_color_const);
1337                 break;
1338         case iro_Proj:
1339                 print_vcg_color(F, ird_color_proj);
1340                 break;
1341         default: {
1342                 ir_op *op = get_irn_op(node);
1343
1344                 if (is_op_constlike(op)) {
1345                         print_vcg_color(F, ird_color_const);
1346                 } else if (is_op_uses_memory(op)) {
1347                         print_vcg_color(F, ird_color_uses_memory);
1348                 } else if (is_op_cfopcode(op) || is_op_forking(op)) {
1349                         print_vcg_color(F, ird_color_controlflow);
1350                 }
1351         }
1352         }
1353 }
1354
1355 /* Adds a new node info dumper callback. */
1356 void *dump_add_node_info_callback(dump_node_info_cb_t *cb, void *data)
1357 {
1358         hook_entry_t *info = XMALLOC(hook_entry_t);
1359
1360         info->hook._hook_node_info = cb;
1361         info->context              = data;
1362         register_hook(hook_node_info, info);
1363
1364         return info;
1365 }
1366
1367 /* Remove a previously added info dumper callback. */
1368 void dump_remv_node_info_callback(void *handle)
1369 {
1370         hook_entry_t *info = handle;
1371         unregister_hook(hook_node_info, info);
1372         xfree(info);
1373 }
1374
1375 /**
1376  * Dump the node information of a node n to a file F.
1377  */
1378 static inline int dump_node_info(FILE *F, ir_node *n)
1379 {
1380         int bad = 0;
1381         const ir_op_ops *ops = get_op_ops(get_irn_op(n));
1382
1383         fprintf(F, " info1: \"");
1384         bad = dump_irnode_to_file(F, n);
1385         /* call the dump_node operation if available */
1386         if (ops->dump_node)
1387                 bad = ops->dump_node(n, F, dump_node_info_txt);
1388
1389         /* allow additional info to be added */
1390         hook_node_info(F, n);
1391         fprintf(F, "\"\n");
1392
1393         return bad;
1394 }
1395
1396 static inline int is_constlike_node(const ir_node *node)
1397 {
1398         const ir_op *op = get_irn_op(node);
1399         return is_op_constlike(op);
1400 }
1401
1402
1403 /** outputs the predecessors of n, that are constants, local.  I.e.,
1404    generates a copy of the constant predecessors for each node called with. */
1405 static void dump_const_node_local(FILE *F, ir_node *n)
1406 {
1407         int i;
1408         if (!get_opt_dump_const_local()) return;
1409
1410         /* Use visited flag to avoid outputting nodes twice.
1411         initialize it first. */
1412         for (i = 0; i < get_irn_arity(n); i++) {
1413                 ir_node *con = get_irn_n(n, i);
1414                 if (is_constlike_node(con)) {
1415                         set_irn_visited(con, get_irg_visited(current_ir_graph) - 1);
1416                 }
1417         }
1418
1419         for (i = 0; i < get_irn_arity(n); i++) {
1420                 ir_node *con = get_irn_n(n, i);
1421                 if (is_constlike_node(con) && !irn_visited(con)) {
1422                         int bad = 0;
1423
1424                         mark_irn_visited(con);
1425                         /* Generate a new name for the node by appending the names of
1426                         n and const. */
1427                         fprintf(F, "node: {title: "); PRINT_CONSTID(n, con);
1428                         fprintf(F, " label: \"");
1429                         bad |= dump_node_label(F, con);
1430                         fprintf(F, "\" ");
1431                         bad |= dump_node_info(F, con);
1432                         dump_node_vcgattr(F, n, con, bad);
1433                         fprintf(F, "}\n");
1434                 }
1435         }
1436 }
1437
1438 /** If the block of an edge is a const_like node, dump it local with an edge */
1439 static void dump_const_block_local(FILE *F, ir_node *n)
1440 {
1441         ir_node *blk;
1442
1443         if (!get_opt_dump_const_local()) return;
1444
1445         blk = get_nodes_block(n);
1446         if (is_constlike_node(blk)) {
1447                 int bad = 0;
1448
1449                 /* Generate a new name for the node by appending the names of
1450                 n and blk. */
1451                 fprintf(F, "node: {title: \""); PRINT_CONSTBLKID(n, blk);
1452                 fprintf(F, "\" label: \"");
1453                 bad |= dump_node_label(F, blk);
1454                 fprintf(F, "\" ");
1455                 bad |= dump_node_info(F, blk);
1456                 dump_node_vcgattr(F, n, blk, bad);
1457                 fprintf(F, "}\n");
1458
1459                 fprintf(F, "edge: { sourcename: \"");
1460                 PRINT_NODEID(n);
1461                 fprintf(F, "\" targetname: \""); PRINT_CONSTBLKID(n,blk);
1462
1463                 if (dump_edge_vcgattr_hook) {
1464                         fprintf(F, "\" ");
1465                         if (dump_edge_vcgattr_hook(F, n, -1)) {
1466                                 fprintf(F, "}\n");
1467                                 return;
1468                         } else {
1469                                 fprintf(F, " " BLOCK_EDGE_ATTR "}\n");
1470                                 return;
1471                         }
1472                 }
1473
1474                 fprintf(F, "\" "   BLOCK_EDGE_ATTR "}\n");
1475         }
1476 }
1477
1478 /**
1479  * prints the error message of a node to a file F as info2.
1480  */
1481 static void print_node_error(FILE *F, const char *err_msg)
1482 {
1483         if (! err_msg)
1484                 return;
1485
1486         fprintf(F, " info2: \"%s\"", err_msg);
1487 }
1488
1489 /**
1490  * prints debug messages of a node to file F as info3.
1491  */
1492 static void print_dbg_info(FILE *F, dbg_info *dbg)
1493 {
1494         char buf[1024];
1495
1496         ir_dbg_info_snprint(buf, sizeof(buf), dbg);
1497         if (buf[0] != 0) {
1498                 fprintf(F, " info3: \"%s\"\n", buf);
1499         }
1500 }
1501
1502 static void print_type_dbg_info(FILE *F, type_dbg_info *dbg)
1503 {
1504         (void) F;
1505         (void) dbg;
1506         /* TODO */
1507 }
1508
1509 /**
1510  * Dump a node
1511  */
1512 static void dump_node(FILE *F, ir_node *n)
1513 {
1514         int bad = 0;
1515         const char *p;
1516
1517         if (get_opt_dump_const_local() && is_constlike_node(n))
1518                 return;
1519
1520         /* dump this node */
1521         fputs("node: {title: \"", F);
1522         PRINT_NODEID(n);
1523         fputs("\"", F);
1524
1525         fputs(" label: \"", F);
1526         bad = ! irn_vrfy_irg_dump(n, current_ir_graph, &p);
1527         bad |= dump_node_label(F, n);
1528         dump_node_ana_vals(F, n);
1529         //dump_node_ana_info(F, n);
1530         fputs("\" ", F);
1531
1532         if (get_op_flags(get_irn_op(n)) & irop_flag_dump_noinput) {
1533                 //fputs(" node_class:23", F);
1534         }
1535
1536         bad |= dump_node_info(F, n);
1537         print_node_error(F, p);
1538         print_dbg_info(F, get_irn_dbg_info(n));
1539         dump_node_vcgattr(F, n, NULL, bad);
1540         fputs("}\n", F);
1541         dump_const_node_local(F, n);
1542
1543         if (dump_node_edge_hook)
1544                 dump_node_edge_hook(F, n);
1545 }
1546
1547 /** dump the edge to the block this node belongs to */
1548 static void dump_ir_block_edge(FILE *F, ir_node *n)
1549 {
1550         if (get_opt_dump_const_local() && is_constlike_node(n)) return;
1551         if (is_no_Block(n)) {
1552                 ir_node *block = get_nodes_block(n);
1553
1554                 if (get_opt_dump_const_local() && is_constlike_node(block)) {
1555                         dump_const_block_local(F, n);
1556                 } else {
1557                         fprintf(F, "edge: { sourcename: \"");
1558                         PRINT_NODEID(n);
1559                         fprintf(F, "\" targetname: ");
1560                         fprintf(F, "\""); PRINT_NODEID(block); fprintf(F, "\"");
1561
1562                         if (dump_edge_vcgattr_hook) {
1563                                 fprintf(F, " ");
1564                                 if (dump_edge_vcgattr_hook(F, n, -1)) {
1565                                         fprintf(F, "}\n");
1566                                         return;
1567                                 } else {
1568                                         fprintf(F, " "  BLOCK_EDGE_ATTR "}\n");
1569                                         return;
1570                                 }
1571                         }
1572
1573                         fprintf(F, " "   BLOCK_EDGE_ATTR "}\n");
1574                 }
1575         }
1576 }
1577
1578 static void print_data_edge_vcgattr(FILE *F, ir_node *from, int to)
1579 {
1580         /*
1581          * do not use get_nodes_block() here, will fail
1582          * if the irg is not pinned.
1583          */
1584         if (get_irn_n(from, -1) == get_irn_n(get_irn_n(from, to), -1))
1585                 fprintf(F, INTRA_DATA_EDGE_ATTR);
1586         else
1587                 fprintf(F, INTER_DATA_EDGE_ATTR);
1588 }
1589
1590 static void print_mem_edge_vcgattr(FILE *F, ir_node *from, int to)
1591 {
1592         /*
1593          * do not use get_nodes_block() here, will fail
1594          * if the irg is not pinned.
1595          */
1596         if (get_irn_n(from, -1) == get_irn_n(get_irn_n(from, to), -1))
1597                 fprintf(F, INTRA_MEM_EDGE_ATTR);
1598         else
1599                 fprintf(F, INTER_MEM_EDGE_ATTR);
1600 }
1601
1602 /** Print the vcg attributes for the edge from node from to it's to's input */
1603 static void print_edge_vcgattr(FILE *F, ir_node *from, int to)
1604 {
1605         assert(from);
1606
1607         if (dump_edge_vcgattr_hook)
1608                 if (dump_edge_vcgattr_hook(F, from, to))
1609                         return;
1610
1611         if (dump_backedge_information_flag && is_backedge(from, to))
1612                 fprintf(F, BACK_EDGE_ATTR);
1613
1614         switch (get_irn_opcode(from)) {
1615         case iro_Block:
1616                 fprintf(F, CF_EDGE_ATTR);
1617                 break;
1618         case iro_Start:  break;
1619         case iro_End:
1620                 if (to >= 0) {
1621                         if (get_irn_mode(get_End_keepalive(from, to)) == mode_BB)
1622                                 fprintf(F, KEEP_ALIVE_CF_EDGE_ATTR);
1623                         else
1624                                 fprintf(F, KEEP_ALIVE_DF_EDGE_ATTR);
1625                 }
1626                 break;
1627         default:
1628                 if (is_Proj(from)) {
1629                         if (get_irn_mode(from) == mode_M)
1630                                 print_mem_edge_vcgattr(F, from, to);
1631                         else if (get_irn_mode(from) == mode_X)
1632                                 fprintf(F, CF_EDGE_ATTR);
1633                         else
1634                                 print_data_edge_vcgattr(F, from, to);
1635                 }
1636                 else if (get_irn_mode(get_irn_n(from, to)) == mode_M)
1637                         print_mem_edge_vcgattr(F, from, to);
1638                 else if (get_irn_mode(get_irn_n(from, to)) == mode_X)
1639                         fprintf(F, CF_EDGE_ATTR);
1640                 else
1641                         print_data_edge_vcgattr(F, from, to);
1642         }
1643 }
1644
1645 /** dump edges to our inputs */
1646 static void dump_ir_data_edges(FILE *F, ir_node *n)
1647 {
1648         int i, num;
1649
1650         if (!dump_keepalive && is_End(n)) {
1651                 /* the End node has only keep-alive edges */
1652                 return;
1653         }
1654
1655         /* dump the dependency edges. */
1656         num = get_irn_deps(n);
1657         for (i = 0; i < num; ++i) {
1658                 ir_node *dep = get_irn_dep(n, i);
1659
1660                 if (dep) {
1661                         print_node_edge_kind(F, n);
1662                         fprintf(F, "{sourcename: \"");
1663                         PRINT_NODEID(n);
1664                         fprintf(F, "\" targetname: ");
1665                         if ((get_opt_dump_const_local()) && is_constlike_node(dep)) {
1666                                 PRINT_CONSTID(n, dep);
1667                         } else {
1668                                 fprintf(F, "\"");
1669                                 PRINT_NODEID(dep);
1670                                 fprintf(F, "\"");
1671                         }
1672                         fprintf(F, " label: \"%d\" ", i);
1673                         fprintf(F, " color: darkgreen}\n");
1674                 }
1675         }
1676
1677         num = get_irn_arity(n);
1678         for (i = 0; i < num; i++) {
1679                 ir_node *pred = get_irn_n(n, i);
1680                 assert(pred);
1681
1682 #ifdef INTERPROCEDURAL_VIEW
1683                 if ((get_interprocedural_view() && get_irn_visited(pred) < get_irn_visited(n)))
1684                         continue; /* pred not dumped */
1685 #endif
1686
1687                 if (dump_backedge_information_flag && is_backedge(n, i))
1688                         fprintf(F, "backedge: {sourcename: \"");
1689                 else {
1690                         print_node_edge_kind(F, n);
1691                         fprintf(F, "{sourcename: \"");
1692                 }
1693                 PRINT_NODEID(n);
1694                 fprintf(F, "\" targetname: ");
1695                 if ((get_opt_dump_const_local()) && is_constlike_node(pred)) {
1696                         PRINT_CONSTID(n, pred);
1697                 } else {
1698                         fprintf(F, "\""); PRINT_NODEID(pred); fprintf(F, "\"");
1699                 }
1700                 fprintf(F, " label: \"%d\" ", i);
1701                 print_edge_vcgattr(F, n, i);
1702                 fprintf(F, "}\n");
1703         }
1704
1705         if (dump_macro_block_edges && is_Block(n)) {
1706                 ir_node *mb = get_Block_MacroBlock(n);
1707                 fprintf(F, "edge: {sourcename: \"");
1708                 PRINT_NODEID(n);
1709                 fprintf(F, "\" targetname: \"");
1710                 PRINT_NODEID(mb);
1711                 fprintf(F, "\" label: \"mb\" " MACROBLOCK_EDGE_ATTR);
1712                 fprintf(F, "}\n");
1713         }
1714 }
1715
1716 /**
1717  * Dump the ir_edges
1718  */
1719 static void dump_ir_edges(FILE *F, ir_node *n)
1720 {
1721         const ir_edge_t *edge;
1722         int i = 0;
1723
1724         foreach_out_edge(n, edge) {
1725                 ir_node *succ = get_edge_src_irn(edge);
1726
1727                 print_node_edge_kind(F, succ);
1728                 fprintf(F, "{sourcename: \"");
1729                 PRINT_NODEID(n);
1730                 fprintf(F, "\" targetname: \"");
1731                 PRINT_NODEID(succ);
1732                 fprintf(F, "\"");
1733
1734                 fprintf(F, " label: \"%d\" ", i);
1735                 fprintf(F, OUT_EDGE_ATTR);
1736                 fprintf(F, "}\n");
1737                 ++i;
1738         }
1739 }
1740
1741
1742 /** Dumps a node and its edges but not the block edge  */
1743 static void dump_node_wo_blockedge(ir_node *n, void *env)
1744 {
1745         FILE *F = env;
1746         dump_node(F, n);
1747         dump_ir_data_edges(F, n);
1748 }
1749
1750 /** Dumps a node and its edges. */
1751 static void dump_whole_node(ir_node *n, void *env)
1752 {
1753         FILE *F = env;
1754         dump_node_wo_blockedge(n, env);
1755         if (!node_floats(n))
1756                 dump_ir_block_edge(F, n);
1757         if (dump_new_edges_flag && edges_activated(current_ir_graph))
1758                 dump_ir_edges(F, n);
1759 }
1760
1761 /** Dumps a const-like node. */
1762 static void dump_const_node(ir_node *n, void *env)
1763 {
1764         if (is_Block(n)) return;
1765         dump_node_wo_blockedge(n, env);
1766 }
1767
1768 /***********************************************************************/
1769 /* the following routines dump the nodes/irgs bracketed to graphs.     */
1770 /***********************************************************************/
1771
1772 /** Dumps a constant expression as entity initializer, array bound ...
1773  */
1774 static void dump_const_expression(FILE *F, ir_node *value)
1775 {
1776         ir_graph *rem = current_ir_graph;
1777         int rem_dump_const_local = dump_const_local;
1778         dump_const_local = 0;
1779         current_ir_graph = get_const_code_irg();
1780         irg_walk(value, dump_const_node, NULL, F);
1781         /* Decrease visited flag so that we walk with the same flag for the next
1782            expression.  This guarantees that we don't dump the same node twice,
1783            as for const expressions cse is performed to save memory. */
1784         set_irg_visited(current_ir_graph, get_irg_visited(current_ir_graph) -1);
1785         current_ir_graph = rem;
1786         dump_const_local = rem_dump_const_local;
1787 }
1788
1789 /** Dump a block as graph containing its nodes.
1790  *
1791  *  Expects to find nodes belonging to the block as list in its
1792  *  link field.
1793  *  Dumps the edges of all nodes including itself. */
1794 static void dump_whole_block(FILE *F, ir_node *block)
1795 {
1796         ir_node *node;
1797         ird_color_t color = ird_color_block_background;
1798
1799         assert(is_Block(block));
1800
1801         fprintf(F, "graph: { title: \"");
1802         PRINT_NODEID(block);
1803         fprintf(F, "\"  label: \"");
1804         dump_node_label(F, block);
1805
1806         /* colorize blocks */
1807         if (! get_Block_matured(block))
1808                 color = ird_color_block_background;
1809         if (is_Block_dead(block))
1810                 color = ird_color_dead_block_background;
1811
1812         fprintf(F, "\" status:clustered ");
1813         print_vcg_color(F, color);
1814         fprintf(F, "\n");
1815
1816         /* yComp can show attributes for blocks, XVCG parses but ignores them */
1817         dump_node_info(F, block);
1818         print_dbg_info(F, get_irn_dbg_info(block));
1819
1820         /* dump the blocks edges */
1821         dump_ir_data_edges(F, block);
1822
1823         if (dump_block_edge_hook)
1824                 dump_block_edge_hook(F, block);
1825
1826         /* dump the nodes that go into the block */
1827         for (node = ird_get_irn_link(block); node; node = ird_get_irn_link(node)) {
1828                 dump_node(F, node);
1829                 dump_ir_data_edges(F, node);
1830         }
1831
1832         /* Close the vcg information for the block */
1833         fprintf(F, "}\n");
1834         dump_const_node_local(F, block);
1835         fprintf(F, "\n");
1836 }
1837
1838 /** dumps a graph block-wise. Expects all blockless nodes in arr in irgs link.
1839  *  The outermost nodes: blocks and nodes not op_pin_state_pinned, Bad, Unknown. */
1840 static void dump_block_graph(FILE *F, ir_graph *irg)
1841 {
1842         int i;
1843         ir_graph *rem = current_ir_graph;
1844         ir_node **arr = ird_get_irg_link(irg);
1845         current_ir_graph = irg;
1846
1847         for (i = ARR_LEN(arr) - 1; i >= 0; --i) {
1848                 ir_node * node = arr[i];
1849                 if (is_Block(node)) {
1850                 /* Dumps the block and all the nodes in the block, which are to
1851                         be found in Block->link. */
1852                         dump_whole_block(F, node);
1853                 } else {
1854                         /* Nodes that are not in a Block. */
1855                         dump_node(F, node);
1856                         if (!node_floats(node) && is_Bad(get_nodes_block(node))) {
1857                                 dump_const_block_local(F, node);
1858                         }
1859                         dump_ir_data_edges(F, node);
1860                 }
1861                 if (dump_new_edges_flag && edges_activated(irg))
1862                         dump_ir_edges(F, node);
1863         }
1864
1865         if (dump_loop_information_flag && (get_irg_loopinfo_state(irg) & loopinfo_valid))
1866                 dump_loop_nodes_into_graph(F, irg);
1867
1868         current_ir_graph = rem;
1869 }
1870
1871 /**
1872  * Dump the info for an irg.
1873  * Parsed by XVCG but not shown. use yComp.
1874  */
1875 static void dump_graph_info(FILE *F, ir_graph *irg)
1876 {
1877         fprintf(F, "info1: \"");
1878         dump_entity_to_file(F, get_irg_entity(irg), dump_verbosity_entattrs | dump_verbosity_entconsts);
1879         fprintf(F, "\"\n");
1880 }
1881
1882 /** Dumps an irg as a graph clustered by block nodes.
1883  *  If interprocedural view edges can point to nodes out of this graph.
1884  */
1885 static void dump_graph_from_list(FILE *F, ir_graph *irg)
1886 {
1887         ir_entity *ent = get_irg_entity(irg);
1888
1889         fprintf(F, "graph: { title: \"");
1890         PRINT_IRGID(irg);
1891         fprintf(F, "\" label: \"%s\" status:clustered color:%s \n",
1892           get_ent_dump_name(ent), color_names[ird_color_prog_background]);
1893
1894         dump_graph_info(F, irg);
1895         print_dbg_info(F, get_entity_dbg_info(ent));
1896
1897         dump_block_graph(F, irg);
1898
1899         /* Close the vcg information for the irg */
1900         fprintf(F, "}\n\n");
1901 }
1902
1903 /** dumps a graph extended block-wise. Expects all blockless nodes in arr in irgs link.
1904  *  The outermost nodes: blocks and nodes not op_pin_state_pinned, Bad, Unknown. */
1905 static void dump_extblock_graph(FILE *F, ir_graph *irg)
1906 {
1907         int i;
1908         ir_graph *rem = current_ir_graph;
1909         ir_extblk **arr = ird_get_irg_link(irg);
1910         current_ir_graph = irg;
1911
1912         for (i = ARR_LEN(arr) - 1; i >= 0; --i) {
1913                 ir_extblk *extbb = arr[i];
1914                 ir_node *leader = get_extbb_leader(extbb);
1915                 int j;
1916
1917                 fprintf(F, "graph: { title: \"");
1918                 PRINT_EXTBBID(leader);
1919                 fprintf(F, "\"  label: \"ExtBB %ld\" status:clustered color:lightgreen\n",
1920                         get_irn_node_nr(leader));
1921
1922                 for (j = ARR_LEN(extbb->blks) - 1; j >= 0; --j) {
1923                         ir_node * node = extbb->blks[j];
1924                         if (is_Block(node)) {
1925                         /* Dumps the block and all the nodes in the block, which are to
1926                                 be found in Block->link. */
1927                                 dump_whole_block(F, node);
1928                         } else {
1929                                 /* Nodes that are not in a Block. */
1930                                 dump_node(F, node);
1931                                 if (is_Bad(get_nodes_block(node)) && !node_floats(node)) {
1932                                         dump_const_block_local(F, node);
1933                                 }
1934                                 dump_ir_data_edges(F, node);
1935                         }
1936                 }
1937                 fprintf(F, "}\n");
1938         }
1939
1940         if (dump_loop_information_flag && (get_irg_loopinfo_state(irg) & loopinfo_valid))
1941                 dump_loop_nodes_into_graph(F, irg);
1942
1943         current_ir_graph = rem;
1944         free_extbb(irg);
1945 }
1946
1947
1948 /*******************************************************************/
1949 /* Basic type and entity nodes and edges.                          */
1950 /*******************************************************************/
1951
1952 /** dumps the edges between nodes and their type or entity attributes. */
1953 static void dump_node2type_edges(ir_node *n, void *env)
1954 {
1955         FILE *F = env;
1956         assert(n);
1957
1958         switch (get_irn_opcode(n)) {
1959         case iro_Const :
1960                 /* @@@ some consts have an entity */
1961                 break;
1962         case iro_SymConst:
1963                 if (SYMCONST_HAS_TYPE(get_SymConst_kind(n)))
1964                         print_node_type_edge(F,n,get_SymConst_type(n),NODE2TYPE_EDGE_ATTR);
1965                 break;
1966         case iro_Sel:
1967                 print_node_ent_edge(F,n,get_Sel_entity(n),NODE2TYPE_EDGE_ATTR);
1968                 break;
1969         case iro_Call:
1970                 print_node_type_edge(F,n,get_Call_type(n),NODE2TYPE_EDGE_ATTR);
1971                 break;
1972         case iro_Alloc:
1973                 print_node_type_edge(F,n,get_Alloc_type(n),NODE2TYPE_EDGE_ATTR);
1974                 break;
1975         case iro_Free:
1976                 print_node_type_edge(F,n,get_Free_type(n),NODE2TYPE_EDGE_ATTR);
1977                 break;
1978         case iro_Cast:
1979                 print_node_type_edge(F,n,get_Cast_type(n),NODE2TYPE_EDGE_ATTR);
1980                 break;
1981         default:
1982                 break;
1983         }
1984 }
1985
1986 #if 0
1987 static int print_type_info(FILE *F, ir_type *tp)
1988 {
1989         int bad = 0;
1990
1991         if (get_type_state(tp) == layout_undefined) {
1992                 fprintf(F, "state: layout_undefined\n");
1993         } else {
1994                 fprintf(F, "state: layout_fixed,\n");
1995         }
1996         if (get_type_mode(tp))
1997                 fprintf(F, "mode: %s,\n", get_mode_name_ex(get_type_mode(tp), &bad));
1998         fprintf(F, "size: %db,\n", get_type_size_bits(tp));
1999
2000         return bad;
2001 }
2002
2003 static void print_typespecific_info(FILE *F, ir_type *tp)
2004 {
2005         switch (get_type_tpop_code(tp)) {
2006         case tpo_class:
2007                 fprintf(F, "peculiarity: %s\n", get_peculiarity_string(get_class_peculiarity(tp)));
2008                 break;
2009         case tpo_struct:
2010                 break;
2011         case tpo_method:
2012                 fprintf(F, "variadicity: %s\n", get_variadicity_name(get_method_variadicity(tp)));
2013                 fprintf(F, "params: %d\n", get_method_n_params(tp));
2014                 fprintf(F, "results: %d\n", get_method_n_ress(tp));
2015                 break;
2016         case tpo_union:
2017                 break;
2018         case tpo_array:
2019                 break;
2020         case tpo_enumeration:
2021                 break;
2022         case tpo_pointer:
2023                 break;
2024         case tpo_primitive:
2025                 break;
2026         default:
2027                 break;
2028         } /* switch type */
2029 }
2030 #endif
2031
2032 static void print_typespecific_vcgattr(FILE *F, ir_type *tp)
2033 {
2034         switch (get_type_tpop_code(tp)) {
2035         case tpo_class:
2036                 fprintf(F, " " TYPE_CLASS_NODE_ATTR);
2037                 break;
2038         case tpo_struct:
2039                 fprintf(F, " " TYPE_METH_NODE_ATTR);
2040                 break;
2041         case tpo_method:
2042                 break;
2043         case tpo_union:
2044                 break;
2045         case tpo_array:
2046                 break;
2047         case tpo_enumeration:
2048                 break;
2049         case tpo_pointer:
2050                 break;
2051         case tpo_primitive:
2052                 break;
2053         default:
2054                 break;
2055         } /* switch type */
2056 }
2057
2058 int dump_type_node(FILE *F, ir_type *tp)
2059 {
2060         int bad = 0;
2061
2062         fprintf(F, "node: {title: ");
2063         PRINT_TYPEID(tp);
2064         fprintf(F, " label: \"%s ", get_type_tpop_name(tp));
2065         if (tp->dbi != NULL) {
2066                 char buf[256];
2067                 ir_print_type(buf, sizeof(buf), tp);
2068                 fprintf(F, "'%s'", buf);
2069         } else {
2070                 ir_fprintf(F, "%+F", tp);
2071         }
2072         fputs("\" info1: \"", F);
2073         dump_type_to_file(F, tp, dump_verbosity_max);
2074         fprintf(F, "\"\n");
2075         print_type_dbg_info(F, get_type_dbg_info(tp));
2076         print_typespecific_vcgattr(F, tp);
2077         fprintf(F, "}\n");
2078
2079         return bad;
2080 }
2081
2082
2083 static void dump_entity_node(FILE *F, ir_entity *ent)
2084 {
2085         fprintf(F, "node: {title: \"");
2086         PRINT_ENTID(ent); fprintf(F, "\"");
2087         fprintf(F, " label: ");
2088         fprintf(F, "\"%s\" ", get_ent_dump_name(ent));
2089
2090         print_vcg_color(F, ird_color_entity);
2091         fprintf(F, "\n info1: \"");
2092
2093         dump_entity_to_file(F, ent, dump_verbosity_entattrs | dump_verbosity_entconsts);
2094
2095         fprintf(F, "\"\n");
2096         print_dbg_info(F, get_entity_dbg_info(ent));
2097         fprintf(F, "}\n");
2098 }
2099
2100 static void dump_enum_item(FILE *F, ir_type *tp, int pos)
2101 {
2102         char buf[1024];
2103         ir_enum_const *ec = get_enumeration_const(tp, pos);
2104         ident         *id = get_enumeration_const_nameid(ec);
2105         tarval        *tv = get_enumeration_value(ec);
2106
2107         if (tv)
2108                 tarval_snprintf(buf, sizeof(buf), tv);
2109         else
2110                 strncpy(buf, "<not set>", sizeof(buf));
2111         fprintf(F, "node: {title: \"");
2112         PRINT_ITEMID(tp, pos); fprintf(F, "\"");
2113         fprintf(F, " label: ");
2114         fprintf(F, "\"enum item %s\" " ENUM_ITEM_NODE_ATTR, get_id_str(id));
2115         fprintf(F, "\n info1: \"value: %s\"}\n", buf);
2116 }
2117
2118 /**
2119  * Dumps a new style initializer.
2120  */
2121 static void dump_entity_initializer(FILE *F, const ir_entity *ent)
2122 {
2123         /* TODO */
2124         (void) F;
2125         (void) ent;
2126 }
2127
2128 /** Dumps a type or entity and it's edges. */
2129 static void dump_type_info(type_or_ent tore, void *env)
2130 {
2131         FILE *F = env;
2132         int i = 0;  /* to shutup gcc */
2133
2134         /* dump this type or entity */
2135
2136         switch (get_kind(tore.ent)) {
2137         case k_entity: {
2138                 ir_entity *ent = tore.ent;
2139                 ir_node *value;
2140                 /* The node */
2141                 dump_entity_node(F, ent);
2142                 /* The Edges */
2143                 /* skip this to reduce graph.  Member edge of type is parallel to this edge. *
2144                 fprintf(F, "edge: { sourcename: \"%p\" targetname: \"%p\" "
2145                 ENT_OWN_EDGE_ATTR "}\n", ent, get_entity_owner(ent));*/
2146                 print_ent_type_edge(F,ent, get_entity_type(ent), ENT_TYPE_EDGE_ATTR);
2147                 if (is_Class_type(get_entity_owner(ent))) {
2148                         for (i = get_entity_n_overwrites(ent) - 1; i >= 0; --i)
2149                                 print_ent_ent_edge(F,ent, get_entity_overwrites(ent, i), 0, -1, ENT_OVERWRITES_EDGE_ATTR);
2150                 }
2151                 /* attached subgraphs */
2152                 if (const_entities) {
2153                         if (ent->initializer != NULL) {
2154                                 /* new style initializers */
2155                                 dump_entity_initializer(F, ent);
2156                         } else if (entity_has_compound_ent_values(ent)) {
2157                                 /* old style compound entity values */
2158                                 for (i = get_compound_ent_n_values(ent) - 1; i >= 0; --i) {
2159                                         value = get_compound_ent_value(ent, i);
2160                                         if (value) {
2161                                                 print_ent_node_edge(F, ent, value, ENT_VALUE_EDGE_ATTR, i);
2162                                                 dump_const_expression(F, value);
2163                                                 print_ent_ent_edge(F, ent, get_compound_ent_value_member(ent, i), 0, -1, ENT_CORR_EDGE_ATTR, i);
2164                                                 /*
2165                                                 fprintf(F, "edge: { sourcename: \"%p\" targetname: \"%p\" "
2166                                                 ENT_CORR_EDGE_ATTR  "}\n", GET_ENTID(ent),
2167                                                 get_compound_ent_value_member(ent, i), i);
2168                                                 */
2169                                         }
2170                                 }
2171                         }
2172                 }
2173                 break;
2174         }
2175         case k_type: {
2176                 ir_type *tp = tore.typ;
2177                 dump_type_node(F, tp);
2178                 /* and now the edges */
2179                 switch (get_type_tpop_code(tp)) {
2180                 case tpo_class:
2181                         for (i = get_class_n_supertypes(tp) - 1; i >= 0; --i)
2182                                 print_type_type_edge(F, tp, get_class_supertype(tp, i), TYPE_SUPER_EDGE_ATTR);
2183                         for (i = get_class_n_members(tp) - 1; i >= 0; --i)
2184                                 print_type_ent_edge(F, tp, get_class_member(tp, i), TYPE_MEMBER_EDGE_ATTR);
2185                         break;
2186                 case tpo_struct:
2187                         for (i = get_struct_n_members(tp) - 1; i >= 0; --i)
2188                                 print_type_ent_edge(F, tp, get_struct_member(tp, i), TYPE_MEMBER_EDGE_ATTR);
2189                         break;
2190                 case tpo_method:
2191                         for (i = get_method_n_params(tp) - 1; i >= 0; --i)
2192                                 print_type_type_edge(F, tp, get_method_param_type(tp, i), METH_PAR_EDGE_ATTR,i);
2193                         for (i = get_method_n_ress(tp) - 1; i >= 0; --i)
2194                                 print_type_type_edge(F, tp, get_method_res_type(tp, i), METH_RES_EDGE_ATTR,i);
2195                         break;
2196                 case tpo_union:
2197                         for (i = get_union_n_members(tp) - 1; i >= 0; --i)
2198                                 print_type_ent_edge(F, tp, get_union_member(tp, i), UNION_EDGE_ATTR);
2199                         break;
2200                 case tpo_array:
2201                         print_type_type_edge(F, tp, get_array_element_type(tp), ARR_ELT_TYPE_EDGE_ATTR);
2202                         print_type_ent_edge(F, tp, get_array_element_entity(tp), ARR_ENT_EDGE_ATTR);
2203                         for (i = get_array_n_dimensions(tp) - 1; i >= 0; --i) {
2204                                 ir_node *upper = get_array_upper_bound(tp, i);
2205                                 ir_node *lower = get_array_lower_bound(tp, i);
2206                                 print_node_type_edge(F, upper, tp, "label: \"upper %d\"", get_array_order(tp, i));
2207                                 print_node_type_edge(F, lower, tp, "label: \"lower %d\"", get_array_order(tp, i));
2208                                 dump_const_expression(F, upper);
2209                                 dump_const_expression(F, lower);
2210                         }
2211                         break;
2212                 case tpo_enumeration:
2213                         for (i = get_enumeration_n_enums(tp) - 1; i >= 0; --i) {
2214                                 dump_enum_item(F, tp, i);
2215                                 print_enum_item_edge(F, tp, i, "label: \"item %d\"", i);
2216                         }
2217                         break;
2218                 case tpo_pointer:
2219                         print_type_type_edge(F, tp, get_pointer_points_to_type(tp), PTR_PTS_TO_EDGE_ATTR);
2220                         break;
2221                 case tpo_primitive:
2222                         break;
2223                 default:
2224                         break;
2225                 } /* switch type */
2226                 break; /* case k_type */
2227         }
2228         default:
2229                 printf(" *** irdump,  dump_type_info(l.%i), faulty type.\n", __LINE__);
2230         } /* switch kind_or_entity */
2231 }
2232
2233 typedef struct _h_env {
2234         int dump_ent;
2235         FILE *f;
2236 } h_env_t;
2237
2238 /** For dumping class hierarchies.
2239  * Dumps a class type node and a superclass edge.
2240  * If env->dump_ent dumps entities of classes and overwrites edges.
2241  */
2242 static void dump_class_hierarchy_node(type_or_ent tore, void *ctx)
2243 {
2244         h_env_t *env = ctx;
2245         FILE *F = env->f;
2246         int i = 0;  /* to shutup gcc */
2247
2248         /* dump this type or entity */
2249         switch (get_kind(tore.ent)) {
2250         case k_entity: {
2251                 ir_entity *ent = tore.ent;
2252                 if (get_entity_owner(ent) == get_glob_type()) break;
2253                 if (!is_Method_type(get_entity_type(ent)))
2254                         break;  /* GL */
2255                 if (env->dump_ent && is_Class_type(get_entity_owner(ent))) {
2256                         /* The node */
2257                         dump_entity_node(F, ent);
2258                         /* The edges */
2259                         print_type_ent_edge(F, get_entity_owner(ent), ent, TYPE_MEMBER_EDGE_ATTR);
2260                         for (i = get_entity_n_overwrites(ent) - 1; i >= 0; --i)
2261                                 print_ent_ent_edge(F, get_entity_overwrites(ent, i), ent, 0, -1, ENT_OVERWRITES_EDGE_ATTR);
2262                 }
2263                 break;
2264         }
2265         case k_type: {
2266                 ir_type *tp = tore.typ;
2267                 if (tp == get_glob_type())
2268                         break;
2269                 switch (get_type_tpop_code(tp)) {
2270                 case tpo_class:
2271                         dump_type_node(F, tp);
2272                         /* and now the edges */
2273                         for (i = get_class_n_supertypes(tp) - 1; i >= 0; --i) {
2274                                 print_type_type_edge(F,tp,get_class_supertype(tp, i),TYPE_SUPER_EDGE_ATTR);
2275                         }
2276                         break;
2277                 default: break;
2278                 } /* switch type */
2279                 break; /* case k_type */
2280         }
2281         default:
2282                 printf(" *** irdump,  dump_class_hierarchy_node(l.%i), faulty type.\n", __LINE__);
2283         } /* switch kind_or_entity */
2284 }
2285
2286 /*******************************************************************/
2287 /* dump analysis information that is expressed in graph terms.     */
2288 /*******************************************************************/
2289
2290 /* dump out edges */
2291 static void dump_out_edge(ir_node *n, void *env)
2292 {
2293         FILE *F = env;
2294         int i;
2295         for (i = get_irn_n_outs(n) - 1; i >= 0; --i) {
2296                 ir_node *succ = get_irn_out(n, i);
2297                 assert(succ);
2298                 print_node_edge_kind(F, succ);
2299                 fprintf(F, "{sourcename: \"");
2300                 PRINT_NODEID(n);
2301                 fprintf(F, "\" targetname: \"");
2302                 PRINT_NODEID(succ);
2303                 fprintf(F, "\" color: red linestyle: dashed");
2304                 fprintf(F, "}\n");
2305         }
2306 }
2307
2308 static inline void dump_loop_label(FILE *F, ir_loop *loop)
2309 {
2310         fprintf(F, "loop %d, %d sons, %d nodes",
2311                 get_loop_depth(loop), get_loop_n_sons(loop), get_loop_n_nodes(loop));
2312 }
2313
2314 static inline void dump_loop_info(FILE *F, ir_loop *loop)
2315 {
2316         fprintf(F, " info1: \"");
2317         fprintf(F, " loop nr: %d", get_loop_loop_nr(loop));
2318 #ifdef DEBUG_libfirm   /* GL @@@ debug analyses */
2319         fprintf(F, "\n The loop was analyzed %d times.", PTR_TO_INT(get_loop_link(loop)));
2320 #endif
2321         fprintf(F, "\"");
2322 }
2323
2324 static inline void dump_loop_node(FILE *F, ir_loop *loop)
2325 {
2326         fprintf(F, "node: {title: \"");
2327         PRINT_LOOPID(loop);
2328         fprintf(F, "\" label: \"");
2329         dump_loop_label(F, loop);
2330         fprintf(F, "\" ");
2331         dump_loop_info(F, loop);
2332         fprintf(F, "}\n");
2333 }
2334
2335 static inline void dump_loop_node_edge(FILE *F, ir_loop *loop, int i)
2336 {
2337         assert(loop);
2338         fprintf(F, "edge: {sourcename: \"");
2339         PRINT_LOOPID(loop);
2340         fprintf(F, "\" targetname: \"");
2341         PRINT_NODEID(get_loop_node(loop, i));
2342         fprintf(F, "\" color: green");
2343         fprintf(F, "}\n");
2344 }
2345
2346 static inline void dump_loop_son_edge(FILE *F, ir_loop *loop, int i)
2347 {
2348         assert(loop);
2349         fprintf(F, "edge: {sourcename: \"");
2350         PRINT_LOOPID(loop);
2351         fprintf(F, "\" targetname: \"");
2352         PRINT_LOOPID(get_loop_son(loop, i));
2353         fprintf(F, "\" color: darkgreen label: \"%d\"}\n",
2354                 get_loop_element_pos(loop, get_loop_son(loop, i)));
2355 }
2356
2357 static void dump_loops(FILE *F, ir_loop *loop)
2358 {
2359         int i;
2360         /* dump this loop node */
2361         dump_loop_node(F, loop);
2362
2363         /* dump edges to nodes in loop -- only if it is a real loop */
2364         if (get_loop_depth(loop) != 0) {
2365                 for (i = get_loop_n_nodes(loop) - 1; i >= 0; --i) {
2366                         dump_loop_node_edge(F, loop, i);
2367                 }
2368         }
2369         for (i = get_loop_n_sons(loop) - 1; i >= 0; --i) {
2370                 dump_loops(F, get_loop_son(loop, i));
2371                 dump_loop_son_edge(F, loop, i);
2372         }
2373 }
2374
2375 static inline void dump_loop_nodes_into_graph(FILE *F, ir_graph *irg)
2376 {
2377         ir_loop *loop = get_irg_loop(irg);
2378
2379         if (loop != NULL) {
2380                 ir_graph *rem = current_ir_graph;
2381                 current_ir_graph = irg;
2382
2383                 dump_loops(F, loop);
2384
2385                 current_ir_graph = rem;
2386         }
2387 }
2388
2389
2390 /**
2391  * dumps the VCG header
2392  */
2393 void dump_vcg_header(FILE *F, const char *name, const char *layout, const char *orientation)
2394 {
2395         int   i;
2396         char *label;
2397
2398         init_colors();
2399
2400         label = edge_label ? "yes" : "no";
2401         if (! layout)     layout = "Compilergraph";
2402         if (!orientation) orientation = "bottom_to_top";
2403
2404         /* print header */
2405         fprintf(F,
2406                 "graph: { title: \"ir graph of %s\"\n"
2407                 "display_edge_labels: %s\n"
2408                 "layoutalgorithm: mindepth //$ \"%s\"\n"
2409                 "manhattan_edges: yes\n"
2410                 "port_sharing: no\n"
2411                 "orientation: %s\n"
2412                 "classname 1:  \"intrablock Data\"\n"
2413                 "classname 2:  \"Block\"\n"
2414                 "classname 3:  \"Entity type\"\n"
2415                 "classname 4:  \"Entity owner\"\n"
2416                 "classname 5:  \"Method Param\"\n"
2417                 "classname 6:  \"Method Res\"\n"
2418                 "classname 7:  \"Super\"\n"
2419                 "classname 8:  \"Union\"\n"
2420                 "classname 9:  \"Points-to\"\n"
2421                 "classname 10: \"Array Element Type\"\n"
2422                 "classname 11: \"Overwrites\"\n"
2423                 "classname 12: \"Member\"\n"
2424                 "classname 13: \"Control Flow\"\n"
2425                 "classname 14: \"intrablock Memory\"\n"
2426                 "classname 15: \"Dominators\"\n"
2427                 "classname 16: \"interblock Data\"\n"
2428                 "classname 17: \"interblock Memory\"\n"
2429                 "classname 18: \"Exception Control Flow for Interval Analysis\"\n"
2430                 "classname 19: \"Postdominators\"\n"
2431                 "classname 20: \"Keep Alive\"\n"
2432                 "classname 21: \"Out Edges\"\n"
2433                 "classname 22: \"Macro Block Edges\"\n"
2434                 //"classname 23: \"NoInput Nodes\"\n"
2435                 "infoname 1: \"Attribute\"\n"
2436                 "infoname 2: \"Verification errors\"\n"
2437                 "infoname 3: \"Debug info\"\n",
2438                 name, label, layout, orientation);
2439
2440         for (i = 0; i < ird_color_count; ++i) {
2441                 if (color_rgb[i] != NULL) {
2442                         fprintf(F, "colorentry %s: %s\n", color_names[i], color_rgb[i]);
2443                 }
2444         }
2445         fprintf(F, "\n");        /* a separator */
2446 }
2447
2448 /**
2449  * open a vcg file
2450  *
2451  * @param irg     The graph to be dumped
2452  * @param suffix1 first filename suffix
2453  * @param suffix2 second filename suffix
2454  */
2455 FILE *vcg_open(const ir_graph *irg, const char *suffix1, const char *suffix2)
2456 {
2457         FILE *F;
2458         const char *nm = get_irg_dump_name(irg);
2459         int len = strlen(nm), i, j;
2460         char *fname;  /* filename to put the vcg information in */
2461
2462         if (!suffix1) suffix1 = "";
2463         if (!suffix2) suffix2 = "";
2464
2465         /* open file for vcg graph */
2466         fname = XMALLOCN(char, len * 2 + strlen(suffix1) + strlen(suffix2) + 5);
2467
2468         /* strncpy (fname, nm, len); */     /* copy the filename */
2469         j = 0;
2470         for (i = 0; i < len; ++i) {  /* replace '/' in the name: escape by @. */
2471                 if (nm[i] == '/') {
2472                         fname[j] = '@'; j++; fname[j] = '1'; j++;
2473                 } else if (nm[i] == '@') {
2474                         fname[j] = '@'; j++; fname[j] = '2'; j++;
2475                 } else {
2476                         fname[j] = nm[i]; j++;
2477                 }
2478         }
2479         fname[j] = '\0';
2480         strcat(fname, suffix1);  /* append file suffix */
2481         strcat(fname, suffix2);  /* append file suffix */
2482         strcat(fname, ".vcg");   /* append the .vcg suffix */
2483
2484         /* vcg really expect only a <CR> at end of line, so
2485          * the "b"inary mode is what you mean (and even needed for Win32)
2486          */
2487         F = fopen(fname, "wb");  /* open file for writing */
2488         if (!F) {
2489                 perror(fname);
2490         }
2491         xfree(fname);
2492
2493         return F;
2494 }
2495
2496 /**
2497  * open a vcg file
2498  *
2499  * @param name    prefix file name
2500  * @param suffix  filename suffix
2501  */
2502 FILE *vcg_open_name(const char *name, const char *suffix)
2503 {
2504         FILE *F;
2505         char *fname;  /* filename to put the vcg information in */
2506         int i, j, len = strlen(name);
2507
2508         if (!suffix) suffix = "";
2509
2510         /** open file for vcg graph */
2511         fname = XMALLOCN(char, len * 2 + 5 + strlen(suffix));
2512         /* strcpy (fname, name);*/    /* copy the filename */
2513         j = 0;
2514         for (i = 0; i < len; ++i) {  /* replace '/' in the name: escape by @. */
2515                 if (name[i] == '/') {
2516                         fname[j] = '@'; j++; fname[j] = '1'; j++;
2517                 } else if (name[i] == '@') {
2518                         fname[j] = '@'; j++; fname[j] = '2'; j++;
2519                 } else {
2520                         fname[j] = name[i]; j++;
2521                 }
2522         }
2523         fname[j] = '\0';
2524         strcat(fname, suffix);
2525         strcat(fname, ".vcg");  /* append the .vcg suffix */
2526
2527         /* vcg really expect only a <CR> at end of line, so
2528          * the "b"inary mode is what you mean (and even needed for Win32)
2529          */
2530         F = fopen(fname, "wb");  /* open file for writing */
2531         if (!F) {
2532                 perror(fname);
2533         }
2534         xfree(fname);
2535
2536         return F;
2537 }
2538
2539 /**
2540  * Dumps the vcg file footer
2541  */
2542 void dump_vcg_footer(FILE *F)
2543 {
2544         fprintf(F, "}\n");
2545 }
2546
2547 /************************************************************************/
2548 /************************************************************************/
2549 /* Routines that dump all or parts of the firm representation to a file */
2550 /************************************************************************/
2551 /************************************************************************/
2552
2553 /************************************************************************/
2554 /* Dump ir graphs, different formats and additional information.        */
2555 /************************************************************************/
2556
2557 typedef void (*do_dump_graph_func) (ir_graph *irg, FILE *out);
2558
2559 static void do_dump(ir_graph *irg, const char *suffix, const char *suffix_ip,
2560                     const char *suffix_nonip, do_dump_graph_func dump_func)
2561 {
2562         FILE       *out;
2563         ir_graph   *rem;
2564         const char *suffix1;
2565
2566         if (!is_filtered_dump_name(get_entity_ident(get_irg_entity(irg))))
2567                 return;
2568
2569         rem = current_ir_graph;
2570         current_ir_graph = irg;
2571         (void) suffix_ip;
2572 #ifdef INTERPROCEDURAL_VIEW
2573         if (get_interprocedural_view())
2574                 suffix1 = suffix_ip;
2575         else
2576 #endif
2577                 suffix1 = suffix_nonip;
2578         current_ir_graph = rem;
2579
2580         out = vcg_open(irg, suffix, suffix1);
2581         if (out != NULL) {
2582                 dump_func(irg, out);
2583                 fclose(out);
2584         }
2585 }
2586
2587 void dump_ir_graph_file(ir_graph *irg, FILE *out)
2588 {
2589         if (dump_backedge_information_flag
2590                         && get_irg_loopinfo_state(irg) != loopinfo_consistent) {
2591                 construct_backedges(irg);
2592         }
2593
2594         dump_vcg_header(out, get_irg_dump_name(irg), NULL, NULL);
2595
2596         /* call the dump graph hook */
2597         if (dump_ir_graph_hook) {
2598                 if (dump_ir_graph_hook(out, irg)) {
2599                         return;
2600                 }
2601         }
2602
2603         /* walk over the graph */
2604         /* dump_whole_node must be called in post visiting predecessors */
2605         ird_walk_graph(irg, NULL, dump_whole_node, out);
2606
2607         /* dump the out edges in a separate walk */
2608         if ((dump_out_edge_flag) && (get_irg_outs_state(irg) != outs_none)) {
2609                 irg_out_walk(get_irg_start(irg), dump_out_edge, NULL, out);
2610         }
2611
2612         dump_vcg_footer(out);
2613 }
2614
2615 /** Routine to dump a graph, blocks as conventional nodes.  */
2616 void dump_ir_graph(ir_graph *irg, const char *suffix )
2617 {
2618         do_dump(irg, suffix, "-pure-ip", "-pure", dump_ir_graph_file);
2619 }
2620
2621 void dump_ir_block_graph_file(ir_graph *irg, FILE *out)
2622 {
2623         int i;
2624
2625         dump_vcg_header(out, get_irg_dump_name(irg), NULL, NULL);
2626
2627         construct_block_lists(irg);
2628
2629         /*
2630          * If we are in the interprocedural view, we dump not
2631          * only the requested irg but also all irgs that can be reached
2632          * from irg.
2633          */
2634         for (i = get_irp_n_irgs() - 1; i >= 0; --i) {
2635                 ir_graph *g = get_irp_irg(i);
2636                 ir_node **arr = ird_get_irg_link(g);
2637                 if (arr) {
2638                         dump_graph_from_list(out, g);
2639                         DEL_ARR_F(arr);
2640                 }
2641         }
2642
2643         dump_vcg_footer(out);
2644 }
2645
2646 /* Dump a firm graph without explicit block nodes. */
2647 void dump_ir_block_graph(ir_graph *irg, const char *suffix)
2648 {
2649         do_dump(irg, suffix, "-ip", "", dump_ir_block_graph_file);
2650 }
2651
2652 void dump_ir_extblock_graph_file(ir_graph *irg, FILE *F)
2653 {
2654         int        i;
2655         ir_entity *ent = get_irg_entity(irg);
2656
2657         if (get_irg_extblk_state(irg) != extblk_valid)
2658                 compute_extbb(irg);
2659
2660         dump_vcg_header(F, get_irg_dump_name(irg), NULL, NULL);
2661
2662         construct_extblock_lists(irg);
2663
2664         fprintf(F, "graph: { title: \"");
2665         PRINT_IRGID(irg);
2666         fprintf(F, "\" label: \"%s\" status:clustered color: white \n",
2667                 get_ent_dump_name(ent));
2668
2669         dump_graph_info(F, irg);
2670         print_dbg_info(F, get_entity_dbg_info(ent));
2671
2672         for (i = get_irp_n_irgs() - 1; i >= 0; --i) {
2673                 ir_graph *irg     = get_irp_irg(i);
2674                 list_tuple *lists = ird_get_irg_link(irg);
2675
2676                 if (lists) {
2677                         /* dump the extended blocks first */
2678                         if (ARR_LEN(lists->extbb_list)) {
2679                                 ird_set_irg_link(irg, lists->extbb_list);
2680                                 dump_extblock_graph(F, irg);
2681                         }
2682
2683                         /* we may have blocks without extended blocks, bad for instance */
2684                         if (ARR_LEN(lists->blk_list)) {
2685                                 ird_set_irg_link(irg, lists->blk_list);
2686                                 dump_block_graph(F, irg);
2687                         }
2688
2689                         DEL_ARR_F(lists->extbb_list);
2690                         DEL_ARR_F(lists->blk_list);
2691                         xfree(lists);
2692                 }
2693         }
2694
2695         /* Close the vcg information for the irg */
2696         fprintf(F, "}\n\n");
2697
2698         dump_vcg_footer(F);
2699         free_extbb(irg);
2700 }
2701
2702 /* Dump a firm graph without explicit block nodes but grouped in extended blocks. */
2703 void dump_ir_extblock_graph(ir_graph *irg, const char *suffix)
2704 {
2705         do_dump(irg, suffix, "-ip", "", dump_ir_extblock_graph_file);
2706 }
2707
2708 void dump_ir_graph_w_types_file(ir_graph *irg, FILE *out)
2709 {
2710         ir_graph *rem = current_ir_graph;
2711         int       rem_dump_const_local;
2712
2713         rem                  = current_ir_graph;
2714         current_ir_graph     = irg;
2715         rem_dump_const_local = dump_const_local;
2716         /* dumping types does not work with local nodes */
2717         dump_const_local = 0;
2718
2719         dump_vcg_header(out, get_irg_dump_name(irg), NULL, NULL);
2720
2721         /* dump common ir graph */
2722         irg_walk(get_irg_end(irg), NULL, dump_whole_node, out);
2723         /* dump type info */
2724         type_walk_irg(irg, dump_type_info, NULL, out);
2725         inc_irg_visited(get_const_code_irg());
2726         /* dump edges from graph to type info */
2727         irg_walk(get_irg_end(irg), dump_node2type_edges, NULL, out);
2728
2729         dump_vcg_footer(out);
2730         dump_const_local = rem_dump_const_local;
2731         current_ir_graph = rem;
2732 }
2733
2734 /* dumps a graph with type information */
2735 void dump_ir_graph_w_types(ir_graph *irg, const char *suffix)
2736 {
2737         do_dump(irg, suffix, "-pure-wtypes-ip", "-pure-wtypes",
2738                 dump_ir_graph_w_types_file);
2739 }
2740
2741 void dump_ir_block_graph_w_types_file(ir_graph *irg, FILE *out)
2742 {
2743         int       i;
2744         int       rem_dump_const_local;
2745         ir_graph *rem = current_ir_graph;
2746
2747         rem_dump_const_local = dump_const_local;
2748         /* dumping types does not work with local nodes */
2749         dump_const_local = 0;
2750
2751         dump_vcg_header(out, get_irg_dump_name(irg), NULL, NULL);
2752
2753         /* dump common blocked ir graph */
2754         construct_block_lists(irg);
2755
2756         for (i = get_irp_n_irgs() - 1; i >= 0; --i) {
2757                 ir_node **arr = ird_get_irg_link(get_irp_irg(i));
2758                 if (arr) {
2759                         dump_graph_from_list(out, get_irp_irg(i));
2760                         DEL_ARR_F(arr);
2761                 }
2762         }
2763
2764         /* dump type info */
2765         current_ir_graph = irg;
2766         type_walk_irg(irg, dump_type_info, NULL, out);
2767         inc_irg_visited(get_const_code_irg());
2768
2769         /* dump edges from graph to type info */
2770         irg_walk(get_irg_end(irg), dump_node2type_edges, NULL, out);
2771
2772         dump_vcg_footer(out);
2773         dump_const_local = rem_dump_const_local;
2774         current_ir_graph = rem;
2775 }
2776
2777 void dump_ir_block_graph_w_types(ir_graph *irg, const char *suffix)
2778 {
2779         do_dump(irg, suffix, "-wtypes-ip", "-wtypes",
2780                 dump_ir_block_graph_w_types_file);
2781 }
2782
2783 /*---------------------------------------------------------------------*/
2784 /* The following routines dump a control flow graph.                   */
2785 /*---------------------------------------------------------------------*/
2786
2787 static void dump_block_to_cfg(ir_node *block, void *env)
2788 {
2789         FILE *F = env;
2790         int i, fl = 0;
2791         ir_node *pred;
2792
2793         if (is_Block(block)) {
2794                 /* This is a block. Dump a node for the block. */
2795                 fprintf(F, "node: {title: \""); PRINT_NODEID(block);
2796                 fprintf(F, "\" label: \"");
2797                 if (block == get_irg_start_block(get_irn_irg(block)))
2798                         fprintf(F, "Start ");
2799                 if (block == get_irg_end_block(get_irn_irg(block)))
2800                         fprintf(F, "End ");
2801
2802                 fprintf(F, "%s ", get_op_name(get_irn_op(block)));
2803                 PRINT_NODEID(block);
2804                 fprintf(F, "\" ");
2805                 fprintf(F, "info1:\"");
2806
2807                 /* the generic version. */
2808                 dump_irnode_to_file(F, block);
2809
2810                 /* Check whether we have bad predecessors to color the block. */
2811                 for (i = get_Block_n_cfgpreds(block) - 1; i >= 0; --i)
2812                         if ((fl = is_Bad(get_Block_cfgpred(block, i))))
2813                                 break;
2814
2815                 fprintf(F, "\"");  /* closing quote of info */
2816
2817                 if ((block == get_irg_start_block(get_irn_irg(block))) ||
2818                         (block == get_irg_end_block(get_irn_irg(block)))     )
2819                         fprintf(F, " color:blue ");
2820                 else if (fl)
2821                         fprintf(F, " color:yellow ");
2822
2823                 fprintf(F, "}\n");
2824                 /* Dump the edges */
2825                 for (i = get_Block_n_cfgpreds(block) - 1; i >= 0; --i)
2826                         if (!is_Bad(skip_Proj(get_Block_cfgpred(block, i)))) {
2827                                 pred = get_nodes_block(skip_Proj(get_Block_cfgpred(block, i)));
2828                                 fprintf(F, "edge: { sourcename: \"");
2829                                 PRINT_NODEID(block);
2830                                 fprintf(F, "\" targetname: \"");
2831                                 PRINT_NODEID(pred);
2832                                 fprintf(F, "\"}\n");
2833                         }
2834
2835                 /* Dump dominator/postdominator edge */
2836                 if (dump_dominator_information_flag) {
2837                         if (get_irg_dom_state(current_ir_graph) == dom_consistent && get_Block_idom(block)) {
2838                                 pred = get_Block_idom(block);
2839                                 fprintf(F, "edge: { sourcename: \"");
2840                                 PRINT_NODEID(block);
2841                                 fprintf(F, "\" targetname: \"");
2842                                 PRINT_NODEID(pred);
2843                                 fprintf(F, "\" " DOMINATOR_EDGE_ATTR "}\n");
2844                         }
2845                         if (get_irg_postdom_state(current_ir_graph) == dom_consistent && get_Block_ipostdom(block)) {
2846                                 pred = get_Block_ipostdom(block);
2847                                 fprintf(F, "edge: { sourcename: \"");
2848                                 PRINT_NODEID(block);
2849                                 fprintf(F, "\" targetname: \"");
2850                                 PRINT_NODEID(pred);
2851                                 fprintf(F, "\" " POSTDOMINATOR_EDGE_ATTR "}\n");
2852                         }
2853                 }
2854         }
2855 }
2856
2857 void dump_cfg(ir_graph *irg, const char *suffix)
2858 {
2859         FILE *f;
2860         /* if a filter is set, dump only the irg's that match the filter */
2861         if (!is_filtered_dump_name(get_entity_ident(get_irg_entity(irg))))
2862                 return;
2863
2864         f = vcg_open(irg, suffix, "-cfg");
2865         if (f != NULL) {
2866                 ir_graph *rem = current_ir_graph;
2867 #ifdef INTERPROCEDURAL_VIEW
2868                 int ipv = get_interprocedural_view();
2869 #endif
2870
2871                 current_ir_graph = irg;
2872                 dump_vcg_header(f, get_irg_dump_name(irg), NULL, NULL);
2873
2874 #ifdef INTERPROCEDURAL_VIEW
2875                 if (ipv) {
2876                         printf("Warning: dumping cfg not in interprocedural view!\n");
2877                         set_interprocedural_view(0);
2878                 }
2879 #endif
2880
2881                 /* walk over the blocks in the graph */
2882                 irg_block_walk(get_irg_end(irg), dump_block_to_cfg, NULL, f);
2883                 dump_node(f, get_irg_bad(irg));
2884
2885 #ifdef INTERPROCEDURAL_VIEW
2886                 set_interprocedural_view(ipv);
2887 #endif
2888                 dump_vcg_footer(f);
2889                 fclose(f);
2890                 current_ir_graph = rem;
2891         }
2892 }
2893
2894
2895 static void descend_and_dump(FILE *F, ir_node *n, int depth, pset *mark_set)
2896 {
2897         if (pset_find_ptr(mark_set, n))
2898                 return;
2899
2900         pset_insert_ptr(mark_set, n);
2901
2902         if (depth > 0) {
2903                 int i, start = is_Block(n) ? 0 : -1;
2904                 dump_whole_node(n, F);
2905                 for (i = start; i < get_irn_arity(n); ++i)
2906                         descend_and_dump(F, get_irn_n(n, i), depth-1, mark_set);
2907         } else {
2908                 dump_node(F, n);
2909                 /* Don't dump edges to nodes further out.  These might be edges to
2910                    nodes we already dumped, if there is a shorter path to these. */
2911         }
2912 }
2913
2914 static int subgraph_counter = 0;
2915 void dump_subgraph(ir_node *root, int depth, const char *suffix)
2916 {
2917         FILE *F;
2918         char buf[32];
2919
2920         sprintf(buf, "-subg_%03d", subgraph_counter++);
2921         F = vcg_open(get_irn_irg(root), suffix, buf);
2922         if (F != NULL) {
2923                 pset *mark_set = pset_new_ptr(1);
2924                 dump_vcg_header(F, get_irg_dump_name(get_irn_irg(root)), NULL, NULL);
2925                 descend_and_dump(F, root, depth, mark_set);
2926                 dump_vcg_footer(F);
2927                 fclose(F);
2928                 del_pset(mark_set);
2929         }
2930 }
2931
2932 void dump_callgraph(const char *suffix)
2933 {
2934         FILE *F = vcg_open_name("Callgraph", suffix);
2935
2936         if (F != NULL) {
2937                 int i, rem = edge_label;
2938                 //int colorize;
2939                 edge_label = 1;
2940                 dump_vcg_header(F, "Callgraph", "Hierarchiv", NULL);
2941
2942                 for (i = get_irp_n_irgs() - 1; i >= 0; --i) {
2943                         ir_graph *irg = get_irp_irg(i);
2944                         ir_entity *ent = get_irg_entity(irg);
2945                         int j;
2946                         int n_callees = get_irg_n_callees(irg);
2947
2948                         dump_entity_node(F, ent);
2949                         for (j = 0; j < n_callees; ++j) {
2950                                 ir_entity *c = get_irg_entity(get_irg_callee(irg, j));
2951                                 //if (id_is_prefix(prefix, get_entity_ld_ident(c))) continue;
2952                                 int be = is_irg_callee_backedge(irg, j);
2953                                 char *attr;
2954                                 attr = (be) ?
2955                                         "label:\"recursion %d\"" :
2956                                 "label:\"calls %d\"";
2957                                 print_ent_ent_edge(F, ent, c, be, ird_color_entity, attr, get_irg_callee_loop_depth(irg, j));
2958                         }
2959                 }
2960
2961                 edge_label = rem;
2962                 dump_vcg_footer(F);
2963                 fclose(F);
2964         }
2965 }
2966
2967 #if 0
2968 /* Dump all irgs in interprocedural view to a single file. */
2969 void dump_all_cg_block_graph(const char *suffix)
2970 {
2971         FILE *f = vcg_open_name("All_graphs", suffix);
2972
2973         if (f != NULL) {
2974                 int i;
2975                 int rem_view = get_interprocedural_view();
2976
2977                 set_interprocedural_view(1);
2978                 dump_vcg_header(f, "All_graphs", NULL);
2979
2980                 /* collect nodes in all irgs reachable in call graph*/
2981                 for (i = get_irp_n_irgs() - 1; i >= 0; --i)
2982                         ird_set_irg_link(get_irp_irg(i), NULL);
2983
2984                 cg_walk(clear_link, collect_node, NULL);
2985
2986                 /* dump all graphs */
2987                 for (i = get_irp_n_irgs() - 1; i >= 0; --i) {
2988                         current_ir_graph = get_irp_irg(i);
2989                         assert(ird_get_irg_link(current_ir_graph));
2990                         dump_graph_from_list(f, current_ir_graph);
2991                         DEL_ARR_F(ird_get_irg_link(current_ir_graph));
2992                 }
2993
2994                 dump_vcg_footer(f);
2995                 fclose(f);
2996                 set_interprocedural_view(rem_view);
2997         }
2998 }
2999 #endif
3000
3001 /*---------------------------------------------------------------------*/
3002 /* the following routines dumps type information without any ir nodes. */
3003 /*---------------------------------------------------------------------*/
3004
3005 void dump_type_graph(ir_graph *irg, const char *suffix)
3006 {
3007         FILE *f;
3008
3009         /* if a filter is set, dump only the irg's that match the filter */
3010         if (!is_filtered_dump_name(get_entity_ident(get_irg_entity(irg)))) return;
3011
3012         f = vcg_open(irg, suffix, "-type");
3013         if (f != NULL) {
3014                 ir_graph *rem = current_ir_graph;
3015                 current_ir_graph = irg;
3016
3017                 dump_vcg_header(f, get_irg_dump_name(irg), "Hierarchic", NULL);
3018
3019                 /* walk over the blocks in the graph */
3020                 type_walk_irg(irg, dump_type_info, NULL, f);
3021                 /* The walker for the const code can be called several times for the
3022                    same (sub) expression.  So that no nodes are dumped several times
3023                    we decrease the visited flag of the corresponding graph after each
3024                    walk.  So now increase it finally. */
3025                 inc_irg_visited(get_const_code_irg());
3026
3027                 dump_vcg_footer(f);
3028                 fclose(f);
3029                 current_ir_graph = rem;
3030         }
3031 }
3032
3033 void dump_all_types(const char *suffix)
3034 {
3035         FILE *f = vcg_open_name("All_types", suffix);
3036         if (f != NULL) {
3037                 dump_vcg_header(f, "All_types", "Hierarchic", NULL);
3038                 type_walk(dump_type_info, NULL, f);
3039                 inc_irg_visited(get_const_code_irg());
3040
3041                 dump_vcg_footer(f);
3042                 fclose(f);
3043         }
3044 }
3045
3046 void dump_class_hierarchy(int entities, const char *suffix)
3047 {
3048         FILE *f = vcg_open_name("class_hierarchy", suffix);
3049
3050         if (f != NULL) {
3051                 h_env_t env;
3052                 env.f        = f;
3053                 env.dump_ent = entities;
3054                 dump_vcg_header(f, "class_hierarchy", "Hierarchic", NULL);
3055                 type_walk(dump_class_hierarchy_node, NULL, &env);
3056
3057                 dump_vcg_footer(f);
3058                 fclose(f);
3059         }
3060 }
3061
3062 /*---------------------------------------------------------------------*/
3063 /* dumps all graphs with the graph-dumper passed. Possible dumpers:    */
3064 /*  dump_ir_graph                                                      */
3065 /*  dump_ir_block_graph                                                */
3066 /*  dump_cfg                                                           */
3067 /*  dump_type_graph                                                    */
3068 /*  dump_ir_graph_w_types                                              */
3069 /*---------------------------------------------------------------------*/
3070
3071 void dump_all_ir_graphs(dump_graph_func *dmp_grph, const char *suffix)
3072 {
3073         int i;
3074         for (i = get_irp_n_irgs() - 1; i >= 0; --i)
3075                 dmp_grph(get_irp_irg(i), suffix);
3076 }
3077
3078 struct pass_t {
3079         ir_prog_pass_t  pass;
3080         dump_graph_func *dump_graph;
3081         char            suffix[1];
3082 };
3083
3084 /**
3085  * Wrapper around dump_all_ir_graphs().
3086  */
3087 static int dump_all_ir_graphs_wrapper(ir_prog *irp, void *context)
3088 {
3089         struct pass_t *pass = context;
3090
3091         (void)irp;
3092         dump_all_ir_graphs(pass->dump_graph, pass->suffix);
3093         return 0;
3094 }
3095
3096 ir_prog_pass_t *dump_all_ir_graph_pass(const char *name,
3097                                        dump_graph_func *dump_graph,
3098                                        const char *suffix)
3099 {
3100         size_t         len   = strlen(suffix);
3101         struct pass_t  *pass = xmalloc(sizeof(*pass) + len);
3102         ir_prog_pass_t *res  = def_prog_pass_constructor(
3103                 &pass->pass, name ? name : "dump_all_graphs", dump_all_ir_graphs_wrapper);
3104
3105         /* this pass does not change anything, so neither dump nor verify is needed. */
3106         res->dump_irprog   = ir_prog_no_dump;
3107         res->verify_irprog = ir_prog_no_verify;
3108
3109         pass->dump_graph = dump_graph;
3110         strcpy(pass->suffix, suffix);
3111
3112         return res;
3113 }
3114
3115 /*--------------------------------------------------------------------------------*
3116  * Dumps a stand alone loop graph with firm nodes which belong to one loop node   *
3117  * packed together in one subgraph/box                                            *
3118  *--------------------------------------------------------------------------------*/
3119
3120 static void dump_loops_standalone(FILE *F, ir_loop *loop)
3121 {
3122         int i = 0, loop_node_started = 0, son_number = 0, first = 0;
3123         loop_element le;
3124         ir_loop *son = NULL;
3125
3126         /* Dump a new loop node. */
3127         dump_loop_node(F, loop);
3128
3129         /* Dump the loop elements. */
3130         for (i = 0; i < get_loop_n_elements(loop); i++) {
3131                 le = get_loop_element(loop, i);
3132                 son = le.son;
3133                 if (get_kind(son) == k_ir_loop) {
3134
3135                         /* We are a loop son -> Recurse */
3136
3137                         if (loop_node_started) { /* Close the "firm-nodes" node first if we started one. */
3138                                 fprintf(F, "\" }\n");
3139                                 fprintf(F, "edge: {sourcename: \"");
3140                                 PRINT_LOOPID(loop);
3141                                 fprintf(F, "\" targetname: \"");
3142                                 PRINT_LOOPID(loop);
3143                                 fprintf(F, "-%d-nodes\" label:\"%d...%d\"}\n", first, first, i-1);
3144                                 loop_node_started = 0;
3145                         }
3146                         dump_loop_son_edge(F, loop, son_number++);
3147                         dump_loops_standalone(F, son);
3148                 } else if (get_kind(son) == k_ir_node) {
3149                         /* We are a loop node -> Collect firm nodes */
3150
3151                         ir_node *n = le.node;
3152                         int bad = 0;
3153
3154                         if (!loop_node_started) {
3155                                 /* Start a new node which contains all firm nodes of the current loop */
3156                                 fprintf(F, "node: { title: \"");
3157                                 PRINT_LOOPID(loop);
3158                                 fprintf(F, "-%d-nodes\" color: lightyellow label: \"", i);
3159                                 loop_node_started = 1;
3160                                 first = i;
3161                         } else
3162                                 fprintf(F, "\n");
3163
3164                         bad |= dump_node_label(F, n);
3165                         /* Causes indeterministic output: if (is_Block(n)) fprintf(F, "\t ->%d", (int)get_irn_link(n)); */
3166                         if (has_backedges(n)) fprintf(F, "\t loop head!");
3167                 } else { /* for callgraph loop tree */
3168                         ir_graph *n;
3169                         assert(get_kind(son) == k_ir_graph);
3170
3171                         /* We are a loop node -> Collect firm graphs */
3172                         n = le.irg;
3173                         if (!loop_node_started) {
3174                                 /* Start a new node which contains all firm nodes of the current loop */
3175                                 fprintf(F, "node: { title: \"");
3176                                 PRINT_LOOPID(loop);
3177                                 fprintf(F, "-%d-nodes\" color: lightyellow label: \"", i);
3178                                 loop_node_started = 1;
3179                                 first = i;
3180                         } else
3181                                 fprintf(F, "\n");
3182                         fprintf(F, " %s", get_irg_dump_name(n));
3183                         /* fprintf(F, " %s (depth %d)", get_irg_dump_name(n), n->callgraph_weighted_loop_depth); */
3184                 }
3185         }
3186
3187         if (loop_node_started) {
3188                 fprintf(F, "\" }\n");
3189                 fprintf(F, "edge: {sourcename: \"");
3190                 PRINT_LOOPID(loop);
3191                 fprintf(F, "\" targetname: \"");
3192                 PRINT_LOOPID(loop);
3193                 fprintf(F, "-%d-nodes\" label:\"%d...%d\"}\n", first, first, i-1);
3194                 loop_node_started = 0;
3195         }
3196 }
3197
3198 void dump_loop_tree(ir_graph *irg, const char *suffix)
3199 {
3200         FILE *f;
3201
3202         /* if a filter is set, dump only the irg's that match the filter */
3203         if (!is_filtered_dump_name(get_entity_ident(get_irg_entity(irg))))
3204                 return;
3205
3206         f = vcg_open(irg, suffix, "-looptree");
3207         if (f != NULL) {
3208                 ir_graph *rem = current_ir_graph;
3209                 int el_rem = edge_label;
3210
3211                 current_ir_graph = irg;
3212                 edge_label = 1;
3213
3214                 dump_vcg_header(f, get_irg_dump_name(irg), "Tree", "top_to_bottom");
3215
3216                 if (get_irg_loop(irg))
3217                         dump_loops_standalone(f, get_irg_loop(irg));
3218
3219                 dump_vcg_footer(f);
3220                 fclose(f);
3221
3222                 edge_label = el_rem;
3223                 current_ir_graph = rem;
3224         }
3225 }
3226
3227 void dump_callgraph_loop_tree(const char *suffix)
3228 {
3229         FILE *F;
3230         F = vcg_open_name("Callgraph_looptree", suffix);
3231         dump_vcg_header(F, "callgraph looptree", "Tree", "top_to_bottom");
3232         dump_loops_standalone(F, irp->outermost_cg_loop);
3233         dump_vcg_footer(F);
3234         fclose(F);
3235 }
3236
3237
3238 /*----------------------------------------------------------------------------*/
3239 /* Dumps the firm nodes in the loop tree to a graph along with the loop nodes.*/
3240 /*----------------------------------------------------------------------------*/
3241
3242 static void collect_nodeloop(FILE *F, ir_loop *loop, eset *loopnodes)
3243 {
3244         int i, son_number = 0, node_number = 0;
3245
3246         if (dump_loop_information_flag) dump_loop_node(F, loop);
3247
3248         for (i = 0; i < get_loop_n_elements(loop); i++) {
3249                 loop_element le = get_loop_element(loop, i);
3250                 if (*(le.kind) == k_ir_loop) {
3251                         if (dump_loop_information_flag) dump_loop_son_edge(F, loop, son_number++);
3252                         /* Recur */
3253                         collect_nodeloop(F, le.son, loopnodes);
3254                 } else {
3255                         if (dump_loop_information_flag) dump_loop_node_edge(F, loop, node_number++);
3256                         eset_insert(loopnodes, le.node);
3257                 }
3258         }
3259 }
3260
3261 static void collect_nodeloop_external_nodes(ir_loop *loop, eset *loopnodes,
3262                                             eset *extnodes)
3263 {
3264         int i, j, start;
3265
3266         for (i = 0; i < get_loop_n_elements(loop); i++) {
3267                 loop_element le = get_loop_element(loop, i);
3268                 if (*(le.kind) == k_ir_loop) {
3269                         /* Recur */
3270                         collect_nodeloop_external_nodes(le.son, loopnodes, extnodes);
3271                 } else {
3272                         if (is_Block(le.node)) start = 0; else start = -1;
3273                         for (j = start; j < get_irn_arity(le.node); j++) {
3274                                 ir_node *pred = get_irn_n(le.node, j);
3275                                 if (!eset_contains(loopnodes, pred)) {
3276                                         eset_insert(extnodes, pred);
3277                                         if (!is_Block(pred)) {
3278                                                 pred = get_nodes_block(pred);
3279                                                 if (!eset_contains(loopnodes, pred)) eset_insert(extnodes, pred);
3280                                         }
3281                                 }
3282                         }
3283                 }
3284         }
3285 }
3286
3287 void dump_loop(ir_loop *l, const char *suffix)
3288 {
3289         FILE *F;
3290         char name[50];
3291
3292         snprintf(name, sizeof(name), "loop_%d", get_loop_loop_nr(l));
3293         F = vcg_open_name(name, suffix);
3294         if (F != NULL) {
3295                 eset *loopnodes = eset_create();
3296                 eset *extnodes = eset_create();
3297                 ir_node *n, *b;
3298
3299                 dump_vcg_header(F, name, NULL, NULL);
3300
3301                 /* collect all nodes to dump */
3302                 collect_nodeloop(F, l, loopnodes);
3303                 collect_nodeloop_external_nodes(l, loopnodes, extnodes);
3304
3305                 /* build block lists */
3306                 for (n = eset_first(loopnodes); n != NULL; n = eset_next(loopnodes))
3307                         set_irn_link(n, NULL);
3308                 for (n = eset_first(extnodes); n != NULL; n = eset_next(extnodes))
3309                         set_irn_link(n, NULL);
3310                 for (n = eset_first(loopnodes); n != NULL; n = eset_next(loopnodes)) {
3311                         if (!is_Block(n)) {
3312                                 b = get_nodes_block(n);
3313                                 set_irn_link(n, get_irn_link(b));
3314                                 set_irn_link(b, n);
3315                         }
3316                 }
3317                 for (n = eset_first(extnodes); n != NULL; n = eset_next(extnodes)) {
3318                         if (!is_Block(n)) {
3319                                 b = get_nodes_block(n);
3320                                 set_irn_link(n, get_irn_link(b));
3321                                 set_irn_link(b, n);
3322                         }
3323                 }
3324
3325                 for (b = eset_first(loopnodes); b != NULL; b = eset_next(loopnodes)) {
3326                         if (is_Block(b)) {
3327                                 fprintf(F, "graph: { title: \"");
3328                                 PRINT_NODEID(b);
3329                                 fprintf(F, "\"  label: \"");
3330                                 dump_node_opcode(F, b);
3331                                 fprintf(F, " %ld:%d", get_irn_node_nr(b), get_irn_idx(b));
3332                                 fprintf(F, "\" status:clustered color:yellow\n");
3333
3334                                 /* dump the blocks edges */
3335                                 dump_ir_data_edges(F, b);
3336
3337                                 /* dump the nodes that go into the block */
3338                                 for (n = get_irn_link(b); n; n = get_irn_link(n)) {
3339                                         if (eset_contains(extnodes, n))
3340                                                 overrule_nodecolor = ird_color_block_inout;
3341                                         dump_node(F, n);
3342                                         overrule_nodecolor = ird_color_default_node;
3343                                         if (!eset_contains(extnodes, n)) dump_ir_data_edges(F, n);
3344                                 }
3345
3346                                 /* Close the vcg information for the block */
3347                                 fprintf(F, "}\n");
3348                                 dump_const_node_local(F, b);
3349                                 fprintf(F, "\n");
3350                         }
3351                 }
3352                 for (b = eset_first(extnodes); b != NULL; b = eset_next(extnodes)) {
3353                         if (is_Block(b)) {
3354                                 fprintf(F, "graph: { title: \"");
3355                                 PRINT_NODEID(b);
3356                                 fprintf(F, "\"  label: \"");
3357                                 dump_node_opcode(F, b);
3358                                 fprintf(F, " %ld:%d", get_irn_node_nr(b), get_irn_idx(b));
3359                                 fprintf(F, "\" status:clustered color:lightblue\n");
3360
3361                                 /* dump the nodes that go into the block */
3362                                 for (n = get_irn_link(b); n; n = get_irn_link(n)) {
3363                                         if (!eset_contains(loopnodes, n))
3364                                                 overrule_nodecolor = ird_color_block_inout;
3365                                         dump_node(F, n);
3366                                         overrule_nodecolor = ird_color_default_node;
3367                                         if (eset_contains(loopnodes, n)) dump_ir_data_edges(F, n);
3368                                 }
3369
3370                                 /* Close the vcg information for the block */
3371                                 fprintf(F, "}\n");
3372                                 dump_const_node_local(F, b);
3373                                 fprintf(F, "\n");
3374                         }
3375                 }
3376                 eset_destroy(loopnodes);
3377                 eset_destroy(extnodes);
3378
3379                 dump_vcg_footer(F);
3380                 fclose(F);
3381         }
3382 }