* system.h: Poison NO_RECURSIVE_FUNCTION_CSE.
[official-gcc.git] / gcc / c-objc-common.c
blobf7e7c8acb104d20fe56fe2f74b453f20c3aa809a
1 /* Some code common to C and ObjC front ends.
2 Copyright (C) 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 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
9 version.
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
14 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 the Free
18 Software Foundation, 59 Temple Place - Suite 330, Boston, MA
19 02111-1307, USA. */
21 #include "config.h"
22 #include "system.h"
23 #include "coretypes.h"
24 #include "tm.h"
25 #include "tree.h"
26 #include "rtl.h"
27 #include "insn-config.h"
28 #include "integrate.h"
29 #include "expr.h"
30 #include "c-tree.h"
31 #include "function.h"
32 #include "flags.h"
33 #include "toplev.h"
34 #include "diagnostic.h"
35 #include "tree-inline.h"
36 #include "varray.h"
37 #include "ggc.h"
38 #include "langhooks.h"
39 #include "tree-mudflap.h"
40 #include "target.h"
41 #include "cgraph.h"
43 static bool c_tree_printer (pretty_printer *, text_info *);
45 bool
46 c_missing_noreturn_ok_p (tree decl)
48 /* A missing noreturn is not ok for freestanding implementations and
49 ok for the `main' function in hosted implementations. */
50 return flag_hosted && MAIN_NAME_P (DECL_ASSEMBLER_NAME (decl));
53 /* We want to inline `extern inline' functions even if this would
54 violate inlining limits. Some glibc and linux constructs depend on
55 such functions always being inlined when optimizing. */
57 int
58 c_disregard_inline_limits (tree fn)
60 if (lookup_attribute ("always_inline", DECL_ATTRIBUTES (fn)) != NULL)
61 return 1;
63 return (!flag_really_no_inline && DECL_DECLARED_INLINE_P (fn)
64 && DECL_EXTERNAL (fn));
67 int
68 c_cannot_inline_tree_fn (tree *fnp)
70 tree fn = *fnp;
71 tree t;
72 bool do_warning = (warn_inline
73 && DECL_INLINE (fn)
74 && DECL_DECLARED_INLINE_P (fn)
75 && !DECL_IN_SYSTEM_HEADER (fn));
77 if (flag_really_no_inline
78 && lookup_attribute ("always_inline", DECL_ATTRIBUTES (fn)) == NULL)
80 if (do_warning)
81 warning ("%Jfunction '%F' can never be inlined because it "
82 "is suppressed using -fno-inline", fn, fn);
83 goto cannot_inline;
86 /* Don't auto-inline anything that might not be bound within
87 this unit of translation. */
88 if (!DECL_DECLARED_INLINE_P (fn) && !targetm.binds_local_p (fn))
90 if (do_warning)
91 warning ("%Jfunction '%F' can never be inlined because it might not "
92 "be bound within this unit of translation", fn, fn);
93 goto cannot_inline;
96 if (! function_attribute_inlinable_p (fn))
98 if (do_warning)
99 warning ("%Jfunction '%F' can never be inlined because it uses "
100 "attributes conflicting with inlining", fn, fn);
101 goto cannot_inline;
104 /* If a function has pending sizes, we must not defer its
105 compilation, and we can't inline it as a tree. */
106 if (fn == current_function_decl)
108 t = get_pending_sizes ();
109 put_pending_sizes (t);
111 if (t)
113 if (do_warning)
114 warning ("%Jfunction '%F' can never be inlined because it has "
115 "pending sizes", fn, fn);
116 goto cannot_inline;
120 if (! DECL_FILE_SCOPE_P (fn))
122 /* If a nested function has pending sizes, we may have already
123 saved them. */
124 if (DECL_LANG_SPECIFIC (fn)->pending_sizes)
126 if (do_warning)
127 warning ("%Jnested function '%F' can never be inlined because it "
128 "has possibly saved pending sizes", fn, fn);
129 goto cannot_inline;
133 return 0;
135 cannot_inline:
136 DECL_UNINLINABLE (fn) = 1;
137 return 1;
140 /* Called from check_global_declarations. */
142 bool
143 c_warn_unused_global_decl (tree decl)
145 if (TREE_CODE (decl) == FUNCTION_DECL && DECL_DECLARED_INLINE_P (decl))
146 return false;
147 if (DECL_IN_SYSTEM_HEADER (decl))
148 return false;
150 return true;
153 /* Initialization common to C and Objective-C front ends. */
154 bool
155 c_objc_common_init (void)
157 static const enum tree_code stmt_codes[] = {
158 c_common_stmt_codes
161 INIT_STATEMENT_CODES (stmt_codes);
163 c_init_decl_processing ();
165 if (c_common_init () == false)
166 return false;
168 /* These were not defined in the Objective-C front end, but I'm
169 putting them here anyway. The diagnostic format decoder might
170 want an enhanced ObjC implementation. */
171 diagnostic_format_decoder (global_dc) = &c_tree_printer;
173 /* If still unspecified, make it match -std=c99
174 (allowing for -pedantic-errors). */
175 if (mesg_implicit_function_declaration < 0)
177 if (flag_isoc99)
178 mesg_implicit_function_declaration = flag_pedantic_errors ? 2 : 1;
179 else
180 mesg_implicit_function_declaration = 0;
183 return true;
186 /* Synthesize a function which calls all the global ctors or global dtors
187 in this file. */
188 static void
189 build_cdtor (int method_type, tree cdtors)
191 tree fnname = get_file_function_name (method_type);
192 tree body;
193 tree scope;
194 tree block;
196 start_function (void_list_node,
197 build_nt (CALL_EXPR, fnname,
198 tree_cons (NULL_TREE, NULL_TREE, void_list_node),
199 NULL_TREE),
200 NULL_TREE);
201 store_parm_decls ();
203 body = c_begin_compound_stmt ();
204 add_scope_stmt (/*begin_p=*/1, /*partial_p=*/0);
206 for (; cdtors; cdtors = TREE_CHAIN (cdtors))
207 add_stmt (build_stmt (EXPR_STMT,
208 build_function_call (TREE_VALUE (cdtors), 0)));
210 scope = add_scope_stmt (/*begin_p=*/0, /*partial_p=*/0);
212 block = make_node (BLOCK);
213 SCOPE_STMT_BLOCK (TREE_PURPOSE (scope)) = block;
214 SCOPE_STMT_BLOCK (TREE_VALUE (scope)) = block;
216 RECHAIN_STMTS (body, COMPOUND_BODY (body));
218 finish_function ();
221 /* Called at end of parsing, but before end-of-file processing. */
223 void
224 c_objc_common_finish_file (void)
226 if (pch_file)
227 c_common_write_pch ();
229 if (static_ctors)
231 build_cdtor ('I', static_ctors);
232 static_ctors = 0;
234 if (static_dtors)
236 build_cdtor ('D', static_dtors);
237 static_dtors = 0;
240 cgraph_finalize_compilation_unit ();
241 cgraph_optimize ();
243 if (flag_mudflap)
244 mudflap_finish_file ();
247 /* Called during diagnostic message formatting process to print a
248 source-level entity onto BUFFER. The meaning of the format specifiers
249 is as follows:
250 %D: a general decl,
251 %E: An expression,
252 %F: a function declaration,
253 %T: a type.
255 These format specifiers form a subset of the format specifiers set used
256 by the C++ front-end.
257 Please notice when called, the `%' part was already skipped by the
258 diagnostic machinery. */
259 static bool
260 c_tree_printer (pretty_printer *pp, text_info *text)
262 tree t = va_arg (*text->args_ptr, tree);
263 const char *n = "({anonymous})";
265 switch (*text->format_spec)
267 case 'D':
268 case 'F':
269 if (DECL_NAME (t))
270 n = lang_hooks.decl_printable_name (t, 2);
271 break;
273 case 'T':
274 if (TREE_CODE (t) == TYPE_DECL)
276 if (DECL_NAME (t))
277 n = lang_hooks.decl_printable_name (t, 2);
279 else
281 t = TYPE_NAME (t);
282 if (t)
283 n = IDENTIFIER_POINTER (t);
285 break;
287 case 'E':
288 if (TREE_CODE (t) == IDENTIFIER_NODE)
289 n = IDENTIFIER_POINTER (t);
290 else
291 return false;
292 break;
294 default:
295 return false;
298 pp_string (pp, n);
299 return true;
302 tree
303 c_objc_common_truthvalue_conversion (tree expr)
305 retry:
306 switch (TREE_CODE (TREE_TYPE (expr)))
308 case ARRAY_TYPE:
309 expr = default_conversion (expr);
310 if (TREE_CODE (TREE_TYPE (expr)) != ARRAY_TYPE)
311 goto retry;
313 error ("used array that cannot be converted to pointer where scalar is required");
314 return error_mark_node;
316 case RECORD_TYPE:
317 error ("used struct type value where scalar is required");
318 return error_mark_node;
320 case UNION_TYPE:
321 error ("used union type value where scalar is required");
322 return error_mark_node;
323 default:
324 break;
327 return c_common_truthvalue_conversion (expr);