2005-01-20 Michael Koch <konqueror@gmx.de>
[official-gcc.git] / gcc / c-objc-common.c
blobf1faeefebf2f24fceeea2697cab11790ee53a15f
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 "c-tree.h"
30 #include "function.h"
31 #include "flags.h"
32 #include "toplev.h"
33 #include "diagnostic.h"
34 #include "tree-inline.h"
35 #include "varray.h"
36 #include "ggc.h"
37 #include "langhooks.h"
38 #include "tree-mudflap.h"
39 #include "target.h"
40 #include "cgraph.h"
42 static bool c_tree_printer (pretty_printer *, text_info *);
44 bool
45 c_missing_noreturn_ok_p (tree decl)
47 /* A missing noreturn is not ok for freestanding implementations and
48 ok for the `main' function in hosted implementations. */
49 return flag_hosted && MAIN_NAME_P (DECL_ASSEMBLER_NAME (decl));
52 /* We want to inline `extern inline' functions even if this would
53 violate inlining limits. Some glibc and linux constructs depend on
54 such functions always being inlined when optimizing. */
56 int
57 c_disregard_inline_limits (tree fn)
59 if (lookup_attribute ("always_inline", DECL_ATTRIBUTES (fn)) != NULL)
60 return 1;
62 return (!flag_really_no_inline && DECL_DECLARED_INLINE_P (fn)
63 && DECL_EXTERNAL (fn));
66 int
67 c_cannot_inline_tree_fn (tree *fnp)
69 tree fn = *fnp;
70 tree t;
71 bool do_warning = (warn_inline
72 && DECL_INLINE (fn)
73 && DECL_DECLARED_INLINE_P (fn)
74 && !DECL_IN_SYSTEM_HEADER (fn));
76 if (flag_really_no_inline
77 && lookup_attribute ("always_inline", DECL_ATTRIBUTES (fn)) == NULL)
79 if (do_warning)
80 warning ("%Jfunction '%F' can never be inlined because it "
81 "is suppressed using -fno-inline", fn, fn);
82 goto cannot_inline;
85 /* Don't auto-inline anything that might not be bound within
86 this unit of translation. */
87 if (!DECL_DECLARED_INLINE_P (fn) && !targetm.binds_local_p (fn))
89 if (do_warning)
90 warning ("%Jfunction '%F' can never be inlined because it might not "
91 "be bound within this unit of translation", fn, fn);
92 goto cannot_inline;
95 if (! function_attribute_inlinable_p (fn))
97 if (do_warning)
98 warning ("%Jfunction '%F' can never be inlined because it uses "
99 "attributes conflicting with inlining", fn, fn);
100 goto cannot_inline;
103 /* If a function has pending sizes, we must not defer its
104 compilation, and we can't inline it as a tree. */
105 if (fn == current_function_decl)
107 t = get_pending_sizes ();
108 put_pending_sizes (t);
110 if (t)
112 if (do_warning)
113 warning ("%Jfunction '%F' can never be inlined because it has "
114 "pending sizes", fn, fn);
115 goto cannot_inline;
119 if (! DECL_FILE_SCOPE_P (fn))
121 /* If a nested function has pending sizes, we may have already
122 saved them. */
123 if (DECL_LANG_SPECIFIC (fn)->pending_sizes)
125 if (do_warning)
126 warning ("%Jnested function '%F' can never be inlined because it "
127 "has possibly saved pending sizes", fn, fn);
128 goto cannot_inline;
132 return 0;
134 cannot_inline:
135 DECL_UNINLINABLE (fn) = 1;
136 return 1;
139 /* Called from check_global_declarations. */
141 bool
142 c_warn_unused_global_decl (tree decl)
144 if (TREE_CODE (decl) == FUNCTION_DECL && DECL_DECLARED_INLINE_P (decl))
145 return false;
146 if (DECL_IN_SYSTEM_HEADER (decl))
147 return false;
149 return true;
152 /* Initialization common to C and Objective-C front ends. */
153 bool
154 c_objc_common_init (void)
156 static const enum tree_code stmt_codes[] = {
157 c_common_stmt_codes
160 INIT_STATEMENT_CODES (stmt_codes);
162 c_init_decl_processing ();
164 if (c_common_init () == false)
165 return false;
167 /* These were not defined in the Objective-C front end, but I'm
168 putting them here anyway. The diagnostic format decoder might
169 want an enhanced ObjC implementation. */
170 diagnostic_format_decoder (global_dc) = &c_tree_printer;
172 /* If still unspecified, make it match -std=c99
173 (allowing for -pedantic-errors). */
174 if (mesg_implicit_function_declaration < 0)
176 if (flag_isoc99)
177 mesg_implicit_function_declaration = flag_pedantic_errors ? 2 : 1;
178 else
179 mesg_implicit_function_declaration = 0;
182 return true;
185 /* Synthesize a function which calls all the global ctors or global dtors
186 in this file. */
187 static void
188 build_cdtor (int method_type, tree cdtors)
190 tree fnname = get_file_function_name (method_type);
191 tree cs;
193 start_function (void_list_node,
194 build_nt (CALL_EXPR, fnname,
195 tree_cons (NULL_TREE, NULL_TREE, void_list_node),
196 NULL_TREE),
197 NULL_TREE);
198 store_parm_decls ();
200 cs = c_begin_compound_stmt (true);
202 for (; cdtors; cdtors = TREE_CHAIN (cdtors))
203 add_stmt (build_function_call (TREE_VALUE (cdtors), 0));
205 add_stmt (c_end_compound_stmt (cs, true));
207 finish_function ();
210 /* Called at end of parsing, but before end-of-file processing. */
212 void
213 c_objc_common_finish_file (void)
215 if (pch_file)
216 c_common_write_pch ();
218 if (static_ctors)
220 build_cdtor ('I', static_ctors);
221 static_ctors = 0;
223 if (static_dtors)
225 build_cdtor ('D', static_dtors);
226 static_dtors = 0;
229 cgraph_finalize_compilation_unit ();
230 cgraph_optimize ();
232 if (flag_mudflap)
233 mudflap_finish_file ();
236 /* Called during diagnostic message formatting process to print a
237 source-level entity onto BUFFER. The meaning of the format specifiers
238 is as follows:
239 %D: a general decl,
240 %E: An expression,
241 %F: a function declaration,
242 %T: a type.
244 These format specifiers form a subset of the format specifiers set used
245 by the C++ front-end.
246 Please notice when called, the `%' part was already skipped by the
247 diagnostic machinery. */
248 static bool
249 c_tree_printer (pretty_printer *pp, text_info *text)
251 tree t = va_arg (*text->args_ptr, tree);
252 const char *n = "({anonymous})";
254 switch (*text->format_spec)
256 case 'D':
257 case 'F':
258 if (DECL_NAME (t))
259 n = lang_hooks.decl_printable_name (t, 2);
260 break;
262 case 'T':
263 if (TYPE_P (t))
264 t = TYPE_NAME (t);
265 if (t && TREE_CODE (t) == TYPE_DECL)
267 if (DECL_NAME (t))
268 n = lang_hooks.decl_printable_name (t, 2);
270 else if (t)
271 n = IDENTIFIER_POINTER (t);
272 break;
274 case 'E':
275 if (TREE_CODE (t) == IDENTIFIER_NODE)
276 n = IDENTIFIER_POINTER (t);
277 else
278 return false;
279 break;
281 default:
282 return false;
285 pp_string (pp, n);
286 return true;
289 tree
290 c_objc_common_truthvalue_conversion (tree expr)
292 retry:
293 switch (TREE_CODE (TREE_TYPE (expr)))
295 case ARRAY_TYPE:
296 expr = default_conversion (expr);
297 if (TREE_CODE (TREE_TYPE (expr)) != ARRAY_TYPE)
298 goto retry;
300 error ("used array that cannot be converted to pointer where scalar is required");
301 return error_mark_node;
303 case RECORD_TYPE:
304 error ("used struct type value where scalar is required");
305 return error_mark_node;
307 case UNION_TYPE:
308 error ("used union type value where scalar is required");
309 return error_mark_node;
310 default:
311 break;
314 return c_common_truthvalue_conversion (expr);