compiler: only build thunk struct type when it is needed
[official-gcc.git] / gcc / gimple-iterator.h
blob67d95ca71a00405c12da6ee43246b688fc6c9bc0
1 /* Header file for gimple iterators.
2 Copyright (C) 2013-2022 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
9 version.
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
14 for more details.
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 /* Sequence node holding the current statement. */
28 gimple_seq_node ptr;
30 /* Sequence and basic block holding the statement. These fields
31 are necessary to handle edge cases such as when statement is
32 added to an empty basic block or when the last statement of a
33 block/sequence is removed. */
34 gimple_seq *seq;
35 basic_block bb;
38 /* Iterator over GIMPLE_PHI statements. */
39 struct gphi_iterator : public gimple_stmt_iterator
41 gphi *phi () const
43 return as_a <gphi *> (ptr);
47 enum gsi_iterator_update
49 GSI_NEW_STMT = 2, /* Move the iterator to the first statement added. */
50 GSI_LAST_NEW_STMT, /* Move the iterator to the last statement added. */
51 GSI_SAME_STMT, /* Leave the iterator at the same statement. */
52 GSI_CONTINUE_LINKING /* Move iterator to whatever position is suitable
53 for linking other statements in the same
54 direction. */
57 extern void gsi_insert_seq_before_without_update (gimple_stmt_iterator *,
58 gimple_seq,
59 enum gsi_iterator_update);
60 extern void gsi_insert_seq_before (gimple_stmt_iterator *, gimple_seq,
61 enum gsi_iterator_update);
62 extern void gsi_insert_seq_after_without_update (gimple_stmt_iterator *,
63 gimple_seq,
64 enum gsi_iterator_update);
65 extern void gsi_insert_seq_after (gimple_stmt_iterator *, gimple_seq,
66 enum gsi_iterator_update);
67 extern gimple_seq gsi_split_seq_after (gimple_stmt_iterator);
68 extern void gsi_set_stmt (gimple_stmt_iterator *, gimple *);
69 extern void gsi_split_seq_before (gimple_stmt_iterator *, gimple_seq *);
70 extern bool gsi_replace (gimple_stmt_iterator *, gimple *, bool);
71 extern void gsi_replace_with_seq (gimple_stmt_iterator *, gimple_seq, bool);
72 extern void gsi_insert_before_without_update (gimple_stmt_iterator *, gimple *,
73 enum gsi_iterator_update);
74 extern void gsi_insert_before (gimple_stmt_iterator *, gimple *,
75 enum gsi_iterator_update);
76 extern void gsi_insert_after_without_update (gimple_stmt_iterator *, gimple *,
77 enum gsi_iterator_update);
78 extern void gsi_insert_after (gimple_stmt_iterator *, gimple *,
79 enum gsi_iterator_update);
80 extern bool gsi_remove (gimple_stmt_iterator *, bool);
81 extern gimple_stmt_iterator gsi_for_stmt (gimple *);
82 extern gimple_stmt_iterator gsi_for_stmt (gimple *, gimple_seq *);
83 extern gphi_iterator gsi_for_phi (gphi *);
84 extern void gsi_move_after (gimple_stmt_iterator *, gimple_stmt_iterator *);
85 extern void gsi_move_before (gimple_stmt_iterator *, gimple_stmt_iterator *);
86 extern void gsi_move_to_bb_end (gimple_stmt_iterator *, basic_block);
87 extern void gsi_insert_on_edge (edge, gimple *);
88 extern void gsi_insert_seq_on_edge (edge, gimple_seq);
89 extern basic_block gsi_insert_on_edge_immediate (edge, gimple *);
90 extern basic_block gsi_insert_seq_on_edge_immediate (edge, gimple_seq);
91 extern void gsi_commit_edge_inserts (void);
92 extern void gsi_commit_one_edge_insert (edge, basic_block *);
93 extern gphi_iterator gsi_start_phis (basic_block);
94 extern void update_modified_stmts (gimple_seq);
96 /* Return a new iterator pointing to GIMPLE_SEQ's first statement. */
98 static inline gimple_stmt_iterator
99 gsi_start (gimple_seq &seq)
101 gimple_stmt_iterator i;
103 i.ptr = gimple_seq_first (seq);
104 i.seq = &seq;
105 i.bb = i.ptr ? gimple_bb (i.ptr) : NULL;
107 return i;
110 static inline gimple_stmt_iterator
111 gsi_none (void)
113 gimple_stmt_iterator i;
114 i.ptr = NULL;
115 i.seq = NULL;
116 i.bb = NULL;
117 return i;
120 /* Return a new iterator pointing to the first statement in basic block BB. */
122 static inline gimple_stmt_iterator
123 gsi_start_bb (basic_block bb)
125 gimple_stmt_iterator i;
126 gimple_seq *seq;
128 seq = bb_seq_addr (bb);
129 i.ptr = gimple_seq_first (*seq);
130 i.seq = seq;
131 i.bb = bb;
133 return i;
136 gimple_stmt_iterator gsi_start_edge (edge e);
138 /* Return a new iterator initially pointing to GIMPLE_SEQ's last statement. */
140 static inline gimple_stmt_iterator
141 gsi_last (gimple_seq &seq)
143 gimple_stmt_iterator i;
145 i.ptr = gimple_seq_last (seq);
146 i.seq = &seq;
147 i.bb = i.ptr ? gimple_bb (i.ptr) : NULL;
149 return i;
152 /* Return a new iterator pointing to the last statement in basic block BB. */
154 static inline gimple_stmt_iterator
155 gsi_last_bb (basic_block bb)
157 gimple_stmt_iterator i;
158 gimple_seq *seq;
160 seq = bb_seq_addr (bb);
161 i.ptr = gimple_seq_last (*seq);
162 i.seq = seq;
163 i.bb = bb;
165 return i;
168 /* Return true if I is at the end of its sequence. */
170 static inline bool
171 gsi_end_p (gimple_stmt_iterator i)
173 return i.ptr == NULL;
176 /* Return true if I is one statement before the end of its sequence. */
178 static inline bool
179 gsi_one_before_end_p (gimple_stmt_iterator i)
181 return i.ptr != NULL && i.ptr->next == NULL;
184 /* Advance the iterator to the next gimple statement. */
186 static inline void
187 gsi_next (gimple_stmt_iterator *i)
189 i->ptr = i->ptr->next;
192 /* Advance the iterator to the previous gimple statement. */
194 static inline void
195 gsi_prev (gimple_stmt_iterator *i)
197 gimple *prev = i->ptr->prev;
198 if (prev->next)
199 i->ptr = prev;
200 else
201 i->ptr = NULL;
204 /* Return the current stmt. */
206 static inline gimple *
207 gsi_stmt (gimple_stmt_iterator i)
209 return i.ptr;
212 /* Return a block statement iterator that points to the first
213 non-label statement in block BB. */
215 static inline gimple_stmt_iterator
216 gsi_after_labels (basic_block bb)
218 gimple_stmt_iterator gsi = gsi_start_bb (bb);
220 for (; !gsi_end_p (gsi); )
222 if (gimple_code (gsi_stmt (gsi)) == GIMPLE_LABEL)
223 gsi_next (&gsi);
224 else
225 break;
228 return gsi;
231 /* Return a statement iterator that points to the first
232 non-label statement in sequence SEQ. */
234 static inline gimple_stmt_iterator
235 gsi_after_labels (gimple_seq &seq)
237 gimple_stmt_iterator gsi = gsi_start (seq);
239 for (; !gsi_end_p (gsi); )
241 if (gimple_code (gsi_stmt (gsi)) == GIMPLE_LABEL)
242 gsi_next (&gsi);
243 else
244 break;
247 return gsi;
250 /* Advance the iterator to the next non-debug gimple statement. */
252 static inline void
253 gsi_next_nondebug (gimple_stmt_iterator *i)
257 gsi_next (i);
259 while (!gsi_end_p (*i) && is_gimple_debug (gsi_stmt (*i)));
262 /* Advance the iterator to the previous non-debug gimple statement. */
264 static inline void
265 gsi_prev_nondebug (gimple_stmt_iterator *i)
269 gsi_prev (i);
271 while (!gsi_end_p (*i) && is_gimple_debug (gsi_stmt (*i)));
274 /* Return a new iterator pointing to the first non-debug statement in
275 SEQ. */
277 static inline gimple_stmt_iterator
278 gsi_start_nondebug (gimple_seq seq)
280 gimple_stmt_iterator gsi = gsi_start (seq);
281 if (!gsi_end_p (gsi) && is_gimple_debug (gsi_stmt (gsi)))
282 gsi_next_nondebug (&gsi);
284 return gsi;
287 /* Return a new iterator pointing to the first non-debug statement in
288 basic block BB. */
290 static inline gimple_stmt_iterator
291 gsi_start_nondebug_bb (basic_block bb)
293 gimple_stmt_iterator i = gsi_start_bb (bb);
295 if (!gsi_end_p (i) && is_gimple_debug (gsi_stmt (i)))
296 gsi_next_nondebug (&i);
298 return i;
301 /* Return a new iterator pointing to the first non-debug non-label statement in
302 basic block BB. */
304 static inline gimple_stmt_iterator
305 gsi_start_nondebug_after_labels_bb (basic_block bb)
307 gimple_stmt_iterator i = gsi_after_labels (bb);
309 if (!gsi_end_p (i) && is_gimple_debug (gsi_stmt (i)))
310 gsi_next_nondebug (&i);
312 return i;
315 /* Return a new iterator pointing to the last non-debug statement in
316 basic block BB. */
318 static inline gimple_stmt_iterator
319 gsi_last_nondebug_bb (basic_block bb)
321 gimple_stmt_iterator i = gsi_last_bb (bb);
323 if (!gsi_end_p (i) && is_gimple_debug (gsi_stmt (i)))
324 gsi_prev_nondebug (&i);
326 return i;
329 /* Return true if I is followed only by debug statements in its
330 sequence. */
332 static inline bool
333 gsi_one_nondebug_before_end_p (gimple_stmt_iterator i)
335 if (gsi_one_before_end_p (i))
336 return true;
337 if (gsi_end_p (i))
338 return false;
339 gsi_next_nondebug (&i);
340 return gsi_end_p (i);
343 /* Advance I statement iterator to the next non-virtual GIMPLE_PHI
344 statement. */
346 static inline void
347 gsi_next_nonvirtual_phi (gphi_iterator *i)
351 gsi_next (i);
353 while (!gsi_end_p (*i) && virtual_operand_p (gimple_phi_result (i->phi ())));
356 /* Return a new iterator pointing to the first non-virtual phi statement in
357 basic block BB. */
359 static inline gphi_iterator
360 gsi_start_nonvirtual_phis (basic_block bb)
362 gphi_iterator i = gsi_start_phis (bb);
364 if (!gsi_end_p (i) && virtual_operand_p (gimple_phi_result (i.phi ())))
365 gsi_next_nonvirtual_phi (&i);
367 return i;
370 /* Return the basic block associated with this iterator. */
372 static inline basic_block
373 gsi_bb (gimple_stmt_iterator i)
375 return i.bb;
378 /* Return the sequence associated with this iterator. */
380 static inline gimple_seq
381 gsi_seq (gimple_stmt_iterator i)
383 return *i.seq;
386 /* Determine whether SEQ is a nondebug singleton. */
388 static inline bool
389 gimple_seq_nondebug_singleton_p (gimple_seq seq)
391 gimple_stmt_iterator gsi;
393 /* Find a nondebug gimple. */
394 gsi.ptr = gimple_seq_first (seq);
395 gsi.seq = &seq;
396 gsi.bb = NULL;
397 while (!gsi_end_p (gsi)
398 && is_gimple_debug (gsi_stmt (gsi)))
399 gsi_next (&gsi);
401 /* No nondebug gimple found, not a singleton. */
402 if (gsi_end_p (gsi))
403 return false;
405 /* Find a next nondebug gimple. */
406 gsi_next (&gsi);
407 while (!gsi_end_p (gsi)
408 && is_gimple_debug (gsi_stmt (gsi)))
409 gsi_next (&gsi);
411 /* Only a singleton if there's no next nondebug gimple. */
412 return gsi_end_p (gsi);
415 #endif /* GCC_GIMPLE_ITERATOR_H */