From 0f9e388d0a008c3215229024b80897bdc9a6c4e9 Mon Sep 17 00:00:00 2001 From: Michael Beck Date: Sun, 19 Mar 2006 12:02:29 +0000 Subject: [PATCH] dump_ir_extblock_graph_sched() implemented --- ir/be/beutil.c | 38 +++++++++++++++++++++++++------------- ir/be/beutil.h | 7 +++++++ 2 files changed, 32 insertions(+), 13 deletions(-) diff --git a/ir/be/beutil.c b/ir/be/beutil.c index 6dc2e4bfd..42557a9f0 100644 --- a/ir/be/beutil.c +++ b/ir/be/beutil.c @@ -128,26 +128,38 @@ 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); +} + +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_block_graph(irg, suffix); - set_dump_node_edge_hook(old); + set_dump_node_edge_hook(sched_edge_hook); + dump_ir_extblock_graph(irg, suffix); + set_dump_node_edge_hook(old); } /** diff --git a/ir/be/beutil.h b/ir/be/beutil.h index d44902dcd..c11eac3f0 100644 --- a/ir/be/beutil.h +++ b/ir/be/beutil.h @@ -101,6 +101,13 @@ static INLINE FILE *ffopen(const char *base, const char *ext, const char *mode) */ void dump_ir_block_graph_sched(ir_graph *irg, const char *suffix); +/** + * Dump a extended block graph with schedule edges. + * @param irg The graph. + * @param suffix A suffix to its file name. + */ +void dump_ir_extblock_graph_sched(ir_graph *irg, const char *suffix); + /** * Dumps a graph and numbers all dumps. * @param irg The graph -- 2.20.1