GCC Middle and Back End API Reference
cfghooks.h
Go to the documentation of this file.
1/* Hooks for cfg representation specific functions.
2 Copyright (C) 2003-2026 Free Software Foundation, Inc.
3 Contributed by Sebastian Pop <s.pop@laposte.net>
4
5This file is part of GCC.
6
7GCC is free software; you can redistribute it and/or modify
8it under the terms of the GNU General Public License as published by
9the Free Software Foundation; either version 3, or (at your option)
10any later version.
11
12GCC is distributed in the hope that it will be useful,
13but WITHOUT ANY WARRANTY; without even the implied warranty of
14MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15GNU General Public License for more details.
16
17You should have received a copy of the GNU General Public License
18along with GCC; see the file COPYING3. If not see
19<http://www.gnu.org/licenses/>. */
20
21#ifndef GCC_CFGHOOKS_H
22#define GCC_CFGHOOKS_H
23
24#include "predict.h"
25
26namespace diagnostics { class sarif_builder; }
27namespace json { class object; }
28
29/* Structure to gather statistic about profile consistency, per pass.
30 An array of this structure, indexed by pass static number, is allocated
31 in passes.cc. The structure is defined here so that different CFG modes
32 can do their book-keeping via CFG hooks.
33
34 For every field[2], field[0] is the count before the pass runs, and
35 field[1] is the post-pass count. This allows us to monitor the effect
36 of each individual pass on the profile consistency.
37
38 This structure is not supposed to be used by anything other than passes.cc
39 and one CFG hook per CFG mode. */
41{
42 /* A weighted cost of the run-time of the function body. */
43 double time;
44 /* Frequency of execution of basic blocks where sum(prob) of the block's
45 predecessors doesn't match reasonably probability 1. */
47 /* Frequency of execution basic blocks where sum(count) of the block's
48 predecessors doesn't match reasonably well with the incoming frequency. */
50 /* The number of basic blocks where sum(prob) of the block's predecessors
51 doesn't match reasonably probability 1. */
53 /* The number of basic blocks where sum(count) of the block's predecessors
54 doesn't match reasonably well with the incoming frequency. */
56 /* A weighted cost of the size of the function body. */
57 int size;
58 /* True iff this pass actually was run. */
59 bool run;
60 bool fdo;
61};
62
63typedef int_hash <unsigned short, 0> dependence_hash;
64
65/* Optional data for duplicate_block. */
66
68{
69public:
72
73 /* A map from the copied BBs dependence info cliques to
74 equivalents in the BBs duplicated to. */
76};
77
79{
80 /* Name of the corresponding ir. */
81 const char *name;
82
83 /* Debugging. */
85 void (*dump_bb) (FILE *, basic_block, int, dump_flags_t);
87 void
91
92 /* Basic CFG manipulation. */
93
94 /* Return new basic block. */
96
97 /* Redirect edge E to the given basic block B and update underlying program
98 representation. Returns edge representing redirected branch (that may not
99 be equivalent to E in the case of duplicate edges being removed) or NULL
100 if edge is not easily redirectable for whatever reason. */
102
103 /* Same as the above but allows redirecting of fallthru edges. In that case
104 newly created forwarder basic block is returned. The edge must
105 not be abnormal. */
107
108 /* Returns true if it is possible to remove the edge by redirecting it
109 to the destination of the other edge going from its source. */
111
112 /* Remove statements corresponding to a given basic block. */
114
115 /* Creates a new basic block just after basic block B by splitting
116 everything after specified instruction I. */
118
119 /* Move block B immediately after block A. */
121
122 /* Return true when blocks A and B can be merged into single basic block. */
124
125 /* Merge blocks A and B. */
127
128 /* Predict edge E using PREDICTOR to given PROBABILITY. */
129 void (*predict_edge) (edge e, enum br_predictor predictor, int probability);
130
131 /* Return true if the one of outgoing edges is already predicted by
132 PREDICTOR. */
134
135 /* Return true when block A can be duplicated. */
137
138 /* Duplicate block A. */
140
141 /* Higher level functions representable by primitive operations above if
142 we didn't have some oddities in RTL and Tree representations. */
145
146 /* Try to make the edge fallthru. */
148
149 /* Make the edge non-fallthru. */
151
152 /* Say whether a block ends with a call, possibly followed by some
153 other code that must stay with the call. */
155
156 /* Say whether a block ends with a conditional branch. Switches
157 and unconditional branches do not qualify. */
159
160 /* Add fake edges to the function exit for any non constant and non noreturn
161 calls, volatile inline assembly in the bitmap of blocks specified by
162 BLOCKS or to the whole CFG if BLOCKS is zero. Return the number of blocks
163 that were split.
164
165 The goal is to expose cases in which entering a basic block does not imply
166 that all subsequent instructions must be executed. */
168
169 /* This function is called immediately after edge E is added to the
170 edge vector E->dest->preds. */
172
173 /* This function is called immediately before edge E is removed from
174 the edge vector E->dest->preds. */
176
177 /* A hook for duplicating loop in CFG, currently this is used
178 in loop versioning. */
180 unsigned, sbitmap, edge,
181 vec<edge> *, int);
182
183 /* Add condition to new basic block and update CFG used in loop
184 versioning. */
186 void *);
187 /* Update the PHI nodes in case of loop versioning. */
190
191 /* Given a condition BB extract the true/false taken/not taken edges
192 (depending if we are on tree's or RTL). */
194
195
196 /* Add PHI arguments queued in PENDINT_STMT list on edge E to edge
197 E->dest (only in tree-ssa loop versioning. */
199
200 /* True if a block contains no executable instructions. */
202
203 /* Split a basic block if it ends with a conditional branch and if
204 the other part of the block is not empty. */
206
207 /* Do book-keeping of a basic block for the profile consistency checker. */
209};
210
211extern void verify_flow_info (void);
212
213/* Check control flow invariants, if internal consistency checks are
214 enabled. */
215
216inline void
218{
219 /* TODO: Add a separate option for -fchecking=cfg. */
220 if (flag_checking)
222}
223
224extern void dump_bb (FILE *, basic_block, int, dump_flags_t);
227 json::object &,
229extern void dump_flow_info (FILE *, dump_flags_t);
230
234extern bool can_remove_branch_p (const_edge);
235extern void remove_branch (edge);
236extern void remove_edge (edge);
241extern void delete_basic_block (basic_block);
248extern edge make_forwarder_block (basic_block, bool (*)(edge),
249 void (*) (basic_block));
251extern void tidy_fallthru_edge (edge);
252extern void tidy_fallthru_edges (void);
253extern void predict_edge (edge e, enum br_predictor predictor, int probability);
254extern bool predicted_by_p (const_basic_block bb, enum br_predictor predictor);
257 copy_bb_data * = NULL);
258extern bool block_ends_with_call_p (basic_block bb);
259extern bool empty_block_p (basic_block);
262extern int flow_call_edges_add (sbitmap);
263extern void execute_on_growing_pred (edge);
264extern void execute_on_shrinking_pred (edge);
265extern bool
267 unsigned int ndupl,
268 sbitmap wont_exit, edge orig,
269 vec<edge> *to_remove, int flags);
270
271extern void lv_flush_pending_stmts (edge);
272extern void extract_cond_bb_edges (basic_block, edge *, edge*);
274 edge);
276 void *);
277
278extern bool can_copy_bbs_p (basic_block *, unsigned);
279extern void copy_bbs (basic_block *, unsigned, basic_block *,
280 edge *, unsigned, edge *, class loop *,
281 basic_block, bool);
282
285
286/* Hooks containers. */
287extern struct cfg_hooks gimple_cfg_hooks;
288extern struct cfg_hooks rtl_cfg_hooks;
290
291/* Declarations. */
292extern enum ir_type current_ir_type (void);
293extern void rtl_register_cfg_hooks (void);
294extern void cfg_layout_rtl_register_cfg_hooks (void);
295extern void gimple_register_cfg_hooks (void);
296extern struct cfg_hooks get_cfg_hooks (void);
297extern void set_cfg_hooks (struct cfg_hooks);
298
299#endif /* GCC_CFGHOOKS_H */
struct cfg_hooks get_cfg_hooks(void)
Definition cfghooks.cc:73
bool empty_block_p(basic_block)
Definition cfghooks.cc:1491
void delete_basic_block(basic_block)
Definition cfghooks.cc:645
void verify_flow_info(void)
Definition cfghooks.cc:105
bool can_merge_blocks_p(basic_block, basic_block)
Definition cfghooks.cc:809
basic_block create_basic_block(rtx, rtx, basic_block)
Definition cfghooks.cc:792
edge redirect_edge_and_branch(edge, basic_block)
Definition cfghooks.cc:413
void dump_bb_for_graph(pretty_printer *, basic_block)
Definition cfghooks.cc:345
basic_block create_empty_bb(basic_block)
Definition cfghooks.cc:801
void set_cfg_hooks(struct cfg_hooks)
Definition cfghooks.cc:79
bool block_ends_with_call_p(basic_block bb)
Definition cfghooks.cc:1222
struct cfg_hooks cfg_layout_rtl_cfg_hooks
Definition cfgrtl.cc:5434
int_hash< unsigned short, 0 > dependence_hash
Definition cfghooks.h:63
void merge_blocks(basic_block, basic_block)
Definition cfghooks.cc:842
edge make_forwarder_block(basic_block, bool(*)(edge), void(*)(basic_block))
Definition cfghooks.cc:929
basic_block redirect_edge_and_branch_force(edge, basic_block)
Definition cfghooks.cc:527
basic_block split_edge(edge)
Definition cfghooks.cc:684
void lv_add_condition_to_bb(basic_block, basic_block, basic_block, void *)
Definition cfghooks.cc:1335
void tidy_fallthru_edge(edge)
Definition cfghooks.cc:1023
void predict_edge(edge e, enum br_predictor predictor, int probability)
Definition cfghooks.cc:822
basic_block split_block_before_cond_jump(basic_block)
Definition cfghooks.cc:1500
int flow_call_edges_add(sbitmap)
Definition cfghooks.cc:1251
void lv_adjust_loop_header_phi(basic_block, basic_block, basic_block, edge)
Definition cfghooks.cc:1324
struct cfg_hooks rtl_cfg_hooks
Definition cfgrtl.cc:5391
void execute_on_shrinking_pred(edge)
Definition cfghooks.cc:1275
void remove_branch(edge)
Definition cfghooks.cc:452
void remove_edge(edge)
Definition cfghooks.cc:473
bool predicted_by_p(const_basic_block bb, enum br_predictor predictor)
Definition cfghooks.cc:831
void checking_verify_flow_info(void)
Definition cfghooks.h:217
bool cfg_hook_duplicate_loop_body_to_header_edge(class loop *loop, edge, unsigned int ndupl, sbitmap wont_exit, edge orig, vec< edge > *to_remove, int flags)
Definition cfghooks.cc:1300
void gimple_register_cfg_hooks(void)
Definition cfghooks.cc:67
bool can_remove_branch_p(const_edge)
Definition cfghooks.cc:435
void dump_flow_info(FILE *, dump_flags_t)
Definition cfghooks.cc:387
enum ir_type current_ir_type(void)
Definition cfghooks.cc:87
bool can_copy_bbs_p(basic_block *, unsigned)
Definition cfghooks.cc:1344
basic_block duplicate_block(basic_block, edge, basic_block, copy_bb_data *=NULL)
Definition cfghooks.cc:1142
bool can_duplicate_block_p(const_basic_block)
Definition cfghooks.cc:1118
void execute_on_growing_pred(edge)
Definition cfghooks.cc:1264
edge split_block(basic_block, rtx)
Definition cfghooks.cc:613
bool move_block_after(basic_block, basic_block)
Definition cfghooks.cc:630
void lv_flush_pending_stmts(edge)
Definition cfghooks.cc:1286
edge split_block_after_labels(basic_block)
Definition cfghooks.cc:621
void tidy_fallthru_edges(void)
Definition cfghooks.cc:1037
void dump_bb(FILE *, basic_block, int, dump_flags_t)
Definition cfghooks.cc:302
void dump_bb_as_sarif_properties(diagnostics::sarif_builder *, json::object &, basic_block)
Definition cfghooks.cc:359
edge redirect_edge_succ_nodup(edge, basic_block)
Definition cfghooks.cc:502
void profile_record_account_profile(profile_record *)
Definition cfghooks.cc:1595
bool block_ends_with_condjump_p(const_basic_block bb)
Definition cfghooks.cc:1233
void rtl_register_cfg_hooks(void)
Definition cfghooks.cc:52
void cfg_layout_rtl_register_cfg_hooks(void)
Definition cfghooks.cc:59
struct cfg_hooks gimple_cfg_hooks
Definition tree-cfg.cc:9360
void copy_bbs(basic_block *, unsigned, basic_block *, edge *, unsigned, edge *, class loop *, basic_block, bool)
Definition cfghooks.cc:1403
void profile_record_check_consistency(profile_record *)
Definition cfghooks.cc:1511
basic_block force_nonfallthru(edge)
Definition cfghooks.cc:1082
void extract_cond_bb_edges(basic_block, edge *, edge *)
Definition cfghooks.cc:1315
Definition cfghooks.h:68
copy_bb_data()
Definition cfghooks.h:70
~copy_bb_data()
Definition cfghooks.h:71
hash_map< dependence_hash, unsigned short > * dependence_map
Definition cfghooks.h:75
Definition sarif-sink.cc:776
Definition hash-map.h:40
Definition json.h:188
Definition cfgloop.h:120
Definition pretty-print.h:241
struct basic_block_def * basic_block
Definition coretypes.h:372
struct rtx_def * rtx
Definition coretypes.h:57
class edge_def * edge
Definition coretypes.h:369
gimple * gimple_seq
Definition coretypes.h:100
ir_type
Definition coretypes.h:195
struct simple_bitmap_def * sbitmap
Definition coretypes.h:54
const class edge_def * const_edge
Definition coretypes.h:370
const struct basic_block_def * const_basic_block
Definition coretypes.h:373
enum dump_flag dump_flags_t
Definition dumpfile.h:209
Definition cfghooks.h:26
Definition cfghooks.h:27
i
Definition poly-int.h:776
Ca const poly_int< N, Cb > & b
Definition poly-int.h:771
Ca & a
Definition poly-int.h:770
br_predictor
Definition predict.h:38
Definition cfghooks.h:79
void(* merge_blocks)(basic_block a, basic_block b)
Definition cfghooks.h:126
bool(* cfg_hook_duplicate_loop_body_to_header_edge)(class loop *, edge, unsigned, sbitmap, edge, vec< edge > *, int)
Definition cfghooks.h:179
void(* dump_bb_as_sarif_properties)(diagnostics::sarif_builder *, json::object &, basic_block)
Definition cfghooks.h:88
bool(* empty_block_p)(basic_block)
Definition cfghooks.h:201
void(* execute_on_growing_pred)(edge)
Definition cfghooks.h:171
void(* extract_cond_bb_edges)(basic_block, edge *, edge *)
Definition cfghooks.h:193
void(* lv_adjust_loop_header_phi)(basic_block, basic_block, basic_block, edge)
Definition cfghooks.h:188
void(* make_forwarder_block)(edge)
Definition cfghooks.h:144
bool(* can_merge_blocks_p)(basic_block a, basic_block b)
Definition cfghooks.h:123
bool(* can_duplicate_block_p)(const_basic_block a)
Definition cfghooks.h:136
bool(* predicted_by_p)(const_basic_block bb, enum br_predictor predictor)
Definition cfghooks.h:133
const char * name
Definition cfghooks.h:81
basic_block(* split_edge)(edge)
Definition cfghooks.h:143
bool(* can_remove_branch_p)(const_edge)
Definition cfghooks.h:110
basic_block(* create_basic_block)(void *head, void *end, basic_block after)
Definition cfghooks.h:95
void(* dump_bb)(FILE *, basic_block, int, dump_flags_t)
Definition cfghooks.h:85
bool(* verify_flow_info)(void)
Definition cfghooks.h:84
bool(* block_ends_with_condjump_p)(const_basic_block)
Definition cfghooks.h:158
void(* account_profile_record)(basic_block, struct profile_record *)
Definition cfghooks.h:208
void(* execute_on_shrinking_pred)(edge)
Definition cfghooks.h:175
basic_block(* split_block_before_cond_jump)(basic_block)
Definition cfghooks.h:205
basic_block(* duplicate_block)(basic_block a, copy_bb_data *)
Definition cfghooks.h:139
void(* dump_bb_for_graph)(pretty_printer *, basic_block)
Definition cfghooks.h:86
int(* flow_call_edges_add)(sbitmap)
Definition cfghooks.h:167
void(* flush_pending_stmts)(edge)
Definition cfghooks.h:198
edge(* redirect_edge_and_branch)(edge e, basic_block b)
Definition cfghooks.h:101
void(* lv_add_condition_to_bb)(basic_block, basic_block, basic_block, void *)
Definition cfghooks.h:185
basic_block(* redirect_edge_and_branch_force)(edge, basic_block)
Definition cfghooks.h:106
void(* delete_basic_block)(basic_block)
Definition cfghooks.h:113
basic_block(* split_block)(basic_block b, void *i)
Definition cfghooks.h:117
bool(* block_ends_with_call_p)(basic_block)
Definition cfghooks.h:154
void(* tidy_fallthru_edge)(edge)
Definition cfghooks.h:147
basic_block(* force_nonfallthru)(edge)
Definition cfghooks.h:150
bool(* move_block_after)(basic_block b, basic_block a)
Definition cfghooks.h:120
void(* predict_edge)(edge e, enum br_predictor predictor, int probability)
Definition cfghooks.h:129
Definition gimple.h:221
Definition collect2.cc:175
Definition cfghooks.h:41
int size
Definition cfghooks.h:57
bool fdo
Definition cfghooks.h:60
double dyn_mismatched_count_in
Definition cfghooks.h:49
double dyn_mismatched_prob_out
Definition cfghooks.h:46
bool run
Definition cfghooks.h:59
int num_mismatched_count_in
Definition cfghooks.h:55
double time
Definition cfghooks.h:43
int num_mismatched_prob_out
Definition cfghooks.h:52
Definition vec.h:450
#define NULL
Definition system.h:50
#define bool
Definition system.h:889
T * end(vec< T, A, L > *v)
Definition vec.h:457