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 Note also that it's represented as a parameter. This is more
311 close to the truth, since the initial value does come from
313 decl
= build_decl (PARM_DECL
, create_tmp_var_name ("CHAIN"), type
);
314 DECL_ARTIFICIAL (decl
) = 1;
315 DECL_IGNORED_P (decl
) = 1;
316 TREE_USED (decl
) = 1;
317 DECL_CONTEXT (decl
) = info
->context
;
318 DECL_ARG_TYPE (decl
) = type
;
320 /* Tell tree-inline.c that we never write to this variable, so
321 it can copy-prop the replacement value immediately. */
322 TREE_READONLY (decl
) = 1;
324 info
->chain_decl
= decl
;
329 /* Build or return the field within the non-local frame state that holds
330 the static chain for INFO->CONTEXT. This is the way to walk back up
331 multiple nesting levels. */
334 get_chain_field (struct nesting_info
*info
)
336 tree field
= info
->chain_field
;
339 tree type
= build_pointer_type (get_frame_type (info
->outer
));
341 field
= make_node (FIELD_DECL
);
342 DECL_NAME (field
) = get_identifier ("__chain");
343 TREE_TYPE (field
) = type
;
344 DECL_ALIGN (field
) = TYPE_ALIGN (type
);
345 DECL_NONADDRESSABLE_P (field
) = 1;
347 insert_field_into_struct (get_frame_type (info
), field
);
349 info
->chain_field
= field
;
354 /* Copy EXP into a temporary. Allocate the temporary in the context of
355 INFO and insert the initialization statement before TSI. */
358 init_tmp_var (struct nesting_info
*info
, tree exp
, tree_stmt_iterator
*tsi
)
362 t
= create_tmp_var_for (info
, TREE_TYPE (exp
), NULL
);
363 stmt
= build (MODIFY_EXPR
, TREE_TYPE (t
), t
, exp
);
364 SET_EXPR_LOCUS (stmt
, EXPR_LOCUS (tsi_stmt (*tsi
)));
365 tsi_link_before (tsi
, stmt
, TSI_SAME_STMT
);
370 /* Similarly, but only do so to force EXP to satisfy is_gimple_val. */
373 gimplify_val (struct nesting_info
*info
, tree exp
, tree_stmt_iterator
*tsi
)
375 if (is_gimple_val (exp
))
378 return init_tmp_var (info
, exp
, tsi
);
381 /* Build or return the type used to represent a nested function trampoline. */
383 static GTY(()) tree trampoline_type
;
386 get_trampoline_type (void)
389 unsigned align
, size
;
392 return trampoline_type
;
394 align
= TRAMPOLINE_ALIGNMENT
;
395 size
= TRAMPOLINE_SIZE
;
397 /* If we won't be able to guarantee alignment simply via TYPE_ALIGN,
398 then allocate extra space so that we can do dynamic alignment. */
399 if (align
> STACK_BOUNDARY
)
401 size
+= ((align
/BITS_PER_UNIT
) - 1) & -(STACK_BOUNDARY
/BITS_PER_UNIT
);
402 align
= STACK_BOUNDARY
;
405 t
= build_index_type (build_int_2 (size
- 1, 0));
406 t
= build_array_type (char_type_node
, t
);
407 t
= build_decl (FIELD_DECL
, get_identifier ("__data"), t
);
408 DECL_ALIGN (t
) = align
;
409 DECL_USER_ALIGN (t
) = 1;
411 record
= make_node (RECORD_TYPE
);
412 TYPE_NAME (record
) = get_identifier ("__builtin_trampoline");
413 TYPE_FIELDS (record
) = t
;
414 layout_type (record
);
419 /* Given DECL, a nested function, find or create a field in the non-local
420 frame structure for a trampoline for this function. */
423 lookup_tramp_for_decl (struct nesting_info
*info
, tree decl
,
424 enum insert_option insert
)
426 struct var_map_elt
*elt
, dummy
;
431 slot
= htab_find_slot (info
->var_map
, &dummy
, insert
);
434 if (insert
== INSERT
)
440 if (!elt
&& insert
== INSERT
)
442 field
= make_node (FIELD_DECL
);
443 DECL_NAME (field
) = DECL_NAME (decl
);
444 TREE_TYPE (field
) = get_trampoline_type ();
445 TREE_ADDRESSABLE (field
) = 1;
447 insert_field_into_struct (get_frame_type (info
), field
);
449 elt
= xmalloc (sizeof (*elt
));
454 info
->any_tramp_created
= true;
457 field
= elt
? elt
->new : NULL
;
462 /* Build or return the field within the non-local frame state that holds
463 the non-local goto "jmp_buf". The buffer itself is maintained by the
464 rtl middle-end as dynamic stack space is allocated. */
467 get_nl_goto_field (struct nesting_info
*info
)
469 tree field
= info
->nl_goto_field
;
475 /* For __builtin_nonlocal_goto, we need N words. The first is the
476 frame pointer, the rest is for the target's stack pointer save
477 area. The number of words is controled by STACK_SAVEAREA_MODE;
478 not the best interface, but it'll do for now. */
479 if (Pmode
== ptr_mode
)
480 type
= ptr_type_node
;
482 type
= lang_hooks
.types
.type_for_mode (Pmode
, 1);
484 size
= GET_MODE_SIZE (STACK_SAVEAREA_MODE (SAVE_NONLOCAL
));
485 size
= size
/ GET_MODE_SIZE (Pmode
);
488 type
= build_array_type (type
, build_index_type (build_int_2 (size
, 0)));
490 field
= make_node (FIELD_DECL
);
491 DECL_NAME (field
) = get_identifier ("__nl_goto_buf");
492 TREE_TYPE (field
) = type
;
493 DECL_ALIGN (field
) = TYPE_ALIGN (type
);
494 TREE_ADDRESSABLE (field
) = 1;
496 insert_field_into_struct (get_frame_type (info
), field
);
498 info
->nl_goto_field
= field
;
504 /* Convenience routines to walk all statements of a gimple function.
506 For each statement, we invoke CALLBACK via walk_tree. The passed
507 data is a walk_stmt_info structure. Of note here is a TSI that
508 points to the current statement being walked. The VAL_ONLY flag
509 that indicates whether the *TP being examined may be replaced
510 with something that matches is_gimple_val (if true) or something
511 slightly more complicated (if false). "Something" technically
512 means the common subset of is_gimple_lvalue and is_gimple_rhs,
513 but we never try to form anything more complicated than that, so
514 we don't bother checking. */
516 struct walk_stmt_info
518 walk_tree_fn callback
;
519 tree_stmt_iterator tsi
;
520 struct nesting_info
*info
;
524 /* A subroutine of walk_function. Iterate over all sub-statements of *TP. */
527 walk_stmts (struct walk_stmt_info
*wi
, tree
*tp
)
533 switch (TREE_CODE (t
))
537 tree_stmt_iterator i
;
538 for (i
= tsi_start (t
); !tsi_end_p (i
); tsi_next (&i
))
541 walk_stmts (wi
, tsi_stmt_ptr (i
));
547 walk_tree (&COND_EXPR_COND (t
), wi
->callback
, wi
, NULL
);
548 walk_stmts (wi
, &COND_EXPR_THEN (t
));
549 walk_stmts (wi
, &COND_EXPR_ELSE (t
));
552 walk_stmts (wi
, &CATCH_BODY (t
));
554 walk_stmts (wi
, &EH_FILTER_FAILURE (t
));
557 case TRY_FINALLY_EXPR
:
558 walk_stmts (wi
, &TREE_OPERAND (t
, 0));
559 walk_stmts (wi
, &TREE_OPERAND (t
, 1));
562 walk_stmts (wi
, &BIND_EXPR_BODY (t
));
566 walk_stmts (wi
, &TREE_OPERAND (t
, 0));
570 /* The immediate arguments of a MODIFY_EXPR may use COMPONENT_REF. */
571 wi
->val_only
= false;
572 walk_tree (&TREE_OPERAND (t
, 0), wi
->callback
, wi
, NULL
);
573 wi
->val_only
= false;
574 walk_tree (&TREE_OPERAND (t
, 1), wi
->callback
, wi
, NULL
);
580 walk_tree (tp
, wi
->callback
, wi
, NULL
);
585 /* Invoke CALLBACK on all statements of INFO->CONTEXT. */
588 walk_function (walk_tree_fn callback
, struct nesting_info
*info
)
590 struct walk_stmt_info wi
;
592 memset (&wi
, 0, sizeof (wi
));
593 wi
.callback
= callback
;
597 walk_stmts (&wi
, &DECL_SAVED_TREE (info
->context
));
600 /* Similarly for ROOT and all functions nested underneath, depth first. */
603 walk_all_functions (walk_tree_fn callback
, struct nesting_info
*root
)
608 walk_all_functions (callback
, root
->inner
);
609 walk_function (callback
, root
);
616 /* Construct our local datastructure describing the function nesting
617 tree rooted by CGN. */
619 static struct nesting_info
*
620 create_nesting_tree (struct cgraph_node
*cgn
)
622 struct nesting_info
*info
= xcalloc (1, sizeof (*info
));
623 info
->var_map
= htab_create (7, var_map_hash
, var_map_eq
, free
);
624 info
->context
= cgn
->decl
;
626 for (cgn
= cgn
->nested
; cgn
; cgn
= cgn
->next_nested
)
628 struct nesting_info
*sub
= create_nesting_tree (cgn
);
630 sub
->next
= info
->inner
;
637 /* Return an expression computing the static chain for TARGET_CONTEXT
638 from INFO->CONTEXT. Insert any necessary computations before TSI. */
641 get_static_chain (struct nesting_info
*info
, tree target_context
,
642 tree_stmt_iterator
*tsi
)
644 struct nesting_info
*i
;
647 if (info
->context
== target_context
)
649 x
= build_addr (info
->frame_decl
);
653 x
= get_chain_decl (info
);
655 for (i
= info
->outer
; i
->context
!= target_context
; i
= i
->outer
)
657 tree field
= get_chain_field (i
);
659 x
= build1 (INDIRECT_REF
, TREE_TYPE (TREE_TYPE (x
)), x
);
660 x
= build (COMPONENT_REF
, TREE_TYPE (field
), x
, field
);
661 x
= init_tmp_var (info
, x
, tsi
);
668 /* Return an expression referencing FIELD from TARGET_CONTEXT's non-local
669 frame as seen from INFO->CONTEXT. Insert any necessary computations
673 get_frame_field (struct nesting_info
*info
, tree target_context
,
674 tree field
, tree_stmt_iterator
*tsi
)
676 struct nesting_info
*i
;
679 if (info
->context
== target_context
)
681 /* Make sure frame_decl gets created. */
682 (void) get_frame_type (info
);
683 x
= info
->frame_decl
;
687 x
= get_chain_decl (info
);
689 for (i
= info
->outer
; i
->context
!= target_context
; i
= i
->outer
)
691 tree field
= get_chain_field (i
);
693 x
= build1 (INDIRECT_REF
, TREE_TYPE (TREE_TYPE (x
)), x
);
694 x
= build (COMPONENT_REF
, TREE_TYPE (field
), x
, field
);
695 x
= init_tmp_var (info
, x
, tsi
);
698 x
= build1 (INDIRECT_REF
, TREE_TYPE (TREE_TYPE (x
)), x
);
701 x
= build (COMPONENT_REF
, TREE_TYPE (field
), x
, field
);
705 /* Called via walk_function+walk_tree, rewrite all references to VAR
706 and PARM_DECLs that belong to outer functions.
708 The rewrite will involve some number of structure accesses back up
709 the static chain. E.g. for a variable FOO up one nesting level it'll
710 be CHAIN->FOO. For two levels it'll be CHAIN->__chain->FOO. Further
711 indirections apply to decls for which use_pointer_in_frame is true. */
714 convert_nonlocal_reference (tree
*tp
, int *walk_subtrees
, void *data
)
716 struct walk_stmt_info
*wi
= data
;
717 struct nesting_info
*info
= wi
->info
;
721 switch (TREE_CODE (t
))
724 /* Non-automatic variables are never processed. */
725 if (TREE_STATIC (t
) || DECL_EXTERNAL (t
))
730 if (decl_function_context (t
) != info
->context
)
732 tree target_context
= decl_function_context (t
);
733 struct nesting_info
*i
;
736 for (i
= info
->outer
; i
->context
!= target_context
; i
= i
->outer
)
738 x
= lookup_field_for_decl (i
, t
, INSERT
);
739 x
= get_frame_field (info
, target_context
, x
, &wi
->tsi
);
740 if (use_pointer_in_frame (t
))
742 x
= init_tmp_var (info
, x
, &wi
->tsi
);
743 x
= build1 (INDIRECT_REF
, TREE_TYPE (TREE_TYPE (x
)), x
);
746 x
= init_tmp_var (info
, x
, &wi
->tsi
);
753 /* Don't walk non-local gotos for now. */
754 if (TREE_CODE (GOTO_DESTINATION (t
)) != LABEL_DECL
)
762 /* We're taking the address of a label from a parent function, but
763 this is not itself a non-local goto. Mark the label such that it
764 will not be deleted, much as we would with a label address in
766 if (decl_function_context (t
) != info
->context
)
767 FORCED_LABEL (t
) = 1;
772 bool save_val_only
= wi
->val_only
;
773 tree save_sub
= TREE_OPERAND (t
, 0);
775 wi
->val_only
= false;
776 walk_tree (&TREE_OPERAND (t
, 0), convert_nonlocal_reference
, wi
, NULL
);
779 if (save_sub
!= TREE_OPERAND (t
, 0))
781 /* If we changed anything, then TREE_INVARIANT is be wrong,
782 since we're no longer directly referencing a decl. */
783 TREE_INVARIANT (t
) = 0;
785 /* If the callback converted the address argument in a context
786 where we only accept variables (and min_invariant, presumably),
787 then compute the address into a temporary. */
789 *tp
= gimplify_val (wi
->info
, t
, &wi
->tsi
);
797 wi
->val_only
= false;
798 walk_tree (&TREE_OPERAND (t
, 0), convert_nonlocal_reference
, wi
, NULL
);
803 wi
->val_only
= false;
804 walk_tree (&TREE_OPERAND (t
, 0), convert_nonlocal_reference
, wi
, NULL
);
806 walk_tree (&TREE_OPERAND (t
, 1), convert_nonlocal_reference
, wi
, NULL
);
810 wi
->val_only
= false;
811 walk_tree (&TREE_OPERAND (t
, 0), convert_nonlocal_reference
, wi
, NULL
);
813 walk_tree (&TREE_OPERAND (t
, 1), convert_nonlocal_reference
, wi
, NULL
);
814 walk_tree (&TREE_OPERAND (t
, 2), convert_nonlocal_reference
, wi
, NULL
);
818 if (!DECL_P (t
) && !TYPE_P (t
))
829 /* Called via walk_function+walk_tree, rewrite all references to VAR
830 and PARM_DECLs that were referenced by inner nested functions.
831 The rewrite will be a structure reference to the local frame variable. */
834 convert_local_reference (tree
*tp
, int *walk_subtrees
, void *data
)
836 struct walk_stmt_info
*wi
= data
;
837 struct nesting_info
*info
= wi
->info
;
838 tree t
= *tp
, field
, x
, y
;
840 switch (TREE_CODE (t
))
843 /* Non-automatic variables are never processed. */
844 if (TREE_STATIC (t
) || DECL_EXTERNAL (t
))
849 if (decl_function_context (t
) == info
->context
)
851 /* If we copied a pointer to the frame, then the original decl
852 is used unchanged in the parent function. */
853 if (use_pointer_in_frame (t
))
856 /* No need to transform anything if no child references the
858 field
= lookup_field_for_decl (info
, t
, NO_INSERT
);
862 x
= get_frame_field (info
, info
->context
, field
, &wi
->tsi
);
864 x
= init_tmp_var (info
, x
, &wi
->tsi
);
871 bool save_val_only
= wi
->val_only
;
872 tree save_sub
= TREE_OPERAND (t
, 0);
874 wi
->val_only
= false;
875 walk_tree (&TREE_OPERAND (t
, 0), convert_local_reference
, wi
, NULL
);
876 wi
->val_only
= save_val_only
;
878 /* If we converted anything ... */
879 if (TREE_OPERAND (t
, 0) != save_sub
)
881 /* Then the frame decl is now addressable. */
882 TREE_ADDRESSABLE (info
->frame_decl
) = 1;
884 /* If we are in a context where we only accept values, then
885 compute the address into a temporary. */
887 *tp
= gimplify_val (wi
->info
, t
, &wi
->tsi
);
895 /* Ready for some fun? We need to recognize
896 __builtin_stack_alloc (&x, n)
899 after that. X should have use_pointer_in_frame set. We can't
900 do this any earlier, since we can't meaningfully evaluate &x. */
902 x
= get_callee_fndecl (t
);
903 if (!x
|| DECL_BUILT_IN_CLASS (x
) != BUILT_IN_NORMAL
)
905 if (DECL_FUNCTION_CODE (x
) != BUILT_IN_STACK_ALLOC
)
907 t
= TREE_VALUE (TREE_OPERAND (t
, 1));
908 if (TREE_CODE (t
) != ADDR_EXPR
)
910 t
= TREE_OPERAND (t
, 0);
911 if (TREE_CODE (t
) != VAR_DECL
)
913 field
= lookup_field_for_decl (info
, t
, NO_INSERT
);
916 if (!use_pointer_in_frame (t
))
920 y
= get_frame_field (info
, info
->context
, field
, &wi
->tsi
);
921 x
= build (MODIFY_EXPR
, void_type_node
, y
, x
);
922 SET_EXPR_LOCUS (x
, EXPR_LOCUS (tsi_stmt (wi
->tsi
)));
923 tsi_link_after (&wi
->tsi
, x
, TSI_SAME_STMT
);
929 wi
->val_only
= false;
930 walk_tree (&TREE_OPERAND (t
, 0), convert_local_reference
, wi
, NULL
);
935 wi
->val_only
= false;
936 walk_tree (&TREE_OPERAND (t
, 0), convert_local_reference
, wi
, NULL
);
938 walk_tree (&TREE_OPERAND (t
, 1), convert_local_reference
, wi
, NULL
);
942 wi
->val_only
= false;
943 walk_tree (&TREE_OPERAND (t
, 0), convert_local_reference
, wi
, NULL
);
945 walk_tree (&TREE_OPERAND (t
, 1), convert_local_reference
, wi
, NULL
);
946 walk_tree (&TREE_OPERAND (t
, 2), convert_local_reference
, wi
, NULL
);
950 if (!DECL_P (t
) && !TYPE_P (t
))
961 /* Called via walk_function+walk_tree, rewrite all GOTO_EXPRs that
962 reference labels from outer functions. The rewrite will be a
963 call to __builtin_nonlocal_goto. */
966 convert_nl_goto_reference (tree
*tp
, int *walk_subtrees
, void *data
)
968 struct walk_stmt_info
*wi
= data
;
969 struct nesting_info
*info
= wi
->info
, *i
;
970 tree t
= *tp
, label
, new_label
, target_context
, x
, arg
, field
;
971 struct var_map_elt
*elt
;
975 if (TREE_CODE (t
) != GOTO_EXPR
)
977 label
= GOTO_DESTINATION (t
);
978 if (TREE_CODE (label
) != LABEL_DECL
)
980 target_context
= decl_function_context (label
);
981 if (target_context
== info
->context
)
984 for (i
= info
->outer
; target_context
!= i
->context
; i
= i
->outer
)
987 /* The original user label may also be use for a normal goto, therefore
988 we must create a new label that will actually receive the abnormal
989 control transfer. This new label will be marked LABEL_NONLOCAL; this
990 mark will trigger proper behaviour in the cfg, as well as cause the
991 (hairy target-specific) non-local goto receiver code to be generated
992 when we expand rtl. */
993 new_label
= create_artificial_label ();
994 DECL_NONLOCAL (new_label
) = 1;
996 /* Enter this association into var_map so that we can insert the new
997 label into the IL during a second pass. */
998 elt
= xmalloc (sizeof (*elt
));
1000 elt
->new = new_label
;
1001 slot
= htab_find_slot (i
->var_map
, elt
, INSERT
);
1004 /* Build: __builtin_nl_goto(new_label, &chain->nl_goto_field). */
1005 field
= get_nl_goto_field (i
);
1006 x
= get_frame_field (info
, target_context
, field
, &wi
->tsi
);
1008 x
= gimplify_val (info
, x
, &wi
->tsi
);
1009 arg
= tree_cons (NULL
, x
, NULL
);
1010 x
= build_addr (new_label
);
1011 arg
= tree_cons (NULL
, x
, arg
);
1012 x
= implicit_built_in_decls
[BUILT_IN_NONLOCAL_GOTO
];
1013 x
= build_function_call_expr (x
, arg
);
1015 SET_EXPR_LOCUS (x
, EXPR_LOCUS (tsi_stmt (wi
->tsi
)));
1016 *tsi_stmt_ptr (wi
->tsi
) = x
;
1021 /* Called via walk_function+walk_tree, rewrite all LABEL_EXPRs that
1022 are referenced via nonlocal goto from a nested function. The rewrite
1023 will involve installing a newly generated DECL_NONLOCAL label, and
1024 (potentially) a branch around the rtl gunk that is assumed to be
1025 attached to such a label. */
1028 convert_nl_goto_receiver (tree
*tp
, int *walk_subtrees
, void *data
)
1030 struct walk_stmt_info
*wi
= data
;
1031 struct nesting_info
*info
= wi
->info
;
1032 tree t
= *tp
, label
, new_label
, x
;
1033 struct var_map_elt
*elt
, dummy
;
1034 tree_stmt_iterator tmp_tsi
;
1037 if (TREE_CODE (t
) != LABEL_EXPR
)
1039 label
= LABEL_EXPR_LABEL (t
);
1042 elt
= htab_find (info
->var_map
, &dummy
);
1045 new_label
= elt
->new;
1047 /* If there's any possibility that the previous statement falls through,
1048 then we must branch around the new non-local label. */
1050 tsi_prev (&tmp_tsi
);
1051 if (tsi_end_p (tmp_tsi
) || block_may_fallthru (tsi_stmt (tmp_tsi
)))
1053 x
= build1 (GOTO_EXPR
, void_type_node
, label
);
1054 tsi_link_before (&wi
->tsi
, x
, TSI_SAME_STMT
);
1056 x
= build1 (LABEL_EXPR
, void_type_node
, new_label
);
1057 tsi_link_before (&wi
->tsi
, x
, TSI_SAME_STMT
);
1062 /* Called via walk_function+walk_tree, rewrite all references to addresses
1063 of nested functions that require the use of trampolines. The rewrite
1064 will involve a reference a trampoline generated for the occasion. */
1067 convert_tramp_reference (tree
*tp
, int *walk_subtrees
, void *data
)
1069 struct walk_stmt_info
*wi
= data
;
1070 struct nesting_info
*info
= wi
->info
, *i
;
1071 tree t
= *tp
, decl
, target_context
, x
, arg
;
1074 switch (TREE_CODE (t
))
1078 T.1 = &CHAIN->tramp;
1079 T.2 = __builtin_adjust_trampoline (T.1);
1080 T.3 = (func_type)T.2;
1083 decl
= TREE_OPERAND (t
, 0);
1084 if (TREE_CODE (decl
) != FUNCTION_DECL
)
1087 /* Only need to process nested functions. */
1088 target_context
= decl_function_context (decl
);
1089 if (!target_context
)
1092 /* If the nested function doesn't use a static chain, then
1093 it doesn't need a trampoline. */
1094 if (DECL_NO_STATIC_CHAIN (decl
))
1097 /* Lookup the immediate parent of the callee, as that's where
1098 we need to insert the trampoline. */
1099 for (i
= info
; i
->context
!= target_context
; i
= i
->outer
)
1101 x
= lookup_tramp_for_decl (i
, decl
, INSERT
);
1103 /* Compute the address of the field holding the trampoline. */
1104 x
= get_frame_field (info
, target_context
, x
, &wi
->tsi
);
1106 x
= gimplify_val (info
, x
, &wi
->tsi
);
1107 arg
= tree_cons (NULL
, x
, NULL
);
1109 /* Do machine-specific ugliness. Normally this will involve
1110 computing extra alignment, but it can really be anything. */
1111 x
= implicit_built_in_decls
[BUILT_IN_ADJUST_TRAMPOLINE
];
1112 x
= build_function_call_expr (x
, arg
);
1113 x
= init_tmp_var (info
, x
, &wi
->tsi
);
1115 /* Cast back to the proper function type. */
1116 x
= build1 (NOP_EXPR
, TREE_TYPE (t
), x
);
1117 x
= init_tmp_var (info
, x
, &wi
->tsi
);
1123 /* Only walk call arguments, lest we generate trampolines for
1125 walk_tree (&TREE_OPERAND (t
, 1), convert_tramp_reference
, wi
, NULL
);
1129 if (!DECL_P (t
) && !TYPE_P (t
))
1137 /* Called via walk_function+walk_tree, rewrite all CALL_EXPRs that
1138 reference nested functions to make sure that the static chain is
1139 set up properly for the call. */
1142 convert_call_expr (tree
*tp
, int *walk_subtrees
, void *data
)
1144 struct walk_stmt_info
*wi
= data
;
1145 struct nesting_info
*info
= wi
->info
;
1146 tree t
= *tp
, decl
, target_context
;
1149 switch (TREE_CODE (t
))
1152 decl
= get_callee_fndecl (t
);
1155 target_context
= decl_function_context (decl
);
1156 if (target_context
&& !DECL_NO_STATIC_CHAIN (decl
))
1158 = get_static_chain (info
, target_context
, &wi
->tsi
);
1163 /* Only return and modify may contain calls. */
1174 /* Walk the nesting tree starting with ROOT, depth first. Convert all
1175 trampolines and call expressions. On the way back up, determine if
1176 a nested function actually uses its static chain; if not, remember that. */
1179 convert_all_function_calls (struct nesting_info
*root
)
1184 convert_all_function_calls (root
->inner
);
1186 walk_function (convert_tramp_reference
, root
);
1187 walk_function (convert_call_expr
, root
);
1189 /* If the function does not use a static chain, then remember that. */
1190 if (root
->outer
&& !root
->chain_decl
&& !root
->chain_field
)
1191 DECL_NO_STATIC_CHAIN (root
->context
) = 1;
1194 #ifdef ENABLE_CHECKING
1195 if (DECL_NO_STATIC_CHAIN (root
->context
))
1205 /* Do "everything else" to clean up or complete state collected by the
1206 various walking passes -- lay out the types and decls, generate code
1207 to initialize the frame decl, store critical expressions in the
1208 struct function for rtl to find. */
1211 finalize_nesting_tree_1 (struct nesting_info
*root
)
1213 tree stmt_list
= NULL
;
1214 tree context
= root
->context
;
1215 struct function
*sf
;
1217 /* If we created a non-local frame type or decl, we need to lay them
1218 out at this time. */
1219 if (root
->frame_type
)
1221 layout_type (root
->frame_type
);
1222 layout_decl (root
->frame_decl
, 0);
1225 /* If any parameters were referenced non-locally, then we need to
1226 insert a copy. Likewise, if any variables were referenced by
1227 pointer, we need to initialize the address. */
1228 if (root
->any_parm_remapped
)
1231 for (p
= DECL_ARGUMENTS (context
); p
; p
= TREE_CHAIN (p
))
1235 field
= lookup_field_for_decl (root
, p
, NO_INSERT
);
1239 if (use_pointer_in_frame (p
))
1244 y
= build (COMPONENT_REF
, TREE_TYPE (field
),
1245 root
->frame_decl
, field
);
1246 x
= build (MODIFY_EXPR
, TREE_TYPE (field
), y
, x
);
1247 append_to_statement_list (x
, &stmt_list
);
1251 /* If a chain_field was created, then it needs to be initialized
1253 if (root
->chain_field
)
1256 x
= build (COMPONENT_REF
, TREE_TYPE (root
->chain_field
),
1257 root
->frame_decl
, root
->chain_field
);
1258 x
= build (MODIFY_EXPR
, TREE_TYPE (x
), x
, get_chain_decl (root
));
1259 append_to_statement_list (x
, &stmt_list
);
1262 /* If trampolines were created, then we need to initialize them. */
1263 if (root
->any_tramp_created
)
1265 struct nesting_info
*i
;
1266 for (i
= root
->inner
; i
; i
= i
->next
)
1270 field
= lookup_tramp_for_decl (root
, i
->context
, NO_INSERT
);
1274 if (DECL_NO_STATIC_CHAIN (i
->context
))
1275 x
= null_pointer_node
;
1277 x
= build_addr (root
->frame_decl
);
1278 arg
= tree_cons (NULL
, x
, NULL
);
1280 x
= build_addr (i
->context
);
1281 arg
= tree_cons (NULL
, x
, arg
);
1283 x
= build (COMPONENT_REF
, TREE_TYPE (field
),
1284 root
->frame_decl
, field
);
1286 arg
= tree_cons (NULL
, x
, arg
);
1288 x
= implicit_built_in_decls
[BUILT_IN_INIT_TRAMPOLINE
];
1289 x
= build_function_call_expr (x
, arg
);
1291 append_to_statement_list (x
, &stmt_list
);
1295 /* If we created initialization statements, insert them. */
1298 annotate_all_with_locus (&stmt_list
,
1299 DECL_SOURCE_LOCATION (context
));
1300 append_to_statement_list (BIND_EXPR_BODY (DECL_SAVED_TREE (context
)),
1302 BIND_EXPR_BODY (DECL_SAVED_TREE (context
)) = stmt_list
;
1305 /* If a chain_decl was created, then it needs to be registered with
1306 struct function so that it gets initialized from the static chain
1307 register at the beginning of the function. */
1308 sf
= DECL_STRUCT_FUNCTION (root
->context
);
1309 sf
->static_chain_decl
= root
->chain_decl
;
1311 /* Similarly for the non-local goto save area. */
1312 if (root
->nl_goto_field
)
1314 sf
->nonlocal_goto_save_area
1315 = get_frame_field (root
, context
, root
->nl_goto_field
, NULL
);
1316 sf
->has_nonlocal_label
= 1;
1319 /* Make sure all new local variables get insertted into the
1320 proper BIND_EXPR. */
1321 if (root
->new_local_var_chain
)
1322 declare_tmp_vars (root
->new_local_var_chain
,
1323 DECL_SAVED_TREE (root
->context
));
1325 /* Dump the translated tree function. */
1326 dump_function (TDI_nested
, root
->context
);
1330 finalize_nesting_tree (struct nesting_info
*root
)
1335 finalize_nesting_tree (root
->inner
);
1336 finalize_nesting_tree_1 (root
);
1342 /* Free the data structures allocated during this pass. */
1345 free_nesting_tree (struct nesting_info
*root
)
1347 struct nesting_info
*next
;
1351 free_nesting_tree (root
->inner
);
1352 htab_delete (root
->var_map
);
1360 /* Main entry point for this pass. Process FNDECL and all of its nested
1361 subroutines and turn them into something less tightly bound. */
1364 lower_nested_functions (tree fndecl
)
1366 struct nesting_info
*root
;
1367 struct cgraph_node
*cgn
;
1369 /* If there are no nested functions, there's nothing to do. */
1370 cgn
= cgraph_node (fndecl
);
1374 root
= create_nesting_tree (cgn
);
1375 walk_all_functions (convert_nonlocal_reference
, root
);
1376 walk_all_functions (convert_local_reference
, root
);
1377 walk_all_functions (convert_nl_goto_reference
, root
);
1378 walk_all_functions (convert_nl_goto_receiver
, root
);
1379 convert_all_function_calls (root
);
1380 finalize_nesting_tree (root
);
1381 free_nesting_tree (root
);
1384 #include "gt-tree-nested.h"