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
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"
30 #include "c-pretty-print.h"
34 #include "diagnostic.h"
35 #include "tree-inline.h"
38 #include "langhooks.h"
39 #include "tree-mudflap.h"
41 #include "c-objc-common.h"
43 static bool c_tree_printer (pretty_printer
*, text_info
*);
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. */
58 c_disregard_inline_limits (tree fn
)
60 if (lookup_attribute ("always_inline", DECL_ATTRIBUTES (fn
)) != NULL
)
63 return (!flag_really_no_inline
&& DECL_DECLARED_INLINE_P (fn
)
64 && DECL_EXTERNAL (fn
));
68 c_cannot_inline_tree_fn (tree
*fnp
)
72 bool do_warning
= (warn_inline
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
)
81 warning ("%Jfunction %qF can never be inlined because it "
82 "is suppressed using -fno-inline", fn
, fn
);
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
))
91 warning ("%Jfunction %qF can never be inlined because it might not "
92 "be bound within this unit of translation", fn
, fn
);
96 if (!function_attribute_inlinable_p (fn
))
99 warning ("%Jfunction %qF can never be inlined because it uses "
100 "attributes conflicting with inlining", fn
, fn
);
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
);
114 warning ("%Jfunction %qF can never be inlined because it has "
115 "pending sizes", fn
, fn
);
120 if (!DECL_FILE_SCOPE_P (fn
))
122 /* If a nested function has pending sizes, we may have already
124 if (DECL_LANG_SPECIFIC (fn
)->pending_sizes
)
127 warning ("%Jnested function %qF can never be inlined because it "
128 "has possibly saved pending sizes", fn
, fn
);
136 DECL_UNINLINABLE (fn
) = 1;
140 /* Called from check_global_declarations. */
143 c_warn_unused_global_decl (tree decl
)
145 if (TREE_CODE (decl
) == FUNCTION_DECL
&& DECL_DECLARED_INLINE_P (decl
))
147 if (DECL_IN_SYSTEM_HEADER (decl
))
153 /* Initialization common to C and Objective-C front ends. */
155 c_objc_common_init (void)
157 static const enum tree_code stmt_codes
[] = {
161 INIT_STATEMENT_CODES (stmt_codes
);
163 c_init_decl_processing ();
165 if (c_common_init () == 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)
178 mesg_implicit_function_declaration
= flag_pedantic_errors
? 2 : 1;
180 mesg_implicit_function_declaration
= 0;
186 /* Called during diagnostic message formatting process to print a
187 source-level entity onto BUFFER. The meaning of the format specifiers
190 %E: an identifier or expression,
191 %F: a function declaration,
194 These format specifiers form a subset of the format specifiers set used
195 by the C++ front-end.
196 Please notice when called, the `%' part was already skipped by the
197 diagnostic machinery. */
199 c_tree_printer (pretty_printer
*pp
, text_info
*text
)
201 tree t
= va_arg (*text
->args_ptr
, tree
);
203 const char *n
= "({anonymous})";
204 c_pretty_printer
*cpp
= (c_pretty_printer
*) pp
;
205 pp
->padding
= pp_none
;
207 switch (*text
->format_spec
)
212 n
= lang_hooks
.decl_printable_name (t
, 2);
216 gcc_assert (TYPE_P (t
));
217 name
= TYPE_NAME (t
);
219 if (name
&& TREE_CODE (name
) == TYPE_DECL
)
221 if (DECL_NAME (name
))
222 pp_string (cpp
, lang_hooks
.decl_printable_name (name
, 2));
235 if (TREE_CODE (t
) == IDENTIFIER_NODE
)
236 n
= IDENTIFIER_POINTER (t
);
239 pp_expression (cpp
, t
);
253 c_objc_common_truthvalue_conversion (tree expr
)
256 switch (TREE_CODE (TREE_TYPE (expr
)))
259 expr
= default_conversion (expr
);
260 if (TREE_CODE (TREE_TYPE (expr
)) != ARRAY_TYPE
)
263 error ("used array that cannot be converted to pointer where scalar is required");
264 return error_mark_node
;
267 error ("used struct type value where scalar is required");
268 return error_mark_node
;
271 error ("used union type value where scalar is required");
272 return error_mark_node
;
277 return c_common_truthvalue_conversion (expr
);
280 /* In C and ObjC, all decls have "C" linkage. */
282 has_c_linkage (tree decl ATTRIBUTE_UNUSED
)
288 c_initialize_diagnostics (diagnostic_context
*context
)
290 pretty_printer
*base
= context
->printer
;
291 c_pretty_printer
*pp
= XNEW (c_pretty_printer
);
292 memcpy (pp_base (pp
), base
, sizeof (pretty_printer
));
293 pp_c_pretty_printer_init (pp
);
294 context
->printer
= (pretty_printer
*) pp
;
296 /* It is safe to free this object because it was previously XNEW()'d. */