X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=ir%2Fana%2Firdom.c;h=ffb2c97b91c8bab517920251c73d233b62f84811;hb=4bad1346ff2abc3923beea23e5ac949acc7ca514;hp=a66d209f9024ea010b035a31dc00513924f31076;hpb=9785eb583134ca36e24eda808b1734d5afe8851c;p=libfirm diff --git a/ir/ana/irdom.c b/ir/ana/irdom.c index a66d209f9..ffb2c97b9 100644 --- a/ir/ana/irdom.c +++ b/ir/ana/irdom.c @@ -1,36 +1,69 @@ -/* Copyright (C) 2002 by Universitaet Karlsruhe -** All rights reserved. -** -** Authors: Goetz Lindenmaier -** -** irdom.c --- Dominator tree. -** -*/ - -/* $Id$ */ +/* + * Project: libFIRM + * File name: ir/ana/irdom.c + * Purpose: Construct and access dominator tree. + * Author: Goetz Lindenmaier + * Modified by: + * Created: 2.2002 + * CVS-ID: $Id$ + * Copyright: (c) 2002-2003 Universität Karlsruhe + * Licence: This file protected by GPL - GNU GENERAL PUBLIC LICENSE. + */ + +#ifdef HAVE_CONFIG_H +#include "config.h" +#endif + +#ifdef HAVE_STRING_H +#include +#endif #include "irouts.h" +#include "xmalloc.h" #include "irgwalk.h" #include "irdom_t.h" #include "irgraph_t.h" /* To access state field. */ #include "irnode_t.h" +#include "ircons_t.h" -/**********************************************************************/ -/** Accessing the dominator datastructures **/ -/**********************************************************************/ +#define get_dom_info(bl) (&(bl)->attr.block.dom) -ir_node *get_Block_idom(ir_node *bl) { - assert(get_irn_op(bl) == op_Block); - return bl->attr.block.dom.idom; + +/*--------------------------------------------------------------------*/ +/** Accessing the dominator data structures **/ +/*--------------------------------------------------------------------*/ + +ir_node *get_Block_idom(const ir_node *bl) { + assert(is_Block(bl)); + if (get_Block_dom_depth(bl) == -1) { + /* This block is not reachable from Start */ + return new_Bad(); + } + return get_dom_info(bl)->idom; } void set_Block_idom(ir_node *bl, ir_node *n) { + dom_info *bli = get_dom_info(bl); + assert(get_irn_op(bl) == op_Block); - bl->attr.block.dom.idom = n; + + /* Set the immediate dominator of bl to n */ + bli->idom = n; + + /* + * If we don't set the root of the dominator tree + * Append bl to the dominates queue of n. + */ + if(n != NULL) { + dom_info *ni = get_dom_info(n); + + bli->next = ni->first; + ni->first = bl; + } } -int get_Block_pre_num(ir_node *bl) { +int get_Block_pre_num(const ir_node *bl) { assert(get_irn_op(bl) == op_Block); return bl->attr.block.dom.pre_num; } @@ -40,7 +73,7 @@ void set_Block_pre_num(ir_node *bl, int num) { bl->attr.block.dom.pre_num = num; } -int get_Block_dom_depth(ir_node *bl) { +int get_Block_dom_depth(const ir_node *bl) { assert(get_irn_op(bl) == op_Block); return bl->attr.block.dom.dom_depth; } @@ -50,30 +83,105 @@ void set_Block_dom_depth(ir_node *bl, int depth) { bl->attr.block.dom.dom_depth = depth; } +unsigned get_Block_dom_tree_pre_num(const ir_node *bl) +{ + assert(is_Block(bl)); + return get_dom_info(bl)->tree_pre_num; +} +unsigned get_Block_dom_max_subtree_pre_num(const ir_node *bl) +{ + assert(is_Block(bl)); + return get_dom_info(bl)->max_subtree_pre_num; +} + +int block_dominates(const ir_node *a, const ir_node *b) +{ + const dom_info *ai, *bi; + + assert(is_Block(a) && is_Block(b)); + ai = get_dom_info(a); + bi = get_dom_info(b); + return bi->tree_pre_num - ai->tree_pre_num + <= ai->max_subtree_pre_num - ai->tree_pre_num; +} -/**********************************************************************/ -/** Building and Removing the dominator datasturcture **/ -/** **/ -/** **/ -/** **/ -/** **/ -/** **/ -/** **/ -/** **/ -/** .**/ -/** **/ -/** **/ -/** **/ -/** **/ -/** **/ -/** **/ -/**********************************************************************/ - -void count_and_init_blocks(ir_node *bl, void *env) { +ir_node *get_Block_dominated_first(const ir_node *bl) +{ + assert(is_Block(bl)); + return get_dom_info(bl)->first; +} + +ir_node *get_Block_dominated_next(const ir_node *bl) +{ + assert(is_Block(bl)); + return get_dom_info(bl)->next; +} + +void dom_tree_walk(ir_node *bl, irg_walk_func *pre, + irg_walk_func *post, void *env) +{ + ir_node *p; + + if(pre) + pre(bl, env); + + dominates_for_each(bl, p) { + dom_tree_walk(p, pre, post, env); + } + + if(post) + post(bl, env); +} + +void dom_tree_walk_irg(ir_graph *irg, irg_walk_func *pre, + irg_walk_func *post, void *env) +{ + /* The root of the dominator tree should be the start node. */ + ir_node *root = get_irg_start_block(irg); + + assert(irg->dom_state == dom_consistent + && "The dominators of the irg must be consistent"); + assert(root && "The start block of the graph is NULL?"); + assert(get_dom_info(root)->idom == NULL + && "The start node in the graph must be the root of the dominator tree"); + dom_tree_walk(root, pre, post, env); +} + +static void assign_tree_pre_order(ir_node *bl, void *data) +{ + unsigned *num = data; + dom_info *bi = get_dom_info(bl); + + bi->tree_pre_num = (*num)++; +} + +static void assign_tree_pre_order_max(ir_node *bl, void *data) +{ + dom_info *bi = get_dom_info(bl); + ir_node *p; + unsigned max = 0; + unsigned children = 0; + + for(p = bi->first; p; p = get_dom_info(p)->next) { + unsigned max_p = get_dom_info(p)->max_subtree_pre_num; + max = max > max_p ? max : max_p; + children++; + } + + bi->max_subtree_pre_num = children > 0 ? max : bi->tree_pre_num; + assert(bi->max_subtree_pre_num >= bi->tree_pre_num); +} + +/*--------------------------------------------------------------------*/ +/* Building and Removing the dominator datastructure */ +/*--------------------------------------------------------------------*/ + +static void count_and_init_blocks(ir_node *bl, void *env) { int *n_blocks = (int *) env; (*n_blocks) ++; + memset(get_dom_info(bl), 0, sizeof(dom_info)); set_Block_idom(bl, NULL); set_Block_pre_num(bl, -1); set_Block_dom_depth(bl, -1); @@ -107,8 +215,8 @@ typedef struct { /* Walks Blocks along the out datastructure. If recursion started with Start block misses control dead blocks. */ -void init_tmp_dom_info(ir_node *bl, tmp_dom_info *parent, - tmp_dom_info *tdi_list, int* used) { +static void init_tmp_dom_info(ir_node *bl, tmp_dom_info *parent, + tmp_dom_info *tdi_list, int* used) { tmp_dom_info *tdi; int i; @@ -185,15 +293,14 @@ void compute_doms(ir_graph *irg) { irg_block_walk(get_irg_end(current_ir_graph), count_and_init_blocks, NULL, &n_blocks); /* Memory for temporary information. */ - tdi_list = (tmp_dom_info *) calloc(n_blocks, sizeof(tmp_dom_info)); + tdi_list = xcalloc(n_blocks, sizeof(tdi_list[0])); /* We need the out datastructure. */ if (current_ir_graph->outs_state != outs_consistent) compute_outs(current_ir_graph); - /** Initialize the temporary information, add link to parent. We don't do - this with a standard walker as passing the parent to the sons isn't - simple. **/ + /* this with a standard walker as passing the parent to the sons isn't + simple. */ used = 0; inc_irg_block_visited(current_ir_graph); init_tmp_dom_info(get_irg_start_block(current_ir_graph), NULL, tdi_list, &used); @@ -204,15 +311,18 @@ void compute_doms(ir_graph *irg) { for (i = n_blocks-1; i > 0; i--) { /* Don't iterate the root, it's done. */ + int irn_arity; tmp_dom_info *w = &tdi_list[i]; tmp_dom_info *v; /* Step 2 */ - for (j = 0; j < get_irn_arity(w->block); j++) { - ir_node *pred = get_nodes_Block(get_Block_cfgpred(w->block, j)); + irn_arity = get_irn_arity(w->block); + for (j = 0; j < irn_arity; j++) { + ir_node *cf_op = get_Block_cfgpred(w->block, j); + ir_node *pred = get_nodes_block(cf_op); tmp_dom_info *u; - if ((is_Bad(get_Block_cfgpred(w->block, j))) || + if ((is_Bad(cf_op)) || (is_Bad(pred)) || (get_Block_pre_num (pred) == -1)) continue; /* control-dead */ @@ -254,14 +364,21 @@ void compute_doms(ir_graph *irg) { } /* clean up */ - /* free(tdi_list); @@@ doew not work !!?? */ + /* free(tdi_list); @@@ does not work !!?? */ current_ir_graph = rem; + + /* Do a walk over the tree and assign the tree pre orders. */ + { + unsigned tree_pre_order = 0; + dom_tree_walk_irg(irg, assign_tree_pre_order, + assign_tree_pre_order_max, &tree_pre_order); + } } void free_dom_and_peace(ir_graph *irg) { /* Update graph state */ assert(get_irg_phase_state(current_ir_graph) != phase_building); - current_ir_graph->dom_state = no_dom; + current_ir_graph->dom_state = dom_none; /* With the implementation right now there is nothing to free, but better call it anyways... */