domwalk.c 9.08 KB
Newer Older
1
/* Generic dominator tree walker
2
   Copyright (C) 2003, 2004, 2005 Free Software Foundation, Inc.
3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
   Contributed by Diego Novillo <dnovillo@redhat.com>

This file is part of GCC.

GCC is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2, or (at your option)
any later version.

GCC is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
GNU General Public License for more details.

You should have received a copy of the GNU General Public License
along with GCC; see the file COPYING.  If not, write to
Kelley Cook committed
19 20
the Free Software Foundation, 51 Franklin Street, Fifth Floor,
Boston, MA 02110-1301, USA.  */
21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54

#include "config.h"
#include "system.h"
#include "coretypes.h"
#include "tm.h"
#include "tree.h"
#include "basic-block.h"
#include "tree-flow.h"
#include "domwalk.h"
#include "ggc.h"

/* This file implements a generic walker for dominator trees. 

  To understand the dominator walker one must first have a grasp of dominators,
  immediate dominators and the dominator tree.

  Dominators
    A block B1 is said to dominate B2 if every path from the entry to B2 must
    pass through B1.  Given the dominance relationship, we can proceed to
    compute immediate dominators.  Note it is not important whether or not
    our definition allows a block to dominate itself.

  Immediate Dominators:
    Every block in the CFG has no more than one immediate dominator.  The
    immediate dominator of block BB must dominate BB and must not dominate
    any other dominator of BB and must not be BB itself.

  Dominator tree:
    If we then construct a tree where each node is a basic block and there
    is an edge from each block's immediate dominator to the block itself, then
    we have a dominator tree.


  [ Note this walker can also walk the post-dominator tree, which is
55
    defined in a similar manner.  i.e., block B1 is said to post-dominate
56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147
    block B2 if all paths from B2 to the exit block must pass through
    B1.  ]

  For example, given the CFG

                   1
                   |
                   2
                  / \
                 3   4
                    / \
       +---------->5   6
       |          / \ /
       |    +--->8   7
       |    |   /    |
       |    +--9    11
       |      /      |
       +--- 10 ---> 12
	  
  
  We have a dominator tree which looks like

                   1
                   |
                   2
                  / \
                 /   \
                3     4
                   / / \ \
                   | | | |
                   5 6 7 12
                   |   |
                   8   11
                   |
                   9
                   |
                  10
  
  
  
  The dominator tree is the basis for a number of analysis, transformation
  and optimization algorithms that operate on a semi-global basis.
  
  The dominator walker is a generic routine which visits blocks in the CFG
  via a depth first search of the dominator tree.  In the example above
  the dominator walker might visit blocks in the following order
  1, 2, 3, 4, 5, 8, 9, 10, 6, 7, 11, 12.
  
  The dominator walker has a number of callbacks to perform actions
  during the walk of the dominator tree.  There are two callbacks
  which walk statements, one before visiting the dominator children,
  one after visiting the dominator children.  There is a callback 
  before and after each statement walk callback.  In addition, the
  dominator walker manages allocation/deallocation of data structures
  which are local to each block visited.
  
  The dominator walker is meant to provide a generic means to build a pass
  which can analyze or transform/optimize a function based on walking
  the dominator tree.  One simply fills in the dominator walker data
  structure with the appropriate callbacks and calls the walker.
  
  We currently use the dominator walker to prune the set of variables
  which might need PHI nodes (which can greatly improve compile-time
  performance in some cases).
  
  We also use the dominator walker to rewrite the function into SSA form
  which reduces code duplication since the rewriting phase is inherently
  a walk of the dominator tree.

  And (of course), we use the dominator walker to drive a our dominator
  optimizer, which is a semi-global optimizer.

  TODO:

    Walking statements is based on the block statement iterator abstraction,
    which is currently an abstraction over walking tree statements.  Thus
    the dominator walker is currently only useful for trees.  */

/* Recursively walk the dominator tree.

   WALK_DATA contains a set of callbacks to perform pass-specific
   actions during the dominator walk as well as a stack of block local
   data maintained during the dominator walk.

   BB is the basic block we are currently visiting.  */

