Fix bootstrap/PR63632
[official-gcc.git] / gcc / tree-iterator.c
blobc4412bad4d5127897edd24cb457a7d2609b2f4cf
1 /* Iterator routines for manipulating GENERIC and GIMPLE tree statements.
2 Copyright (C) 2003-2014 Free Software Foundation, Inc.
3 Contributed by Andrew MacLeod <amacleod@redhat.com>
5 This file is part of GCC.
7 GCC is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 3, or (at your option)
10 any later version.
12 GCC is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with GCC; see the file COPYING3. If not see
19 <http://www.gnu.org/licenses/>. */
21 #include "config.h"
22 #include "system.h"
23 #include "coretypes.h"
24 #include "tree.h"
25 #include "tree-iterator.h"
26 #include "ggc.h"
29 /* This is a cache of STATEMENT_LIST nodes. We create and destroy them
30 fairly often during gimplification. */
32 static GTY ((deletable (""))) vec<tree, va_gc> *stmt_list_cache;
34 tree
35 alloc_stmt_list (void)
37 tree list;
38 if (!vec_safe_is_empty (stmt_list_cache))
40 list = stmt_list_cache->pop ();
41 memset (list, 0, sizeof (struct tree_base));
42 TREE_SET_CODE (list, STATEMENT_LIST);
44 else
45 list = make_node (STATEMENT_LIST);
46 TREE_TYPE (list) = void_type_node;
47 return list;
50 void
51 free_stmt_list (tree t)
53 gcc_assert (!STATEMENT_LIST_HEAD (t));
54 gcc_assert (!STATEMENT_LIST_TAIL (t));
55 vec_safe_push (stmt_list_cache, t);
58 /* A subroutine of append_to_statement_list{,_force}. T is not NULL. */
60 static void
61 append_to_statement_list_1 (tree t, tree *list_p)
63 tree list = *list_p;
64 tree_stmt_iterator i;
66 if (!list)
68 if (t && TREE_CODE (t) == STATEMENT_LIST)
70 *list_p = t;
71 return;
73 *list_p = list = alloc_stmt_list ();
75 else if (TREE_CODE (list) != STATEMENT_LIST)
77 tree first = list;
78 *list_p = list = alloc_stmt_list ();
79 i = tsi_last (list);
80 tsi_link_after (&i, first, TSI_CONTINUE_LINKING);
83 i = tsi_last (list);
84 tsi_link_after (&i, t, TSI_CONTINUE_LINKING);
87 /* Add T to the end of the list container pointed to by LIST_P.
88 If T is an expression with no effects, it is ignored. */
90 void
91 append_to_statement_list (tree t, tree *list_p)
93 if (t && TREE_SIDE_EFFECTS (t))
94 append_to_statement_list_1 (t, list_p);
97 /* Similar, but the statement is always added, regardless of side effects. */
99 void
100 append_to_statement_list_force (tree t, tree *list_p)
102 if (t != NULL_TREE)
103 append_to_statement_list_1 (t, list_p);
106 /* Links a statement, or a chain of statements, before the current stmt. */
108 void
109 tsi_link_before (tree_stmt_iterator *i, tree t, enum tsi_iterator_update mode)
111 struct tree_statement_list_node *head, *tail, *cur;
113 /* Die on looping. */
114 gcc_assert (t != i->container);
116 if (TREE_CODE (t) == STATEMENT_LIST)
118 head = STATEMENT_LIST_HEAD (t);
119 tail = STATEMENT_LIST_TAIL (t);
120 STATEMENT_LIST_HEAD (t) = NULL;
121 STATEMENT_LIST_TAIL (t) = NULL;
123 free_stmt_list (t);
125 /* Empty statement lists need no work. */
126 if (!head || !tail)
128 gcc_assert (head == tail);
129 return;
132 else
134 head = ggc_alloc<tree_statement_list_node> ();
135 head->prev = NULL;
136 head->next = NULL;
137 head->stmt = t;
138 tail = head;
141 TREE_SIDE_EFFECTS (i->container) = 1;
143 cur = i->ptr;
145 /* Link it into the list. */
146 if (cur)
148 head->prev = cur->prev;
149 if (head->prev)
150 head->prev->next = head;
151 else
152 STATEMENT_LIST_HEAD (i->container) = head;
153 tail->next = cur;
154 cur->prev = tail;
156 else
158 head->prev = STATEMENT_LIST_TAIL (i->container);
159 if (head->prev)
160 head->prev->next = head;
161 else
162 STATEMENT_LIST_HEAD (i->container) = head;
163 STATEMENT_LIST_TAIL (i->container) = tail;
166 /* Update the iterator, if requested. */
167 switch (mode)
169 case TSI_NEW_STMT:
170 case TSI_CONTINUE_LINKING:
171 case TSI_CHAIN_START:
172 i->ptr = head;
173 break;
174 case TSI_CHAIN_END:
175 i->ptr = tail;
176 break;
177 case TSI_SAME_STMT:
178 break;
182 /* Links a statement, or a chain of statements, after the current stmt. */
184 void
185 tsi_link_after (tree_stmt_iterator *i, tree t, enum tsi_iterator_update mode)
187 struct tree_statement_list_node *head, *tail, *cur;
189 /* Die on looping. */
190 gcc_assert (t != i->container);
192 if (TREE_CODE (t) == STATEMENT_LIST)
194 head = STATEMENT_LIST_HEAD (t);
195 tail = STATEMENT_LIST_TAIL (t);
196 STATEMENT_LIST_HEAD (t) = NULL;
197 STATEMENT_LIST_TAIL (t) = NULL;
199 free_stmt_list (t);
201 /* Empty statement lists need no work. */
202 if (!head || !tail)
204 gcc_assert (head == tail);
205 return;
208 else
210 head = ggc_alloc<tree_statement_list_node> ();
211 head->prev = NULL;
212 head->next = NULL;
213 head->stmt = t;
214 tail = head;
217 TREE_SIDE_EFFECTS (i->container) = 1;
219 cur = i->ptr;
221 /* Link it into the list. */
222 if (cur)
224 tail->next = cur->next;
225 if (tail->next)
226 tail->next->prev = tail;
227 else
228 STATEMENT_LIST_TAIL (i->container) = tail;
229 head->prev = cur;
230 cur->next = head;
232 else
234 gcc_assert (!STATEMENT_LIST_TAIL (i->container));
235 STATEMENT_LIST_HEAD (i->container) = head;
236 STATEMENT_LIST_TAIL (i->container) = tail;
239 /* Update the iterator, if requested. */
240 switch (mode)
242 case TSI_NEW_STMT:
243 case TSI_CHAIN_START:
244 i->ptr = head;
245 break;
246 case TSI_CONTINUE_LINKING:
247 case TSI_CHAIN_END:
248 i->ptr = tail;
249 break;
250 case TSI_SAME_STMT:
251 gcc_assert (cur);
252 break;
256 /* Remove a stmt from the tree list. The iterator is updated to point to
257 the next stmt. */
259 void
260 tsi_delink (tree_stmt_iterator *i)
262 struct tree_statement_list_node *cur, *next, *prev;
264 cur = i->ptr;
265 next = cur->next;
266 prev = cur->prev;
268 if (prev)
269 prev->next = next;
270 else
271 STATEMENT_LIST_HEAD (i->container) = next;
272 if (next)
273 next->prev = prev;
274 else
275 STATEMENT_LIST_TAIL (i->container) = prev;
277 if (!next && !prev)
278 TREE_SIDE_EFFECTS (i->container) = 0;
280 i->ptr = next;
283 /* Return the first expression in a sequence of COMPOUND_EXPRs,
284 or in a STATEMENT_LIST. */
286 tree
287 expr_first (tree expr)
289 if (expr == NULL_TREE)
290 return expr;
292 if (TREE_CODE (expr) == STATEMENT_LIST)
294 struct tree_statement_list_node *n = STATEMENT_LIST_HEAD (expr);
295 return n ? n->stmt : NULL_TREE;
298 while (TREE_CODE (expr) == COMPOUND_EXPR)
299 expr = TREE_OPERAND (expr, 0);
301 return expr;
304 /* Return the last expression in a sequence of COMPOUND_EXPRs,
305 or in a STATEMENT_LIST. */
307 tree
308 expr_last (tree expr)
310 if (expr == NULL_TREE)
311 return expr;
313 if (TREE_CODE (expr) == STATEMENT_LIST)
315 struct tree_statement_list_node *n = STATEMENT_LIST_TAIL (expr);
316 return n ? n->stmt : NULL_TREE;
319 while (TREE_CODE (expr) == COMPOUND_EXPR)
320 expr = TREE_OPERAND (expr, 1);
322 return expr;
325 #include "gt-tree-iterator.h"