1 /* Control and data flow functions for trees.
2 Copyright 2001, 2002, 2003, 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"
26 #include "tree-inline.h"
28 #include "langhooks.h"
36 /* Called to move the SAVE_EXPRs for parameter declarations in a
37 nested function into the nested function. DATA is really the
38 nested FUNCTION_DECL. */
41 set_save_expr_context (tree
*tp
,
45 if (TREE_CODE (*tp
) == SAVE_EXPR
&& !SAVE_EXPR_CONTEXT (*tp
))
46 SAVE_EXPR_CONTEXT (*tp
) = (tree
) data
;
47 /* Do not walk back into the SAVE_EXPR_CONTEXT; that will cause
49 else if (DECL_P (*tp
))
55 /* Clear out the DECL_RTL for the non-static local variables in BLOCK and
56 its sub-blocks. DATA is the decl of the function being processed. */
59 clear_decl_rtl (tree
*tp
, int *walk_subtrees ATTRIBUTE_UNUSED
, void *data
)
61 bool nonstatic_p
, local_p
;
64 switch (TREE_CODE (t
))
67 nonstatic_p
= !TREE_STATIC (t
) && !DECL_EXTERNAL (t
);
68 local_p
= decl_function_context (t
) == data
;
74 local_p
= decl_function_context (t
) == data
;
78 nonstatic_p
= local_p
= true;
82 nonstatic_p
= local_p
= false;
86 if (nonstatic_p
&& local_p
)
87 SET_DECL_RTL (t
, NULL
);
92 /* For functions-as-trees languages, this performs all optimization and
93 compilation for FNDECL. */
96 tree_rest_of_compilation (tree fndecl
, bool nested_p
)
100 timevar_push (TV_EXPAND
);
102 if (flag_unit_at_a_time
&& !cgraph_global_info_ready
)
105 /* Initialize the RTL code for the function. */
106 current_function_decl
= fndecl
;
107 saved_loc
= input_location
;
108 input_location
= DECL_SOURCE_LOCATION (fndecl
);
109 init_function_start (fndecl
);
111 /* This function is being processed in whole-function mode. */
112 cfun
->x_whole_function_mode_p
= 1;
114 /* Even though we're inside a function body, we still don't want to
115 call expand_expr to calculate the size of a variable-sized array.
116 We haven't necessarily assigned RTL to all variables yet, so it's
117 not safe to try to expand expressions involving them. */
118 immediate_size_expand
= 0;
119 cfun
->x_dont_save_pending_sizes_p
= 1;
121 /* If the function has a variably modified type, there may be
122 SAVE_EXPRs in the parameter types. Their context must be set to
123 refer to this function; they cannot be expanded in the containing
125 if (decl_function_context (fndecl
)
126 && variably_modified_type_p (TREE_TYPE (fndecl
)))
127 walk_tree (&TREE_TYPE (fndecl
), set_save_expr_context
, fndecl
,
130 /* Set up parameters and prepare for return, for the function. */
131 expand_function_start (fndecl
, 0);
133 /* Allow language dialects to perform special processing. */
134 lang_hooks
.rtl_expand
.start ();
136 /* If this function is `main', emit a call to `__main'
137 to run global initializers, etc. */
138 if (DECL_NAME (fndecl
)
139 && MAIN_NAME_P (DECL_NAME (fndecl
))
140 && DECL_FILE_SCOPE_P (fndecl
))
141 expand_main_function ();
143 /* Generate the RTL for this function. */
144 lang_hooks
.rtl_expand
.stmt (DECL_SAVED_TREE (fndecl
));
146 /* We hard-wired immediate_size_expand to zero above.
147 expand_function_end will decrement this variable. So, we set the
148 variable to one here, so that after the decrement it will remain
150 immediate_size_expand
= 1;
152 /* Allow language dialects to perform special processing. */
153 lang_hooks
.rtl_expand
.end ();
155 /* Generate rtl for function exit. */
156 expand_function_end ();
158 /* If this is a nested function, protect the local variables in the stack
159 above us from being collected while we're compiling this function. */
163 /* There's no need to defer outputting this function any more; we
164 know we want to output it. */
165 DECL_DEFER_OUTPUT (fndecl
) = 0;
167 /* Run the optimizers and output the assembler code for this function. */
168 rest_of_compilation (fndecl
);
170 /* Undo the GC context switch. */
174 /* If requested, warn about function definitions where the function will
175 return a value (usually of some struct or union type) which itself will
176 take up a lot of stack space. */
177 if (warn_larger_than
&& !DECL_EXTERNAL (fndecl
) && TREE_TYPE (fndecl
))
179 tree ret_type
= TREE_TYPE (TREE_TYPE (fndecl
));
181 if (ret_type
&& TYPE_SIZE_UNIT (ret_type
)
182 && TREE_CODE (TYPE_SIZE_UNIT (ret_type
)) == INTEGER_CST
183 && 0 < compare_tree_int (TYPE_SIZE_UNIT (ret_type
),
186 unsigned int size_as_int
187 = TREE_INT_CST_LOW (TYPE_SIZE_UNIT (ret_type
));
189 if (compare_tree_int (TYPE_SIZE_UNIT (ret_type
), size_as_int
) == 0)
190 warning ("%Jsize of return value of '%D' is %u bytes",
191 fndecl
, fndecl
, size_as_int
);
193 warning ("%Jsize of return value of '%D' is larger than %wd bytes",
194 fndecl
, fndecl
, larger_than_size
);
198 /* Since we don't need the RTL for this function anymore, stop pointing to
199 it. That's especially important for LABEL_DECLs, since you can reach all
200 the instructions in the function from the CODE_LABEL stored in the
201 DECL_RTL for the LABEL_DECL. Walk the BLOCK-tree, clearing DECL_RTL for
202 LABEL_DECLs and non-static local variables. Note that we must check the
203 context of the variables, otherwise processing a nested function can kill
204 the rtl of a variable from an outer function. */
205 walk_tree_without_duplicates (&DECL_SAVED_TREE (fndecl
),
208 if (!cgraph_function_possibly_inlined_p (fndecl
))
210 DECL_SAVED_TREE (fndecl
) = NULL
;
211 if (DECL_STRUCT_FUNCTION (fndecl
) == 0
212 && !cgraph_node (fndecl
)->origin
)
214 /* Stop pointing to the local nodes about to be freed.
215 But DECL_INITIAL must remain nonzero so we know this
216 was an actual function definition.
217 For a nested function, this is done in c_pop_function_context.
218 If rest_of_compilation set this to 0, leave it 0. */
219 if (DECL_INITIAL (fndecl
) != 0)
220 DECL_INITIAL (fndecl
) = error_mark_node
;
224 input_location
= saved_loc
;
226 timevar_pop (TV_EXPAND
);