X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=ir%2Fir%2Firdump.h;h=a4564b2b769a42827f702d65d12a5888800f9a90;hb=637542932dc27dcdfc7def09b58d9d5d4c34fb77;hp=3412e12004a1df8d6d0ba37db5298f6daed62585;hpb=15f2e7ae4676437dec5bac48450bbbc43e77cc9e;p=libfirm diff --git a/ir/ir/irdump.h b/ir/ir/irdump.h index 3412e1200..a4564b2b7 100644 --- a/ir/ir/irdump.h +++ b/ir/ir/irdump.h @@ -88,6 +88,24 @@ void dump_ir_graph (ir_graph *irg, const char *suffix); */ void dump_ir_block_graph (ir_graph *irg, const char *suffix); +/** Dump a firm graph without explicit block nodes but grouped in extended blocks. + * + * @param irg The firm graph to be dumped. + * + * @return + * A file containing the firm graph in vcg format. + * + * Dumps all Firm nodes of a single graph for a single procedure in + * extended xvcg format. + * Dumps the graph to a file. The file name is constructed from the + * name of the entity describing the procedure (irg->entity) and the + * ending <-ip>.vcg. Eventually overwrites existing files. Dumps several + * procedures in boxes if interprocedural_view. + * + * @see turn_off_edge_labels() + */ +void dump_ir_extblock_graph (ir_graph *irg, const char *suffix); + /** Dumps all graphs in interprocedural view to a file named All_graphs.vcg. */ void dump_all_cg_block_graph(const char *suffix); @@ -167,6 +185,21 @@ void dump_all_ir_graphs (dump_graph_func *dump_graph, const char *suffix); */ void dump_cfg (ir_graph *irg, const char *suffix); +/** Dump a node and its predecessors forming a subgraph to a vcg file. + * + * @param root The node serving as root for the subgraph. + * @param depth Dump nodes on paths starting at root with length depth. + * @param suffix A suffix for the file name. + * + * Dumps the graph to a file. The file name is constructed from the + * name of the entity describing the procedure the passed node is + * in, suffix and the ending -subg_.vcg. nr is a unique number + * for each graph dumped. Eventually overwrites existing files. + * + * @return + * A file containing the subgraph in vcg format. + */ +void dump_subgraph (ir_node *root, int depth, const char *suffix); /* **************************************************************************** */ /* CALLGRAPH DUMPERS */ @@ -176,6 +209,8 @@ void dump_cfg (ir_graph *irg, const char *suffix); /** Dump the call graph. * * Dumps the callgraph to a file "Callgraph"".vcg". + * + * @see dump_callgraph_loop_tree(const char *suffix) */ void dump_callgraph(const char *suffix); @@ -278,7 +313,7 @@ int dump_irnode_to_file (FILE *f, ir_node *n); /** Write the irnode and all its attributes to stdout. * */ -void dump_irnode (ir_node *n); +void dump_irnode (ir_node *n); /** Write the graph and all its attributes to the file passed. * Does not write the nodes. @@ -309,6 +344,9 @@ typedef enum { flags up to 0x00010000. */ dump_verbosity_fields = 0x00000002, /**< dump types and fields (like a type declaration) */ dump_verbosity_methods = 0x00000004, /**< dump types and methods (like a type declaration) */ + dump_verbosity_nostatic = 0x00000040, /**< dump types and dynamic allocated fields (like a + type declaration). This excludes methods and + static, polymorphic fields. */ dump_verbosity_typeattrs = 0x00000008, /**< dump all type attributes */ dump_verbosity_entattrs = 0x00000010, /**< dump all entity attributes */ dump_verbosity_entconsts = 0x00000020, /**< dump entity constants */ @@ -334,8 +372,10 @@ typedef enum { dump_verbosity_onlyPrimitiveTypes = 0x000BF000, /**< dump only primitive types */ dump_verbosity_onlyEnumerationTypes=0x0007F000, /**< dump only enumeration types */ - dump_verbosity_max = 0x4FF00FFE /**< turn on all verbosity. - @@@ Because of a bug in gcc 3.2 we can not set the first two bits. */ + dump_verbosity_max = 0x4FF00FBE /**< turn on all verbosity. + Do not turn on negative flags! + @@@ Because of a bug in gcc 3.2 we can not set the + first two bits. */ } dump_verbosity; @@ -350,7 +390,7 @@ void dump_entity (entity *ent); /** Write the type and all its attributes to the file passed. * */ -void dump_type_to_file (FILE *f, type *tp, unsigned verbosity); +void dump_type_to_file (FILE *f, type *tp, dump_verbosity verbosity); /** Write the type and all its attributes to stdout. * */ @@ -371,6 +411,11 @@ void dump_type (type *tp); */ void dump_types_as_text(unsigned verbosity, const char *suffix); +/** Dumps all global variables as text. + * + */ +void dump_globals_as_text(unsigned verbosity, const char *suffix); + /* **************************************************************************** */ /* FLAGS */ /* **************************************************************************** */ @@ -384,12 +429,19 @@ void dump_types_as_text(unsigned verbosity, const char *suffix); * @param name The prefix of the name (not the ld_name) of the method * entity to be dumped. */ -void only_dump_method_with_name(ident *name); +void only_dump_method_with_name(ident *name); + +/** Returns the name set with only_dump_method_with_name(). */ +ident *get_dump_file_filter_ident(void); + +/** Returns true if dump file filter is not set, or if it is a + * prefix of name. */ +int is_filtered_dump_name(ident *name); /** Sets the vcg flag "display_edge_labels" to no. * * This is necessary as xvcg and aisee both fail to display graphs - * with self-edges if these edges have labes. + * with self-edges if these edges have lables. */ void turn_off_edge_labels(void); @@ -450,7 +502,7 @@ void dump_backedge_information(bool b); * If the flag is set, the type name is output in [] in the node label, * else it is output as info. */ -void dump_analysed_type_info(bool b); +void set_opt_dump_analysed_type_info(bool b); /** Write the address of a node into the vcg info. *