1 /* Some code common to C and ObjC front ends.
2 Copyright (C) 2001, 2002, 2003, 2004, 2005 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, 51 Franklin Street, Fifth Floor, 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
*, const char *,
44 int, bool, bool, bool);
47 c_missing_noreturn_ok_p (tree decl
)
49 /* A missing noreturn is not ok for freestanding implementations and
50 ok for the `main' function in hosted implementations. */
51 return flag_hosted
&& MAIN_NAME_P (DECL_ASSEMBLER_NAME (decl
));
54 /* We want to inline `extern inline' functions even if this would
55 violate inlining limits. Some glibc and linux constructs depend on
56 such functions always being inlined when optimizing. */
59 c_disregard_inline_limits (tree fn
)
61 if (lookup_attribute ("always_inline", DECL_ATTRIBUTES (fn
)) != NULL
)
64 return (!flag_really_no_inline
&& DECL_DECLARED_INLINE_P (fn
)
65 && DECL_EXTERNAL (fn
));
69 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 (OPT_Winline
, "function %q+F can never be inlined because it "
82 "is suppressed using -fno-inline", 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 (OPT_Winline
, "function %q+F can never be inlined because it "
92 "might not be bound within this unit of translation", fn
);
96 if (!function_attribute_inlinable_p (fn
))
99 warning (OPT_Winline
, "function %q+F can never be inlined because it "
100 "uses attributes conflicting with inlining", fn
);
107 DECL_UNINLINABLE (fn
) = 1;
111 /* Called from check_global_declarations. */
114 c_warn_unused_global_decl (tree decl
)
116 if (TREE_CODE (decl
) == FUNCTION_DECL
&& DECL_DECLARED_INLINE_P (decl
))
118 if (DECL_IN_SYSTEM_HEADER (decl
))
124 /* Initialization common to C and Objective-C front ends. */
126 c_objc_common_init (void)
128 c_init_decl_processing ();
130 if (c_common_init () == false)
133 /* These were not defined in the Objective-C front end, but I'm
134 putting them here anyway. The diagnostic format decoder might
135 want an enhanced ObjC implementation. */
136 diagnostic_format_decoder (global_dc
) = &c_tree_printer
;
141 /* Called during diagnostic message formatting process to print a
142 source-level entity onto BUFFER. The meaning of the format specifiers
145 %E: an identifier or expression,
146 %F: a function declaration,
149 These format specifiers form a subset of the format specifiers set used
150 by the C++ front-end.
151 Please notice when called, the `%' part was already skipped by the
152 diagnostic machinery. */
154 c_tree_printer (pretty_printer
*pp
, text_info
*text
, const char *spec
,
155 int precision
, bool wide
, bool set_locus
, bool hash
)
157 tree t
= va_arg (*text
->args_ptr
, tree
);
159 const char *n
= "({anonymous})";
160 c_pretty_printer
*cpp
= (c_pretty_printer
*) pp
;
161 pp
->padding
= pp_none
;
163 if (precision
!= 0 || wide
|| hash
)
166 if (set_locus
&& text
->locus
)
167 *text
->locus
= DECL_SOURCE_LOCATION (t
);
172 if (DECL_DEBUG_EXPR_IS_FROM (t
) && DECL_DEBUG_EXPR (t
))
174 t
= DECL_DEBUG_EXPR (t
);
177 pp_c_expression (cpp
, t
);
185 n
= lang_hooks
.decl_printable_name (t
, 2);
189 gcc_assert (TYPE_P (t
));
190 name
= TYPE_NAME (t
);
192 if (name
&& TREE_CODE (name
) == TYPE_DECL
)
194 if (DECL_NAME (name
))
195 pp_string (cpp
, lang_hooks
.decl_printable_name (name
, 2));
208 if (TREE_CODE (t
) == IDENTIFIER_NODE
)
209 n
= IDENTIFIER_POINTER (t
);
212 pp_expression (cpp
, t
);
225 /* In C and ObjC, all decls have "C" linkage. */
227 has_c_linkage (tree decl ATTRIBUTE_UNUSED
)
233 c_initialize_diagnostics (diagnostic_context
*context
)
235 pretty_printer
*base
= context
->printer
;
236 c_pretty_printer
*pp
= XNEW (c_pretty_printer
);
237 memcpy (pp_base (pp
), base
, sizeof (pretty_printer
));
238 pp_c_pretty_printer_init (pp
);
239 context
->printer
= (pretty_printer
*) pp
;
241 /* It is safe to free this object because it was previously XNEW()'d. */
246 c_types_compatible_p (tree x
, tree y
)
248 return comptypes (TYPE_MAIN_VARIANT (x
), TYPE_MAIN_VARIANT (y
));
251 /* Determine if the type is a vla type for the backend. */
254 c_vla_unspec_p (tree x
, tree fn ATTRIBUTE_UNUSED
)
256 return c_vla_type_p (x
);