]> git.ipfire.org Git - thirdparty/gcc.git/blob - gcc/c-objc-common.c
Change copyright header to refer to version 3 of the GNU General Public License and...
[thirdparty/gcc.git] / gcc / c-objc-common.c
1 /* Some code common to C and ObjC front ends.
2 Copyright (C) 2001, 2002, 2003, 2004, 2005, 2007 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 3, 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 COPYING3. If not see
18 <http://www.gnu.org/licenses/>. */
19
20 #include "config.h"
21 #include "system.h"
22 #include "coretypes.h"
23 #include "tm.h"
24 #include "tree.h"
25 #include "rtl.h"
26 #include "insn-config.h"
27 #include "integrate.h"
28 #include "c-tree.h"
29 #include "c-pretty-print.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 "c-objc-common.h"
41
42 static bool c_tree_printer (pretty_printer *, text_info *, const char *,
43 int, bool, bool, bool);
44
45 bool
46 c_missing_noreturn_ok_p (tree decl)
47 {
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));
51 }
52
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. */
56
57 int
58 c_disregard_inline_limits (tree fn)
59 {
60 if (lookup_attribute ("always_inline", DECL_ATTRIBUTES (fn)) != NULL)
61 return 1;
62
63 return (!flag_really_no_inline && DECL_DECLARED_INLINE_P (fn)
64 && DECL_EXTERNAL (fn));
65 }
66
67 int
68 c_cannot_inline_tree_fn (tree *fnp)
69 {
70 tree fn = *fnp;
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 (OPT_Winline, "function %q+F can never be inlined because it "
81 "is suppressed using -fno-inline", 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 (OPT_Winline, "function %q+F can never be inlined because it "
91 "might not be bound within this unit of translation", fn);
92 goto cannot_inline;
93 }
94
95 if (!function_attribute_inlinable_p (fn))
96 {
97 if (do_warning)
98 warning (OPT_Winline, "function %q+F can never be inlined because it "
99 "uses attributes conflicting with inlining", fn);
100 goto cannot_inline;
101 }
102
103 return 0;
104
105 cannot_inline:
106 DECL_UNINLINABLE (fn) = 1;
107 return 1;
108 }
109
110 /* Called from check_global_declarations. */
111
112 bool
113 c_warn_unused_global_decl (tree decl)
114 {
115 if (TREE_CODE (decl) == FUNCTION_DECL && DECL_DECLARED_INLINE_P (decl))
116 return false;
117 if (DECL_IN_SYSTEM_HEADER (decl))
118 return false;
119
120 return true;
121 }
122
123 /* Initialization common to C and Objective-C front ends. */
124 bool
125 c_objc_common_init (void)
126 {
127 c_init_decl_processing ();
128
129 if (c_common_init () == false)
130 return false;
131
132 /* These were not defined in the Objective-C front end, but I'm
133 putting them here anyway. The diagnostic format decoder might
134 want an enhanced ObjC implementation. */
135 diagnostic_format_decoder (global_dc) = &c_tree_printer;
136
137 return true;
138 }
139
140 /* Called during diagnostic message formatting process to print a
141 source-level entity onto BUFFER. The meaning of the format specifiers
142 is as follows:
143 %D: a general decl,
144 %E: an identifier or expression,
145 %F: a function declaration,
146 %T: a type.
147
148 These format specifiers form a subset of the format specifiers set used
149 by the C++ front-end.
150 Please notice when called, the `%' part was already skipped by the
151 diagnostic machinery. */
152 static bool
153 c_tree_printer (pretty_printer *pp, text_info *text, const char *spec,
154 int precision, bool wide, bool set_locus, bool hash)
155 {
156 tree t = va_arg (*text->args_ptr, tree);
157 tree name;
158 const char *n = "({anonymous})";
159 c_pretty_printer *cpp = (c_pretty_printer *) pp;
160 pp->padding = pp_none;
161
162 if (precision != 0 || wide || hash)
163 return false;
164
165 if (set_locus && text->locus)
166 *text->locus = DECL_SOURCE_LOCATION (t);
167
168 switch (*spec)
169 {
170 case 'D':
171 if (DECL_DEBUG_EXPR_IS_FROM (t) && DECL_DEBUG_EXPR (t))
172 {
173 t = DECL_DEBUG_EXPR (t);
174 if (!DECL_P (t))
175 {
176 pp_c_expression (cpp, t);
177 return true;
178 }
179 }
180 /* FALLTHRU */
181
182 case 'F':
183 if (DECL_NAME (t))
184 n = lang_hooks.decl_printable_name (t, 2);
185 break;
186
187 case 'T':
188 gcc_assert (TYPE_P (t));
189 name = TYPE_NAME (t);
190
191 if (name && TREE_CODE (name) == TYPE_DECL)
192 {
193 if (DECL_NAME (name))
194 pp_string (cpp, lang_hooks.decl_printable_name (name, 2));
195 else
196 pp_type_id (cpp, t);
197 return true;
198 }
199 else
200 {
201 pp_type_id (cpp, t);
202 return true;
203 }
204 break;
205
206 case 'E':
207 if (TREE_CODE (t) == IDENTIFIER_NODE)
208 n = IDENTIFIER_POINTER (t);
209 else
210 {
211 pp_expression (cpp, t);
212 return true;
213 }
214 break;
215
216 default:
217 return false;
218 }
219
220 pp_string (cpp, n);
221 return true;
222 }
223
224 /* In C and ObjC, all decls have "C" linkage. */
225 bool
226 has_c_linkage (tree decl ATTRIBUTE_UNUSED)
227 {
228 return true;
229 }
230
231 void
232 c_initialize_diagnostics (diagnostic_context *context)
233 {
234 pretty_printer *base = context->printer;
235 c_pretty_printer *pp = XNEW (c_pretty_printer);
236 memcpy (pp_base (pp), base, sizeof (pretty_printer));
237 pp_c_pretty_printer_init (pp);
238 context->printer = (pretty_printer *) pp;
239
240 /* It is safe to free this object because it was previously XNEW()'d. */
241 XDELETE (base);
242 }
243
244 int
245 c_types_compatible_p (tree x, tree y)
246 {
247 return comptypes (TYPE_MAIN_VARIANT (x), TYPE_MAIN_VARIANT (y));
248 }
249
250 /* Determine if the type is a vla type for the backend. */
251
252 bool
253 c_vla_unspec_p (tree x, tree fn ATTRIBUTE_UNUSED)
254 {
255 return c_vla_type_p (x);
256 }