1 /* Some code common to C and ObjC front ends.
2 Copyright (C) 2001, 2002 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
23 #include "coretypes.h"
27 #include "insn-config.h"
28 #include "integrate.h"
34 #include "diagnostic.h"
35 #include "tree-inline.h"
38 #include "langhooks.h"
41 static bool c_tree_printer
PARAMS ((output_buffer
*, text_info
*));
42 static tree inline_forbidden_p
PARAMS ((tree
*, int *, void *));
43 static void expand_deferred_fns
PARAMS ((void));
44 static tree start_cdtor
PARAMS ((int));
45 static void finish_cdtor
PARAMS ((tree
));
47 static GTY(()) varray_type deferred_fns
;
50 c_missing_noreturn_ok_p (decl
)
53 /* A missing noreturn is not ok for freestanding implementations and
54 ok for the `main' function in hosted implementations. */
55 return flag_hosted
&& MAIN_NAME_P (DECL_ASSEMBLER_NAME (decl
));
58 /* We want to inline `extern inline' functions even if this would
59 violate inlining limits. Some glibc and linux constructs depend on
60 such functions always being inlined when optimizing. */
63 c_disregard_inline_limits (fn
)
66 if (lookup_attribute ("always_inline", DECL_ATTRIBUTES (fn
)) != NULL
)
69 return DECL_DECLARED_INLINE_P (fn
) && DECL_EXTERNAL (fn
);
73 inline_forbidden_p (nodep
, walk_subtrees
, fn
)
75 int *walk_subtrees ATTRIBUTE_UNUSED
;
81 switch (TREE_CODE (node
))
84 t
= get_callee_fndecl (node
);
89 /* We cannot inline functions that call setjmp. */
90 if (setjmp_call_p (t
))
93 switch (DECL_FUNCTION_CODE (t
))
95 /* We cannot inline functions that take a variable number of
97 case BUILT_IN_VA_START
:
98 case BUILT_IN_STDARG_START
:
100 /* Functions that need information about the address of the
101 caller can't (shouldn't?) be inlined. */
102 case BUILT_IN_RETURN_ADDRESS
:
113 /* We cannot inline functions that contain other functions. */
114 if (TREE_CODE (TREE_OPERAND (node
, 0)) == FUNCTION_DECL
115 && DECL_INITIAL (TREE_OPERAND (node
, 0)))
121 t
= TREE_OPERAND (node
, 0);
123 /* We will not inline a function which uses computed goto. The
124 addresses of its local labels, which may be tucked into
125 global storage, are of course not constant across
126 instantiations, which causes unexpected behavior. */
127 if (TREE_CODE (t
) != LABEL_DECL
)
130 /* We cannot inline a nested function that jumps to a nonlocal
132 if (TREE_CODE (t
) == LABEL_DECL
133 && DECL_CONTEXT (t
) && DECL_CONTEXT (t
) != fn
)
140 /* We cannot inline a function of the form
142 void F (int i) { struct S { int ar[i]; } s; }
144 Attempting to do so produces a catch-22 in tree-inline.c.
145 If walk_tree examines the TYPE_FIELDS chain of RECORD_TYPE/
146 UNION_TYPE nodes, then it goes into infinite recursion on a
147 structure containing a pointer to its own type. If it doesn't,
148 then the type node for S doesn't get adjusted properly when
149 F is inlined, and we abort in find_function_data. */
150 for (t
= TYPE_FIELDS (node
); t
; t
= TREE_CHAIN (t
))
151 if (variably_modified_type_p (TREE_TYPE (t
)))
162 c_cannot_inline_tree_fn (fnp
)
168 if (flag_really_no_inline
169 && lookup_attribute ("always_inline", DECL_ATTRIBUTES (fn
)) == NULL
)
172 /* Don't auto-inline anything that might not be bound within
173 this unit of translation. */
174 if (!DECL_DECLARED_INLINE_P (fn
) && !(*targetm
.binds_local_p
) (fn
))
177 if (! function_attribute_inlinable_p (fn
))
180 /* If a function has pending sizes, we must not defer its
181 compilation, and we can't inline it as a tree. */
182 if (fn
== current_function_decl
)
184 t
= get_pending_sizes ();
185 put_pending_sizes (t
);
191 if (DECL_CONTEXT (fn
))
193 /* If a nested function has pending sizes, we may have already
195 if (DECL_LANG_SPECIFIC (fn
)->pending_sizes
)
200 /* We rely on the fact that this function is called upfront,
201 just before we start expanding a function. If FN is active
202 (i.e., it's the current_function_decl or a parent thereof),
203 we have to walk FN's saved tree. Otherwise, we can safely
204 assume we have done it before and, if we didn't mark it as
205 uninlinable (in which case we wouldn't have been called), it
206 is inlinable. Unfortunately, this strategy doesn't work for
207 nested functions, because they're only expanded as part of
208 their enclosing functions, so the inlinability test comes in
210 t
= current_function_decl
;
213 t
= DECL_CONTEXT (t
);
218 if (walk_tree (&DECL_SAVED_TREE (fn
), inline_forbidden_p
, fn
, NULL
))
224 DECL_UNINLINABLE (fn
) = 1;
228 /* Called from check_global_declarations. */
231 c_warn_unused_global_decl (decl
)
234 if (TREE_CODE (decl
) == FUNCTION_DECL
&& DECL_DECLARED_INLINE_P (decl
))
236 if (DECL_IN_SYSTEM_HEADER (decl
))
242 /* Initialization common to C and Objective-C front ends. */
244 c_objc_common_init (filename
)
245 const char *filename
;
247 c_init_decl_processing ();
249 filename
= c_common_init (filename
);
250 if (filename
== NULL
)
253 lang_expand_decl_stmt
= c_expand_decl_stmt
;
255 /* These were not defined in the Objective-C front end, but I'm
256 putting them here anyway. The diagnostic format decoder might
257 want an enhanced ObjC implementation. */
258 diagnostic_format_decoder (global_dc
) = &c_tree_printer
;
259 lang_missing_noreturn_ok_p
= &c_missing_noreturn_ok_p
;
261 /* If still unspecified, make it match -std=c99
262 (allowing for -pedantic-errors). */
263 if (mesg_implicit_function_declaration
< 0)
266 mesg_implicit_function_declaration
= flag_pedantic_errors
? 2 : 1;
268 mesg_implicit_function_declaration
= 0;
271 VARRAY_TREE_INIT (deferred_fns
, 32, "deferred_fns");
276 /* Register a function tree, so that its optimization and conversion
277 to RTL is only done at the end of the compilation. */
283 VARRAY_PUSH_TREE (deferred_fns
, fn
);
288 /* Expand deferred functions for C and ObjC. */
291 expand_deferred_fns ()
295 for (i
= 0; i
< VARRAY_ACTIVE_SIZE (deferred_fns
); i
++)
297 tree decl
= VARRAY_TREE (deferred_fns
, i
);
299 if (! TREE_ASM_WRITTEN (decl
))
301 /* For static inline functions, delay the decision whether to
302 emit them or not until wrapup_global_declarations. */
303 if (! TREE_PUBLIC (decl
))
304 DECL_DEFER_OUTPUT (decl
) = 1;
305 c_expand_deferred_function (decl
);
313 start_cdtor (method_type
)
316 tree fnname
= get_file_function_name (method_type
);
317 tree void_list_node_1
= build_tree_list (NULL_TREE
, void_type_node
);
320 start_function (void_list_node_1
,
321 build_nt (CALL_EXPR
, fnname
,
322 tree_cons (NULL_TREE
, NULL_TREE
, void_list_node_1
),
327 current_function_cannot_inline
328 = "static constructors and destructors cannot be inlined";
330 body
= c_begin_compound_stmt ();
334 add_scope_stmt (/*begin_p=*/1, /*partial_p=*/0);
346 scope
= add_scope_stmt (/*begin_p=*/0, /*partial_p=*/0);
347 block
= poplevel (0, 0, 0);
348 SCOPE_STMT_BLOCK (TREE_PURPOSE (scope
)) = block
;
349 SCOPE_STMT_BLOCK (TREE_VALUE (scope
)) = block
;
351 RECHAIN_STMTS (body
, COMPOUND_BODY (body
));
353 finish_function (0, 0);
356 /* Called at end of parsing, but before end-of-file processing. */
359 c_objc_common_finish_file ()
362 c_common_write_pch ();
364 expand_deferred_fns ();
368 tree body
= start_cdtor ('I');
370 for (; static_ctors
; static_ctors
= TREE_CHAIN (static_ctors
))
371 c_expand_expr_stmt (build_function_call (TREE_VALUE (static_ctors
),
379 tree body
= start_cdtor ('D');
381 for (; static_dtors
; static_dtors
= TREE_CHAIN (static_dtors
))
382 c_expand_expr_stmt (build_function_call (TREE_VALUE (static_dtors
),
390 FILE *stream
= dump_begin (TDI_all
, &flags
);
394 dump_node (getdecls (), flags
& ~TDF_SLIM
, stream
);
395 dump_end (TDI_all
, stream
);
400 /* Called during diagnostic message formatting process to print a
401 source-level entity onto BUFFER. The meaning of the format specifiers
404 %F: a function declaration,
407 These format specifiers form a subset of the format specifiers set used
408 by the C++ front-end.
409 Please notice when called, the `%' part was already skipped by the
410 diagnostic machinery. */
412 c_tree_printer (buffer
, text
)
413 output_buffer
*buffer
;
416 tree t
= va_arg (*text
->args_ptr
, tree
);
418 switch (*text
->format_spec
)
424 const char *n
= DECL_NAME (t
)
425 ? (*lang_hooks
.decl_printable_name
) (t
, 2)
427 output_add_string (buffer
, n
);
436 #include "gt-c-objc-common.h"