fixed prototype
[libfirm] / ir / ir / irdump.h
1 /*
2  * Project:     libFIRM
3  * File name:   ir/ir/irdump.h
4  * Purpose:     Write vcg representation of firm to file.
5  * Author:      Martin Trapp, Christian Schaefer
6  * Modified by: Goetz Lindenmaier, Hubert Schmidt
7  * Created:
8  * CVS-ID:      $Id$
9  * Copyright:   (c) 1998-2003 Universität Karlsruhe
10  * Licence:     This file protected by GPL -  GNU GENERAL PUBLIC LICENSE.
11  */
12
13
14 /**
15  * @file irdump.h
16  *
17  * Dump routines for the ir graph and all type information.
18  *
19  * @author Martin Trapp, Christian Schaefer
20  *
21  * The dump format of most functions is vcg.  This is a text based graph
22  * representation. Some use the original format,
23  * but most generate an extended format that is only read by some special
24  * versions of xvcg or by the comercialized version now calles aiSee.
25  * A test version of aiSee is available at
26  * http://www.absint.de/aisee/download/index.htm.
27  *
28  * Most routines use the name of the passed entity as the name of the
29  * file dumped to.
30  */
31
32
33 # ifndef _IRDUMP_H_
34 # define _IRDUMP_H_
35
36 # include "irnode.h"
37 # include "irgraph.h"
38 # include "irloop.h"
39
40
41 /* **************************************************************************** */
42 /*                                 GRAPH DUMPERS                                */
43 /* **************************************************************************** */
44
45 /**
46  * This hook is called to dump the vcg attributes of a node to a file.
47  * If this function returns zero, the default attributes are added, else
48  * removed.
49  */
50 typedef int (*DUMP_NODE_VCGATTR_FUNC)(FILE *F, ir_node *node, ir_node *local);
51
52 /** Set the node_vcgattr hook. */
53 void set_dump_node_vcgattr_hook(DUMP_NODE_VCGATTR_FUNC hook);
54
55 /** Dump a firm graph.
56  *
57  *  @param irg  The firm graph to be dumped.
58  *
59  *  @return
60  *     A file containing the firm graph in vcg format.
61  *
62  *  Dumps all Firm nodes of a single graph for a single procedure in
63  *  standard xvcg format.  Dumps the graph to a file.  The file name
64  *  is constructed from the name of the entity describing the
65  *  procedure (irg->entity) and the ending -pure<-ip>.vcg.  Eventually
66  *  overwrites existing files.  Visits all nodes in
67  *  interprocedural_view.
68  *
69  * @see turn_off_edge_labels()
70  */
71 void dump_ir_graph (ir_graph *irg, const char *suffix);
72
73 /** Dump a firm graph without explicit block nodes.
74  *
75  *  @param irg   The firm graph to be dumped.
76  *
77  *  @return
78  *     A file containing the firm graph in vcg format.
79  *
80  *  Dumps all Firm nodes of a single graph for a single procedure in
81  *  extended xvcg format.
82  *  Dumps the graph to a file.  The file name is constructed from the
83  *  name of the entity describing the procedure (irg->entity) and the
84  *  ending <-ip>.vcg.  Eventually overwrites existing files.  Dumps several
85  *  procedures in boxes if interprocedural_view.
86  *
87  * @see turn_off_edge_labels()
88  */
89 void dump_ir_block_graph (ir_graph *irg, const char *suffix);
90
91 /** Dumps all graphs in interprocedural view to a file named All_graphs.vcg.
92  */
93 void dump_all_cg_block_graph(const char *suffix);
94
95 /** Dumps a firm graph and  all the type information needed for Calls,
96  *  Sels, ... in this graph.
97  *
98  *  @param irg   The firm graph to be dumped with its type information.
99  *
100  *  @return
101  *      A file containing the firm graph and the type information of the firm graph in vcg format.
102  *
103  *  Dumps the graph to a file.  The file name is constructed from the
104  *  name of the entity describing the procedure (irg->entity) and the
105  *  ending -all.vcg.  Eventually overwrites existing files.
106  *
107  * @see turn_off_edge_labels()
108  */
109 void dump_ir_graph_w_types (ir_graph *irg, const char *suffix);
110
111 /** Dumps a firm graph and  all the type information needed for Calls,
112  *  Sels, ... in this graph.
113  *
114  *  @param irg   The firm graph to be dumped with its type information.
115  *
116  *  @return
117  *      A file containing the firm graph and the type information of the firm graph in vcg format.
118  *
119  *  The graph is in blocked format.
120  *  Dumps the graph to a file.  The file name is constructed from the
121  *  name of the entity describing the procedure (irg->entity) and the
122  *  ending -all.vcg.  Eventually overwrites existing files.
123  *
124  * @see turn_off_edge_labels()
125  */
126 void dump_ir_block_graph_w_types (ir_graph *irg, const char *suffix);
127
128 /** The type of a walker function that is called for each graph.
129  *
130  *  @param irg   current visited graph
131  */
132 typedef void dump_graph_func(ir_graph *irg, const char *suffix);
133
134 /**  A walker that calls a dumper for each graph.
135  *
136  *   @param dump_graph    The dumper to be used for dumping.
137  *
138  *   @return
139  *      Whatever the dumper creates.
140  *
141  *   Walks over all firm graphs and  calls a dumper for each graph.
142  *   The following dumpers can be passed as arguments:
143  *   - dump_ir_graph()
144  *   - dump_ir_block_graph()
145  *   - dump_cfg()
146  *   - dump_type_graph()
147  *   - dump_ir_graph_w_types()
148  *
149  * @see turn_off_edge_labels()
150  */
151 void dump_all_ir_graphs (dump_graph_func *dump_graph, const char *suffix);
152
153
154 /**  Dump the control flow graph of a procedure.
155  *
156  *   @param irg  The firm graph whose CFG shall be dumped.
157  *
158  *   @return
159  *      A file containing the CFG in vcg format.
160  *
161  *   Dumps the control flow graph of a procedure in standard xvcg format.
162  *   Dumps the graph to a file.  The file name is constructed from the
163  *   name of the entity describing the procedure (irg->entity) and the
164  *   ending -cfg.vcg.  Eventually overwrites existing files.
165  *
166  * @see turn_off_edge_labels()
167  */
168 void dump_cfg (ir_graph *irg, const char *suffix);
169
170
171 /* **************************************************************************** */
172 /*                              CALLGRAPH DUMPERS                               */
173 /* **************************************************************************** */
174
175
176 /** Dump the call graph.
177  *
178  * Dumps the callgraph to a file "Callgraph"<suffix>".vcg".
179  */
180 void dump_callgraph(const char *suffix);
181
182 /* **************************************************************************** */
183 /*                              TYPEGRAPH DUMPERS                               */
184 /* **************************************************************************** */
185
186 /**
187  *  Dumps all the type information needed for Calls, Sels, ... in this graph.
188  *  Does not dump the graph!
189  *
190  *  @param irg   The firm graph whose type information is to be dumped.
191  *  @return
192  *      A file containing the type information of the firm graph in vcg format.
193  *
194  *  Dumps this graph to a file.  The file name is constructed from the
195  *  name of the entity describing the procedure (irg->entity) and the
196  *  ending -type.vcg.  Eventually overwrites existing files.
197  *
198  * @see turn_off_edge_labels()
199  */
200 void dump_type_graph (ir_graph *irg, const char *suffix);
201
202 /**  Dumps all type information.
203  *
204  *   @return
205  *      A file containing all type information for the program in standard
206  *      vcg format.
207  *
208  *   Dumps all type information that is somehow reachable in standard vcg
209  *   format.
210  *   Dumps the graph to a file named All_types.vcg.
211  *
212  * @see turn_off_edge_labels()
213  */
214 void dump_all_types (const char *suffix);
215
216 /**  Dumps the class hierarchy with or without entities.
217  *
218  *   @param entities    Flag whether to dump the entities.
219  *
220  *   @return
221  *      A file containing the class hierarchy tree for the program in standard
222  *      vcg format.
223  *
224  *   Does not dump the global type.
225  *   Dumps a node for all classes and the sub/supertype relations.  If
226  *   entities is set to true also dumps the entities of classes, but without
227  *   any additional information as the entities type.  The overwrites relation
228  *   is dumped along with the entities.
229  *   Dumps to a file class_hierarchy.vcg
230  */
231 void dump_class_hierarchy (bool entities, const char *suffix);
232
233 /* **************************************************************************** */
234 /*                              LOOPTREE DUMPERS                                */
235 /* **************************************************************************** */
236
237 /**
238  * Dump a standalone loop tree, which contains the loop nodes and the firm nodes
239  * belonging to one loop packed together in one subgraph.  Dumps to file
240  * <name of irg><suffix>-looptree.vcg
241  * Turns on edge labels by default.
242  *
243  * Implementing this dumper was stimulated by Florian Liekwegs similar dumper.
244  *
245  * @arg irg     Dump the loop tree for this graph.
246  * @arg suffix  Suffix to filename.
247  */
248 void dump_loop_tree(ir_graph *irg, const char *suffix);
249
250 /** Dumps the firm nodes in the sub-loop-tree of loop to a graph.
251  *
252  *  Dumps the loop nodes if dump_loop_information() is set.
253  *  The name of the file is loop_<loop_nr><suffix>.vcg.
254  *
255  *  @arg loop    Dump the loop tree for this loop.
256  *  @arg suffix  Suffix to filename.
257  */
258 void dump_loop (ir_loop *l, const char *suffix);
259
260 /** Dumps the loop tree over the call graph.
261  *
262  *  See for yourself what you can use this for.
263  *  The filename is "Callgraph_looptree<suffix>.vcg".
264  *
265  *  @arg suffix  Suffix to filename.
266  */
267 void dump_callgraph_loop_tree(const char *suffix);
268
269
270 /* **************************************************************************** */
271 /*                                TEXT DUMPERS                                  */
272 /* **************************************************************************** */
273
274
275 /** Write the irnode and all its attributes to the file passed.
276  * */
277 int dump_irnode_to_file (FILE *f, ir_node *n);
278
279 /** Write the irnode and all its attributes to stdout.
280  *  */
281 void    dump_irnode (ir_node *n);
282
283 /** Write the graph and all its attributes to the file passed.
284  *  Does not write the nodes.
285  * */
286 void dump_graph_to_file(FILE *F, ir_graph *irg);
287
288 /** Write the graph and all its attributes to stdout.
289  *  Does not write the nodes.
290  *  */
291 void dump_graph(ir_graph *g);
292
293
294 /** Dump graph information as text.
295  *
296  *  Often graphs are unhandy in their vcg representation.  The text
297  *  dumper represents the information for the firm nodes more compact,
298  *  but the relations between the nodes only implicitly.
299  *
300  *  The file name is the graph name (get_entity_name()), appended by
301  *  <suffix>.txt.
302  */
303 void dump_graph_as_text(ir_graph *irg, const char *suffix);
304
305
306 /** Verbosity for text dumpers */
307 typedef enum {
308   dump_verbosity_onlynames         = 0x00000001,   /**< only dump names. turns off all other
309                                                       flags up to 0x00010000. */
310   dump_verbosity_fields            = 0x00000002,   /**< dump types and fields (like a type declaration) */
311   dump_verbosity_methods           = 0x00000004,   /**< dump types and methods (like a type declaration) */
312   dump_verbosity_typeattrs         = 0x00000008,   /**< dump all type attributes */
313   dump_verbosity_entattrs          = 0x00000010,   /**< dump all entity attributes */
314   dump_verbosity_entconsts         = 0x00000020,   /**< dump entity constants */
315
316   dump_verbosity_accessStats       = 0x00000100,   /**< dump entity access statistics */
317   dump_verbosity_csv               = 0x00000200,   /**< dump access statistics as comma separated list */
318
319   dump_verbosity_noClassTypes      = 0x00001000,   /**< dump no class       types */
320   dump_verbosity_noStructTypes     = 0x00002000,   /**< dump no struct      types */
321   dump_verbosity_noUnionTypes      = 0x00004000,   /**< dump no union       types */
322   dump_verbosity_noArrayTypes      = 0x00008000,   /**< dump no array       types */
323   dump_verbosity_noPointerTypes    = 0x00010000,   /**< dump no pointer     types */
324   dump_verbosity_noMethodTypes     = 0x00020000,   /**< dump no method      types */
325   dump_verbosity_noPrimitiveTypes  = 0x00040000,   /**< dump no primitive   types */
326   dump_verbosity_noEnumerationTypes= 0x00080000,   /**< dump no enumeration types */
327
328   dump_verbosity_onlyClassTypes     = 0x000FE000,  /**< dump only class     types */
329   dump_verbosity_onlyStructTypes    = 0x000FD000,  /**< dump only struct    types */
330   dump_verbosity_onlyUnionTypes     = 0x000FB000,  /**< dump only union     types */
331   dump_verbosity_onlyArrayTypes     = 0x000F7000,  /**< dump only array     types */
332   dump_verbosity_onlyPointerTypes   = 0x000EF000,  /**< dump only pointer   types */
333   dump_verbosity_onlyMethodTypes    = 0x000DF000,  /**< dump only method    types */
334   dump_verbosity_onlyPrimitiveTypes = 0x000BF000,  /**< dump only primitive types */
335   dump_verbosity_onlyEnumerationTypes=0x0007F000,  /**< dump only enumeration types */
336
337   dump_verbosity_max                = 0x4FF00FFE   /**< turn on all verbosity.
338                                                         @@@ Because of a bug in gcc 3.2 we can not set the first two bits. */
339 } dump_verbosity;
340
341
342 /** Write the entity and all its attributes to the passed file.
343  *  */
344 void    dump_entity_to_file (FILE *F, entity *ent, unsigned verbosity);
345
346 /** Write the entity and all its attributes to the stdout.
347  *
348  *  Calls dump_entity_to_file().  */
349 void    dump_entity (entity *ent);
350
351 /** Write the type and all its attributes to the file passed.
352  * */
353 void    dump_type_to_file (FILE *f, type *tp, dump_verbosity verbosity);
354
355 /** Write the type and all its attributes to stdout.
356  *  */
357 void    dump_type (type *tp);
358
359
360 /** Dump type information as text.
361  *
362  *  Often type graphs are unhandy in their vcg representation.  The text
363  *  dumper represents the information for a single type more compact, but
364  *  the relations between the types only implicitly.
365  *  Dumps only 'real' types, i.e., those in the type list.  Does not dump
366  *  the global type nor frame types or the like.
367  *
368  *  The file name is the program name (get_irp_name()), or 'TextTypes'
369  *  if the program name is not set, appended by <suffix>-types.txt.
370  *  For verbosity see the documentation of the verbosity flags above.
371  */
372 void dump_types_as_text(unsigned verbosity, const char *suffix);
373
374 /* **************************************************************************** */
375 /*                                    FLAGS                                     */
376 /* **************************************************************************** */
377
378 /** Output a selected graph.
379  *
380  *  All graph dumpers check this name.  If the name is != "" and
381  *  not a prefix of the graph to be dumped, the dumper does not
382  *  dump the graph.
383  *
384  *  @param name The prefix of the name (not the ld_name) of the method
385  *              entity to be dumped.
386  */
387 void only_dump_method_with_name(ident *name);
388
389 /**  Sets the vcg flag "display_edge_labels" to no.
390  *
391  *   This is necessary as xvcg and aisee both fail to display graphs
392  *   with self-edges if these edges have labes.
393  */
394 void turn_off_edge_labels(void);
395
396 /**
397  *  If set to true constants will be replicated for every use. In non
398  *  blocked view edges from constant to block are skipped.  Vcg then
399  *  layouts the graphs more compact, this makes them better readable.
400  *  The flag is automatically and temporarily set to false if other
401  *  edges are dumped, as outs, loop, ...
402  *  Default setting: false.
403  */
404 void dump_consts_local(bool b);
405
406 /**
407  * Returns false if dump_out_edge_flag or dump_loop_information_flag
408  * are set, else returns dump_const_local_flag.
409  */
410 bool get_opt_dump_const_local(void);
411
412 /**  Turns off dumping the values of constant entities. Makes type graphs
413  *   better readable.
414  */
415 void dump_constant_entity_values(bool b);
416
417 /**  Turns on dumping the edges from the End node to nodes to be kept
418  *   alive.
419  */
420 void dump_keepalive_edges(bool b);
421 bool get_opt_dump_keepalive_edges(void);
422
423 /** Turns on dumping the out edges starting from the Start block in
424  *  dump_ir_graph.
425  *
426  *  To test the consistency of the out datastructure.
427  */
428 void dump_out_edges(bool b);
429
430 /** If this flag is set the dumper dumps edges to immediate dominator in cfg.
431  */
432 void dump_dominator_information(bool b);
433
434 /** If this flag is set the dumper dumps loop nodes and edges from
435  *  these nodes to the contained ir nodes.
436  *
437  *  If the loops are interprocedural nodes can be missing.
438  */
439 void dump_loop_information(bool b);
440
441 /** If set and backedge info is computed, backedges are dumped dashed
442  *  and as vcg 'backedge' construct.
443  *
444  *  Default: set.
445  */
446 void dump_backedge_information(bool b);
447
448 /** Dump the information of type field specified in ana/irtypeinfo.h.
449  *
450  *  If the flag is set, the type name is output in [] in the node label,
451  *  else it is output as info.
452  */
453 void dump_analysed_type_info(bool b);
454
455 /** Write the address of a node into the vcg info.
456  *
457  *  This is off per default for automatic comparisons of
458  *  vcg graphs -- these will differ in the pointer values!
459  */
460 void dump_pointer_values_to_info(bool b);
461
462
463 # endif /* _IRDUMP_H_ */