]> git.ipfire.org Git - thirdparty/gcc.git/blame - gcc/tree-iterator.c
tree-core.h: Include symtab.h.
[thirdparty/gcc.git] / gcc / tree-iterator.c
CommitLineData
6de9cd9a 1/* Iterator routines for manipulating GENERIC and GIMPLE tree statements.
5624e564 2 Copyright (C) 2003-2015 Free Software Foundation, Inc.
6de9cd9a
DN
3 Contributed by Andrew MacLeod <amacleod@redhat.com>
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
9dcd6f09 9the Free Software Foundation; either version 3, or (at your option)
6de9cd9a
DN
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
9dcd6f09
NC
18along with GCC; see the file COPYING3. If not see
19<http://www.gnu.org/licenses/>. */
6de9cd9a
DN
20
21#include "config.h"
22#include "system.h"
23#include "coretypes.h"
40e23961 24#include "alias.h"
6de9cd9a 25#include "tree.h"
c7131fb2 26#include "options.h"
6de9cd9a 27#include "tree-iterator.h"
6de9cd9a
DN
28
29
30/* This is a cache of STATEMENT_LIST nodes. We create and destroy them
31 fairly often during gimplification. */
32
9771b263 33static GTY ((deletable (""))) vec<tree, va_gc> *stmt_list_cache;
6de9cd9a
DN
34
35tree
36alloc_stmt_list (void)
37{
38e01f9e 38 tree list;
9771b263 39 if (!vec_safe_is_empty (stmt_list_cache))
6de9cd9a 40 {
9771b263 41 list = stmt_list_cache->pop ();
c3284718 42 memset (list, 0, sizeof (struct tree_base));
325c3691 43 TREE_SET_CODE (list, STATEMENT_LIST);
6de9cd9a
DN
44 }
45 else
325c3691
RH
46 list = make_node (STATEMENT_LIST);
47 TREE_TYPE (list) = void_type_node;
6de9cd9a
DN
48 return list;
49}
50
51void
52free_stmt_list (tree t)
53{
1e128c5f
GB
54 gcc_assert (!STATEMENT_LIST_HEAD (t));
55 gcc_assert (!STATEMENT_LIST_TAIL (t));
9771b263 56 vec_safe_push (stmt_list_cache, t);
6de9cd9a
DN
57}
58
f4ce02c5
SB
59/* A subroutine of append_to_statement_list{,_force}. T is not NULL. */
60
61static void
62append_to_statement_list_1 (tree t, tree *list_p)
63{
64 tree list = *list_p;
65 tree_stmt_iterator i;
66
67 if (!list)
68 {
69 if (t && TREE_CODE (t) == STATEMENT_LIST)
70 {
71 *list_p = t;
72 return;
73 }
74 *list_p = list = alloc_stmt_list ();
75 }
a60596b8
TV
76 else if (TREE_CODE (list) != STATEMENT_LIST)
77 {
78 tree first = list;
79 *list_p = list = alloc_stmt_list ();
80 i = tsi_last (list);
81 tsi_link_after (&i, first, TSI_CONTINUE_LINKING);
82 }
f4ce02c5
SB
83
84 i = tsi_last (list);
85 tsi_link_after (&i, t, TSI_CONTINUE_LINKING);
86}
87
88/* Add T to the end of the list container pointed to by LIST_P.
89 If T is an expression with no effects, it is ignored. */
90
91void
92append_to_statement_list (tree t, tree *list_p)
93{
94 if (t && TREE_SIDE_EFFECTS (t))
95 append_to_statement_list_1 (t, list_p);
96}
97
98/* Similar, but the statement is always added, regardless of side effects. */
99
100void
101append_to_statement_list_force (tree t, tree *list_p)
102{
103 if (t != NULL_TREE)
104 append_to_statement_list_1 (t, list_p);
105}
106
6de9cd9a
DN
107/* Links a statement, or a chain of statements, before the current stmt. */
108
109void
110tsi_link_before (tree_stmt_iterator *i, tree t, enum tsi_iterator_update mode)
111{
112 struct tree_statement_list_node *head, *tail, *cur;
113
114 /* Die on looping. */
1e128c5f 115 gcc_assert (t != i->container);
6de9cd9a 116
6de9cd9a
DN
117 if (TREE_CODE (t) == STATEMENT_LIST)
118 {
119 head = STATEMENT_LIST_HEAD (t);
120 tail = STATEMENT_LIST_TAIL (t);
121 STATEMENT_LIST_HEAD (t) = NULL;
122 STATEMENT_LIST_TAIL (t) = NULL;
123
124 free_stmt_list (t);
125
126 /* Empty statement lists need no work. */
127 if (!head || !tail)
128 {
1e128c5f 129 gcc_assert (head == tail);
6de9cd9a
DN
130 return;
131 }
132 }
133 else
134 {
766090c2 135 head = ggc_alloc<tree_statement_list_node> ();
6de9cd9a
DN
136 head->prev = NULL;
137 head->next = NULL;
138 head->stmt = t;
139 tail = head;
140 }
141
325c3691
RH
142 TREE_SIDE_EFFECTS (i->container) = 1;
143
6de9cd9a
DN
144 cur = i->ptr;
145
146 /* Link it into the list. */
147 if (cur)
148 {
149 head->prev = cur->prev;
150 if (head->prev)
151 head->prev->next = head;
152 else
153 STATEMENT_LIST_HEAD (i->container) = head;
154 tail->next = cur;
155 cur->prev = tail;
156 }
157 else
158 {
3cb005cf
PB
159 head->prev = STATEMENT_LIST_TAIL (i->container);
160 if (head->prev)
161 head->prev->next = head;
162 else
163 STATEMENT_LIST_HEAD (i->container) = head;
6de9cd9a
DN
164 STATEMENT_LIST_TAIL (i->container) = tail;
165 }
166
167 /* Update the iterator, if requested. */
168 switch (mode)
169 {
170 case TSI_NEW_STMT:
171 case TSI_CONTINUE_LINKING:
172 case TSI_CHAIN_START:
173 i->ptr = head;
174 break;
175 case TSI_CHAIN_END:
176 i->ptr = tail;
177 break;
178 case TSI_SAME_STMT:
6de9cd9a
DN
179 break;
180 }
181}
182
183/* Links a statement, or a chain of statements, after the current stmt. */
184
185void
186tsi_link_after (tree_stmt_iterator *i, tree t, enum tsi_iterator_update mode)
187{
188 struct tree_statement_list_node *head, *tail, *cur;
189
190 /* Die on looping. */
1e128c5f 191 gcc_assert (t != i->container);
6de9cd9a 192
6de9cd9a
DN
193 if (TREE_CODE (t) == STATEMENT_LIST)
194 {
195 head = STATEMENT_LIST_HEAD (t);
196 tail = STATEMENT_LIST_TAIL (t);
197 STATEMENT_LIST_HEAD (t) = NULL;
198 STATEMENT_LIST_TAIL (t) = NULL;
199
200 free_stmt_list (t);
201
202 /* Empty statement lists need no work. */
203 if (!head || !tail)
204 {
1e128c5f 205 gcc_assert (head == tail);
6de9cd9a
DN
206 return;
207 }
208 }
209 else
210 {
766090c2 211 head = ggc_alloc<tree_statement_list_node> ();
6de9cd9a
DN
212 head->prev = NULL;
213 head->next = NULL;
214 head->stmt = t;
215 tail = head;
216 }
217
325c3691
RH
218 TREE_SIDE_EFFECTS (i->container) = 1;
219
6de9cd9a
DN
220 cur = i->ptr;
221
222 /* Link it into the list. */
223 if (cur)
224 {
225 tail->next = cur->next;
226 if (tail->next)
227 tail->next->prev = tail;
228 else
229 STATEMENT_LIST_TAIL (i->container) = tail;
230 head->prev = cur;
231 cur->next = head;
232 }
233 else
234 {
1e128c5f 235 gcc_assert (!STATEMENT_LIST_TAIL (i->container));
6de9cd9a
DN
236 STATEMENT_LIST_HEAD (i->container) = head;
237 STATEMENT_LIST_TAIL (i->container) = tail;
238 }
239
240 /* Update the iterator, if requested. */
241 switch (mode)
242 {
243 case TSI_NEW_STMT:
244 case TSI_CHAIN_START:
245 i->ptr = head;
246 break;
247 case TSI_CONTINUE_LINKING:
248 case TSI_CHAIN_END:
249 i->ptr = tail;
250 break;
251 case TSI_SAME_STMT:
1e128c5f 252 gcc_assert (cur);
6de9cd9a
DN
253 break;
254 }
255}
256
257/* Remove a stmt from the tree list. The iterator is updated to point to
258 the next stmt. */
259
260void
261tsi_delink (tree_stmt_iterator *i)
262{
263 struct tree_statement_list_node *cur, *next, *prev;
264
265 cur = i->ptr;
266 next = cur->next;
267 prev = cur->prev;
268
269 if (prev)
270 prev->next = next;
271 else
272 STATEMENT_LIST_HEAD (i->container) = next;
273 if (next)
274 next->prev = prev;
275 else
276 STATEMENT_LIST_TAIL (i->container) = prev;
277
278 if (!next && !prev)
279 TREE_SIDE_EFFECTS (i->container) = 0;
280
281 i->ptr = next;
282}
283
6de9cd9a
DN
284/* Return the first expression in a sequence of COMPOUND_EXPRs,
285 or in a STATEMENT_LIST. */
286
287tree
288expr_first (tree expr)
289{
75547801
KG
290 if (expr == NULL_TREE)
291 return expr;
6de9cd9a 292
75547801
KG
293 if (TREE_CODE (expr) == STATEMENT_LIST)
294 {
295 struct tree_statement_list_node *n = STATEMENT_LIST_HEAD (expr);
296 return n ? n->stmt : NULL_TREE;
297 }
298
299 while (TREE_CODE (expr) == COMPOUND_EXPR)
300 expr = TREE_OPERAND (expr, 0);
301
302 return expr;
6de9cd9a
DN
303}
304
305/* Return the last expression in a sequence of COMPOUND_EXPRs,
306 or in a STATEMENT_LIST. */
307
308tree
309expr_last (tree expr)
310{
75547801
KG
311 if (expr == NULL_TREE)
312 return expr;
6de9cd9a 313
75547801
KG
314 if (TREE_CODE (expr) == STATEMENT_LIST)
315 {
316 struct tree_statement_list_node *n = STATEMENT_LIST_TAIL (expr);
317 return n ? n->stmt : NULL_TREE;
318 }
319
320 while (TREE_CODE (expr) == COMPOUND_EXPR)
321 expr = TREE_OPERAND (expr, 1);
322
323 return expr;
6de9cd9a
DN
324}
325
6de9cd9a 326#include "gt-tree-iterator.h"