* lto-partition.c (add_symbol_to_partition_1,
[official-gcc.git] / gcc / tree-nested.c
blobdf6923f76ef3317bd67cc8c8acade1d1a03ea656
1 /* Nested function decomposition for GIMPLE.
2 Copyright (C) 2004-2014 Free Software Foundation, Inc.
4 This file is part of GCC.
6 GCC is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 3, or (at your option)
9 any later version.
11 GCC is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License 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 #include "config.h"
21 #include "system.h"
22 #include "coretypes.h"
23 #include "tm.h"
24 #include "tree.h"
25 #include "stringpool.h"
26 #include "stor-layout.h"
27 #include "tm_p.h"
28 #include "function.h"
29 #include "tree-dump.h"
30 #include "tree-inline.h"
31 #include "pointer-set.h"
32 #include "basic-block.h"
33 #include "tree-ssa-alias.h"
34 #include "internal-fn.h"
35 #include "gimple-expr.h"
36 #include "is-a.h"
37 #include "gimple.h"
38 #include "gimplify.h"
39 #include "gimple-iterator.h"
40 #include "gimple-walk.h"
41 #include "tree-iterator.h"
42 #include "bitmap.h"
43 #include "cgraph.h"
44 #include "tree-cfg.h"
45 #include "expr.h" /* FIXME: For STACK_SAVEAREA_MODE and SAVE_NONLOCAL. */
46 #include "langhooks.h"
47 #include "gimple-low.h"
50 /* The object of this pass is to lower the representation of a set of nested
51 functions in order to expose all of the gory details of the various
52 nonlocal references. We want to do this sooner rather than later, in
53 order to give us more freedom in emitting all of the functions in question.
55 Back in olden times, when gcc was young, we developed an insanely
56 complicated scheme whereby variables which were referenced nonlocally
57 were forced to live in the stack of the declaring function, and then
58 the nested functions magically discovered where these variables were
59 placed. In order for this scheme to function properly, it required
60 that the outer function be partially expanded, then we switch to
61 compiling the inner function, and once done with those we switch back
62 to compiling the outer function. Such delicate ordering requirements
63 makes it difficult to do whole translation unit optimizations
64 involving such functions.
66 The implementation here is much more direct. Everything that can be
67 referenced by an inner function is a member of an explicitly created
68 structure herein called the "nonlocal frame struct". The incoming
69 static chain for a nested function is a pointer to this struct in
70 the parent. In this way, we settle on known offsets from a known
71 base, and so are decoupled from the logic that places objects in the
72 function's stack frame. More importantly, we don't have to wait for
73 that to happen -- since the compilation of the inner function is no
74 longer tied to a real stack frame, the nonlocal frame struct can be
75 allocated anywhere. Which means that the outer function is now
76 inlinable.
78 Theory of operation here is very simple. Iterate over all the
79 statements in all the functions (depth first) several times,
80 allocating structures and fields on demand. In general we want to
81 examine inner functions first, so that we can avoid making changes
82 to outer functions which are unnecessary.
84 The order of the passes matters a bit, in that later passes will be
85 skipped if it is discovered that the functions don't actually interact
86 at all. That is, they're nested in the lexical sense but could have
87 been written as independent functions without change. */
90 struct nesting_info
92 struct nesting_info *outer;
93 struct nesting_info *inner;
94 struct nesting_info *next;
96 struct pointer_map_t *field_map;
97 struct pointer_map_t *var_map;
98 struct pointer_set_t *mem_refs;
99 bitmap suppress_expansion;
101 tree context;
102 tree new_local_var_chain;
103 tree debug_var_chain;
104 tree frame_type;
105 tree frame_decl;
106 tree chain_field;
107 tree chain_decl;
108 tree nl_goto_field;
110 bool any_parm_remapped;
111 bool any_tramp_created;
112 char static_chain_added;
116 /* Iterate over the nesting tree, starting with ROOT, depth first. */
118 static inline struct nesting_info *
119 iter_nestinfo_start (struct nesting_info *root)
121 while (root->inner)
122 root = root->inner;
123 return root;
126 static inline struct nesting_info *
127 iter_nestinfo_next (struct nesting_info *node)
129 if (node->next)
130 return iter_nestinfo_start (node->next);
131 return node->outer;
134 #define FOR_EACH_NEST_INFO(I, ROOT) \
135 for ((I) = iter_nestinfo_start (ROOT); (I); (I) = iter_nestinfo_next (I))
137 /* Obstack used for the bitmaps in the struct above. */
138 static struct bitmap_obstack nesting_info_bitmap_obstack;
141 /* We're working in so many different function contexts simultaneously,
142 that create_tmp_var is dangerous. Prevent mishap. */
143 #define create_tmp_var cant_use_create_tmp_var_here_dummy
145 /* Like create_tmp_var, except record the variable for registration at
146 the given nesting level. */
148 static tree
149 create_tmp_var_for (struct nesting_info *info, tree type, const char *prefix)
151 tree tmp_var;
153 /* If the type is of variable size or a type which must be created by the
154 frontend, something is wrong. Note that we explicitly allow
155 incomplete types here, since we create them ourselves here. */
156 gcc_assert (!TREE_ADDRESSABLE (type));
157 gcc_assert (!TYPE_SIZE_UNIT (type)
158 || TREE_CODE (TYPE_SIZE_UNIT (type)) == INTEGER_CST);
160 tmp_var = create_tmp_var_raw (type, prefix);
161 DECL_CONTEXT (tmp_var) = info->context;
162 DECL_CHAIN (tmp_var) = info->new_local_var_chain;
163 DECL_SEEN_IN_BIND_EXPR_P (tmp_var) = 1;
164 if (TREE_CODE (type) == COMPLEX_TYPE
165 || TREE_CODE (type) == VECTOR_TYPE)
166 DECL_GIMPLE_REG_P (tmp_var) = 1;
168 info->new_local_var_chain = tmp_var;
170 return tmp_var;
173 /* Take the address of EXP to be used within function CONTEXT.
174 Mark it for addressability as necessary. */
176 tree
177 build_addr (tree exp, tree context)
179 tree base = exp;
180 tree save_context;
181 tree retval;
183 while (handled_component_p (base))
184 base = TREE_OPERAND (base, 0);
186 if (DECL_P (base))
187 TREE_ADDRESSABLE (base) = 1;
189 /* Building the ADDR_EXPR will compute a set of properties for
190 that ADDR_EXPR. Those properties are unfortunately context
191 specific, i.e., they are dependent on CURRENT_FUNCTION_DECL.
193 Temporarily set CURRENT_FUNCTION_DECL to the desired context,
194 build the ADDR_EXPR, then restore CURRENT_FUNCTION_DECL. That
195 way the properties are for the ADDR_EXPR are computed properly. */
196 save_context = current_function_decl;
197 current_function_decl = context;
198 retval = build_fold_addr_expr (exp);
199 current_function_decl = save_context;
200 return retval;
203 /* Insert FIELD into TYPE, sorted by alignment requirements. */
205 void
206 insert_field_into_struct (tree type, tree field)
208 tree *p;
210 DECL_CONTEXT (field) = type;
212 for (p = &TYPE_FIELDS (type); *p ; p = &DECL_CHAIN (*p))
213 if (DECL_ALIGN (field) >= DECL_ALIGN (*p))
214 break;
216 DECL_CHAIN (field) = *p;
217 *p = field;
219 /* Set correct alignment for frame struct type. */
220 if (TYPE_ALIGN (type) < DECL_ALIGN (field))
221 TYPE_ALIGN (type) = DECL_ALIGN (field);
224 /* Build or return the RECORD_TYPE that describes the frame state that is
225 shared between INFO->CONTEXT and its nested functions. This record will
226 not be complete until finalize_nesting_tree; up until that point we'll
227 be adding fields as necessary.
229 We also build the DECL that represents this frame in the function. */
231 static tree
232 get_frame_type (struct nesting_info *info)
234 tree type = info->frame_type;
235 if (!type)
237 char *name;
239 type = make_node (RECORD_TYPE);
241 name = concat ("FRAME.",
242 IDENTIFIER_POINTER (DECL_NAME (info->context)),
243 NULL);
244 TYPE_NAME (type) = get_identifier (name);
245 free (name);
247 info->frame_type = type;
248 info->frame_decl = create_tmp_var_for (info, type, "FRAME");
249 DECL_NONLOCAL_FRAME (info->frame_decl) = 1;
251 /* ??? Always make it addressable for now, since it is meant to
252 be pointed to by the static chain pointer. This pessimizes
253 when it turns out that no static chains are needed because
254 the nested functions referencing non-local variables are not
255 reachable, but the true pessimization is to create the non-
256 local frame structure in the first place. */
257 TREE_ADDRESSABLE (info->frame_decl) = 1;
259 return type;
262 /* Return true if DECL should be referenced by pointer in the non-local
263 frame structure. */
265 static bool
266 use_pointer_in_frame (tree decl)
268 if (TREE_CODE (decl) == PARM_DECL)
270 /* It's illegal to copy TREE_ADDRESSABLE, impossible to copy variable
271 sized decls, and inefficient to copy large aggregates. Don't bother
272 moving anything but scalar variables. */
273 return AGGREGATE_TYPE_P (TREE_TYPE (decl));
275 else
277 /* Variable sized types make things "interesting" in the frame. */
278 return DECL_SIZE (decl) == NULL || !TREE_CONSTANT (DECL_SIZE (decl));
282 /* Given DECL, a non-locally accessed variable, find or create a field
283 in the non-local frame structure for the given nesting context. */
285 static tree
286 lookup_field_for_decl (struct nesting_info *info, tree decl,
287 enum insert_option insert)
289 void **slot;
291 if (insert == NO_INSERT)
293 slot = pointer_map_contains (info->field_map, decl);
294 return slot ? (tree) *slot : NULL_TREE;
297 slot = pointer_map_insert (info->field_map, decl);
298 if (!*slot)
300 tree field = make_node (FIELD_DECL);
301 DECL_NAME (field) = DECL_NAME (decl);
303 if (use_pointer_in_frame (decl))
305 TREE_TYPE (field) = build_pointer_type (TREE_TYPE (decl));
306 DECL_ALIGN (field) = TYPE_ALIGN (TREE_TYPE (field));
307 DECL_NONADDRESSABLE_P (field) = 1;
309 else
311 TREE_TYPE (field) = TREE_TYPE (decl);
312 DECL_SOURCE_LOCATION (field) = DECL_SOURCE_LOCATION (decl);
313 DECL_ALIGN (field) = DECL_ALIGN (decl);
314 DECL_USER_ALIGN (field) = DECL_USER_ALIGN (decl);
315 TREE_ADDRESSABLE (field) = TREE_ADDRESSABLE (decl);
316 DECL_NONADDRESSABLE_P (field) = !TREE_ADDRESSABLE (decl);
317 TREE_THIS_VOLATILE (field) = TREE_THIS_VOLATILE (decl);
320 insert_field_into_struct (get_frame_type (info), field);
321 *slot = field;
323 if (TREE_CODE (decl) == PARM_DECL)
324 info->any_parm_remapped = true;
327 return (tree) *slot;
330 /* Build or return the variable that holds the static chain within
331 INFO->CONTEXT. This variable may only be used within INFO->CONTEXT. */
333 static tree
334 get_chain_decl (struct nesting_info *info)
336 tree decl = info->chain_decl;
338 if (!decl)
340 tree type;
342 type = get_frame_type (info->outer);
343 type = build_pointer_type (type);
345 /* Note that this variable is *not* entered into any BIND_EXPR;
346 the construction of this variable is handled specially in
347 expand_function_start and initialize_inlined_parameters.
348 Note also that it's represented as a parameter. This is more
349 close to the truth, since the initial value does come from
350 the caller. */
351 decl = build_decl (DECL_SOURCE_LOCATION (info->context),
352 PARM_DECL, create_tmp_var_name ("CHAIN"), type);
353 DECL_ARTIFICIAL (decl) = 1;
354 DECL_IGNORED_P (decl) = 1;
355 TREE_USED (decl) = 1;
356 DECL_CONTEXT (decl) = info->context;
357 DECL_ARG_TYPE (decl) = type;
359 /* Tell tree-inline.c that we never write to this variable, so
360 it can copy-prop the replacement value immediately. */
361 TREE_READONLY (decl) = 1;
363 info->chain_decl = decl;
365 if (dump_file
366 && (dump_flags & TDF_DETAILS)
367 && !DECL_STATIC_CHAIN (info->context))
368 fprintf (dump_file, "Setting static-chain for %s\n",
369 lang_hooks.decl_printable_name (info->context, 2));
371 DECL_STATIC_CHAIN (info->context) = 1;
373 return decl;
376 /* Build or return the field within the non-local frame state that holds
377 the static chain for INFO->CONTEXT. This is the way to walk back up
378 multiple nesting levels. */
380 static tree
381 get_chain_field (struct nesting_info *info)
383 tree field = info->chain_field;
385 if (!field)
387 tree type = build_pointer_type (get_frame_type (info->outer));
389 field = make_node (FIELD_DECL);
390 DECL_NAME (field) = get_identifier ("__chain");
391 TREE_TYPE (field) = type;
392 DECL_ALIGN (field) = TYPE_ALIGN (type);
393 DECL_NONADDRESSABLE_P (field) = 1;
395 insert_field_into_struct (get_frame_type (info), field);
397 info->chain_field = field;
399 if (dump_file
400 && (dump_flags & TDF_DETAILS)
401 && !DECL_STATIC_CHAIN (info->context))
402 fprintf (dump_file, "Setting static-chain for %s\n",
403 lang_hooks.decl_printable_name (info->context, 2));
405 DECL_STATIC_CHAIN (info->context) = 1;
407 return field;
410 /* Initialize a new temporary with the GIMPLE_CALL STMT. */
412 static tree
413 init_tmp_var_with_call (struct nesting_info *info, gimple_stmt_iterator *gsi,
414 gimple call)
416 tree t;
418 t = create_tmp_var_for (info, gimple_call_return_type (call), NULL);
419 gimple_call_set_lhs (call, t);
420 if (! gsi_end_p (*gsi))
421 gimple_set_location (call, gimple_location (gsi_stmt (*gsi)));
422 gsi_insert_before (gsi, call, GSI_SAME_STMT);
424 return t;
428 /* Copy EXP into a temporary. Allocate the temporary in the context of
429 INFO and insert the initialization statement before GSI. */
431 static tree
432 init_tmp_var (struct nesting_info *info, tree exp, gimple_stmt_iterator *gsi)
434 tree t;
435 gimple stmt;
437 t = create_tmp_var_for (info, TREE_TYPE (exp), NULL);
438 stmt = gimple_build_assign (t, exp);
439 if (! gsi_end_p (*gsi))
440 gimple_set_location (stmt, gimple_location (gsi_stmt (*gsi)));
441 gsi_insert_before_without_update (gsi, stmt, GSI_SAME_STMT);
443 return t;
447 /* Similarly, but only do so to force EXP to satisfy is_gimple_val. */
449 static tree
450 gsi_gimplify_val (struct nesting_info *info, tree exp,
451 gimple_stmt_iterator *gsi)
453 if (is_gimple_val (exp))
454 return exp;
455 else
456 return init_tmp_var (info, exp, gsi);
459 /* Similarly, but copy from the temporary and insert the statement
460 after the iterator. */
462 static tree
463 save_tmp_var (struct nesting_info *info, tree exp, gimple_stmt_iterator *gsi)
465 tree t;
466 gimple stmt;
468 t = create_tmp_var_for (info, TREE_TYPE (exp), NULL);
469 stmt = gimple_build_assign (exp, t);
470 if (! gsi_end_p (*gsi))
471 gimple_set_location (stmt, gimple_location (gsi_stmt (*gsi)));
472 gsi_insert_after_without_update (gsi, stmt, GSI_SAME_STMT);
474 return t;
477 /* Build or return the type used to represent a nested function trampoline. */
479 static GTY(()) tree trampoline_type;
481 static tree
482 get_trampoline_type (struct nesting_info *info)
484 unsigned align, size;
485 tree t;
487 if (trampoline_type)
488 return trampoline_type;
490 align = TRAMPOLINE_ALIGNMENT;
491 size = TRAMPOLINE_SIZE;
493 /* If we won't be able to guarantee alignment simply via TYPE_ALIGN,
494 then allocate extra space so that we can do dynamic alignment. */
495 if (align > STACK_BOUNDARY)
497 size += ((align/BITS_PER_UNIT) - 1) & -(STACK_BOUNDARY/BITS_PER_UNIT);
498 align = STACK_BOUNDARY;
501 t = build_index_type (size_int (size - 1));
502 t = build_array_type (char_type_node, t);
503 t = build_decl (DECL_SOURCE_LOCATION (info->context),
504 FIELD_DECL, get_identifier ("__data"), t);
505 DECL_ALIGN (t) = align;
506 DECL_USER_ALIGN (t) = 1;
508 trampoline_type = make_node (RECORD_TYPE);
509 TYPE_NAME (trampoline_type) = get_identifier ("__builtin_trampoline");
510 TYPE_FIELDS (trampoline_type) = t;
511 layout_type (trampoline_type);
512 DECL_CONTEXT (t) = trampoline_type;
514 return trampoline_type;
517 /* Given DECL, a nested function, find or create a field in the non-local
518 frame structure for a trampoline for this function. */
520 static tree
521 lookup_tramp_for_decl (struct nesting_info *info, tree decl,
522 enum insert_option insert)
524 void **slot;
526 if (insert == NO_INSERT)
528 slot = pointer_map_contains (info->var_map, decl);
529 return slot ? (tree) *slot : NULL_TREE;
532 slot = pointer_map_insert (info->var_map, decl);
533 if (!*slot)
535 tree field = make_node (FIELD_DECL);
536 DECL_NAME (field) = DECL_NAME (decl);
537 TREE_TYPE (field) = get_trampoline_type (info);
538 TREE_ADDRESSABLE (field) = 1;
540 insert_field_into_struct (get_frame_type (info), field);
541 *slot = field;
543 info->any_tramp_created = true;
546 return (tree) *slot;
549 /* Build or return the field within the non-local frame state that holds
550 the non-local goto "jmp_buf". The buffer itself is maintained by the
551 rtl middle-end as dynamic stack space is allocated. */
553 static tree
554 get_nl_goto_field (struct nesting_info *info)
556 tree field = info->nl_goto_field;
557 if (!field)
559 unsigned size;
560 tree type;
562 /* For __builtin_nonlocal_goto, we need N words. The first is the
563 frame pointer, the rest is for the target's stack pointer save
564 area. The number of words is controlled by STACK_SAVEAREA_MODE;
565 not the best interface, but it'll do for now. */
566 if (Pmode == ptr_mode)
567 type = ptr_type_node;
568 else
569 type = lang_hooks.types.type_for_mode (Pmode, 1);
571 size = GET_MODE_SIZE (STACK_SAVEAREA_MODE (SAVE_NONLOCAL));
572 size = size / GET_MODE_SIZE (Pmode);
573 size = size + 1;
575 type = build_array_type
576 (type, build_index_type (size_int (size)));
578 field = make_node (FIELD_DECL);
579 DECL_NAME (field) = get_identifier ("__nl_goto_buf");
580 TREE_TYPE (field) = type;
581 DECL_ALIGN (field) = TYPE_ALIGN (type);
582 TREE_ADDRESSABLE (field) = 1;
584 insert_field_into_struct (get_frame_type (info), field);
586 info->nl_goto_field = field;
589 return field;
592 /* Invoke CALLBACK on all statements of GIMPLE sequence *PSEQ. */
594 static void
595 walk_body (walk_stmt_fn callback_stmt, walk_tree_fn callback_op,
596 struct nesting_info *info, gimple_seq *pseq)
598 struct walk_stmt_info wi;
600 memset (&wi, 0, sizeof (wi));
601 wi.info = info;
602 wi.val_only = true;
603 walk_gimple_seq_mod (pseq, callback_stmt, callback_op, &wi);
607 /* Invoke CALLBACK_STMT/CALLBACK_OP on all statements of INFO->CONTEXT. */
609 static inline void
610 walk_function (walk_stmt_fn callback_stmt, walk_tree_fn callback_op,
611 struct nesting_info *info)
613 gimple_seq body = gimple_body (info->context);
614 walk_body (callback_stmt, callback_op, info, &body);
615 gimple_set_body (info->context, body);
618 /* Invoke CALLBACK on a GIMPLE_OMP_FOR's init, cond, incr and pre-body. */
620 static void
621 walk_gimple_omp_for (gimple for_stmt,
622 walk_stmt_fn callback_stmt, walk_tree_fn callback_op,
623 struct nesting_info *info)
625 struct walk_stmt_info wi;
626 gimple_seq seq;
627 tree t;
628 size_t i;
630 walk_body (callback_stmt, callback_op, info, gimple_omp_for_pre_body_ptr (for_stmt));
632 seq = NULL;
633 memset (&wi, 0, sizeof (wi));
634 wi.info = info;
635 wi.gsi = gsi_last (seq);
637 for (i = 0; i < gimple_omp_for_collapse (for_stmt); i++)
639 wi.val_only = false;
640 walk_tree (gimple_omp_for_index_ptr (for_stmt, i), callback_op,
641 &wi, NULL);
642 wi.val_only = true;
643 wi.is_lhs = false;
644 walk_tree (gimple_omp_for_initial_ptr (for_stmt, i), callback_op,
645 &wi, NULL);
647 wi.val_only = true;
648 wi.is_lhs = false;
649 walk_tree (gimple_omp_for_final_ptr (for_stmt, i), callback_op,
650 &wi, NULL);
652 t = gimple_omp_for_incr (for_stmt, i);
653 gcc_assert (BINARY_CLASS_P (t));
654 wi.val_only = false;
655 walk_tree (&TREE_OPERAND (t, 0), callback_op, &wi, NULL);
656 wi.val_only = true;
657 wi.is_lhs = false;
658 walk_tree (&TREE_OPERAND (t, 1), callback_op, &wi, NULL);
661 seq = gsi_seq (wi.gsi);
662 if (!gimple_seq_empty_p (seq))
664 gimple_seq pre_body = gimple_omp_for_pre_body (for_stmt);
665 annotate_all_with_location (seq, gimple_location (for_stmt));
666 gimple_seq_add_seq (&pre_body, seq);
667 gimple_omp_for_set_pre_body (for_stmt, pre_body);
671 /* Similarly for ROOT and all functions nested underneath, depth first. */
673 static void
674 walk_all_functions (walk_stmt_fn callback_stmt, walk_tree_fn callback_op,
675 struct nesting_info *root)
677 struct nesting_info *n;
678 FOR_EACH_NEST_INFO (n, root)
679 walk_function (callback_stmt, callback_op, n);
683 /* We have to check for a fairly pathological case. The operands of function
684 nested function are to be interpreted in the context of the enclosing
685 function. So if any are variably-sized, they will get remapped when the
686 enclosing function is inlined. But that remapping would also have to be
687 done in the types of the PARM_DECLs of the nested function, meaning the
688 argument types of that function will disagree with the arguments in the
689 calls to that function. So we'd either have to make a copy of the nested
690 function corresponding to each time the enclosing function was inlined or
691 add a VIEW_CONVERT_EXPR to each such operand for each call to the nested
692 function. The former is not practical. The latter would still require
693 detecting this case to know when to add the conversions. So, for now at
694 least, we don't inline such an enclosing function.
696 We have to do that check recursively, so here return indicating whether
697 FNDECL has such a nested function. ORIG_FN is the function we were
698 trying to inline to use for checking whether any argument is variably
699 modified by anything in it.
701 It would be better to do this in tree-inline.c so that we could give
702 the appropriate warning for why a function can't be inlined, but that's
703 too late since the nesting structure has already been flattened and
704 adding a flag just to record this fact seems a waste of a flag. */
706 static bool
707 check_for_nested_with_variably_modified (tree fndecl, tree orig_fndecl)
709 struct cgraph_node *cgn = cgraph_get_node (fndecl);
710 tree arg;
712 for (cgn = cgn->nested; cgn ; cgn = cgn->next_nested)
714 for (arg = DECL_ARGUMENTS (cgn->decl); arg; arg = DECL_CHAIN (arg))
715 if (variably_modified_type_p (TREE_TYPE (arg), orig_fndecl))
716 return true;
718 if (check_for_nested_with_variably_modified (cgn->decl,
719 orig_fndecl))
720 return true;
723 return false;
726 /* Construct our local datastructure describing the function nesting
727 tree rooted by CGN. */
729 static struct nesting_info *
730 create_nesting_tree (struct cgraph_node *cgn)
732 struct nesting_info *info = XCNEW (struct nesting_info);
733 info->field_map = pointer_map_create ();
734 info->var_map = pointer_map_create ();
735 info->mem_refs = pointer_set_create ();
736 info->suppress_expansion = BITMAP_ALLOC (&nesting_info_bitmap_obstack);
737 info->context = cgn->decl;
739 for (cgn = cgn->nested; cgn ; cgn = cgn->next_nested)
741 struct nesting_info *sub = create_nesting_tree (cgn);
742 sub->outer = info;
743 sub->next = info->inner;
744 info->inner = sub;
747 /* See discussion at check_for_nested_with_variably_modified for a
748 discussion of why this has to be here. */
749 if (check_for_nested_with_variably_modified (info->context, info->context))
750 DECL_UNINLINABLE (info->context) = true;
752 return info;
755 /* Return an expression computing the static chain for TARGET_CONTEXT
756 from INFO->CONTEXT. Insert any necessary computations before TSI. */
758 static tree
759 get_static_chain (struct nesting_info *info, tree target_context,
760 gimple_stmt_iterator *gsi)
762 struct nesting_info *i;
763 tree x;
765 if (info->context == target_context)
767 x = build_addr (info->frame_decl, target_context);
769 else
771 x = get_chain_decl (info);
773 for (i = info->outer; i->context != target_context; i = i->outer)
775 tree field = get_chain_field (i);
777 x = build_simple_mem_ref (x);
778 x = build3 (COMPONENT_REF, TREE_TYPE (field), x, field, NULL_TREE);
779 x = init_tmp_var (info, x, gsi);
783 return x;
787 /* Return an expression referencing FIELD from TARGET_CONTEXT's non-local
788 frame as seen from INFO->CONTEXT. Insert any necessary computations
789 before GSI. */
791 static tree
792 get_frame_field (struct nesting_info *info, tree target_context,
793 tree field, gimple_stmt_iterator *gsi)
795 struct nesting_info *i;
796 tree x;
798 if (info->context == target_context)
800 /* Make sure frame_decl gets created. */
801 (void) get_frame_type (info);
802 x = info->frame_decl;
804 else
806 x = get_chain_decl (info);
808 for (i = info->outer; i->context != target_context; i = i->outer)
810 tree field = get_chain_field (i);
812 x = build_simple_mem_ref (x);
813 x = build3 (COMPONENT_REF, TREE_TYPE (field), x, field, NULL_TREE);
814 x = init_tmp_var (info, x, gsi);
817 x = build_simple_mem_ref (x);
820 x = build3 (COMPONENT_REF, TREE_TYPE (field), x, field, NULL_TREE);
821 return x;
824 static void note_nonlocal_vla_type (struct nesting_info *info, tree type);
826 /* A subroutine of convert_nonlocal_reference_op. Create a local variable
827 in the nested function with DECL_VALUE_EXPR set to reference the true
828 variable in the parent function. This is used both for debug info
829 and in OpenMP lowering. */
831 static tree
832 get_nonlocal_debug_decl (struct nesting_info *info, tree decl)
834 tree target_context;
835 struct nesting_info *i;
836 tree x, field, new_decl;
837 void **slot;
839 slot = pointer_map_insert (info->var_map, decl);
841 if (*slot)
842 return (tree) *slot;
844 target_context = decl_function_context (decl);
846 /* A copy of the code in get_frame_field, but without the temporaries. */
847 if (info->context == target_context)
849 /* Make sure frame_decl gets created. */
850 (void) get_frame_type (info);
851 x = info->frame_decl;
852 i = info;
854 else
856 x = get_chain_decl (info);
857 for (i = info->outer; i->context != target_context; i = i->outer)
859 field = get_chain_field (i);
860 x = build_simple_mem_ref (x);
861 x = build3 (COMPONENT_REF, TREE_TYPE (field), x, field, NULL_TREE);
863 x = build_simple_mem_ref (x);
866 field = lookup_field_for_decl (i, decl, INSERT);
867 x = build3 (COMPONENT_REF, TREE_TYPE (field), x, field, NULL_TREE);
868 if (use_pointer_in_frame (decl))
869 x = build_simple_mem_ref (x);
871 /* ??? We should be remapping types as well, surely. */
872 new_decl = build_decl (DECL_SOURCE_LOCATION (decl),
873 VAR_DECL, DECL_NAME (decl), TREE_TYPE (decl));
874 DECL_CONTEXT (new_decl) = info->context;
875 DECL_ARTIFICIAL (new_decl) = DECL_ARTIFICIAL (decl);
876 DECL_IGNORED_P (new_decl) = DECL_IGNORED_P (decl);
877 TREE_THIS_VOLATILE (new_decl) = TREE_THIS_VOLATILE (decl);
878 TREE_SIDE_EFFECTS (new_decl) = TREE_SIDE_EFFECTS (decl);
879 TREE_READONLY (new_decl) = TREE_READONLY (decl);
880 TREE_ADDRESSABLE (new_decl) = TREE_ADDRESSABLE (decl);
881 DECL_SEEN_IN_BIND_EXPR_P (new_decl) = 1;
882 if ((TREE_CODE (decl) == PARM_DECL
883 || TREE_CODE (decl) == RESULT_DECL
884 || TREE_CODE (decl) == VAR_DECL)
885 && DECL_BY_REFERENCE (decl))
886 DECL_BY_REFERENCE (new_decl) = 1;
888 SET_DECL_VALUE_EXPR (new_decl, x);
889 DECL_HAS_VALUE_EXPR_P (new_decl) = 1;
891 *slot = new_decl;
892 DECL_CHAIN (new_decl) = info->debug_var_chain;
893 info->debug_var_chain = new_decl;
895 if (!optimize
896 && info->context != target_context
897 && variably_modified_type_p (TREE_TYPE (decl), NULL))
898 note_nonlocal_vla_type (info, TREE_TYPE (decl));
900 return new_decl;
904 /* Callback for walk_gimple_stmt, rewrite all references to VAR
905 and PARM_DECLs that belong to outer functions.
907 The rewrite will involve some number of structure accesses back up
908 the static chain. E.g. for a variable FOO up one nesting level it'll
909 be CHAIN->FOO. For two levels it'll be CHAIN->__chain->FOO. Further
910 indirections apply to decls for which use_pointer_in_frame is true. */
912 static tree
913 convert_nonlocal_reference_op (tree *tp, int *walk_subtrees, void *data)
915 struct walk_stmt_info *wi = (struct walk_stmt_info *) data;
916 struct nesting_info *const info = (struct nesting_info *) wi->info;
917 tree t = *tp;
919 *walk_subtrees = 0;
920 switch (TREE_CODE (t))
922 case VAR_DECL:
923 /* Non-automatic variables are never processed. */
924 if (TREE_STATIC (t) || DECL_EXTERNAL (t))
925 break;
926 /* FALLTHRU */
928 case PARM_DECL:
929 if (decl_function_context (t) != info->context)
931 tree x;
932 wi->changed = true;
934 x = get_nonlocal_debug_decl (info, t);
935 if (!bitmap_bit_p (info->suppress_expansion, DECL_UID (t)))
937 tree target_context = decl_function_context (t);
938 struct nesting_info *i;
939 for (i = info->outer; i->context != target_context; i = i->outer)
940 continue;
941 x = lookup_field_for_decl (i, t, INSERT);
942 x = get_frame_field (info, target_context, x, &wi->gsi);
943 if (use_pointer_in_frame (t))
945 x = init_tmp_var (info, x, &wi->gsi);
946 x = build_simple_mem_ref (x);
950 if (wi->val_only)
952 if (wi->is_lhs)
953 x = save_tmp_var (info, x, &wi->gsi);
954 else
955 x = init_tmp_var (info, x, &wi->gsi);
958 *tp = x;
960 break;
962 case LABEL_DECL:
963 /* We're taking the address of a label from a parent function, but
964 this is not itself a non-local goto. Mark the label such that it
965 will not be deleted, much as we would with a label address in
966 static storage. */
967 if (decl_function_context (t) != info->context)
968 FORCED_LABEL (t) = 1;
969 break;
971 case ADDR_EXPR:
973 bool save_val_only = wi->val_only;
975 wi->val_only = false;
976 wi->is_lhs = false;
977 wi->changed = false;
978 walk_tree (&TREE_OPERAND (t, 0), convert_nonlocal_reference_op, wi, 0);
979 wi->val_only = true;
981 if (wi->changed)
983 tree save_context;
985 /* If we changed anything, we might no longer be directly
986 referencing a decl. */
987 save_context = current_function_decl;
988 current_function_decl = info->context;
989 recompute_tree_invariant_for_addr_expr (t);
990 current_function_decl = save_context;
992 /* If the callback converted the address argument in a context
993 where we only accept variables (and min_invariant, presumably),
994 then compute the address into a temporary. */
995 if (save_val_only)
996 *tp = gsi_gimplify_val ((struct nesting_info *) wi->info,
997 t, &wi->gsi);
1000 break;
1002 case REALPART_EXPR:
1003 case IMAGPART_EXPR:
1004 case COMPONENT_REF:
1005 case ARRAY_REF:
1006 case ARRAY_RANGE_REF:
1007 case BIT_FIELD_REF:
1008 /* Go down this entire nest and just look at the final prefix and
1009 anything that describes the references. Otherwise, we lose track
1010 of whether a NOP_EXPR or VIEW_CONVERT_EXPR needs a simple value. */
1011 wi->val_only = true;
1012 wi->is_lhs = false;
1013 for (; handled_component_p (t); tp = &TREE_OPERAND (t, 0), t = *tp)
1015 if (TREE_CODE (t) == COMPONENT_REF)
1016 walk_tree (&TREE_OPERAND (t, 2), convert_nonlocal_reference_op, wi,
1017 NULL);
1018 else if (TREE_CODE (t) == ARRAY_REF
1019 || TREE_CODE (t) == ARRAY_RANGE_REF)
1021 walk_tree (&TREE_OPERAND (t, 1), convert_nonlocal_reference_op,
1022 wi, NULL);
1023 walk_tree (&TREE_OPERAND (t, 2), convert_nonlocal_reference_op,
1024 wi, NULL);
1025 walk_tree (&TREE_OPERAND (t, 3), convert_nonlocal_reference_op,
1026 wi, NULL);
1029 wi->val_only = false;
1030 walk_tree (tp, convert_nonlocal_reference_op, wi, NULL);
1031 break;
1033 case VIEW_CONVERT_EXPR:
1034 /* Just request to look at the subtrees, leaving val_only and lhs
1035 untouched. This might actually be for !val_only + lhs, in which
1036 case we don't want to force a replacement by a temporary. */
1037 *walk_subtrees = 1;
1038 break;
1040 default:
1041 if (!IS_TYPE_OR_DECL_P (t))
1043 *walk_subtrees = 1;
1044 wi->val_only = true;
1045 wi->is_lhs = false;
1047 break;
1050 return NULL_TREE;
1053 static tree convert_nonlocal_reference_stmt (gimple_stmt_iterator *, bool *,
1054 struct walk_stmt_info *);
1056 /* Helper for convert_nonlocal_references, rewrite all references to VAR
1057 and PARM_DECLs that belong to outer functions. */
1059 static bool
1060 convert_nonlocal_omp_clauses (tree *pclauses, struct walk_stmt_info *wi)
1062 struct nesting_info *const info = (struct nesting_info *) wi->info;
1063 bool need_chain = false, need_stmts = false;
1064 tree clause, decl;
1065 int dummy;
1066 bitmap new_suppress;
1068 new_suppress = BITMAP_GGC_ALLOC ();
1069 bitmap_copy (new_suppress, info->suppress_expansion);
1071 for (clause = *pclauses; clause ; clause = OMP_CLAUSE_CHAIN (clause))
1073 switch (OMP_CLAUSE_CODE (clause))
1075 case OMP_CLAUSE_REDUCTION:
1076 if (OMP_CLAUSE_REDUCTION_PLACEHOLDER (clause))
1077 need_stmts = true;
1078 goto do_decl_clause;
1080 case OMP_CLAUSE_LASTPRIVATE:
1081 if (OMP_CLAUSE_LASTPRIVATE_GIMPLE_SEQ (clause))
1082 need_stmts = true;
1083 goto do_decl_clause;
1085 case OMP_CLAUSE_PRIVATE:
1086 case OMP_CLAUSE_FIRSTPRIVATE:
1087 case OMP_CLAUSE_COPYPRIVATE:
1088 case OMP_CLAUSE_SHARED:
1089 do_decl_clause:
1090 decl = OMP_CLAUSE_DECL (clause);
1091 if (TREE_CODE (decl) == VAR_DECL
1092 && (TREE_STATIC (decl) || DECL_EXTERNAL (decl)))
1093 break;
1094 if (decl_function_context (decl) != info->context)
1096 bitmap_set_bit (new_suppress, DECL_UID (decl));
1097 OMP_CLAUSE_DECL (clause) = get_nonlocal_debug_decl (info, decl);
1098 if (OMP_CLAUSE_CODE (clause) != OMP_CLAUSE_PRIVATE)
1099 need_chain = true;
1101 break;
1103 case OMP_CLAUSE_SCHEDULE:
1104 if (OMP_CLAUSE_SCHEDULE_CHUNK_EXPR (clause) == NULL)
1105 break;
1106 /* FALLTHRU */
1107 case OMP_CLAUSE_FINAL:
1108 case OMP_CLAUSE_IF:
1109 case OMP_CLAUSE_NUM_THREADS:
1110 wi->val_only = true;
1111 wi->is_lhs = false;
1112 convert_nonlocal_reference_op (&OMP_CLAUSE_OPERAND (clause, 0),
1113 &dummy, wi);
1114 break;
1116 case OMP_CLAUSE_NOWAIT:
1117 case OMP_CLAUSE_ORDERED:
1118 case OMP_CLAUSE_DEFAULT:
1119 case OMP_CLAUSE_COPYIN:
1120 case OMP_CLAUSE_COLLAPSE:
1121 case OMP_CLAUSE_UNTIED:
1122 case OMP_CLAUSE_MERGEABLE:
1123 break;
1125 default:
1126 gcc_unreachable ();
1130 info->suppress_expansion = new_suppress;
1132 if (need_stmts)
1133 for (clause = *pclauses; clause ; clause = OMP_CLAUSE_CHAIN (clause))
1134 switch (OMP_CLAUSE_CODE (clause))
1136 case OMP_CLAUSE_REDUCTION:
1137 if (OMP_CLAUSE_REDUCTION_PLACEHOLDER (clause))
1139 tree old_context
1140 = DECL_CONTEXT (OMP_CLAUSE_REDUCTION_PLACEHOLDER (clause));
1141 DECL_CONTEXT (OMP_CLAUSE_REDUCTION_PLACEHOLDER (clause))
1142 = info->context;
1143 walk_body (convert_nonlocal_reference_stmt,
1144 convert_nonlocal_reference_op, info,
1145 &OMP_CLAUSE_REDUCTION_GIMPLE_INIT (clause));
1146 walk_body (convert_nonlocal_reference_stmt,
1147 convert_nonlocal_reference_op, info,
1148 &OMP_CLAUSE_REDUCTION_GIMPLE_MERGE (clause));
1149 DECL_CONTEXT (OMP_CLAUSE_REDUCTION_PLACEHOLDER (clause))
1150 = old_context;
1152 break;
1154 case OMP_CLAUSE_LASTPRIVATE:
1155 walk_body (convert_nonlocal_reference_stmt,
1156 convert_nonlocal_reference_op, info,
1157 &OMP_CLAUSE_LASTPRIVATE_GIMPLE_SEQ (clause));
1158 break;
1160 default:
1161 break;
1164 return need_chain;
1167 /* Create nonlocal debug decls for nonlocal VLA array bounds. */
1169 static void
1170 note_nonlocal_vla_type (struct nesting_info *info, tree type)
1172 while (POINTER_TYPE_P (type) && !TYPE_NAME (type))
1173 type = TREE_TYPE (type);
1175 if (TYPE_NAME (type)
1176 && TREE_CODE (TYPE_NAME (type)) == TYPE_DECL
1177 && DECL_ORIGINAL_TYPE (TYPE_NAME (type)))
1178 type = DECL_ORIGINAL_TYPE (TYPE_NAME (type));
1180 while (POINTER_TYPE_P (type)
1181 || TREE_CODE (type) == VECTOR_TYPE
1182 || TREE_CODE (type) == FUNCTION_TYPE
1183 || TREE_CODE (type) == METHOD_TYPE)
1184 type = TREE_TYPE (type);
1186 if (TREE_CODE (type) == ARRAY_TYPE)
1188 tree domain, t;
1190 note_nonlocal_vla_type (info, TREE_TYPE (type));
1191 domain = TYPE_DOMAIN (type);
1192 if (domain)
1194 t = TYPE_MIN_VALUE (domain);
1195 if (t && (TREE_CODE (t) == VAR_DECL || TREE_CODE (t) == PARM_DECL)
1196 && decl_function_context (t) != info->context)
1197 get_nonlocal_debug_decl (info, t);
1198 t = TYPE_MAX_VALUE (domain);
1199 if (t && (TREE_CODE (t) == VAR_DECL || TREE_CODE (t) == PARM_DECL)
1200 && decl_function_context (t) != info->context)
1201 get_nonlocal_debug_decl (info, t);
1206 /* Create nonlocal debug decls for nonlocal VLA array bounds for VLAs
1207 in BLOCK. */
1209 static void
1210 note_nonlocal_block_vlas (struct nesting_info *info, tree block)
1212 tree var;
1214 for (var = BLOCK_VARS (block); var; var = DECL_CHAIN (var))
1215 if (TREE_CODE (var) == VAR_DECL
1216 && variably_modified_type_p (TREE_TYPE (var), NULL)
1217 && DECL_HAS_VALUE_EXPR_P (var)
1218 && decl_function_context (var) != info->context)
1219 note_nonlocal_vla_type (info, TREE_TYPE (var));
1222 /* Callback for walk_gimple_stmt. Rewrite all references to VAR and
1223 PARM_DECLs that belong to outer functions. This handles statements
1224 that are not handled via the standard recursion done in
1225 walk_gimple_stmt. STMT is the statement to examine, DATA is as in
1226 convert_nonlocal_reference_op. Set *HANDLED_OPS_P to true if all the
1227 operands of STMT have been handled by this function. */
1229 static tree
1230 convert_nonlocal_reference_stmt (gimple_stmt_iterator *gsi, bool *handled_ops_p,
1231 struct walk_stmt_info *wi)
1233 struct nesting_info *info = (struct nesting_info *) wi->info;
1234 tree save_local_var_chain;
1235 bitmap save_suppress;
1236 gimple stmt = gsi_stmt (*gsi);
1238 switch (gimple_code (stmt))
1240 case GIMPLE_GOTO:
1241 /* Don't walk non-local gotos for now. */
1242 if (TREE_CODE (gimple_goto_dest (stmt)) != LABEL_DECL)
1244 wi->val_only = true;
1245 wi->is_lhs = false;
1246 *handled_ops_p = true;
1247 return NULL_TREE;
1249 break;
1251 case GIMPLE_OMP_PARALLEL:
1252 case GIMPLE_OMP_TASK:
1253 save_suppress = info->suppress_expansion;
1254 if (convert_nonlocal_omp_clauses (gimple_omp_taskreg_clauses_ptr (stmt),
1255 wi))
1257 tree c, decl;
1258 decl = get_chain_decl (info);
1259 c = build_omp_clause (gimple_location (stmt),
1260 OMP_CLAUSE_FIRSTPRIVATE);
1261 OMP_CLAUSE_DECL (c) = decl;
1262 OMP_CLAUSE_CHAIN (c) = gimple_omp_taskreg_clauses (stmt);
1263 gimple_omp_taskreg_set_clauses (stmt, c);
1266 save_local_var_chain = info->new_local_var_chain;
1267 info->new_local_var_chain = NULL;
1269 walk_body (convert_nonlocal_reference_stmt, convert_nonlocal_reference_op,
1270 info, gimple_omp_body_ptr (stmt));
1272 if (info->new_local_var_chain)
1273 declare_vars (info->new_local_var_chain,
1274 gimple_seq_first_stmt (gimple_omp_body (stmt)),
1275 false);
1276 info->new_local_var_chain = save_local_var_chain;
1277 info->suppress_expansion = save_suppress;
1278 break;
1280 case GIMPLE_OMP_FOR:
1281 save_suppress = info->suppress_expansion;
1282 convert_nonlocal_omp_clauses (gimple_omp_for_clauses_ptr (stmt), wi);
1283 walk_gimple_omp_for (stmt, convert_nonlocal_reference_stmt,
1284 convert_nonlocal_reference_op, info);
1285 walk_body (convert_nonlocal_reference_stmt,
1286 convert_nonlocal_reference_op, info, gimple_omp_body_ptr (stmt));
1287 info->suppress_expansion = save_suppress;
1288 break;
1290 case GIMPLE_OMP_SECTIONS:
1291 save_suppress = info->suppress_expansion;
1292 convert_nonlocal_omp_clauses (gimple_omp_sections_clauses_ptr (stmt), wi);
1293 walk_body (convert_nonlocal_reference_stmt, convert_nonlocal_reference_op,
1294 info, gimple_omp_body_ptr (stmt));
1295 info->suppress_expansion = save_suppress;
1296 break;
1298 case GIMPLE_OMP_SINGLE:
1299 save_suppress = info->suppress_expansion;
1300 convert_nonlocal_omp_clauses (gimple_omp_single_clauses_ptr (stmt), wi);
1301 walk_body (convert_nonlocal_reference_stmt, convert_nonlocal_reference_op,
1302 info, gimple_omp_body_ptr (stmt));
1303 info->suppress_expansion = save_suppress;
1304 break;
1306 case GIMPLE_OMP_TARGET:
1307 save_suppress = info->suppress_expansion;
1308 convert_nonlocal_omp_clauses (gimple_omp_target_clauses_ptr (stmt), wi);
1309 walk_body (convert_nonlocal_reference_stmt, convert_nonlocal_reference_op,
1310 info, gimple_omp_body_ptr (stmt));
1311 info->suppress_expansion = save_suppress;
1312 break;
1314 case GIMPLE_OMP_TEAMS:
1315 save_suppress = info->suppress_expansion;
1316 convert_nonlocal_omp_clauses (gimple_omp_teams_clauses_ptr (stmt), wi);
1317 walk_body (convert_nonlocal_reference_stmt, convert_nonlocal_reference_op,
1318 info, gimple_omp_body_ptr (stmt));
1319 info->suppress_expansion = save_suppress;
1320 break;
1322 case GIMPLE_OMP_SECTION:
1323 case GIMPLE_OMP_MASTER:
1324 case GIMPLE_OMP_TASKGROUP:
1325 case GIMPLE_OMP_ORDERED:
1326 walk_body (convert_nonlocal_reference_stmt, convert_nonlocal_reference_op,
1327 info, gimple_omp_body_ptr (stmt));
1328 break;
1330 case GIMPLE_BIND:
1331 if (!optimize && gimple_bind_block (stmt))
1332 note_nonlocal_block_vlas (info, gimple_bind_block (stmt));
1334 for (tree var = gimple_bind_vars (stmt); var; var = DECL_CHAIN (var))
1335 if (TREE_CODE (var) == NAMELIST_DECL)
1337 /* Adjust decls mentioned in NAMELIST_DECL. */
1338 tree decls = NAMELIST_DECL_ASSOCIATED_DECL (var);
1339 tree decl;
1340 unsigned int i;
1342 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (decls), i, decl)
1344 if (TREE_CODE (decl) == VAR_DECL
1345 && (TREE_STATIC (decl) || DECL_EXTERNAL (decl)))
1346 continue;
1347 if (decl_function_context (decl) != info->context)
1348 CONSTRUCTOR_ELT (decls, i)->value
1349 = get_nonlocal_debug_decl (info, decl);
1353 *handled_ops_p = false;
1354 return NULL_TREE;
1356 case GIMPLE_COND:
1357 wi->val_only = true;
1358 wi->is_lhs = false;
1359 *handled_ops_p = false;
1360 return NULL_TREE;
1362 default:
1363 /* For every other statement that we are not interested in
1364 handling here, let the walker traverse the operands. */
1365 *handled_ops_p = false;
1366 return NULL_TREE;
1369 /* We have handled all of STMT operands, no need to traverse the operands. */
1370 *handled_ops_p = true;
1371 return NULL_TREE;
1375 /* A subroutine of convert_local_reference. Create a local variable
1376 in the parent function with DECL_VALUE_EXPR set to reference the
1377 field in FRAME. This is used both for debug info and in OpenMP
1378 lowering. */
1380 static tree
1381 get_local_debug_decl (struct nesting_info *info, tree decl, tree field)
1383 tree x, new_decl;
1384 void **slot;
1386 slot = pointer_map_insert (info->var_map, decl);
1387 if (*slot)
1388 return (tree) *slot;
1390 /* Make sure frame_decl gets created. */
1391 (void) get_frame_type (info);
1392 x = info->frame_decl;
1393 x = build3 (COMPONENT_REF, TREE_TYPE (field), x, field, NULL_TREE);
1395 new_decl = build_decl (DECL_SOURCE_LOCATION (decl),
1396 VAR_DECL, DECL_NAME (decl), TREE_TYPE (decl));
1397 DECL_CONTEXT (new_decl) = info->context;
1398 DECL_ARTIFICIAL (new_decl) = DECL_ARTIFICIAL (decl);
1399 DECL_IGNORED_P (new_decl) = DECL_IGNORED_P (decl);
1400 TREE_THIS_VOLATILE (new_decl) = TREE_THIS_VOLATILE (decl);
1401 TREE_SIDE_EFFECTS (new_decl) = TREE_SIDE_EFFECTS (decl);
1402 TREE_READONLY (new_decl) = TREE_READONLY (decl);
1403 TREE_ADDRESSABLE (new_decl) = TREE_ADDRESSABLE (decl);
1404 DECL_SEEN_IN_BIND_EXPR_P (new_decl) = 1;
1405 if ((TREE_CODE (decl) == PARM_DECL
1406 || TREE_CODE (decl) == RESULT_DECL
1407 || TREE_CODE (decl) == VAR_DECL)
1408 && DECL_BY_REFERENCE (decl))
1409 DECL_BY_REFERENCE (new_decl) = 1;
1411 SET_DECL_VALUE_EXPR (new_decl, x);
1412 DECL_HAS_VALUE_EXPR_P (new_decl) = 1;
1413 *slot = new_decl;
1415 DECL_CHAIN (new_decl) = info->debug_var_chain;
1416 info->debug_var_chain = new_decl;
1418 /* Do not emit debug info twice. */
1419 DECL_IGNORED_P (decl) = 1;
1421 return new_decl;
1425 /* Called via walk_function+walk_gimple_stmt, rewrite all references to VAR
1426 and PARM_DECLs that were referenced by inner nested functions.
1427 The rewrite will be a structure reference to the local frame variable. */
1429 static bool convert_local_omp_clauses (tree *, struct walk_stmt_info *);
1431 static tree
1432 convert_local_reference_op (tree *tp, int *walk_subtrees, void *data)
1434 struct walk_stmt_info *wi = (struct walk_stmt_info *) data;
1435 struct nesting_info *const info = (struct nesting_info *) wi->info;
1436 tree t = *tp, field, x;
1437 bool save_val_only;
1439 *walk_subtrees = 0;
1440 switch (TREE_CODE (t))
1442 case VAR_DECL:
1443 /* Non-automatic variables are never processed. */
1444 if (TREE_STATIC (t) || DECL_EXTERNAL (t))
1445 break;
1446 /* FALLTHRU */
1448 case PARM_DECL:
1449 if (decl_function_context (t) == info->context)
1451 /* If we copied a pointer to the frame, then the original decl
1452 is used unchanged in the parent function. */
1453 if (use_pointer_in_frame (t))
1454 break;
1456 /* No need to transform anything if no child references the
1457 variable. */
1458 field = lookup_field_for_decl (info, t, NO_INSERT);
1459 if (!field)
1460 break;
1461 wi->changed = true;
1463 x = get_local_debug_decl (info, t, field);
1464 if (!bitmap_bit_p (info->suppress_expansion, DECL_UID (t)))
1465 x = get_frame_field (info, info->context, field, &wi->gsi);
1467 if (wi->val_only)
1469 if (wi->is_lhs)
1470 x = save_tmp_var (info, x, &wi->gsi);
1471 else
1472 x = init_tmp_var (info, x, &wi->gsi);
1475 *tp = x;
1477 break;
1479 case ADDR_EXPR:
1480 save_val_only = wi->val_only;
1481 wi->val_only = false;
1482 wi->is_lhs = false;
1483 wi->changed = false;
1484 walk_tree (&TREE_OPERAND (t, 0), convert_local_reference_op, wi, NULL);
1485 wi->val_only = save_val_only;
1487 /* If we converted anything ... */
1488 if (wi->changed)
1490 tree save_context;
1492 /* Then the frame decl is now addressable. */
1493 TREE_ADDRESSABLE (info->frame_decl) = 1;
1495 save_context = current_function_decl;
1496 current_function_decl = info->context;
1497 recompute_tree_invariant_for_addr_expr (t);
1498 current_function_decl = save_context;
1500 /* If we are in a context where we only accept values, then
1501 compute the address into a temporary. */
1502 if (save_val_only)
1503 *tp = gsi_gimplify_val ((struct nesting_info *) wi->info,
1504 t, &wi->gsi);
1506 break;
1508 case REALPART_EXPR:
1509 case IMAGPART_EXPR:
1510 case COMPONENT_REF:
1511 case ARRAY_REF:
1512 case ARRAY_RANGE_REF:
1513 case BIT_FIELD_REF:
1514 /* Go down this entire nest and just look at the final prefix and
1515 anything that describes the references. Otherwise, we lose track
1516 of whether a NOP_EXPR or VIEW_CONVERT_EXPR needs a simple value. */
1517 save_val_only = wi->val_only;
1518 wi->val_only = true;
1519 wi->is_lhs = false;
1520 for (; handled_component_p (t); tp = &TREE_OPERAND (t, 0), t = *tp)
1522 if (TREE_CODE (t) == COMPONENT_REF)
1523 walk_tree (&TREE_OPERAND (t, 2), convert_local_reference_op, wi,
1524 NULL);
1525 else if (TREE_CODE (t) == ARRAY_REF
1526 || TREE_CODE (t) == ARRAY_RANGE_REF)
1528 walk_tree (&TREE_OPERAND (t, 1), convert_local_reference_op, wi,
1529 NULL);
1530 walk_tree (&TREE_OPERAND (t, 2), convert_local_reference_op, wi,
1531 NULL);
1532 walk_tree (&TREE_OPERAND (t, 3), convert_local_reference_op, wi,
1533 NULL);
1536 wi->val_only = false;
1537 walk_tree (tp, convert_local_reference_op, wi, NULL);
1538 wi->val_only = save_val_only;
1539 break;
1541 case MEM_REF:
1542 save_val_only = wi->val_only;
1543 wi->val_only = true;
1544 wi->is_lhs = false;
1545 walk_tree (&TREE_OPERAND (t, 0), convert_local_reference_op,
1546 wi, NULL);
1547 /* We need to re-fold the MEM_REF as component references as
1548 part of a ADDR_EXPR address are not allowed. But we cannot
1549 fold here, as the chain record type is not yet finalized. */
1550 if (TREE_CODE (TREE_OPERAND (t, 0)) == ADDR_EXPR
1551 && !DECL_P (TREE_OPERAND (TREE_OPERAND (t, 0), 0)))
1552 pointer_set_insert (info->mem_refs, tp);
1553 wi->val_only = save_val_only;
1554 break;
1556 case VIEW_CONVERT_EXPR:
1557 /* Just request to look at the subtrees, leaving val_only and lhs
1558 untouched. This might actually be for !val_only + lhs, in which
1559 case we don't want to force a replacement by a temporary. */
1560 *walk_subtrees = 1;
1561 break;
1563 default:
1564 if (!IS_TYPE_OR_DECL_P (t))
1566 *walk_subtrees = 1;
1567 wi->val_only = true;
1568 wi->is_lhs = false;
1570 break;
1573 return NULL_TREE;
1576 static tree convert_local_reference_stmt (gimple_stmt_iterator *, bool *,
1577 struct walk_stmt_info *);
1579 /* Helper for convert_local_reference. Convert all the references in
1580 the chain of clauses at *PCLAUSES. WI is as in convert_local_reference. */
1582 static bool
1583 convert_local_omp_clauses (tree *pclauses, struct walk_stmt_info *wi)
1585 struct nesting_info *const info = (struct nesting_info *) wi->info;
1586 bool need_frame = false, need_stmts = false;
1587 tree clause, decl;
1588 int dummy;
1589 bitmap new_suppress;
1591 new_suppress = BITMAP_GGC_ALLOC ();
1592 bitmap_copy (new_suppress, info->suppress_expansion);
1594 for (clause = *pclauses; clause ; clause = OMP_CLAUSE_CHAIN (clause))
1596 switch (OMP_CLAUSE_CODE (clause))
1598 case OMP_CLAUSE_REDUCTION:
1599 if (OMP_CLAUSE_REDUCTION_PLACEHOLDER (clause))
1600 need_stmts = true;
1601 goto do_decl_clause;
1603 case OMP_CLAUSE_LASTPRIVATE:
1604 if (OMP_CLAUSE_LASTPRIVATE_GIMPLE_SEQ (clause))
1605 need_stmts = true;
1606 goto do_decl_clause;
1608 case OMP_CLAUSE_PRIVATE:
1609 case OMP_CLAUSE_FIRSTPRIVATE:
1610 case OMP_CLAUSE_COPYPRIVATE:
1611 case OMP_CLAUSE_SHARED:
1612 do_decl_clause:
1613 decl = OMP_CLAUSE_DECL (clause);
1614 if (TREE_CODE (decl) == VAR_DECL
1615 && (TREE_STATIC (decl) || DECL_EXTERNAL (decl)))
1616 break;
1617 if (decl_function_context (decl) == info->context
1618 && !use_pointer_in_frame (decl))
1620 tree field = lookup_field_for_decl (info, decl, NO_INSERT);
1621 if (field)
1623 bitmap_set_bit (new_suppress, DECL_UID (decl));
1624 OMP_CLAUSE_DECL (clause)
1625 = get_local_debug_decl (info, decl, field);
1626 need_frame = true;
1629 break;
1631 case OMP_CLAUSE_SCHEDULE:
1632 if (OMP_CLAUSE_SCHEDULE_CHUNK_EXPR (clause) == NULL)
1633 break;
1634 /* FALLTHRU */
1635 case OMP_CLAUSE_FINAL:
1636 case OMP_CLAUSE_IF:
1637 case OMP_CLAUSE_NUM_THREADS:
1638 wi->val_only = true;
1639 wi->is_lhs = false;
1640 convert_local_reference_op (&OMP_CLAUSE_OPERAND (clause, 0), &dummy,
1641 wi);
1642 break;
1644 case OMP_CLAUSE_NOWAIT:
1645 case OMP_CLAUSE_ORDERED:
1646 case OMP_CLAUSE_DEFAULT:
1647 case OMP_CLAUSE_COPYIN:
1648 case OMP_CLAUSE_COLLAPSE:
1649 case OMP_CLAUSE_UNTIED:
1650 case OMP_CLAUSE_MERGEABLE:
1651 break;
1653 default:
1654 gcc_unreachable ();
1658 info->suppress_expansion = new_suppress;
1660 if (need_stmts)
1661 for (clause = *pclauses; clause ; clause = OMP_CLAUSE_CHAIN (clause))
1662 switch (OMP_CLAUSE_CODE (clause))
1664 case OMP_CLAUSE_REDUCTION:
1665 if (OMP_CLAUSE_REDUCTION_PLACEHOLDER (clause))
1667 tree old_context
1668 = DECL_CONTEXT (OMP_CLAUSE_REDUCTION_PLACEHOLDER (clause));
1669 DECL_CONTEXT (OMP_CLAUSE_REDUCTION_PLACEHOLDER (clause))
1670 = info->context;
1671 walk_body (convert_local_reference_stmt,
1672 convert_local_reference_op, info,
1673 &OMP_CLAUSE_REDUCTION_GIMPLE_INIT (clause));
1674 walk_body (convert_local_reference_stmt,
1675 convert_local_reference_op, info,
1676 &OMP_CLAUSE_REDUCTION_GIMPLE_MERGE (clause));
1677 DECL_CONTEXT (OMP_CLAUSE_REDUCTION_PLACEHOLDER (clause))
1678 = old_context;
1680 break;
1682 case OMP_CLAUSE_LASTPRIVATE:
1683 walk_body (convert_local_reference_stmt,
1684 convert_local_reference_op, info,
1685 &OMP_CLAUSE_LASTPRIVATE_GIMPLE_SEQ (clause));
1686 break;
1688 default:
1689 break;
1692 return need_frame;
1696 /* Called via walk_function+walk_gimple_stmt, rewrite all references to VAR
1697 and PARM_DECLs that were referenced by inner nested functions.
1698 The rewrite will be a structure reference to the local frame variable. */
1700 static tree
1701 convert_local_reference_stmt (gimple_stmt_iterator *gsi, bool *handled_ops_p,
1702 struct walk_stmt_info *wi)
1704 struct nesting_info *info = (struct nesting_info *) wi->info;
1705 tree save_local_var_chain;
1706 bitmap save_suppress;
1707 gimple stmt = gsi_stmt (*gsi);
1709 switch (gimple_code (stmt))
1711 case GIMPLE_OMP_PARALLEL:
1712 case GIMPLE_OMP_TASK:
1713 save_suppress = info->suppress_expansion;
1714 if (convert_local_omp_clauses (gimple_omp_taskreg_clauses_ptr (stmt),
1715 wi))
1717 tree c;
1718 (void) get_frame_type (info);
1719 c = build_omp_clause (gimple_location (stmt),
1720 OMP_CLAUSE_SHARED);
1721 OMP_CLAUSE_DECL (c) = info->frame_decl;
1722 OMP_CLAUSE_CHAIN (c) = gimple_omp_taskreg_clauses (stmt);
1723 gimple_omp_taskreg_set_clauses (stmt, c);
1726 save_local_var_chain = info->new_local_var_chain;
1727 info->new_local_var_chain = NULL;
1729 walk_body (convert_local_reference_stmt, convert_local_reference_op, info,
1730 gimple_omp_body_ptr (stmt));
1732 if (info->new_local_var_chain)
1733 declare_vars (info->new_local_var_chain,
1734 gimple_seq_first_stmt (gimple_omp_body (stmt)), false);
1735 info->new_local_var_chain = save_local_var_chain;
1736 info->suppress_expansion = save_suppress;
1737 break;
1739 case GIMPLE_OMP_FOR:
1740 save_suppress = info->suppress_expansion;
1741 convert_local_omp_clauses (gimple_omp_for_clauses_ptr (stmt), wi);
1742 walk_gimple_omp_for (stmt, convert_local_reference_stmt,
1743 convert_local_reference_op, info);
1744 walk_body (convert_local_reference_stmt, convert_local_reference_op,
1745 info, gimple_omp_body_ptr (stmt));
1746 info->suppress_expansion = save_suppress;
1747 break;
1749 case GIMPLE_OMP_SECTIONS:
1750 save_suppress = info->suppress_expansion;
1751 convert_local_omp_clauses (gimple_omp_sections_clauses_ptr (stmt), wi);
1752 walk_body (convert_local_reference_stmt, convert_local_reference_op,
1753 info, gimple_omp_body_ptr (stmt));
1754 info->suppress_expansion = save_suppress;
1755 break;
1757 case GIMPLE_OMP_SINGLE:
1758 save_suppress = info->suppress_expansion;
1759 convert_local_omp_clauses (gimple_omp_single_clauses_ptr (stmt), wi);
1760 walk_body (convert_local_reference_stmt, convert_local_reference_op,
1761 info, gimple_omp_body_ptr (stmt));
1762 info->suppress_expansion = save_suppress;
1763 break;
1765 case GIMPLE_OMP_TARGET:
1766 save_suppress = info->suppress_expansion;
1767 convert_local_omp_clauses (gimple_omp_target_clauses_ptr (stmt), wi);
1768 walk_body (convert_local_reference_stmt, convert_local_reference_op,
1769 info, gimple_omp_body_ptr (stmt));
1770 info->suppress_expansion = save_suppress;
1771 break;
1773 case GIMPLE_OMP_TEAMS:
1774 save_suppress = info->suppress_expansion;
1775 convert_local_omp_clauses (gimple_omp_teams_clauses_ptr (stmt), wi);
1776 walk_body (convert_local_reference_stmt, convert_local_reference_op,
1777 info, gimple_omp_body_ptr (stmt));
1778 info->suppress_expansion = save_suppress;
1779 break;
1781 case GIMPLE_OMP_SECTION:
1782 case GIMPLE_OMP_MASTER:
1783 case GIMPLE_OMP_TASKGROUP:
1784 case GIMPLE_OMP_ORDERED:
1785 walk_body (convert_local_reference_stmt, convert_local_reference_op,
1786 info, gimple_omp_body_ptr (stmt));
1787 break;
1789 case GIMPLE_COND:
1790 wi->val_only = true;
1791 wi->is_lhs = false;
1792 *handled_ops_p = false;
1793 return NULL_TREE;
1795 case GIMPLE_ASSIGN:
1796 if (gimple_clobber_p (stmt))
1798 tree lhs = gimple_assign_lhs (stmt);
1799 if (!use_pointer_in_frame (lhs)
1800 && lookup_field_for_decl (info, lhs, NO_INSERT))
1802 gsi_replace (gsi, gimple_build_nop (), true);
1803 break;
1806 *handled_ops_p = false;
1807 return NULL_TREE;
1809 case GIMPLE_BIND:
1810 for (tree var = gimple_bind_vars (stmt); var; var = DECL_CHAIN (var))
1811 if (TREE_CODE (var) == NAMELIST_DECL)
1813 /* Adjust decls mentioned in NAMELIST_DECL. */
1814 tree decls = NAMELIST_DECL_ASSOCIATED_DECL (var);
1815 tree decl;
1816 unsigned int i;
1818 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (decls), i, decl)
1820 if (TREE_CODE (decl) == VAR_DECL
1821 && (TREE_STATIC (decl) || DECL_EXTERNAL (decl)))
1822 continue;
1823 if (decl_function_context (decl) == info->context
1824 && !use_pointer_in_frame (decl))
1826 tree field = lookup_field_for_decl (info, decl, NO_INSERT);
1827 if (field)
1829 CONSTRUCTOR_ELT (decls, i)->value
1830 = get_local_debug_decl (info, decl, field);
1836 *handled_ops_p = false;
1837 return NULL_TREE;
1839 default:
1840 /* For every other statement that we are not interested in
1841 handling here, let the walker traverse the operands. */
1842 *handled_ops_p = false;
1843 return NULL_TREE;
1846 /* Indicate that we have handled all the operands ourselves. */
1847 *handled_ops_p = true;
1848 return NULL_TREE;
1852 /* Called via walk_function+walk_gimple_stmt, rewrite all GIMPLE_GOTOs
1853 that reference labels from outer functions. The rewrite will be a
1854 call to __builtin_nonlocal_goto. */
1856 static tree
1857 convert_nl_goto_reference (gimple_stmt_iterator *gsi, bool *handled_ops_p,
1858 struct walk_stmt_info *wi)
1860 struct nesting_info *const info = (struct nesting_info *) wi->info, *i;
1861 tree label, new_label, target_context, x, field;
1862 void **slot;
1863 gimple call;
1864 gimple stmt = gsi_stmt (*gsi);
1866 if (gimple_code (stmt) != GIMPLE_GOTO)
1868 *handled_ops_p = false;
1869 return NULL_TREE;
1872 label = gimple_goto_dest (stmt);
1873 if (TREE_CODE (label) != LABEL_DECL)
1875 *handled_ops_p = false;
1876 return NULL_TREE;
1879 target_context = decl_function_context (label);
1880 if (target_context == info->context)
1882 *handled_ops_p = false;
1883 return NULL_TREE;
1886 for (i = info->outer; target_context != i->context; i = i->outer)
1887 continue;
1889 /* The original user label may also be use for a normal goto, therefore
1890 we must create a new label that will actually receive the abnormal
1891 control transfer. This new label will be marked LABEL_NONLOCAL; this
1892 mark will trigger proper behavior in the cfg, as well as cause the
1893 (hairy target-specific) non-local goto receiver code to be generated
1894 when we expand rtl. Enter this association into var_map so that we
1895 can insert the new label into the IL during a second pass. */
1896 slot = pointer_map_insert (i->var_map, label);
1897 if (*slot == NULL)
1899 new_label = create_artificial_label (UNKNOWN_LOCATION);
1900 DECL_NONLOCAL (new_label) = 1;
1901 *slot = new_label;
1903 else
1904 new_label = (tree) *slot;
1906 /* Build: __builtin_nl_goto(new_label, &chain->nl_goto_field). */
1907 field = get_nl_goto_field (i);
1908 x = get_frame_field (info, target_context, field, gsi);
1909 x = build_addr (x, target_context);
1910 x = gsi_gimplify_val (info, x, gsi);
1911 call = gimple_build_call (builtin_decl_implicit (BUILT_IN_NONLOCAL_GOTO),
1912 2, build_addr (new_label, target_context), x);
1913 gsi_replace (gsi, call, false);
1915 /* We have handled all of STMT's operands, no need to keep going. */
1916 *handled_ops_p = true;
1917 return NULL_TREE;
1921 /* Called via walk_function+walk_tree, rewrite all GIMPLE_LABELs whose labels
1922 are referenced via nonlocal goto from a nested function. The rewrite
1923 will involve installing a newly generated DECL_NONLOCAL label, and
1924 (potentially) a branch around the rtl gunk that is assumed to be
1925 attached to such a label. */
1927 static tree
1928 convert_nl_goto_receiver (gimple_stmt_iterator *gsi, bool *handled_ops_p,
1929 struct walk_stmt_info *wi)
1931 struct nesting_info *const info = (struct nesting_info *) wi->info;
1932 tree label, new_label;
1933 gimple_stmt_iterator tmp_gsi;
1934 void **slot;
1935 gimple stmt = gsi_stmt (*gsi);
1937 if (gimple_code (stmt) != GIMPLE_LABEL)
1939 *handled_ops_p = false;
1940 return NULL_TREE;
1943 label = gimple_label_label (stmt);
1945 slot = pointer_map_contains (info->var_map, label);
1946 if (!slot)
1948 *handled_ops_p = false;
1949 return NULL_TREE;
1952 /* If there's any possibility that the previous statement falls through,
1953 then we must branch around the new non-local label. */
1954 tmp_gsi = wi->gsi;
1955 gsi_prev (&tmp_gsi);
1956 if (gsi_end_p (tmp_gsi) || gimple_stmt_may_fallthru (gsi_stmt (tmp_gsi)))
1958 gimple stmt = gimple_build_goto (label);
1959 gsi_insert_before (gsi, stmt, GSI_SAME_STMT);
1962 new_label = (tree) *slot;
1963 stmt = gimple_build_label (new_label);
1964 gsi_insert_before (gsi, stmt, GSI_SAME_STMT);
1966 *handled_ops_p = true;
1967 return NULL_TREE;
1971 /* Called via walk_function+walk_stmt, rewrite all references to addresses
1972 of nested functions that require the use of trampolines. The rewrite
1973 will involve a reference a trampoline generated for the occasion. */
1975 static tree
1976 convert_tramp_reference_op (tree *tp, int *walk_subtrees, void *data)
1978 struct walk_stmt_info *wi = (struct walk_stmt_info *) data;
1979 struct nesting_info *const info = (struct nesting_info *) wi->info, *i;
1980 tree t = *tp, decl, target_context, x, builtin;
1981 gimple call;
1983 *walk_subtrees = 0;
1984 switch (TREE_CODE (t))
1986 case ADDR_EXPR:
1987 /* Build
1988 T.1 = &CHAIN->tramp;
1989 T.2 = __builtin_adjust_trampoline (T.1);
1990 T.3 = (func_type)T.2;
1993 decl = TREE_OPERAND (t, 0);
1994 if (TREE_CODE (decl) != FUNCTION_DECL)
1995 break;
1997 /* Only need to process nested functions. */
1998 target_context = decl_function_context (decl);
1999 if (!target_context)
2000 break;
2002 /* If the nested function doesn't use a static chain, then
2003 it doesn't need a trampoline. */
2004 if (!DECL_STATIC_CHAIN (decl))
2005 break;
2007 /* If we don't want a trampoline, then don't build one. */
2008 if (TREE_NO_TRAMPOLINE (t))
2009 break;
2011 /* Lookup the immediate parent of the callee, as that's where
2012 we need to insert the trampoline. */
2013 for (i = info; i->context != target_context; i = i->outer)
2014 continue;
2015 x = lookup_tramp_for_decl (i, decl, INSERT);
2017 /* Compute the address of the field holding the trampoline. */
2018 x = get_frame_field (info, target_context, x, &wi->gsi);
2019 x = build_addr (x, target_context);
2020 x = gsi_gimplify_val (info, x, &wi->gsi);
2022 /* Do machine-specific ugliness. Normally this will involve
2023 computing extra alignment, but it can really be anything. */
2024 builtin = builtin_decl_implicit (BUILT_IN_ADJUST_TRAMPOLINE);
2025 call = gimple_build_call (builtin, 1, x);
2026 x = init_tmp_var_with_call (info, &wi->gsi, call);
2028 /* Cast back to the proper function type. */
2029 x = build1 (NOP_EXPR, TREE_TYPE (t), x);
2030 x = init_tmp_var (info, x, &wi->gsi);
2032 *tp = x;
2033 break;
2035 default:
2036 if (!IS_TYPE_OR_DECL_P (t))
2037 *walk_subtrees = 1;
2038 break;
2041 return NULL_TREE;
2045 /* Called via walk_function+walk_gimple_stmt, rewrite all references
2046 to addresses of nested functions that require the use of
2047 trampolines. The rewrite will involve a reference a trampoline
2048 generated for the occasion. */
2050 static tree
2051 convert_tramp_reference_stmt (gimple_stmt_iterator *gsi, bool *handled_ops_p,
2052 struct walk_stmt_info *wi)
2054 struct nesting_info *info = (struct nesting_info *) wi->info;
2055 gimple stmt = gsi_stmt (*gsi);
2057 switch (gimple_code (stmt))
2059 case GIMPLE_CALL:
2061 /* Only walk call arguments, lest we generate trampolines for
2062 direct calls. */
2063 unsigned long i, nargs = gimple_call_num_args (stmt);
2064 for (i = 0; i < nargs; i++)
2065 walk_tree (gimple_call_arg_ptr (stmt, i), convert_tramp_reference_op,
2066 wi, NULL);
2067 break;
2070 case GIMPLE_OMP_PARALLEL:
2071 case GIMPLE_OMP_TASK:
2073 tree save_local_var_chain;
2074 walk_gimple_op (stmt, convert_tramp_reference_op, wi);
2075 save_local_var_chain = info->new_local_var_chain;
2076 info->new_local_var_chain = NULL;
2077 walk_body (convert_tramp_reference_stmt, convert_tramp_reference_op,
2078 info, gimple_omp_body_ptr (stmt));
2079 if (info->new_local_var_chain)
2080 declare_vars (info->new_local_var_chain,
2081 gimple_seq_first_stmt (gimple_omp_body (stmt)),
2082 false);
2083 info->new_local_var_chain = save_local_var_chain;
2085 break;
2087 default:
2088 *handled_ops_p = false;
2089 return NULL_TREE;
2090 break;
2093 *handled_ops_p = true;
2094 return NULL_TREE;
2099 /* Called via walk_function+walk_gimple_stmt, rewrite all GIMPLE_CALLs
2100 that reference nested functions to make sure that the static chain
2101 is set up properly for the call. */
2103 static tree
2104 convert_gimple_call (gimple_stmt_iterator *gsi, bool *handled_ops_p,
2105 struct walk_stmt_info *wi)
2107 struct nesting_info *const info = (struct nesting_info *) wi->info;
2108 tree decl, target_context;
2109 char save_static_chain_added;
2110 int i;
2111 gimple stmt = gsi_stmt (*gsi);
2113 switch (gimple_code (stmt))
2115 case GIMPLE_CALL:
2116 if (gimple_call_chain (stmt))
2117 break;
2118 decl = gimple_call_fndecl (stmt);
2119 if (!decl)
2120 break;
2121 target_context = decl_function_context (decl);
2122 if (target_context && DECL_STATIC_CHAIN (decl))
2124 gimple_call_set_chain (stmt, get_static_chain (info, target_context,
2125 &wi->gsi));
2126 info->static_chain_added |= (1 << (info->context != target_context));
2128 break;
2130 case GIMPLE_OMP_PARALLEL:
2131 case GIMPLE_OMP_TASK:
2132 save_static_chain_added = info->static_chain_added;
2133 info->static_chain_added = 0;
2134 walk_body (convert_gimple_call, NULL, info, gimple_omp_body_ptr (stmt));
2135 for (i = 0; i < 2; i++)
2137 tree c, decl;
2138 if ((info->static_chain_added & (1 << i)) == 0)
2139 continue;
2140 decl = i ? get_chain_decl (info) : info->frame_decl;
2141 /* Don't add CHAIN.* or FRAME.* twice. */
2142 for (c = gimple_omp_taskreg_clauses (stmt);
2144 c = OMP_CLAUSE_CHAIN (c))
2145 if ((OMP_CLAUSE_CODE (c) == OMP_CLAUSE_FIRSTPRIVATE
2146 || OMP_CLAUSE_CODE (c) == OMP_CLAUSE_SHARED)
2147 && OMP_CLAUSE_DECL (c) == decl)
2148 break;
2149 if (c == NULL)
2151 c = build_omp_clause (gimple_location (stmt),
2152 i ? OMP_CLAUSE_FIRSTPRIVATE
2153 : OMP_CLAUSE_SHARED);
2154 OMP_CLAUSE_DECL (c) = decl;
2155 OMP_CLAUSE_CHAIN (c) = gimple_omp_taskreg_clauses (stmt);
2156 gimple_omp_taskreg_set_clauses (stmt, c);
2159 info->static_chain_added |= save_static_chain_added;
2160 break;
2162 case GIMPLE_OMP_FOR:
2163 walk_body (convert_gimple_call, NULL, info,
2164 gimple_omp_for_pre_body_ptr (stmt));
2165 /* FALLTHRU */
2166 case GIMPLE_OMP_SECTIONS:
2167 case GIMPLE_OMP_SECTION:
2168 case GIMPLE_OMP_SINGLE:
2169 case GIMPLE_OMP_TARGET:
2170 case GIMPLE_OMP_TEAMS:
2171 case GIMPLE_OMP_MASTER:
2172 case GIMPLE_OMP_TASKGROUP:
2173 case GIMPLE_OMP_ORDERED:
2174 case GIMPLE_OMP_CRITICAL:
2175 walk_body (convert_gimple_call, NULL, info, gimple_omp_body_ptr (stmt));
2176 break;
2178 default:
2179 /* Keep looking for other operands. */
2180 *handled_ops_p = false;
2181 return NULL_TREE;
2184 *handled_ops_p = true;
2185 return NULL_TREE;
2188 /* Walk the nesting tree starting with ROOT. Convert all trampolines and
2189 call expressions. At the same time, determine if a nested function
2190 actually uses its static chain; if not, remember that. */
2192 static void
2193 convert_all_function_calls (struct nesting_info *root)
2195 unsigned int chain_count = 0, old_chain_count, iter_count;
2196 struct nesting_info *n;
2198 /* First, optimistically clear static_chain for all decls that haven't
2199 used the static chain already for variable access. */
2200 FOR_EACH_NEST_INFO (n, root)
2202 tree decl = n->context;
2203 if (!n->outer || (!n->chain_decl && !n->chain_field))
2205 DECL_STATIC_CHAIN (decl) = 0;
2206 if (dump_file && (dump_flags & TDF_DETAILS))
2207 fprintf (dump_file, "Guessing no static-chain for %s\n",
2208 lang_hooks.decl_printable_name (decl, 2));
2210 else
2211 DECL_STATIC_CHAIN (decl) = 1;
2212 chain_count += DECL_STATIC_CHAIN (decl);
2215 /* Walk the functions and perform transformations. Note that these
2216 transformations can induce new uses of the static chain, which in turn
2217 require re-examining all users of the decl. */
2218 /* ??? It would make sense to try to use the call graph to speed this up,
2219 but the call graph hasn't really been built yet. Even if it did, we
2220 would still need to iterate in this loop since address-of references
2221 wouldn't show up in the callgraph anyway. */
2222 iter_count = 0;
2225 old_chain_count = chain_count;
2226 chain_count = 0;
2227 iter_count++;
2229 if (dump_file && (dump_flags & TDF_DETAILS))
2230 fputc ('\n', dump_file);
2232 FOR_EACH_NEST_INFO (n, root)
2234 tree decl = n->context;
2235 walk_function (convert_tramp_reference_stmt,
2236 convert_tramp_reference_op, n);
2237 walk_function (convert_gimple_call, NULL, n);
2238 chain_count += DECL_STATIC_CHAIN (decl);
2241 while (chain_count != old_chain_count);
2243 if (dump_file && (dump_flags & TDF_DETAILS))
2244 fprintf (dump_file, "convert_all_function_calls iterations: %u\n\n",
2245 iter_count);
2248 struct nesting_copy_body_data
2250 copy_body_data cb;
2251 struct nesting_info *root;
2254 /* A helper subroutine for debug_var_chain type remapping. */
2256 static tree
2257 nesting_copy_decl (tree decl, copy_body_data *id)
2259 struct nesting_copy_body_data *nid = (struct nesting_copy_body_data *) id;
2260 void **slot = pointer_map_contains (nid->root->var_map, decl);
2262 if (slot)
2263 return (tree) *slot;
2265 if (TREE_CODE (decl) == TYPE_DECL && DECL_ORIGINAL_TYPE (decl))
2267 tree new_decl = copy_decl_no_change (decl, id);
2268 DECL_ORIGINAL_TYPE (new_decl)
2269 = remap_type (DECL_ORIGINAL_TYPE (decl), id);
2270 return new_decl;
2273 if (TREE_CODE (decl) == VAR_DECL
2274 || TREE_CODE (decl) == PARM_DECL
2275 || TREE_CODE (decl) == RESULT_DECL)
2276 return decl;
2278 return copy_decl_no_change (decl, id);
2281 /* A helper function for remap_vla_decls. See if *TP contains
2282 some remapped variables. */
2284 static tree
2285 contains_remapped_vars (tree *tp, int *walk_subtrees, void *data)
2287 struct nesting_info *root = (struct nesting_info *) data;
2288 tree t = *tp;
2289 void **slot;
2291 if (DECL_P (t))
2293 *walk_subtrees = 0;
2294 slot = pointer_map_contains (root->var_map, t);
2296 if (slot)
2297 return (tree) *slot;
2299 return NULL;
2302 /* Remap VLA decls in BLOCK and subblocks if remapped variables are
2303 involved. */
2305 static void
2306 remap_vla_decls (tree block, struct nesting_info *root)
2308 tree var, subblock, val, type;
2309 struct nesting_copy_body_data id;
2311 for (subblock = BLOCK_SUBBLOCKS (block);
2312 subblock;
2313 subblock = BLOCK_CHAIN (subblock))
2314 remap_vla_decls (subblock, root);
2316 for (var = BLOCK_VARS (block); var; var = DECL_CHAIN (var))
2317 if (TREE_CODE (var) == VAR_DECL && DECL_HAS_VALUE_EXPR_P (var))
2319 val = DECL_VALUE_EXPR (var);
2320 type = TREE_TYPE (var);
2322 if (!(TREE_CODE (val) == INDIRECT_REF
2323 && TREE_CODE (TREE_OPERAND (val, 0)) == VAR_DECL
2324 && variably_modified_type_p (type, NULL)))
2325 continue;
2327 if (pointer_map_contains (root->var_map, TREE_OPERAND (val, 0))
2328 || walk_tree (&type, contains_remapped_vars, root, NULL))
2329 break;
2332 if (var == NULL_TREE)
2333 return;
2335 memset (&id, 0, sizeof (id));
2336 id.cb.copy_decl = nesting_copy_decl;
2337 id.cb.decl_map = pointer_map_create ();
2338 id.root = root;
2340 for (; var; var = DECL_CHAIN (var))
2341 if (TREE_CODE (var) == VAR_DECL && DECL_HAS_VALUE_EXPR_P (var))
2343 struct nesting_info *i;
2344 tree newt, context;
2345 void **slot;
2347 val = DECL_VALUE_EXPR (var);
2348 type = TREE_TYPE (var);
2350 if (!(TREE_CODE (val) == INDIRECT_REF
2351 && TREE_CODE (TREE_OPERAND (val, 0)) == VAR_DECL
2352 && variably_modified_type_p (type, NULL)))
2353 continue;
2355 slot = pointer_map_contains (root->var_map, TREE_OPERAND (val, 0));
2356 if (!slot && !walk_tree (&type, contains_remapped_vars, root, NULL))
2357 continue;
2359 context = decl_function_context (var);
2360 for (i = root; i; i = i->outer)
2361 if (i->context == context)
2362 break;
2364 if (i == NULL)
2365 continue;
2367 /* Fully expand value expressions. This avoids having debug variables
2368 only referenced from them and that can be swept during GC. */
2369 if (slot)
2371 tree t = (tree) *slot;
2372 gcc_assert (DECL_P (t) && DECL_HAS_VALUE_EXPR_P (t));
2373 val = build1 (INDIRECT_REF, TREE_TYPE (val), DECL_VALUE_EXPR (t));
2376 id.cb.src_fn = i->context;
2377 id.cb.dst_fn = i->context;
2378 id.cb.src_cfun = DECL_STRUCT_FUNCTION (root->context);
2380 TREE_TYPE (var) = newt = remap_type (type, &id.cb);
2381 while (POINTER_TYPE_P (newt) && !TYPE_NAME (newt))
2383 newt = TREE_TYPE (newt);
2384 type = TREE_TYPE (type);
2386 if (TYPE_NAME (newt)
2387 && TREE_CODE (TYPE_NAME (newt)) == TYPE_DECL
2388 && DECL_ORIGINAL_TYPE (TYPE_NAME (newt))
2389 && newt != type
2390 && TYPE_NAME (newt) == TYPE_NAME (type))
2391 TYPE_NAME (newt) = remap_decl (TYPE_NAME (newt), &id.cb);
2393 walk_tree (&val, copy_tree_body_r, &id.cb, NULL);
2394 if (val != DECL_VALUE_EXPR (var))
2395 SET_DECL_VALUE_EXPR (var, val);
2398 pointer_map_destroy (id.cb.decl_map);
2401 /* Fold the MEM_REF *E. */
2402 static bool
2403 fold_mem_refs (const void *e, void *data ATTRIBUTE_UNUSED)
2405 tree *ref_p = CONST_CAST2 (tree *, const tree *, (const tree *)e);
2406 *ref_p = fold (*ref_p);
2407 return true;
2410 /* Do "everything else" to clean up or complete state collected by the
2411 various walking passes -- lay out the types and decls, generate code
2412 to initialize the frame decl, store critical expressions in the
2413 struct function for rtl to find. */
2415 static void
2416 finalize_nesting_tree_1 (struct nesting_info *root)
2418 gimple_seq stmt_list;
2419 gimple stmt;
2420 tree context = root->context;
2421 struct function *sf;
2423 stmt_list = NULL;
2425 /* If we created a non-local frame type or decl, we need to lay them
2426 out at this time. */
2427 if (root->frame_type)
2429 /* In some cases the frame type will trigger the -Wpadded warning.
2430 This is not helpful; suppress it. */
2431 int save_warn_padded = warn_padded;
2432 tree *adjust;
2434 warn_padded = 0;
2435 layout_type (root->frame_type);
2436 warn_padded = save_warn_padded;
2437 layout_decl (root->frame_decl, 0);
2439 /* Remove root->frame_decl from root->new_local_var_chain, so
2440 that we can declare it also in the lexical blocks, which
2441 helps ensure virtual regs that end up appearing in its RTL
2442 expression get substituted in instantiate_virtual_regs(). */
2443 for (adjust = &root->new_local_var_chain;
2444 *adjust != root->frame_decl;
2445 adjust = &DECL_CHAIN (*adjust))
2446 gcc_assert (DECL_CHAIN (*adjust));
2447 *adjust = DECL_CHAIN (*adjust);
2449 DECL_CHAIN (root->frame_decl) = NULL_TREE;
2450 declare_vars (root->frame_decl,
2451 gimple_seq_first_stmt (gimple_body (context)), true);
2454 /* If any parameters were referenced non-locally, then we need to
2455 insert a copy. Likewise, if any variables were referenced by
2456 pointer, we need to initialize the address. */
2457 if (root->any_parm_remapped)
2459 tree p;
2460 for (p = DECL_ARGUMENTS (context); p ; p = DECL_CHAIN (p))
2462 tree field, x, y;
2464 field = lookup_field_for_decl (root, p, NO_INSERT);
2465 if (!field)
2466 continue;
2468 if (use_pointer_in_frame (p))
2469 x = build_addr (p, context);
2470 else
2471 x = p;
2473 y = build3 (COMPONENT_REF, TREE_TYPE (field),
2474 root->frame_decl, field, NULL_TREE);
2475 stmt = gimple_build_assign (y, x);
2476 gimple_seq_add_stmt (&stmt_list, stmt);
2477 /* If the assignment is from a non-register the stmt is
2478 not valid gimple. Make it so by using a temporary instead. */
2479 if (!is_gimple_reg (x)
2480 && is_gimple_reg_type (TREE_TYPE (x)))
2482 gimple_stmt_iterator gsi = gsi_last (stmt_list);
2483 x = init_tmp_var (root, x, &gsi);
2484 gimple_assign_set_rhs1 (stmt, x);
2489 /* If a chain_field was created, then it needs to be initialized
2490 from chain_decl. */
2491 if (root->chain_field)
2493 tree x = build3 (COMPONENT_REF, TREE_TYPE (root->chain_field),
2494 root->frame_decl, root->chain_field, NULL_TREE);
2495 stmt = gimple_build_assign (x, get_chain_decl (root));
2496 gimple_seq_add_stmt (&stmt_list, stmt);
2499 /* If trampolines were created, then we need to initialize them. */
2500 if (root->any_tramp_created)
2502 struct nesting_info *i;
2503 for (i = root->inner; i ; i = i->next)
2505 tree arg1, arg2, arg3, x, field;
2507 field = lookup_tramp_for_decl (root, i->context, NO_INSERT);
2508 if (!field)
2509 continue;
2511 gcc_assert (DECL_STATIC_CHAIN (i->context));
2512 arg3 = build_addr (root->frame_decl, context);
2514 arg2 = build_addr (i->context, context);
2516 x = build3 (COMPONENT_REF, TREE_TYPE (field),
2517 root->frame_decl, field, NULL_TREE);
2518 arg1 = build_addr (x, context);
2520 x = builtin_decl_implicit (BUILT_IN_INIT_TRAMPOLINE);
2521 stmt = gimple_build_call (x, 3, arg1, arg2, arg3);
2522 gimple_seq_add_stmt (&stmt_list, stmt);
2526 /* If we created initialization statements, insert them. */
2527 if (stmt_list)
2529 gimple bind;
2530 annotate_all_with_location (stmt_list, DECL_SOURCE_LOCATION (context));
2531 bind = gimple_seq_first_stmt (gimple_body (context));
2532 gimple_seq_add_seq (&stmt_list, gimple_bind_body (bind));
2533 gimple_bind_set_body (bind, stmt_list);
2536 /* If a chain_decl was created, then it needs to be registered with
2537 struct function so that it gets initialized from the static chain
2538 register at the beginning of the function. */
2539 sf = DECL_STRUCT_FUNCTION (root->context);
2540 sf->static_chain_decl = root->chain_decl;
2542 /* Similarly for the non-local goto save area. */
2543 if (root->nl_goto_field)
2545 sf->nonlocal_goto_save_area
2546 = get_frame_field (root, context, root->nl_goto_field, NULL);
2547 sf->has_nonlocal_label = 1;
2550 /* Make sure all new local variables get inserted into the
2551 proper BIND_EXPR. */
2552 if (root->new_local_var_chain)
2553 declare_vars (root->new_local_var_chain,
2554 gimple_seq_first_stmt (gimple_body (root->context)),
2555 false);
2557 if (root->debug_var_chain)
2559 tree debug_var;
2560 gimple scope;
2562 remap_vla_decls (DECL_INITIAL (root->context), root);
2564 for (debug_var = root->debug_var_chain; debug_var;
2565 debug_var = DECL_CHAIN (debug_var))
2566 if (variably_modified_type_p (TREE_TYPE (debug_var), NULL))
2567 break;
2569 /* If there are any debug decls with variable length types,
2570 remap those types using other debug_var_chain variables. */
2571 if (debug_var)
2573 struct nesting_copy_body_data id;
2575 memset (&id, 0, sizeof (id));
2576 id.cb.copy_decl = nesting_copy_decl;
2577 id.cb.decl_map = pointer_map_create ();
2578 id.root = root;
2580 for (; debug_var; debug_var = DECL_CHAIN (debug_var))
2581 if (variably_modified_type_p (TREE_TYPE (debug_var), NULL))
2583 tree type = TREE_TYPE (debug_var);
2584 tree newt, t = type;
2585 struct nesting_info *i;
2587 for (i = root; i; i = i->outer)
2588 if (variably_modified_type_p (type, i->context))
2589 break;
2591 if (i == NULL)
2592 continue;
2594 id.cb.src_fn = i->context;
2595 id.cb.dst_fn = i->context;
2596 id.cb.src_cfun = DECL_STRUCT_FUNCTION (root->context);
2598 TREE_TYPE (debug_var) = newt = remap_type (type, &id.cb);
2599 while (POINTER_TYPE_P (newt) && !TYPE_NAME (newt))
2601 newt = TREE_TYPE (newt);
2602 t = TREE_TYPE (t);
2604 if (TYPE_NAME (newt)
2605 && TREE_CODE (TYPE_NAME (newt)) == TYPE_DECL
2606 && DECL_ORIGINAL_TYPE (TYPE_NAME (newt))
2607 && newt != t
2608 && TYPE_NAME (newt) == TYPE_NAME (t))
2609 TYPE_NAME (newt) = remap_decl (TYPE_NAME (newt), &id.cb);
2612 pointer_map_destroy (id.cb.decl_map);
2615 scope = gimple_seq_first_stmt (gimple_body (root->context));
2616 if (gimple_bind_block (scope))
2617 declare_vars (root->debug_var_chain, scope, true);
2618 else
2619 BLOCK_VARS (DECL_INITIAL (root->context))
2620 = chainon (BLOCK_VARS (DECL_INITIAL (root->context)),
2621 root->debug_var_chain);
2624 /* Fold the rewritten MEM_REF trees. */
2625 pointer_set_traverse (root->mem_refs, fold_mem_refs, NULL);
2627 /* Dump the translated tree function. */
2628 if (dump_file)
2630 fputs ("\n\n", dump_file);
2631 dump_function_to_file (root->context, dump_file, dump_flags);
2635 static void
2636 finalize_nesting_tree (struct nesting_info *root)
2638 struct nesting_info *n;
2639 FOR_EACH_NEST_INFO (n, root)
2640 finalize_nesting_tree_1 (n);
2643 /* Unnest the nodes and pass them to cgraph. */
2645 static void
2646 unnest_nesting_tree_1 (struct nesting_info *root)
2648 struct cgraph_node *node = cgraph_get_node (root->context);
2650 /* For nested functions update the cgraph to reflect unnesting.
2651 We also delay finalizing of these functions up to this point. */
2652 if (node->origin)
2654 cgraph_unnest_node (node);
2655 cgraph_finalize_function (root->context, true);
2659 static void
2660 unnest_nesting_tree (struct nesting_info *root)
2662 struct nesting_info *n;
2663 FOR_EACH_NEST_INFO (n, root)
2664 unnest_nesting_tree_1 (n);
2667 /* Free the data structures allocated during this pass. */
2669 static void
2670 free_nesting_tree (struct nesting_info *root)
2672 struct nesting_info *node, *next;
2674 node = iter_nestinfo_start (root);
2677 next = iter_nestinfo_next (node);
2678 pointer_map_destroy (node->var_map);
2679 pointer_map_destroy (node->field_map);
2680 pointer_set_destroy (node->mem_refs);
2681 free (node);
2682 node = next;
2684 while (node);
2687 /* Gimplify a function and all its nested functions. */
2688 static void
2689 gimplify_all_functions (struct cgraph_node *root)
2691 struct cgraph_node *iter;
2692 if (!gimple_body (root->decl))
2693 gimplify_function_tree (root->decl);
2694 for (iter = root->nested; iter; iter = iter->next_nested)
2695 gimplify_all_functions (iter);
2698 /* Main entry point for this pass. Process FNDECL and all of its nested
2699 subroutines and turn them into something less tightly bound. */
2701 void
2702 lower_nested_functions (tree fndecl)
2704 struct cgraph_node *cgn;
2705 struct nesting_info *root;
2707 /* If there are no nested functions, there's nothing to do. */
2708 cgn = cgraph_get_node (fndecl);
2709 if (!cgn->nested)
2710 return;
2712 gimplify_all_functions (cgn);
2714 dump_file = dump_begin (TDI_nested, &dump_flags);
2715 if (dump_file)
2716 fprintf (dump_file, "\n;; Function %s\n\n",
2717 lang_hooks.decl_printable_name (fndecl, 2));
2719 bitmap_obstack_initialize (&nesting_info_bitmap_obstack);
2720 root = create_nesting_tree (cgn);
2722 walk_all_functions (convert_nonlocal_reference_stmt,
2723 convert_nonlocal_reference_op,
2724 root);
2725 walk_all_functions (convert_local_reference_stmt,
2726 convert_local_reference_op,
2727 root);
2728 walk_all_functions (convert_nl_goto_reference, NULL, root);
2729 walk_all_functions (convert_nl_goto_receiver, NULL, root);
2731 convert_all_function_calls (root);
2732 finalize_nesting_tree (root);
2733 unnest_nesting_tree (root);
2735 free_nesting_tree (root);
2736 bitmap_obstack_release (&nesting_info_bitmap_obstack);
2738 if (dump_file)
2740 dump_end (TDI_nested, dump_file);
2741 dump_file = NULL;
2745 #include "gt-tree-nested.h"