1 /* Output routines for graphical representation.
2 Copyright (C) 1998-2017 Free Software Foundation, Inc.
3 Contributed by Ulrich Drepper <drepper@cygnus.com>, 1998.
4 Rewritten for DOT output by Steven Bosscher, 2012.
6 This file is part of GCC.
8 GCC is free software; you can redistribute it and/or modify it under
9 the terms of the GNU General Public License as published by the Free
10 Software Foundation; either version 3, or (at your option) any later
13 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
14 WARRANTY; without even the implied warranty of MERCHANTABILITY or
15 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
18 You should have received a copy of the GNU General Public License
19 along with GCC; see the file COPYING3. If not see
20 <http://www.gnu.org/licenses/>. */
24 #include "coretypes.h"
27 #include "pretty-print.h"
28 #include "diagnostic-core.h" /* for fatal_error */
34 /* DOT files with the .dot extension are recognized as document templates
35 by a well-known piece of word processing software out of Redmond, WA.
36 Therefore some recommend using the .gv extension instead. Obstinately
37 ignore that recommendation... */
38 static const char *const graph_ext
= ".dot";
40 /* Open a file with MODE for dumping our graph to.
41 Return the file pointer. */
43 open_graph_file (const char *base
, const char *mode
)
45 size_t namelen
= strlen (base
);
46 size_t extlen
= strlen (graph_ext
) + 1;
47 char *buf
= XALLOCAVEC (char, namelen
+ extlen
);
50 memcpy (buf
, base
, namelen
);
51 memcpy (buf
+ namelen
, graph_ext
, extlen
);
53 fp
= fopen (buf
, mode
);
55 fatal_error (input_location
, "can%'t open %s: %m", buf
);
60 /* Draw a basic block BB belonging to the function with FUNCDEF_NO
61 as its unique number. */
63 draw_cfg_node (pretty_printer
*pp
, int funcdef_no
, basic_block bb
)
66 const char *fillcolor
;
68 if (bb
->index
== ENTRY_BLOCK
|| bb
->index
== EXIT_BLOCK
)
77 BB_PARTITION (bb
) == BB_HOT_PARTITION
? "lightpink"
78 : BB_PARTITION (bb
) == BB_COLD_PARTITION
? "lightblue"
83 "\tfn_%d_basic_block_%d "
84 "[shape=%s,style=filled,fillcolor=%s,label=\"",
85 funcdef_no
, bb
->index
, shape
, fillcolor
);
87 if (bb
->index
== ENTRY_BLOCK
)
88 pp_string (pp
, "ENTRY");
89 else if (bb
->index
== EXIT_BLOCK
)
90 pp_string (pp
, "EXIT");
94 pp_write_text_to_stream (pp
);
95 dump_bb_for_graph (pp
, bb
);
99 pp_string (pp
, "\"];\n\n");
103 /* Draw all successor edges of a basic block BB belonging to the function
104 with FUNCDEF_NO as its unique number. */
106 draw_cfg_node_succ_edges (pretty_printer
*pp
, int funcdef_no
, basic_block bb
)
110 FOR_EACH_EDGE (e
, ei
, bb
->succs
)
112 const char *style
= "\"solid,bold\"";
113 const char *color
= "black";
116 if (e
->flags
& EDGE_FAKE
)
122 else if (e
->flags
& EDGE_DFS_BACK
)
124 style
= "\"dotted,bold\"";
128 else if (e
->flags
& EDGE_FALLTHRU
)
134 if (e
->flags
& EDGE_ABNORMAL
)
138 "\tfn_%d_basic_block_%d:s -> fn_%d_basic_block_%d:n "
139 "[style=%s,color=%s,weight=%d,constraint=%s, label=\"[%i%%]\"];\n",
140 funcdef_no
, e
->src
->index
,
141 funcdef_no
, e
->dest
->index
,
142 style
, color
, weight
,
143 (e
->flags
& (EDGE_FAKE
| EDGE_DFS_BACK
)) ? "false" : "true",
144 e
->probability
* 100 / REG_BR_PROB_BASE
);
149 /* Draw all the basic blocks in the CFG in case loops are not available.
150 First compute a topological order of the blocks to get a good ranking of
151 the nodes. Then, if any nodes are not reachable from ENTRY, add them at
155 draw_cfg_nodes_no_loops (pretty_printer
*pp
, struct function
*fun
)
157 int *rpo
= XNEWVEC (int, n_basic_blocks_for_fn (fun
));
160 auto_sbitmap
visited (last_basic_block_for_fn (cfun
));
161 bitmap_clear (visited
);
163 n
= pre_and_rev_post_order_compute_fn (fun
, NULL
, rpo
, true);
164 for (i
= n_basic_blocks_for_fn (fun
) - n
;
165 i
< n_basic_blocks_for_fn (fun
); i
++)
167 basic_block bb
= BASIC_BLOCK_FOR_FN (cfun
, rpo
[i
]);
168 draw_cfg_node (pp
, fun
->funcdef_no
, bb
);
169 bitmap_set_bit (visited
, bb
->index
);
173 if (n
!= n_basic_blocks_for_fn (fun
))
175 /* Some blocks are unreachable. We still want to dump them. */
177 FOR_ALL_BB_FN (bb
, fun
)
178 if (! bitmap_bit_p (visited
, bb
->index
))
179 draw_cfg_node (pp
, fun
->funcdef_no
, bb
);
183 /* Draw all the basic blocks in LOOP. Print the blocks in breath-first
184 order to get a good ranking of the nodes. This function is recursive:
185 It first prints inner loops, then the body of LOOP itself. */
188 draw_cfg_nodes_for_loop (pretty_printer
*pp
, int funcdef_no
,
193 const char *fillcolors
[3] = { "grey88", "grey77", "grey66" };
195 if (loop
->header
!= NULL
196 && loop
->latch
!= EXIT_BLOCK_PTR_FOR_FN (cfun
))
198 "\tsubgraph cluster_%d_%d {\n"
199 "\tstyle=\"filled\";\n"
200 "\tcolor=\"darkgreen\";\n"
201 "\tfillcolor=\"%s\";\n"
202 "\tlabel=\"loop %d\";\n"
205 funcdef_no
, loop
->num
,
206 fillcolors
[(loop_depth (loop
) - 1) % 3],
209 for (struct loop
*inner
= loop
->inner
; inner
; inner
= inner
->next
)
210 draw_cfg_nodes_for_loop (pp
, funcdef_no
, inner
);
212 if (loop
->header
== NULL
)
215 if (loop
->latch
== EXIT_BLOCK_PTR_FOR_FN (cfun
))
216 body
= get_loop_body (loop
);
218 body
= get_loop_body_in_bfs_order (loop
);
220 for (i
= 0; i
< loop
->num_nodes
; i
++)
222 basic_block bb
= body
[i
];
223 if (bb
->loop_father
== loop
)
224 draw_cfg_node (pp
, funcdef_no
, bb
);
229 if (loop
->latch
!= EXIT_BLOCK_PTR_FOR_FN (cfun
))
230 pp_printf (pp
, "\t}\n");
233 /* Draw all the basic blocks in the CFG in case the loop tree is available.
234 All loop bodys are printed in clusters. */
237 draw_cfg_nodes (pretty_printer
*pp
, struct function
*fun
)
239 if (loops_for_fn (fun
))
240 draw_cfg_nodes_for_loop (pp
, fun
->funcdef_no
, get_loop (fun
, 0));
242 draw_cfg_nodes_no_loops (pp
, fun
);
245 /* Draw all edges in the CFG. Retreating edges are drawin as not
246 constraining, this makes the layout of the graph better.
247 (??? Calling mark_dfs_back may change the compiler's behavior when
248 dumping, but computing back edges here for ourselves is also not
252 draw_cfg_edges (pretty_printer
*pp
, struct function
*fun
)
255 mark_dfs_back_edges ();
256 FOR_ALL_BB_FN (bb
, cfun
)
257 draw_cfg_node_succ_edges (pp
, fun
->funcdef_no
, bb
);
259 /* Add an invisible edge from ENTRY to EXIT, to improve the graph layout. */
261 "\tfn_%d_basic_block_%d:s -> fn_%d_basic_block_%d:n "
262 "[style=\"invis\",constraint=true];\n",
263 fun
->funcdef_no
, ENTRY_BLOCK
,
264 fun
->funcdef_no
, EXIT_BLOCK
);
268 /* Print a graphical representation of the CFG of function FUN.
269 First print all basic blocks. Draw all edges at the end to get
270 subgraphs right for GraphViz, which requires nodes to be defined
271 before edges to cluster nodes properly. */
274 print_graph_cfg (FILE *fp
, struct function
*fun
)
276 pretty_printer graph_slim_pp
;
277 graph_slim_pp
.buffer
->stream
= fp
;
278 pretty_printer
*const pp
= &graph_slim_pp
;
279 const char *funcname
= function_name (fun
);
280 pp_printf (pp
, "subgraph \"cluster_%s\" {\n"
281 "\tstyle=\"dashed\";\n"
282 "\tcolor=\"black\";\n"
283 "\tlabel=\"%s ()\";\n",
285 draw_cfg_nodes (pp
, fun
);
286 draw_cfg_edges (pp
, fun
);
287 pp_printf (pp
, "}\n");
291 /* Overload with additional flag argument. */
294 print_graph_cfg (FILE *fp
, struct function
*fun
, int flags
)
296 int saved_dump_flags
= dump_flags
;
298 print_graph_cfg (fp
, fun
);
299 dump_flags
= saved_dump_flags
;
303 /* Print a graphical representation of the CFG of function FUN.
304 First print all basic blocks. Draw all edges at the end to get
305 subgraphs right for GraphViz, which requires nodes to be defined
306 before edges to cluster nodes properly. */
309 print_graph_cfg (const char *base
, struct function
*fun
)
311 FILE *fp
= open_graph_file (base
, "a");
312 print_graph_cfg (fp
, fun
);
316 /* Start the dump of a graph. */
318 start_graph_dump (FILE *fp
, const char *base
)
320 pretty_printer graph_slim_pp
;
321 graph_slim_pp
.buffer
->stream
= fp
;
322 pretty_printer
*const pp
= &graph_slim_pp
;
323 pp_string (pp
, "digraph \"");
324 pp_write_text_to_stream (pp
);
325 pp_string (pp
, base
);
326 pp_write_text_as_dot_label_to_stream (pp
, /*for_record=*/false);
327 pp_string (pp
, "\" {\n");
328 pp_string (pp
, "overlap=false;\n");
332 /* End the dump of a graph. */
334 end_graph_dump (FILE *fp
)
339 /* Similar as clean_dump_file, but this time for graph output files. */
341 clean_graph_dump_file (const char *base
)
343 FILE *fp
= open_graph_file (base
, "w");
344 start_graph_dump (fp
, base
);
349 /* Do final work on the graph output file. */
351 finish_graph_dump_file (const char *base
)
353 FILE *fp
= open_graph_file (base
, "a");