Update ChangeLog and version files for release
[official-gcc.git] / gcc / domwalk.h
blob71a7c47b00aa0d5a7cb8fa8ce6cdfaf0d9ce444b
1 /* Generic dominator tree walker
2 Copyright (C) 2003-2015 Free Software Foundation, Inc.
3 Contributed by Diego Novillo <dnovillo@redhat.com>
5 This file is part of GCC.
7 GCC is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 3, or (at your option)
10 any later version.
12 GCC is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with GCC; see the file COPYING3. If not see
19 <http://www.gnu.org/licenses/>. */
21 #ifndef GCC_DOM_WALK_H
22 #define GCC_DOM_WALK_H
24 /**
25 * This is the main class for the dominator walker. It is expected that
26 * consumers will have a custom class inheriting from it, which will over ride
27 * at least one of before_dom_children and after_dom_children to implement the
28 * custom behavior.
30 class dom_walker
32 public:
33 dom_walker (cdi_direction direction) : m_dom_direction (direction) {}
35 /* Walk the dominator tree. */
36 void walk (basic_block);
38 /* Function to call before the recursive walk of the dominator children. */
39 virtual void before_dom_children (basic_block) {}
41 /* Function to call after the recursive walk of the dominator children. */
42 virtual void after_dom_children (basic_block) {}
44 private:
45 /* This is the direction of the dominator tree we want to walk. i.e.,
46 if it is set to CDI_DOMINATORS, then we walk the dominator tree,
47 if it is set to CDI_POST_DOMINATORS, then we walk the post
48 dominator tree. */
49 const ENUM_BITFIELD (cdi_direction) m_dom_direction : 2;
52 #endif