1 /* Nested function decomposition for trees.
2 Copyright (C) 2004 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 2, or (at your option)
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 COPYING. If not, write to
18 the Free Software Foundation, 59 Temple Place - Suite 330,
19 Boston, MA 02111-1307, USA. */
23 #include "coretypes.h"
29 #include "tree-dump.h"
30 #include "tree-inline.h"
31 #include "tree-gimple.h"
32 #include "tree-iterator.h"
33 #include "tree-flow.h"
36 #include "langhooks.h"
40 /* The object of this pass is to lower the representation of a set of nested
41 functions in order to expose all of the gory details of the various
42 nonlocal references. We want to do this sooner rather than later, in
43 order to give us more freedom in emitting all of the functions in question.
45 Back in olden times, when gcc was young, we developed an insanely
46 complicated scheme whereby variables which were referenced nonlocally
47 were forced to live in the stack of the declaring function, and then
48 the nested functions magically discovered where these variables were
49 placed. In order for this scheme to function properly, it required
50 that the outer function be partially expanded, then we switch to
51 compiling the inner function, and once done with those we switch back
52 to compiling the outer function. Such delicate ordering requirements
53 makes it difficult to do whole translation unit optimizations
54 involving such functions.
56 The implementation here is much more direct. Everything that can be
57 referenced by an inner function is a member of an explicitly created
58 structure herein called the "nonlocal frame struct". The incomming
59 static chain for a nested function is a pointer to this struct in
60 the parent. In this way, we settle on known offsets from a known
61 base, and so are decoupled from the logic that places objects in the
62 function's stack frame. More importantly, we don't have to wait for
63 that to happen -- since the compilation of the inner function is no
64 longer tied to a real stack frame, the nonlocal frame struct can be
65 allocated anywhere. Which means that the outer function is now
68 Theory of operation here is very simple. Iterate over all the
69 statements in all the functions (depth first) several times,
70 allocating structures and fields on demand. In general we want to
71 examine inner functions first, so that we can avoid making changes
72 to outer functions which are unnecessary.
74 The order of the passes matters a bit, in that later passes will be
75 skipped if it is discovered that the functions don't actually interact
76 at all. That is, they're nested in the lexical sense but could have
77 been written as independent functions without change. */
88 struct nesting_info
*outer
;
89 struct nesting_info
*inner
;
90 struct nesting_info
*next
;
94 tree new_local_var_chain
;
101 bool any_parm_remapped
;
102 bool any_tramp_created
;
106 /* Hashing and equality functions for nesting_info->var_map. */
109 var_map_hash (const void *x
)
111 const struct var_map_elt
*a
= x
;
112 return htab_hash_pointer (a
->old
);
116 var_map_eq (const void *x
, const void *y
)
118 const struct var_map_elt
*a
= x
;
119 const struct var_map_elt
*b
= y
;
120 return a
->old
== b
->old
;
123 /* We're working in so many different function contexts simultaneously,
124 that create_tmp_var is dangerous. Prevent mishap. */
125 #define create_tmp_var cant_use_create_tmp_var_here_dummy
127 /* Like create_tmp_var, except record the variable for registration at
128 the given nesting level. */
131 create_tmp_var_for (struct nesting_info
*info
, tree type
, const char *prefix
)
135 #if defined ENABLE_CHECKING
136 /* If the type is an array or a type which must be created by the
137 frontend, something is wrong. Note that we explicitly allow
138 incomplete types here, since we create them ourselves here. */
139 if (TREE_CODE (type
) == ARRAY_TYPE
|| TREE_ADDRESSABLE (type
))
141 if (TYPE_SIZE_UNIT (type
)
142 && TREE_CODE (TYPE_SIZE_UNIT (type
)) != INTEGER_CST
)
146 tmp_var
= create_tmp_var_raw (type
, prefix
);
147 DECL_CONTEXT (tmp_var
) = info
->context
;
148 TREE_CHAIN (tmp_var
) = info
->new_local_var_chain
;
149 info
->new_local_var_chain
= tmp_var
;
154 /* Take the address of EXP. Mark it for addressability as necessary. */
157 build_addr (tree exp
)
160 while (TREE_CODE (base
) == COMPONENT_REF
|| TREE_CODE (base
) == ARRAY_REF
)
161 base
= TREE_OPERAND (base
, 0);
163 TREE_ADDRESSABLE (base
) = 1;
165 return build1 (ADDR_EXPR
, build_pointer_type (TREE_TYPE (exp
)), exp
);
168 /* Insert FIELD into TYPE, sorted by alignment requirements. */
171 insert_field_into_struct (tree type
, tree field
)
175 DECL_CONTEXT (field
) = type
;
177 for (p
= &TYPE_FIELDS (type
); *p
; p
= &TREE_CHAIN (*p
))
178 if (DECL_ALIGN (field
) >= DECL_ALIGN (*p
))
181 TREE_CHAIN (field
) = *p
;
185 /* Build or return the RECORD_TYPE that describes the frame state that is
186 shared between INFO->CONTEXT and its nested functions. This record will
187 not be complete until finalize_nesting_tree; up until that point we'll
188 be adding fields as necessary.
190 We also build the DECL that represents this frame in the function. */
193 get_frame_type (struct nesting_info
*info
)
195 tree type
= info
->frame_type
;
200 type
= make_node (RECORD_TYPE
);
202 name
= concat ("FRAME.",
203 IDENTIFIER_POINTER (DECL_NAME (info
->context
)),
205 TYPE_NAME (type
) = get_identifier (name
);
208 info
->frame_type
= type
;
209 info
->frame_decl
= create_tmp_var_for (info
, type
, "FRAME");
214 /* Return true if DECL should be referenced by pointer in the non-local
218 use_pointer_in_frame (tree decl
)
220 if (TREE_CODE (decl
) == PARM_DECL
)
222 /* It's illegal to copy TREE_ADDRESSABLE, impossible to copy variable
223 sized decls, and inefficient to copy large aggregates. Don't bother
224 moving anything but scalar variables. */
225 return AGGREGATE_TYPE_P (TREE_TYPE (decl
));
229 /* Variable sized types make things "interesting" in the frame. */
230 return DECL_SIZE (decl
) == NULL
|| !TREE_CONSTANT (DECL_SIZE (decl
));
234 /* Given DECL, a non-locally accessed variable, find or create a field
235 in the non-local frame structure for the given nesting context. */
238 lookup_field_for_decl (struct nesting_info
*info
, tree decl
,
239 enum insert_option insert
)
241 struct var_map_elt
*elt
, dummy
;
246 slot
= htab_find_slot (info
->var_map
, &dummy
, insert
);
249 if (insert
== INSERT
)
255 if (!elt
&& insert
== INSERT
)
257 field
= make_node (FIELD_DECL
);
258 DECL_NAME (field
) = DECL_NAME (decl
);
260 if (use_pointer_in_frame (decl
))
262 TREE_TYPE (field
) = build_pointer_type (TREE_TYPE (decl
));
263 DECL_ALIGN (field
) = TYPE_ALIGN (TREE_TYPE (field
));
264 DECL_NONADDRESSABLE_P (field
) = 1;
268 TREE_TYPE (field
) = TREE_TYPE (decl
);
269 DECL_SOURCE_LOCATION (field
) = DECL_SOURCE_LOCATION (decl
);
270 DECL_ALIGN (field
) = DECL_ALIGN (decl
);
271 DECL_USER_ALIGN (field
) = DECL_USER_ALIGN (decl
);
272 TREE_ADDRESSABLE (field
) = TREE_ADDRESSABLE (decl
);
273 DECL_NONADDRESSABLE_P (field
) = !TREE_ADDRESSABLE (decl
);
274 TREE_THIS_VOLATILE (field
) = TREE_THIS_VOLATILE (decl
);
277 insert_field_into_struct (get_frame_type (info
), field
);
279 elt
= xmalloc (sizeof (*elt
));
284 if (TREE_CODE (decl
) == PARM_DECL
)
285 info
->any_parm_remapped
= true;
288 field
= elt
? elt
->new : NULL
;
293 /* Build or return the variable that holds the static chain within
294 INFO->CONTEXT. This variable may only be used within INFO->CONTEXT. */
297 get_chain_decl (struct nesting_info
*info
)
299 tree decl
= info
->chain_decl
;
304 type
= get_frame_type (info
->outer
);
305 type
= build_pointer_type (type
);
307 /* Note that this variable is *not* entered into any BIND_EXPR;
308 the construction of this variable is handled specially in
309 expand_function_start and initialize_inlined_parameters. */
310 decl
= create_tmp_var_raw (type
, "CHAIN");
311 DECL_CONTEXT (decl
) = info
->context
;
312 decl
->decl
.seen_in_bind_expr
= 1;
314 /* The initialization of CHAIN is not visible to the tree-ssa
315 analyzers and optimizers. Thus we do not want to issue
316 warnings for CHAIN. */
317 TREE_NO_WARNING (decl
) = 1;
319 /* Tell tree-inline.c that we never write to this variable, so
320 it can copy-prop the replacement value immediately. */
321 TREE_READONLY (decl
) = 1;
323 info
->chain_decl
= decl
;
328 /* Build or return the field within the non-local frame state that holds
329 the static chain for INFO->CONTEXT. This is the way to walk back up
330 multiple nesting levels. */
333 get_chain_field (struct nesting_info
*info
)
335 tree field
= info
->chain_field
;
338 tree type
= build_pointer_type (get_frame_type (info
->outer
));
340 field
= make_node (FIELD_DECL
);
341 DECL_NAME (field
) = get_identifier ("__chain");
342 TREE_TYPE (field
) = type
;
343 DECL_ALIGN (field
) = TYPE_ALIGN (type
);
344 DECL_NONADDRESSABLE_P (field
) = 1;
346 insert_field_into_struct (get_frame_type (info
), field
);
348 info
->chain_field
= field
;
353 /* Copy EXP into a temporary. Allocate the temporary in the context of
354 INFO and insert the initialization statement before TSI. */
357 init_tmp_var (struct nesting_info
*info
, tree exp
, tree_stmt_iterator
*tsi
)
361 t
= create_tmp_var_for (info
, TREE_TYPE (exp
), NULL
);
362 stmt
= build (MODIFY_EXPR
, TREE_TYPE (t
), t
, exp
);
363 SET_EXPR_LOCUS (stmt
, EXPR_LOCUS (tsi_stmt (*tsi
)));
364 tsi_link_before (tsi
, stmt
, TSI_SAME_STMT
);
369 /* Similarly, but only do so to force EXP to satisfy is_gimple_val. */
372 gimplify_val (struct nesting_info
*info
, tree exp
, tree_stmt_iterator
*tsi
)
374 if (is_gimple_val (exp
))
377 return init_tmp_var (info
, exp
, tsi
);
380 /* Build or return the type used to represent a nested function trampoline. */
382 static GTY(()) tree trampoline_type
;
385 get_trampoline_type (void)
388 unsigned align
, size
;
391 return trampoline_type
;
393 align
= TRAMPOLINE_ALIGNMENT
;
394 size
= TRAMPOLINE_SIZE
;
396 /* If we won't be able to guarantee alignment simply via TYPE_ALIGN,
397 then allocate extra space so that we can do dynamic alignment. */
398 if (align
> STACK_BOUNDARY
)
400 size
+= ((align
/BITS_PER_UNIT
) - 1) & -(STACK_BOUNDARY
/BITS_PER_UNIT
);
401 align
= STACK_BOUNDARY
;
404 t
= build_index_type (build_int_2 (size
- 1, 0));
405 t
= build_array_type (char_type_node
, t
);
406 t
= build_decl (FIELD_DECL
, get_identifier ("__data"), t
);
407 DECL_ALIGN (t
) = align
;
408 DECL_USER_ALIGN (t
) = 1;
410 record
= make_node (RECORD_TYPE
);
411 TYPE_NAME (record
) = get_identifier ("__builtin_trampoline");
412 TYPE_FIELDS (record
) = t
;
413 layout_type (record
);
418 /* Given DECL, a nested function, find or create a field in the non-local
419 frame structure for a trampoline for this function. */
422 lookup_tramp_for_decl (struct nesting_info
*info
, tree decl
,
423 enum insert_option insert
)
425 struct var_map_elt
*elt
, dummy
;
430 slot
= htab_find_slot (info
->var_map
, &dummy
, insert
);
433 if (insert
== INSERT
)
439 if (!elt
&& insert
== INSERT
)
441 field
= make_node (FIELD_DECL
);
442 DECL_NAME (field
) = DECL_NAME (decl
);
443 TREE_TYPE (field
) = get_trampoline_type ();
444 TREE_ADDRESSABLE (field
) = 1;
446 insert_field_into_struct (get_frame_type (info
), field
);
448 elt
= xmalloc (sizeof (*elt
));
453 info
->any_tramp_created
= true;
456 field
= elt
? elt
->new : NULL
;
461 /* Build or return the field within the non-local frame state that holds
462 the non-local goto "jmp_buf". The buffer itself is maintained by the
463 rtl middle-end as dynamic stack space is allocated. */
466 get_nl_goto_field (struct nesting_info
*info
)
468 tree field
= info
->nl_goto_field
;
474 /* For __builtin_nonlocal_goto, we need N words. The first is the
475 frame pointer, the rest is for the target's stack pointer save
476 area. The number of words is controled by STACK_SAVEAREA_MODE;
477 not the best interface, but it'll do for now. */
478 if (Pmode
== ptr_mode
)
479 type
= ptr_type_node
;
481 type
= lang_hooks
.types
.type_for_mode (Pmode
, 1);
483 size
= GET_MODE_SIZE (STACK_SAVEAREA_MODE (SAVE_NONLOCAL
));
484 size
= size
/ GET_MODE_SIZE (Pmode
);
487 type
= build_array_type (type
, build_index_type (build_int_2 (size
, 0)));
489 field
= make_node (FIELD_DECL
);
490 DECL_NAME (field
) = get_identifier ("__nl_goto_buf");
491 TREE_TYPE (field
) = type
;
492 DECL_ALIGN (field
) = TYPE_ALIGN (type
);
493 TREE_ADDRESSABLE (field
) = 1;
495 insert_field_into_struct (get_frame_type (info
), field
);
497 info
->nl_goto_field
= field
;
503 /* Convenience routines to walk all statements of a gimple function.
505 For each statement, we invoke CALLBACK via walk_tree. The passed
506 data is a walk_stmt_info structure. Of note here is a TSI that
507 points to the current statement being walked. The VAL_ONLY flag
508 that indicates whether the *TP being examined may be replaced
509 with something that matches is_gimple_val (if true) or something
510 slightly more complicated (if false). "Something" technically
511 means the common subset of is_gimple_lvalue and is_gimple_rhs,
512 but we never try to form anything more complicated than that, so
513 we don't bother checking. */
515 struct walk_stmt_info
517 walk_tree_fn callback
;
518 tree_stmt_iterator tsi
;
519 struct nesting_info
*info
;
523 /* A subroutine of walk_function. Iterate over all sub-statements of *TP. */
526 walk_stmts (struct walk_stmt_info
*wi
, tree
*tp
)
532 switch (TREE_CODE (t
))
536 tree_stmt_iterator i
;
537 for (i
= tsi_start (t
); !tsi_end_p (i
); tsi_next (&i
))
540 walk_stmts (wi
, tsi_stmt_ptr (i
));
546 walk_tree (&COND_EXPR_COND (t
), wi
->callback
, wi
, NULL
);
547 walk_stmts (wi
, &COND_EXPR_THEN (t
));
548 walk_stmts (wi
, &COND_EXPR_ELSE (t
));
551 walk_stmts (wi
, &CATCH_BODY (t
));
553 walk_stmts (wi
, &EH_FILTER_FAILURE (t
));
556 case TRY_FINALLY_EXPR
:
557 walk_stmts (wi
, &TREE_OPERAND (t
, 0));
558 walk_stmts (wi
, &TREE_OPERAND (t
, 1));
561 walk_stmts (wi
, &BIND_EXPR_BODY (t
));
565 walk_stmts (wi
, &TREE_OPERAND (t
, 0));
569 /* The immediate arguments of a MODIFY_EXPR may use COMPONENT_REF. */
570 wi
->val_only
= false;
571 walk_tree (&TREE_OPERAND (t
, 0), wi
->callback
, wi
, NULL
);
572 wi
->val_only
= false;
573 walk_tree (&TREE_OPERAND (t
, 1), wi
->callback
, wi
, NULL
);
579 walk_tree (tp
, wi
->callback
, wi
, NULL
);
584 /* Invoke CALLBACK on all statements of INFO->CONTEXT. */
587 walk_function (walk_tree_fn callback
, struct nesting_info
*info
)
589 struct walk_stmt_info wi
;
591 memset (&wi
, 0, sizeof (wi
));
592 wi
.callback
= callback
;
596 walk_stmts (&wi
, &DECL_SAVED_TREE (info
->context
));
599 /* Similarly for ROOT and all functions nested underneath, depth first. */
602 walk_all_functions (walk_tree_fn callback
, struct nesting_info
*root
)
607 walk_all_functions (callback
, root
->inner
);
608 walk_function (callback
, root
);
615 /* Construct our local datastructure describing the function nesting
616 tree rooted by CGN. */
618 static struct nesting_info
*
619 create_nesting_tree (struct cgraph_node
*cgn
)
621 struct nesting_info
*info
= xcalloc (1, sizeof (*info
));
622 info
->var_map
= htab_create (7, var_map_hash
, var_map_eq
, free
);
623 info
->context
= cgn
->decl
;
625 for (cgn
= cgn
->nested
; cgn
; cgn
= cgn
->next_nested
)
627 struct nesting_info
*sub
= create_nesting_tree (cgn
);
629 sub
->next
= info
->inner
;
636 /* Return an expression computing the static chain for TARGET_CONTEXT
637 from INFO->CONTEXT. Insert any necessary computations before TSI. */
640 get_static_chain (struct nesting_info
*info
, tree target_context
,
641 tree_stmt_iterator
*tsi
)
643 struct nesting_info
*i
;
646 if (info
->context
== target_context
)
648 x
= build_addr (info
->frame_decl
);
652 x
= get_chain_decl (info
);
654 for (i
= info
->outer
; i
->context
!= target_context
; i
= i
->outer
)
656 tree field
= get_chain_field (i
);
658 x
= build1 (INDIRECT_REF
, TREE_TYPE (TREE_TYPE (x
)), x
);
659 x
= build (COMPONENT_REF
, TREE_TYPE (field
), x
, field
);
660 x
= init_tmp_var (info
, x
, tsi
);
667 /* Return an expression referencing FIELD from TARGET_CONTEXT's non-local
668 frame as seen from INFO->CONTEXT. Insert any necessary computations
672 get_frame_field (struct nesting_info
*info
, tree target_context
,
673 tree field
, tree_stmt_iterator
*tsi
)
675 struct nesting_info
*i
;
678 if (info
->context
== target_context
)
680 /* Make sure frame_decl gets created. */
681 (void) get_frame_type (info
);
682 x
= info
->frame_decl
;
686 x
= get_chain_decl (info
);
688 for (i
= info
->outer
; i
->context
!= target_context
; i
= i
->outer
)
690 tree field
= get_chain_field (i
);
692 x
= build1 (INDIRECT_REF
, TREE_TYPE (TREE_TYPE (x
)), x
);
693 x
= build (COMPONENT_REF
, TREE_TYPE (field
), x
, field
);
694 x
= init_tmp_var (info
, x
, tsi
);
697 x
= build1 (INDIRECT_REF
, TREE_TYPE (TREE_TYPE (x
)), x
);
700 x
= build (COMPONENT_REF
, TREE_TYPE (field
), x
, field
);
704 /* Called via walk_function+walk_tree, rewrite all references to VAR
705 and PARM_DECLs that belong to outer functions.
707 The rewrite will involve some number of structure accesses back up
708 the static chain. E.g. for a variable FOO up one nesting level it'll
709 be CHAIN->FOO. For two levels it'll be CHAIN->__chain->FOO. Further
710 indirections apply to decls for which use_pointer_in_frame is true. */
713 convert_nonlocal_reference (tree
*tp
, int *walk_subtrees
, void *data
)
715 struct walk_stmt_info
*wi
= data
;
716 struct nesting_info
*info
= wi
->info
;
720 switch (TREE_CODE (t
))
723 /* Non-automatic variables are never processed. */
724 if (TREE_STATIC (t
) || DECL_EXTERNAL (t
))
729 if (decl_function_context (t
) != info
->context
)
731 tree target_context
= decl_function_context (t
);
732 struct nesting_info
*i
;
735 for (i
= info
->outer
; i
->context
!= target_context
; i
= i
->outer
)
737 x
= lookup_field_for_decl (i
, t
, INSERT
);
738 x
= get_frame_field (info
, target_context
, x
, &wi
->tsi
);
739 if (use_pointer_in_frame (t
))
741 x
= init_tmp_var (info
, x
, &wi
->tsi
);
742 x
= build1 (INDIRECT_REF
, TREE_TYPE (TREE_TYPE (x
)), x
);
745 x
= init_tmp_var (info
, x
, &wi
->tsi
);
752 /* Don't walk non-local gotos for now. */
753 if (TREE_CODE (GOTO_DESTINATION (t
)) != LABEL_DECL
)
761 /* We're taking the address of a label from a parent function, but
762 this is not itself a non-local goto. Mark the label such that it
763 will not be deleted, much as we would with a label address in
765 if (decl_function_context (t
) != info
->context
)
766 FORCED_LABEL (t
) = 1;
771 bool save_val_only
= wi
->val_only
;
772 tree save_sub
= TREE_OPERAND (t
, 0);
774 wi
->val_only
= false;
775 walk_tree (&TREE_OPERAND (t
, 0), convert_nonlocal_reference
, wi
, NULL
);
778 if (save_sub
!= TREE_OPERAND (t
, 0))
780 /* If we changed anything, then TREE_INVARIANT is be wrong,
781 since we're no longer directly referencing a decl. */
782 TREE_INVARIANT (t
) = 0;
784 /* If the callback converted the address argument in a context
785 where we only accept variables (and min_invariant, presumably),
786 then compute the address into a temporary. */
788 *tp
= gimplify_val (wi
->info
, t
, &wi
->tsi
);
796 wi
->val_only
= false;
797 walk_tree (&TREE_OPERAND (t
, 0), convert_nonlocal_reference
, wi
, NULL
);
802 wi
->val_only
= false;
803 walk_tree (&TREE_OPERAND (t
, 0), convert_nonlocal_reference
, wi
, NULL
);
805 walk_tree (&TREE_OPERAND (t
, 1), convert_nonlocal_reference
, wi
, NULL
);
809 wi
->val_only
= false;
810 walk_tree (&TREE_OPERAND (t
, 0), convert_nonlocal_reference
, wi
, NULL
);
812 walk_tree (&TREE_OPERAND (t
, 1), convert_nonlocal_reference
, wi
, NULL
);
813 walk_tree (&TREE_OPERAND (t
, 2), convert_nonlocal_reference
, wi
, NULL
);
817 if (!DECL_P (t
) && !TYPE_P (t
))
828 /* Called via walk_function+walk_tree, rewrite all references to VAR
829 and PARM_DECLs that were referenced by inner nested functions.
830 The rewrite will be a structure reference to the local frame variable. */
833 convert_local_reference (tree
*tp
, int *walk_subtrees
, void *data
)
835 struct walk_stmt_info
*wi
= data
;
836 struct nesting_info
*info
= wi
->info
;
837 tree t
= *tp
, field
, x
, y
;
839 switch (TREE_CODE (t
))
842 /* Non-automatic variables are never processed. */
843 if (TREE_STATIC (t
) || DECL_EXTERNAL (t
))
848 if (decl_function_context (t
) == info
->context
)
850 /* If we copied a pointer to the frame, then the original decl
851 is used unchanged in the parent function. */
852 if (use_pointer_in_frame (t
))
855 /* No need to transform anything if no child references the
857 field
= lookup_field_for_decl (info
, t
, NO_INSERT
);
861 x
= get_frame_field (info
, info
->context
, field
, &wi
->tsi
);
863 x
= init_tmp_var (info
, x
, &wi
->tsi
);
870 bool save_val_only
= wi
->val_only
;
871 tree save_sub
= TREE_OPERAND (t
, 0);
873 wi
->val_only
= false;
874 walk_tree (&TREE_OPERAND (t
, 0), convert_local_reference
, wi
, NULL
);
875 wi
->val_only
= save_val_only
;
877 /* If we converted anything ... */
878 if (TREE_OPERAND (t
, 0) != save_sub
)
880 /* Then the frame decl is now addressable. */
881 TREE_ADDRESSABLE (info
->frame_decl
) = 1;
883 /* If we are in a context where we only accept values, then
884 compute the address into a temporary. */
886 *tp
= gimplify_val (wi
->info
, t
, &wi
->tsi
);
894 /* Ready for some fun? We need to recognize
895 __builtin_stack_alloc (&x, n)
898 after that. X should have use_pointer_in_frame set. We can't
899 do this any earlier, since we can't meaningfully evaluate &x. */
901 x
= get_callee_fndecl (t
);
902 if (!x
|| DECL_BUILT_IN_CLASS (x
) != BUILT_IN_NORMAL
)
904 if (DECL_FUNCTION_CODE (x
) != BUILT_IN_STACK_ALLOC
)
906 t
= TREE_VALUE (TREE_OPERAND (t
, 1));
907 if (TREE_CODE (t
) != ADDR_EXPR
)
909 t
= TREE_OPERAND (t
, 0);
910 if (TREE_CODE (t
) != VAR_DECL
)
912 field
= lookup_field_for_decl (info
, t
, NO_INSERT
);
915 if (!use_pointer_in_frame (t
))
919 y
= get_frame_field (info
, info
->context
, field
, &wi
->tsi
);
920 x
= build (MODIFY_EXPR
, void_type_node
, y
, x
);
921 SET_EXPR_LOCUS (x
, EXPR_LOCUS (tsi_stmt (wi
->tsi
)));
922 tsi_link_after (&wi
->tsi
, x
, TSI_SAME_STMT
);
928 wi
->val_only
= false;
929 walk_tree (&TREE_OPERAND (t
, 0), convert_local_reference
, wi
, NULL
);
934 wi
->val_only
= false;
935 walk_tree (&TREE_OPERAND (t
, 0), convert_local_reference
, wi
, NULL
);
937 walk_tree (&TREE_OPERAND (t
, 1), convert_local_reference
, wi
, NULL
);
941 wi
->val_only
= false;
942 walk_tree (&TREE_OPERAND (t
, 0), convert_local_reference
, wi
, NULL
);
944 walk_tree (&TREE_OPERAND (t
, 1), convert_local_reference
, wi
, NULL
);
945 walk_tree (&TREE_OPERAND (t
, 2), convert_local_reference
, wi
, NULL
);
949 if (!DECL_P (t
) && !TYPE_P (t
))
960 /* Called via walk_function+walk_tree, rewrite all GOTO_EXPRs that
961 reference labels from outer functions. The rewrite will be a
962 call to __builtin_nonlocal_goto. */
965 convert_nl_goto_reference (tree
*tp
, int *walk_subtrees
, void *data
)
967 struct walk_stmt_info
*wi
= data
;
968 struct nesting_info
*info
= wi
->info
, *i
;
969 tree t
= *tp
, label
, new_label
, target_context
, x
, arg
, field
;
970 struct var_map_elt
*elt
;
974 if (TREE_CODE (t
) != GOTO_EXPR
)
976 label
= GOTO_DESTINATION (t
);
977 if (TREE_CODE (label
) != LABEL_DECL
)
979 target_context
= decl_function_context (label
);
980 if (target_context
== info
->context
)
983 for (i
= info
->outer
; target_context
!= i
->context
; i
= i
->outer
)
986 /* The original user label may also be use for a normal goto, therefore
987 we must create a new label that will actually receive the abnormal
988 control transfer. This new label will be marked LABEL_NONLOCAL; this
989 mark will trigger proper behaviour in the cfg, as well as cause the
990 (hairy target-specific) non-local goto receiver code to be generated
991 when we expand rtl. */
992 new_label
= create_artificial_label ();
993 DECL_NONLOCAL (new_label
) = 1;
995 /* Enter this association into var_map so that we can insert the new
996 label into the IL during a second pass. */
997 elt
= xmalloc (sizeof (*elt
));
999 elt
->new = new_label
;
1000 slot
= htab_find_slot (i
->var_map
, elt
, INSERT
);
1003 /* Build: __builtin_nl_goto(new_label, &chain->nl_goto_field). */
1004 field
= get_nl_goto_field (i
);
1005 x
= get_frame_field (info
, target_context
, field
, &wi
->tsi
);
1007 x
= gimplify_val (info
, x
, &wi
->tsi
);
1008 arg
= tree_cons (NULL
, x
, NULL
);
1009 x
= build_addr (new_label
);
1010 arg
= tree_cons (NULL
, x
, arg
);
1011 x
= implicit_built_in_decls
[BUILT_IN_NONLOCAL_GOTO
];
1012 x
= build_function_call_expr (x
, arg
);
1014 SET_EXPR_LOCUS (x
, EXPR_LOCUS (tsi_stmt (wi
->tsi
)));
1015 *tsi_stmt_ptr (wi
->tsi
) = x
;
1020 /* Called via walk_function+walk_tree, rewrite all LABEL_EXPRs that
1021 are referenced via nonlocal goto from a nested function. The rewrite
1022 will involve installing a newly generated DECL_NONLOCAL label, and
1023 (potentially) a branch around the rtl gunk that is assumed to be
1024 attached to such a label. */
1027 convert_nl_goto_receiver (tree
*tp
, int *walk_subtrees
, void *data
)
1029 struct walk_stmt_info
*wi
= data
;
1030 struct nesting_info
*info
= wi
->info
;
1031 tree t
= *tp
, label
, new_label
, x
;
1032 struct var_map_elt
*elt
, dummy
;
1033 tree_stmt_iterator tmp_tsi
;
1036 if (TREE_CODE (t
) != LABEL_EXPR
)
1038 label
= LABEL_EXPR_LABEL (t
);
1041 elt
= htab_find (info
->var_map
, &dummy
);
1044 new_label
= elt
->new;
1046 /* If there's any possibility that the previous statement falls through,
1047 then we must branch around the new non-local label. */
1049 tsi_prev (&tmp_tsi
);
1050 if (tsi_end_p (tmp_tsi
) || block_may_fallthru (tsi_stmt (tmp_tsi
)))
1052 x
= build1 (GOTO_EXPR
, void_type_node
, label
);
1053 tsi_link_before (&wi
->tsi
, x
, TSI_SAME_STMT
);
1055 x
= build1 (LABEL_EXPR
, void_type_node
, new_label
);
1056 tsi_link_before (&wi
->tsi
, x
, TSI_SAME_STMT
);
1061 /* Called via walk_function+walk_tree, rewrite all references to addresses
1062 of nested functions that require the use of trampolines. The rewrite
1063 will involve a reference a trampoline generated for the occasion. */
1066 convert_tramp_reference (tree
*tp
, int *walk_subtrees
, void *data
)
1068 struct walk_stmt_info
*wi
= data
;
1069 struct nesting_info
*info
= wi
->info
, *i
;
1070 tree t
= *tp
, decl
, target_context
, x
, arg
;
1073 switch (TREE_CODE (t
))
1077 T.1 = &CHAIN->tramp;
1078 T.2 = __builtin_adjust_trampoline (T.1);
1079 T.3 = (func_type)T.2;
1082 decl
= TREE_OPERAND (t
, 0);
1083 if (TREE_CODE (decl
) != FUNCTION_DECL
)
1086 /* Only need to process nested functions. */
1087 target_context
= decl_function_context (decl
);
1088 if (!target_context
)
1091 /* If the nested function doesn't use a static chain, then
1092 it doesn't need a trampoline. */
1093 if (DECL_NO_STATIC_CHAIN (decl
))
1096 /* Lookup the immediate parent of the callee, as that's where
1097 we need to insert the trampoline. */
1098 for (i
= info
; i
->context
!= target_context
; i
= i
->outer
)
1100 x
= lookup_tramp_for_decl (i
, decl
, INSERT
);
1102 /* Compute the address of the field holding the trampoline. */
1103 x
= get_frame_field (info
, target_context
, x
, &wi
->tsi
);
1105 x
= gimplify_val (info
, x
, &wi
->tsi
);
1106 arg
= tree_cons (NULL
, x
, NULL
);
1108 /* Do machine-specific ugliness. Normally this will involve
1109 computing extra alignment, but it can really be anything. */
1110 x
= implicit_built_in_decls
[BUILT_IN_ADJUST_TRAMPOLINE
];
1111 x
= build_function_call_expr (x
, arg
);
1112 x
= init_tmp_var (info
, x
, &wi
->tsi
);
1114 /* Cast back to the proper function type. */
1115 x
= build1 (NOP_EXPR
, TREE_TYPE (t
), x
);
1116 x
= init_tmp_var (info
, x
, &wi
->tsi
);
1122 /* Only walk call arguments, lest we generate trampolines for
1124 walk_tree (&TREE_OPERAND (t
, 1), convert_tramp_reference
, wi
, NULL
);
1128 if (!DECL_P (t
) && !TYPE_P (t
))
1136 /* Called via walk_function+walk_tree, rewrite all CALL_EXPRs that
1137 reference nested functions to make sure that the static chain is
1138 set up properly for the call. */
1141 convert_call_expr (tree
*tp
, int *walk_subtrees
, void *data
)
1143 struct walk_stmt_info
*wi
= data
;
1144 struct nesting_info
*info
= wi
->info
;
1145 tree t
= *tp
, decl
, target_context
;
1148 switch (TREE_CODE (t
))
1151 decl
= get_callee_fndecl (t
);
1154 target_context
= decl_function_context (decl
);
1155 if (target_context
&& !DECL_NO_STATIC_CHAIN (decl
))
1157 = get_static_chain (info
, target_context
, &wi
->tsi
);
1162 /* Only return and modify may contain calls. */
1173 /* Walk the nesting tree starting with ROOT, depth first. Convert all
1174 trampolines and call expressions. On the way back up, determine if
1175 a nested function actually uses its static chain; if not, remember that. */
1178 convert_all_function_calls (struct nesting_info
*root
)
1183 convert_all_function_calls (root
->inner
);
1185 walk_function (convert_tramp_reference
, root
);
1186 walk_function (convert_call_expr
, root
);
1188 /* If the function does not use a static chain, then remember that. */
1189 if (root
->outer
&& !root
->chain_decl
&& !root
->chain_field
)
1190 DECL_NO_STATIC_CHAIN (root
->context
) = 1;
1193 #ifdef ENABLE_CHECKING
1194 if (DECL_NO_STATIC_CHAIN (root
->context
))
1204 /* Do "everything else" to clean up or complete state collected by the
1205 various walking passes -- lay out the types and decls, generate code
1206 to initialize the frame decl, store critical expressions in the
1207 struct function for rtl to find. */
1210 finalize_nesting_tree_1 (struct nesting_info
*root
)
1212 tree stmt_list
= NULL
;
1213 tree context
= root
->context
;
1214 struct function
*sf
;
1216 /* If we created a non-local frame type or decl, we need to lay them
1217 out at this time. */
1218 if (root
->frame_type
)
1220 layout_type (root
->frame_type
);
1221 layout_decl (root
->frame_decl
, 0);
1224 /* If any parameters were referenced non-locally, then we need to
1225 insert a copy. Likewise, if any variables were referenced by
1226 pointer, we need to initialize the address. */
1227 if (root
->any_parm_remapped
)
1230 for (p
= DECL_ARGUMENTS (context
); p
; p
= TREE_CHAIN (p
))
1234 field
= lookup_field_for_decl (root
, p
, NO_INSERT
);
1238 if (use_pointer_in_frame (p
))
1243 y
= build (COMPONENT_REF
, TREE_TYPE (field
),
1244 root
->frame_decl
, field
);
1245 x
= build (MODIFY_EXPR
, TREE_TYPE (field
), y
, x
);
1246 append_to_statement_list (x
, &stmt_list
);
1250 /* If a chain_field was created, then it needs to be initialized
1252 if (root
->chain_field
)
1255 x
= build (COMPONENT_REF
, TREE_TYPE (root
->chain_field
),
1256 root
->frame_decl
, root
->chain_field
);
1257 x
= build (MODIFY_EXPR
, TREE_TYPE (x
), x
, get_chain_decl (root
));
1258 append_to_statement_list (x
, &stmt_list
);
1261 /* If trampolines were created, then we need to initialize them. */
1262 if (root
->any_tramp_created
)
1264 struct nesting_info
*i
;
1265 for (i
= root
->inner
; i
; i
= i
->next
)
1269 field
= lookup_tramp_for_decl (root
, i
->context
, NO_INSERT
);
1273 if (DECL_NO_STATIC_CHAIN (i
->context
))
1274 x
= null_pointer_node
;
1276 x
= build_addr (root
->frame_decl
);
1277 arg
= tree_cons (NULL
, x
, NULL
);
1279 x
= build_addr (i
->context
);
1280 arg
= tree_cons (NULL
, x
, arg
);
1282 x
= build (COMPONENT_REF
, TREE_TYPE (field
),
1283 root
->frame_decl
, field
);
1285 arg
= tree_cons (NULL
, x
, arg
);
1287 x
= implicit_built_in_decls
[BUILT_IN_INIT_TRAMPOLINE
];
1288 x
= build_function_call_expr (x
, arg
);
1290 append_to_statement_list (x
, &stmt_list
);
1294 /* If we created initialization statements, insert them. */
1297 annotate_all_with_locus (&stmt_list
,
1298 DECL_SOURCE_LOCATION (context
));
1299 append_to_statement_list (BIND_EXPR_BODY (DECL_SAVED_TREE (context
)),
1301 BIND_EXPR_BODY (DECL_SAVED_TREE (context
)) = stmt_list
;
1304 /* If a chain_decl was created, then it needs to be registered with
1305 struct function so that it gets initialized from the static chain
1306 register at the beginning of the function. */
1307 sf
= DECL_STRUCT_FUNCTION (root
->context
);
1308 sf
->static_chain_decl
= root
->chain_decl
;
1310 /* Similarly for the non-local goto save area. */
1311 if (root
->nl_goto_field
)
1313 sf
->nonlocal_goto_save_area
1314 = get_frame_field (root
, context
, root
->nl_goto_field
, NULL
);
1315 sf
->has_nonlocal_label
= 1;
1318 /* Make sure all new local variables get insertted into the
1319 proper BIND_EXPR. */
1320 if (root
->new_local_var_chain
)
1321 declare_tmp_vars (root
->new_local_var_chain
,
1322 DECL_SAVED_TREE (root
->context
));
1324 /* Dump the translated tree function. */
1325 dump_function (TDI_nested
, root
->context
);
1329 finalize_nesting_tree (struct nesting_info
*root
)
1334 finalize_nesting_tree (root
->inner
);
1335 finalize_nesting_tree_1 (root
);
1341 /* Free the data structures allocated during this pass. */
1344 free_nesting_tree (struct nesting_info
*root
)
1346 struct nesting_info
*next
;
1350 free_nesting_tree (root
->inner
);
1351 htab_delete (root
->var_map
);
1359 /* Main entry point for this pass. Process FNDECL and all of its nested
1360 subroutines and turn them into something less tightly bound. */
1363 lower_nested_functions (tree fndecl
)
1365 struct nesting_info
*root
;
1366 struct cgraph_node
*cgn
;
1368 /* If there are no nested functions, there's nothing to do. */
1369 cgn
= cgraph_node (fndecl
);
1373 root
= create_nesting_tree (cgn
);
1374 walk_all_functions (convert_nonlocal_reference
, root
);
1375 walk_all_functions (convert_local_reference
, root
);
1376 walk_all_functions (convert_nl_goto_reference
, root
);
1377 walk_all_functions (convert_nl_goto_receiver
, root
);
1378 convert_all_function_calls (root
);
1379 finalize_nesting_tree (root
);
1380 free_nesting_tree (root
);
1383 #include "gt-tree-nested.h"