1 /* Some code common to C and ObjC front ends.
2 Copyright (C) 2001 Free Software Foundation, Inc.
4 This file is part of GCC.
6 GCC is free software; you can redistribute it and/or modify it under
7 the terms of the GNU General Public License as published by the Free
8 Software Foundation; either version 2, or (at your option) any later
11 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
12 WARRANTY; without even the implied warranty of MERCHANTABILITY or
13 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
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 the Free
18 Software Foundation, 59 Temple Place - Suite 330, Boston, MA
25 #include "insn-config.h"
26 #include "integrate.h"
32 #include "diagnostic.h"
33 #include "tree-inline.h"
36 #include "langhooks.h"
38 static int c_tree_printer
PARAMS ((output_buffer
*));
39 static tree inline_forbidden_p
PARAMS ((tree
*, int *, void *));
40 static void expand_deferred_fns
PARAMS ((void));
41 static tree start_cdtor
PARAMS ((int));
42 static void finish_cdtor
PARAMS ((tree
));
44 static varray_type deferred_fns
;
47 c_missing_noreturn_ok_p (decl
)
50 /* A missing noreturn is not ok for freestanding implementations and
51 ok for the `main' function in hosted implementations. */
52 return flag_hosted
&& MAIN_NAME_P (DECL_ASSEMBLER_NAME (decl
));
55 /* We want to inline `extern inline' functions even if this would
56 violate inlining limits. Some glibc and linux constructs depend on
57 such functions always being inlined when optimizing. */
60 c_disregard_inline_limits (fn
)
63 if (lookup_attribute ("always_inline", DECL_ATTRIBUTES (fn
)) != NULL
)
66 return DECL_DECLARED_INLINE_P (fn
) && DECL_EXTERNAL (fn
);
70 inline_forbidden_p (nodep
, walk_subtrees
, fn
)
72 int *walk_subtrees ATTRIBUTE_UNUSED
;
78 switch (TREE_CODE (node
))
81 t
= get_callee_fndecl (node
);
86 /* We cannot inline functions that call setjmp. */
87 if (setjmp_call_p (t
))
90 switch (DECL_FUNCTION_CODE (t
))
92 /* We cannot inline functions that take a variable number of
94 case BUILT_IN_VARARGS_START
:
95 case BUILT_IN_STDARG_START
:
97 /* Functions that need information about the address of the
98 caller can't (shouldn't?) be inlined. */
99 case BUILT_IN_RETURN_ADDRESS
:
110 /* We cannot inline functions that contain other functions. */
111 if (TREE_CODE (TREE_OPERAND (node
, 0)) == FUNCTION_DECL
112 && DECL_INITIAL (TREE_OPERAND (node
, 0)))
118 t
= TREE_OPERAND (node
, 0);
120 /* We will not inline a function which uses computed goto. The
121 addresses of its local labels, which may be tucked into
122 global storage, are of course not constant across
123 instantiations, which causes unexpected behaviour. */
124 if (TREE_CODE (t
) != LABEL_DECL
)
127 /* We cannot inline a nested function that jumps to a nonlocal
129 if (TREE_CODE (t
) == LABEL_DECL
130 && DECL_CONTEXT (t
) && DECL_CONTEXT (t
) != fn
)
143 c_cannot_inline_tree_fn (fnp
)
150 && lookup_attribute ("always_inline", DECL_ATTRIBUTES (fn
)) == NULL
)
153 if (! function_attribute_inlinable_p (fn
))
155 DECL_UNINLINABLE (fn
) = 1;
159 /* If a function has pending sizes, we must not defer its
160 compilation, and we can't inline it as a tree. */
161 if (fn
== current_function_decl
)
163 t
= get_pending_sizes ();
164 put_pending_sizes (t
);
168 DECL_UNINLINABLE (fn
) = 1;
173 if (DECL_CONTEXT (fn
))
175 /* If a nested function has pending sizes, we may have already
177 if (DECL_LANG_SPECIFIC (fn
)->pending_sizes
)
179 DECL_UNINLINABLE (fn
) = 1;
185 /* We rely on the fact that this function is called upfront,
186 just before we start expanding a function. If FN is active
187 (i.e., it's the current_function_decl or a parent thereof),
188 we have to walk FN's saved tree. Otherwise, we can safely
189 assume we have done it before and, if we didn't mark it as
190 uninlinable (in which case we wouldn't have been called), it
191 is inlinable. Unfortunately, this strategy doesn't work for
192 nested functions, because they're only expanded as part of
193 their enclosing functions, so the inlinability test comes in
195 t
= current_function_decl
;
198 t
= DECL_CONTEXT (t
);
203 if (walk_tree (&DECL_SAVED_TREE (fn
), inline_forbidden_p
, fn
, NULL
))
205 DECL_UNINLINABLE (fn
) = 1;
212 /* Initialization common to C and Objective-C front ends. */
214 c_objc_common_init (filename
)
215 const char *filename
;
217 c_init_decl_processing ();
219 filename
= c_common_init (filename
);
221 lang_unsafe_for_reeval
= c_unsafe_for_reeval
;
223 save_lang_status
= &push_c_function_context
;
224 restore_lang_status
= &pop_c_function_context
;
225 mark_lang_status
= &mark_c_function_context
;
226 lang_expand_expr
= c_expand_expr
;
227 lang_expand_decl_stmt
= c_expand_decl_stmt
;
229 /* These were not defined in the Objective-C front end, but I'm
230 putting them here anyway. The diagnostic format decoder might
231 want an enhanced ObjC implementation. */
232 diagnostic_format_decoder (global_dc
) = &c_tree_printer
;
233 lang_missing_noreturn_ok_p
= &c_missing_noreturn_ok_p
;
235 /* If still unspecified, make it match -std=c99
236 (allowing for -pedantic-errors). */
237 if (mesg_implicit_function_declaration
< 0)
240 mesg_implicit_function_declaration
= flag_pedantic_errors
? 2 : 1;
242 mesg_implicit_function_declaration
= 0;
245 VARRAY_TREE_INIT (deferred_fns
, 32, "deferred_fns");
246 ggc_add_tree_varray_root (&deferred_fns
, 1);
251 /* Register a function tree, so that its optimization and conversion
252 to RTL is only done at the end of the compilation. */
258 VARRAY_PUSH_TREE (deferred_fns
, fn
);
263 /* Expand deferred functions for C and ObjC. */
266 expand_deferred_fns ()
270 for (i
= 0; i
< VARRAY_ACTIVE_SIZE (deferred_fns
); i
++)
272 tree decl
= VARRAY_TREE (deferred_fns
, i
);
274 if (! TREE_ASM_WRITTEN (decl
))
276 /* For static inline functions, delay the decision whether to
277 emit them or not until wrapup_global_declarations. */
278 if (! TREE_PUBLIC (decl
))
279 DECL_DEFER_OUTPUT (decl
) = 1;
280 c_expand_deferred_function (decl
);
284 VARRAY_FREE (deferred_fns
);
288 start_cdtor (method_type
)
291 tree fnname
= get_file_function_name (method_type
);
292 tree void_list_node_1
= build_tree_list (NULL_TREE
, void_type_node
);
295 start_function (void_list_node_1
,
296 build_nt (CALL_EXPR
, fnname
,
297 tree_cons (NULL_TREE
, NULL_TREE
, void_list_node_1
),
302 current_function_cannot_inline
303 = "static constructors and destructors cannot be inlined";
305 body
= c_begin_compound_stmt ();
309 add_scope_stmt (/*begin_p=*/1, /*partial_p=*/0);
321 scope
= add_scope_stmt (/*begin_p=*/0, /*partial_p=*/0);
322 block
= poplevel (0, 0, 0);
323 SCOPE_STMT_BLOCK (TREE_PURPOSE (scope
)) = block
;
324 SCOPE_STMT_BLOCK (TREE_VALUE (scope
)) = block
;
326 RECHAIN_STMTS (body
, COMPOUND_BODY (body
));
331 /* Called at end of parsing, but before end-of-file processing. */
334 c_objc_common_finish_file ()
336 expand_deferred_fns ();
340 tree body
= start_cdtor ('I');
342 for (; static_ctors
; static_ctors
= TREE_CHAIN (static_ctors
))
343 c_expand_expr_stmt (build_function_call (TREE_VALUE (static_ctors
),
351 tree body
= start_cdtor ('D');
353 for (; static_dtors
; static_dtors
= TREE_CHAIN (static_dtors
))
354 c_expand_expr_stmt (build_function_call (TREE_VALUE (static_dtors
),
362 FILE *stream
= dump_begin (TDI_all
, &flags
);
366 dump_node (getdecls (), flags
& ~TDF_SLIM
, stream
);
367 dump_end (TDI_all
, stream
);
372 /* Called during diagnostic message formatting process to print a
373 source-level entity onto BUFFER. The meaning of the format specifiers
376 %F: a function declaration,
379 These format specifiers form a subset of the format specifiers set used
380 by the C++ front-end.
381 Please notice when called, the `%' part was already skipped by the
382 diagnostic machinery. */
384 c_tree_printer (buffer
)
385 output_buffer
*buffer
;
387 tree t
= va_arg (output_buffer_format_args (buffer
), tree
);
389 switch (*output_buffer_text_cursor (buffer
))
395 const char *n
= DECL_NAME (t
)
396 ? (*lang_hooks
.decl_printable_name
) (t
, 2)
398 output_add_string (buffer
, n
);