X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=ir%2Fbe%2Fbeutil.c;h=e48f3ed29f899a0c382181f4855f72c219a26ccb;hb=e7e5dbe35dbb245c5c833192e05c22de3618a5a5;hp=97e12684b0982701ba1ad1e6a9f72c10815e526c;hpb=4c66ebcce62ceffb68a891142dd309429e03351a;p=libfirm diff --git a/ir/be/beutil.c b/ir/be/beutil.c index 97e12684b..e48f3ed29 100644 --- a/ir/be/beutil.c +++ b/ir/be/beutil.c @@ -1,24 +1,45 @@ +/** + * Contains some useful function for the backend. + * @author Sebastian Hack + * @cvsid $Id$ + */ #ifdef HAVE_CONFIG_H #include "config.h" #endif #include +#include "pset.h" + #include "irgraph.h" #include "irgwalk.h" #include "irdump_t.h" +#include "irdom_t.h" #include "ircons.h" #include "iropt.h" #include "irgopt.h" +#include "irtools.h" #include "irprintf.h" #include "beutil.h" #include "besched_t.h" #include "bearch.h" +/* Get an always empty set. */ +pset *be_empty_set(void) +{ + static pset *empty_set = NULL; + + if(!empty_set) + empty_set = pset_new_ptr(1); + + assert(pset_count(empty_set) == 0); + return empty_set; +} + struct dump_env { - FILE *f; - arch_env_t *env; + FILE *f; + arch_env_t *env; }; static void dump_allocated_block(ir_node *block, void *data) @@ -67,9 +88,9 @@ static void dump_allocated_block(ir_node *block, void *data) void dump_allocated_irg(arch_env_t *arch_env, ir_graph *irg, char *suffix) { char buf[1024]; - struct dump_env env; + struct dump_env env; - env.env = arch_env; + env.env = arch_env; ir_snprintf(buf, sizeof(buf), "%F-alloc%s.vcg", irg, suffix); @@ -115,33 +136,63 @@ void localize_consts(ir_graph *irg) dead_node_elimination(irg); } +/** + * Edge hook to dump the schedule edges. + */ static int sched_edge_hook(FILE *F, ir_node *irn) { - if(sched_is_scheduled(irn) && sched_has_prev(irn)) { - ir_node *prev = sched_prev(irn); - fprintf(F, "edge:{sourcename:\""); - PRINT_NODEID(irn); - fprintf(F, "\" targetname:\""); - PRINT_NODEID(prev); - fprintf(F, "\" color:magenta}\n"); - } - return 1; + if(sched_is_scheduled(irn) && sched_has_prev(irn)) { + ir_node *prev = sched_prev(irn); + fprintf(F, "edge:{sourcename:\""); + PRINT_NODEID(irn); + fprintf(F, "\" targetname:\""); + PRINT_NODEID(prev); + fprintf(F, "\" color:magenta}\n"); + } + return 1; } void dump_ir_block_graph_sched(ir_graph *irg, const char *suffix) { - DUMP_NODE_EDGE_FUNC old = get_dump_node_edge_hook(); + DUMP_NODE_EDGE_FUNC old = get_dump_node_edge_hook(); - dump_consts_local(0); - set_dump_node_edge_hook(sched_edge_hook); - dump_ir_block_graph(irg, suffix); - set_dump_node_edge_hook(old); + dump_consts_local(0); + set_dump_node_edge_hook(sched_edge_hook); + dump_ir_block_graph(irg, suffix); + set_dump_node_edge_hook(old); } -static void clear_link(ir_node *irn, void *data) -{ - set_irn_link(irn, NULL); +void dump_ir_extblock_graph_sched(ir_graph *irg, const char *suffix) { + DUMP_NODE_EDGE_FUNC old = get_dump_node_edge_hook(); + + dump_consts_local(0); + set_dump_node_edge_hook(sched_edge_hook); + dump_ir_extblock_graph(irg, suffix); + set_dump_node_edge_hook(old); +} + +/** + * Dumps a graph and numbers all dumps. + * @param irg The graph + * @param suffix A suffix to its file name. + * @param dumper The dump function + */ +void be_dump(ir_graph *irg, const char *suffix, void (*dumper)(ir_graph *, const char *)) { + static ir_graph *last_irg = NULL; + static int nr = 0; + char buf[128]; + + if (irg != last_irg) { + last_irg = irg; + nr = 0; + } + + snprintf(buf, sizeof(buf), "-%02d%s", nr++, suffix); + buf[sizeof(buf) - 1] = '\0'; + dumper(irg, buf); } + + static void collect_phis(ir_node *irn, void *data) { if(is_Phi(irn)) { @@ -153,10 +204,41 @@ static void collect_phis(ir_node *irn, void *data) void be_clear_links(ir_graph *irg) { - irg_walk_graph(irg, clear_link, NULL, NULL); + irg_walk_graph(irg, firm_clear_link, NULL, NULL); } void be_collect_phis(ir_graph *irg) { irg_walk_graph(irg, collect_phis, NULL, NULL); } + +static void count_num_reachable_nodes(ir_node *irn, void *env) { + int *num = env; + (*num)++; +} + +unsigned get_num_reachable_nodes(ir_graph *irg) { + int num = 0; + irg_walk_graph(irg, count_num_reachable_nodes, NULL, &num); + return num; +} + +/* FIXME: not used. can be deleted? */ +ir_node *dom_up_search(pset *accept, ir_node *start_point_exclusive) { + ir_node *irn, *idom; + + /* search the current block */ + for (irn=sched_prev(start_point_exclusive); irn; irn=sched_prev(irn)) + if (pset_find_ptr(accept, irn)) + return irn; + + /* FIXME: This is obviously buggy: after the first recursive call idom is a block + and get_nodes_block will fail. + Moreover, why not a simple iteration instead of recursion */ + idom = get_Block_idom(get_nodes_block(start_point_exclusive)); + + if (idom) + return dom_up_search(accept, idom); /* continue search in idom-block */ + else + return NULL; /* this was the start block and we did not find an acceptable irn */ +}