X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=ir%2Fana%2Fircfscc.c;h=b6e4dcf546b75c79e0b08bedb1df421c096a9397;hb=10e58f9669ea6c77e82bd3bc12c4ac5bbaa6bb15;hp=c069ed09dde03743c5879b66fee28543e0e62c35;hpb=48b0fa8564962b17e136a0f925eff458ca16abef;p=libfirm diff --git a/ir/ana/ircfscc.c b/ir/ana/ircfscc.c index c069ed09d..b6e4dcf54 100644 --- a/ir/ana/ircfscc.c +++ b/ir/ana/ircfscc.c @@ -1,5 +1,5 @@ /* - * Copyright (C) 1995-2008 University of Karlsruhe. All right reserved. + * Copyright (C) 1995-2011 University of Karlsruhe. All right reserved. * * This file is part of libFirm. * @@ -53,7 +53,7 @@ static int loop_node_cnt = 0; /** Counter to generate depth first numbering of visited nodes. */ static int current_dfn = 1; -static int max_loop_depth = 0; +static unsigned max_loop_depth = 0; void link_to_reg_end(ir_node *n, void *env); @@ -76,65 +76,71 @@ typedef struct scc_info { } scc_info; /** Allocate a new scc_info on the given obstack */ -static inline scc_info *new_scc_info(struct obstack *obst) { - scc_info *info = obstack_alloc(obst, sizeof(*info)); - memset(info, 0, sizeof(*info)); - return info; +static inline scc_info *new_scc_info(struct obstack *obst) +{ + return OALLOCZ(obst, scc_info); } /** * Marks the node n to be on the stack. */ -static inline void mark_irn_in_stack(ir_node *n) { - scc_info *info = get_irn_link(n); +static inline void mark_irn_in_stack(ir_node *n) +{ + scc_info *info = (scc_info*) get_irn_link(n); info->in_stack = 1; } /** * Marks the node n to be not on the stack. */ -static inline void mark_irn_not_in_stack(ir_node *n) { - scc_info *info = get_irn_link(n); +static inline void mark_irn_not_in_stack(ir_node *n) +{ + scc_info *info = (scc_info*) get_irn_link(n); info->in_stack = 0; } /** * Returns whether node n is on the stack. */ -static inline int irn_is_in_stack(ir_node *n) { - scc_info *info = get_irn_link(n); +static inline int irn_is_in_stack(ir_node *n) +{ + scc_info *info = (scc_info*) get_irn_link(n); return info->in_stack; } /** * Sets node n uplink value. */ -static inline void set_irn_uplink(ir_node *n, int uplink) { - scc_info *info = get_irn_link(n); +static inline void set_irn_uplink(ir_node *n, int uplink) +{ + scc_info *info = (scc_info*) get_irn_link(n); info->uplink = uplink; } /** * Return node n uplink value. */ -static inline int get_irn_uplink(ir_node *n) { - scc_info *info = get_irn_link(n); +static inline int get_irn_uplink(ir_node *n) +{ + scc_info *info = (scc_info*) get_irn_link(n); return info->uplink; } /** * Sets node n dfn value. */ -static inline void set_irn_dfn(ir_node *n, int dfn) { - scc_info *info = get_irn_link(n); +static inline void set_irn_dfn(ir_node *n, int dfn) +{ + scc_info *info = (scc_info*) get_irn_link(n); info->dfn = dfn; } /** * Returns node n dfn value. */ -static inline int get_irn_dfn(ir_node *n) { - scc_info *info = get_irn_link(n); +static inline int get_irn_dfn(ir_node *n) +{ + scc_info *info = (scc_info*) get_irn_link(n); return info->dfn; } @@ -145,12 +151,13 @@ static inline int get_irn_dfn(ir_node *n) { /** An IR-node stack */ static ir_node **stack = NULL; /** The top (index) of the IR-node stack */ -static int tos = 0; +static size_t tos = 0; /** * Initializes the IR-node stack */ -static inline void init_stack(void) { +static inline void init_stack(void) +{ if (stack) { ARR_RESIZE(ir_node *, stack, 1000); } else { @@ -168,9 +175,10 @@ static void finish_stack(void) /** * Push a node n onto the IR-node stack. */ -static inline void push(ir_node *n) { +static inline void push(ir_node *n) +{ if (tos == ARR_LEN(stack)) { - int nlen = ARR_LEN(stack) * 2; + size_t nlen = ARR_LEN(stack) * 2; ARR_RESIZE(ir_node *, stack, nlen); } stack[tos++] = n; @@ -180,7 +188,8 @@ static inline void push(ir_node *n) { /** * Pop a node from the IR-node stack and return it. */ -static inline ir_node *pop(void) { +static inline ir_node *pop(void) +{ ir_node *n = stack[--tos]; mark_irn_not_in_stack(n); return n; @@ -190,7 +199,8 @@ static inline ir_node *pop(void) { * The nodes from tos up to n belong to the current loop. * Removes them from the stack and adds them to the current loop. */ -static inline void pop_scc_to_loop(ir_node *n) { +static inline void pop_scc_to_loop(ir_node *n) +{ ir_node *m; do { @@ -205,8 +215,9 @@ static inline void pop_scc_to_loop(ir_node *n) { /* GL ??? my last son is my grandson??? Removes cfloops with no ir_nodes in them. Such loops have only another loop as son. (Why can't they have two loops as sons? Does it never get that far? ) */ -static void close_loop(ir_loop *l) { - int last = get_loop_n_elements(l) - 1; +static void close_loop(ir_loop *l) +{ + size_t last = get_loop_n_elements(l) - 1; loop_element lelement = get_loop_element(l, last); ir_loop *last_son = lelement.son; @@ -235,7 +246,8 @@ static void close_loop(ir_loop *l) { * Removes and unmarks all nodes up to n from the stack. * The nodes must be visited once more to assign them to a scc. */ -static inline void pop_scc_unmark_visit(ir_node *n) { +static inline void pop_scc_unmark_visit(ir_node *n) +{ ir_node *m; do { @@ -253,7 +265,8 @@ static inline void pop_scc_unmark_visit(ir_node *n) { * to the new loop and returns its father. * The loop is allocated on the outermost_ir_graphs's obstack. */ -static ir_loop *new_loop(void) { +static ir_loop *new_loop(void) +{ ir_loop *father = current_loop; ir_loop *son = alloc_loop(father, outermost_ir_graph->obst); @@ -273,8 +286,9 @@ static ir_loop *new_loop(void) { * Clear the backedges for all nodes. * Called from a walker. */ -static inline void init_node(ir_node *n, void *env) { - struct obstack *obst = env; +static inline void init_node(ir_node *n, void *env) +{ + struct obstack *obst = (struct obstack*) env; if (is_Block(n)) set_irn_link(n, new_scc_info(obst)); clear_backedges(n); @@ -283,7 +297,8 @@ static inline void init_node(ir_node *n, void *env) { /** * Initializes the common global settings for the scc algorithm */ -static inline void init_scc_common(void) { +static inline void init_scc_common(void) +{ current_dfn = 1; loop_node_cnt = 0; init_stack(); @@ -293,7 +308,8 @@ static inline void init_scc_common(void) { * Initializes the scc algorithm for the intraprocedural case. * Add scc info to every block node. */ -static inline void init_scc(ir_graph *irg, struct obstack *obst) { +static inline void init_scc(ir_graph *irg, struct obstack *obst) +{ init_scc_common(); irg_walk_graph(irg, init_node, NULL, obst); } @@ -303,64 +319,33 @@ static inline void finish_scc(void) finish_stack(); } -#ifdef INTERPROCEDURAL_VIEW -/** - * Initializes the scc algorithm for the interprocedural case. - */ -static inline void init_ip_scc(struct obstack *obst) { - init_scc_common(); - cg_walk(init_node, NULL, obst); - -#if EXPERIMENTAL_CFLOOP_TREE - cg_walk(link_to_reg_end, NULL, NULL); -#endif -} -#endif - -/** - * Condition for breaking the recursion: n is the block - * that gets the initial control flow from the Start node. - */ -static int is_outermost_StartBlock(ir_node *n) { - /* Test whether this is the outermost Start node. If so - recursion must end. */ - assert(is_Block(n)); - if (get_Block_n_cfgpreds(n) == 1 && - is_Start(skip_Proj(get_Block_cfgpred(n, 0))) && - get_Block_cfgpred_block(n, 0) == n) { - return 1; - } - return 0; -} - /** Returns non-zero if n is a loop header, i.e., it is a Block node * and has predecessors within the cfloop and out of the cfloop. * * @param n the block node to check * @param root only needed for assertion. */ -static int is_head(ir_node *n, ir_node *root) { +static int is_head(ir_node *n, ir_node *root) +{ int i, arity; int some_outof_loop = 0, some_in_loop = 0; (void) root; assert(is_Block(n)); - if (!is_outermost_StartBlock(n)) { - arity = get_Block_n_cfgpreds(n); - for (i = 0; i < arity; i++) { - ir_node *pred = get_Block_cfgpred_block(n, i); - /* ignore Bad control flow: it cannot happen */ - if (is_Bad(pred)) - continue; - if (is_backedge(n, i)) - continue; - if (!irn_is_in_stack(pred)) { - some_outof_loop = 1; - } else { - assert(get_irn_uplink(pred) >= get_irn_uplink(root)); - some_in_loop = 1; - } + arity = get_Block_n_cfgpreds(n); + for (i = 0; i < arity; i++) { + ir_node *pred = get_Block_cfgpred_block(n, i); + /* ignore Bad control flow: it cannot happen */ + if (is_Bad(pred)) + continue; + if (is_backedge(n, i)) + continue; + if (!irn_is_in_stack(pred)) { + some_outof_loop = 1; + } else { + assert(get_irn_uplink(pred) >= get_irn_uplink(root)); + some_in_loop = 1; } } return some_outof_loop & some_in_loop; @@ -375,28 +360,27 @@ static int is_head(ir_node *n, ir_node *root) { * @param n the block node to check * @param root only needed for assertion. */ -static int is_endless_head(ir_node *n, ir_node *root) { +static int is_endless_head(ir_node *n, ir_node *root) +{ int i, arity; int none_outof_loop = 1, some_in_loop = 0; (void) root; assert(is_Block(n)); /* Test for legal loop header: Block, Phi, ... */ - if (!is_outermost_StartBlock(n)) { - arity = get_Block_n_cfgpreds(n); - for (i = 0; i < arity; i++) { - ir_node *pred = get_Block_cfgpred_block(n, i); - /* ignore Bad control flow: it cannot happen */ - if (is_Bad(pred)) - continue; - if (is_backedge(n, i)) - continue; - if (!irn_is_in_stack(pred)) { - none_outof_loop = 0; - } else { - assert(get_irn_uplink(pred) >= get_irn_uplink(root)); - some_in_loop = 1; - } + arity = get_Block_n_cfgpreds(n); + for (i = 0; i < arity; i++) { + ir_node *pred = get_Block_cfgpred_block(n, i); + /* ignore Bad control flow: it cannot happen */ + if (is_Bad(pred)) + continue; + if (is_backedge(n, i)) + continue; + if (!irn_is_in_stack(pred)) { + none_outof_loop = 0; + } else { + assert(get_irn_uplink(pred) >= get_irn_uplink(root)); + some_in_loop = 1; } } return none_outof_loop && some_in_loop; @@ -406,22 +390,21 @@ static int is_endless_head(ir_node *n, ir_node *root) { * Returns index of the predecessor with the smallest dfn number * greater-equal than limit. */ -static int smallest_dfn_pred(ir_node *n, int limit) { +static int smallest_dfn_pred(ir_node *n, int limit) +{ int i, index = -2, min = -1; - if (!is_outermost_StartBlock(n)) { - int arity = get_Block_n_cfgpreds(n); - for (i = 0; i < arity; i++) { - ir_node *pred = get_Block_cfgpred_block(n, i); - /* ignore Bad control flow: it cannot happen */ - if (is_Bad(pred)) - continue; - if (is_backedge(n, i) || !irn_is_in_stack(pred)) - continue; - if (get_irn_dfn(pred) >= limit && (min == -1 || get_irn_dfn(pred) < min)) { - index = i; - min = get_irn_dfn(pred); - } + int arity = get_Block_n_cfgpreds(n); + for (i = 0; i < arity; i++) { + ir_node *pred = get_Block_cfgpred_block(n, i); + /* ignore Bad control flow: it cannot happen */ + if (is_Bad(pred)) + continue; + if (is_backedge(n, i) || !irn_is_in_stack(pred)) + continue; + if (get_irn_dfn(pred) >= limit && (min == -1 || get_irn_dfn(pred) < min)) { + index = i; + min = get_irn_dfn(pred); } } return index; @@ -430,22 +413,21 @@ static int smallest_dfn_pred(ir_node *n, int limit) { /** * Returns index of the predecessor with the largest dfn number. */ -static int largest_dfn_pred(ir_node *n) { +static int largest_dfn_pred(ir_node *n) +{ int i, index = -2, max = -1; - if (!is_outermost_StartBlock(n)) { - int arity = get_Block_n_cfgpreds(n); - for (i = 0; i < arity; i++) { - ir_node *pred = get_Block_cfgpred_block(n, i); - /* ignore Bad control flow: it cannot happen */ - if (is_Bad(pred)) - continue; - if (is_backedge(n, i) || !irn_is_in_stack(pred)) - continue; - if (get_irn_dfn(pred) > max) { - index = i; - max = get_irn_dfn(pred); - } + int arity = get_Block_n_cfgpreds(n); + for (i = 0; i < arity; i++) { + ir_node *pred = get_Block_cfgpred_block(n, i); + /* ignore Bad control flow: it cannot happen */ + if (is_Bad(pred)) + continue; + if (is_backedge(n, i) || !irn_is_in_stack(pred)) + continue; + if (get_irn_dfn(pred) > max) { + index = i; + max = get_irn_dfn(pred); } } return index; @@ -457,11 +439,13 @@ static int largest_dfn_pred(ir_node *n) { * returns the tail of the loop. * If it finds no backedge returns NULL. */ -static ir_node *find_tail(ir_node *n) { +static ir_node *find_tail(ir_node *n) +{ ir_node *m; - int i, res_index = -2; + int res_index = -2; + size_t i; - m = stack[tos-1]; /* tos = top of stack */ + m = stack[tos - 1]; /* tos = top of stack */ if (is_head(m, n)) { res_index = smallest_dfn_pred(m, 0); if ((res_index == -2) && /* no smallest dfn pred found. */ @@ -470,16 +454,15 @@ static ir_node *find_tail(ir_node *n) { } else { if (m == n) return NULL; - for (i = tos-2; i >= 0; --i) { - - m = stack[i]; + for (i = tos - 1; i != 0;) { + m = stack[--i]; if (is_head(m, n)) { res_index = smallest_dfn_pred(m, get_irn_dfn(m) + 1); if (res_index == -2) /* no smallest dfn pred found. */ res_index = largest_dfn_pred(m); if ((m == n) && (res_index == -2)) { - i = -1; + i = (size_t)-1; } break; } @@ -488,15 +471,15 @@ static ir_node *find_tail(ir_node *n) { /* We should not walk past our selves on the stack: The upcoming nodes are not in this loop. We assume a loop not reachable from Start. */ if (m == n) { - i = -1; + i = (size_t)-1; break; } } - if (i < 0) { + if (i == (size_t)-1) { /* A dead loop not reachable from Start. */ - for (i = tos-2; i >= 0; --i) { - m = stack[i]; + for (i = tos - 1; i != 0;) { + m = stack[--i]; if (is_endless_head(m, n)) { res_index = smallest_dfn_pred (m, get_irn_dfn(m) + 1); if (res_index == -2) /* no smallest dfn pred found. */ @@ -511,13 +494,14 @@ static ir_node *find_tail(ir_node *n) { assert(res_index > -2); set_backedge(m, res_index); - return is_outermost_StartBlock(n) ? NULL : get_Block_cfgpred_block(m, res_index); + return get_Block_cfgpred_block(m, res_index); } /** * returns non.zero if l is the outermost loop. */ -inline static int is_outermost_loop(ir_loop *l) { +inline static int is_outermost_loop(ir_loop *l) +{ return l == get_loop_outer_loop(l); } @@ -528,7 +512,9 @@ inline static int is_outermost_loop(ir_loop *l) { /** * Walks over all blocks of a graph */ -static void cfscc(ir_node *n) { +static void cfscc(ir_node *n) +{ + int arity; int i; assert(is_Block(n)); @@ -542,26 +528,24 @@ static void cfscc(ir_node *n) { ++current_dfn; push(n); - if (!is_outermost_StartBlock(n)) { - int arity = get_Block_n_cfgpreds(n); - - for (i = 0; i < arity; i++) { - ir_node *m; - - if (is_backedge(n, i)) - continue; - m = get_Block_cfgpred_block(n, i); - /* ignore Bad control flow: it cannot happen */ - if (is_Bad(m)) - continue; - - cfscc(m); - if (irn_is_in_stack(m)) { - /* Uplink of m is smaller if n->m is a backedge. - Propagate the uplink to mark the cfloop. */ - if (get_irn_uplink(m) < get_irn_uplink(n)) - set_irn_uplink(n, get_irn_uplink(m)); - } + arity = get_Block_n_cfgpreds(n); + + for (i = 0; i < arity; i++) { + ir_node *m; + + if (is_backedge(n, i)) + continue; + m = get_Block_cfgpred_block(n, i); + /* ignore Bad control flow: it cannot happen */ + if (is_Bad(m)) + continue; + + cfscc(m); + if (irn_is_in_stack(m)) { + /* Uplink of m is smaller if n->m is a backedge. + Propagate the uplink to mark the cfloop. */ + if (get_irn_uplink(m) < get_irn_uplink(n)) + set_irn_uplink(n, get_irn_uplink(m)); } } @@ -633,15 +617,14 @@ static void cfscc(ir_node *n) { } /* Constructs control flow backedge information for irg. */ -int construct_cf_backedges(ir_graph *irg) { +int construct_cf_backedges(ir_graph *irg) +{ ir_graph *rem = current_ir_graph; ir_loop *head_rem; ir_node *end = get_irg_end(irg); struct obstack temp; int i; - assert(!get_interprocedural_view() && - "use construct_ip_cf_backedges()"); max_loop_depth = 0; current_ir_graph = irg; @@ -676,149 +659,10 @@ int construct_cf_backedges(ir_graph *irg) { return max_loop_depth; } -void assure_cf_loop(ir_graph *irg) { +void assure_cf_loop(ir_graph *irg) +{ irg_loopinfo_state state = get_irg_loopinfo_state(irg); if (state != loopinfo_cf_consistent) construct_cf_backedges(irg); } - -#ifdef INTERPROCEDURAL_VIEW -int construct_ip_cf_backedges (void) { - ir_graph *rem = current_ir_graph; - int rem_ipv = get_interprocedural_view(); - struct obstack temp; - int i; - - assert(get_irp_ip_view_state() == ip_view_valid); - max_loop_depth = 0; - outermost_ir_graph = get_irp_main_irg(); - - obstack_init(&temp); - init_ip_scc(&temp); - - current_loop = NULL; - new_loop(); /* sets current_loop */ - set_interprocedural_view(1); - - inc_max_irg_visited(); - for (i = 0; i < get_irp_n_irgs(); i++) - set_irg_visited(get_irp_irg(i), get_max_irg_visited()); - - /** We have to start the walk at the same nodes as cg_walk. **/ - /* Walk starting at unreachable procedures. Only these - * have End blocks visible in interprocedural view. */ - for (i = 0; i < get_irp_n_irgs(); i++) { - ir_node *sb; - current_ir_graph = get_irp_irg(i); - - sb = get_irg_start_block(current_ir_graph); - - if ((get_Block_n_cfgpreds(sb) > 1) || - (get_nodes_block(get_Block_cfgpred(sb, 0)) != sb)) continue; - - cfscc(get_irg_end_block(current_ir_graph)); - } - - /* Check whether we walked all procedures: there could be procedures - with cyclic calls but no call from the outside. */ - for (i = 0; i < get_irp_n_irgs(); i++) { - ir_node *sb; - current_ir_graph = get_irp_irg(i); - - /* Test start block: if inner procedure end and end block are not - * visible and therefore not marked. */ - sb = get_irg_start_block(current_ir_graph); - if (get_irn_visited(sb) < get_irg_visited(current_ir_graph)) cfscc(sb); - } - - /* Walk all endless cfloops in inner procedures. - * We recognize an inner procedure if the End node is not visited. */ - for (i = 0; i < get_irp_n_irgs(); i++) { - ir_node *e; - current_ir_graph = get_irp_irg(i); - - e = get_irg_end(current_ir_graph); - if (get_irn_visited(e) < get_irg_visited(current_ir_graph)) { - int j; - /* Don't visit the End node. */ - for (j = 0; j < get_End_n_keepalives(e); j++) { - ir_node *el = get_End_keepalive(e, j); - if (is_Block(el)) cfscc(el); - } - } - } - - set_irg_loop(outermost_ir_graph, current_loop); - set_irg_loopinfo_state(current_ir_graph, loopinfo_cf_ip_consistent); - assert(get_irg_loop(outermost_ir_graph)->kind == k_ir_loop); - - obstack_free(&temp, NULL); - current_ir_graph = rem; - set_interprocedural_view(rem_ipv); - return max_loop_depth; -} -#endif - -/** - * Clear the intra- and the interprocedural - * backedge information pf a block. - */ -static void reset_backedges(ir_node *block) { - int rem; - - assert(is_Block(block)); -#ifdef INTERPROCEDURAL_VIEW - rem = get_interprocedural_view(); - set_interprocedural_view(1); - clear_backedges(block); - set_interprocedural_view(0); - clear_backedges(block); - set_interprocedural_view(rem); -#else - (void) rem; - clear_backedges(block); -#endif -} - -/** - * Reset all backedges of the first block of - * a loop as well as all loop info for all nodes of this loop. - * Recurse into all nested loops. - */ -static void loop_reset_backedges(ir_loop *l) { - int i; - reset_backedges(get_loop_node(l, 0)); - for (i = 0; i < get_loop_n_nodes(l); ++i) - set_irn_loop(get_loop_node(l, i), NULL); - for (i = 0; i < get_loop_n_sons(l); ++i) { - loop_reset_backedges(get_loop_son(l, i)); - } -} - -/* Removes all cfloop information. - Resets all backedges */ -void free_cfloop_information(ir_graph *irg) { - ir_loop *loop = get_irg_loop(irg); - if (loop != NULL) { - loop_reset_backedges(loop); - set_irg_loop(irg, NULL); - } - set_irg_loopinfo_state(irg, loopinfo_none); - /* We cannot free the cfloop nodes, they are on the obstack. */ -} - - -void free_all_cfloop_information(void) { - int i; -#ifdef INTERPROCEDURAL_VIEW - int rem = get_interprocedural_view(); - set_interprocedural_view(1); /* To visit all filter nodes */ -#endif - for (i = get_irp_n_irgs() - 1; i >= 0; --i) { - free_cfloop_information(get_irp_irg(i)); - } -#ifdef INTERPROCEDURAL_VIEW - set_interprocedural_view(rem); -#endif -}