1 /* Process declarations and variables for C compiler.
2 Copyright (C) 1988, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000,
3 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010
4 Free Software Foundation, Inc.
6 This file is part of GCC.
8 GCC is free software; you can redistribute it and/or modify it under
9 the terms of the GNU General Public License as published by the Free
10 Software Foundation; either version 3, or (at your option) any later
13 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
14 WARRANTY; without even the implied warranty of MERCHANTABILITY or
15 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
18 You should have received a copy of the GNU General Public License
19 along with GCC; see the file COPYING3. If not see
20 <http://www.gnu.org/licenses/>. */
22 /* Process declarations and symbol lookup for C front end.
23 Also constructs types; the standard scalar types at initialization,
24 and structure, union, array and enum types when they are declared. */
26 /* ??? not all decl nodes are given the most useful possible
27 line numbers. For example, the CONST_DECLs for enum values. */
31 #include "coretypes.h"
36 #include "tree-inline.h"
54 #include "langhooks.h"
55 #include "tree-mudflap.h"
57 #include "tree-iterator.h"
58 #include "diagnostic.h"
59 #include "tree-dump.h"
64 #include "langhooks-def.h"
65 #include "pointer-set.h"
69 /* In grokdeclarator, distinguish syntactic contexts of declarators. */
71 { NORMAL, /* Ordinary declaration */
72 FUNCDEF, /* Function definition */
73 PARM, /* Declaration of parm before function body */
74 FIELD, /* Declaration inside struct or union */
75 TYPENAME}; /* Typename (inside cast or sizeof) */
77 /* States indicating how grokdeclarator() should handle declspecs marked
78 with __attribute__((deprecated)). An object declared as
79 __attribute__((deprecated)) suppresses warnings of uses of other
82 enum deprecated_states {
88 /* Nonzero if we have seen an invalid cross reference
89 to a struct, union, or enum, but not yet printed the message. */
90 tree pending_invalid_xref;
92 /* File and line to appear in the eventual error message. */
93 location_t pending_invalid_xref_location;
95 /* The file and line that the prototype came from if this is an
96 old-style definition; used for diagnostics in
97 store_parm_decls_oldstyle. */
99 static location_t current_function_prototype_locus;
101 /* Whether this prototype was built-in. */
103 static bool current_function_prototype_built_in;
105 /* The argument type information of this prototype. */
107 static tree current_function_prototype_arg_types;
109 /* The argument information structure for the function currently being
112 static struct c_arg_info *current_function_arg_info;
114 /* The obstack on which parser and related data structures, which are
115 not live beyond their top-level declaration or definition, are
117 struct obstack parser_obstack;
119 /* The current statement tree. */
121 static GTY(()) struct stmt_tree_s c_stmt_tree;
123 /* State saving variables. */
127 /* Linked list of TRANSLATION_UNIT_DECLS for the translation units
128 included in this invocation. Note that the current translation
129 unit is not included in this list. */
131 static GTY(()) tree all_translation_units;
133 /* A list of decls to be made automatically visible in each file scope. */
134 static GTY(()) tree visible_builtins;
136 /* Set to 0 at beginning of a function definition, set to 1 if
137 a return statement that specifies a return value is seen. */
139 int current_function_returns_value;
141 /* Set to 0 at beginning of a function definition, set to 1 if
142 a return statement with no argument is seen. */
144 int current_function_returns_null;
146 /* Set to 0 at beginning of a function definition, set to 1 if
147 a call to a noreturn function is seen. */
149 int current_function_returns_abnormally;
151 /* Set to nonzero by `grokdeclarator' for a function
152 whose return type is defaulted, if warnings for this are desired. */
154 static int warn_about_return_type;
156 /* Nonzero when the current toplevel function contains a declaration
157 of a nested function which is never defined. */
159 static bool undef_nested_function;
161 /* True means global_bindings_p should return false even if the scope stack
162 says we are in file scope. */
163 bool c_override_global_bindings_to_false;
166 /* Each c_binding structure describes one binding of an identifier to
167 a decl. All the decls in a scope - irrespective of namespace - are
168 chained together by the ->prev field, which (as the name implies)
169 runs in reverse order. All the decls in a given namespace bound to
170 a given identifier are chained by the ->shadowed field, which runs
171 from inner to outer scopes.
173 The ->decl field usually points to a DECL node, but there are two
174 exceptions. In the namespace of type tags, the bound entity is a
175 RECORD_TYPE, UNION_TYPE, or ENUMERAL_TYPE node. If an undeclared
176 identifier is encountered, it is bound to error_mark_node to
177 suppress further errors about that identifier in the current
180 The ->u.type field stores the type of the declaration in this scope;
181 if NULL, the type is the type of the ->decl field. This is only of
182 relevance for objects with external or internal linkage which may
183 be redeclared in inner scopes, forming composite types that only
184 persist for the duration of those scopes. In the external scope,
185 this stores the composite of all the types declared for this
186 object, visible or not. The ->inner_comp field (used only at file
187 scope) stores whether an incomplete array type at file scope was
188 completed at an inner scope to an array size other than 1.
190 The ->u.label field is used for labels. It points to a structure
191 which stores additional information used for warnings.
193 The depth field is copied from the scope structure that holds this
194 decl. It is used to preserve the proper ordering of the ->shadowed
195 field (see bind()) and also for a handful of special-case checks.
196 Finally, the invisible bit is true for a decl which should be
197 ignored for purposes of normal name lookup, and the nested bit is
198 true for a decl that's been bound a second time in an inner scope;
199 in all such cases, the binding in the outer scope will have its
200 invisible bit true. */
202 struct GTY((chain_next ("%h.prev"))) c_binding {
203 union GTY(()) { /* first so GTY desc can use decl */
204 tree GTY((tag ("0"))) type; /* the type in this scope */
205 struct c_label_vars * GTY((tag ("1"))) label; /* for warnings */
206 } GTY((desc ("TREE_CODE (%0.decl) == LABEL_DECL"))) u;
207 tree decl; /* the decl bound */
208 tree id; /* the identifier it's bound to */
209 struct c_binding *prev; /* the previous decl in this scope */
210 struct c_binding *shadowed; /* the innermost decl shadowed by this one */
211 unsigned int depth : 28; /* depth of this scope */
212 BOOL_BITFIELD invisible : 1; /* normal lookup should ignore this binding */
213 BOOL_BITFIELD nested : 1; /* do not set DECL_CONTEXT when popping */
214 BOOL_BITFIELD inner_comp : 1; /* incomplete array completed in inner scope */
215 BOOL_BITFIELD in_struct : 1; /* currently defined as struct field */
216 location_t locus; /* location for nested bindings */
218 #define B_IN_SCOPE(b1, b2) ((b1)->depth == (b2)->depth)
219 #define B_IN_CURRENT_SCOPE(b) ((b)->depth == current_scope->depth)
220 #define B_IN_FILE_SCOPE(b) ((b)->depth == 1 /*file_scope->depth*/)
221 #define B_IN_EXTERNAL_SCOPE(b) ((b)->depth == 0 /*external_scope->depth*/)
223 #define I_SYMBOL_BINDING(node) \
224 (((struct lang_identifier *) IDENTIFIER_NODE_CHECK(node))->symbol_binding)
225 #define I_SYMBOL_DECL(node) \
226 (I_SYMBOL_BINDING(node) ? I_SYMBOL_BINDING(node)->decl : 0)
228 #define I_TAG_BINDING(node) \
229 (((struct lang_identifier *) IDENTIFIER_NODE_CHECK(node))->tag_binding)
230 #define I_TAG_DECL(node) \
231 (I_TAG_BINDING(node) ? I_TAG_BINDING(node)->decl : 0)
233 #define I_LABEL_BINDING(node) \
234 (((struct lang_identifier *) IDENTIFIER_NODE_CHECK(node))->label_binding)
235 #define I_LABEL_DECL(node) \
236 (I_LABEL_BINDING(node) ? I_LABEL_BINDING(node)->decl : 0)
238 /* Each C symbol points to three linked lists of c_binding structures.
239 These describe the values of the identifier in the three different
240 namespaces defined by the language. */
242 struct GTY(()) lang_identifier {
243 struct c_common_identifier common_id;
244 struct c_binding *symbol_binding; /* vars, funcs, constants, typedefs */
245 struct c_binding *tag_binding; /* struct/union/enum tags */
246 struct c_binding *label_binding; /* labels */
249 /* Validate c-lang.c's assumptions. */
250 extern char C_SIZEOF_STRUCT_LANG_IDENTIFIER_isnt_accurate
251 [(sizeof(struct lang_identifier) == C_SIZEOF_STRUCT_LANG_IDENTIFIER) ? 1 : -1];
253 /* The resulting tree type. */
255 union GTY((desc ("TREE_CODE (&%h.generic) == IDENTIFIER_NODE"),
256 chain_next ("TREE_CODE (&%h.generic) == INTEGER_TYPE ? (union lang_tree_node *) TYPE_NEXT_VARIANT (&%h.generic) : ((union lang_tree_node *) TREE_CHAIN (&%h.generic))"))) lang_tree_node
258 union tree_node GTY ((tag ("0"),
259 desc ("tree_node_structure (&%h)")))
261 struct lang_identifier GTY ((tag ("1"))) identifier;
264 /* Track bindings and other things that matter for goto warnings. For
265 efficiency, we do not gather all the decls at the point of
266 definition. Instead, we point into the bindings structure. As
267 scopes are popped, we update these structures and gather the decls
268 that matter at that time. */
270 struct GTY(()) c_spot_bindings {
271 /* The currently open scope which holds bindings defined when the
272 label was defined or the goto statement was found. */
273 struct c_scope *scope;
274 /* The bindings in the scope field which were defined at the point
275 of the label or goto. This lets us look at older or newer
276 bindings in the scope, as appropriate. */
277 struct c_binding *bindings_in_scope;
278 /* The number of statement expressions that have started since this
279 label or goto statement was defined. This is zero if we are at
280 the same statement expression level. It is positive if we are in
281 a statement expression started since this spot. It is negative
282 if this spot was in a statement expression and we have left
285 /* Whether we started in a statement expression but are no longer in
286 it. This is set to true if stmt_exprs ever goes negative. */
290 /* This structure is used to keep track of bindings seen when a goto
291 statement is defined. This is only used if we see the goto
292 statement before we see the label. */
294 struct GTY(()) c_goto_bindings {
295 /* The location of the goto statement. */
297 /* The bindings of the goto statement. */
298 struct c_spot_bindings goto_bindings;
301 typedef struct c_goto_bindings *c_goto_bindings_p;
302 DEF_VEC_P(c_goto_bindings_p);
303 DEF_VEC_ALLOC_P(c_goto_bindings_p,gc);
305 /* The additional information we keep track of for a label binding.
306 These fields are updated as scopes are popped. */
308 struct GTY(()) c_label_vars {
309 /* The shadowed c_label_vars, when one label shadows another (which
310 can only happen using a __label__ declaration). */
311 struct c_label_vars *shadowed;
312 /* The bindings when the label was defined. */
313 struct c_spot_bindings label_bindings;
314 /* A list of decls that we care about: decls about which we should
315 warn if a goto branches to this label from later in the function.
316 Decls are added to this list as scopes are popped. We only add
317 the decls that matter. */
318 VEC(tree,gc) *decls_in_scope;
319 /* A list of goto statements to this label. This is only used for
320 goto statements seen before the label was defined, so that we can
321 issue appropriate warnings for them. */
322 VEC(c_goto_bindings_p,gc) *gotos;
325 /* Each c_scope structure describes the complete contents of one
326 scope. Four scopes are distinguished specially: the innermost or
327 current scope, the innermost function scope, the file scope (always
328 the second to outermost) and the outermost or external scope.
330 Most declarations are recorded in the current scope.
332 All normal label declarations are recorded in the innermost
333 function scope, as are bindings of undeclared identifiers to
334 error_mark_node. (GCC permits nested functions as an extension,
335 hence the 'innermost' qualifier.) Explicitly declared labels
336 (using the __label__ extension) appear in the current scope.
338 Being in the file scope (current_scope == file_scope) causes
339 special behavior in several places below. Also, under some
340 conditions the Objective-C front end records declarations in the
341 file scope even though that isn't the current scope.
343 All declarations with external linkage are recorded in the external
344 scope, even if they aren't visible there; this models the fact that
345 such declarations are visible to the entire program, and (with a
346 bit of cleverness, see pushdecl) allows diagnosis of some violations
347 of C99 6.2.2p7 and 6.2.7p2:
349 If, within the same translation unit, the same identifier appears
350 with both internal and external linkage, the behavior is
353 All declarations that refer to the same object or function shall
354 have compatible type; otherwise, the behavior is undefined.
356 Initially only the built-in declarations, which describe compiler
357 intrinsic functions plus a subset of the standard library, are in
360 The order of the blocks list matters, and it is frequently appended
361 to. To avoid having to walk all the way to the end of the list on
362 each insertion, or reverse the list later, we maintain a pointer to
363 the last list entry. (FIXME: It should be feasible to use a reversed
366 The bindings list is strictly in reverse order of declarations;
367 pop_scope relies on this. */
370 struct GTY((chain_next ("%h.outer"))) c_scope {
371 /* The scope containing this one. */
372 struct c_scope *outer;
374 /* The next outermost function scope. */
375 struct c_scope *outer_function;
377 /* All bindings in this scope. */
378 struct c_binding *bindings;
380 /* For each scope (except the global one), a chain of BLOCK nodes
381 for all the scopes that were entered and exited one level down. */
385 /* The depth of this scope. Used to keep the ->shadowed chain of
386 bindings sorted innermost to outermost. */
387 unsigned int depth : 28;
389 /* True if we are currently filling this scope with parameter
391 BOOL_BITFIELD parm_flag : 1;
393 /* True if we saw [*] in this scope. Used to give an error messages
394 if these appears in a function definition. */
395 BOOL_BITFIELD had_vla_unspec : 1;
397 /* True if we already complained about forward parameter decls
398 in this scope. This prevents double warnings on
399 foo (int a; int b; ...) */
400 BOOL_BITFIELD warned_forward_parm_decls : 1;
402 /* True if this is the outermost block scope of a function body.
403 This scope contains the parameters, the local variables declared
404 in the outermost block, and all the labels (except those in
405 nested functions, or declared at block scope with __label__). */
406 BOOL_BITFIELD function_body : 1;
408 /* True means make a BLOCK for this scope no matter what. */
409 BOOL_BITFIELD keep : 1;
411 /* True means that an unsuffixed float constant is _Decimal64. */
412 BOOL_BITFIELD float_const_decimal64 : 1;
414 /* True if this scope has any label bindings. This is used to speed
415 up searching for labels when popping scopes, particularly since
416 labels are normally only found at function scope. */
417 BOOL_BITFIELD has_label_bindings : 1;
420 /* The scope currently in effect. */
422 static GTY(()) struct c_scope *current_scope;
424 /* The innermost function scope. Ordinary (not explicitly declared)
425 labels, bindings to error_mark_node, and the lazily-created
426 bindings of __func__ and its friends get this scope. */
428 static GTY(()) struct c_scope *current_function_scope;
430 /* The C file scope. This is reset for each input translation unit. */
432 static GTY(()) struct c_scope *file_scope;
434 /* The outermost scope. This is used for all declarations with
435 external linkage, and only these, hence the name. */
437 static GTY(()) struct c_scope *external_scope;
439 /* A chain of c_scope structures awaiting reuse. */
441 static GTY((deletable)) struct c_scope *scope_freelist;
443 /* A chain of c_binding structures awaiting reuse. */
445 static GTY((deletable)) struct c_binding *binding_freelist;
447 /* Append VAR to LIST in scope SCOPE. */
448 #define SCOPE_LIST_APPEND(scope, list, decl) do { \
449 struct c_scope *s_ = (scope); \
451 if (s_->list##_last) \
452 BLOCK_CHAIN (s_->list##_last) = d_; \
455 s_->list##_last = d_; \
458 /* Concatenate FROM in scope FSCOPE onto TO in scope TSCOPE. */
459 #define SCOPE_LIST_CONCAT(tscope, to, fscope, from) do { \
460 struct c_scope *t_ = (tscope); \
461 struct c_scope *f_ = (fscope); \
463 BLOCK_CHAIN (t_->to##_last) = f_->from; \
466 t_->to##_last = f_->from##_last; \
469 /* A c_inline_static structure stores details of a static identifier
470 referenced in a definition of a function that may be an inline
471 definition if no subsequent declaration of that function uses
472 "extern" or does not use "inline". */
474 struct GTY((chain_next ("%h.next"))) c_inline_static {
475 /* The location for a diagnostic. */
478 /* The function that may be an inline definition. */
481 /* The object or function referenced. */
484 /* What sort of reference this is. */
485 enum c_inline_static_type type;
487 /* The next such structure or NULL. */
488 struct c_inline_static *next;
491 /* List of static identifiers used or referenced in functions that may
492 be inline definitions. */
493 static GTY(()) struct c_inline_static *c_inline_statics;
495 /* True means unconditionally make a BLOCK for the next scope pushed. */
497 static bool keep_next_level_flag;
499 /* True means the next call to push_scope will be the outermost scope
500 of a function body, so do not push a new scope, merely cease
501 expecting parameter decls. */
503 static bool next_is_function_body;
505 /* A VEC of pointers to c_binding structures. */
507 typedef struct c_binding *c_binding_ptr;
508 DEF_VEC_P(c_binding_ptr);
509 DEF_VEC_ALLOC_P(c_binding_ptr,heap);
511 /* Information that we keep for a struct or union while it is being
514 struct c_struct_parse_info
516 /* If warn_cxx_compat, a list of types defined within this
518 VEC(tree,heap) *struct_types;
519 /* If warn_cxx_compat, a list of field names which have bindings,
520 and which are defined in this struct, but which are not defined
521 in any enclosing struct. This is used to clear the in_struct
522 field of the c_bindings structure. */
523 VEC(c_binding_ptr,heap) *fields;
524 /* If warn_cxx_compat, a list of typedef names used when defining
525 fields in this struct. */
526 VEC(tree,heap) *typedefs_seen;
529 /* Information for the struct or union currently being parsed, or
530 NULL if not parsing a struct or union. */
531 static struct c_struct_parse_info *struct_parse_info;
533 /* Forward declarations. */
534 static tree lookup_name_in_scope (tree, struct c_scope *);
535 static tree c_make_fname_decl (location_t, tree, int);
536 static tree grokdeclarator (const struct c_declarator *,
537 struct c_declspecs *,
538 enum decl_context, bool, tree *, tree *, tree *,
539 bool *, enum deprecated_states);
540 static tree grokparms (struct c_arg_info *, bool);
541 static void layout_array_type (tree);
543 /* T is a statement. Add it to the statement-tree. This is the
544 C/ObjC version--C++ has a slightly different version of this
550 enum tree_code code = TREE_CODE (t);
552 if (CAN_HAVE_LOCATION_P (t) && code != LABEL_EXPR)
554 if (!EXPR_HAS_LOCATION (t))
555 SET_EXPR_LOCATION (t, input_location);
558 if (code == LABEL_EXPR || code == CASE_LABEL_EXPR)
559 STATEMENT_LIST_HAS_LABEL (cur_stmt_list) = 1;
561 /* Add T to the statement-tree. Non-side-effect statements need to be
562 recorded during statement expressions. */
563 append_to_statement_list_force (t, &cur_stmt_list);
570 c_print_identifier (FILE *file, tree node, int indent)
572 print_node (file, "symbol", I_SYMBOL_DECL (node), indent + 4);
573 print_node (file, "tag", I_TAG_DECL (node), indent + 4);
574 print_node (file, "label", I_LABEL_DECL (node), indent + 4);
575 if (C_IS_RESERVED_WORD (node) && C_RID_CODE (node) != RID_CXX_COMPAT_WARN)
577 tree rid = ridpointers[C_RID_CODE (node)];
578 indent_to (file, indent + 4);
579 fprintf (file, "rid " HOST_PTR_PRINTF " \"%s\"",
580 (void *) rid, IDENTIFIER_POINTER (rid));
584 /* Establish a binding between NAME, an IDENTIFIER_NODE, and DECL,
585 which may be any of several kinds of DECL or TYPE or error_mark_node,
586 in the scope SCOPE. */
588 bind (tree name, tree decl, struct c_scope *scope, bool invisible,
589 bool nested, location_t locus)
591 struct c_binding *b, **here;
593 if (binding_freelist)
595 b = binding_freelist;
596 binding_freelist = b->prev;
599 b = GGC_NEW (struct c_binding);
604 b->depth = scope->depth;
605 b->invisible = invisible;
613 b->prev = scope->bindings;
619 switch (TREE_CODE (decl))
621 case LABEL_DECL: here = &I_LABEL_BINDING (name); break;
624 case RECORD_TYPE: here = &I_TAG_BINDING (name); break;
630 case ERROR_MARK: here = &I_SYMBOL_BINDING (name); break;
636 /* Locate the appropriate place in the chain of shadowed decls
637 to insert this binding. Normally, scope == current_scope and
638 this does nothing. */
639 while (*here && (*here)->depth > scope->depth)
640 here = &(*here)->shadowed;
646 /* Clear the binding structure B, stick it on the binding_freelist,
647 and return the former value of b->prev. This is used by pop_scope
648 and get_parm_info to iterate destructively over all the bindings
649 from a given scope. */
650 static struct c_binding *
651 free_binding_and_advance (struct c_binding *b)
653 struct c_binding *prev = b->prev;
655 memset (b, 0, sizeof (struct c_binding));
656 b->prev = binding_freelist;
657 binding_freelist = b;
662 /* Bind a label. Like bind, but skip fields which aren't used for
663 labels, and add the LABEL_VARS value. */
665 bind_label (tree name, tree label, struct c_scope *scope,
666 struct c_label_vars *label_vars)
670 bind (name, label, scope, /*invisible=*/false, /*nested=*/false,
673 scope->has_label_bindings = true;
676 gcc_assert (b->decl == label);
677 label_vars->shadowed = b->u.label;
678 b->u.label = label_vars;
681 /* Hook called at end of compilation to assume 1 elt
682 for a file-scope tentative array defn that wasn't complete before. */
685 c_finish_incomplete_decl (tree decl)
687 if (TREE_CODE (decl) == VAR_DECL)
689 tree type = TREE_TYPE (decl);
690 if (type != error_mark_node
691 && TREE_CODE (type) == ARRAY_TYPE
692 && !DECL_EXTERNAL (decl)
693 && TYPE_DOMAIN (type) == 0)
695 warning_at (DECL_SOURCE_LOCATION (decl),
696 0, "array %q+D assumed to have one element", decl);
698 complete_array_type (&TREE_TYPE (decl), NULL_TREE, true);
700 layout_decl (decl, 0);
705 /* Record that inline function FUNC contains a reference (location
706 LOC) to static DECL (file-scope or function-local according to
710 record_inline_static (location_t loc, tree func, tree decl,
711 enum c_inline_static_type type)
713 struct c_inline_static *csi = GGC_NEW (struct c_inline_static);
715 csi->function = func;
716 csi->static_decl = decl;
718 csi->next = c_inline_statics;
719 c_inline_statics = csi;
722 /* Check for references to static declarations in inline functions at
723 the end of the translation unit and diagnose them if the functions
724 are still inline definitions. */
727 check_inline_statics (void)
729 struct c_inline_static *csi;
730 for (csi = c_inline_statics; csi; csi = csi->next)
732 if (DECL_EXTERNAL (csi->function))
736 pedwarn (csi->location, 0,
737 "%qD is static but used in inline function %qD "
738 "which is not static", csi->static_decl, csi->function);
741 pedwarn (csi->location, 0,
742 "%q+D is static but declared in inline function %qD "
743 "which is not static", csi->static_decl, csi->function);
749 c_inline_statics = NULL;
752 /* Fill in a c_spot_bindings structure. If DEFINING is true, set it
753 for the current state, otherwise set it to uninitialized. */
756 set_spot_bindings (struct c_spot_bindings *p, bool defining)
760 p->scope = current_scope;
761 p->bindings_in_scope = current_scope->bindings;
766 p->bindings_in_scope = NULL;
769 p->left_stmt_expr = false;
772 /* Return true if we will want to say something if a goto statement
776 decl_jump_unsafe (tree decl)
778 if (decl == error_mark_node || TREE_TYPE (decl) == error_mark_node)
781 /* Always warn about crossing variably modified types. */
782 if ((TREE_CODE (decl) == VAR_DECL || TREE_CODE (decl) == TYPE_DECL)
783 && variably_modified_type_p (TREE_TYPE (decl), NULL_TREE))
786 /* Otherwise, only warn if -Wgoto-misses-init and this is an
787 initialized automatic decl. */
788 if (warn_jump_misses_init
789 && TREE_CODE (decl) == VAR_DECL
790 && !TREE_STATIC (decl)
791 && DECL_INITIAL (decl) != NULL_TREE)
797 /* Update spot bindings P as we pop out of SCOPE. Return true if we
798 should push decls for a label. */
801 update_spot_bindings (struct c_scope *scope, struct c_spot_bindings *p)
803 if (p->scope != scope)
805 /* This label or goto is defined in some other scope, or it is a
806 label which is not yet defined. There is nothing to
811 /* Adjust the spot bindings to refer to the bindings already defined
812 in the enclosing scope. */
813 p->scope = scope->outer;
814 p->bindings_in_scope = p->scope->bindings;
819 /* The Objective-C front-end often needs to determine the current scope. */
822 objc_get_current_scope (void)
824 return current_scope;
827 /* The following function is used only by Objective-C. It needs to live here
828 because it accesses the innards of c_scope. */
831 objc_mark_locals_volatile (void *enclosing_blk)
833 struct c_scope *scope;
836 for (scope = current_scope;
837 scope && scope != enclosing_blk;
838 scope = scope->outer)
840 for (b = scope->bindings; b; b = b->prev)
841 objc_volatilize_decl (b->decl);
843 /* Do not climb up past the current function. */
844 if (scope->function_body)
849 /* Nonzero if we are currently in file scope. */
852 global_bindings_p (void)
854 return (current_scope == file_scope && !c_override_global_bindings_to_false
860 keep_next_level (void)
862 keep_next_level_flag = true;
865 /* Set the flag for the FLOAT_CONST_DECIMAL64 pragma being ON. */
868 set_float_const_decimal64 (void)
870 current_scope->float_const_decimal64 = true;
873 /* Clear the flag for the FLOAT_CONST_DECIMAL64 pragma. */
876 clear_float_const_decimal64 (void)
878 current_scope->float_const_decimal64 = false;
881 /* Return nonzero if an unsuffixed float constant is _Decimal64. */
884 float_const_decimal64_p (void)
886 return current_scope->float_const_decimal64;
889 /* Identify this scope as currently being filled with parameters. */
892 declare_parm_level (void)
894 current_scope->parm_flag = true;
900 if (next_is_function_body)
902 /* This is the transition from the parameters to the top level
903 of the function body. These are the same scope
904 (C99 6.2.1p4,6) so we do not push another scope structure.
905 next_is_function_body is set only by store_parm_decls, which
906 in turn is called when and only when we are about to
907 encounter the opening curly brace for the function body.
909 The outermost block of a function always gets a BLOCK node,
910 because the debugging output routines expect that each
911 function has at least one BLOCK. */
912 current_scope->parm_flag = false;
913 current_scope->function_body = true;
914 current_scope->keep = true;
915 current_scope->outer_function = current_function_scope;
916 current_function_scope = current_scope;
918 keep_next_level_flag = false;
919 next_is_function_body = false;
921 /* The FLOAT_CONST_DECIMAL64 pragma applies to nested scopes. */
922 if (current_scope->outer)
923 current_scope->float_const_decimal64
924 = current_scope->outer->float_const_decimal64;
926 current_scope->float_const_decimal64 = false;
930 struct c_scope *scope;
933 scope = scope_freelist;
934 scope_freelist = scope->outer;
937 scope = GGC_CNEW (struct c_scope);
939 /* The FLOAT_CONST_DECIMAL64 pragma applies to nested scopes. */
941 scope->float_const_decimal64 = current_scope->float_const_decimal64;
943 scope->float_const_decimal64 = false;
945 scope->keep = keep_next_level_flag;
946 scope->outer = current_scope;
947 scope->depth = current_scope ? (current_scope->depth + 1) : 0;
949 /* Check for scope depth overflow. Unlikely (2^28 == 268,435,456) but
951 if (current_scope && scope->depth == 0)
954 sorry ("GCC supports only %u nested scopes", scope->depth);
957 current_scope = scope;
958 keep_next_level_flag = false;
962 /* This is called when we are leaving SCOPE. For each label defined
963 in SCOPE, add any appropriate decls to its decls_in_scope fields.
964 These are the decls whose initialization will be skipped by a goto
965 later in the function. */
968 update_label_decls (struct c_scope *scope)
975 if (s->has_label_bindings)
979 for (b = s->bindings; b != NULL; b = b->prev)
981 struct c_label_vars *label_vars;
982 struct c_binding *b1;
984 struct c_goto_bindings *g;
986 if (TREE_CODE (b->decl) != LABEL_DECL)
988 label_vars = b->u.label;
990 b1 = label_vars->label_bindings.bindings_in_scope;
991 if (update_spot_bindings (scope, &label_vars->label_bindings))
993 /* This label is defined in this scope. */
994 for (; b1 != NULL; b1 = b1->prev)
996 /* A goto from later in the function to this
997 label will never see the initialization of
998 B1, if any. Save it to issue a warning if
1000 if (decl_jump_unsafe (b1->decl))
1001 VEC_safe_push (tree, gc, label_vars->decls_in_scope,
1006 /* Update the bindings of any goto statements associated
1009 VEC_iterate (c_goto_bindings_p, label_vars->gotos, ix, g);
1011 update_spot_bindings (scope, &g->goto_bindings);
1015 /* Don't search beyond the current function. */
1016 if (s == current_function_scope)
1023 /* Set the TYPE_CONTEXT of all of TYPE's variants to CONTEXT. */
1026 set_type_context (tree type, tree context)
1028 for (type = TYPE_MAIN_VARIANT (type); type;
1029 type = TYPE_NEXT_VARIANT (type))
1030 TYPE_CONTEXT (type) = context;
1033 /* Exit a scope. Restore the state of the identifier-decl mappings
1034 that were in effect when this scope was entered. Return a BLOCK
1035 node containing all the DECLs in this scope that are of interest
1036 to debug info generation. */
1041 struct c_scope *scope = current_scope;
1042 tree block, context, p;
1043 struct c_binding *b;
1045 bool functionbody = scope->function_body;
1046 bool keep = functionbody || scope->keep || scope->bindings;
1048 update_label_decls (scope);
1050 /* If appropriate, create a BLOCK to record the decls for the life
1051 of this function. */
1055 block = make_node (BLOCK);
1056 BLOCK_SUBBLOCKS (block) = scope->blocks;
1057 TREE_USED (block) = 1;
1059 /* In each subblock, record that this is its superior. */
1060 for (p = scope->blocks; p; p = BLOCK_CHAIN (p))
1061 BLOCK_SUPERCONTEXT (p) = block;
1063 BLOCK_VARS (block) = 0;
1066 /* The TYPE_CONTEXTs for all of the tagged types belonging to this
1067 scope must be set so that they point to the appropriate
1068 construct, i.e. either to the current FUNCTION_DECL node, or
1069 else to the BLOCK node we just constructed.
1071 Note that for tagged types whose scope is just the formal
1072 parameter list for some function type specification, we can't
1073 properly set their TYPE_CONTEXTs here, because we don't have a
1074 pointer to the appropriate FUNCTION_TYPE node readily available
1075 to us. For those cases, the TYPE_CONTEXTs of the relevant tagged
1076 type nodes get set in `grokdeclarator' as soon as we have created
1077 the FUNCTION_TYPE node which will represent the "scope" for these
1078 "parameter list local" tagged types. */
1079 if (scope->function_body)
1080 context = current_function_decl;
1081 else if (scope == file_scope)
1083 tree file_decl = build_decl (UNKNOWN_LOCATION,
1084 TRANSLATION_UNIT_DECL, 0, 0);
1085 TREE_CHAIN (file_decl) = all_translation_units;
1086 all_translation_units = file_decl;
1087 context = file_decl;
1092 /* Clear all bindings in this scope. */
1093 for (b = scope->bindings; b; b = free_binding_and_advance (b))
1096 switch (TREE_CODE (p))
1099 /* Warnings for unused labels, errors for undefined labels. */
1100 if (TREE_USED (p) && !DECL_INITIAL (p))
1102 error ("label %q+D used but not defined", p);
1103 DECL_INITIAL (p) = error_mark_node;
1106 warn_for_unused_label (p);
1108 /* Labels go in BLOCK_VARS. */
1109 TREE_CHAIN (p) = BLOCK_VARS (block);
1110 BLOCK_VARS (block) = p;
1111 gcc_assert (I_LABEL_BINDING (b->id) == b);
1112 I_LABEL_BINDING (b->id) = b->shadowed;
1114 /* Also pop back to the shadowed label_vars. */
1115 release_tree_vector (b->u.label->decls_in_scope);
1116 b->u.label = b->u.label->shadowed;
1122 set_type_context (p, context);
1124 /* Types may not have tag-names, in which case the type
1125 appears in the bindings list with b->id NULL. */
1128 gcc_assert (I_TAG_BINDING (b->id) == b);
1129 I_TAG_BINDING (b->id) = b->shadowed;
1134 /* Propagate TREE_ADDRESSABLE from nested functions to their
1135 containing functions. */
1136 if (!TREE_ASM_WRITTEN (p)
1137 && DECL_INITIAL (p) != 0
1138 && TREE_ADDRESSABLE (p)
1139 && DECL_ABSTRACT_ORIGIN (p) != 0
1140 && DECL_ABSTRACT_ORIGIN (p) != p)
1141 TREE_ADDRESSABLE (DECL_ABSTRACT_ORIGIN (p)) = 1;
1142 if (!DECL_EXTERNAL (p)
1143 && !DECL_INITIAL (p)
1144 && scope != file_scope
1145 && scope != external_scope)
1147 error ("nested function %q+D declared but never defined", p);
1148 undef_nested_function = true;
1150 else if (DECL_DECLARED_INLINE_P (p)
1152 && !DECL_INITIAL (p))
1154 /* C99 6.7.4p6: "a function with external linkage... declared
1155 with an inline function specifier ... shall also be defined
1156 in the same translation unit." */
1157 if (!flag_gnu89_inline)
1158 pedwarn (input_location, 0,
1159 "inline function %q+D declared but never defined", p);
1160 DECL_EXTERNAL (p) = 1;
1166 /* Warnings for unused variables. */
1167 if ((!TREE_USED (p) || !DECL_READ_P (p))
1168 && !TREE_NO_WARNING (p)
1169 && !DECL_IN_SYSTEM_HEADER (p)
1171 && !DECL_ARTIFICIAL (p)
1172 && scope != file_scope
1173 && scope != external_scope)
1176 warning (OPT_Wunused_variable, "unused variable %q+D", p);
1177 else if (DECL_CONTEXT (p) == current_function_decl)
1178 warning_at (DECL_SOURCE_LOCATION (p),
1179 OPT_Wunused_but_set_variable,
1180 "variable %qD set but not used", p);
1185 error ("type of array %q+D completed incompatibly with"
1186 " implicit initialization", p);
1193 /* All of these go in BLOCK_VARS, but only if this is the
1194 binding in the home scope. */
1197 TREE_CHAIN (p) = BLOCK_VARS (block);
1198 BLOCK_VARS (block) = p;
1200 else if (VAR_OR_FUNCTION_DECL_P (p))
1202 /* For block local externs add a special
1203 DECL_EXTERNAL decl for debug info generation. */
1204 tree extp = copy_node (p);
1206 DECL_EXTERNAL (extp) = 1;
1207 TREE_STATIC (extp) = 0;
1208 TREE_PUBLIC (extp) = 1;
1209 DECL_INITIAL (extp) = NULL_TREE;
1210 DECL_LANG_SPECIFIC (extp) = NULL;
1211 DECL_CONTEXT (extp) = current_function_decl;
1212 if (TREE_CODE (p) == FUNCTION_DECL)
1214 DECL_RESULT (extp) = NULL_TREE;
1215 DECL_SAVED_TREE (extp) = NULL_TREE;
1216 DECL_STRUCT_FUNCTION (extp) = NULL;
1218 if (b->locus != UNKNOWN_LOCATION)
1219 DECL_SOURCE_LOCATION (extp) = b->locus;
1220 TREE_CHAIN (extp) = BLOCK_VARS (block);
1221 BLOCK_VARS (block) = extp;
1223 /* If this is the file scope, and we are processing more
1224 than one translation unit in this compilation, set
1225 DECL_CONTEXT of each decl to the TRANSLATION_UNIT_DECL.
1226 This makes same_translation_unit_p work, and causes
1227 static declarations to be given disambiguating suffixes. */
1228 if (scope == file_scope && num_in_fnames > 1)
1230 DECL_CONTEXT (p) = context;
1231 if (TREE_CODE (p) == TYPE_DECL)
1232 set_type_context (TREE_TYPE (p), context);
1236 /* Parameters go in DECL_ARGUMENTS, not BLOCK_VARS, and have
1237 already been put there by store_parm_decls. Unused-
1238 parameter warnings are handled by function.c.
1239 error_mark_node obviously does not go in BLOCK_VARS and
1240 does not get unused-variable warnings. */
1243 /* It is possible for a decl not to have a name. We get
1244 here with b->id NULL in this case. */
1247 gcc_assert (I_SYMBOL_BINDING (b->id) == b);
1248 I_SYMBOL_BINDING (b->id) = b->shadowed;
1249 if (b->shadowed && b->shadowed->u.type)
1250 TREE_TYPE (b->shadowed->decl) = b->shadowed->u.type;
1260 /* Dispose of the block that we just made inside some higher level. */
1261 if ((scope->function_body || scope == file_scope) && context)
1263 DECL_INITIAL (context) = block;
1264 BLOCK_SUPERCONTEXT (block) = context;
1266 else if (scope->outer)
1269 SCOPE_LIST_APPEND (scope->outer, blocks, block);
1270 /* If we did not make a block for the scope just exited, any
1271 blocks made for inner scopes must be carried forward so they
1272 will later become subblocks of something else. */
1273 else if (scope->blocks)
1274 SCOPE_LIST_CONCAT (scope->outer, blocks, scope, blocks);
1277 /* Pop the current scope, and free the structure for reuse. */
1278 current_scope = scope->outer;
1279 if (scope->function_body)
1280 current_function_scope = scope->outer_function;
1282 memset (scope, 0, sizeof (struct c_scope));
1283 scope->outer = scope_freelist;
1284 scope_freelist = scope;
1290 push_file_scope (void)
1298 file_scope = current_scope;
1300 start_fname_decls ();
1302 for (decl = visible_builtins; decl; decl = TREE_CHAIN (decl))
1303 bind (DECL_NAME (decl), decl, file_scope,
1304 /*invisible=*/false, /*nested=*/true, DECL_SOURCE_LOCATION (decl));
1308 pop_file_scope (void)
1310 /* In case there were missing closebraces, get us back to the global
1312 while (current_scope != file_scope)
1315 /* __FUNCTION__ is defined at file scope (""). This
1316 call may not be necessary as my tests indicate it
1317 still works without it. */
1318 finish_fname_decls ();
1320 check_inline_statics ();
1322 /* This is the point to write out a PCH if we're doing that.
1323 In that case we do not want to do anything else. */
1326 c_common_write_pch ();
1330 /* Pop off the file scope and close this translation unit. */
1334 maybe_apply_pending_pragma_weaks ();
1337 /* Adjust the bindings for the start of a statement expression. */
1340 c_bindings_start_stmt_expr (struct c_spot_bindings* switch_bindings)
1342 struct c_scope *scope;
1344 for (scope = current_scope; scope != NULL; scope = scope->outer)
1346 struct c_binding *b;
1348 if (!scope->has_label_bindings)
1351 for (b = scope->bindings; b != NULL; b = b->prev)
1353 struct c_label_vars *label_vars;
1355 struct c_goto_bindings *g;
1357 if (TREE_CODE (b->decl) != LABEL_DECL)
1359 label_vars = b->u.label;
1360 ++label_vars->label_bindings.stmt_exprs;
1362 VEC_iterate (c_goto_bindings_p, label_vars->gotos, ix, g);
1364 ++g->goto_bindings.stmt_exprs;
1368 if (switch_bindings != NULL)
1369 ++switch_bindings->stmt_exprs;
1372 /* Adjust the bindings for the end of a statement expression. */
1375 c_bindings_end_stmt_expr (struct c_spot_bindings *switch_bindings)
1377 struct c_scope *scope;
1379 for (scope = current_scope; scope != NULL; scope = scope->outer)
1381 struct c_binding *b;
1383 if (!scope->has_label_bindings)
1386 for (b = scope->bindings; b != NULL; b = b->prev)
1388 struct c_label_vars *label_vars;
1390 struct c_goto_bindings *g;
1392 if (TREE_CODE (b->decl) != LABEL_DECL)
1394 label_vars = b->u.label;
1395 --label_vars->label_bindings.stmt_exprs;
1396 if (label_vars->label_bindings.stmt_exprs < 0)
1398 label_vars->label_bindings.left_stmt_expr = true;
1399 label_vars->label_bindings.stmt_exprs = 0;
1402 VEC_iterate (c_goto_bindings_p, label_vars->gotos, ix, g);
1405 --g->goto_bindings.stmt_exprs;
1406 if (g->goto_bindings.stmt_exprs < 0)
1408 g->goto_bindings.left_stmt_expr = true;
1409 g->goto_bindings.stmt_exprs = 0;
1415 if (switch_bindings != NULL)
1417 --switch_bindings->stmt_exprs;
1418 gcc_assert (switch_bindings->stmt_exprs >= 0);
1422 /* Push a definition or a declaration of struct, union or enum tag "name".
1423 "type" should be the type node.
1424 We assume that the tag "name" is not already defined, and has a location
1427 Note that the definition may really be just a forward reference.
1428 In that case, the TYPE_SIZE will be zero. */
1431 pushtag (location_t loc, tree name, tree type)
1433 /* Record the identifier as the type's name if it has none. */
1434 if (name && !TYPE_NAME (type))
1435 TYPE_NAME (type) = name;
1436 bind (name, type, current_scope, /*invisible=*/false, /*nested=*/false, loc);
1438 /* Create a fake NULL-named TYPE_DECL node whose TREE_TYPE will be the
1439 tagged type we just added to the current scope. This fake
1440 NULL-named TYPE_DECL node helps dwarfout.c to know when it needs
1441 to output a representation of a tagged type, and it also gives
1442 us a convenient place to record the "scope start" address for the
1445 TYPE_STUB_DECL (type) = pushdecl (build_decl (loc,
1446 TYPE_DECL, NULL_TREE, type));
1448 /* An approximation for now, so we can tell this is a function-scope tag.
1449 This will be updated in pop_scope. */
1450 TYPE_CONTEXT (type) = DECL_CONTEXT (TYPE_STUB_DECL (type));
1452 if (warn_cxx_compat && name != NULL_TREE)
1454 struct c_binding *b = I_SYMBOL_BINDING (name);
1457 && b->decl != NULL_TREE
1458 && TREE_CODE (b->decl) == TYPE_DECL
1459 && (B_IN_CURRENT_SCOPE (b)
1460 || (current_scope == file_scope && B_IN_EXTERNAL_SCOPE (b)))
1461 && (TYPE_MAIN_VARIANT (TREE_TYPE (b->decl))
1462 != TYPE_MAIN_VARIANT (type)))
1464 warning_at (loc, OPT_Wc___compat,
1465 ("using %qD as both a typedef and a tag is "
1468 if (b->locus != UNKNOWN_LOCATION)
1469 inform (b->locus, "originally defined here");
1474 /* Subroutine of compare_decls. Allow harmless mismatches in return
1475 and argument types provided that the type modes match. This function
1476 return a unified type given a suitable match, and 0 otherwise. */
1479 match_builtin_function_types (tree newtype, tree oldtype)
1481 tree newrettype, oldrettype;
1482 tree newargs, oldargs;
1483 tree trytype, tryargs;
1485 /* Accept the return type of the new declaration if same modes. */
1486 oldrettype = TREE_TYPE (oldtype);
1487 newrettype = TREE_TYPE (newtype);
1489 if (TYPE_MODE (oldrettype) != TYPE_MODE (newrettype))
1492 oldargs = TYPE_ARG_TYPES (oldtype);
1493 newargs = TYPE_ARG_TYPES (newtype);
1496 while (oldargs || newargs)
1500 || !TREE_VALUE (oldargs)
1501 || !TREE_VALUE (newargs)
1502 || TYPE_MODE (TREE_VALUE (oldargs))
1503 != TYPE_MODE (TREE_VALUE (newargs)))
1506 oldargs = TREE_CHAIN (oldargs);
1507 newargs = TREE_CHAIN (newargs);
1510 trytype = build_function_type (newrettype, tryargs);
1511 return build_type_attribute_variant (trytype, TYPE_ATTRIBUTES (oldtype));
1514 /* Subroutine of diagnose_mismatched_decls. Check for function type
1515 mismatch involving an empty arglist vs a nonempty one and give clearer
1518 diagnose_arglist_conflict (tree newdecl, tree olddecl,
1519 tree newtype, tree oldtype)
1523 if (TREE_CODE (olddecl) != FUNCTION_DECL
1524 || !comptypes (TREE_TYPE (oldtype), TREE_TYPE (newtype))
1525 || !((TYPE_ARG_TYPES (oldtype) == 0 && DECL_INITIAL (olddecl) == 0)
1527 (TYPE_ARG_TYPES (newtype) == 0 && DECL_INITIAL (newdecl) == 0)))
1530 t = TYPE_ARG_TYPES (oldtype);
1532 t = TYPE_ARG_TYPES (newtype);
1533 for (; t; t = TREE_CHAIN (t))
1535 tree type = TREE_VALUE (t);
1537 if (TREE_CHAIN (t) == 0
1538 && TYPE_MAIN_VARIANT (type) != void_type_node)
1540 inform (input_location, "a parameter list with an ellipsis can%'t match "
1541 "an empty parameter name list declaration");
1545 if (c_type_promotes_to (type) != type)
1547 inform (input_location, "an argument type that has a default promotion can%'t match "
1548 "an empty parameter name list declaration");
1554 /* Another subroutine of diagnose_mismatched_decls. OLDDECL is an
1555 old-style function definition, NEWDECL is a prototype declaration.
1556 Diagnose inconsistencies in the argument list. Returns TRUE if
1557 the prototype is compatible, FALSE if not. */
1559 validate_proto_after_old_defn (tree newdecl, tree newtype, tree oldtype)
1561 tree newargs, oldargs;
1564 #define END_OF_ARGLIST(t) ((t) == void_type_node)
1566 oldargs = TYPE_ACTUAL_ARG_TYPES (oldtype);
1567 newargs = TYPE_ARG_TYPES (newtype);
1572 tree oldargtype = TREE_VALUE (oldargs);
1573 tree newargtype = TREE_VALUE (newargs);
1575 if (oldargtype == error_mark_node || newargtype == error_mark_node)
1578 oldargtype = TYPE_MAIN_VARIANT (oldargtype);
1579 newargtype = TYPE_MAIN_VARIANT (newargtype);
1581 if (END_OF_ARGLIST (oldargtype) && END_OF_ARGLIST (newargtype))
1584 /* Reaching the end of just one list means the two decls don't
1585 agree on the number of arguments. */
1586 if (END_OF_ARGLIST (oldargtype))
1588 error ("prototype for %q+D declares more arguments "
1589 "than previous old-style definition", newdecl);
1592 else if (END_OF_ARGLIST (newargtype))
1594 error ("prototype for %q+D declares fewer arguments "
1595 "than previous old-style definition", newdecl);
1599 /* Type for passing arg must be consistent with that declared
1601 else if (!comptypes (oldargtype, newargtype))
1603 error ("prototype for %q+D declares argument %d"
1604 " with incompatible type",
1609 oldargs = TREE_CHAIN (oldargs);
1610 newargs = TREE_CHAIN (newargs);
1614 /* If we get here, no errors were found, but do issue a warning
1615 for this poor-style construct. */
1616 warning (0, "prototype for %q+D follows non-prototype definition",
1619 #undef END_OF_ARGLIST
1622 /* Subroutine of diagnose_mismatched_decls. Report the location of DECL,
1623 first in a pair of mismatched declarations, using the diagnostic
1626 locate_old_decl (tree decl)
1628 if (TREE_CODE (decl) == FUNCTION_DECL && DECL_BUILT_IN (decl))
1630 else if (DECL_INITIAL (decl))
1631 inform (input_location, "previous definition of %q+D was here", decl);
1632 else if (C_DECL_IMPLICIT (decl))
1633 inform (input_location, "previous implicit declaration of %q+D was here", decl);
1635 inform (input_location, "previous declaration of %q+D was here", decl);
1638 /* Subroutine of duplicate_decls. Compare NEWDECL to OLDDECL.
1639 Returns true if the caller should proceed to merge the two, false
1640 if OLDDECL should simply be discarded. As a side effect, issues
1641 all necessary diagnostics for invalid or poor-style combinations.
1642 If it returns true, writes the types of NEWDECL and OLDDECL to
1643 *NEWTYPEP and *OLDTYPEP - these may have been adjusted from
1644 TREE_TYPE (NEWDECL, OLDDECL) respectively. */
1647 diagnose_mismatched_decls (tree newdecl, tree olddecl,
1648 tree *newtypep, tree *oldtypep)
1650 tree newtype, oldtype;
1651 bool pedwarned = false;
1652 bool warned = false;
1655 #define DECL_EXTERN_INLINE(DECL) (DECL_DECLARED_INLINE_P (DECL) \
1656 && DECL_EXTERNAL (DECL))
1658 /* If we have error_mark_node for either decl or type, just discard
1659 the previous decl - we're in an error cascade already. */
1660 if (olddecl == error_mark_node || newdecl == error_mark_node)
1662 *oldtypep = oldtype = TREE_TYPE (olddecl);
1663 *newtypep = newtype = TREE_TYPE (newdecl);
1664 if (oldtype == error_mark_node || newtype == error_mark_node)
1667 /* Two different categories of symbol altogether. This is an error
1668 unless OLDDECL is a builtin. OLDDECL will be discarded in any case. */
1669 if (TREE_CODE (olddecl) != TREE_CODE (newdecl))
1671 if (!(TREE_CODE (olddecl) == FUNCTION_DECL
1672 && DECL_BUILT_IN (olddecl)
1673 && !C_DECL_DECLARED_BUILTIN (olddecl)))
1675 error ("%q+D redeclared as different kind of symbol", newdecl);
1676 locate_old_decl (olddecl);
1678 else if (TREE_PUBLIC (newdecl))
1679 warning (0, "built-in function %q+D declared as non-function",
1682 warning (OPT_Wshadow, "declaration of %q+D shadows "
1683 "a built-in function", newdecl);
1687 /* Enumerators have no linkage, so may only be declared once in a
1689 if (TREE_CODE (olddecl) == CONST_DECL)
1691 error ("redeclaration of enumerator %q+D", newdecl);
1692 locate_old_decl (olddecl);
1696 if (!comptypes (oldtype, newtype))
1698 if (TREE_CODE (olddecl) == FUNCTION_DECL
1699 && DECL_BUILT_IN (olddecl) && !C_DECL_DECLARED_BUILTIN (olddecl))
1701 /* Accept harmless mismatch in function types.
1702 This is for the ffs and fprintf builtins. */
1703 tree trytype = match_builtin_function_types (newtype, oldtype);
1705 if (trytype && comptypes (newtype, trytype))
1706 *oldtypep = oldtype = trytype;
1709 /* If types don't match for a built-in, throw away the
1710 built-in. No point in calling locate_old_decl here, it
1711 won't print anything. */
1712 warning (0, "conflicting types for built-in function %q+D",
1717 else if (TREE_CODE (olddecl) == FUNCTION_DECL
1718 && DECL_IS_BUILTIN (olddecl))
1720 /* A conflicting function declaration for a predeclared
1721 function that isn't actually built in. Objective C uses
1722 these. The new declaration silently overrides everything
1723 but the volatility (i.e. noreturn) indication. See also
1724 below. FIXME: Make Objective C use normal builtins. */
1725 TREE_THIS_VOLATILE (newdecl) |= TREE_THIS_VOLATILE (olddecl);
1728 /* Permit void foo (...) to match int foo (...) if the latter is
1729 the definition and implicit int was used. See
1730 c-torture/compile/920625-2.c. */
1731 else if (TREE_CODE (newdecl) == FUNCTION_DECL && DECL_INITIAL (newdecl)
1732 && TYPE_MAIN_VARIANT (TREE_TYPE (oldtype)) == void_type_node
1733 && TYPE_MAIN_VARIANT (TREE_TYPE (newtype)) == integer_type_node
1734 && C_FUNCTION_IMPLICIT_INT (newdecl) && !DECL_INITIAL (olddecl))
1736 pedwarned = pedwarn (input_location, 0,
1737 "conflicting types for %q+D", newdecl);
1738 /* Make sure we keep void as the return type. */
1739 TREE_TYPE (newdecl) = *newtypep = newtype = oldtype;
1740 C_FUNCTION_IMPLICIT_INT (newdecl) = 0;
1742 /* Permit void foo (...) to match an earlier call to foo (...) with
1743 no declared type (thus, implicitly int). */
1744 else if (TREE_CODE (newdecl) == FUNCTION_DECL
1745 && TYPE_MAIN_VARIANT (TREE_TYPE (newtype)) == void_type_node
1746 && TYPE_MAIN_VARIANT (TREE_TYPE (oldtype)) == integer_type_node
1747 && C_DECL_IMPLICIT (olddecl) && !DECL_INITIAL (olddecl))
1749 pedwarned = pedwarn (input_location, 0,
1750 "conflicting types for %q+D", newdecl);
1751 /* Make sure we keep void as the return type. */
1752 TREE_TYPE (olddecl) = *oldtypep = oldtype = newtype;
1756 int new_quals = TYPE_QUALS (newtype);
1757 int old_quals = TYPE_QUALS (oldtype);
1759 if (new_quals != old_quals)
1761 addr_space_t new_addr = DECODE_QUAL_ADDR_SPACE (new_quals);
1762 addr_space_t old_addr = DECODE_QUAL_ADDR_SPACE (old_quals);
1763 if (new_addr != old_addr)
1765 if (ADDR_SPACE_GENERIC_P (new_addr))
1766 error ("conflicting named address spaces (generic vs %s) "
1768 c_addr_space_name (old_addr), newdecl);
1769 else if (ADDR_SPACE_GENERIC_P (old_addr))
1770 error ("conflicting named address spaces (%s vs generic) "
1772 c_addr_space_name (new_addr), newdecl);
1774 error ("conflicting named address spaces (%s vs %s) "
1776 c_addr_space_name (new_addr),
1777 c_addr_space_name (old_addr),
1781 if (CLEAR_QUAL_ADDR_SPACE (new_quals)
1782 != CLEAR_QUAL_ADDR_SPACE (old_quals))
1783 error ("conflicting type qualifiers for %q+D", newdecl);
1786 error ("conflicting types for %q+D", newdecl);
1787 diagnose_arglist_conflict (newdecl, olddecl, newtype, oldtype);
1788 locate_old_decl (olddecl);
1793 /* Redeclaration of a type is a constraint violation (6.7.2.3p1),
1794 but silently ignore the redeclaration if either is in a system
1795 header. (Conflicting redeclarations were handled above.) */
1796 if (TREE_CODE (newdecl) == TYPE_DECL)
1798 if (DECL_IN_SYSTEM_HEADER (newdecl)
1799 || DECL_IN_SYSTEM_HEADER (olddecl)
1800 || TREE_NO_WARNING (newdecl)
1801 || TREE_NO_WARNING (olddecl))
1802 return true; /* Allow OLDDECL to continue in use. */
1804 error ("redefinition of typedef %q+D", newdecl);
1805 locate_old_decl (olddecl);
1809 /* Function declarations can either be 'static' or 'extern' (no
1810 qualifier is equivalent to 'extern' - C99 6.2.2p5) and therefore
1811 can never conflict with each other on account of linkage
1812 (6.2.2p4). Multiple definitions are not allowed (6.9p3,5) but
1813 gnu89 mode permits two definitions if one is 'extern inline' and
1814 one is not. The non- extern-inline definition supersedes the
1815 extern-inline definition. */
1817 else if (TREE_CODE (newdecl) == FUNCTION_DECL)
1819 /* If you declare a built-in function name as static, or
1820 define the built-in with an old-style definition (so we
1821 can't validate the argument list) the built-in definition is
1822 overridden, but optionally warn this was a bad choice of name. */
1823 if (DECL_BUILT_IN (olddecl)
1824 && !C_DECL_DECLARED_BUILTIN (olddecl)
1825 && (!TREE_PUBLIC (newdecl)
1826 || (DECL_INITIAL (newdecl)
1827 && !TYPE_ARG_TYPES (TREE_TYPE (newdecl)))))
1829 warning (OPT_Wshadow, "declaration of %q+D shadows "
1830 "a built-in function", newdecl);
1831 /* Discard the old built-in function. */
1835 if (DECL_INITIAL (newdecl))
1837 if (DECL_INITIAL (olddecl))
1839 /* If both decls are in the same TU and the new declaration
1840 isn't overriding an extern inline reject the new decl.
1841 In c99, no overriding is allowed in the same translation
1843 if ((!DECL_EXTERN_INLINE (olddecl)
1844 || DECL_EXTERN_INLINE (newdecl)
1845 || (!flag_gnu89_inline
1846 && (!DECL_DECLARED_INLINE_P (olddecl)
1847 || !lookup_attribute ("gnu_inline",
1848 DECL_ATTRIBUTES (olddecl)))
1849 && (!DECL_DECLARED_INLINE_P (newdecl)
1850 || !lookup_attribute ("gnu_inline",
1851 DECL_ATTRIBUTES (newdecl))))
1853 && same_translation_unit_p (newdecl, olddecl))
1855 error ("redefinition of %q+D", newdecl);
1856 locate_old_decl (olddecl);
1861 /* If we have a prototype after an old-style function definition,
1862 the argument types must be checked specially. */
1863 else if (DECL_INITIAL (olddecl)
1864 && !TYPE_ARG_TYPES (oldtype) && TYPE_ARG_TYPES (newtype)
1865 && TYPE_ACTUAL_ARG_TYPES (oldtype)
1866 && !validate_proto_after_old_defn (newdecl, newtype, oldtype))
1868 locate_old_decl (olddecl);
1871 /* A non-static declaration (even an "extern") followed by a
1872 static declaration is undefined behavior per C99 6.2.2p3-5,7.
1873 The same is true for a static forward declaration at block
1874 scope followed by a non-static declaration/definition at file
1875 scope. Static followed by non-static at the same scope is
1876 not undefined behavior, and is the most convenient way to get
1877 some effects (see e.g. what unwind-dw2-fde-glibc.c does to
1878 the definition of _Unwind_Find_FDE in unwind-dw2-fde.c), but
1879 we do diagnose it if -Wtraditional. */
1880 if (TREE_PUBLIC (olddecl) && !TREE_PUBLIC (newdecl))
1882 /* Two exceptions to the rule. If olddecl is an extern
1883 inline, or a predeclared function that isn't actually
1884 built in, newdecl silently overrides olddecl. The latter
1885 occur only in Objective C; see also above. (FIXME: Make
1886 Objective C use normal builtins.) */
1887 if (!DECL_IS_BUILTIN (olddecl)
1888 && !DECL_EXTERN_INLINE (olddecl))
1890 error ("static declaration of %q+D follows "
1891 "non-static declaration", newdecl);
1892 locate_old_decl (olddecl);
1896 else if (TREE_PUBLIC (newdecl) && !TREE_PUBLIC (olddecl))
1898 if (DECL_CONTEXT (olddecl))
1900 error ("non-static declaration of %q+D follows "
1901 "static declaration", newdecl);
1902 locate_old_decl (olddecl);
1905 else if (warn_traditional)
1907 warned |= warning (OPT_Wtraditional,
1908 "non-static declaration of %q+D "
1909 "follows static declaration", newdecl);
1913 /* Make sure gnu_inline attribute is either not present, or
1914 present on all inline decls. */
1915 if (DECL_DECLARED_INLINE_P (olddecl)
1916 && DECL_DECLARED_INLINE_P (newdecl))
1918 bool newa = lookup_attribute ("gnu_inline",
1919 DECL_ATTRIBUTES (newdecl)) != NULL;
1920 bool olda = lookup_attribute ("gnu_inline",
1921 DECL_ATTRIBUTES (olddecl)) != NULL;
1924 error_at (input_location, "%<gnu_inline%> attribute present on %q+D",
1925 newa ? newdecl : olddecl);
1926 error_at (DECL_SOURCE_LOCATION (newa ? olddecl : newdecl),
1931 else if (TREE_CODE (newdecl) == VAR_DECL)
1933 /* Only variables can be thread-local, and all declarations must
1934 agree on this property. */
1935 if (C_DECL_THREADPRIVATE_P (olddecl) && !DECL_THREAD_LOCAL_P (newdecl))
1937 /* Nothing to check. Since OLDDECL is marked threadprivate
1938 and NEWDECL does not have a thread-local attribute, we
1939 will merge the threadprivate attribute into NEWDECL. */
1942 else if (DECL_THREAD_LOCAL_P (newdecl) != DECL_THREAD_LOCAL_P (olddecl))
1944 if (DECL_THREAD_LOCAL_P (newdecl))
1945 error ("thread-local declaration of %q+D follows "
1946 "non-thread-local declaration", newdecl);
1948 error ("non-thread-local declaration of %q+D follows "
1949 "thread-local declaration", newdecl);
1951 locate_old_decl (olddecl);
1955 /* Multiple initialized definitions are not allowed (6.9p3,5). */
1956 if (DECL_INITIAL (newdecl) && DECL_INITIAL (olddecl))
1958 error ("redefinition of %q+D", newdecl);
1959 locate_old_decl (olddecl);
1963 /* Objects declared at file scope: if the first declaration had
1964 external linkage (even if it was an external reference) the
1965 second must have external linkage as well, or the behavior is
1966 undefined. If the first declaration had internal linkage, then
1967 the second must too, or else be an external reference (in which
1968 case the composite declaration still has internal linkage).
1969 As for function declarations, we warn about the static-then-
1970 extern case only for -Wtraditional. See generally 6.2.2p3-5,7. */
1971 if (DECL_FILE_SCOPE_P (newdecl)
1972 && TREE_PUBLIC (newdecl) != TREE_PUBLIC (olddecl))
1974 if (DECL_EXTERNAL (newdecl))
1976 if (!DECL_FILE_SCOPE_P (olddecl))
1978 error ("extern declaration of %q+D follows "
1979 "declaration with no linkage", newdecl);
1980 locate_old_decl (olddecl);
1983 else if (warn_traditional)
1985 warned |= warning (OPT_Wtraditional,
1986 "non-static declaration of %q+D "
1987 "follows static declaration", newdecl);
1992 if (TREE_PUBLIC (newdecl))
1993 error ("non-static declaration of %q+D follows "
1994 "static declaration", newdecl);
1996 error ("static declaration of %q+D follows "
1997 "non-static declaration", newdecl);
1999 locate_old_decl (olddecl);
2003 /* Two objects with the same name declared at the same block
2004 scope must both be external references (6.7p3). */
2005 else if (!DECL_FILE_SCOPE_P (newdecl))
2007 if (DECL_EXTERNAL (newdecl))
2009 /* Extern with initializer at block scope, which will
2010 already have received an error. */
2012 else if (DECL_EXTERNAL (olddecl))
2014 error ("declaration of %q+D with no linkage follows "
2015 "extern declaration", newdecl);
2016 locate_old_decl (olddecl);
2020 error ("redeclaration of %q+D with no linkage", newdecl);
2021 locate_old_decl (olddecl);
2027 /* C++ does not permit a decl to appear multiple times at file
2030 && DECL_FILE_SCOPE_P (newdecl)
2031 && !DECL_EXTERNAL (newdecl)
2032 && !DECL_EXTERNAL (olddecl))
2033 warned |= warning_at (DECL_SOURCE_LOCATION (newdecl),
2035 ("duplicate declaration of %qD is "
2041 /* All decls must agree on a visibility. */
2042 if (CODE_CONTAINS_STRUCT (TREE_CODE (newdecl), TS_DECL_WITH_VIS)
2043 && DECL_VISIBILITY_SPECIFIED (newdecl) && DECL_VISIBILITY_SPECIFIED (olddecl)
2044 && DECL_VISIBILITY (newdecl) != DECL_VISIBILITY (olddecl))
2046 warned |= warning (0, "redeclaration of %q+D with different visibility "
2047 "(old visibility preserved)", newdecl);
2050 if (TREE_CODE (newdecl) == FUNCTION_DECL)
2052 /* Diagnose inline __attribute__ ((noinline)) which is silly. */
2053 if (DECL_DECLARED_INLINE_P (newdecl)
2054 && lookup_attribute ("noinline", DECL_ATTRIBUTES (olddecl)))
2056 warned |= warning (OPT_Wattributes,
2057 "inline declaration of %qD follows "
2058 "declaration with attribute noinline", newdecl);
2060 else if (DECL_DECLARED_INLINE_P (olddecl)
2061 && lookup_attribute ("noinline", DECL_ATTRIBUTES (newdecl)))
2063 warned |= warning (OPT_Wattributes,
2064 "declaration of %q+D with attribute "
2065 "noinline follows inline declaration ", newdecl);
2068 else /* PARM_DECL, VAR_DECL */
2070 /* Redeclaration of a parameter is a constraint violation (this is
2071 not explicitly stated, but follows from C99 6.7p3 [no more than
2072 one declaration of the same identifier with no linkage in the
2073 same scope, except type tags] and 6.2.2p6 [parameters have no
2074 linkage]). We must check for a forward parameter declaration,
2075 indicated by TREE_ASM_WRITTEN on the old declaration - this is
2076 an extension, the mandatory diagnostic for which is handled by
2077 mark_forward_parm_decls. */
2079 if (TREE_CODE (newdecl) == PARM_DECL
2080 && (!TREE_ASM_WRITTEN (olddecl) || TREE_ASM_WRITTEN (newdecl)))
2082 error ("redefinition of parameter %q+D", newdecl);
2083 locate_old_decl (olddecl);
2088 /* Optional warning for completely redundant decls. */
2089 if (!warned && !pedwarned
2090 && warn_redundant_decls
2091 /* Don't warn about a function declaration followed by a
2093 && !(TREE_CODE (newdecl) == FUNCTION_DECL
2094 && DECL_INITIAL (newdecl) && !DECL_INITIAL (olddecl))
2095 /* Don't warn about redundant redeclarations of builtins. */
2096 && !(TREE_CODE (newdecl) == FUNCTION_DECL
2097 && !DECL_BUILT_IN (newdecl)
2098 && DECL_BUILT_IN (olddecl)
2099 && !C_DECL_DECLARED_BUILTIN (olddecl))
2100 /* Don't warn about an extern followed by a definition. */
2101 && !(DECL_EXTERNAL (olddecl) && !DECL_EXTERNAL (newdecl))
2102 /* Don't warn about forward parameter decls. */
2103 && !(TREE_CODE (newdecl) == PARM_DECL
2104 && TREE_ASM_WRITTEN (olddecl) && !TREE_ASM_WRITTEN (newdecl))
2105 /* Don't warn about a variable definition following a declaration. */
2106 && !(TREE_CODE (newdecl) == VAR_DECL
2107 && DECL_INITIAL (newdecl) && !DECL_INITIAL (olddecl)))
2109 warned = warning (OPT_Wredundant_decls, "redundant redeclaration of %q+D",
2113 /* Report location of previous decl/defn. */
2114 if (warned || pedwarned)
2115 locate_old_decl (olddecl);
2117 #undef DECL_EXTERN_INLINE
2122 /* Subroutine of duplicate_decls. NEWDECL has been found to be
2123 consistent with OLDDECL, but carries new information. Merge the
2124 new information into OLDDECL. This function issues no
2128 merge_decls (tree newdecl, tree olddecl, tree newtype, tree oldtype)
2130 bool new_is_definition = (TREE_CODE (newdecl) == FUNCTION_DECL
2131 && DECL_INITIAL (newdecl) != 0);
2132 bool new_is_prototype = (TREE_CODE (newdecl) == FUNCTION_DECL
2133 && TYPE_ARG_TYPES (TREE_TYPE (newdecl)) != 0);
2134 bool old_is_prototype = (TREE_CODE (olddecl) == FUNCTION_DECL
2135 && TYPE_ARG_TYPES (TREE_TYPE (olddecl)) != 0);
2136 bool extern_changed = false;
2138 /* For real parm decl following a forward decl, rechain the old decl
2139 in its new location and clear TREE_ASM_WRITTEN (it's not a
2140 forward decl anymore). */
2141 if (TREE_CODE (newdecl) == PARM_DECL
2142 && TREE_ASM_WRITTEN (olddecl) && !TREE_ASM_WRITTEN (newdecl))
2144 struct c_binding *b, **here;
2146 for (here = ¤t_scope->bindings; *here; here = &(*here)->prev)
2147 if ((*here)->decl == olddecl)
2154 b->prev = current_scope->bindings;
2155 current_scope->bindings = b;
2157 TREE_ASM_WRITTEN (olddecl) = 0;
2160 DECL_ATTRIBUTES (newdecl)
2161 = targetm.merge_decl_attributes (olddecl, newdecl);
2163 /* Merge the data types specified in the two decls. */
2165 = TREE_TYPE (olddecl)
2166 = composite_type (newtype, oldtype);
2168 /* Lay the type out, unless already done. */
2169 if (!comptypes (oldtype, TREE_TYPE (newdecl)))
2171 if (TREE_TYPE (newdecl) != error_mark_node)
2172 layout_type (TREE_TYPE (newdecl));
2173 if (TREE_CODE (newdecl) != FUNCTION_DECL
2174 && TREE_CODE (newdecl) != TYPE_DECL
2175 && TREE_CODE (newdecl) != CONST_DECL)
2176 layout_decl (newdecl, 0);
2180 /* Since the type is OLDDECL's, make OLDDECL's size go with. */
2181 DECL_SIZE (newdecl) = DECL_SIZE (olddecl);
2182 DECL_SIZE_UNIT (newdecl) = DECL_SIZE_UNIT (olddecl);
2183 DECL_MODE (newdecl) = DECL_MODE (olddecl);
2184 if (DECL_ALIGN (olddecl) > DECL_ALIGN (newdecl))
2186 DECL_ALIGN (newdecl) = DECL_ALIGN (olddecl);
2187 DECL_USER_ALIGN (newdecl) |= DECL_USER_ALIGN (olddecl);
2191 /* Keep the old rtl since we can safely use it. */
2192 if (HAS_RTL_P (olddecl))
2193 COPY_DECL_RTL (olddecl, newdecl);
2195 /* Merge the type qualifiers. */
2196 if (TREE_READONLY (newdecl))
2197 TREE_READONLY (olddecl) = 1;
2199 if (TREE_THIS_VOLATILE (newdecl))
2200 TREE_THIS_VOLATILE (olddecl) = 1;
2202 /* Merge deprecatedness. */
2203 if (TREE_DEPRECATED (newdecl))
2204 TREE_DEPRECATED (olddecl) = 1;
2206 /* If a decl is in a system header and the other isn't, keep the one on the
2207 system header. Otherwise, keep source location of definition rather than
2208 declaration and of prototype rather than non-prototype unless that
2209 prototype is built-in. */
2210 if (CODE_CONTAINS_STRUCT (TREE_CODE (olddecl), TS_DECL_WITH_VIS)
2211 && DECL_IN_SYSTEM_HEADER (olddecl)
2212 && !DECL_IN_SYSTEM_HEADER (newdecl) )
2213 DECL_SOURCE_LOCATION (newdecl) = DECL_SOURCE_LOCATION (olddecl);
2214 else if (CODE_CONTAINS_STRUCT (TREE_CODE (olddecl), TS_DECL_WITH_VIS)
2215 && DECL_IN_SYSTEM_HEADER (newdecl)
2216 && !DECL_IN_SYSTEM_HEADER (olddecl))
2217 DECL_SOURCE_LOCATION (olddecl) = DECL_SOURCE_LOCATION (newdecl);
2218 else if ((DECL_INITIAL (newdecl) == 0 && DECL_INITIAL (olddecl) != 0)
2219 || (old_is_prototype && !new_is_prototype
2220 && !C_DECL_BUILTIN_PROTOTYPE (olddecl)))
2221 DECL_SOURCE_LOCATION (newdecl) = DECL_SOURCE_LOCATION (olddecl);
2223 /* Merge the initialization information. */
2224 if (DECL_INITIAL (newdecl) == 0)
2225 DECL_INITIAL (newdecl) = DECL_INITIAL (olddecl);
2227 /* Merge the threadprivate attribute. */
2228 if (TREE_CODE (olddecl) == VAR_DECL && C_DECL_THREADPRIVATE_P (olddecl))
2230 DECL_TLS_MODEL (newdecl) = DECL_TLS_MODEL (olddecl);
2231 C_DECL_THREADPRIVATE_P (newdecl) = 1;
2234 if (CODE_CONTAINS_STRUCT (TREE_CODE (olddecl), TS_DECL_WITH_VIS))
2236 /* Merge the section attribute.
2237 We want to issue an error if the sections conflict but that
2238 must be done later in decl_attributes since we are called
2239 before attributes are assigned. */
2240 if (DECL_SECTION_NAME (newdecl) == NULL_TREE)
2241 DECL_SECTION_NAME (newdecl) = DECL_SECTION_NAME (olddecl);
2243 /* Copy the assembler name.
2244 Currently, it can only be defined in the prototype. */
2245 COPY_DECL_ASSEMBLER_NAME (olddecl, newdecl);
2247 /* Use visibility of whichever declaration had it specified */
2248 if (DECL_VISIBILITY_SPECIFIED (olddecl))
2250 DECL_VISIBILITY (newdecl) = DECL_VISIBILITY (olddecl);
2251 DECL_VISIBILITY_SPECIFIED (newdecl) = 1;
2254 if (TREE_CODE (newdecl) == FUNCTION_DECL)
2256 DECL_STATIC_CONSTRUCTOR(newdecl) |= DECL_STATIC_CONSTRUCTOR(olddecl);
2257 DECL_STATIC_DESTRUCTOR (newdecl) |= DECL_STATIC_DESTRUCTOR (olddecl);
2258 DECL_NO_LIMIT_STACK (newdecl) |= DECL_NO_LIMIT_STACK (olddecl);
2259 DECL_NO_INSTRUMENT_FUNCTION_ENTRY_EXIT (newdecl)
2260 |= DECL_NO_INSTRUMENT_FUNCTION_ENTRY_EXIT (olddecl);
2261 TREE_THIS_VOLATILE (newdecl) |= TREE_THIS_VOLATILE (olddecl);
2262 DECL_IS_MALLOC (newdecl) |= DECL_IS_MALLOC (olddecl);
2263 DECL_IS_OPERATOR_NEW (newdecl) |= DECL_IS_OPERATOR_NEW (olddecl);
2264 TREE_READONLY (newdecl) |= TREE_READONLY (olddecl);
2265 DECL_PURE_P (newdecl) |= DECL_PURE_P (olddecl);
2266 DECL_IS_NOVOPS (newdecl) |= DECL_IS_NOVOPS (olddecl);
2269 /* Merge the storage class information. */
2270 merge_weak (newdecl, olddecl);
2272 /* For functions, static overrides non-static. */
2273 if (TREE_CODE (newdecl) == FUNCTION_DECL)
2275 TREE_PUBLIC (newdecl) &= TREE_PUBLIC (olddecl);
2276 /* This is since we don't automatically
2277 copy the attributes of NEWDECL into OLDDECL. */
2278 TREE_PUBLIC (olddecl) = TREE_PUBLIC (newdecl);
2279 /* If this clears `static', clear it in the identifier too. */
2280 if (!TREE_PUBLIC (olddecl))
2281 TREE_PUBLIC (DECL_NAME (olddecl)) = 0;
2285 /* In c99, 'extern' declaration before (or after) 'inline' means this
2286 function is not DECL_EXTERNAL, unless 'gnu_inline' attribute
2288 if (TREE_CODE (newdecl) == FUNCTION_DECL
2289 && !flag_gnu89_inline
2290 && (DECL_DECLARED_INLINE_P (newdecl)
2291 || DECL_DECLARED_INLINE_P (olddecl))
2292 && (!DECL_DECLARED_INLINE_P (newdecl)
2293 || !DECL_DECLARED_INLINE_P (olddecl)
2294 || !DECL_EXTERNAL (olddecl))
2295 && DECL_EXTERNAL (newdecl)
2296 && !lookup_attribute ("gnu_inline", DECL_ATTRIBUTES (newdecl))
2297 && !current_function_decl)
2298 DECL_EXTERNAL (newdecl) = 0;
2300 if (DECL_EXTERNAL (newdecl))
2302 TREE_STATIC (newdecl) = TREE_STATIC (olddecl);
2303 DECL_EXTERNAL (newdecl) = DECL_EXTERNAL (olddecl);
2305 /* An extern decl does not override previous storage class. */
2306 TREE_PUBLIC (newdecl) = TREE_PUBLIC (olddecl);
2307 if (!DECL_EXTERNAL (newdecl))
2309 DECL_CONTEXT (newdecl) = DECL_CONTEXT (olddecl);
2310 DECL_COMMON (newdecl) = DECL_COMMON (olddecl);
2315 TREE_STATIC (olddecl) = TREE_STATIC (newdecl);
2316 TREE_PUBLIC (olddecl) = TREE_PUBLIC (newdecl);
2319 if (TREE_CODE (newdecl) == FUNCTION_DECL)
2321 /* If we're redefining a function previously defined as extern
2322 inline, make sure we emit debug info for the inline before we
2323 throw it away, in case it was inlined into a function that
2324 hasn't been written out yet. */
2325 if (new_is_definition && DECL_INITIAL (olddecl))
2326 /* The new defn must not be inline. */
2327 DECL_UNINLINABLE (newdecl) = 1;
2330 /* If either decl says `inline', this fn is inline, unless
2331 its definition was passed already. */
2332 if (DECL_DECLARED_INLINE_P (newdecl)
2333 || DECL_DECLARED_INLINE_P (olddecl))
2334 DECL_DECLARED_INLINE_P (newdecl) = 1;
2336 DECL_UNINLINABLE (newdecl) = DECL_UNINLINABLE (olddecl)
2337 = (DECL_UNINLINABLE (newdecl) || DECL_UNINLINABLE (olddecl));
2339 DECL_DISREGARD_INLINE_LIMITS (newdecl)
2340 = DECL_DISREGARD_INLINE_LIMITS (olddecl)
2341 = (DECL_DISREGARD_INLINE_LIMITS (newdecl)
2342 || DECL_DISREGARD_INLINE_LIMITS (olddecl));
2345 if (DECL_BUILT_IN (olddecl))
2347 /* If redeclaring a builtin function, it stays built in.
2348 But it gets tagged as having been declared. */
2349 DECL_BUILT_IN_CLASS (newdecl) = DECL_BUILT_IN_CLASS (olddecl);
2350 DECL_FUNCTION_CODE (newdecl) = DECL_FUNCTION_CODE (olddecl);
2351 C_DECL_DECLARED_BUILTIN (newdecl) = 1;
2352 if (new_is_prototype)
2353 C_DECL_BUILTIN_PROTOTYPE (newdecl) = 0;
2355 C_DECL_BUILTIN_PROTOTYPE (newdecl)
2356 = C_DECL_BUILTIN_PROTOTYPE (olddecl);
2359 /* Preserve function specific target and optimization options */
2360 if (DECL_FUNCTION_SPECIFIC_TARGET (olddecl)
2361 && !DECL_FUNCTION_SPECIFIC_TARGET (newdecl))
2362 DECL_FUNCTION_SPECIFIC_TARGET (newdecl)
2363 = DECL_FUNCTION_SPECIFIC_TARGET (olddecl);
2365 if (DECL_FUNCTION_SPECIFIC_OPTIMIZATION (olddecl)
2366 && !DECL_FUNCTION_SPECIFIC_OPTIMIZATION (newdecl))
2367 DECL_FUNCTION_SPECIFIC_OPTIMIZATION (newdecl)
2368 = DECL_FUNCTION_SPECIFIC_OPTIMIZATION (olddecl);
2370 /* Also preserve various other info from the definition. */
2371 if (!new_is_definition)
2374 DECL_RESULT (newdecl) = DECL_RESULT (olddecl);
2375 DECL_INITIAL (newdecl) = DECL_INITIAL (olddecl);
2376 DECL_STRUCT_FUNCTION (newdecl) = DECL_STRUCT_FUNCTION (olddecl);
2377 DECL_SAVED_TREE (newdecl) = DECL_SAVED_TREE (olddecl);
2378 gimple_set_body (newdecl, gimple_body (olddecl));
2379 DECL_ARGUMENTS (newdecl) = copy_list (DECL_ARGUMENTS (olddecl));
2380 for (t = DECL_ARGUMENTS (newdecl); t ; t = TREE_CHAIN (t))
2381 DECL_CONTEXT (t) = newdecl;
2383 /* See if we've got a function to instantiate from. */
2384 if (DECL_SAVED_TREE (olddecl))
2385 DECL_ABSTRACT_ORIGIN (newdecl)
2386 = DECL_ABSTRACT_ORIGIN (olddecl);
2390 extern_changed = DECL_EXTERNAL (olddecl) && !DECL_EXTERNAL (newdecl);
2392 /* Merge the USED information. */
2393 if (TREE_USED (olddecl))
2394 TREE_USED (newdecl) = 1;
2395 else if (TREE_USED (newdecl))
2396 TREE_USED (olddecl) = 1;
2397 if (TREE_CODE (olddecl) == VAR_DECL || TREE_CODE (olddecl) == PARM_DECL)
2398 DECL_READ_P (newdecl) |= DECL_READ_P (olddecl);
2399 if (DECL_PRESERVE_P (olddecl))
2400 DECL_PRESERVE_P (newdecl) = 1;
2401 else if (DECL_PRESERVE_P (newdecl))
2402 DECL_PRESERVE_P (olddecl) = 1;
2404 /* Copy most of the decl-specific fields of NEWDECL into OLDDECL.
2405 But preserve OLDDECL's DECL_UID, DECL_CONTEXT and
2406 DECL_ARGUMENTS (if appropriate). */
2408 unsigned olddecl_uid = DECL_UID (olddecl);
2409 tree olddecl_context = DECL_CONTEXT (olddecl);
2410 tree olddecl_arguments = NULL;
2411 if (TREE_CODE (olddecl) == FUNCTION_DECL)
2412 olddecl_arguments = DECL_ARGUMENTS (olddecl);
2414 memcpy ((char *) olddecl + sizeof (struct tree_common),
2415 (char *) newdecl + sizeof (struct tree_common),
2416 sizeof (struct tree_decl_common) - sizeof (struct tree_common));
2417 switch (TREE_CODE (olddecl))
2420 gimple_set_body (olddecl, gimple_body (newdecl));
2430 memcpy ((char *) olddecl + sizeof (struct tree_decl_common),
2431 (char *) newdecl + sizeof (struct tree_decl_common),
2432 tree_code_size (TREE_CODE (olddecl)) - sizeof (struct tree_decl_common));
2437 memcpy ((char *) olddecl + sizeof (struct tree_decl_common),
2438 (char *) newdecl + sizeof (struct tree_decl_common),
2439 sizeof (struct tree_decl_non_common) - sizeof (struct tree_decl_common));
2441 DECL_UID (olddecl) = olddecl_uid;
2442 DECL_CONTEXT (olddecl) = olddecl_context;
2443 if (TREE_CODE (olddecl) == FUNCTION_DECL)
2444 DECL_ARGUMENTS (olddecl) = olddecl_arguments;
2447 /* If OLDDECL had its DECL_RTL instantiated, re-invoke make_decl_rtl
2448 so that encode_section_info has a chance to look at the new decl
2449 flags and attributes. */
2450 if (DECL_RTL_SET_P (olddecl)
2451 && (TREE_CODE (olddecl) == FUNCTION_DECL
2452 || (TREE_CODE (olddecl) == VAR_DECL
2453 && TREE_STATIC (olddecl))))
2454 make_decl_rtl (olddecl);
2456 /* If we changed a function from DECL_EXTERNAL to !DECL_EXTERNAL,
2457 and the definition is coming from the old version, cgraph needs
2458 to be called again. */
2459 if (extern_changed && !new_is_definition
2460 && TREE_CODE (olddecl) == FUNCTION_DECL && DECL_INITIAL (olddecl))
2461 cgraph_mark_if_needed (olddecl);
2464 /* Handle when a new declaration NEWDECL has the same name as an old
2465 one OLDDECL in the same binding contour. Prints an error message
2468 If safely possible, alter OLDDECL to look like NEWDECL, and return
2469 true. Otherwise, return false. */
2472 duplicate_decls (tree newdecl, tree olddecl)
2474 tree newtype = NULL, oldtype = NULL;
2476 if (!diagnose_mismatched_decls (newdecl, olddecl, &newtype, &oldtype))
2478 /* Avoid `unused variable' and other warnings for OLDDECL. */
2479 TREE_NO_WARNING (olddecl) = 1;
2483 merge_decls (newdecl, olddecl, newtype, oldtype);
2488 /* Check whether decl-node NEW_DECL shadows an existing declaration. */
2490 warn_if_shadowing (tree new_decl)
2492 struct c_binding *b;
2494 /* Shadow warnings wanted? */
2496 /* No shadow warnings for internally generated vars. */
2497 || DECL_IS_BUILTIN (new_decl)
2498 /* No shadow warnings for vars made for inlining. */
2499 || DECL_FROM_INLINE (new_decl))
2502 /* Is anything being shadowed? Invisible decls do not count. */
2503 for (b = I_SYMBOL_BINDING (DECL_NAME (new_decl)); b; b = b->shadowed)
2504 if (b->decl && b->decl != new_decl && !b->invisible)
2506 tree old_decl = b->decl;
2508 if (old_decl == error_mark_node)
2510 warning (OPT_Wshadow, "declaration of %q+D shadows previous "
2511 "non-variable", new_decl);
2514 else if (TREE_CODE (old_decl) == PARM_DECL)
2515 warning (OPT_Wshadow, "declaration of %q+D shadows a parameter",
2517 else if (DECL_FILE_SCOPE_P (old_decl))
2518 warning (OPT_Wshadow, "declaration of %q+D shadows a global "
2519 "declaration", new_decl);
2520 else if (TREE_CODE (old_decl) == FUNCTION_DECL
2521 && DECL_BUILT_IN (old_decl))
2523 warning (OPT_Wshadow, "declaration of %q+D shadows "
2524 "a built-in function", new_decl);
2528 warning (OPT_Wshadow, "declaration of %q+D shadows a previous local",
2531 warning_at (DECL_SOURCE_LOCATION (old_decl), OPT_Wshadow,
2532 "shadowed declaration is here");
2538 /* Record a decl-node X as belonging to the current lexical scope.
2539 Check for errors (such as an incompatible declaration for the same
2540 name already seen in the same scope).
2542 Returns either X or an old decl for the same name.
2543 If an old decl is returned, it may have been smashed
2544 to agree with what X says. */
2549 tree name = DECL_NAME (x);
2550 struct c_scope *scope = current_scope;
2551 struct c_binding *b;
2552 bool nested = false;
2553 location_t locus = DECL_SOURCE_LOCATION (x);
2555 /* Must set DECL_CONTEXT for everything not at file scope or
2556 DECL_FILE_SCOPE_P won't work. Local externs don't count
2557 unless they have initializers (which generate code). */
2558 if (current_function_decl
2559 && ((TREE_CODE (x) != FUNCTION_DECL && TREE_CODE (x) != VAR_DECL)
2560 || DECL_INITIAL (x) || !DECL_EXTERNAL (x)))
2561 DECL_CONTEXT (x) = current_function_decl;
2563 /* Anonymous decls are just inserted in the scope. */
2566 bind (name, x, scope, /*invisible=*/false, /*nested=*/false,
2571 /* First, see if there is another declaration with the same name in
2572 the current scope. If there is, duplicate_decls may do all the
2573 work for us. If duplicate_decls returns false, that indicates
2574 two incompatible decls in the same scope; we are to silently
2575 replace the old one (duplicate_decls has issued all appropriate
2576 diagnostics). In particular, we should not consider possible
2577 duplicates in the external scope, or shadowing. */
2578 b = I_SYMBOL_BINDING (name);
2579 if (b && B_IN_SCOPE (b, scope))
2581 struct c_binding *b_ext, *b_use;
2582 tree type = TREE_TYPE (x);
2583 tree visdecl = b->decl;
2584 tree vistype = TREE_TYPE (visdecl);
2585 if (TREE_CODE (TREE_TYPE (x)) == ARRAY_TYPE
2586 && COMPLETE_TYPE_P (TREE_TYPE (x)))
2587 b->inner_comp = false;
2590 /* If this is an external linkage declaration, we should check
2591 for compatibility with the type in the external scope before
2592 setting the type at this scope based on the visible
2593 information only. */
2594 if (TREE_PUBLIC (x) && TREE_PUBLIC (visdecl))
2596 while (b_ext && !B_IN_EXTERNAL_SCOPE (b_ext))
2597 b_ext = b_ext->shadowed;
2602 TREE_TYPE (b_use->decl) = b_use->u.type;
2605 if (duplicate_decls (x, b_use->decl))
2609 /* Save the updated type in the external scope and
2610 restore the proper type for this scope. */
2612 if (comptypes (vistype, type))
2613 thistype = composite_type (vistype, type);
2615 thistype = TREE_TYPE (b_use->decl);
2616 b_use->u.type = TREE_TYPE (b_use->decl);
2617 if (TREE_CODE (b_use->decl) == FUNCTION_DECL
2618 && DECL_BUILT_IN (b_use->decl))
2620 = build_type_attribute_variant (thistype,
2623 TREE_TYPE (b_use->decl) = thistype;
2628 goto skip_external_and_shadow_checks;
2631 /* All declarations with external linkage, and all external
2632 references, go in the external scope, no matter what scope is
2633 current. However, the binding in that scope is ignored for
2634 purposes of normal name lookup. A separate binding structure is
2635 created in the requested scope; this governs the normal
2636 visibility of the symbol.
2638 The binding in the externals scope is used exclusively for
2639 detecting duplicate declarations of the same object, no matter
2640 what scope they are in; this is what we do here. (C99 6.2.7p2:
2641 All declarations that refer to the same object or function shall
2642 have compatible type; otherwise, the behavior is undefined.) */
2643 if (DECL_EXTERNAL (x) || scope == file_scope)
2645 tree type = TREE_TYPE (x);
2648 bool type_saved = false;
2649 if (b && !B_IN_EXTERNAL_SCOPE (b)
2650 && (TREE_CODE (b->decl) == FUNCTION_DECL
2651 || TREE_CODE (b->decl) == VAR_DECL)
2652 && DECL_FILE_SCOPE_P (b->decl))
2655 vistype = TREE_TYPE (visdecl);
2657 if (scope != file_scope
2658 && !DECL_IN_SYSTEM_HEADER (x))
2659 warning (OPT_Wnested_externs, "nested extern declaration of %qD", x);
2661 while (b && !B_IN_EXTERNAL_SCOPE (b))
2663 /* If this decl might be modified, save its type. This is
2664 done here rather than when the decl is first bound
2665 because the type may change after first binding, through
2666 being completed or through attributes being added. If we
2667 encounter multiple such decls, only the first should have
2668 its type saved; the others will already have had their
2669 proper types saved and the types will not have changed as
2670 their scopes will not have been re-entered. */
2671 if (DECL_P (b->decl) && DECL_FILE_SCOPE_P (b->decl) && !type_saved)
2673 b->u.type = TREE_TYPE (b->decl);
2676 if (B_IN_FILE_SCOPE (b)
2677 && TREE_CODE (b->decl) == VAR_DECL
2678 && TREE_STATIC (b->decl)
2679 && TREE_CODE (TREE_TYPE (b->decl)) == ARRAY_TYPE
2680 && !TYPE_DOMAIN (TREE_TYPE (b->decl))
2681 && TREE_CODE (type) == ARRAY_TYPE
2682 && TYPE_DOMAIN (type)
2683 && TYPE_MAX_VALUE (TYPE_DOMAIN (type))
2684 && !integer_zerop (TYPE_MAX_VALUE (TYPE_DOMAIN (type))))
2686 /* Array type completed in inner scope, which should be
2687 diagnosed if the completion does not have size 1 and
2688 it does not get completed in the file scope. */
2689 b->inner_comp = true;
2694 /* If a matching external declaration has been found, set its
2695 type to the composite of all the types of that declaration.
2696 After the consistency checks, it will be reset to the
2697 composite of the visible types only. */
2698 if (b && (TREE_PUBLIC (x) || same_translation_unit_p (x, b->decl))
2700 TREE_TYPE (b->decl) = b->u.type;
2702 /* The point of the same_translation_unit_p check here is,
2703 we want to detect a duplicate decl for a construct like
2704 foo() { extern bar(); } ... static bar(); but not if
2705 they are in different translation units. In any case,
2706 the static does not go in the externals scope. */
2708 && (TREE_PUBLIC (x) || same_translation_unit_p (x, b->decl))
2709 && duplicate_decls (x, b->decl))
2714 if (comptypes (vistype, type))
2715 thistype = composite_type (vistype, type);
2717 thistype = TREE_TYPE (b->decl);
2721 b->u.type = TREE_TYPE (b->decl);
2722 if (TREE_CODE (b->decl) == FUNCTION_DECL && DECL_BUILT_IN (b->decl))
2724 = build_type_attribute_variant (thistype,
2725 TYPE_ATTRIBUTES (b->u.type));
2726 TREE_TYPE (b->decl) = thistype;
2727 bind (name, b->decl, scope, /*invisible=*/false, /*nested=*/true,
2731 else if (TREE_PUBLIC (x))
2733 if (visdecl && !b && duplicate_decls (x, visdecl))
2735 /* An external declaration at block scope referring to a
2736 visible entity with internal linkage. The composite
2737 type will already be correct for this scope, so we
2738 just need to fall through to make the declaration in
2745 bind (name, x, external_scope, /*invisible=*/true,
2746 /*nested=*/false, locus);
2752 if (TREE_CODE (x) != PARM_DECL)
2753 warn_if_shadowing (x);
2755 skip_external_and_shadow_checks:
2756 if (TREE_CODE (x) == TYPE_DECL)
2757 set_underlying_type (x);
2759 bind (name, x, scope, /*invisible=*/false, nested, locus);
2761 /* If x's type is incomplete because it's based on a
2762 structure or union which has not yet been fully declared,
2763 attach it to that structure or union type, so we can go
2764 back and complete the variable declaration later, if the
2765 structure or union gets fully declared.
2767 If the input is erroneous, we can have error_mark in the type
2768 slot (e.g. "f(void a, ...)") - that doesn't count as an
2770 if (TREE_TYPE (x) != error_mark_node
2771 && !COMPLETE_TYPE_P (TREE_TYPE (x)))
2773 tree element = TREE_TYPE (x);
2775 while (TREE_CODE (element) == ARRAY_TYPE)
2776 element = TREE_TYPE (element);
2777 element = TYPE_MAIN_VARIANT (element);
2779 if ((TREE_CODE (element) == RECORD_TYPE
2780 || TREE_CODE (element) == UNION_TYPE)
2781 && (TREE_CODE (x) != TYPE_DECL
2782 || TREE_CODE (TREE_TYPE (x)) == ARRAY_TYPE)
2783 && !COMPLETE_TYPE_P (element))
2784 C_TYPE_INCOMPLETE_VARS (element)
2785 = tree_cons (NULL_TREE, x, C_TYPE_INCOMPLETE_VARS (element));
2790 /* Record X as belonging to file scope.
2791 This is used only internally by the Objective-C front end,
2792 and is limited to its needs. duplicate_decls is not called;
2793 if there is any preexisting decl for this identifier, it is an ICE. */
2796 pushdecl_top_level (tree x)
2799 bool nested = false;
2800 gcc_assert (TREE_CODE (x) == VAR_DECL || TREE_CODE (x) == CONST_DECL);
2802 name = DECL_NAME (x);
2804 gcc_assert (TREE_CODE (x) == CONST_DECL || !I_SYMBOL_BINDING (name));
2806 if (TREE_PUBLIC (x))
2808 bind (name, x, external_scope, /*invisible=*/true, /*nested=*/false,
2813 bind (name, x, file_scope, /*invisible=*/false, nested, UNKNOWN_LOCATION);
2819 implicit_decl_warning (tree id, tree olddecl)
2821 if (warn_implicit_function_declaration)
2826 warned = pedwarn (input_location, OPT_Wimplicit_function_declaration,
2827 "implicit declaration of function %qE", id);
2829 warned = warning (OPT_Wimplicit_function_declaration,
2830 G_("implicit declaration of function %qE"), id);
2831 if (olddecl && warned)
2832 locate_old_decl (olddecl);
2836 /* Generate an implicit declaration for identifier FUNCTIONID at LOC as a
2837 function of type int (). */
2840 implicitly_declare (location_t loc, tree functionid)
2842 struct c_binding *b;
2846 for (b = I_SYMBOL_BINDING (functionid); b; b = b->shadowed)
2848 if (B_IN_SCOPE (b, external_scope))
2857 if (decl == error_mark_node)
2860 /* FIXME: Objective-C has weird not-really-builtin functions
2861 which are supposed to be visible automatically. They wind up
2862 in the external scope because they're pushed before the file
2863 scope gets created. Catch this here and rebind them into the
2865 if (!DECL_BUILT_IN (decl) && DECL_IS_BUILTIN (decl))
2867 bind (functionid, decl, file_scope,
2868 /*invisible=*/false, /*nested=*/true,
2869 DECL_SOURCE_LOCATION (decl));
2874 tree newtype = default_function_type;
2876 TREE_TYPE (decl) = b->u.type;
2877 /* Implicit declaration of a function already declared
2878 (somehow) in a different scope, or as a built-in.
2879 If this is the first time this has happened, warn;
2880 then recycle the old declaration but with the new type. */
2881 if (!C_DECL_IMPLICIT (decl))
2883 implicit_decl_warning (functionid, decl);
2884 C_DECL_IMPLICIT (decl) = 1;
2886 if (DECL_BUILT_IN (decl))
2888 newtype = build_type_attribute_variant (newtype,
2890 (TREE_TYPE (decl)));
2891 if (!comptypes (newtype, TREE_TYPE (decl)))
2893 warning_at (loc, 0, "incompatible implicit declaration of "
2894 "built-in function %qD", decl);
2895 newtype = TREE_TYPE (decl);
2900 if (!comptypes (newtype, TREE_TYPE (decl)))
2902 error_at (loc, "incompatible implicit declaration of function %qD", decl);
2903 locate_old_decl (decl);
2906 b->u.type = TREE_TYPE (decl);
2907 TREE_TYPE (decl) = newtype;
2908 bind (functionid, decl, current_scope,
2909 /*invisible=*/false, /*nested=*/true,
2910 DECL_SOURCE_LOCATION (decl));
2915 /* Not seen before. */
2916 decl = build_decl (loc, FUNCTION_DECL, functionid, default_function_type);
2917 DECL_EXTERNAL (decl) = 1;
2918 TREE_PUBLIC (decl) = 1;
2919 C_DECL_IMPLICIT (decl) = 1;
2920 implicit_decl_warning (functionid, 0);
2921 asmspec_tree = maybe_apply_renaming_pragma (decl, /*asmname=*/NULL);
2923 set_user_assembler_name (decl, TREE_STRING_POINTER (asmspec_tree));
2925 /* C89 says implicit declarations are in the innermost block.
2926 So we record the decl in the standard fashion. */
2927 decl = pushdecl (decl);
2929 /* No need to call objc_check_decl here - it's a function type. */
2930 rest_of_decl_compilation (decl, 0, 0);
2932 /* Write a record describing this implicit function declaration
2933 to the prototypes file (if requested). */
2934 gen_aux_info_record (decl, 0, 1, 0);
2936 /* Possibly apply some default attributes to this implicit declaration. */
2937 decl_attributes (&decl, NULL_TREE, 0);
2942 /* Issue an error message for a reference to an undeclared variable
2943 ID, including a reference to a builtin outside of function-call
2944 context. Establish a binding of the identifier to error_mark_node
2945 in an appropriate scope, which will suppress further errors for the
2946 same identifier. The error message should be given location LOC. */
2948 undeclared_variable (location_t loc, tree id)
2950 static bool already = false;
2951 struct c_scope *scope;
2953 if (current_function_decl == 0)
2955 error_at (loc, "%qE undeclared here (not in a function)", id);
2956 scope = current_scope;
2960 error_at (loc, "%qE undeclared (first use in this function)", id);
2963 inform (loc, "each undeclared identifier is reported only"
2964 " once for each function it appears in");
2968 /* If we are parsing old-style parameter decls, current_function_decl
2969 will be nonnull but current_function_scope will be null. */
2970 scope = current_function_scope ? current_function_scope : current_scope;
2972 bind (id, error_mark_node, scope, /*invisible=*/false, /*nested=*/false,
2976 /* Subroutine of lookup_label, declare_label, define_label: construct a
2977 LABEL_DECL with all the proper frills. Also create a struct
2978 c_label_vars initialized for the current scope. */
2981 make_label (location_t location, tree name, bool defining,
2982 struct c_label_vars **p_label_vars)
2984 tree label = build_decl (location, LABEL_DECL, name, void_type_node);
2985 struct c_label_vars *label_vars;
2987 DECL_CONTEXT (label) = current_function_decl;
2988 DECL_MODE (label) = VOIDmode;
2990 label_vars = GGC_NEW (struct c_label_vars);
2991 label_vars->shadowed = NULL;
2992 set_spot_bindings (&label_vars->label_bindings, defining);
2993 label_vars->decls_in_scope = make_tree_vector ();
2994 label_vars->gotos = VEC_alloc (c_goto_bindings_p, gc, 0);
2995 *p_label_vars = label_vars;
3000 /* Get the LABEL_DECL corresponding to identifier NAME as a label.
3001 Create one if none exists so far for the current function.
3002 This is called when a label is used in a goto expression or
3003 has its address taken. */
3006 lookup_label (tree name)
3009 struct c_label_vars *label_vars;
3011 if (current_function_decl == 0)
3013 error ("label %qE referenced outside of any function", name);
3017 /* Use a label already defined or ref'd with this name, but not if
3018 it is inherited from a containing function and wasn't declared
3020 label = I_LABEL_DECL (name);
3021 if (label && (DECL_CONTEXT (label) == current_function_decl
3022 || C_DECLARED_LABEL_FLAG (label)))
3024 /* If the label has only been declared, update its apparent
3025 location to point here, for better diagnostics if it
3026 turns out not to have been defined. */
3027 if (DECL_INITIAL (label) == NULL_TREE)
3028 DECL_SOURCE_LOCATION (label) = input_location;
3032 /* No label binding for that identifier; make one. */
3033 label = make_label (input_location, name, false, &label_vars);
3035 /* Ordinary labels go in the current function scope. */
3036 bind_label (name, label, current_function_scope, label_vars);
3041 /* Issue a warning about DECL for a goto statement at GOTO_LOC going
3045 warn_about_goto (location_t goto_loc, tree label, tree decl)
3047 if (variably_modified_type_p (TREE_TYPE (decl), NULL_TREE))
3049 "jump into scope of identifier with variably modified type");
3051 warning_at (goto_loc, OPT_Wjump_misses_init,
3052 "jump skips variable initialization");
3053 inform (DECL_SOURCE_LOCATION (label), "label %qD defined here", label);
3054 inform (DECL_SOURCE_LOCATION (decl), "%qD declared here", decl);
3057 /* Look up a label because of a goto statement. This is like
3058 lookup_label, but also issues any appropriate warnings. */
3061 lookup_label_for_goto (location_t loc, tree name)
3064 struct c_label_vars *label_vars;
3068 label = lookup_label (name);
3069 if (label == NULL_TREE)
3072 /* If we are jumping to a different function, we can't issue any
3074 if (DECL_CONTEXT (label) != current_function_decl)
3076 gcc_assert (C_DECLARED_LABEL_FLAG (label));
3080 label_vars = I_LABEL_BINDING (name)->u.label;
3082 /* If the label has not yet been defined, then push this goto on a
3083 list for possible later warnings. */
3084 if (label_vars->label_bindings.scope == NULL)
3086 struct c_goto_bindings *g;
3088 g = GGC_NEW (struct c_goto_bindings);
3090 set_spot_bindings (&g->goto_bindings, true);
3091 VEC_safe_push (c_goto_bindings_p, gc, label_vars->gotos, g);
3095 /* If there are any decls in label_vars->decls_in_scope, then this
3096 goto has missed the declaration of the decl. This happens for a
3102 Issue a warning or error. */
3103 for (ix = 0; VEC_iterate (tree, label_vars->decls_in_scope, ix, decl); ++ix)
3104 warn_about_goto (loc, label, decl);
3106 if (label_vars->label_bindings.left_stmt_expr)
3108 error_at (loc, "jump into statement expression");
3109 inform (DECL_SOURCE_LOCATION (label), "label %qD defined here", label);
3115 /* Make a label named NAME in the current function, shadowing silently
3116 any that may be inherited from containing functions or containing
3117 scopes. This is called for __label__ declarations. */
3120 declare_label (tree name)
3122 struct c_binding *b = I_LABEL_BINDING (name);
3124 struct c_label_vars *label_vars;
3126 /* Check to make sure that the label hasn't already been declared
3128 if (b && B_IN_CURRENT_SCOPE (b))
3130 error ("duplicate label declaration %qE", name);
3131 locate_old_decl (b->decl);
3133 /* Just use the previous declaration. */
3137 label = make_label (input_location, name, false, &label_vars);
3138 C_DECLARED_LABEL_FLAG (label) = 1;
3140 /* Declared labels go in the current scope. */
3141 bind_label (name, label, current_scope, label_vars);
3146 /* When we define a label, issue any appropriate warnings if there are
3147 any gotos earlier in the function which jump to this label. */
3150 check_earlier_gotos (tree label, struct c_label_vars* label_vars)
3153 struct c_goto_bindings *g;
3156 VEC_iterate (c_goto_bindings_p, label_vars->gotos, ix, g);
3159 struct c_binding *b;
3160 struct c_scope *scope;
3162 /* We have a goto to this label. The goto is going forward. In
3163 g->scope, the goto is going to skip any binding which was
3164 defined after g->bindings_in_scope. */
3165 for (b = g->goto_bindings.scope->bindings;
3166 b != g->goto_bindings.bindings_in_scope;
3169 if (decl_jump_unsafe (b->decl))
3170 warn_about_goto (g->loc, label, b->decl);
3173 /* We also need to warn about decls defined in any scopes
3174 between the scope of the label and the scope of the goto. */
3175 for (scope = label_vars->label_bindings.scope;
3176 scope != g->goto_bindings.scope;
3177 scope = scope->outer)
3179 gcc_assert (scope != NULL);
3180 if (scope == label_vars->label_bindings.scope)
3181 b = label_vars->label_bindings.bindings_in_scope;
3183 b = scope->bindings;
3184 for (; b != NULL; b = b->prev)
3186 if (decl_jump_unsafe (b->decl))
3187 warn_about_goto (g->loc, label, b->decl);
3191 if (g->goto_bindings.stmt_exprs > 0)
3193 error_at (g->loc, "jump into statement expression");
3194 inform (DECL_SOURCE_LOCATION (label), "label %qD defined here",
3199 /* Now that the label is defined, we will issue warnings about
3200 subsequent gotos to this label when we see them. */
3201 VEC_truncate (c_goto_bindings_p, label_vars->gotos, 0);
3202 label_vars->gotos = NULL;
3205 /* Define a label, specifying the location in the source file.
3206 Return the LABEL_DECL node for the label, if the definition is valid.
3207 Otherwise return 0. */
3210 define_label (location_t location, tree name)
3212 /* Find any preexisting label with this name. It is an error
3213 if that label has already been defined in this function, or
3214 if there is a containing function with a declared label with
3216 tree label = I_LABEL_DECL (name);
3219 && ((DECL_CONTEXT (label) == current_function_decl
3220 && DECL_INITIAL (label) != 0)
3221 || (DECL_CONTEXT (label) != current_function_decl
3222 && C_DECLARED_LABEL_FLAG (label))))
3224 error_at (location, "duplicate label %qD", label);
3225 locate_old_decl (label);
3228 else if (label && DECL_CONTEXT (label) == current_function_decl)
3230 struct c_label_vars *label_vars = I_LABEL_BINDING (name)->u.label;
3232 /* The label has been used or declared already in this function,
3233 but not defined. Update its location to point to this
3235 DECL_SOURCE_LOCATION (label) = location;
3236 set_spot_bindings (&label_vars->label_bindings, true);
3238 /* Issue warnings as required about any goto statements from
3239 earlier in the function. */
3240 check_earlier_gotos (label, label_vars);
3244 struct c_label_vars *label_vars;
3246 /* No label binding for that identifier; make one. */
3247 label = make_label (location, name, true, &label_vars);
3249 /* Ordinary labels go in the current function scope. */
3250 bind_label (name, label, current_function_scope, label_vars);
3253 if (!in_system_header && lookup_name (name))
3254 warning_at (location, OPT_Wtraditional,
3255 "traditional C lacks a separate namespace "
3256 "for labels, identifier %qE conflicts", name);
3258 /* Mark label as having been defined. */
3259 DECL_INITIAL (label) = error_mark_node;
3263 /* Get the bindings for a new switch statement. This is used to issue
3264 warnings as appropriate for jumps from the switch to case or
3267 struct c_spot_bindings *
3268 c_get_switch_bindings (void)
3270 struct c_spot_bindings *switch_bindings;
3272 switch_bindings = XNEW (struct c_spot_bindings);
3273 set_spot_bindings (switch_bindings, true);
3274 return switch_bindings;
3278 c_release_switch_bindings (struct c_spot_bindings *bindings)
3280 gcc_assert (bindings->stmt_exprs == 0 && !bindings->left_stmt_expr);
3284 /* This is called at the point of a case or default label to issue
3285 warnings about decls as needed. It returns true if it found an
3286 error, not just a warning. */
3289 c_check_switch_jump_warnings (struct c_spot_bindings *switch_bindings,
3290 location_t switch_loc, location_t case_loc)
3293 struct c_scope *scope;
3296 for (scope = current_scope;
3297 scope != switch_bindings->scope;
3298 scope = scope->outer)
3300 struct c_binding *b;
3302 gcc_assert (scope != NULL);
3303 for (b = scope->bindings; b != NULL; b = b->prev)
3305 if (decl_jump_unsafe (b->decl))
3307 if (variably_modified_type_p (TREE_TYPE (b->decl), NULL_TREE))
3311 ("switch jumps into scope of identifier with "
3312 "variably modified type"));
3315 warning_at (case_loc, OPT_Wjump_misses_init,
3316 "switch jumps over variable initialization");
3317 inform (switch_loc, "switch starts here");
3318 inform (DECL_SOURCE_LOCATION (b->decl), "%qD declared here",
3324 if (switch_bindings->stmt_exprs > 0)
3327 error_at (case_loc, "switch jumps into statement expression");
3328 inform (switch_loc, "switch starts here");
3334 /* Given NAME, an IDENTIFIER_NODE,
3335 return the structure (or union or enum) definition for that name.
3336 If THISLEVEL_ONLY is nonzero, searches only the current_scope.
3337 CODE says which kind of type the caller wants;
3338 it is RECORD_TYPE or UNION_TYPE or ENUMERAL_TYPE.
3339 If PLOC is not NULL and this returns non-null, it sets *PLOC to the
3340 location where the tag was defined.
3341 If the wrong kind of type is found, an error is reported. */
3344 lookup_tag (enum tree_code code, tree name, int thislevel_only,
3347 struct c_binding *b = I_TAG_BINDING (name);
3353 /* We only care about whether it's in this level if
3354 thislevel_only was set or it might be a type clash. */
3355 if (thislevel_only || TREE_CODE (b->decl) != code)
3357 /* For our purposes, a tag in the external scope is the same as
3358 a tag in the file scope. (Primarily relevant to Objective-C
3359 and its builtin structure tags, which get pushed before the
3360 file scope is created.) */
3361 if (B_IN_CURRENT_SCOPE (b)
3362 || (current_scope == file_scope && B_IN_EXTERNAL_SCOPE (b)))
3366 if (thislevel_only && !thislevel)
3369 if (TREE_CODE (b->decl) != code)
3371 /* Definition isn't the kind we were looking for. */
3372 pending_invalid_xref = name;
3373 pending_invalid_xref_location = input_location;
3375 /* If in the same binding level as a declaration as a tag
3376 of a different type, this must not be allowed to
3377 shadow that tag, so give the error immediately.
3378 (For example, "struct foo; union foo;" is invalid.) */
3380 pending_xref_error ();
3389 /* Print an error message now
3390 for a recent invalid struct, union or enum cross reference.
3391 We don't print them immediately because they are not invalid
3392 when used in the `struct foo;' construct for shadowing. */
3395 pending_xref_error (void)
3397 if (pending_invalid_xref != 0)
3398 error_at (pending_invalid_xref_location, "%qE defined as wrong kind of tag",
3399 pending_invalid_xref);
3400 pending_invalid_xref = 0;
3404 /* Look up NAME in the current scope and its superiors
3405 in the namespace of variables, functions and typedefs.
3406 Return a ..._DECL node of some kind representing its definition,
3407 or return 0 if it is undefined. */
3410 lookup_name (tree name)
3412 struct c_binding *b = I_SYMBOL_BINDING (name);
3413 if (b && !b->invisible)
3418 /* Similar to `lookup_name' but look only at the indicated scope. */
3421 lookup_name_in_scope (tree name, struct c_scope *scope)
3423 struct c_binding *b;
3425 for (b = I_SYMBOL_BINDING (name); b; b = b->shadowed)
3426 if (B_IN_SCOPE (b, scope))
3431 /* Create the predefined scalar types of C,
3432 and some nodes representing standard constants (0, 1, (void *) 0).
3433 Initialize the global scope.
3434 Make definitions for built-in primitive functions. */
3437 c_init_decl_processing (void)
3439 location_t save_loc = input_location;
3441 /* Initialize reserved words for parser. */
3444 current_function_decl = 0;
3446 gcc_obstack_init (&parser_obstack);
3448 /* Make the externals scope. */
3450 external_scope = current_scope;
3452 /* Declarations from c_common_nodes_and_builtins must not be associated
3453 with this input file, lest we get differences between using and not
3454 using preprocessed headers. */
3455 input_location = BUILTINS_LOCATION;
3457 build_common_tree_nodes (flag_signed_char);
3459 c_common_nodes_and_builtins ();
3461 /* In C, comparisons and TRUTH_* expressions have type int. */
3462 truthvalue_type_node = integer_type_node;
3463 truthvalue_true_node = integer_one_node;
3464 truthvalue_false_node = integer_zero_node;
3466 /* Even in C99, which has a real boolean type. */
3467 pushdecl (build_decl (UNKNOWN_LOCATION, TYPE_DECL, get_identifier ("_Bool"),
3468 boolean_type_node));
3470 input_location = save_loc;
3472 pedantic_lvalues = true;
3474 make_fname_decl = c_make_fname_decl;
3475 start_fname_decls ();
3478 /* Create the VAR_DECL at LOC for __FUNCTION__ etc. ID is the name to
3479 give the decl, NAME is the initialization string and TYPE_DEP
3480 indicates whether NAME depended on the type of the function. As we
3481 don't yet implement delayed emission of static data, we mark the
3482 decl as emitted so it is not placed in the output. Anything using
3483 it must therefore pull out the STRING_CST initializer directly.
3487 c_make_fname_decl (location_t loc, tree id, int type_dep)
3489 const char *name = fname_as_string (type_dep);
3490 tree decl, type, init;
3491 size_t length = strlen (name);
3493 type = build_array_type (char_type_node,
3494 build_index_type (size_int (length)));
3495 type = c_build_qualified_type (type, TYPE_QUAL_CONST);