void
walk_dominator_tree (struct dom_walk_data *walk_data, basic_block bb)
{
  void *bd = NULL;
  basic_block dest;
  block_stmt_iterator bsi;
148 149 150 151 152 153 154 155
  bool is_interesting;

  /* If block BB is not interesting to the caller, then none of the
     callbacks that walk the statements in BB are going to be
     executed.  */
  is_interesting = bb->index < 0
		   || walk_data->interesting_blocks == NULL
		   || TEST_BIT (walk_data->interesting_blocks, bb->index);
156 157 158 159 160 161 162 163

  /* Callback to initialize the local data structure.  */
  if (walk_data->initialize_block_local_data)
    {
      bool recycled;

      /* First get some local data, reusing any local data pointer we may
	 have saved.  */
164
      if (VEC_length (void_p, walk_data->free_block_data) > 0)
165
	{
166
	  bd = VEC_pop (void_p, walk_data->free_block_data);
167 168 169 170 171 172 173 174 175
	  recycled = 1;
	}
      else
	{
	  bd = xcalloc (1, walk_data->block_local_data_size);
	  recycled = 0;
	}

      /* Push the local data into the local data stack.  */
176
      VEC_safe_push (void_p, heap, walk_data->block_data_stack, bd);
177 178 179 180 181 182 183 184 185 186 187 188

      /* Call the initializer.  */
      walk_data->initialize_block_local_data (walk_data, bb, recycled);

    }

  /* Callback for operations to execute before we have walked the
     dominator children, but before we walk statements.  */
  if (walk_data->before_dom_children_before_stmts)
    (*walk_data->before_dom_children_before_stmts) (walk_data, bb);

  /* Statement walk before walking dominator children.  */
189
  if (is_interesting && walk_data->before_dom_children_walk_stmts)
190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210
    {
      if (walk_data->walk_stmts_backward)
	for (bsi = bsi_last (bb); !bsi_end_p (bsi); bsi_prev (&bsi))
	  (*walk_data->before_dom_children_walk_stmts) (walk_data, bb, bsi);
      else
	for (bsi = bsi_start (bb); !bsi_end_p (bsi); bsi_next (&bsi))
	  (*walk_data->before_dom_children_walk_stmts) (walk_data, bb, bsi);
    }

  /* Callback for operations to execute before we have walked the
     dominator children, and after we walk statements.  */
  if (walk_data->before_dom_children_after_stmts)
    (*walk_data->before_dom_children_after_stmts) (walk_data, bb);

  /* Recursively call ourselves on the dominator children of BB.  */
  for (dest = first_dom_son (walk_data->dom_direction, bb);
       dest;
       dest = next_dom_son (walk_data->dom_direction, dest))
    {
      /* The destination block may have become unreachable, in
	 which case there's no point in optimizing it.  */
211
      if (EDGE_COUNT (dest->preds) > 0)
212 213 214 215 216 217 218 219 220
	walk_dominator_tree (walk_data, dest);
    }

  /* Callback for operations to execute after we have walked the
     dominator children, but before we walk statements.  */
  if (walk_data->after_dom_children_before_stmts)
    (*walk_data->after_dom_children_before_stmts) (walk_data, bb);

  /* Statement walk after walking dominator children.  */
221
  if (is_interesting && walk_data->after_dom_children_walk_stmts)
222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238
    {
      if (walk_data->walk_stmts_backward)
	for (bsi = bsi_last (bb); !bsi_end_p (bsi); bsi_prev (&bsi))
	  (*walk_data->after_dom_children_walk_stmts) (walk_data, bb, bsi);
      else
	for (bsi = bsi_start (bb); !bsi_end_p (bsi); bsi_next (&bsi))
	  (*walk_data->after_dom_children_walk_stmts) (walk_data, bb, bsi);
    }

  /* Callback for operations to execute after we have walked the
     dominator children and after we have walked statements.  */
  if (walk_data->after_dom_children_after_stmts)
    (*walk_data->after_dom_children_after_stmts) (walk_data, bb);

  if (walk_data->initialize_block_local_data)
    {
      /* And save the block data so that we can re-use it.  */
239
      VEC_safe_push (void_p, heap, walk_data->free_block_data, bd);
240 241

      /* And finally pop the record off the block local data stack.  */
242
      VEC_pop (void_p, walk_data->block_data_stack);
243 244 245 246 247 248
    }
}

void
init_walk_dominator_tree (struct dom_walk_data *walk_data)
{
249 250
  walk_data->free_block_data = NULL;
  walk_data->block_data_stack = NULL;
251 252 253 254 255 256 257
}

void
fini_walk_dominator_tree (struct dom_walk_data *walk_data)
{
  if (walk_data->initialize_block_local_data)
    {
258 259
      while (VEC_length (void_p, walk_data->free_block_data) > 0)
	free (VEC_pop (void_p, walk_data->free_block_data));
260
    }
261 262 263

  VEC_free (void_p, heap, walk_data->free_block_data);
  VEC_free (void_p, heap, walk_data->block_data_stack);
264
}