OSDN Git Service

* doc/install.texi (Prerequisites): Update documentation of
[pf3gnuchains/gcc-fork.git] / gcc / c-objc-common.c
1 /* Some code common to C and ObjC front ends.
2    Copyright (C) 2001, 2002, 2003, 2004 Free Software Foundation, Inc.
3
4 This file is part of GCC.
5
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.
10
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.
15
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.  */
20
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"
41
42 static bool c_tree_printer (pretty_printer *, text_info *);
43
44 bool
45 c_missing_noreturn_ok_p (tree decl)
46 {
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));
50 }
51
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.  */
55
56 int
57 c_disregard_inline_limits (tree fn)
58 {
59   if (lookup_attribute ("always_inline", DECL_ATTRIBUTES (fn)) != NULL)
60     return 1;
61
62   return (!flag_really_no_inline && DECL_DECLARED_INLINE_P (fn)
63           && DECL_EXTERNAL (fn));
64 }
65
66 int
67 c_cannot_inline_tree_fn (tree *fnp)
68 {
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));
75
76   if (flag_really_no_inline
77       && lookup_attribute ("always_inline", DECL_ATTRIBUTES (fn)) == NULL)
78     {
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;
83     }
84
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))
88     {
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;
93     }
94
95   if (! function_attribute_inlinable_p (fn))
96     {
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;
101     }
102
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)
106     {
107       t = get_pending_sizes ();
108       put_pending_sizes (t);
109
110       if (t)
111         {
112           if (do_warning)
113             warning ("%Jfunction '%F' can never be inlined because it has "
114                      "pending sizes", fn, fn);
115           goto cannot_inline;
116         }
117     }
118
119   if (! DECL_FILE_SCOPE_P (fn))
120     {
121       /* If a nested function has pending sizes, we may have already
122          saved them.  */
123       if (DECL_LANG_SPECIFIC (fn)->pending_sizes)
124         {
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;
129         }
130     }
131
132   return 0;
133
134  cannot_inline:
135   DECL_UNINLINABLE (fn) = 1;
136   return 1;
137 }
138
139 /* Called from check_global_declarations.  */
140
141 bool
142 c_warn_unused_global_decl (tree decl)
143 {
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;
148
149   return true;
150 }
151
152 /* Initialization common to C and Objective-C front ends.  */
153 bool
154 c_objc_common_init (void)
155 {
156   static const enum tree_code stmt_codes[] = {
157     c_common_stmt_codes
158   };
159
160   INIT_STATEMENT_CODES (stmt_codes);
161
162   c_init_decl_processing ();
163
164   if (c_common_init () == false)
165     return false;
166
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;
171
172   /* If still unspecified, make it match -std=c99
173      (allowing for -pedantic-errors).  */
174   if (mesg_implicit_function_declaration < 0)
175     {
176       if (flag_isoc99)
177         mesg_implicit_function_declaration = flag_pedantic_errors ? 2 : 1;
178       else
179         mesg_implicit_function_declaration = 0;
180     }
181
182   return true;
183 }
184
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)
189 {
190   tree fnname = get_file_function_name (method_type);
191   tree body;
192   tree scope;
193   tree block;
194
195   start_function (void_list_node,
196                   build_nt (CALL_EXPR, fnname,
197                             tree_cons (NULL_TREE, NULL_TREE, void_list_node),
198                             NULL_TREE),
199                   NULL_TREE);
200   store_parm_decls ();
201
202   body = c_begin_compound_stmt ();
203   add_scope_stmt (/*begin_p=*/1, /*partial_p=*/0);
204
205   for (; cdtors; cdtors = TREE_CHAIN (cdtors))
206     add_stmt (build_stmt (EXPR_STMT,
207                           build_function_call (TREE_VALUE (cdtors), 0)));
208
209   scope = add_scope_stmt (/*begin_p=*/0, /*partial_p=*/0);
210
211   block = make_node (BLOCK);
212   SCOPE_STMT_BLOCK (TREE_PURPOSE (scope)) = block;
213   SCOPE_STMT_BLOCK (TREE_VALUE (scope)) = block;
214
215   RECHAIN_STMTS (body, COMPOUND_BODY (body));
216
217   finish_function ();
218 }
219
220 /* Called at end of parsing, but before end-of-file processing.  */
221
222 void
223 c_objc_common_finish_file (void)
224 {
225   if (pch_file)
226     c_common_write_pch ();
227
228   if (static_ctors)
229     {
230       build_cdtor ('I', static_ctors);
231       static_ctors = 0;
232     }
233   if (static_dtors)
234     {
235       build_cdtor ('D', static_dtors);
236       static_dtors = 0;
237     }
238
239   cgraph_finalize_compilation_unit ();
240   cgraph_optimize ();
241
242   if (flag_mudflap)
243     mudflap_finish_file ();
244 }
245
246 /* Called during diagnostic message formatting process to print a
247    source-level entity onto BUFFER.  The meaning of the format specifiers
248    is as follows:
249    %D: a general decl,
250    %E: An expression,
251    %F: a function declaration,
252    %T: a type.
253
254    These format specifiers form a subset of the format specifiers set used
255    by the C++ front-end.
256    Please notice when called, the `%' part was already skipped by the
257    diagnostic machinery.  */
258 static bool
259 c_tree_printer (pretty_printer *pp, text_info *text)
260 {
261   tree t = va_arg (*text->args_ptr, tree);
262   const char *n = "({anonymous})";
263
264   switch (*text->format_spec)
265     {
266     case 'D':
267     case 'F':
268       if (DECL_NAME (t))
269         n = lang_hooks.decl_printable_name (t, 2);
270       break;
271
272     case 'T':
273       if (TYPE_P (t))
274         t = TYPE_NAME (t);
275       if (t && TREE_CODE (t) == TYPE_DECL)
276         {
277           if (DECL_NAME (t))
278             n = lang_hooks.decl_printable_name (t, 2);
279         }
280       else if (t)
281         n = IDENTIFIER_POINTER (t);
282       break;
283
284     case 'E':
285       if (TREE_CODE (t) == IDENTIFIER_NODE)
286         n = IDENTIFIER_POINTER (t);
287       else
288         return false;
289       break;
290
291     default:
292       return false;
293     }
294
295   pp_string (pp, n);
296   return true;
297 }
298
299 tree
300 c_objc_common_truthvalue_conversion (tree expr)
301 {
302  retry:
303   switch (TREE_CODE (TREE_TYPE (expr)))
304     {
305     case ARRAY_TYPE:
306       expr = default_conversion (expr);
307       if (TREE_CODE (TREE_TYPE (expr)) != ARRAY_TYPE)
308         goto retry;
309
310       error ("used array that cannot be converted to pointer where scalar is required");
311       return error_mark_node;
312
313     case RECORD_TYPE:
314       error ("used struct type value where scalar is required");
315       return error_mark_node;
316
317     case UNION_TYPE:
318       error ("used union type value where scalar is required");
319       return error_mark_node;
320     default:
321       break;
322     }
323
324   return c_common_truthvalue_conversion (expr);
325 }
326