2012-07-09 Tom de Vries <tom@codesourcery.com>
[official-gcc.git] / gcc / cfghooks.h
blobadf6a893b0085452d587a994a5b1bbf478647685
1 /* Hooks for cfg representation specific functions.
2 Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008
3 Free Software Foundation, Inc.
4 Contributed by Sebastian Pop <s.pop@laposte.net>
6 This file is part of GCC.
8 GCC is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 3, or (at your option)
11 any later version.
13 GCC is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with GCC; see the file COPYING3. If not see
20 <http://www.gnu.org/licenses/>. */
22 /* Only basic-block.h includes this. */
24 struct cfg_hooks
26 /* Name of the corresponding ir. */
27 const char *name;
29 /* Debugging. */
30 int (*verify_flow_info) (void);
31 void (*dump_bb) (basic_block, FILE *, int, int);
33 /* Basic CFG manipulation. */
35 /* Return new basic block. */
36 basic_block (*create_basic_block) (void *head, void *end, basic_block after);
38 /* Redirect edge E to the given basic block B and update underlying program
39 representation. Returns edge representing redirected branch (that may not
40 be equivalent to E in the case of duplicate edges being removed) or NULL
41 if edge is not easily redirectable for whatever reason. */
42 edge (*redirect_edge_and_branch) (edge e, basic_block b);
44 /* Same as the above but allows redirecting of fallthru edges. In that case
45 newly created forwarder basic block is returned. The edge must
46 not be abnormal. */
47 basic_block (*redirect_edge_and_branch_force) (edge, basic_block);
49 /* Returns true if it is possible to remove the edge by redirecting it
50 to the destination of the other edge going from its source. */
51 bool (*can_remove_branch_p) (const_edge);
53 /* Remove statements corresponding to a given basic block. */
54 void (*delete_basic_block) (basic_block);
56 /* Creates a new basic block just after basic block B by splitting
57 everything after specified instruction I. */
58 basic_block (*split_block) (basic_block b, void * i);
60 /* Move block B immediately after block A. */
61 bool (*move_block_after) (basic_block b, basic_block a);
63 /* Return true when blocks A and B can be merged into single basic block. */
64 bool (*can_merge_blocks_p) (basic_block a, basic_block b);
66 /* Merge blocks A and B. */
67 void (*merge_blocks) (basic_block a, basic_block b);
69 /* Predict edge E using PREDICTOR to given PROBABILITY. */
70 void (*predict_edge) (edge e, enum br_predictor predictor, int probability);
72 /* Return true if the one of outgoing edges is already predicted by
73 PREDICTOR. */
74 bool (*predicted_by_p) (const_basic_block bb, enum br_predictor predictor);
76 /* Return true when block A can be duplicated. */
77 bool (*can_duplicate_block_p) (const_basic_block a);
79 /* Duplicate block A. */
80 basic_block (*duplicate_block) (basic_block a);
82 /* Higher level functions representable by primitive operations above if
83 we didn't have some oddities in RTL and Tree representations. */
84 basic_block (*split_edge) (edge);
85 void (*make_forwarder_block) (edge);
87 /* Try to make the edge fallthru. */
88 void (*tidy_fallthru_edge) (edge);
90 /* Make the edge non-fallthru. */
91 basic_block (*force_nonfallthru) (edge);
93 /* Say whether a block ends with a call, possibly followed by some
94 other code that must stay with the call. */
95 bool (*block_ends_with_call_p) (basic_block);
97 /* Say whether a block ends with a conditional branch. Switches
98 and unconditional branches do not qualify. */
99 bool (*block_ends_with_condjump_p) (const_basic_block);
101 /* Add fake edges to the function exit for any non constant and non noreturn
102 calls, volatile inline assembly in the bitmap of blocks specified by
103 BLOCKS or to the whole CFG if BLOCKS is zero. Return the number of blocks
104 that were split.
106 The goal is to expose cases in which entering a basic block does not imply
107 that all subsequent instructions must be executed. */
108 int (*flow_call_edges_add) (sbitmap);
110 /* This function is called immediately after edge E is added to the
111 edge vector E->dest->preds. */
112 void (*execute_on_growing_pred) (edge);
114 /* This function is called immediately before edge E is removed from
115 the edge vector E->dest->preds. */
116 void (*execute_on_shrinking_pred) (edge);
118 /* A hook for duplicating loop in CFG, currently this is used
119 in loop versioning. */
120 bool (*cfg_hook_duplicate_loop_to_header_edge) (struct loop *, edge,
121 unsigned, sbitmap,
122 edge, VEC (edge, heap) **,
123 int);
125 /* Add condition to new basic block and update CFG used in loop
126 versioning. */
127 void (*lv_add_condition_to_bb) (basic_block, basic_block, basic_block,
128 void *);
129 /* Update the PHI nodes in case of loop versioning. */
130 void (*lv_adjust_loop_header_phi) (basic_block, basic_block,
131 basic_block, edge);
133 /* Given a condition BB extract the true/false taken/not taken edges
134 (depending if we are on tree's or RTL). */
135 void (*extract_cond_bb_edges) (basic_block, edge *, edge *);
138 /* Add PHI arguments queued in PENDINT_STMT list on edge E to edge
139 E->dest (only in tree-ssa loop versioning. */
140 void (*flush_pending_stmts) (edge);
143 extern void verify_flow_info (void);
144 extern void dump_bb (basic_block, FILE *, int);
145 extern edge redirect_edge_and_branch (edge, basic_block);
146 extern basic_block redirect_edge_and_branch_force (edge, basic_block);
147 extern bool can_remove_branch_p (const_edge);
148 extern void remove_branch (edge);
149 extern void remove_edge (edge);
150 extern edge split_block (basic_block, void *);
151 extern edge split_block_after_labels (basic_block);
152 extern bool move_block_after (basic_block, basic_block);
153 extern void delete_basic_block (basic_block);
154 extern basic_block split_edge (edge);
155 extern basic_block create_basic_block (void *, void *, basic_block);
156 extern basic_block create_empty_bb (basic_block);
157 extern bool can_merge_blocks_p (basic_block, basic_block);
158 extern void merge_blocks (basic_block, basic_block);
159 extern edge make_forwarder_block (basic_block, bool (*)(edge),
160 void (*) (basic_block));
161 extern basic_block force_nonfallthru (edge);
162 extern void tidy_fallthru_edge (edge);
163 extern void tidy_fallthru_edges (void);
164 extern void predict_edge (edge e, enum br_predictor predictor, int probability);
165 extern bool predicted_by_p (const_basic_block bb, enum br_predictor predictor);
166 extern bool can_duplicate_block_p (const_basic_block);
167 extern basic_block duplicate_block (basic_block, edge, basic_block);
168 extern bool block_ends_with_call_p (basic_block bb);
169 extern bool block_ends_with_condjump_p (const_basic_block bb);
170 extern int flow_call_edges_add (sbitmap);
171 extern void execute_on_growing_pred (edge);
172 extern void execute_on_shrinking_pred (edge);
173 extern bool cfg_hook_duplicate_loop_to_header_edge (struct loop *loop, edge,
174 unsigned int ndupl,
175 sbitmap wont_exit,
176 edge orig,
177 VEC (edge, heap) **to_remove,
178 int flags);
180 extern void lv_flush_pending_stmts (edge);
181 extern void extract_cond_bb_edges (basic_block, edge *, edge*);
182 extern void lv_adjust_loop_header_phi (basic_block, basic_block, basic_block,
183 edge);
184 extern void lv_add_condition_to_bb (basic_block, basic_block, basic_block,
185 void *);
187 extern bool can_copy_bbs_p (basic_block *, unsigned);
188 extern void copy_bbs (basic_block *, unsigned, basic_block *,
189 edge *, unsigned, edge *, struct loop *,
190 basic_block);
192 extern void cfg_layout_initialize (unsigned int);
193 extern void cfg_layout_finalize (void);
195 /* Hooks containers. */
196 extern struct cfg_hooks gimple_cfg_hooks;
197 extern struct cfg_hooks rtl_cfg_hooks;
198 extern struct cfg_hooks cfg_layout_rtl_cfg_hooks;
200 /* Declarations. */
201 extern enum ir_type current_ir_type (void);
202 extern void rtl_register_cfg_hooks (void);
203 extern void cfg_layout_rtl_register_cfg_hooks (void);
204 extern void gimple_register_cfg_hooks (void);
205 extern struct cfg_hooks get_cfg_hooks (void);
206 extern void set_cfg_hooks (struct cfg_hooks);