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
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"
53 #include "langhooks.h"
54 #include "tree-mudflap.h"
55 #include "tree-gimple.h"
56 #include "diagnostic.h"
57 #include "tree-dump.h"
62 #include "langhooks-def.h"
63 #include "pointer-set.h"
65 /* In grokdeclarator, distinguish syntactic contexts of declarators. */
67 { NORMAL, /* Ordinary declaration */
68 FUNCDEF, /* Function definition */
69 PARM, /* Declaration of parm before function body */
70 FIELD, /* Declaration inside struct or union */
71 TYPENAME}; /* Typename (inside cast or sizeof) */
73 /* States indicating how grokdeclarator() should handle declspecs marked
74 with __attribute__((deprecated)). An object declared as
75 __attribute__((deprecated)) suppresses warnings of uses of other
78 enum deprecated_states {
84 /* Nonzero if we have seen an invalid cross reference
85 to a struct, union, or enum, but not yet printed the message. */
86 tree pending_invalid_xref;
88 /* File and line to appear in the eventual error message. */
89 location_t pending_invalid_xref_location;
91 /* True means we've initialized exception handling. */
92 bool c_eh_initialized_p;
94 /* The file and line that the prototype came from if this is an
95 old-style definition; used for diagnostics in
96 store_parm_decls_oldstyle. */
98 static location_t current_function_prototype_locus;
100 /* Whether this prototype was built-in. */
102 static bool current_function_prototype_built_in;
104 /* The argument type information of this prototype. */
106 static tree current_function_prototype_arg_types;
108 /* The argument information structure for the function currently being
111 static struct c_arg_info *current_function_arg_info;
113 /* The obstack on which parser and related data structures, which are
114 not live beyond their top-level declaration or definition, are
116 struct obstack parser_obstack;
118 /* The current statement tree. */
120 static GTY(()) struct stmt_tree_s c_stmt_tree;
122 /* State saving variables. */
126 /* Linked list of TRANSLATION_UNIT_DECLS for the translation units
127 included in this invocation. Note that the current translation
128 unit is not included in this list. */
130 static GTY(()) tree all_translation_units;
132 /* A list of decls to be made automatically visible in each file scope. */
133 static GTY(()) tree visible_builtins;
135 /* Set to 0 at beginning of a function definition, set to 1 if
136 a return statement that specifies a return value is seen. */
138 int current_function_returns_value;
140 /* Set to 0 at beginning of a function definition, set to 1 if
141 a return statement with no argument is seen. */
143 int current_function_returns_null;
145 /* Set to 0 at beginning of a function definition, set to 1 if
146 a call to a noreturn function is seen. */
148 int current_function_returns_abnormally;
150 /* Set to nonzero by `grokdeclarator' for a function
151 whose return type is defaulted, if warnings for this are desired. */
153 static int warn_about_return_type;
155 /* Nonzero when the current toplevel function contains a declaration
156 of a nested function which is never defined. */
158 static bool undef_nested_function;
160 /* True means global_bindings_p should return false even if the scope stack
161 says we are in file scope. */
162 bool c_override_global_bindings_to_false;
165 /* Each c_binding structure describes one binding of an identifier to
166 a decl. All the decls in a scope - irrespective of namespace - are
167 chained together by the ->prev field, which (as the name implies)
168 runs in reverse order. All the decls in a given namespace bound to
169 a given identifier are chained by the ->shadowed field, which runs
170 from inner to outer scopes.
172 The ->decl field usually points to a DECL node, but there are two
173 exceptions. In the namespace of type tags, the bound entity is a
174 RECORD_TYPE, UNION_TYPE, or ENUMERAL_TYPE node. If an undeclared
175 identifier is encountered, it is bound to error_mark_node to
176 suppress further errors about that identifier in the current
179 The ->type field stores the type of the declaration in this scope;
180 if NULL, the type is the type of the ->decl field. This is only of
181 relevance for objects with external or internal linkage which may
182 be redeclared in inner scopes, forming composite types that only
183 persist for the duration of those scopes. In the external scope,
184 this stores the composite of all the types declared for this
185 object, visible or not. The ->inner_comp field (used only at file
186 scope) stores whether an incomplete array type at file scope was
187 completed at an inner scope to an array size other than 1.
189 The depth field is copied from the scope structure that holds this
190 decl. It is used to preserve the proper ordering of the ->shadowed
191 field (see bind()) and also for a handful of special-case checks.
192 Finally, the invisible bit is true for a decl which should be
193 ignored for purposes of normal name lookup, and the nested bit is
194 true for a decl that's been bound a second time in an inner scope;
195 in all such cases, the binding in the outer scope will have its
196 invisible bit true. */
198 struct c_binding GTY((chain_next ("%h.prev")))
200 tree decl; /* the decl bound */
201 tree type; /* the type in this scope */
202 tree id; /* the identifier it's bound to */
203 struct c_binding *prev; /* the previous decl in this scope */
204 struct c_binding *shadowed; /* the innermost decl shadowed by this one */
205 unsigned int depth : 28; /* depth of this scope */
206 BOOL_BITFIELD invisible : 1; /* normal lookup should ignore this binding */
207 BOOL_BITFIELD nested : 1; /* do not set DECL_CONTEXT when popping */
208 BOOL_BITFIELD inner_comp : 1; /* incomplete array completed in inner scope */
211 #define B_IN_SCOPE(b1, b2) ((b1)->depth == (b2)->depth)
212 #define B_IN_CURRENT_SCOPE(b) ((b)->depth == current_scope->depth)
213 #define B_IN_FILE_SCOPE(b) ((b)->depth == 1 /*file_scope->depth*/)
214 #define B_IN_EXTERNAL_SCOPE(b) ((b)->depth == 0 /*external_scope->depth*/)
216 #define I_SYMBOL_BINDING(node) \
217 (((struct lang_identifier *) IDENTIFIER_NODE_CHECK(node))->symbol_binding)
218 #define I_SYMBOL_DECL(node) \
219 (I_SYMBOL_BINDING(node) ? I_SYMBOL_BINDING(node)->decl : 0)
221 #define I_TAG_BINDING(node) \
222 (((struct lang_identifier *) IDENTIFIER_NODE_CHECK(node))->tag_binding)
223 #define I_TAG_DECL(node) \
224 (I_TAG_BINDING(node) ? I_TAG_BINDING(node)->decl : 0)
226 #define I_LABEL_BINDING(node) \
227 (((struct lang_identifier *) IDENTIFIER_NODE_CHECK(node))->label_binding)
228 #define I_LABEL_DECL(node) \
229 (I_LABEL_BINDING(node) ? I_LABEL_BINDING(node)->decl : 0)
231 /* Each C symbol points to three linked lists of c_binding structures.
232 These describe the values of the identifier in the three different
233 namespaces defined by the language. */
235 struct lang_identifier GTY(())
237 struct c_common_identifier common_id;
238 struct c_binding *symbol_binding; /* vars, funcs, constants, typedefs */
239 struct c_binding *tag_binding; /* struct/union/enum tags */
240 struct c_binding *label_binding; /* labels */
243 /* Validate c-lang.c's assumptions. */
244 extern char C_SIZEOF_STRUCT_LANG_IDENTIFIER_isnt_accurate
245 [(sizeof(struct lang_identifier) == C_SIZEOF_STRUCT_LANG_IDENTIFIER) ? 1 : -1];
247 /* The resulting tree type. */
250 GTY((desc ("TREE_CODE (&%h.generic) == IDENTIFIER_NODE"),
251 chain_next ("TREE_CODE (&%h.generic) == INTEGER_TYPE ? (union lang_tree_node *) TYPE_NEXT_VARIANT (&%h.generic) : ((union lang_tree_node *) GENERIC_NEXT (&%h.generic))")))
253 union tree_node GTY ((tag ("0"),
254 desc ("tree_node_structure (&%h)")))
256 struct lang_identifier GTY ((tag ("1"))) identifier;
259 /* Each c_scope structure describes the complete contents of one
260 scope. Four scopes are distinguished specially: the innermost or
261 current scope, the innermost function scope, the file scope (always
262 the second to outermost) and the outermost or external scope.
264 Most declarations are recorded in the current scope.
266 All normal label declarations are recorded in the innermost
267 function scope, as are bindings of undeclared identifiers to
268 error_mark_node. (GCC permits nested functions as an extension,
269 hence the 'innermost' qualifier.) Explicitly declared labels
270 (using the __label__ extension) appear in the current scope.
272 Being in the file scope (current_scope == file_scope) causes
273 special behavior in several places below. Also, under some
274 conditions the Objective-C front end records declarations in the
275 file scope even though that isn't the current scope.
277 All declarations with external linkage are recorded in the external
278 scope, even if they aren't visible there; this models the fact that
279 such declarations are visible to the entire program, and (with a
280 bit of cleverness, see pushdecl) allows diagnosis of some violations
281 of C99 6.2.2p7 and 6.2.7p2:
283 If, within the same translation unit, the same identifier appears
284 with both internal and external linkage, the behavior is
287 All declarations that refer to the same object or function shall
288 have compatible type; otherwise, the behavior is undefined.
290 Initially only the built-in declarations, which describe compiler
291 intrinsic functions plus a subset of the standard library, are in
294 The order of the blocks list matters, and it is frequently appended
295 to. To avoid having to walk all the way to the end of the list on
296 each insertion, or reverse the list later, we maintain a pointer to
297 the last list entry. (FIXME: It should be feasible to use a reversed
300 The bindings list is strictly in reverse order of declarations;
301 pop_scope relies on this. */
304 struct c_scope GTY((chain_next ("%h.outer")))
306 /* The scope containing this one. */
307 struct c_scope *outer;
309 /* The next outermost function scope. */
310 struct c_scope *outer_function;
312 /* All bindings in this scope. */
313 struct c_binding *bindings;
315 /* For each scope (except the global one), a chain of BLOCK nodes
316 for all the scopes that were entered and exited one level down. */
320 /* The depth of this scope. Used to keep the ->shadowed chain of
321 bindings sorted innermost to outermost. */
322 unsigned int depth : 28;
324 /* True if we are currently filling this scope with parameter
326 BOOL_BITFIELD parm_flag : 1;
328 /* True if we saw [*] in this scope. Used to give an error messages
329 if these appears in a function definition. */
330 BOOL_BITFIELD had_vla_unspec : 1;
332 /* True if we already complained about forward parameter decls
333 in this scope. This prevents double warnings on
334 foo (int a; int b; ...) */
335 BOOL_BITFIELD warned_forward_parm_decls : 1;
337 /* True if this is the outermost block scope of a function body.
338 This scope contains the parameters, the local variables declared
339 in the outermost block, and all the labels (except those in
340 nested functions, or declared at block scope with __label__). */
341 BOOL_BITFIELD function_body : 1;
343 /* True means make a BLOCK for this scope no matter what. */
344 BOOL_BITFIELD keep : 1;
347 /* The scope currently in effect. */
349 static GTY(()) struct c_scope *current_scope;
351 /* The innermost function scope. Ordinary (not explicitly declared)
352 labels, bindings to error_mark_node, and the lazily-created
353 bindings of __func__ and its friends get this scope. */
355 static GTY(()) struct c_scope *current_function_scope;
357 /* The C file scope. This is reset for each input translation unit. */
359 static GTY(()) struct c_scope *file_scope;
361 /* The outermost scope. This is used for all declarations with
362 external linkage, and only these, hence the name. */
364 static GTY(()) struct c_scope *external_scope;
366 /* A chain of c_scope structures awaiting reuse. */
368 static GTY((deletable)) struct c_scope *scope_freelist;
370 /* A chain of c_binding structures awaiting reuse. */
372 static GTY((deletable)) struct c_binding *binding_freelist;
374 /* Append VAR to LIST in scope SCOPE. */
375 #define SCOPE_LIST_APPEND(scope, list, decl) do { \
376 struct c_scope *s_ = (scope); \
378 if (s_->list##_last) \
379 BLOCK_CHAIN (s_->list##_last) = d_; \
382 s_->list##_last = d_; \
385 /* Concatenate FROM in scope FSCOPE onto TO in scope TSCOPE. */
386 #define SCOPE_LIST_CONCAT(tscope, to, fscope, from) do { \
387 struct c_scope *t_ = (tscope); \
388 struct c_scope *f_ = (fscope); \
390 BLOCK_CHAIN (t_->to##_last) = f_->from; \
393 t_->to##_last = f_->from##_last; \
396 /* True means unconditionally make a BLOCK for the next scope pushed. */
398 static bool keep_next_level_flag;
400 /* True means the next call to push_scope will be the outermost scope
401 of a function body, so do not push a new scope, merely cease
402 expecting parameter decls. */
404 static bool next_is_function_body;
406 /* Forward declarations. */
407 static tree lookup_name_in_scope (tree, struct c_scope *);
408 static tree c_make_fname_decl (tree, int);
409 static tree grokdeclarator (const struct c_declarator *,
410 struct c_declspecs *,
411 enum decl_context, bool, tree *, tree *,
412 enum deprecated_states);
413 static tree grokparms (struct c_arg_info *, bool);
414 static void layout_array_type (tree);
416 /* T is a statement. Add it to the statement-tree. This is the
417 C/ObjC version--C++ has a slightly different version of this
423 enum tree_code code = TREE_CODE (t);
425 if (CAN_HAVE_LOCATION_P (t) && code != LABEL_EXPR)
427 if (!EXPR_HAS_LOCATION (t))
428 SET_EXPR_LOCATION (t, input_location);
431 if (code == LABEL_EXPR || code == CASE_LABEL_EXPR)
432 STATEMENT_LIST_HAS_LABEL (cur_stmt_list) = 1;
434 /* Add T to the statement-tree. Non-side-effect statements need to be
435 recorded during statement expressions. */
436 append_to_statement_list_force (t, &cur_stmt_list);
443 c_print_identifier (FILE *file, tree node, int indent)
445 print_node (file, "symbol", I_SYMBOL_DECL (node), indent + 4);
446 print_node (file, "tag", I_TAG_DECL (node), indent + 4);
447 print_node (file, "label", I_LABEL_DECL (node), indent + 4);
448 if (C_IS_RESERVED_WORD (node))
450 tree rid = ridpointers[C_RID_CODE (node)];
451 indent_to (file, indent + 4);
452 fprintf (file, "rid %p \"%s\"",
453 (void *) rid, IDENTIFIER_POINTER (rid));
457 /* Establish a binding between NAME, an IDENTIFIER_NODE, and DECL,
458 which may be any of several kinds of DECL or TYPE or error_mark_node,
459 in the scope SCOPE. */
461 bind (tree name, tree decl, struct c_scope *scope, bool invisible, bool nested)
463 struct c_binding *b, **here;
465 if (binding_freelist)
467 b = binding_freelist;
468 binding_freelist = b->prev;
471 b = GGC_NEW (struct c_binding);
476 b->depth = scope->depth;
477 b->invisible = invisible;
483 b->prev = scope->bindings;
489 switch (TREE_CODE (decl))
491 case LABEL_DECL: here = &I_LABEL_BINDING (name); break;
494 case RECORD_TYPE: here = &I_TAG_BINDING (name); break;
500 case ERROR_MARK: here = &I_SYMBOL_BINDING (name); break;
506 /* Locate the appropriate place in the chain of shadowed decls
507 to insert this binding. Normally, scope == current_scope and
508 this does nothing. */
509 while (*here && (*here)->depth > scope->depth)
510 here = &(*here)->shadowed;
516 /* Clear the binding structure B, stick it on the binding_freelist,
517 and return the former value of b->prev. This is used by pop_scope
518 and get_parm_info to iterate destructively over all the bindings
519 from a given scope. */
520 static struct c_binding *
521 free_binding_and_advance (struct c_binding *b)
523 struct c_binding *prev = b->prev;
525 memset (b, 0, sizeof (struct c_binding));
526 b->prev = binding_freelist;
527 binding_freelist = b;
533 /* Hook called at end of compilation to assume 1 elt
534 for a file-scope tentative array defn that wasn't complete before. */
537 c_finish_incomplete_decl (tree decl)
539 if (TREE_CODE (decl) == VAR_DECL)
541 tree type = TREE_TYPE (decl);
542 if (type != error_mark_node
543 && TREE_CODE (type) == ARRAY_TYPE
544 && !DECL_EXTERNAL (decl)
545 && TYPE_DOMAIN (type) == 0)
547 warning (0, "array %q+D assumed to have one element", decl);
549 complete_array_type (&TREE_TYPE (decl), NULL_TREE, true);
551 layout_decl (decl, 0);
556 /* The Objective-C front-end often needs to determine the current scope. */
559 objc_get_current_scope (void)
561 return current_scope;
564 /* The following function is used only by Objective-C. It needs to live here
565 because it accesses the innards of c_scope. */
568 objc_mark_locals_volatile (void *enclosing_blk)
570 struct c_scope *scope;
573 for (scope = current_scope;
574 scope && scope != enclosing_blk;
575 scope = scope->outer)
577 for (b = scope->bindings; b; b = b->prev)
578 objc_volatilize_decl (b->decl);
580 /* Do not climb up past the current function. */
581 if (scope->function_body)
586 /* Nonzero if we are currently in file scope. */
589 global_bindings_p (void)
591 return current_scope == file_scope && !c_override_global_bindings_to_false;
595 keep_next_level (void)
597 keep_next_level_flag = true;
600 /* Identify this scope as currently being filled with parameters. */
603 declare_parm_level (void)
605 current_scope->parm_flag = true;
611 if (next_is_function_body)
613 /* This is the transition from the parameters to the top level
614 of the function body. These are the same scope
615 (C99 6.2.1p4,6) so we do not push another scope structure.
616 next_is_function_body is set only by store_parm_decls, which
617 in turn is called when and only when we are about to
618 encounter the opening curly brace for the function body.
620 The outermost block of a function always gets a BLOCK node,
621 because the debugging output routines expect that each
622 function has at least one BLOCK. */
623 current_scope->parm_flag = false;
624 current_scope->function_body = true;
625 current_scope->keep = true;
626 current_scope->outer_function = current_function_scope;
627 current_function_scope = current_scope;
629 keep_next_level_flag = false;
630 next_is_function_body = false;
634 struct c_scope *scope;
637 scope = scope_freelist;
638 scope_freelist = scope->outer;
641 scope = GGC_CNEW (struct c_scope);
643 scope->keep = keep_next_level_flag;
644 scope->outer = current_scope;
645 scope->depth = current_scope ? (current_scope->depth + 1) : 0;
647 /* Check for scope depth overflow. Unlikely (2^28 == 268,435,456) but
649 if (current_scope && scope->depth == 0)
652 sorry ("GCC supports only %u nested scopes", scope->depth);
655 current_scope = scope;
656 keep_next_level_flag = false;
660 /* Set the TYPE_CONTEXT of all of TYPE's variants to CONTEXT. */
663 set_type_context (tree type, tree context)
665 for (type = TYPE_MAIN_VARIANT (type); type;
666 type = TYPE_NEXT_VARIANT (type))
667 TYPE_CONTEXT (type) = context;
670 /* Exit a scope. Restore the state of the identifier-decl mappings
671 that were in effect when this scope was entered. Return a BLOCK
672 node containing all the DECLs in this scope that are of interest
673 to debug info generation. */
678 struct c_scope *scope = current_scope;
679 tree block, context, p;
682 bool functionbody = scope->function_body;
683 bool keep = functionbody || scope->keep || scope->bindings;
685 c_end_vm_scope (scope->depth);
687 /* If appropriate, create a BLOCK to record the decls for the life
692 block = make_node (BLOCK);
693 BLOCK_SUBBLOCKS (block) = scope->blocks;
694 TREE_USED (block) = 1;
696 /* In each subblock, record that this is its superior. */
697 for (p = scope->blocks; p; p = BLOCK_CHAIN (p))
698 BLOCK_SUPERCONTEXT (p) = block;
700 BLOCK_VARS (block) = 0;
703 /* The TYPE_CONTEXTs for all of the tagged types belonging to this
704 scope must be set so that they point to the appropriate
705 construct, i.e. either to the current FUNCTION_DECL node, or
706 else to the BLOCK node we just constructed.
708 Note that for tagged types whose scope is just the formal
709 parameter list for some function type specification, we can't
710 properly set their TYPE_CONTEXTs here, because we don't have a
711 pointer to the appropriate FUNCTION_TYPE node readily available
712 to us. For those cases, the TYPE_CONTEXTs of the relevant tagged
713 type nodes get set in `grokdeclarator' as soon as we have created
714 the FUNCTION_TYPE node which will represent the "scope" for these
715 "parameter list local" tagged types. */
716 if (scope->function_body)
717 context = current_function_decl;
718 else if (scope == file_scope)
720 tree file_decl = build_decl (TRANSLATION_UNIT_DECL, 0, 0);
721 TREE_CHAIN (file_decl) = all_translation_units;
722 all_translation_units = file_decl;
728 /* Clear all bindings in this scope. */
729 for (b = scope->bindings; b; b = free_binding_and_advance (b))
732 switch (TREE_CODE (p))
735 /* Warnings for unused labels, errors for undefined labels. */
736 if (TREE_USED (p) && !DECL_INITIAL (p))
738 error ("label %q+D used but not defined", p);
739 DECL_INITIAL (p) = error_mark_node;
742 warn_for_unused_label (p);
744 /* Labels go in BLOCK_VARS. */
745 TREE_CHAIN (p) = BLOCK_VARS (block);
746 BLOCK_VARS (block) = p;
747 gcc_assert (I_LABEL_BINDING (b->id) == b);
748 I_LABEL_BINDING (b->id) = b->shadowed;
754 set_type_context (p, context);
756 /* Types may not have tag-names, in which case the type
757 appears in the bindings list with b->id NULL. */
760 gcc_assert (I_TAG_BINDING (b->id) == b);
761 I_TAG_BINDING (b->id) = b->shadowed;
766 /* Propagate TREE_ADDRESSABLE from nested functions to their
767 containing functions. */
768 if (!TREE_ASM_WRITTEN (p)
769 && DECL_INITIAL (p) != 0
770 && TREE_ADDRESSABLE (p)
771 && DECL_ABSTRACT_ORIGIN (p) != 0
772 && DECL_ABSTRACT_ORIGIN (p) != p)
773 TREE_ADDRESSABLE (DECL_ABSTRACT_ORIGIN (p)) = 1;
774 if (!DECL_EXTERNAL (p)
776 && scope != file_scope
777 && scope != external_scope)
779 error ("nested function %q+D declared but never defined", p);
780 undef_nested_function = true;
782 /* C99 6.7.4p6: "a function with external linkage... declared
783 with an inline function specifier ... shall also be defined in the
784 same translation unit." */
785 else if (DECL_DECLARED_INLINE_P (p)
788 && !flag_gnu89_inline)
789 pedwarn ("inline function %q+D declared but never defined", p);
794 /* Warnings for unused variables. */
796 && !TREE_NO_WARNING (p)
797 && !DECL_IN_SYSTEM_HEADER (p)
799 && !DECL_ARTIFICIAL (p)
800 && scope != file_scope
801 && scope != external_scope)
802 warning (OPT_Wunused_variable, "unused variable %q+D", p);
806 error ("type of array %q+D completed incompatibly with"
807 " implicit initialization", p);
814 /* All of these go in BLOCK_VARS, but only if this is the
815 binding in the home scope. */
818 TREE_CHAIN (p) = BLOCK_VARS (block);
819 BLOCK_VARS (block) = p;
821 /* If this is the file scope, and we are processing more
822 than one translation unit in this compilation, set
823 DECL_CONTEXT of each decl to the TRANSLATION_UNIT_DECL.
824 This makes same_translation_unit_p work, and causes
825 static declarations to be given disambiguating suffixes. */
826 if (scope == file_scope && num_in_fnames > 1)
828 DECL_CONTEXT (p) = context;
829 if (TREE_CODE (p) == TYPE_DECL)
830 set_type_context (TREE_TYPE (p), context);
834 /* Parameters go in DECL_ARGUMENTS, not BLOCK_VARS, and have
835 already been put there by store_parm_decls. Unused-
836 parameter warnings are handled by function.c.
837 error_mark_node obviously does not go in BLOCK_VARS and
838 does not get unused-variable warnings. */
841 /* It is possible for a decl not to have a name. We get
842 here with b->id NULL in this case. */
845 gcc_assert (I_SYMBOL_BINDING (b->id) == b);
846 I_SYMBOL_BINDING (b->id) = b->shadowed;
847 if (b->shadowed && b->shadowed->type)
848 TREE_TYPE (b->shadowed->decl) = b->shadowed->type;
858 /* Dispose of the block that we just made inside some higher level. */
859 if ((scope->function_body || scope == file_scope) && context)
861 DECL_INITIAL (context) = block;
862 BLOCK_SUPERCONTEXT (block) = context;
864 else if (scope->outer)
867 SCOPE_LIST_APPEND (scope->outer, blocks, block);
868 /* If we did not make a block for the scope just exited, any
869 blocks made for inner scopes must be carried forward so they
870 will later become subblocks of something else. */
871 else if (scope->blocks)
872 SCOPE_LIST_CONCAT (scope->outer, blocks, scope, blocks);
875 /* Pop the current scope, and free the structure for reuse. */
876 current_scope = scope->outer;
877 if (scope->function_body)
878 current_function_scope = scope->outer_function;
880 memset (scope, 0, sizeof (struct c_scope));
881 scope->outer = scope_freelist;
882 scope_freelist = scope;
888 push_file_scope (void)
896 file_scope = current_scope;
898 start_fname_decls ();
900 for (decl = visible_builtins; decl; decl = TREE_CHAIN (decl))
901 bind (DECL_NAME (decl), decl, file_scope,
902 /*invisible=*/false, /*nested=*/true);
906 pop_file_scope (void)
908 /* In case there were missing closebraces, get us back to the global
910 while (current_scope != file_scope)
913 /* __FUNCTION__ is defined at file scope (""). This
914 call may not be necessary as my tests indicate it
915 still works without it. */
916 finish_fname_decls ();
918 /* This is the point to write out a PCH if we're doing that.
919 In that case we do not want to do anything else. */
922 c_common_write_pch ();
926 /* Pop off the file scope and close this translation unit. */
930 maybe_apply_pending_pragma_weaks ();
931 cgraph_finalize_compilation_unit ();
935 /* Push a definition or a declaration of struct, union or enum tag "name".
936 "type" should be the type node.
937 We assume that the tag "name" is not already defined.
939 Note that the definition may really be just a forward reference.
940 In that case, the TYPE_SIZE will be zero. */
943 pushtag (tree name, tree type)
945 /* Record the identifier as the type's name if it has none. */
946 if (name && !TYPE_NAME (type))
947 TYPE_NAME (type) = name;
948 bind (name, type, current_scope, /*invisible=*/false, /*nested=*/false);
950 /* Create a fake NULL-named TYPE_DECL node whose TREE_TYPE will be the
951 tagged type we just added to the current scope. This fake
952 NULL-named TYPE_DECL node helps dwarfout.c to know when it needs
953 to output a representation of a tagged type, and it also gives
954 us a convenient place to record the "scope start" address for the
957 TYPE_STUB_DECL (type) = pushdecl (build_decl (TYPE_DECL, NULL_TREE, type));
959 /* An approximation for now, so we can tell this is a function-scope tag.
960 This will be updated in pop_scope. */
961 TYPE_CONTEXT (type) = DECL_CONTEXT (TYPE_STUB_DECL (type));
964 /* Subroutine of compare_decls. Allow harmless mismatches in return
965 and argument types provided that the type modes match. This function
966 return a unified type given a suitable match, and 0 otherwise. */
969 match_builtin_function_types (tree newtype, tree oldtype)
971 tree newrettype, oldrettype;
972 tree newargs, oldargs;
973 tree trytype, tryargs;
975 /* Accept the return type of the new declaration if same modes. */
976 oldrettype = TREE_TYPE (oldtype);
977 newrettype = TREE_TYPE (newtype);
979 if (TYPE_MODE (oldrettype) != TYPE_MODE (newrettype))
982 oldargs = TYPE_ARG_TYPES (oldtype);
983 newargs = TYPE_ARG_TYPES (newtype);
986 while (oldargs || newargs)
990 || !TREE_VALUE (oldargs)
991 || !TREE_VALUE (newargs)
992 || TYPE_MODE (TREE_VALUE (oldargs))
993 != TYPE_MODE (TREE_VALUE (newargs)))
996 oldargs = TREE_CHAIN (oldargs);
997 newargs = TREE_CHAIN (newargs);
1000 trytype = build_function_type (newrettype, tryargs);
1001 return build_type_attribute_variant (trytype, TYPE_ATTRIBUTES (oldtype));
1004 /* Subroutine of diagnose_mismatched_decls. Check for function type
1005 mismatch involving an empty arglist vs a nonempty one and give clearer
1008 diagnose_arglist_conflict (tree newdecl, tree olddecl,
1009 tree newtype, tree oldtype)
1013 if (TREE_CODE (olddecl) != FUNCTION_DECL
1014 || !comptypes (TREE_TYPE (oldtype), TREE_TYPE (newtype))
1015 || !((TYPE_ARG_TYPES (oldtype) == 0 && DECL_INITIAL (olddecl) == 0)
1017 (TYPE_ARG_TYPES (newtype) == 0 && DECL_INITIAL (newdecl) == 0)))
1020 t = TYPE_ARG_TYPES (oldtype);
1022 t = TYPE_ARG_TYPES (newtype);
1023 for (; t; t = TREE_CHAIN (t))
1025 tree type = TREE_VALUE (t);
1027 if (TREE_CHAIN (t) == 0
1028 && TYPE_MAIN_VARIANT (type) != void_type_node)
1030 inform ("a parameter list with an ellipsis can%'t match "
1031 "an empty parameter name list declaration");
1035 if (c_type_promotes_to (type) != type)
1037 inform ("an argument type that has a default promotion can%'t match "
1038 "an empty parameter name list declaration");
1044 /* Another subroutine of diagnose_mismatched_decls. OLDDECL is an
1045 old-style function definition, NEWDECL is a prototype declaration.
1046 Diagnose inconsistencies in the argument list. Returns TRUE if
1047 the prototype is compatible, FALSE if not. */
1049 validate_proto_after_old_defn (tree newdecl, tree newtype, tree oldtype)
1051 tree newargs, oldargs;
1054 #define END_OF_ARGLIST(t) ((t) == void_type_node)
1056 oldargs = TYPE_ACTUAL_ARG_TYPES (oldtype);
1057 newargs = TYPE_ARG_TYPES (newtype);
1062 tree oldargtype = TREE_VALUE (oldargs);
1063 tree newargtype = TREE_VALUE (newargs);
1065 if (oldargtype == error_mark_node || newargtype == error_mark_node)
1068 oldargtype = TYPE_MAIN_VARIANT (oldargtype);
1069 newargtype = TYPE_MAIN_VARIANT (newargtype);
1071 if (END_OF_ARGLIST (oldargtype) && END_OF_ARGLIST (newargtype))
1074 /* Reaching the end of just one list means the two decls don't
1075 agree on the number of arguments. */
1076 if (END_OF_ARGLIST (oldargtype))
1078 error ("prototype for %q+D declares more arguments "
1079 "than previous old-style definition", newdecl);
1082 else if (END_OF_ARGLIST (newargtype))
1084 error ("prototype for %q+D declares fewer arguments "
1085 "than previous old-style definition", newdecl);
1089 /* Type for passing arg must be consistent with that declared
1091 else if (!comptypes (oldargtype, newargtype))
1093 error ("prototype for %q+D declares argument %d"
1094 " with incompatible type",
1099 oldargs = TREE_CHAIN (oldargs);
1100 newargs = TREE_CHAIN (newargs);
1104 /* If we get here, no errors were found, but do issue a warning
1105 for this poor-style construct. */
1106 warning (0, "prototype for %q+D follows non-prototype definition",
1109 #undef END_OF_ARGLIST
1112 /* Subroutine of diagnose_mismatched_decls. Report the location of DECL,
1113 first in a pair of mismatched declarations, using the diagnostic
1116 locate_old_decl (tree decl, void (*diag)(const char *, ...) ATTRIBUTE_GCC_CDIAG(1,2))
1118 if (TREE_CODE (decl) == FUNCTION_DECL && DECL_BUILT_IN (decl))
1120 else if (DECL_INITIAL (decl))
1121 diag (G_("previous definition of %q+D was here"), decl);
1122 else if (C_DECL_IMPLICIT (decl))
1123 diag (G_("previous implicit declaration of %q+D was here"), decl);
1125 diag (G_("previous declaration of %q+D was here"), decl);
1128 /* Subroutine of duplicate_decls. Compare NEWDECL to OLDDECL.
1129 Returns true if the caller should proceed to merge the two, false
1130 if OLDDECL should simply be discarded. As a side effect, issues
1131 all necessary diagnostics for invalid or poor-style combinations.
1132 If it returns true, writes the types of NEWDECL and OLDDECL to
1133 *NEWTYPEP and *OLDTYPEP - these may have been adjusted from
1134 TREE_TYPE (NEWDECL, OLDDECL) respectively. */
1137 diagnose_mismatched_decls (tree newdecl, tree olddecl,
1138 tree *newtypep, tree *oldtypep)
1140 tree newtype, oldtype;
1141 bool pedwarned = false;
1142 bool warned = false;
1145 #define DECL_EXTERN_INLINE(DECL) (DECL_DECLARED_INLINE_P (DECL) \
1146 && DECL_EXTERNAL (DECL))
1148 /* If we have error_mark_node for either decl or type, just discard
1149 the previous decl - we're in an error cascade already. */
1150 if (olddecl == error_mark_node || newdecl == error_mark_node)
1152 *oldtypep = oldtype = TREE_TYPE (olddecl);
1153 *newtypep = newtype = TREE_TYPE (newdecl);
1154 if (oldtype == error_mark_node || newtype == error_mark_node)
1157 /* Two different categories of symbol altogether. This is an error
1158 unless OLDDECL is a builtin. OLDDECL will be discarded in any case. */
1159 if (TREE_CODE (olddecl) != TREE_CODE (newdecl))
1161 if (!(TREE_CODE (olddecl) == FUNCTION_DECL
1162 && DECL_BUILT_IN (olddecl)
1163 && !C_DECL_DECLARED_BUILTIN (olddecl)))
1165 error ("%q+D redeclared as different kind of symbol", newdecl);
1166 locate_old_decl (olddecl, error);
1168 else if (TREE_PUBLIC (newdecl))
1169 warning (0, "built-in function %q+D declared as non-function",
1172 warning (OPT_Wshadow, "declaration of %q+D shadows "
1173 "a built-in function", newdecl);
1177 /* Enumerators have no linkage, so may only be declared once in a
1179 if (TREE_CODE (olddecl) == CONST_DECL)
1181 error ("redeclaration of enumerator %q+D", newdecl);
1182 locate_old_decl (olddecl, error);
1186 if (!comptypes (oldtype, newtype))
1188 if (TREE_CODE (olddecl) == FUNCTION_DECL
1189 && DECL_BUILT_IN (olddecl) && !C_DECL_DECLARED_BUILTIN (olddecl))
1191 /* Accept harmless mismatch in function types.
1192 This is for the ffs and fprintf builtins. */
1193 tree trytype = match_builtin_function_types (newtype, oldtype);
1195 if (trytype && comptypes (newtype, trytype))
1196 *oldtypep = oldtype = trytype;
1199 /* If types don't match for a built-in, throw away the
1200 built-in. No point in calling locate_old_decl here, it
1201 won't print anything. */
1202 warning (0, "conflicting types for built-in function %q+D",
1207 else if (TREE_CODE (olddecl) == FUNCTION_DECL
1208 && DECL_IS_BUILTIN (olddecl))
1210 /* A conflicting function declaration for a predeclared
1211 function that isn't actually built in. Objective C uses
1212 these. The new declaration silently overrides everything
1213 but the volatility (i.e. noreturn) indication. See also
1214 below. FIXME: Make Objective C use normal builtins. */
1215 TREE_THIS_VOLATILE (newdecl) |= TREE_THIS_VOLATILE (olddecl);
1218 /* Permit void foo (...) to match int foo (...) if the latter is
1219 the definition and implicit int was used. See
1220 c-torture/compile/920625-2.c. */
1221 else if (TREE_CODE (newdecl) == FUNCTION_DECL && DECL_INITIAL (newdecl)
1222 && TYPE_MAIN_VARIANT (TREE_TYPE (oldtype)) == void_type_node
1223 && TYPE_MAIN_VARIANT (TREE_TYPE (newtype)) == integer_type_node
1224 && C_FUNCTION_IMPLICIT_INT (newdecl) && !DECL_INITIAL (olddecl))
1226 pedwarn ("conflicting types for %q+D", newdecl);
1227 /* Make sure we keep void as the return type. */
1228 TREE_TYPE (newdecl) = *newtypep = newtype = oldtype;
1229 C_FUNCTION_IMPLICIT_INT (newdecl) = 0;
1232 /* Permit void foo (...) to match an earlier call to foo (...) with
1233 no declared type (thus, implicitly int). */
1234 else if (TREE_CODE (newdecl) == FUNCTION_DECL
1235 && TYPE_MAIN_VARIANT (TREE_TYPE (newtype)) == void_type_node
1236 && TYPE_MAIN_VARIANT (TREE_TYPE (oldtype)) == integer_type_node
1237 && C_DECL_IMPLICIT (olddecl) && !DECL_INITIAL (olddecl))
1239 pedwarn ("conflicting types for %q+D", newdecl);
1240 /* Make sure we keep void as the return type. */
1241 TREE_TYPE (olddecl) = *oldtypep = oldtype = newtype;
1246 if (TYPE_QUALS (newtype) != TYPE_QUALS (oldtype))
1247 error ("conflicting type qualifiers for %q+D", newdecl);
1249 error ("conflicting types for %q+D", newdecl);
1250 diagnose_arglist_conflict (newdecl, olddecl, newtype, oldtype);
1251 locate_old_decl (olddecl, error);
1256 /* Redeclaration of a type is a constraint violation (6.7.2.3p1),
1257 but silently ignore the redeclaration if either is in a system
1258 header. (Conflicting redeclarations were handled above.) */
1259 if (TREE_CODE (newdecl) == TYPE_DECL)
1261 if (DECL_IN_SYSTEM_HEADER (newdecl) || DECL_IN_SYSTEM_HEADER (olddecl))
1262 return true; /* Allow OLDDECL to continue in use. */
1264 error ("redefinition of typedef %q+D", newdecl);
1265 locate_old_decl (olddecl, error);
1269 /* Function declarations can either be 'static' or 'extern' (no
1270 qualifier is equivalent to 'extern' - C99 6.2.2p5) and therefore
1271 can never conflict with each other on account of linkage
1272 (6.2.2p4). Multiple definitions are not allowed (6.9p3,5) but
1273 gnu89 mode permits two definitions if one is 'extern inline' and
1274 one is not. The non- extern-inline definition supersedes the
1275 extern-inline definition. */
1277 else if (TREE_CODE (newdecl) == FUNCTION_DECL)
1279 /* If you declare a built-in function name as static, or
1280 define the built-in with an old-style definition (so we
1281 can't validate the argument list) the built-in definition is
1282 overridden, but optionally warn this was a bad choice of name. */
1283 if (DECL_BUILT_IN (olddecl)
1284 && !C_DECL_DECLARED_BUILTIN (olddecl)
1285 && (!TREE_PUBLIC (newdecl)
1286 || (DECL_INITIAL (newdecl)
1287 && !TYPE_ARG_TYPES (TREE_TYPE (newdecl)))))
1289 warning (OPT_Wshadow, "declaration of %q+D shadows "
1290 "a built-in function", newdecl);
1291 /* Discard the old built-in function. */
1295 if (DECL_INITIAL (newdecl))
1297 if (DECL_INITIAL (olddecl))
1299 /* If both decls are in the same TU and the new declaration
1300 isn't overriding an extern inline reject the new decl.
1301 In c99, no overriding is allowed in the same translation
1303 if ((!DECL_EXTERN_INLINE (olddecl)
1304 || DECL_EXTERN_INLINE (newdecl)
1305 || (!flag_gnu89_inline
1306 && (!DECL_DECLARED_INLINE_P (olddecl)
1307 || !lookup_attribute ("gnu_inline",
1308 DECL_ATTRIBUTES (olddecl)))
1309 && (!DECL_DECLARED_INLINE_P (newdecl)
1310 || !lookup_attribute ("gnu_inline",
1311 DECL_ATTRIBUTES (newdecl))))
1313 && same_translation_unit_p (newdecl, olddecl))
1315 error ("redefinition of %q+D", newdecl);
1316 locate_old_decl (olddecl, error);
1321 /* If we have a prototype after an old-style function definition,
1322 the argument types must be checked specially. */
1323 else if (DECL_INITIAL (olddecl)
1324 && !TYPE_ARG_TYPES (oldtype) && TYPE_ARG_TYPES (newtype)
1325 && TYPE_ACTUAL_ARG_TYPES (oldtype)
1326 && !validate_proto_after_old_defn (newdecl, newtype, oldtype))
1328 locate_old_decl (olddecl, error);
1331 /* A non-static declaration (even an "extern") followed by a
1332 static declaration is undefined behavior per C99 6.2.2p3-5,7.
1333 The same is true for a static forward declaration at block
1334 scope followed by a non-static declaration/definition at file
1335 scope. Static followed by non-static at the same scope is
1336 not undefined behavior, and is the most convenient way to get
1337 some effects (see e.g. what unwind-dw2-fde-glibc.c does to
1338 the definition of _Unwind_Find_FDE in unwind-dw2-fde.c), but
1339 we do diagnose it if -Wtraditional. */
1340 if (TREE_PUBLIC (olddecl) && !TREE_PUBLIC (newdecl))
1342 /* Two exceptions to the rule. If olddecl is an extern
1343 inline, or a predeclared function that isn't actually
1344 built in, newdecl silently overrides olddecl. The latter
1345 occur only in Objective C; see also above. (FIXME: Make
1346 Objective C use normal builtins.) */
1347 if (!DECL_IS_BUILTIN (olddecl)
1348 && !DECL_EXTERN_INLINE (olddecl))
1350 error ("static declaration of %q+D follows "
1351 "non-static declaration", newdecl);
1352 locate_old_decl (olddecl, error);
1356 else if (TREE_PUBLIC (newdecl) && !TREE_PUBLIC (olddecl))
1358 if (DECL_CONTEXT (olddecl))
1360 error ("non-static declaration of %q+D follows "
1361 "static declaration", newdecl);
1362 locate_old_decl (olddecl, error);
1365 else if (warn_traditional)
1367 warning (OPT_Wtraditional, "non-static declaration of %q+D "
1368 "follows static declaration", newdecl);
1373 /* Make sure gnu_inline attribute is either not present, or
1374 present on all inline decls. */
1375 if (DECL_DECLARED_INLINE_P (olddecl)
1376 && DECL_DECLARED_INLINE_P (newdecl))
1378 bool newa = lookup_attribute ("gnu_inline",
1379 DECL_ATTRIBUTES (newdecl)) != NULL;
1380 bool olda = lookup_attribute ("gnu_inline",
1381 DECL_ATTRIBUTES (olddecl)) != NULL;
1384 error ("%<gnu_inline%> attribute present on %q+D",
1385 newa ? newdecl : olddecl);
1386 error ("%Jbut not here", newa ? olddecl : newdecl);
1390 else if (TREE_CODE (newdecl) == VAR_DECL)
1392 /* Only variables can be thread-local, and all declarations must
1393 agree on this property. */
1394 if (C_DECL_THREADPRIVATE_P (olddecl) && !DECL_THREAD_LOCAL_P (newdecl))
1396 /* Nothing to check. Since OLDDECL is marked threadprivate
1397 and NEWDECL does not have a thread-local attribute, we
1398 will merge the threadprivate attribute into NEWDECL. */
1401 else if (DECL_THREAD_LOCAL_P (newdecl) != DECL_THREAD_LOCAL_P (olddecl))
1403 if (DECL_THREAD_LOCAL_P (newdecl))
1404 error ("thread-local declaration of %q+D follows "
1405 "non-thread-local declaration", newdecl);
1407 error ("non-thread-local declaration of %q+D follows "
1408 "thread-local declaration", newdecl);
1410 locate_old_decl (olddecl, error);
1414 /* Multiple initialized definitions are not allowed (6.9p3,5). */
1415 if (DECL_INITIAL (newdecl) && DECL_INITIAL (olddecl))
1417 error ("redefinition of %q+D", newdecl);
1418 locate_old_decl (olddecl, error);
1422 /* Objects declared at file scope: if the first declaration had
1423 external linkage (even if it was an external reference) the
1424 second must have external linkage as well, or the behavior is
1425 undefined. If the first declaration had internal linkage, then
1426 the second must too, or else be an external reference (in which
1427 case the composite declaration still has internal linkage).
1428 As for function declarations, we warn about the static-then-
1429 extern case only for -Wtraditional. See generally 6.2.2p3-5,7. */
1430 if (DECL_FILE_SCOPE_P (newdecl)
1431 && TREE_PUBLIC (newdecl) != TREE_PUBLIC (olddecl))
1433 if (DECL_EXTERNAL (newdecl))
1435 if (!DECL_FILE_SCOPE_P (olddecl))
1437 error ("extern declaration of %q+D follows "
1438 "declaration with no linkage", newdecl);
1439 locate_old_decl (olddecl, error);
1442 else if (warn_traditional)
1444 warning (OPT_Wtraditional, "non-static declaration of %q+D "
1445 "follows static declaration", newdecl);
1451 if (TREE_PUBLIC (newdecl))
1452 error ("non-static declaration of %q+D follows "
1453 "static declaration", newdecl);
1455 error ("static declaration of %q+D follows "
1456 "non-static declaration", newdecl);
1458 locate_old_decl (olddecl, error);
1462 /* Two objects with the same name declared at the same block
1463 scope must both be external references (6.7p3). */
1464 else if (!DECL_FILE_SCOPE_P (newdecl))
1466 if (DECL_EXTERNAL (newdecl))
1468 /* Extern with initializer at block scope, which will
1469 already have received an error. */
1471 else if (DECL_EXTERNAL (olddecl))
1473 error ("declaration of %q+D with no linkage follows "
1474 "extern declaration", newdecl);
1475 locate_old_decl (olddecl, error);
1479 error ("redeclaration of %q+D with no linkage", newdecl);
1480 locate_old_decl (olddecl, error);
1488 /* All decls must agree on a visibility. */
1489 if (CODE_CONTAINS_STRUCT (TREE_CODE (newdecl), TS_DECL_WITH_VIS)
1490 && DECL_VISIBILITY_SPECIFIED (newdecl) && DECL_VISIBILITY_SPECIFIED (olddecl)
1491 && DECL_VISIBILITY (newdecl) != DECL_VISIBILITY (olddecl))
1493 warning (0, "redeclaration of %q+D with different visibility "
1494 "(old visibility preserved)", newdecl);
1498 if (TREE_CODE (newdecl) == FUNCTION_DECL)
1500 /* Diagnose inline __attribute__ ((noinline)) which is silly. */
1501 if (DECL_DECLARED_INLINE_P (newdecl)
1502 && lookup_attribute ("noinline", DECL_ATTRIBUTES (olddecl)))
1504 warning (OPT_Wattributes, "inline declaration of %qD follows "
1505 "declaration with attribute noinline", newdecl);
1508 else if (DECL_DECLARED_INLINE_P (olddecl)
1509 && lookup_attribute ("noinline", DECL_ATTRIBUTES (newdecl)))
1511 warning (OPT_Wattributes, "declaration of %q+D with attribute "
1512 "noinline follows inline declaration ", newdecl);
1516 /* Inline declaration after use or definition.
1517 ??? Should we still warn about this now we have unit-at-a-time
1518 mode and can get it right?
1519 Definitely don't complain if the decls are in different translation
1521 C99 permits this, so don't warn in that case. (The function
1522 may not be inlined everywhere in function-at-a-time mode, but
1523 we still shouldn't warn.) */
1524 if (DECL_DECLARED_INLINE_P (newdecl) && !DECL_DECLARED_INLINE_P (olddecl)
1525 && same_translation_unit_p (olddecl, newdecl)
1526 && flag_gnu89_inline)
1528 if (TREE_USED (olddecl))
1530 warning (0, "%q+D declared inline after being called", olddecl);
1533 else if (DECL_INITIAL (olddecl))
1535 warning (0, "%q+D declared inline after its definition", olddecl);
1540 else /* PARM_DECL, VAR_DECL */
1542 /* Redeclaration of a parameter is a constraint violation (this is
1543 not explicitly stated, but follows from C99 6.7p3 [no more than
1544 one declaration of the same identifier with no linkage in the
1545 same scope, except type tags] and 6.2.2p6 [parameters have no
1546 linkage]). We must check for a forward parameter declaration,
1547 indicated by TREE_ASM_WRITTEN on the old declaration - this is
1548 an extension, the mandatory diagnostic for which is handled by
1549 mark_forward_parm_decls. */
1551 if (TREE_CODE (newdecl) == PARM_DECL
1552 && (!TREE_ASM_WRITTEN (olddecl) || TREE_ASM_WRITTEN (newdecl)))
1554 error ("redefinition of parameter %q+D", newdecl);
1555 locate_old_decl (olddecl, error);
1560 /* Optional warning for completely redundant decls. */
1561 if (!warned && !pedwarned
1562 && warn_redundant_decls
1563 /* Don't warn about a function declaration followed by a
1565 && !(TREE_CODE (newdecl) == FUNCTION_DECL
1566 && DECL_INITIAL (newdecl) && !DECL_INITIAL (olddecl))
1567 /* Don't warn about redundant redeclarations of builtins. */
1568 && !(TREE_CODE (newdecl) == FUNCTION_DECL
1569 && !DECL_BUILT_IN (newdecl)
1570 && DECL_BUILT_IN (olddecl)
1571 && !C_DECL_DECLARED_BUILTIN (olddecl))
1572 /* Don't warn about an extern followed by a definition. */
1573 && !(DECL_EXTERNAL (olddecl) && !DECL_EXTERNAL (newdecl))
1574 /* Don't warn about forward parameter decls. */
1575 && !(TREE_CODE (newdecl) == PARM_DECL
1576 && TREE_ASM_WRITTEN (olddecl) && !TREE_ASM_WRITTEN (newdecl))
1577 /* Don't warn about a variable definition following a declaration. */
1578 && !(TREE_CODE (newdecl) == VAR_DECL
1579 && DECL_INITIAL (newdecl) && !DECL_INITIAL (olddecl)))
1581 warning (OPT_Wredundant_decls, "redundant redeclaration of %q+D",
1586 /* Report location of previous decl/defn in a consistent manner. */
1587 if (warned || pedwarned)
1588 locate_old_decl (olddecl, pedwarned ? pedwarn : warning0);
1590 #undef DECL_EXTERN_INLINE
1595 /* Subroutine of duplicate_decls. NEWDECL has been found to be
1596 consistent with OLDDECL, but carries new information. Merge the
1597 new information into OLDDECL. This function issues no
1601 merge_decls (tree newdecl, tree olddecl, tree newtype, tree oldtype)
1603 bool new_is_definition = (TREE_CODE (newdecl) == FUNCTION_DECL
1604 && DECL_INITIAL (newdecl) != 0);
1605 bool new_is_prototype = (TREE_CODE (newdecl) == FUNCTION_DECL
1606 && TYPE_ARG_TYPES (TREE_TYPE (newdecl)) != 0);
1607 bool old_is_prototype = (TREE_CODE (olddecl) == FUNCTION_DECL
1608 && TYPE_ARG_TYPES (TREE_TYPE (olddecl)) != 0);
1609 bool extern_changed = false;
1611 /* For real parm decl following a forward decl, rechain the old decl
1612 in its new location and clear TREE_ASM_WRITTEN (it's not a
1613 forward decl anymore). */
1614 if (TREE_CODE (newdecl) == PARM_DECL
1615 && TREE_ASM_WRITTEN (olddecl) && !TREE_ASM_WRITTEN (newdecl))
1617 struct c_binding *b, **here;
1619 for (here = ¤t_scope->bindings; *here; here = &(*here)->prev)
1620 if ((*here)->decl == olddecl)
1627 b->prev = current_scope->bindings;
1628 current_scope->bindings = b;
1630 TREE_ASM_WRITTEN (olddecl) = 0;
1633 DECL_ATTRIBUTES (newdecl)
1634 = targetm.merge_decl_attributes (olddecl, newdecl);
1636 /* Merge the data types specified in the two decls. */
1638 = TREE_TYPE (olddecl)
1639 = composite_type (newtype, oldtype);
1641 /* Lay the type out, unless already done. */
1642 if (!comptypes (oldtype, TREE_TYPE (newdecl)))
1644 if (TREE_TYPE (newdecl) != error_mark_node)
1645 layout_type (TREE_TYPE (newdecl));
1646 if (TREE_CODE (newdecl) != FUNCTION_DECL
1647 && TREE_CODE (newdecl) != TYPE_DECL
1648 && TREE_CODE (newdecl) != CONST_DECL)
1649 layout_decl (newdecl, 0);
1653 /* Since the type is OLDDECL's, make OLDDECL's size go with. */
1654 DECL_SIZE (newdecl) = DECL_SIZE (olddecl);
1655 DECL_SIZE_UNIT (newdecl) = DECL_SIZE_UNIT (olddecl);
1656 DECL_MODE (newdecl) = DECL_MODE (olddecl);
1657 if (DECL_ALIGN (olddecl) > DECL_ALIGN (newdecl))
1659 DECL_ALIGN (newdecl) = DECL_ALIGN (olddecl);
1660 DECL_USER_ALIGN (newdecl) |= DECL_USER_ALIGN (olddecl);
1664 /* Keep the old rtl since we can safely use it. */
1665 if (HAS_RTL_P (olddecl))
1666 COPY_DECL_RTL (olddecl, newdecl);
1668 /* Merge the type qualifiers. */
1669 if (TREE_READONLY (newdecl))
1670 TREE_READONLY (olddecl) = 1;
1672 if (TREE_THIS_VOLATILE (newdecl))
1673 TREE_THIS_VOLATILE (olddecl) = 1;
1675 /* Merge deprecatedness. */
1676 if (TREE_DEPRECATED (newdecl))
1677 TREE_DEPRECATED (olddecl) = 1;
1679 /* Keep source location of definition rather than declaration and of
1680 prototype rather than non-prototype unless that prototype is
1682 if ((DECL_INITIAL (newdecl) == 0 && DECL_INITIAL (olddecl) != 0)
1683 || (old_is_prototype && !new_is_prototype
1684 && !C_DECL_BUILTIN_PROTOTYPE (olddecl)))
1685 DECL_SOURCE_LOCATION (newdecl) = DECL_SOURCE_LOCATION (olddecl);
1687 /* Merge the initialization information. */
1688 if (DECL_INITIAL (newdecl) == 0)
1689 DECL_INITIAL (newdecl) = DECL_INITIAL (olddecl);
1691 /* Merge the threadprivate attribute. */
1692 if (TREE_CODE (olddecl) == VAR_DECL && C_DECL_THREADPRIVATE_P (olddecl))
1694 DECL_TLS_MODEL (newdecl) = DECL_TLS_MODEL (olddecl);
1695 C_DECL_THREADPRIVATE_P (newdecl) = 1;
1698 if (CODE_CONTAINS_STRUCT (TREE_CODE (olddecl), TS_DECL_WITH_VIS))
1700 /* Merge the unused-warning information. */
1701 if (DECL_IN_SYSTEM_HEADER (olddecl))
1702 DECL_IN_SYSTEM_HEADER (newdecl) = 1;
1703 else if (DECL_IN_SYSTEM_HEADER (newdecl))
1704 DECL_IN_SYSTEM_HEADER (olddecl) = 1;
1706 /* Merge the section attribute.
1707 We want to issue an error if the sections conflict but that
1708 must be done later in decl_attributes since we are called
1709 before attributes are assigned. */
1710 if (DECL_SECTION_NAME (newdecl) == NULL_TREE)
1711 DECL_SECTION_NAME (newdecl) = DECL_SECTION_NAME (olddecl);
1713 /* Copy the assembler name.
1714 Currently, it can only be defined in the prototype. */
1715 COPY_DECL_ASSEMBLER_NAME (olddecl, newdecl);
1717 /* Use visibility of whichever declaration had it specified */
1718 if (DECL_VISIBILITY_SPECIFIED (olddecl))
1720 DECL_VISIBILITY (newdecl) = DECL_VISIBILITY (olddecl);
1721 DECL_VISIBILITY_SPECIFIED (newdecl) = 1;
1724 if (TREE_CODE (newdecl) == FUNCTION_DECL)
1726 DECL_STATIC_CONSTRUCTOR(newdecl) |= DECL_STATIC_CONSTRUCTOR(olddecl);
1727 DECL_STATIC_DESTRUCTOR (newdecl) |= DECL_STATIC_DESTRUCTOR (olddecl);
1728 DECL_NO_LIMIT_STACK (newdecl) |= DECL_NO_LIMIT_STACK (olddecl);
1729 DECL_NO_INSTRUMENT_FUNCTION_ENTRY_EXIT (newdecl)
1730 |= DECL_NO_INSTRUMENT_FUNCTION_ENTRY_EXIT (olddecl);
1731 TREE_THIS_VOLATILE (newdecl) |= TREE_THIS_VOLATILE (olddecl);
1732 TREE_READONLY (newdecl) |= TREE_READONLY (olddecl);
1733 DECL_IS_MALLOC (newdecl) |= DECL_IS_MALLOC (olddecl);
1734 DECL_IS_OPERATOR_NEW (newdecl) |= DECL_IS_OPERATOR_NEW (olddecl);
1735 DECL_IS_PURE (newdecl) |= DECL_IS_PURE (olddecl);
1736 DECL_IS_NOVOPS (newdecl) |= DECL_IS_NOVOPS (olddecl);
1739 /* Merge the storage class information. */
1740 merge_weak (newdecl, olddecl);
1742 /* For functions, static overrides non-static. */
1743 if (TREE_CODE (newdecl) == FUNCTION_DECL)
1745 TREE_PUBLIC (newdecl) &= TREE_PUBLIC (olddecl);
1746 /* This is since we don't automatically
1747 copy the attributes of NEWDECL into OLDDECL. */
1748 TREE_PUBLIC (olddecl) = TREE_PUBLIC (newdecl);
1749 /* If this clears `static', clear it in the identifier too. */
1750 if (!TREE_PUBLIC (olddecl))
1751 TREE_PUBLIC (DECL_NAME (olddecl)) = 0;
1755 /* In c99, 'extern' declaration before (or after) 'inline' means this
1756 function is not DECL_EXTERNAL, unless 'gnu_inline' attribute
1758 if (TREE_CODE (newdecl) == FUNCTION_DECL
1759 && !flag_gnu89_inline
1760 && (DECL_DECLARED_INLINE_P (newdecl)
1761 || DECL_DECLARED_INLINE_P (olddecl))
1762 && (!DECL_DECLARED_INLINE_P (newdecl)
1763 || !DECL_DECLARED_INLINE_P (olddecl)
1764 || !DECL_EXTERNAL (olddecl))
1765 && DECL_EXTERNAL (newdecl)
1766 && !lookup_attribute ("gnu_inline", DECL_ATTRIBUTES (newdecl)))
1767 DECL_EXTERNAL (newdecl) = 0;
1769 if (DECL_EXTERNAL (newdecl))
1771 TREE_STATIC (newdecl) = TREE_STATIC (olddecl);
1772 DECL_EXTERNAL (newdecl) = DECL_EXTERNAL (olddecl);
1774 /* An extern decl does not override previous storage class. */
1775 TREE_PUBLIC (newdecl) = TREE_PUBLIC (olddecl);
1776 if (!DECL_EXTERNAL (newdecl))
1778 DECL_CONTEXT (newdecl) = DECL_CONTEXT (olddecl);
1779 DECL_COMMON (newdecl) = DECL_COMMON (olddecl);
1784 TREE_STATIC (olddecl) = TREE_STATIC (newdecl);
1785 TREE_PUBLIC (olddecl) = TREE_PUBLIC (newdecl);
1788 if (TREE_CODE (newdecl) == FUNCTION_DECL)
1790 /* If we're redefining a function previously defined as extern
1791 inline, make sure we emit debug info for the inline before we
1792 throw it away, in case it was inlined into a function that
1793 hasn't been written out yet. */
1794 if (new_is_definition && DECL_INITIAL (olddecl))
1796 if (TREE_USED (olddecl)
1797 /* In unit-at-a-time mode we never inline re-defined extern
1798 inline functions. */
1799 && !flag_unit_at_a_time
1800 && cgraph_function_possibly_inlined_p (olddecl))
1801 (*debug_hooks->outlining_inline_function) (olddecl);
1803 /* The new defn must not be inline. */
1804 DECL_INLINE (newdecl) = 0;
1805 DECL_UNINLINABLE (newdecl) = 1;
1809 /* If either decl says `inline', this fn is inline, unless
1810 its definition was passed already. */
1811 if (DECL_DECLARED_INLINE_P (newdecl)
1812 || DECL_DECLARED_INLINE_P (olddecl))
1813 DECL_DECLARED_INLINE_P (newdecl) = 1;
1815 DECL_UNINLINABLE (newdecl) = DECL_UNINLINABLE (olddecl)
1816 = (DECL_UNINLINABLE (newdecl) || DECL_UNINLINABLE (olddecl));
1818 DECL_DISREGARD_INLINE_LIMITS (newdecl)
1819 = DECL_DISREGARD_INLINE_LIMITS (olddecl)
1820 = (DECL_DISREGARD_INLINE_LIMITS (newdecl)
1821 || DECL_DISREGARD_INLINE_LIMITS (olddecl));
1824 if (DECL_BUILT_IN (olddecl))
1826 /* If redeclaring a builtin function, it stays built in.
1827 But it gets tagged as having been declared. */
1828 DECL_BUILT_IN_CLASS (newdecl) = DECL_BUILT_IN_CLASS (olddecl);
1829 DECL_FUNCTION_CODE (newdecl) = DECL_FUNCTION_CODE (olddecl);
1830 C_DECL_DECLARED_BUILTIN (newdecl) = 1;
1831 if (new_is_prototype)
1832 C_DECL_BUILTIN_PROTOTYPE (newdecl) = 0;
1834 C_DECL_BUILTIN_PROTOTYPE (newdecl)
1835 = C_DECL_BUILTIN_PROTOTYPE (olddecl);
1838 /* Also preserve various other info from the definition. */
1839 if (!new_is_definition)
1841 DECL_RESULT (newdecl) = DECL_RESULT (olddecl);
1842 DECL_INITIAL (newdecl) = DECL_INITIAL (olddecl);
1843 DECL_STRUCT_FUNCTION (newdecl) = DECL_STRUCT_FUNCTION (olddecl);
1844 DECL_SAVED_TREE (newdecl) = DECL_SAVED_TREE (olddecl);
1845 DECL_ARGUMENTS (newdecl) = DECL_ARGUMENTS (olddecl);
1847 /* Set DECL_INLINE on the declaration if we've got a body
1848 from which to instantiate. */
1849 if (DECL_INLINE (olddecl) && !DECL_UNINLINABLE (newdecl))
1851 DECL_INLINE (newdecl) = 1;
1852 DECL_ABSTRACT_ORIGIN (newdecl)
1853 = DECL_ABSTRACT_ORIGIN (olddecl);
1858 /* If a previous declaration said inline, mark the
1859 definition as inlinable. */
1860 if (DECL_DECLARED_INLINE_P (newdecl)
1861 && !DECL_UNINLINABLE (newdecl))
1862 DECL_INLINE (newdecl) = 1;
1866 extern_changed = DECL_EXTERNAL (olddecl) && !DECL_EXTERNAL (newdecl);
1868 /* Copy most of the decl-specific fields of NEWDECL into OLDDECL.
1869 But preserve OLDDECL's DECL_UID and DECL_CONTEXT. */
1871 unsigned olddecl_uid = DECL_UID (olddecl);
1872 tree olddecl_context = DECL_CONTEXT (olddecl);
1874 memcpy ((char *) olddecl + sizeof (struct tree_common),
1875 (char *) newdecl + sizeof (struct tree_common),
1876 sizeof (struct tree_decl_common) - sizeof (struct tree_common));
1877 switch (TREE_CODE (olddecl))
1887 memcpy ((char *) olddecl + sizeof (struct tree_decl_common),
1888 (char *) newdecl + sizeof (struct tree_decl_common),
1889 tree_code_size (TREE_CODE (olddecl)) - sizeof (struct tree_decl_common));
1894 memcpy ((char *) olddecl + sizeof (struct tree_decl_common),
1895 (char *) newdecl + sizeof (struct tree_decl_common),
1896 sizeof (struct tree_decl_non_common) - sizeof (struct tree_decl_common));
1898 DECL_UID (olddecl) = olddecl_uid;
1899 DECL_CONTEXT (olddecl) = olddecl_context;
1902 /* If OLDDECL had its DECL_RTL instantiated, re-invoke make_decl_rtl
1903 so that encode_section_info has a chance to look at the new decl
1904 flags and attributes. */
1905 if (DECL_RTL_SET_P (olddecl)
1906 && (TREE_CODE (olddecl) == FUNCTION_DECL
1907 || (TREE_CODE (olddecl) == VAR_DECL
1908 && TREE_STATIC (olddecl))))
1909 make_decl_rtl (olddecl);
1911 /* If we changed a function from DECL_EXTERNAL to !DECL_EXTERNAL,
1912 and the definition is coming from the old version, cgraph needs
1913 to be called again. */
1914 if (extern_changed && !new_is_definition
1915 && TREE_CODE (olddecl) == FUNCTION_DECL && DECL_INITIAL (olddecl))
1916 cgraph_finalize_function (olddecl, false);
1919 /* Handle when a new declaration NEWDECL has the same name as an old
1920 one OLDDECL in the same binding contour. Prints an error message
1923 If safely possible, alter OLDDECL to look like NEWDECL, and return
1924 true. Otherwise, return false. */
1927 duplicate_decls (tree newdecl, tree olddecl)
1929 tree newtype = NULL, oldtype = NULL;
1931 if (!diagnose_mismatched_decls (newdecl, olddecl, &newtype, &oldtype))
1933 /* Avoid `unused variable' and other warnings for OLDDECL. */
1934 TREE_NO_WARNING (olddecl) = 1;
1938 merge_decls (newdecl, olddecl, newtype, oldtype);
1943 /* Check whether decl-node NEW_DECL shadows an existing declaration. */
1945 warn_if_shadowing (tree new_decl)
1947 struct c_binding *b;
1949 /* Shadow warnings wanted? */
1951 /* No shadow warnings for internally generated vars. */
1952 || DECL_IS_BUILTIN (new_decl)
1953 /* No shadow warnings for vars made for inlining. */
1954 || DECL_FROM_INLINE (new_decl))
1957 /* Is anything being shadowed? Invisible decls do not count. */
1958 for (b = I_SYMBOL_BINDING (DECL_NAME (new_decl)); b; b = b->shadowed)
1959 if (b->decl && b->decl != new_decl && !b->invisible)
1961 tree old_decl = b->decl;
1963 if (old_decl == error_mark_node)
1965 warning (OPT_Wshadow, "declaration of %q+D shadows previous "
1966 "non-variable", new_decl);
1969 else if (TREE_CODE (old_decl) == PARM_DECL)
1970 warning (OPT_Wshadow, "declaration of %q+D shadows a parameter",
1972 else if (DECL_FILE_SCOPE_P (old_decl))
1973 warning (OPT_Wshadow, "declaration of %q+D shadows a global "
1974 "declaration", new_decl);
1975 else if (TREE_CODE (old_decl) == FUNCTION_DECL
1976 && DECL_BUILT_IN (old_decl))
1978 warning (OPT_Wshadow, "declaration of %q+D shadows "
1979 "a built-in function", new_decl);
1983 warning (OPT_Wshadow, "declaration of %q+D shadows a previous local",
1986 warning (OPT_Wshadow, "%Jshadowed declaration is here", old_decl);
1993 /* Subroutine of pushdecl.
1995 X is a TYPE_DECL for a typedef statement. Create a brand new
1996 ..._TYPE node (which will be just a variant of the existing
1997 ..._TYPE node with identical properties) and then install X
1998 as the TYPE_NAME of this brand new (duplicate) ..._TYPE node.
2000 The whole point here is to end up with a situation where each
2001 and every ..._TYPE node the compiler creates will be uniquely
2002 associated with AT MOST one node representing a typedef name.
2003 This way, even though the compiler substitutes corresponding
2004 ..._TYPE nodes for TYPE_DECL (i.e. "typedef name") nodes very
2005 early on, later parts of the compiler can always do the reverse
2006 translation and get back the corresponding typedef name. For
2009 typedef struct S MY_TYPE;
2012 Later parts of the compiler might only know that `object' was of
2013 type `struct S' if it were not for code just below. With this
2014 code however, later parts of the compiler see something like:
2016 struct S' == struct S
2017 typedef struct S' MY_TYPE;
2020 And they can then deduce (from the node for type struct S') that
2021 the original object declaration was:
2025 Being able to do this is important for proper support of protoize,
2026 and also for generating precise symbolic debugging information
2027 which takes full account of the programmer's (typedef) vocabulary.
2029 Obviously, we don't want to generate a duplicate ..._TYPE node if
2030 the TYPE_DECL node that we are now processing really represents a
2031 standard built-in type. */
2034 clone_underlying_type (tree x)
2036 if (DECL_IS_BUILTIN (x))
2038 if (TYPE_NAME (TREE_TYPE (x)) == 0)
2039 TYPE_NAME (TREE_TYPE (x)) = x;
2041 else if (TREE_TYPE (x) != error_mark_node
2042 && DECL_ORIGINAL_TYPE (x) == NULL_TREE)
2044 tree tt = TREE_TYPE (x);
2045 DECL_ORIGINAL_TYPE (x) = tt;
2046 tt = build_variant_type_copy (tt);
2048 TREE_USED (tt) = TREE_USED (x);
2053 /* Record a decl-node X as belonging to the current lexical scope.
2054 Check for errors (such as an incompatible declaration for the same
2055 name already seen in the same scope).
2057 Returns either X or an old decl for the same name.
2058 If an old decl is returned, it may have been smashed
2059 to agree with what X says. */
2064 tree name = DECL_NAME (x);
2065 struct c_scope *scope = current_scope;
2066 struct c_binding *b;
2067 bool nested = false;
2069 /* Must set DECL_CONTEXT for everything not at file scope or
2070 DECL_FILE_SCOPE_P won't work. Local externs don't count
2071 unless they have initializers (which generate code). */
2072 if (current_function_decl
2073 && ((TREE_CODE (x) != FUNCTION_DECL && TREE_CODE (x) != VAR_DECL)
2074 || DECL_INITIAL (x) || !DECL_EXTERNAL (x)))
2075 DECL_CONTEXT (x) = current_function_decl;
2077 /* If this is of variably modified type, prevent jumping into its
2079 if ((TREE_CODE (x) == VAR_DECL || TREE_CODE (x) == TYPE_DECL)
2080 && variably_modified_type_p (TREE_TYPE (x), NULL_TREE))
2081 c_begin_vm_scope (scope->depth);
2083 /* Anonymous decls are just inserted in the scope. */
2086 bind (name, x, scope, /*invisible=*/false, /*nested=*/false);
2090 /* First, see if there is another declaration with the same name in
2091 the current scope. If there is, duplicate_decls may do all the
2092 work for us. If duplicate_decls returns false, that indicates
2093 two incompatible decls in the same scope; we are to silently
2094 replace the old one (duplicate_decls has issued all appropriate
2095 diagnostics). In particular, we should not consider possible
2096 duplicates in the external scope, or shadowing. */
2097 b = I_SYMBOL_BINDING (name);
2098 if (b && B_IN_SCOPE (b, scope))
2100 struct c_binding *b_ext, *b_use;
2101 tree type = TREE_TYPE (x);
2102 tree visdecl = b->decl;
2103 tree vistype = TREE_TYPE (visdecl);
2104 if (TREE_CODE (TREE_TYPE (x)) == ARRAY_TYPE
2105 && COMPLETE_TYPE_P (TREE_TYPE (x)))
2106 b->inner_comp = false;
2109 /* If this is an external linkage declaration, we should check
2110 for compatibility with the type in the external scope before
2111 setting the type at this scope based on the visible
2112 information only. */
2113 if (TREE_PUBLIC (x) && TREE_PUBLIC (visdecl))
2115 while (b_ext && !B_IN_EXTERNAL_SCOPE (b_ext))
2116 b_ext = b_ext->shadowed;
2121 TREE_TYPE (b_use->decl) = b_use->type;
2124 if (duplicate_decls (x, b_use->decl))
2128 /* Save the updated type in the external scope and
2129 restore the proper type for this scope. */
2131 if (comptypes (vistype, type))
2132 thistype = composite_type (vistype, type);
2134 thistype = TREE_TYPE (b_use->decl);
2135 b_use->type = TREE_TYPE (b_use->decl);
2136 if (TREE_CODE (b_use->decl) == FUNCTION_DECL
2137 && DECL_BUILT_IN (b_use->decl))
2139 = build_type_attribute_variant (thistype,
2142 TREE_TYPE (b_use->decl) = thistype;
2147 goto skip_external_and_shadow_checks;
2150 /* All declarations with external linkage, and all external
2151 references, go in the external scope, no matter what scope is
2152 current. However, the binding in that scope is ignored for
2153 purposes of normal name lookup. A separate binding structure is
2154 created in the requested scope; this governs the normal
2155 visibility of the symbol.
2157 The binding in the externals scope is used exclusively for
2158 detecting duplicate declarations of the same object, no matter
2159 what scope they are in; this is what we do here. (C99 6.2.7p2:
2160 All declarations that refer to the same object or function shall
2161 have compatible type; otherwise, the behavior is undefined.) */
2162 if (DECL_EXTERNAL (x) || scope == file_scope)
2164 tree type = TREE_TYPE (x);
2167 bool type_saved = false;
2168 if (b && !B_IN_EXTERNAL_SCOPE (b)
2169 && (TREE_CODE (b->decl) == FUNCTION_DECL
2170 || TREE_CODE (b->decl) == VAR_DECL)
2171 && DECL_FILE_SCOPE_P (b->decl))
2174 vistype = TREE_TYPE (visdecl);
2176 if (scope != file_scope
2177 && !DECL_IN_SYSTEM_HEADER (x))
2178 warning (OPT_Wnested_externs, "nested extern declaration of %qD", x);
2180 while (b && !B_IN_EXTERNAL_SCOPE (b))
2182 /* If this decl might be modified, save its type. This is
2183 done here rather than when the decl is first bound
2184 because the type may change after first binding, through
2185 being completed or through attributes being added. If we
2186 encounter multiple such decls, only the first should have
2187 its type saved; the others will already have had their
2188 proper types saved and the types will not have changed as
2189 their scopes will not have been re-entered. */
2190 if (DECL_P (b->decl) && DECL_FILE_SCOPE_P (b->decl) && !type_saved)
2192 b->type = TREE_TYPE (b->decl);
2195 if (B_IN_FILE_SCOPE (b)
2196 && TREE_CODE (b->decl) == VAR_DECL
2197 && TREE_STATIC (b->decl)
2198 && TREE_CODE (TREE_TYPE (b->decl)) == ARRAY_TYPE
2199 && !TYPE_DOMAIN (TREE_TYPE (b->decl))
2200 && TREE_CODE (type) == ARRAY_TYPE
2201 && TYPE_DOMAIN (type)
2202 && TYPE_MAX_VALUE (TYPE_DOMAIN (type))
2203 && !integer_zerop (TYPE_MAX_VALUE (TYPE_DOMAIN (type))))
2205 /* Array type completed in inner scope, which should be
2206 diagnosed if the completion does not have size 1 and
2207 it does not get completed in the file scope. */
2208 b->inner_comp = true;
2213 /* If a matching external declaration has been found, set its
2214 type to the composite of all the types of that declaration.
2215 After the consistency checks, it will be reset to the
2216 composite of the visible types only. */
2217 if (b && (TREE_PUBLIC (x) || same_translation_unit_p (x, b->decl))
2219 TREE_TYPE (b->decl) = b->type;
2221 /* The point of the same_translation_unit_p check here is,
2222 we want to detect a duplicate decl for a construct like
2223 foo() { extern bar(); } ... static bar(); but not if
2224 they are in different translation units. In any case,
2225 the static does not go in the externals scope. */
2227 && (TREE_PUBLIC (x) || same_translation_unit_p (x, b->decl))
2228 && duplicate_decls (x, b->decl))
2233 if (comptypes (vistype, type))
2234 thistype = composite_type (vistype, type);
2236 thistype = TREE_TYPE (b->decl);
2240 b->type = TREE_TYPE (b->decl);
2241 if (TREE_CODE (b->decl) == FUNCTION_DECL && DECL_BUILT_IN (b->decl))
2243 = build_type_attribute_variant (thistype,
2244 TYPE_ATTRIBUTES (b->type));
2245 TREE_TYPE (b->decl) = thistype;
2246 bind (name, b->decl, scope, /*invisible=*/false, /*nested=*/true);
2249 else if (TREE_PUBLIC (x))
2251 if (visdecl && !b && duplicate_decls (x, visdecl))
2253 /* An external declaration at block scope referring to a
2254 visible entity with internal linkage. The composite
2255 type will already be correct for this scope, so we
2256 just need to fall through to make the declaration in
2263 bind (name, x, external_scope, /*invisible=*/true,
2270 if (TREE_CODE (x) != PARM_DECL)
2271 warn_if_shadowing (x);
2273 skip_external_and_shadow_checks:
2274 if (TREE_CODE (x) == TYPE_DECL)
2275 clone_underlying_type (x);
2277 bind (name, x, scope, /*invisible=*/false, nested);
2279 /* If x's type is incomplete because it's based on a
2280 structure or union which has not yet been fully declared,
2281 attach it to that structure or union type, so we can go
2282 back and complete the variable declaration later, if the
2283 structure or union gets fully declared.
2285 If the input is erroneous, we can have error_mark in the type
2286 slot (e.g. "f(void a, ...)") - that doesn't count as an
2288 if (TREE_TYPE (x) != error_mark_node
2289 && !COMPLETE_TYPE_P (TREE_TYPE (x)))
2291 tree element = TREE_TYPE (x);
2293 while (TREE_CODE (element) == ARRAY_TYPE)
2294 element = TREE_TYPE (element);
2295 element = TYPE_MAIN_VARIANT (element);
2297 if ((TREE_CODE (element) == RECORD_TYPE
2298 || TREE_CODE (element) == UNION_TYPE)
2299 && (TREE_CODE (x) != TYPE_DECL
2300 || TREE_CODE (TREE_TYPE (x)) == ARRAY_TYPE)
2301 && !COMPLETE_TYPE_P (element))
2302 C_TYPE_INCOMPLETE_VARS (element)
2303 = tree_cons (NULL_TREE, x, C_TYPE_INCOMPLETE_VARS (element));
2308 /* Record X as belonging to file scope.
2309 This is used only internally by the Objective-C front end,
2310 and is limited to its needs. duplicate_decls is not called;
2311 if there is any preexisting decl for this identifier, it is an ICE. */
2314 pushdecl_top_level (tree x)
2317 bool nested = false;
2318 gcc_assert (TREE_CODE (x) == VAR_DECL || TREE_CODE (x) == CONST_DECL);
2320 name = DECL_NAME (x);
2322 gcc_assert (TREE_CODE (x) == CONST_DECL || !I_SYMBOL_BINDING (name));
2324 if (TREE_PUBLIC (x))
2326 bind (name, x, external_scope, /*invisible=*/true, /*nested=*/false);
2330 bind (name, x, file_scope, /*invisible=*/false, nested);
2336 implicit_decl_warning (tree id, tree olddecl)
2338 if (warn_implicit_function_declaration)
2341 pedwarn (G_("implicit declaration of function %qE"), id);
2343 warning (OPT_Wimplicit_function_declaration,
2344 G_("implicit declaration of function %qE"), id);
2346 locate_old_decl (olddecl, inform);
2350 /* Generate an implicit declaration for identifier FUNCTIONID as a
2351 function of type int (). */
2354 implicitly_declare (tree functionid)
2356 struct c_binding *b;
2360 for (b = I_SYMBOL_BINDING (functionid); b; b = b->shadowed)
2362 if (B_IN_SCOPE (b, external_scope))
2371 if (decl == error_mark_node)
2374 /* FIXME: Objective-C has weird not-really-builtin functions
2375 which are supposed to be visible automatically. They wind up
2376 in the external scope because they're pushed before the file
2377 scope gets created. Catch this here and rebind them into the
2379 if (!DECL_BUILT_IN (decl) && DECL_IS_BUILTIN (decl))
2381 bind (functionid, decl, file_scope,
2382 /*invisible=*/false, /*nested=*/true);
2387 tree newtype = default_function_type;
2389 TREE_TYPE (decl) = b->type;
2390 /* Implicit declaration of a function already declared
2391 (somehow) in a different scope, or as a built-in.
2392 If this is the first time this has happened, warn;
2393 then recycle the old declaration but with the new type. */
2394 if (!C_DECL_IMPLICIT (decl))
2396 implicit_decl_warning (functionid, decl);
2397 C_DECL_IMPLICIT (decl) = 1;
2399 if (DECL_BUILT_IN (decl))
2401 newtype = build_type_attribute_variant (newtype,
2403 (TREE_TYPE (decl)));
2404 if (!comptypes (newtype, TREE_TYPE (decl)))
2406 warning (0, "incompatible implicit declaration of built-in"
2407 " function %qD", decl);
2408 newtype = TREE_TYPE (decl);
2413 if (!comptypes (newtype, TREE_TYPE (decl)))
2415 error ("incompatible implicit declaration of function %qD",
2417 locate_old_decl (decl, error);
2420 b->type = TREE_TYPE (decl);
2421 TREE_TYPE (decl) = newtype;
2422 bind (functionid, decl, current_scope,
2423 /*invisible=*/false, /*nested=*/true);
2428 /* Not seen before. */
2429 decl = build_decl (FUNCTION_DECL, functionid, default_function_type);
2430 DECL_EXTERNAL (decl) = 1;
2431 TREE_PUBLIC (decl) = 1;
2432 C_DECL_IMPLICIT (decl) = 1;
2433 implicit_decl_warning (functionid, 0);
2434 asmspec_tree = maybe_apply_renaming_pragma (decl, /*asmname=*/NULL);
2436 set_user_assembler_name (decl, TREE_STRING_POINTER (asmspec_tree));
2438 /* C89 says implicit declarations are in the innermost block.
2439 So we record the decl in the standard fashion. */
2440 decl = pushdecl (decl);
2442 /* No need to call objc_check_decl here - it's a function type. */
2443 rest_of_decl_compilation (decl, 0, 0);
2445 /* Write a record describing this implicit function declaration
2446 to the prototypes file (if requested). */
2447 gen_aux_info_record (decl, 0, 1, 0);
2449 /* Possibly apply some default attributes to this implicit declaration. */
2450 decl_attributes (&decl, NULL_TREE, 0);
2455 /* Issue an error message for a reference to an undeclared variable
2456 ID, including a reference to a builtin outside of function-call
2457 context. Establish a binding of the identifier to error_mark_node
2458 in an appropriate scope, which will suppress further errors for the
2459 same identifier. The error message should be given location LOC. */
2461 undeclared_variable (tree id, location_t loc)
2463 static bool already = false;
2464 struct c_scope *scope;
2466 if (current_function_decl == 0)
2468 error ("%H%qE undeclared here (not in a function)", &loc, id);
2469 scope = current_scope;
2473 error ("%H%qE undeclared (first use in this function)", &loc, id);
2477 error ("%H(Each undeclared identifier is reported only once", &loc);
2478 error ("%Hfor each function it appears in.)", &loc);
2482 /* If we are parsing old-style parameter decls, current_function_decl
2483 will be nonnull but current_function_scope will be null. */
2484 scope = current_function_scope ? current_function_scope : current_scope;
2486 bind (id, error_mark_node, scope, /*invisible=*/false, /*nested=*/false);
2489 /* Subroutine of lookup_label, declare_label, define_label: construct a
2490 LABEL_DECL with all the proper frills. */
2493 make_label (tree name, location_t location)
2495 tree label = build_decl (LABEL_DECL, name, void_type_node);
2497 DECL_CONTEXT (label) = current_function_decl;
2498 DECL_MODE (label) = VOIDmode;
2499 DECL_SOURCE_LOCATION (label) = location;
2504 /* Get the LABEL_DECL corresponding to identifier NAME as a label.
2505 Create one if none exists so far for the current function.
2506 This is called when a label is used in a goto expression or
2507 has its address taken. */
2510 lookup_label (tree name)
2514 if (current_function_decl == 0)
2516 error ("label %qE referenced outside of any function", name);
2520 /* Use a label already defined or ref'd with this name, but not if
2521 it is inherited from a containing function and wasn't declared
2523 label = I_LABEL_DECL (name);
2524 if (label && (DECL_CONTEXT (label) == current_function_decl
2525 || C_DECLARED_LABEL_FLAG (label)))
2527 /* If the label has only been declared, update its apparent
2528 location to point here, for better diagnostics if it
2529 turns out not to have been defined. */
2530 if (!TREE_USED (label))
2531 DECL_SOURCE_LOCATION (label) = input_location;
2535 /* No label binding for that identifier; make one. */
2536 label = make_label (name, input_location);
2538 /* Ordinary labels go in the current function scope. */
2539 bind (name, label, current_function_scope,
2540 /*invisible=*/false, /*nested=*/false);
2544 /* Make a label named NAME in the current function, shadowing silently
2545 any that may be inherited from containing functions or containing
2546 scopes. This is called for __label__ declarations. */
2549 declare_label (tree name)
2551 struct c_binding *b = I_LABEL_BINDING (name);
2554 /* Check to make sure that the label hasn't already been declared
2556 if (b && B_IN_CURRENT_SCOPE (b))
2558 error ("duplicate label declaration %qE", name);
2559 locate_old_decl (b->decl, error);
2561 /* Just use the previous declaration. */
2565 label = make_label (name, input_location);
2566 C_DECLARED_LABEL_FLAG (label) = 1;
2568 /* Declared labels go in the current scope. */
2569 bind (name, label, current_scope,
2570 /*invisible=*/false, /*nested=*/false);
2574 /* Define a label, specifying the location in the source file.
2575 Return the LABEL_DECL node for the label, if the definition is valid.
2576 Otherwise return 0. */
2579 define_label (location_t location, tree name)
2581 /* Find any preexisting label with this name. It is an error
2582 if that label has already been defined in this function, or
2583 if there is a containing function with a declared label with
2585 tree label = I_LABEL_DECL (name);
2586 struct c_label_list *nlist_se, *nlist_vm;
2589 && ((DECL_CONTEXT (label) == current_function_decl
2590 && DECL_INITIAL (label) != 0)
2591 || (DECL_CONTEXT (label) != current_function_decl
2592 && C_DECLARED_LABEL_FLAG (label))))
2594 error ("%Hduplicate label %qD", &location, label);
2595 locate_old_decl (label, error);
2598 else if (label && DECL_CONTEXT (label) == current_function_decl)
2600 /* The label has been used or declared already in this function,
2601 but not defined. Update its location to point to this
2603 if (C_DECL_UNDEFINABLE_STMT_EXPR (label))
2604 error ("%Jjump into statement expression", label);
2605 if (C_DECL_UNDEFINABLE_VM (label))
2606 error ("%Jjump into scope of identifier with variably modified type",
2608 DECL_SOURCE_LOCATION (label) = location;
2612 /* No label binding for that identifier; make one. */
2613 label = make_label (name, location);
2615 /* Ordinary labels go in the current function scope. */
2616 bind (name, label, current_function_scope,
2617 /*invisible=*/false, /*nested=*/false);
2620 if (!in_system_header && lookup_name (name))
2621 warning (OPT_Wtraditional, "%Htraditional C lacks a separate namespace "
2622 "for labels, identifier %qE conflicts", &location, name);
2624 nlist_se = XOBNEW (&parser_obstack, struct c_label_list);
2625 nlist_se->next = label_context_stack_se->labels_def;
2626 nlist_se->label = label;
2627 label_context_stack_se->labels_def = nlist_se;
2629 nlist_vm = XOBNEW (&parser_obstack, struct c_label_list);
2630 nlist_vm->next = label_context_stack_vm->labels_def;
2631 nlist_vm->label = label;
2632 label_context_stack_vm->labels_def = nlist_vm;
2634 /* Mark label as having been defined. */
2635 DECL_INITIAL (label) = error_mark_node;
2639 /* Given NAME, an IDENTIFIER_NODE,
2640 return the structure (or union or enum) definition for that name.
2641 If THISLEVEL_ONLY is nonzero, searches only the current_scope.
2642 CODE says which kind of type the caller wants;
2643 it is RECORD_TYPE or UNION_TYPE or ENUMERAL_TYPE.
2644 If the wrong kind of type is found, an error is reported. */
2647 lookup_tag (enum tree_code code, tree name, int thislevel_only)
2649 struct c_binding *b = I_TAG_BINDING (name);
2655 /* We only care about whether it's in this level if
2656 thislevel_only was set or it might be a type clash. */
2657 if (thislevel_only || TREE_CODE (b->decl) != code)
2659 /* For our purposes, a tag in the external scope is the same as
2660 a tag in the file scope. (Primarily relevant to Objective-C
2661 and its builtin structure tags, which get pushed before the
2662 file scope is created.) */
2663 if (B_IN_CURRENT_SCOPE (b)
2664 || (current_scope == file_scope && B_IN_EXTERNAL_SCOPE (b)))
2668 if (thislevel_only && !thislevel)
2671 if (TREE_CODE (b->decl) != code)
2673 /* Definition isn't the kind we were looking for. */
2674 pending_invalid_xref = name;
2675 pending_invalid_xref_location = input_location;
2677 /* If in the same binding level as a declaration as a tag
2678 of a different type, this must not be allowed to
2679 shadow that tag, so give the error immediately.
2680 (For example, "struct foo; union foo;" is invalid.) */
2682 pending_xref_error ();
2687 /* Print an error message now
2688 for a recent invalid struct, union or enum cross reference.
2689 We don't print them immediately because they are not invalid
2690 when used in the `struct foo;' construct for shadowing. */
2693 pending_xref_error (void)
2695 if (pending_invalid_xref != 0)
2696 error ("%H%qE defined as wrong kind of tag",
2697 &pending_invalid_xref_location, pending_invalid_xref);
2698 pending_invalid_xref = 0;
2702 /* Look up NAME in the current scope and its superiors
2703 in the namespace of variables, functions and typedefs.
2704 Return a ..._DECL node of some kind representing its definition,
2705 or return 0 if it is undefined. */
2708 lookup_name (tree name)
2710 struct c_binding *b = I_SYMBOL_BINDING (name);
2711 if (b && !b->invisible)
2716 /* Similar to `lookup_name' but look only at the indicated scope. */
2719 lookup_name_in_scope (tree name, struct c_scope *scope)
2721 struct c_binding *b;
2723 for (b = I_SYMBOL_BINDING (name); b; b = b->shadowed)
2724 if (B_IN_SCOPE (b, scope))
2729 /* Create the predefined scalar types of C,
2730 and some nodes representing standard constants (0, 1, (void *) 0).
2731 Initialize the global scope.
2732 Make definitions for built-in primitive functions. */
2735 c_init_decl_processing (void)
2737 location_t save_loc = input_location;
2739 /* Initialize reserved words for parser. */
2742 current_function_decl = 0;
2744 gcc_obstack_init (&parser_obstack);
2746 /* Make the externals scope. */
2748 external_scope = current_scope;
2750 /* Declarations from c_common_nodes_and_builtins must not be associated
2751 with this input file, lest we get differences between using and not
2752 using preprocessed headers. */
2753 input_location = BUILTINS_LOCATION;
2755 build_common_tree_nodes (flag_signed_char, false);
2757 c_common_nodes_and_builtins ();
2759 /* In C, comparisons and TRUTH_* expressions have type int. */
2760 truthvalue_type_node = integer_type_node;
2761 truthvalue_true_node = integer_one_node;
2762 truthvalue_false_node = integer_zero_node;
2764 /* Even in C99, which has a real boolean type. */
2765 pushdecl (build_decl (TYPE_DECL, get_identifier ("_Bool"),
2766 boolean_type_node));
2768 input_location = save_loc;
2770 pedantic_lvalues = true;
2772 make_fname_decl = c_make_fname_decl;
2773 start_fname_decls ();
2776 /* Create the VAR_DECL for __FUNCTION__ etc. ID is the name to give the
2777 decl, NAME is the initialization string and TYPE_DEP indicates whether
2778 NAME depended on the type of the function. As we don't yet implement
2779 delayed emission of static data, we mark the decl as emitted
2780 so it is not placed in the output. Anything using it must therefore pull
2781 out the STRING_CST initializer directly. FIXME. */
2784 c_make_fname_decl (tree id, int type_dep)
2786 const char *name = fname_as_string (type_dep);
2787 tree decl, type, init;
2788 size_t length = strlen (name);
2790 type = build_array_type (char_type_node,
2791 build_index_type (size_int (length)));
2792 type = c_build_qualified_type (type, TYPE_QUAL_CONST);
2794 decl = build_decl (VAR_DECL, id, type);
2796 TREE_STATIC (decl) = 1;
2797 TREE_READONLY (decl) = 1;
2798 DECL_ARTIFICIAL (decl) = 1;
2800 init = build_string (length + 1, name);
2801 free (CONST_CAST (char *, name));
2802 TREE_TYPE (init) = type;
2803 DECL_INITIAL (decl) = init;
2805 TREE_USED (decl) = 1;
2807 if (current_function_decl
2808 /* For invalid programs like this:
2811 const char* p = __FUNCTION__;
2813 the __FUNCTION__ is believed to appear in K&R style function
2814 parameter declarator. In that case we still don't have
2816 && (!errorcount || current_function_scope))
2818 DECL_CONTEXT (decl) = current_function_decl;
2819 bind (id, decl, current_function_scope,
2820 /*invisible=*/false, /*nested=*/false);
2823 finish_decl (decl, init, NULL_TREE);
2829 c_builtin_function (tree decl)
2831 tree type = TREE_TYPE (decl);
2832 tree id = DECL_NAME (decl);
2834 const char *name = IDENTIFIER_POINTER (id);
2835 C_DECL_BUILTIN_PROTOTYPE (decl) = (TYPE_ARG_TYPES (type) != 0);
2837 /* Should never be called on a symbol with a preexisting meaning. */
2838 gcc_assert (!I_SYMBOL_BINDING (id));
2840 bind (id, decl, external_scope, /*invisible=*/true, /*nested=*/false);
2842 /* Builtins in the implementation namespace are made visible without
2843 needing to be explicitly declared. See push_file_scope. */
2844 if (name[0] == '_' && (name[1] == '_' || ISUPPER (name[1])))
2846 TREE_CHAIN (decl) = visible_builtins;
2847 visible_builtins = decl;
2853 /* Called when a declaration is seen that contains no names to declare.
2854 If its type is a reference to a structure, union or enum inherited
2855 from a containing scope, shadow that tag name for the current scope
2856 with a forward reference.
2857 If its type defines a new named structure or union
2858 or defines an enum, it is valid but we need not do anything here.
2859 Otherwise, it is an error. */
2862 shadow_tag (const struct c_declspecs *declspecs)
2864 shadow_tag_warned (declspecs, 0);
2867 /* WARNED is 1 if we have done a pedwarn, 2 if we have done a warning,
2870 shadow_tag_warned (const struct c_declspecs *declspecs, int warned)
2872 bool found_tag = false;
2874 if (declspecs->type && !declspecs->default_int_p && !declspecs->typedef_p)
2876 tree value = declspecs->type;
2877 enum tree_code code = TREE_CODE (value);
2879 if (code == RECORD_TYPE || code == UNION_TYPE || code == ENUMERAL_TYPE)
2880 /* Used to test also that TYPE_SIZE (value) != 0.
2881 That caused warning for `struct foo;' at top level in the file. */
2883 tree name = TYPE_NAME (value);
2890 if (warned != 1 && code != ENUMERAL_TYPE)
2891 /* Empty unnamed enum OK */
2893 pedwarn ("unnamed struct/union that defines no instances");
2897 else if (!declspecs->tag_defined_p
2898 && declspecs->storage_class != csc_none)
2901 pedwarn ("empty declaration with storage class specifier "
2902 "does not redeclare tag");
2904 pending_xref_error ();
2906 else if (!declspecs->tag_defined_p
2907 && (declspecs->const_p
2908 || declspecs->volatile_p
2909 || declspecs->restrict_p))
2912 pedwarn ("empty declaration with type qualifier "
2913 "does not redeclare tag");
2915 pending_xref_error ();
2919 pending_invalid_xref = 0;
2920 t = lookup_tag (code, name, 1);
2924 t = make_node (code);
2931 if (warned != 1 && !in_system_header)
2933 pedwarn ("useless type name in empty declaration");
2938 else if (warned != 1 && !in_system_header && declspecs->typedef_p)
2940 pedwarn ("useless type name in empty declaration");
2944 pending_invalid_xref = 0;
2946 if (declspecs->inline_p)
2948 error ("%<inline%> in empty declaration");
2952 if (current_scope == file_scope && declspecs->storage_class == csc_auto)
2954 error ("%<auto%> in file-scope empty declaration");
2958 if (current_scope == file_scope && declspecs->storage_class == csc_register)
2960 error ("%<register%> in file-scope empty declaration");
2964 if (!warned && !in_system_header && declspecs->storage_class != csc_none)
2966 warning (0, "useless storage class specifier in empty declaration");
2970 if (!warned && !in_system_header && declspecs->thread_p)
2972 warning (0, "useless %<__thread%> in empty declaration");
2976 if (!warned && !in_system_header && (declspecs->const_p
2977 || declspecs->volatile_p
2978 || declspecs->restrict_p))
2980 warning (0, "useless type qualifier in empty declaration");
2987 pedwarn ("empty declaration");
2992 /* Return the qualifiers from SPECS as a bitwise OR of TYPE_QUAL_*
2993 bits. SPECS represents declaration specifiers that the grammar
2994 only permits to contain type qualifiers and attributes. */
2997 quals_from_declspecs (const struct c_declspecs *specs)
2999 int quals = ((specs->const_p ? TYPE_QUAL_CONST : 0)
3000 | (specs->volatile_p ? TYPE_QUAL_VOLATILE : 0)
3001 | (specs->restrict_p ? TYPE_QUAL_RESTRICT : 0));
3002 gcc_assert (!specs->type
3003 && !specs->decl_attr
3004 && specs->typespec_word == cts_none
3005 && specs->storage_class == csc_none
3006 && !specs->typedef_p
3007 && !specs->explicit_signed_p
3008 && !specs->deprecated_p
3010 && !specs->long_long_p
3013 && !specs->unsigned_p
3014 && !specs->complex_p
3016 && !specs->thread_p);
3020 /* Construct an array declarator. EXPR is the expression inside [],
3021 or NULL_TREE. QUALS are the type qualifiers inside the [] (to be
3022 applied to the pointer to which a parameter array is converted).
3023 STATIC_P is true if "static" is inside the [], false otherwise.
3024 VLA_UNSPEC_P is true if the array is [*], a VLA of unspecified
3025 length which is nevertheless a complete type, false otherwise. The
3026 field for the contained declarator is left to be filled in by
3027 set_array_declarator_inner. */
3029 struct c_declarator *
3030 build_array_declarator (tree expr, struct c_declspecs *quals, bool static_p,
3033 struct c_declarator *declarator = XOBNEW (&parser_obstack,
3034 struct c_declarator);
3035 declarator->kind = cdk_array;
3036 declarator->declarator = 0;
3037 declarator->u.array.dimen = expr;
3040 declarator->u.array.attrs = quals->attrs;
3041 declarator->u.array.quals = quals_from_declspecs (quals);
3045 declarator->u.array.attrs = NULL_TREE;
3046 declarator->u.array.quals = 0;
3048 declarator->u.array.static_p = static_p;
3049 declarator->u.array.vla_unspec_p = vla_unspec_p;
3050 if (pedantic && !flag_isoc99)
3052 if (static_p || quals != NULL)
3053 pedwarn ("ISO C90 does not support %<static%> or type "
3054 "qualifiers in parameter array declarators");
3056 pedwarn ("ISO C90 does not support %<[*]%> array declarators");
3060 if (!current_scope->parm_flag)
3063 error ("%<[*]%> not allowed in other than function prototype scope");
3064 declarator->u.array.vla_unspec_p = false;
3067 current_scope->had_vla_unspec = true;
3072 /* Set the contained declarator of an array declarator. DECL is the
3073 declarator, as constructed by build_array_declarator; INNER is what
3074 appears on the left of the []. */
3076 struct c_declarator *
3077 set_array_declarator_inner (struct c_declarator *decl,
3078 struct c_declarator *inner)
3080 decl->declarator = inner;
3084 /* INIT is a constructor that forms DECL's initializer. If the final
3085 element initializes a flexible array field, add the size of that
3086 initializer to DECL's size. */
3089 add_flexible_array_elts_to_size (tree decl, tree init)
3093 if (VEC_empty (constructor_elt, CONSTRUCTOR_ELTS (init)))
3096 elt = VEC_last (constructor_elt, CONSTRUCTOR_ELTS (init))->value;
3097 type = TREE_TYPE (elt);
3098 if (TREE_CODE (type) == ARRAY_TYPE
3099 && TYPE_SIZE (type) == NULL_TREE
3100 && TYPE_DOMAIN (type) != NULL_TREE
3101 && TYPE_MAX_VALUE (TYPE_DOMAIN (type)) == NULL_TREE)
3103 complete_array_type (&type, elt, false);
3105 = size_binop (PLUS_EXPR, DECL_SIZE (decl), TYPE_SIZE (type));
3106 DECL_SIZE_UNIT (decl)
3107 = size_binop (PLUS_EXPR, DECL_SIZE_UNIT (decl), TYPE_SIZE_UNIT (type));
3111 /* Decode a "typename", such as "int **", returning a ..._TYPE node. */
3114 groktypename (struct c_type_name *type_name)
3117 tree attrs = type_name->specs->attrs;
3119 type_name->specs->attrs = NULL_TREE;
3121 type = grokdeclarator (type_name->declarator, type_name->specs, TYPENAME,
3122 false, NULL, &attrs, DEPRECATED_NORMAL);
3124 /* Apply attributes. */
3125 decl_attributes (&type, attrs, 0);
3130 /* Decode a declarator in an ordinary declaration or data definition.
3131 This is called as soon as the type information and variable name
3132 have been parsed, before parsing the initializer if any.
3133 Here we create the ..._DECL node, fill in its type,
3134 and put it on the list of decls for the current context.
3135 The ..._DECL node is returned as the value.
3137 Exception: for arrays where the length is not specified,
3138 the type is left null, to be filled in by `finish_decl'.
3140 Function definitions do not come here; they go to start_function
3141 instead. However, external and forward declarations of functions
3142 do go through here. Structure field declarations are done by
3143 grokfield and not through here. */
3146 start_decl (struct c_declarator *declarator, struct c_declspecs *declspecs,
3147 bool initialized, tree attributes)
3151 enum deprecated_states deprecated_state = DEPRECATED_NORMAL;
3153 /* An object declared as __attribute__((deprecated)) suppresses
3154 warnings of uses of other deprecated items. */
3155 if (lookup_attribute ("deprecated", attributes))
3156 deprecated_state = DEPRECATED_SUPPRESS;
3158 decl = grokdeclarator (declarator, declspecs,
3159 NORMAL, initialized, NULL, &attributes,
3164 if (warn_main > 0 && TREE_CODE (decl) != FUNCTION_DECL
3165 && MAIN_NAME_P (DECL_NAME (decl)))
3166 warning (OPT_Wmain, "%q+D is usually a function", decl);
3169 /* Is it valid for this decl to have an initializer at all?
3170 If not, set INITIALIZED to zero, which will indirectly
3171 tell 'finish_decl' to ignore the initializer once it is parsed. */
3172 switch (TREE_CODE (decl))
3175 error ("typedef %qD is initialized (use __typeof__ instead)", decl);
3180 error ("function %qD is initialized like a variable", decl);
3185 /* DECL_INITIAL in a PARM_DECL is really DECL_ARG_TYPE. */
3186 error ("parameter %qD is initialized", decl);
3191 /* Don't allow initializations for incomplete types except for
3192 arrays which might be completed by the initialization. */
3194 /* This can happen if the array size is an undefined macro.
3195 We already gave a warning, so we don't need another one. */
3196 if (TREE_TYPE (decl) == error_mark_node)
3198 else if (COMPLETE_TYPE_P (TREE_TYPE (decl)))
3200 /* A complete type is ok if size is fixed. */
3202 if (TREE_CODE (TYPE_SIZE (TREE_TYPE (decl))) != INTEGER_CST
3203 || C_DECL_VARIABLE_SIZE (decl))
3205 error ("variable-sized object may not be initialized");
3209 else if (TREE_CODE (TREE_TYPE (decl)) != ARRAY_TYPE)
3211 error ("variable %qD has initializer but incomplete type", decl);
3214 else if (C_DECL_VARIABLE_SIZE (decl))
3216 /* Although C99 is unclear about whether incomplete arrays
3217 of VLAs themselves count as VLAs, it does not make
3218 sense to permit them to be initialized given that
3219 ordinary VLAs may not be initialized. */
3220 error ("variable-sized object may not be initialized");
3227 if (current_scope == file_scope)
3228 TREE_STATIC (decl) = 1;
3230 /* Tell 'pushdecl' this is an initialized decl
3231 even though we don't yet have the initializer expression.
3232 Also tell 'finish_decl' it may store the real initializer. */
3233 DECL_INITIAL (decl) = error_mark_node;
3236 /* If this is a function declaration, write a record describing it to the
3237 prototypes file (if requested). */
3239 if (TREE_CODE (decl) == FUNCTION_DECL)
3240 gen_aux_info_record (decl, 0, 0, TYPE_ARG_TYPES (TREE_TYPE (decl)) != 0);
3242 /* ANSI specifies that a tentative definition which is not merged with
3243 a non-tentative definition behaves exactly like a definition with an
3244 initializer equal to zero. (Section 3.7.2)
3246 -fno-common gives strict ANSI behavior, though this tends to break
3247 a large body of code that grew up without this rule.
3249 Thread-local variables are never common, since there's no entrenched
3250 body of code to break, and it allows more efficient variable references
3251 in the presence of dynamic linking. */
3253 if (TREE_CODE (decl) == VAR_DECL
3255 && TREE_PUBLIC (decl)
3256 && !DECL_THREAD_LOCAL_P (decl)
3258 DECL_COMMON (decl) = 1;
3260 /* Set attributes here so if duplicate decl, will have proper attributes. */
3261 decl_attributes (&decl, attributes, 0);
3263 /* Handle gnu_inline attribute. */
3264 if (declspecs->inline_p
3265 && !flag_gnu89_inline
3266 && TREE_CODE (decl) == FUNCTION_DECL
3267 && lookup_attribute ("gnu_inline", DECL_ATTRIBUTES (decl)))
3269 if (declspecs->storage_class == csc_auto && current_scope != file_scope)
3271 else if (declspecs->storage_class != csc_static)
3272 DECL_EXTERNAL (decl) = !DECL_EXTERNAL (decl);
3275 if (TREE_CODE (decl) == FUNCTION_DECL
3276 && targetm.calls.promote_prototypes (TREE_TYPE (decl)))
3278 struct c_declarator *ce = declarator;
3280 if (ce->kind == cdk_pointer)
3281 ce = declarator->declarator;
3282 if (ce->kind == cdk_function)
3284 tree args = ce->u.arg_info->parms;
3285 for (; args; args = TREE_CHAIN (args))
3287 tree type = TREE_TYPE (args);
3288 if (type && INTEGRAL_TYPE_P (type)
3289 && TYPE_PRECISION (type) < TYPE_PRECISION (integer_type_node))
3290 DECL_ARG_TYPE (args) = integer_type_node;
3295 if (TREE_CODE (decl) == FUNCTION_DECL
3296 && DECL_DECLARED_INLINE_P (decl)
3297 && DECL_UNINLINABLE (decl)
3298 && lookup_attribute ("noinline", DECL_ATTRIBUTES (decl)))
3299 warning (OPT_Wattributes, "inline function %q+D given attribute noinline",
3302 /* C99 6.7.4p3: An inline definition of a function with external
3303 linkage shall not contain a definition of a modifiable object
3304 with static storage duration... */
3305 if (TREE_CODE (decl) == VAR_DECL
3306 && current_scope != file_scope
3307 && TREE_STATIC (decl)
3308 && !TREE_READONLY (decl)
3309 && DECL_DECLARED_INLINE_P (current_function_decl)
3310 && DECL_EXTERNAL (current_function_decl))
3311 pedwarn ("%q+D is static but declared in inline function %qD "
3312 "which is not static", decl, current_function_decl);
3314 /* Add this decl to the current scope.
3315 TEM may equal DECL or it may be a previous decl of the same name. */
3316 tem = pushdecl (decl);
3318 if (initialized && DECL_EXTERNAL (tem))
3320 DECL_EXTERNAL (tem) = 0;
3321 TREE_STATIC (tem) = 1;
3327 /* Initialize EH if not initialized yet and exceptions are enabled. */
3330 c_maybe_initialize_eh (void)
3332 if (!flag_exceptions || c_eh_initialized_p)
3335 c_eh_initialized_p = true;
3336 eh_personality_libfunc
3337 = init_one_libfunc (USING_SJLJ_EXCEPTIONS
3338 ? "__gcc_personality_sj0"
3339 : "__gcc_personality_v0");
3340 default_init_unwind_resume_libfunc ();
3341 using_eh_for_cleanups ();
3344 /* Finish processing of a declaration;
3345 install its initial value.
3346 If the length of an array type is not known before,
3347 it must be determined now, from the initial value, or it is an error. */
3350 finish_decl (tree decl, tree init, tree asmspec_tree)
3353 int was_incomplete = (DECL_SIZE (decl) == 0);
3354 const char *asmspec = 0;
3356 /* If a name was specified, get the string. */
3357 if ((TREE_CODE (decl) == FUNCTION_DECL || TREE_CODE (decl) == VAR_DECL)
3358 && DECL_FILE_SCOPE_P (decl))
3359 asmspec_tree = maybe_apply_renaming_pragma (decl, asmspec_tree);
3361 asmspec = TREE_STRING_POINTER (asmspec_tree);
3363 /* If `start_decl' didn't like having an initialization, ignore it now. */
3364 if (init != 0 && DECL_INITIAL (decl) == 0)
3367 /* Don't crash if parm is initialized. */
3368 if (TREE_CODE (decl) == PARM_DECL)
3372 store_init_value (decl, init);
3374 if (c_dialect_objc () && (TREE_CODE (decl) == VAR_DECL
3375 || TREE_CODE (decl) == FUNCTION_DECL
3376 || TREE_CODE (decl) == FIELD_DECL))
3377 objc_check_decl (decl);
3379 type = TREE_TYPE (decl);
3381 /* Deduce size of array from initialization, if not already known. */
3382 if (TREE_CODE (type) == ARRAY_TYPE
3383 && TYPE_DOMAIN (type) == 0
3384 && TREE_CODE (decl) != TYPE_DECL)
3387 = (TREE_STATIC (decl)
3388 /* Even if pedantic, an external linkage array
3389 may have incomplete type at first. */
3390 ? pedantic && !TREE_PUBLIC (decl)
3391 : !DECL_EXTERNAL (decl));
3393 = complete_array_type (&TREE_TYPE (decl), DECL_INITIAL (decl),
3396 /* Get the completed type made by complete_array_type. */
3397 type = TREE_TYPE (decl);
3402 error ("initializer fails to determine size of %q+D", decl);
3407 error ("array size missing in %q+D", decl);
3408 /* If a `static' var's size isn't known,
3409 make it extern as well as static, so it does not get
3411 If it is not `static', then do not mark extern;
3412 finish_incomplete_decl will give it a default size
3413 and it will get allocated. */
3414 else if (!pedantic && TREE_STATIC (decl) && !TREE_PUBLIC (decl))
3415 DECL_EXTERNAL (decl) = 1;
3419 error ("zero or negative size array %q+D", decl);
3423 /* For global variables, update the copy of the type that
3424 exists in the binding. */
3425 if (TREE_PUBLIC (decl))
3427 struct c_binding *b_ext = I_SYMBOL_BINDING (DECL_NAME (decl));
3428 while (b_ext && !B_IN_EXTERNAL_SCOPE (b_ext))
3429 b_ext = b_ext->shadowed;
3433 b_ext->type = composite_type (b_ext->type, type);
3444 if (DECL_INITIAL (decl))
3445 TREE_TYPE (DECL_INITIAL (decl)) = type;
3447 layout_decl (decl, 0);
3450 if (TREE_CODE (decl) == VAR_DECL)
3452 if (init && TREE_CODE (init) == CONSTRUCTOR)
3453 add_flexible_array_elts_to_size (decl, init);
3455 if (DECL_SIZE (decl) == 0 && TREE_TYPE (decl) != error_mark_node
3456 && COMPLETE_TYPE_P (TREE_TYPE (decl)))
3457 layout_decl (decl, 0);
3459 if (DECL_SIZE (decl) == 0
3460 /* Don't give an error if we already gave one earlier. */
3461 && TREE_TYPE (decl) != error_mark_node
3462 && (TREE_STATIC (decl)
3463 /* A static variable with an incomplete type
3464 is an error if it is initialized.
3465 Also if it is not file scope.
3466 Otherwise, let it through, but if it is not `extern'
3467 then it may cause an error message later. */
3468 ? (DECL_INITIAL (decl) != 0
3469 || !DECL_FILE_SCOPE_P (decl))
3470 /* An automatic variable with an incomplete type
3472 : !DECL_EXTERNAL (decl)))
3474 error ("storage size of %q+D isn%'t known", decl);
3475 TREE_TYPE (decl) = error_mark_node;
3478 if ((DECL_EXTERNAL (decl) || TREE_STATIC (decl))
3479 && DECL_SIZE (decl) != 0)
3481 if (TREE_CODE (DECL_SIZE (decl)) == INTEGER_CST)
3482 constant_expression_warning (DECL_SIZE (decl));
3485 error ("storage size of %q+D isn%'t constant", decl);
3486 TREE_TYPE (decl) = error_mark_node;
3490 if (TREE_USED (type))
3491 TREE_USED (decl) = 1;
3494 /* If this is a function and an assembler name is specified, reset DECL_RTL
3495 so we can give it its new name. Also, update built_in_decls if it
3496 was a normal built-in. */
3497 if (TREE_CODE (decl) == FUNCTION_DECL && asmspec)
3499 if (DECL_BUILT_IN_CLASS (decl) == BUILT_IN_NORMAL)
3500 set_builtin_user_assembler_name (decl, asmspec);
3501 set_user_assembler_name (decl, asmspec);
3504 /* If #pragma weak was used, mark the decl weak now. */
3505 maybe_apply_pragma_weak (decl);
3507 /* Output the assembler code and/or RTL code for variables and functions,
3508 unless the type is an undefined structure or union.
3509 If not, it will get done when the type is completed. */
3511 if (TREE_CODE (decl) == VAR_DECL || TREE_CODE (decl) == FUNCTION_DECL)
3513 /* Determine the ELF visibility. */
3514 if (TREE_PUBLIC (decl))
3515 c_determine_visibility (decl);
3517 /* This is a no-op in c-lang.c or something real in objc-act.c. */
3518 if (c_dialect_objc ())
3519 objc_check_decl (decl);
3523 /* If this is not a static variable, issue a warning.
3524 It doesn't make any sense to give an ASMSPEC for an
3525 ordinary, non-register local variable. Historically,
3526 GCC has accepted -- but ignored -- the ASMSPEC in
3528 if (!DECL_FILE_SCOPE_P (decl)
3529 && TREE_CODE (decl) == VAR_DECL
3530 && !C_DECL_REGISTER (decl)
3531 && !TREE_STATIC (decl))
3532 warning (0, "ignoring asm-specifier for non-static local "
3533 "variable %q+D", decl);
3535 set_user_assembler_name (decl, asmspec);
3538 if (DECL_FILE_SCOPE_P (decl))
3540 if (DECL_INITIAL (decl) == NULL_TREE
3541 || DECL_INITIAL (decl) == error_mark_node)
3542 /* Don't output anything
3543 when a tentative file-scope definition is seen.
3544 But at end of compilation, do output code for them. */
3545 DECL_DEFER_OUTPUT (decl) = 1;
3546 rest_of_decl_compilation (decl, true, 0);
3550 /* In conjunction with an ASMSPEC, the `register'
3551 keyword indicates that we should place the variable
3552 in a particular register. */
3553 if (asmspec && C_DECL_REGISTER (decl))
3555 DECL_HARD_REGISTER (decl) = 1;
3556 /* This cannot be done for a structure with volatile
3557 fields, on which DECL_REGISTER will have been
3559 if (!DECL_REGISTER (decl))
3560 error ("cannot put object with volatile field into register");
3563 if (TREE_CODE (decl) != FUNCTION_DECL)
3565 /* If we're building a variable sized type, and we might be
3566 reachable other than via the top of the current binding
3567 level, then create a new BIND_EXPR so that we deallocate
3568 the object at the right time. */
3569 /* Note that DECL_SIZE can be null due to errors. */
3570 if (DECL_SIZE (decl)
3571 && !TREE_CONSTANT (DECL_SIZE (decl))
3572 && STATEMENT_LIST_HAS_LABEL (cur_stmt_list))
3575 bind = build3 (BIND_EXPR, void_type_node, NULL, NULL, NULL);
3576 TREE_SIDE_EFFECTS (bind) = 1;
3578 BIND_EXPR_BODY (bind) = push_stmt_list ();
3580 add_stmt (build_stmt (DECL_EXPR, decl));
3585 if (!DECL_FILE_SCOPE_P (decl))
3587 /* Recompute the RTL of a local array now
3588 if it used to be an incomplete type. */
3590 && !TREE_STATIC (decl) && !DECL_EXTERNAL (decl))
3592 /* If we used it already as memory, it must stay in memory. */
3593 TREE_ADDRESSABLE (decl) = TREE_USED (decl);
3594 /* If it's still incomplete now, no init will save it. */
3595 if (DECL_SIZE (decl) == 0)
3596 DECL_INITIAL (decl) = 0;
3601 /* If this was marked 'used', be sure it will be output. */
3602 if (!flag_unit_at_a_time && lookup_attribute ("used", DECL_ATTRIBUTES (decl)))
3603 mark_decl_referenced (decl);
3605 if (TREE_CODE (decl) == TYPE_DECL)
3607 if (!DECL_FILE_SCOPE_P (decl)
3608 && variably_modified_type_p (TREE_TYPE (decl), NULL_TREE))
3609 add_stmt (build_stmt (DECL_EXPR, decl));
3611 rest_of_decl_compilation (decl, DECL_FILE_SCOPE_P (decl), 0);
3614 /* At the end of a declaration, throw away any variable type sizes
3615 of types defined inside that declaration. There is no use
3616 computing them in the following function definition. */
3617 if (current_scope == file_scope)
3618 get_pending_sizes ();
3620 /* Install a cleanup (aka destructor) if one was given. */
3621 if (TREE_CODE (decl) == VAR_DECL && !TREE_STATIC (decl))
3623 tree attr = lookup_attribute ("cleanup", DECL_ATTRIBUTES (decl));
3626 tree cleanup_id = TREE_VALUE (TREE_VALUE (attr));
3627 tree cleanup_decl = lookup_name (cleanup_id);
3630 /* Build "cleanup(&decl)" for the destructor. */
3631 cleanup = build_unary_op (ADDR_EXPR, decl, 0);
3632 cleanup = build_tree_list (NULL_TREE, cleanup);
3633 cleanup = build_function_call (cleanup_decl, cleanup);
3635 /* Don't warn about decl unused; the cleanup uses it. */
3636 TREE_USED (decl) = 1;
3637 TREE_USED (cleanup_decl) = 1;
3639 /* Initialize EH, if we've been told to do so. */
3640 c_maybe_initialize_eh ();
3642 push_cleanup (decl, cleanup, false);
3647 /* Given a parsed parameter declaration, decode it into a PARM_DECL. */
3650 grokparm (const struct c_parm *parm)
3652 tree attrs = parm->attrs;
3653 tree decl = grokdeclarator (parm->declarator, parm->specs, PARM, false,
3654 NULL, &attrs, DEPRECATED_NORMAL);
3656 decl_attributes (&decl, attrs, 0);
3661 /* Given a parsed parameter declaration, decode it into a PARM_DECL
3662 and push that on the current scope. */
3665 push_parm_decl (const struct c_parm *parm)
3667 tree attrs = parm->attrs;
3670 decl = grokdeclarator (parm->declarator, parm->specs, PARM, false, NULL,
3671 &attrs, DEPRECATED_NORMAL);
3672 decl_attributes (&decl, attrs, 0);
3674 decl = pushdecl (decl);
3676 finish_decl (decl, NULL_TREE, NULL_TREE);
3679 /* Mark all the parameter declarations to date as forward decls.
3680 Also diagnose use of this extension. */
3683 mark_forward_parm_decls (void)
3685 struct c_binding *b;
3687 if (pedantic && !current_scope->warned_forward_parm_decls)
3689 pedwarn ("ISO C forbids forward parameter declarations");
3690 current_scope->warned_forward_parm_decls = true;
3693 for (b = current_scope->bindings; b; b = b->prev)
3694 if (TREE_CODE (b->decl) == PARM_DECL)
3695 TREE_ASM_WRITTEN (b->decl) = 1;
3698 /* Build a COMPOUND_LITERAL_EXPR. TYPE is the type given in the compound
3699 literal, which may be an incomplete array type completed by the
3700 initializer; INIT is a CONSTRUCTOR that initializes the compound
3704 build_compound_literal (tree type, tree init)
3706 /* We do not use start_decl here because we have a type, not a declarator;
3707 and do not use finish_decl because the decl should be stored inside
3708 the COMPOUND_LITERAL_EXPR rather than added elsewhere as a DECL_EXPR. */
3713 if (type == error_mark_node)
3714 return error_mark_node;
3716 decl = build_decl (VAR_DECL, NULL_TREE, type);
3717 DECL_EXTERNAL (decl) = 0;
3718 TREE_PUBLIC (decl) = 0;
3719 TREE_STATIC (decl) = (current_scope == file_scope);
3720 DECL_CONTEXT (decl) = current_function_decl;
3721 TREE_USED (decl) = 1;
3722 TREE_TYPE (decl) = type;
3723 TREE_READONLY (decl) = TYPE_READONLY (type);
3724 store_init_value (decl, init);
3726 if (TREE_CODE (type) == ARRAY_TYPE && !COMPLETE_TYPE_P (type))
3728 int failure = complete_array_type (&TREE_TYPE (decl),
3729 DECL_INITIAL (decl), true);
3730 gcc_assert (!failure);
3732 type = TREE_TYPE (decl);
3733 TREE_TYPE (DECL_INITIAL (decl)) = type;
3736 if (type == error_mark_node || !COMPLETE_TYPE_P (type))
3737 return error_mark_node;
3739 stmt = build_stmt (DECL_EXPR, decl);
3740 complit = build1 (COMPOUND_LITERAL_EXPR, type, stmt);
3741 TREE_SIDE_EFFECTS (complit) = 1;
3743 layout_decl (decl, 0);
3745 if (TREE_STATIC (decl))
3747 /* This decl needs a name for the assembler output. */
3748 set_compound_literal_name (decl);
3749 DECL_DEFER_OUTPUT (decl) = 1;
3750 DECL_COMDAT (decl) = 1;
3751 DECL_ARTIFICIAL (decl) = 1;
3752 DECL_IGNORED_P (decl) = 1;
3754 rest_of_decl_compilation (decl, 1, 0);
3760 /* Determine whether TYPE is a structure with a flexible array member,
3761 or a union containing such a structure (possibly recursively). */
3764 flexible_array_type_p (tree type)
3767 switch (TREE_CODE (type))
3770 x = TYPE_FIELDS (type);
3773 while (TREE_CHAIN (x) != NULL_TREE)
3775 if (TREE_CODE (TREE_TYPE (x)) == ARRAY_TYPE
3776 && TYPE_SIZE (TREE_TYPE (x)) == NULL_TREE
3777 && TYPE_DOMAIN (TREE_TYPE (x)) != NULL_TREE
3778 && TYPE_MAX_VALUE (TYPE_DOMAIN (TREE_TYPE (x))) == NULL_TREE)
3782 for (x = TYPE_FIELDS (type); x != NULL_TREE; x = TREE_CHAIN (x))
3784 if (flexible_array_type_p (TREE_TYPE (x)))
3793 /* Performs sanity checks on the TYPE and WIDTH of the bit-field NAME,
3794 replacing with appropriate values if they are invalid. */
3796 check_bitfield_type_and_width (tree *type, tree *width, const char *orig_name)
3799 unsigned int max_width;
3800 unsigned HOST_WIDE_INT w;
3801 const char *name = orig_name ? orig_name: _("<anonymous>");
3803 /* Detect and ignore out of range field width and process valid
3805 if (!INTEGRAL_TYPE_P (TREE_TYPE (*width))
3806 || TREE_CODE (*width) != INTEGER_CST)
3808 error ("bit-field %qs width not an integer constant", name);
3809 *width = integer_one_node;
3813 constant_expression_warning (*width);
3814 if (tree_int_cst_sgn (*width) < 0)
3816 error ("negative width in bit-field %qs", name);
3817 *width = integer_one_node;
3819 else if (integer_zerop (*width) && orig_name)
3821 error ("zero width for bit-field %qs", name);
3822 *width = integer_one_node;
3826 /* Detect invalid bit-field type. */
3827 if (TREE_CODE (*type) != INTEGER_TYPE
3828 && TREE_CODE (*type) != BOOLEAN_TYPE
3829 && TREE_CODE (*type) != ENUMERAL_TYPE)
3831 error ("bit-field %qs has invalid type", name);
3832 *type = unsigned_type_node;
3835 type_mv = TYPE_MAIN_VARIANT (*type);
3837 && !in_system_header
3838 && type_mv != integer_type_node
3839 && type_mv != unsigned_type_node
3840 && type_mv != boolean_type_node)
3841 pedwarn ("type of bit-field %qs is a GCC extension", name);
3843 max_width = TYPE_PRECISION (*type);
3845 if (0 < compare_tree_int (*width, max_width))
3847 error ("width of %qs exceeds its type", name);
3849 *width = build_int_cst (NULL_TREE, w);
3852 w = tree_low_cst (*width, 1);
3854 if (TREE_CODE (*type) == ENUMERAL_TYPE)
3856 struct lang_type *lt = TYPE_LANG_SPECIFIC (*type);
3858 || w < min_precision (lt->enum_min, TYPE_UNSIGNED (*type))
3859 || w < min_precision (lt->enum_max, TYPE_UNSIGNED (*type)))
3860 warning (0, "%qs is narrower than values of its type", name);
3866 /* Print warning about variable length array if necessary. */
3869 warn_variable_length_array (const char *name, tree size)
3871 int ped = !flag_isoc99 && pedantic && warn_vla != 0;
3872 int const_size = TREE_CONSTANT (size);
3879 pedwarn ("ISO C90 forbids array %qs whose size "
3880 "can%'t be evaluated",
3883 pedwarn ("ISO C90 forbids array whose size "
3884 "can%'t be evaluated");
3889 pedwarn ("ISO C90 forbids variable length array %qs",
3892 pedwarn ("ISO C90 forbids variable length array");
3895 else if (warn_vla > 0)
3901 "the size of array %qs can"
3902 "%'t be evaluated", name);
3905 "the size of array can %'t be evaluated");
3911 "variable length array %qs is used",
3915 "variable length array is used");
3920 /* Given declspecs and a declarator,
3921 determine the name and type of the object declared
3922 and construct a ..._DECL node for it.
3923 (In one case we can return a ..._TYPE node instead.
3924 For invalid input we sometimes return 0.)
3926 DECLSPECS is a c_declspecs structure for the declaration specifiers.
3928 DECL_CONTEXT says which syntactic context this declaration is in:
3929 NORMAL for most contexts. Make a VAR_DECL or FUNCTION_DECL or TYPE_DECL.
3930 FUNCDEF for a function definition. Like NORMAL but a few different
3931 error messages in each case. Return value may be zero meaning
3932 this definition is too screwy to try to parse.
3933 PARM for a parameter declaration (either within a function prototype
3934 or before a function body). Make a PARM_DECL, or return void_type_node.
3935 TYPENAME if for a typename (in a cast or sizeof).
3936 Don't make a DECL node; just return the ..._TYPE node.
3937 FIELD for a struct or union field; make a FIELD_DECL.
3938 INITIALIZED is true if the decl has an initializer.
3939 WIDTH is non-NULL for bit-fields, and is a pointer to an INTEGER_CST node
3940 representing the width of the bit-field.
3941 DECL_ATTRS points to the list of attributes that should be added to this
3942 decl. Any nested attributes that belong on the decl itself will be
3944 DEPRECATED_STATE is a deprecated_states value indicating whether
3945 deprecation warnings should be suppressed.
3947 In the TYPENAME case, DECLARATOR is really an absolute declarator.
3948 It may also be so in the PARM case, for a prototype where the
3949 argument type is specified but not the name.
3951 This function is where the complicated C meanings of `static'
3952 and `extern' are interpreted. */
3955 grokdeclarator (const struct c_declarator *declarator,
3956 struct c_declspecs *declspecs,
3957 enum decl_context decl_context, bool initialized, tree *width,
3958 tree *decl_attrs, enum deprecated_states deprecated_state)
3960 tree type = declspecs->type;
3961 bool threadp = declspecs->thread_p;
3962 enum c_storage_class storage_class = declspecs->storage_class;
3966 int type_quals = TYPE_UNQUALIFIED;
3967 const char *name, *orig_name;
3968 bool funcdef_flag = false;
3969 bool funcdef_syntax = false;
3970 int size_varies = 0;
3971 tree decl_attr = declspecs->decl_attr;
3972 int array_ptr_quals = TYPE_UNQUALIFIED;
3973 tree array_ptr_attrs = NULL_TREE;
3974 int array_parm_static = 0;
3975 bool array_parm_vla_unspec_p = false;
3976 tree returned_attrs = NULL_TREE;
3977 bool bitfield = width != NULL;
3979 struct c_arg_info *arg_info = 0;
3981 if (decl_context == FUNCDEF)
3982 funcdef_flag = true, decl_context = NORMAL;
3984 /* Look inside a declarator for the name being declared
3985 and get it as a string, for an error message. */
3987 const struct c_declarator *decl = declarator;
3996 funcdef_syntax = (decl->kind == cdk_function);
3997 decl = decl->declarator;
4001 decl = decl->declarator;
4006 name = IDENTIFIER_POINTER (decl->u.id);
4018 /* A function definition's declarator must have the form of
4019 a function declarator. */
4021 if (funcdef_flag && !funcdef_syntax)
4024 /* If this looks like a function definition, make it one,
4025 even if it occurs where parms are expected.
4026 Then store_parm_decls will reject it and not use it as a parm. */
4027 if (decl_context == NORMAL && !funcdef_flag && current_scope->parm_flag)
4028 decl_context = PARM;
4030 if (declspecs->deprecated_p && deprecated_state != DEPRECATED_SUPPRESS)
4031 warn_deprecated_use (declspecs->type);
4033 if ((decl_context == NORMAL || decl_context == FIELD)
4034 && current_scope == file_scope
4035 && variably_modified_type_p (type, NULL_TREE))
4037 error ("variably modified %qs at file scope", name);
4038 type = integer_type_node;
4041 size_varies = C_TYPE_VARIABLE_SIZE (type);
4043 /* Diagnose defaulting to "int". */
4045 if (declspecs->default_int_p && !in_system_header)
4047 /* Issue a warning if this is an ISO C 99 program or if
4048 -Wreturn-type and this is a function, or if -Wimplicit;
4049 prefer the former warning since it is more explicit. */
4050 if ((warn_implicit_int || warn_return_type || flag_isoc99)
4052 warn_about_return_type = 1;
4053 else if (warn_implicit_int || flag_isoc99)
4054 pedwarn_c99 ("type defaults to %<int%> in declaration of %qs", name);
4057 /* Adjust the type if a bit-field is being declared,
4058 -funsigned-bitfields applied and the type is not explicitly
4060 if (bitfield && !flag_signed_bitfields && !declspecs->explicit_signed_p
4061 && TREE_CODE (type) == INTEGER_TYPE)
4062 type = c_common_unsigned_type (type);
4064 /* Figure out the type qualifiers for the declaration. There are
4065 two ways a declaration can become qualified. One is something
4066 like `const int i' where the `const' is explicit. Another is
4067 something like `typedef const int CI; CI i' where the type of the
4068 declaration contains the `const'. A third possibility is that
4069 there is a type qualifier on the element type of a typedefed
4070 array type, in which case we should extract that qualifier so
4071 that c_apply_type_quals_to_decls receives the full list of
4072 qualifiers to work with (C90 is not entirely clear about whether
4073 duplicate qualifiers should be diagnosed in this case, but it
4074 seems most appropriate to do so). */
4075 element_type = strip_array_types (type);
4076 constp = declspecs->const_p + TYPE_READONLY (element_type);
4077 restrictp = declspecs->restrict_p + TYPE_RESTRICT (element_type);
4078 volatilep = declspecs->volatile_p + TYPE_VOLATILE (element_type);
4079 if (pedantic && !flag_isoc99)
4082 pedwarn ("duplicate %<const%>");
4084 pedwarn ("duplicate %<restrict%>");
4086 pedwarn ("duplicate %<volatile%>");
4088 if (!flag_gen_aux_info && (TYPE_QUALS (element_type)))
4089 type = TYPE_MAIN_VARIANT (type);
4090 type_quals = ((constp ? TYPE_QUAL_CONST : 0)
4091 | (restrictp ? TYPE_QUAL_RESTRICT : 0)
4092 | (volatilep ? TYPE_QUAL_VOLATILE : 0));
4094 /* Warn about storage classes that are invalid for certain
4095 kinds of declarations (parameters, typenames, etc.). */
4099 || storage_class == csc_auto
4100 || storage_class == csc_register
4101 || storage_class == csc_typedef))
4103 if (storage_class == csc_auto
4104 && (pedantic || current_scope == file_scope))
4105 pedwarn ("function definition declared %<auto%>");
4106 if (storage_class == csc_register)
4107 error ("function definition declared %<register%>");
4108 if (storage_class == c