1 /* Header file for gimple iterators.
2 Copyright (C) 2013-2023 Free Software Foundation, Inc.
4 This file is part of GCC.
6 GCC is free software; you can redistribute it and/or modify it under
7 the terms of the GNU General Public License as published by the Free
8 Software Foundation; either version 3, or (at your option) any later
11 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
12 WARRANTY; without even the implied warranty of MERCHANTABILITY or
13 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
16 You should have received a copy of the GNU General Public License
17 along with GCC; see the file COPYING3. If not see
18 <http://www.gnu.org/licenses/>. */
20 #ifndef GCC_GIMPLE_ITERATOR_H
21 #define GCC_GIMPLE_ITERATOR_H
23 /* Iterator object for GIMPLE statement sequences. */
25 struct gimple_stmt_iterator
27 gimple
*operator * () const { return ptr
; }
29 /* Sequence node holding the current statement. */
32 /* Sequence and basic block holding the statement. These fields
33 are necessary to handle edge cases such as when statement is
34 added to an empty basic block or when the last statement of a
35 block/sequence is removed. */
40 /* Iterator over GIMPLE_PHI statements. */
41 struct gphi_iterator
: public gimple_stmt_iterator
43 gphi
*operator * () const { return as_a
<gphi
*> (ptr
); }
47 return as_a
<gphi
*> (ptr
);
51 enum gsi_iterator_update
53 GSI_NEW_STMT
= 2, /* Move the iterator to the first statement added. */
54 GSI_LAST_NEW_STMT
, /* Move the iterator to the last statement added. */
55 GSI_SAME_STMT
, /* Leave the iterator at the same statement. */
56 GSI_CONTINUE_LINKING
/* Move iterator to whatever position is suitable
57 for linking other statements in the same
61 extern void gsi_insert_seq_before_without_update (gimple_stmt_iterator
*,
63 enum gsi_iterator_update
);
64 extern void gsi_insert_seq_before (gimple_stmt_iterator
*, gimple_seq
,
65 enum gsi_iterator_update
);
66 extern void gsi_insert_seq_after_without_update (gimple_stmt_iterator
*,
68 enum gsi_iterator_update
);
69 extern void gsi_insert_seq_after (gimple_stmt_iterator
*, gimple_seq
,
70 enum gsi_iterator_update
);
71 extern gimple_seq
gsi_split_seq_after (gimple_stmt_iterator
);
72 extern void gsi_set_stmt (gimple_stmt_iterator
*, gimple
*);
73 extern void gsi_split_seq_before (gimple_stmt_iterator
*, gimple_seq
*);
74 extern bool gsi_replace (gimple_stmt_iterator
*, gimple
*, bool);
75 extern void gsi_replace_with_seq (gimple_stmt_iterator
*, gimple_seq
, bool);
76 extern void gsi_insert_before_without_update (gimple_stmt_iterator
*, gimple
*,
77 enum gsi_iterator_update
);
78 extern void gsi_insert_before (gimple_stmt_iterator
*, gimple
*,
79 enum gsi_iterator_update
);
80 extern void gsi_insert_after_without_update (gimple_stmt_iterator
*, gimple
*,
81 enum gsi_iterator_update
);
82 extern void gsi_insert_after (gimple_stmt_iterator
*, gimple
*,
83 enum gsi_iterator_update
);
84 extern bool gsi_remove (gimple_stmt_iterator
*, bool);
85 extern gimple_stmt_iterator
gsi_for_stmt (gimple
*);
86 extern gimple_stmt_iterator
gsi_for_stmt (gimple
*, gimple_seq
*);
87 extern gphi_iterator
gsi_for_phi (gphi
*);
88 extern void gsi_move_after (gimple_stmt_iterator
*, gimple_stmt_iterator
*);
89 extern void gsi_move_before (gimple_stmt_iterator
*, gimple_stmt_iterator
*);
90 extern void gsi_move_to_bb_end (gimple_stmt_iterator
*, basic_block
);
91 extern void gsi_insert_on_edge (edge
, gimple
*);
92 extern void gsi_insert_seq_on_edge (edge
, gimple_seq
);
93 extern basic_block
gsi_insert_on_edge_immediate (edge
, gimple
*);
94 extern basic_block
gsi_insert_seq_on_edge_immediate (edge
, gimple_seq
);
95 extern void gsi_commit_edge_inserts (void);
96 extern void gsi_commit_one_edge_insert (edge
, basic_block
*);
97 extern gphi_iterator
gsi_start_phis (basic_block
);
98 extern void update_modified_stmts (gimple_seq
);
100 /* Return a new iterator pointing to GIMPLE_SEQ's first statement. */
102 inline gimple_stmt_iterator
103 gsi_start (gimple_seq
&seq
)
105 gimple_stmt_iterator i
;
107 i
.ptr
= gimple_seq_first (seq
);
109 i
.bb
= i
.ptr
? gimple_bb (i
.ptr
) : NULL
;
114 inline gimple_stmt_iterator
117 gimple_stmt_iterator i
;
124 /* Return a new iterator pointing to the first statement in basic block BB. */
126 inline gimple_stmt_iterator
127 gsi_start_bb (basic_block bb
)
129 gimple_stmt_iterator i
;
132 seq
= bb_seq_addr (bb
);
133 i
.ptr
= gimple_seq_first (*seq
);
140 gimple_stmt_iterator
gsi_start_edge (edge e
);
142 /* Return a new iterator initially pointing to GIMPLE_SEQ's last statement. */
144 inline gimple_stmt_iterator
145 gsi_last (gimple_seq
&seq
)
147 gimple_stmt_iterator i
;
149 i
.ptr
= gimple_seq_last (seq
);
151 i
.bb
= i
.ptr
? gimple_bb (i
.ptr
) : NULL
;
156 /* Return a new iterator pointing to the last statement in basic block BB. */
158 inline gimple_stmt_iterator
159 gsi_last_bb (basic_block bb
)
161 gimple_stmt_iterator i
;
164 seq
= bb_seq_addr (bb
);
165 i
.ptr
= gimple_seq_last (*seq
);
172 /* Return true if I is at the end of its sequence. */
175 gsi_end_p (gimple_stmt_iterator i
)
177 return i
.ptr
== NULL
;
180 /* Return true if I is one statement before the end of its sequence. */
183 gsi_one_before_end_p (gimple_stmt_iterator i
)
185 return i
.ptr
!= NULL
&& i
.ptr
->next
== NULL
;
188 /* Advance the iterator to the next gimple statement. */
191 gsi_next (gimple_stmt_iterator
*i
)
193 i
->ptr
= i
->ptr
->next
;
196 /* Advance the iterator to the previous gimple statement. */
199 gsi_prev (gimple_stmt_iterator
*i
)
201 gimple
*prev
= i
->ptr
->prev
;
208 /* Return the current stmt. */
211 gsi_stmt (gimple_stmt_iterator i
)
216 /* Return a block statement iterator that points to the first
217 non-label statement in block BB. */
219 inline gimple_stmt_iterator
220 gsi_after_labels (basic_block bb
)
222 gimple_stmt_iterator gsi
= gsi_start_bb (bb
);
224 for (; !gsi_end_p (gsi
); )
226 if (gimple_code (gsi_stmt (gsi
)) == GIMPLE_LABEL
)
235 /* Return a statement iterator that points to the first
236 non-label statement in sequence SEQ. */
238 inline gimple_stmt_iterator
239 gsi_after_labels (gimple_seq
&seq
)
241 gimple_stmt_iterator gsi
= gsi_start (seq
);
243 for (; !gsi_end_p (gsi
); )
245 if (gimple_code (gsi_stmt (gsi
)) == GIMPLE_LABEL
)
254 /* Advance the iterator to the next non-debug gimple statement. */
257 gsi_next_nondebug (gimple_stmt_iterator
*i
)
263 while (!gsi_end_p (*i
) && is_gimple_debug (gsi_stmt (*i
)));
266 /* Advance the iterator to the previous non-debug gimple statement. */
269 gsi_prev_nondebug (gimple_stmt_iterator
*i
)
275 while (!gsi_end_p (*i
) && is_gimple_debug (gsi_stmt (*i
)));
278 /* Return a new iterator pointing to the first non-debug statement in
281 inline gimple_stmt_iterator
282 gsi_start_nondebug (gimple_seq seq
)
284 gimple_stmt_iterator gsi
= gsi_start (seq
);
285 if (!gsi_end_p (gsi
) && is_gimple_debug (gsi_stmt (gsi
)))
286 gsi_next_nondebug (&gsi
);
291 /* Return a new iterator pointing to the first non-debug statement in
294 inline gimple_stmt_iterator
295 gsi_start_nondebug_bb (basic_block bb
)
297 gimple_stmt_iterator i
= gsi_start_bb (bb
);
299 if (!gsi_end_p (i
) && is_gimple_debug (gsi_stmt (i
)))
300 gsi_next_nondebug (&i
);
305 /* Return a new iterator pointing to the first non-debug non-label statement in
308 inline gimple_stmt_iterator
309 gsi_start_nondebug_after_labels_bb (basic_block bb
)
311 gimple_stmt_iterator i
= gsi_after_labels (bb
);
313 if (!gsi_end_p (i
) && is_gimple_debug (gsi_stmt (i
)))
314 gsi_next_nondebug (&i
);
319 /* Return a new iterator pointing to the last non-debug statement in
322 inline gimple_stmt_iterator
323 gsi_last_nondebug_bb (basic_block bb
)
325 gimple_stmt_iterator i
= gsi_last_bb (bb
);
327 if (!gsi_end_p (i
) && is_gimple_debug (gsi_stmt (i
)))
328 gsi_prev_nondebug (&i
);
333 /* Return true if I is followed only by debug statements in its
337 gsi_one_nondebug_before_end_p (gimple_stmt_iterator i
)
339 if (gsi_one_before_end_p (i
))
343 gsi_next_nondebug (&i
);
344 return gsi_end_p (i
);
347 /* Advance I statement iterator to the next non-virtual GIMPLE_PHI
351 gsi_next_nonvirtual_phi (gphi_iterator
*i
)
357 while (!gsi_end_p (*i
) && virtual_operand_p (gimple_phi_result (i
->phi ())));
360 /* Return a new iterator pointing to the first non-virtual phi statement in
364 gsi_start_nonvirtual_phis (basic_block bb
)
366 gphi_iterator i
= gsi_start_phis (bb
);
368 if (!gsi_end_p (i
) && virtual_operand_p (gimple_phi_result (i
.phi ())))
369 gsi_next_nonvirtual_phi (&i
);
374 /* Return the basic block associated with this iterator. */
377 gsi_bb (gimple_stmt_iterator i
)
382 /* Return the sequence associated with this iterator. */
385 gsi_seq (gimple_stmt_iterator i
)
390 /* Determine whether SEQ is a nondebug singleton. */
393 gimple_seq_nondebug_singleton_p (gimple_seq seq
)
395 gimple_stmt_iterator gsi
;
397 /* Find a nondebug gimple. */
398 gsi
.ptr
= gimple_seq_first (seq
);
401 while (!gsi_end_p (gsi
)
402 && is_gimple_debug (gsi_stmt (gsi
)))
405 /* No nondebug gimple found, not a singleton. */
409 /* Find a next nondebug gimple. */
411 while (!gsi_end_p (gsi
)
412 && is_gimple_debug (gsi_stmt (gsi
)))
415 /* Only a singleton if there's no next nondebug gimple. */
416 return gsi_end_p (gsi
);
419 #endif /* GCC_GIMPLE_ITERATOR_H */