Daily bump.
[official-gcc.git] / gcc / c-decl.c
blobd86bca07be8d50f75368616bb43b0fc31a998748
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
11 version.
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
16 for more details.
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. */
29 #include "config.h"
30 #include "system.h"
31 #include "coretypes.h"
32 #include "input.h"
33 #include "tm.h"
34 #include "intl.h"
35 #include "tree.h"
36 #include "tree-inline.h"
37 #include "rtl.h"
38 #include "flags.h"
39 #include "function.h"
40 #include "output.h"
41 #include "expr.h"
42 #include "c-tree.h"
43 #include "toplev.h"
44 #include "ggc.h"
45 #include "tm_p.h"
46 #include "cpplib.h"
47 #include "target.h"
48 #include "debug.h"
49 #include "opts.h"
50 #include "timevar.h"
51 #include "c-common.h"
52 #include "c-pragma.h"
53 #include "langhooks.h"
54 #include "tree-mudflap.h"
55 #include "tree-gimple.h"
56 #include "diagnostic.h"
57 #include "tree-dump.h"
58 #include "cgraph.h"
59 #include "hashtab.h"
60 #include "libfuncs.h"
61 #include "except.h"
62 #include "langhooks-def.h"
63 #include "pointer-set.h"
65 /* In grokdeclarator, distinguish syntactic contexts of declarators. */
66 enum decl_context
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
76 deprecated items. */
78 enum deprecated_states {
79 DEPRECATED_NORMAL,
80 DEPRECATED_SUPPRESS
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
109 defined. */
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
115 allocated. */
116 struct obstack parser_obstack;
118 /* The current statement tree. */
120 static GTY(()) struct stmt_tree_s c_stmt_tree;
122 /* State saving variables. */
123 tree c_break_label;
124 tree c_cont_label;
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
177 function.
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 */
209 /* one free bit */
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. */
249 union lang_tree_node
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)")))
255 generic;
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
285 undefined.
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
292 this scope.
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
298 list here.)
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. */
317 tree blocks;
318 tree blocks_last;
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
325 declarations. */
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); \
377 tree d_ = (decl); \
378 if (s_->list##_last) \
379 BLOCK_CHAIN (s_->list##_last) = d_; \
380 else \
381 s_->list = d_; \
382 s_->list##_last = d_; \
383 } while (0)
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); \
389 if (t_->to##_last) \
390 BLOCK_CHAIN (t_->to##_last) = f_->from; \
391 else \
392 t_->to = f_->from; \
393 t_->to##_last = f_->from##_last; \
394 } while (0)
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
418 function. */
420 tree
421 add_stmt (tree t)
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);
438 return t;
442 void
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. */
460 static void
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;
470 else
471 b = GGC_NEW (struct c_binding);
473 b->shadowed = 0;
474 b->decl = decl;
475 b->id = name;
476 b->depth = scope->depth;
477 b->invisible = invisible;
478 b->nested = nested;
479 b->inner_comp = 0;
481 b->type = 0;
483 b->prev = scope->bindings;
484 scope->bindings = b;
486 if (!name)
487 return;
489 switch (TREE_CODE (decl))
491 case LABEL_DECL: here = &I_LABEL_BINDING (name); break;
492 case ENUMERAL_TYPE:
493 case UNION_TYPE:
494 case RECORD_TYPE: here = &I_TAG_BINDING (name); break;
495 case VAR_DECL:
496 case FUNCTION_DECL:
497 case TYPE_DECL:
498 case CONST_DECL:
499 case PARM_DECL:
500 case ERROR_MARK: here = &I_SYMBOL_BINDING (name); break;
502 default:
503 gcc_unreachable ();
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;
512 b->shadowed = *here;
513 *here = b;
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;
529 return prev;
533 /* Hook called at end of compilation to assume 1 elt
534 for a file-scope tentative array defn that wasn't complete before. */
536 void
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. */
558 void *
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. */
567 void
568 objc_mark_locals_volatile (void *enclosing_blk)
570 struct c_scope *scope;
571 struct c_binding *b;
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)
582 break;
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;
594 void
595 keep_next_level (void)
597 keep_next_level_flag = true;
600 /* Identify this scope as currently being filled with parameters. */
602 void
603 declare_parm_level (void)
605 current_scope->parm_flag = true;
608 void
609 push_scope (void)
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;
632 else
634 struct c_scope *scope;
635 if (scope_freelist)
637 scope = scope_freelist;
638 scope_freelist = scope->outer;
640 else
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
648 possible. */
649 if (current_scope && scope->depth == 0)
651 scope->depth--;
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. */
662 static void
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. */
675 tree
676 pop_scope (void)
678 struct c_scope *scope = current_scope;
679 tree block, context, p;
680 struct c_binding *b;
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
688 of this function. */
689 block = 0;
690 if (keep)
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;
723 context = file_decl;
725 else
726 context = block;
728 /* Clear all bindings in this scope. */
729 for (b = scope->bindings; b; b = free_binding_and_advance (b))
731 p = b->decl;
732 switch (TREE_CODE (p))
734 case LABEL_DECL:
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;
741 else
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;
749 break;
751 case ENUMERAL_TYPE:
752 case UNION_TYPE:
753 case RECORD_TYPE:
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. */
758 if (b->id)
760 gcc_assert (I_TAG_BINDING (b->id) == b);
761 I_TAG_BINDING (b->id) = b->shadowed;
763 break;
765 case FUNCTION_DECL:
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)
775 && !DECL_INITIAL (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)
786 && TREE_PUBLIC (p)
787 && !DECL_INITIAL (p)
788 && !flag_gnu89_inline)
789 pedwarn ("inline function %q+D declared but never defined", p);
791 goto common_symbol;
793 case VAR_DECL:
794 /* Warnings for unused variables. */
795 if (!TREE_USED (p)
796 && !TREE_NO_WARNING (p)
797 && !DECL_IN_SYSTEM_HEADER (p)
798 && DECL_NAME (p)
799 && !DECL_ARTIFICIAL (p)
800 && scope != file_scope
801 && scope != external_scope)
802 warning (OPT_Wunused_variable, "unused variable %q+D", p);
804 if (b->inner_comp)
806 error ("type of array %q+D completed incompatibly with"
807 " implicit initialization", p);
810 /* Fall through. */
811 case TYPE_DECL:
812 case CONST_DECL:
813 common_symbol:
814 /* All of these go in BLOCK_VARS, but only if this is the
815 binding in the home scope. */
816 if (!b->nested)
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);
833 /* Fall through. */
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. */
839 case PARM_DECL:
840 case ERROR_MARK:
841 /* It is possible for a decl not to have a name. We get
842 here with b->id NULL in this case. */
843 if (b->id)
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;
850 break;
852 default:
853 gcc_unreachable ();
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)
866 if (block)
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;
884 return block;
887 void
888 push_file_scope (void)
890 tree decl;
892 if (file_scope)
893 return;
895 push_scope ();
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);
905 void
906 pop_file_scope (void)
908 /* In case there were missing closebraces, get us back to the global
909 binding level. */
910 while (current_scope != file_scope)
911 pop_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. */
920 if (pch_file)
922 c_common_write_pch ();
923 return;
926 /* Pop off the file scope and close this translation unit. */
927 pop_scope ();
928 file_scope = 0;
930 maybe_apply_pending_pragma_weaks ();
931 cgraph_finalize_compilation_unit ();
934 /* Insert BLOCK at the end of the list of subblocks of the current
935 scope. This is used when a BIND_EXPR is expanded, to handle the
936 BLOCK node inside the BIND_EXPR. */
938 void
939 insert_block (tree block)
941 TREE_USED (block) = 1;
942 SCOPE_LIST_APPEND (current_scope, blocks, block);
945 /* Push a definition or a declaration of struct, union or enum tag "name".
946 "type" should be the type node.
947 We assume that the tag "name" is not already defined.
949 Note that the definition may really be just a forward reference.
950 In that case, the TYPE_SIZE will be zero. */
952 static void
953 pushtag (tree name, tree type)
955 /* Record the identifier as the type's name if it has none. */
956 if (name && !TYPE_NAME (type))
957 TYPE_NAME (type) = name;
958 bind (name, type, current_scope, /*invisible=*/false, /*nested=*/false);
960 /* Create a fake NULL-named TYPE_DECL node whose TREE_TYPE will be the
961 tagged type we just added to the current scope. This fake
962 NULL-named TYPE_DECL node helps dwarfout.c to know when it needs
963 to output a representation of a tagged type, and it also gives
964 us a convenient place to record the "scope start" address for the
965 tagged type. */
967 TYPE_STUB_DECL (type) = pushdecl (build_decl (TYPE_DECL, NULL_TREE, type));
969 /* An approximation for now, so we can tell this is a function-scope tag.
970 This will be updated in pop_scope. */
971 TYPE_CONTEXT (type) = DECL_CONTEXT (TYPE_STUB_DECL (type));
974 /* Subroutine of compare_decls. Allow harmless mismatches in return
975 and argument types provided that the type modes match. This function
976 return a unified type given a suitable match, and 0 otherwise. */
978 static tree
979 match_builtin_function_types (tree newtype, tree oldtype)
981 tree newrettype, oldrettype;
982 tree newargs, oldargs;
983 tree trytype, tryargs;
985 /* Accept the return type of the new declaration if same modes. */
986 oldrettype = TREE_TYPE (oldtype);
987 newrettype = TREE_TYPE (newtype);
989 if (TYPE_MODE (oldrettype) != TYPE_MODE (newrettype))
990 return 0;
992 oldargs = TYPE_ARG_TYPES (oldtype);
993 newargs = TYPE_ARG_TYPES (newtype);
994 tryargs = newargs;
996 while (oldargs || newargs)
998 if (!oldargs
999 || !newargs
1000 || !TREE_VALUE (oldargs)
1001 || !TREE_VALUE (newargs)
1002 || TYPE_MODE (TREE_VALUE (oldargs))
1003 != TYPE_MODE (TREE_VALUE (newargs)))
1004 return 0;
1006 oldargs = TREE_CHAIN (oldargs);
1007 newargs = TREE_CHAIN (newargs);
1010 trytype = build_function_type (newrettype, tryargs);
1011 return build_type_attribute_variant (trytype, TYPE_ATTRIBUTES (oldtype));
1014 /* Subroutine of diagnose_mismatched_decls. Check for function type
1015 mismatch involving an empty arglist vs a nonempty one and give clearer
1016 diagnostics. */
1017 static void
1018 diagnose_arglist_conflict (tree newdecl, tree olddecl,
1019 tree newtype, tree oldtype)
1021 tree t;
1023 if (TREE_CODE (olddecl) != FUNCTION_DECL
1024 || !comptypes (TREE_TYPE (oldtype), TREE_TYPE (newtype))
1025 || !((TYPE_ARG_TYPES (oldtype) == 0 && DECL_INITIAL (olddecl) == 0)
1027 (TYPE_ARG_TYPES (newtype) == 0 && DECL_INITIAL (newdecl) == 0)))
1028 return;
1030 t = TYPE_ARG_TYPES (oldtype);
1031 if (t == 0)
1032 t = TYPE_ARG_TYPES (newtype);
1033 for (; t; t = TREE_CHAIN (t))
1035 tree type = TREE_VALUE (t);
1037 if (TREE_CHAIN (t) == 0
1038 && TYPE_MAIN_VARIANT (type) != void_type_node)
1040 inform ("a parameter list with an ellipsis can%'t match "
1041 "an empty parameter name list declaration");
1042 break;
1045 if (c_type_promotes_to (type) != type)
1047 inform ("an argument type that has a default promotion can%'t match "
1048 "an empty parameter name list declaration");
1049 break;
1054 /* Another subroutine of diagnose_mismatched_decls. OLDDECL is an
1055 old-style function definition, NEWDECL is a prototype declaration.
1056 Diagnose inconsistencies in the argument list. Returns TRUE if
1057 the prototype is compatible, FALSE if not. */
1058 static bool
1059 validate_proto_after_old_defn (tree newdecl, tree newtype, tree oldtype)
1061 tree newargs, oldargs;
1062 int i;
1064 #define END_OF_ARGLIST(t) ((t) == void_type_node)
1066 oldargs = TYPE_ACTUAL_ARG_TYPES (oldtype);
1067 newargs = TYPE_ARG_TYPES (newtype);
1068 i = 1;
1070 for (;;)
1072 tree oldargtype = TREE_VALUE (oldargs);
1073 tree newargtype = TREE_VALUE (newargs);
1075 if (oldargtype == error_mark_node || newargtype == error_mark_node)
1076 return false;
1078 oldargtype = TYPE_MAIN_VARIANT (oldargtype);
1079 newargtype = TYPE_MAIN_VARIANT (newargtype);
1081 if (END_OF_ARGLIST (oldargtype) && END_OF_ARGLIST (newargtype))
1082 break;
1084 /* Reaching the end of just one list means the two decls don't
1085 agree on the number of arguments. */
1086 if (END_OF_ARGLIST (oldargtype))
1088 error ("prototype for %q+D declares more arguments "
1089 "than previous old-style definition", newdecl);
1090 return false;
1092 else if (END_OF_ARGLIST (newargtype))
1094 error ("prototype for %q+D declares fewer arguments "
1095 "than previous old-style definition", newdecl);
1096 return false;
1099 /* Type for passing arg must be consistent with that declared
1100 for the arg. */
1101 else if (!comptypes (oldargtype, newargtype))
1103 error ("prototype for %q+D declares argument %d"
1104 " with incompatible type",
1105 newdecl, i);
1106 return false;
1109 oldargs = TREE_CHAIN (oldargs);
1110 newargs = TREE_CHAIN (newargs);
1111 i++;
1114 /* If we get here, no errors were found, but do issue a warning
1115 for this poor-style construct. */
1116 warning (0, "prototype for %q+D follows non-prototype definition",
1117 newdecl);
1118 return true;
1119 #undef END_OF_ARGLIST
1122 /* Subroutine of diagnose_mismatched_decls. Report the location of DECL,
1123 first in a pair of mismatched declarations, using the diagnostic
1124 function DIAG. */
1125 static void
1126 locate_old_decl (tree decl, void (*diag)(const char *, ...) ATTRIBUTE_GCC_CDIAG(1,2))
1128 if (TREE_CODE (decl) == FUNCTION_DECL && DECL_BUILT_IN (decl))
1130 else if (DECL_INITIAL (decl))
1131 diag (G_("previous definition of %q+D was here"), decl);
1132 else if (C_DECL_IMPLICIT (decl))
1133 diag (G_("previous implicit declaration of %q+D was here"), decl);
1134 else
1135 diag (G_("previous declaration of %q+D was here"), decl);
1138 /* Subroutine of duplicate_decls. Compare NEWDECL to OLDDECL.
1139 Returns true if the caller should proceed to merge the two, false
1140 if OLDDECL should simply be discarded. As a side effect, issues
1141 all necessary diagnostics for invalid or poor-style combinations.
1142 If it returns true, writes the types of NEWDECL and OLDDECL to
1143 *NEWTYPEP and *OLDTYPEP - these may have been adjusted from
1144 TREE_TYPE (NEWDECL, OLDDECL) respectively. */
1146 static bool
1147 diagnose_mismatched_decls (tree newdecl, tree olddecl,
1148 tree *newtypep, tree *oldtypep)
1150 tree newtype, oldtype;
1151 bool pedwarned = false;
1152 bool warned = false;
1153 bool retval = true;
1155 #define DECL_EXTERN_INLINE(DECL) (DECL_DECLARED_INLINE_P (DECL) \
1156 && DECL_EXTERNAL (DECL))
1158 /* If we have error_mark_node for either decl or type, just discard
1159 the previous decl - we're in an error cascade already. */
1160 if (olddecl == error_mark_node || newdecl == error_mark_node)
1161 return false;
1162 *oldtypep = oldtype = TREE_TYPE (olddecl);
1163 *newtypep = newtype = TREE_TYPE (newdecl);
1164 if (oldtype == error_mark_node || newtype == error_mark_node)
1165 return false;
1167 /* Two different categories of symbol altogether. This is an error
1168 unless OLDDECL is a builtin. OLDDECL will be discarded in any case. */
1169 if (TREE_CODE (olddecl) != TREE_CODE (newdecl))
1171 if (!(TREE_CODE (olddecl) == FUNCTION_DECL
1172 && DECL_BUILT_IN (olddecl)
1173 && !C_DECL_DECLARED_BUILTIN (olddecl)))
1175 error ("%q+D redeclared as different kind of symbol", newdecl);
1176 locate_old_decl (olddecl, error);
1178 else if (TREE_PUBLIC (newdecl))
1179 warning (0, "built-in function %q+D declared as non-function",
1180 newdecl);
1181 else
1182 warning (OPT_Wshadow, "declaration of %q+D shadows "
1183 "a built-in function", newdecl);
1184 return false;
1187 /* Enumerators have no linkage, so may only be declared once in a
1188 given scope. */
1189 if (TREE_CODE (olddecl) == CONST_DECL)
1191 error ("redeclaration of enumerator %q+D", newdecl);
1192 locate_old_decl (olddecl, error);
1193 return false;
1196 if (!comptypes (oldtype, newtype))
1198 if (TREE_CODE (olddecl) == FUNCTION_DECL
1199 && DECL_BUILT_IN (olddecl) && !C_DECL_DECLARED_BUILTIN (olddecl))
1201 /* Accept harmless mismatch in function types.
1202 This is for the ffs and fprintf builtins. */
1203 tree trytype = match_builtin_function_types (newtype, oldtype);
1205 if (trytype && comptypes (newtype, trytype))
1206 *oldtypep = oldtype = trytype;
1207 else
1209 /* If types don't match for a built-in, throw away the
1210 built-in. No point in calling locate_old_decl here, it
1211 won't print anything. */
1212 warning (0, "conflicting types for built-in function %q+D",
1213 newdecl);
1214 return false;
1217 else if (TREE_CODE (olddecl) == FUNCTION_DECL
1218 && DECL_IS_BUILTIN (olddecl))
1220 /* A conflicting function declaration for a predeclared
1221 function that isn't actually built in. Objective C uses
1222 these. The new declaration silently overrides everything
1223 but the volatility (i.e. noreturn) indication. See also
1224 below. FIXME: Make Objective C use normal builtins. */
1225 TREE_THIS_VOLATILE (newdecl) |= TREE_THIS_VOLATILE (olddecl);
1226 return false;
1228 /* Permit void foo (...) to match int foo (...) if the latter is
1229 the definition and implicit int was used. See
1230 c-torture/compile/920625-2.c. */
1231 else if (TREE_CODE (newdecl) == FUNCTION_DECL && DECL_INITIAL (newdecl)
1232 && TYPE_MAIN_VARIANT (TREE_TYPE (oldtype)) == void_type_node
1233 && TYPE_MAIN_VARIANT (TREE_TYPE (newtype)) == integer_type_node
1234 && C_FUNCTION_IMPLICIT_INT (newdecl) && !DECL_INITIAL (olddecl))
1236 pedwarn ("conflicting types for %q+D", newdecl);
1237 /* Make sure we keep void as the return type. */
1238 TREE_TYPE (newdecl) = *newtypep = newtype = oldtype;
1239 C_FUNCTION_IMPLICIT_INT (newdecl) = 0;
1240 pedwarned = true;
1242 /* Permit void foo (...) to match an earlier call to foo (...) with
1243 no declared type (thus, implicitly int). */
1244 else if (TREE_CODE (newdecl) == FUNCTION_DECL
1245 && TYPE_MAIN_VARIANT (TREE_TYPE (newtype)) == void_type_node
1246 && TYPE_MAIN_VARIANT (TREE_TYPE (oldtype)) == integer_type_node
1247 && C_DECL_IMPLICIT (olddecl) && !DECL_INITIAL (olddecl))
1249 pedwarn ("conflicting types for %q+D", newdecl);
1250 /* Make sure we keep void as the return type. */
1251 TREE_TYPE (olddecl) = *oldtypep = oldtype = newtype;
1252 pedwarned = true;
1254 else
1256 if (TYPE_QUALS (newtype) != TYPE_QUALS (oldtype))
1257 error ("conflicting type qualifiers for %q+D", newdecl);
1258 else
1259 error ("conflicting types for %q+D", newdecl);
1260 diagnose_arglist_conflict (newdecl, olddecl, newtype, oldtype);
1261 locate_old_decl (olddecl, error);
1262 return false;
1266 /* Redeclaration of a type is a constraint violation (6.7.2.3p1),
1267 but silently ignore the redeclaration if either is in a system
1268 header. (Conflicting redeclarations were handled above.) */
1269 if (TREE_CODE (newdecl) == TYPE_DECL)
1271 if (DECL_IN_SYSTEM_HEADER (newdecl) || DECL_IN_SYSTEM_HEADER (olddecl))
1272 return true; /* Allow OLDDECL to continue in use. */
1274 error ("redefinition of typedef %q+D", newdecl);
1275 locate_old_decl (olddecl, error);
1276 return false;
1279 /* Function declarations can either be 'static' or 'extern' (no
1280 qualifier is equivalent to 'extern' - C99 6.2.2p5) and therefore
1281 can never conflict with each other on account of linkage
1282 (6.2.2p4). Multiple definitions are not allowed (6.9p3,5) but
1283 gnu89 mode permits two definitions if one is 'extern inline' and
1284 one is not. The non- extern-inline definition supersedes the
1285 extern-inline definition. */
1287 else if (TREE_CODE (newdecl) == FUNCTION_DECL)
1289 /* If you declare a built-in function name as static, or
1290 define the built-in with an old-style definition (so we
1291 can't validate the argument list) the built-in definition is
1292 overridden, but optionally warn this was a bad choice of name. */
1293 if (DECL_BUILT_IN (olddecl)
1294 && !C_DECL_DECLARED_BUILTIN (olddecl)
1295 && (!TREE_PUBLIC (newdecl)
1296 || (DECL_INITIAL (newdecl)
1297 && !TYPE_ARG_TYPES (TREE_TYPE (newdecl)))))
1299 warning (OPT_Wshadow, "declaration of %q+D shadows "
1300 "a built-in function", newdecl);
1301 /* Discard the old built-in function. */
1302 return false;
1305 if (DECL_INITIAL (newdecl))
1307 if (DECL_INITIAL (olddecl))
1309 /* If both decls are in the same TU and the new declaration
1310 isn't overriding an extern inline reject the new decl.
1311 In c99, no overriding is allowed in the same translation
1312 unit. */
1313 if ((!DECL_EXTERN_INLINE (olddecl)
1314 || DECL_EXTERN_INLINE (newdecl)
1315 || (!flag_gnu89_inline
1316 && (!DECL_DECLARED_INLINE_P (olddecl)
1317 || !lookup_attribute ("gnu_inline",
1318 DECL_ATTRIBUTES (olddecl)))
1319 && (!DECL_DECLARED_INLINE_P (newdecl)
1320 || !lookup_attribute ("gnu_inline",
1321 DECL_ATTRIBUTES (newdecl))))
1323 && same_translation_unit_p (newdecl, olddecl))
1325 error ("redefinition of %q+D", newdecl);
1326 locate_old_decl (olddecl, error);
1327 return false;
1331 /* If we have a prototype after an old-style function definition,
1332 the argument types must be checked specially. */
1333 else if (DECL_INITIAL (olddecl)
1334 && !TYPE_ARG_TYPES (oldtype) && TYPE_ARG_TYPES (newtype)
1335 && TYPE_ACTUAL_ARG_TYPES (oldtype)
1336 && !validate_proto_after_old_defn (newdecl, newtype, oldtype))
1338 locate_old_decl (olddecl, error);
1339 return false;
1341 /* A non-static declaration (even an "extern") followed by a
1342 static declaration is undefined behavior per C99 6.2.2p3-5,7.
1343 The same is true for a static forward declaration at block
1344 scope followed by a non-static declaration/definition at file
1345 scope. Static followed by non-static at the same scope is
1346 not undefined behavior, and is the most convenient way to get
1347 some effects (see e.g. what unwind-dw2-fde-glibc.c does to
1348 the definition of _Unwind_Find_FDE in unwind-dw2-fde.c), but
1349 we do diagnose it if -Wtraditional. */
1350 if (TREE_PUBLIC (olddecl) && !TREE_PUBLIC (newdecl))
1352 /* Two exceptions to the rule. If olddecl is an extern
1353 inline, or a predeclared function that isn't actually
1354 built in, newdecl silently overrides olddecl. The latter
1355 occur only in Objective C; see also above. (FIXME: Make
1356 Objective C use normal builtins.) */
1357 if (!DECL_IS_BUILTIN (olddecl)
1358 && !DECL_EXTERN_INLINE (olddecl))
1360 error ("static declaration of %q+D follows "
1361 "non-static declaration", newdecl);
1362 locate_old_decl (olddecl, error);
1364 return false;
1366 else if (TREE_PUBLIC (newdecl) && !TREE_PUBLIC (olddecl))
1368 if (DECL_CONTEXT (olddecl))
1370 error ("non-static declaration of %q+D follows "
1371 "static declaration", newdecl);
1372 locate_old_decl (olddecl, error);
1373 return false;
1375 else if (warn_traditional)
1377 warning (OPT_Wtraditional, "non-static declaration of %q+D "
1378 "follows static declaration", newdecl);
1379 warned = true;
1383 /* Make sure gnu_inline attribute is either not present, or
1384 present on all inline decls. */
1385 if (DECL_DECLARED_INLINE_P (olddecl)
1386 && DECL_DECLARED_INLINE_P (newdecl))
1388 bool newa = lookup_attribute ("gnu_inline",
1389 DECL_ATTRIBUTES (newdecl)) != NULL;
1390 bool olda = lookup_attribute ("gnu_inline",
1391 DECL_ATTRIBUTES (olddecl)) != NULL;
1392 if (newa != olda)
1394 error ("%<gnu_inline%> attribute present on %q+D",
1395 newa ? newdecl : olddecl);
1396 error ("%Jbut not here", newa ? olddecl : newdecl);
1400 else if (TREE_CODE (newdecl) == VAR_DECL)
1402 /* Only variables can be thread-local, and all declarations must
1403 agree on this property. */
1404 if (C_DECL_THREADPRIVATE_P (olddecl) && !DECL_THREAD_LOCAL_P (newdecl))
1406 /* Nothing to check. Since OLDDECL is marked threadprivate
1407 and NEWDECL does not have a thread-local attribute, we
1408 will merge the threadprivate attribute into NEWDECL. */
1411 else if (DECL_THREAD_LOCAL_P (newdecl) != DECL_THREAD_LOCAL_P (olddecl))
1413 if (DECL_THREAD_LOCAL_P (newdecl))
1414 error ("thread-local declaration of %q+D follows "
1415 "non-thread-local declaration", newdecl);
1416 else
1417 error ("non-thread-local declaration of %q+D follows "
1418 "thread-local declaration", newdecl);
1420 locate_old_decl (olddecl, error);
1421 return false;
1424 /* Multiple initialized definitions are not allowed (6.9p3,5). */
1425 if (DECL_INITIAL (newdecl) && DECL_INITIAL (olddecl))
1427 error ("redefinition of %q+D", newdecl);
1428 locate_old_decl (olddecl, error);
1429 return false;
1432 /* Objects declared at file scope: if the first declaration had
1433 external linkage (even if it was an external reference) the
1434 second must have external linkage as well, or the behavior is
1435 undefined. If the first declaration had internal linkage, then
1436 the second must too, or else be an external reference (in which
1437 case the composite declaration still has internal linkage).
1438 As for function declarations, we warn about the static-then-
1439 extern case only for -Wtraditional. See generally 6.2.2p3-5,7. */
1440 if (DECL_FILE_SCOPE_P (newdecl)
1441 && TREE_PUBLIC (newdecl) != TREE_PUBLIC (olddecl))
1443 if (DECL_EXTERNAL (newdecl))
1445 if (!DECL_FILE_SCOPE_P (olddecl))
1447 error ("extern declaration of %q+D follows "
1448 "declaration with no linkage", newdecl);
1449 locate_old_decl (olddecl, error);
1450 return false;
1452 else if (warn_traditional)
1454 warning (OPT_Wtraditional, "non-static declaration of %q+D "
1455 "follows static declaration", newdecl);
1456 warned = true;
1459 else
1461 if (TREE_PUBLIC (newdecl))
1462 error ("non-static declaration of %q+D follows "
1463 "static declaration", newdecl);
1464 else
1465 error ("static declaration of %q+D follows "
1466 "non-static declaration", newdecl);
1468 locate_old_decl (olddecl, error);
1469 return false;
1472 /* Two objects with the same name declared at the same block
1473 scope must both be external references (6.7p3). */
1474 else if (!DECL_FILE_SCOPE_P (newdecl))
1476 if (DECL_EXTERNAL (newdecl))
1478 /* Extern with initializer at block scope, which will
1479 already have received an error. */
1481 else if (DECL_EXTERNAL (olddecl))
1483 error ("declaration of %q+D with no linkage follows "
1484 "extern declaration", newdecl);
1485 locate_old_decl (olddecl, error);
1487 else
1489 error ("redeclaration of %q+D with no linkage", newdecl);
1490 locate_old_decl (olddecl, error);
1493 return false;
1497 /* warnings */
1498 /* All decls must agree on a visibility. */
1499 if (CODE_CONTAINS_STRUCT (TREE_CODE (newdecl), TS_DECL_WITH_VIS)
1500 && DECL_VISIBILITY_SPECIFIED (newdecl) && DECL_VISIBILITY_SPECIFIED (olddecl)
1501 && DECL_VISIBILITY (newdecl) != DECL_VISIBILITY (olddecl))
1503 warning (0, "redeclaration of %q+D with different visibility "
1504 "(old visibility preserved)", newdecl);
1505 warned = true;
1508 if (TREE_CODE (newdecl) == FUNCTION_DECL)
1510 /* Diagnose inline __attribute__ ((noinline)) which is silly. */
1511 if (DECL_DECLARED_INLINE_P (newdecl)
1512 && lookup_attribute ("noinline", DECL_ATTRIBUTES (olddecl)))
1514 warning (OPT_Wattributes, "inline declaration of %qD follows "
1515 "declaration with attribute noinline", newdecl);
1516 warned = true;
1518 else if (DECL_DECLARED_INLINE_P (olddecl)
1519 && lookup_attribute ("noinline", DECL_ATTRIBUTES (newdecl)))
1521 warning (OPT_Wattributes, "declaration of %q+D with attribute "
1522 "noinline follows inline declaration ", newdecl);
1523 warned = true;
1526 /* Inline declaration after use or definition.
1527 ??? Should we still warn about this now we have unit-at-a-time
1528 mode and can get it right?
1529 Definitely don't complain if the decls are in different translation
1530 units.
1531 C99 permits this, so don't warn in that case. (The function
1532 may not be inlined everywhere in function-at-a-time mode, but
1533 we still shouldn't warn.) */
1534 if (DECL_DECLARED_INLINE_P (newdecl) && !DECL_DECLARED_INLINE_P (olddecl)
1535 && same_translation_unit_p (olddecl, newdecl)
1536 && flag_gnu89_inline)
1538 if (TREE_USED (olddecl))
1540 warning (0, "%q+D declared inline after being called", olddecl);
1541 warned = true;
1543 else if (DECL_INITIAL (olddecl))
1545 warning (0, "%q+D declared inline after its definition", olddecl);
1546 warned = true;
1550 else /* PARM_DECL, VAR_DECL */
1552 /* Redeclaration of a parameter is a constraint violation (this is
1553 not explicitly stated, but follows from C99 6.7p3 [no more than
1554 one declaration of the same identifier with no linkage in the
1555 same scope, except type tags] and 6.2.2p6 [parameters have no
1556 linkage]). We must check for a forward parameter declaration,
1557 indicated by TREE_ASM_WRITTEN on the old declaration - this is
1558 an extension, the mandatory diagnostic for which is handled by
1559 mark_forward_parm_decls. */
1561 if (TREE_CODE (newdecl) == PARM_DECL
1562 && (!TREE_ASM_WRITTEN (olddecl) || TREE_ASM_WRITTEN (newdecl)))
1564 error ("redefinition of parameter %q+D", newdecl);
1565 locate_old_decl (olddecl, error);
1566 return false;
1570 /* Optional warning for completely redundant decls. */
1571 if (!warned && !pedwarned
1572 && warn_redundant_decls
1573 /* Don't warn about a function declaration followed by a
1574 definition. */
1575 && !(TREE_CODE (newdecl) == FUNCTION_DECL
1576 && DECL_INITIAL (newdecl) && !DECL_INITIAL (olddecl))
1577 /* Don't warn about redundant redeclarations of builtins. */
1578 && !(TREE_CODE (newdecl) == FUNCTION_DECL
1579 && !DECL_BUILT_IN (newdecl)
1580 && DECL_BUILT_IN (olddecl)
1581 && !C_DECL_DECLARED_BUILTIN (olddecl))
1582 /* Don't warn about an extern followed by a definition. */
1583 && !(DECL_EXTERNAL (olddecl) && !DECL_EXTERNAL (newdecl))
1584 /* Don't warn about forward parameter decls. */
1585 && !(TREE_CODE (newdecl) == PARM_DECL
1586 && TREE_ASM_WRITTEN (olddecl) && !TREE_ASM_WRITTEN (newdecl))
1587 /* Don't warn about a variable definition following a declaration. */
1588 && !(TREE_CODE (newdecl) == VAR_DECL
1589 && DECL_INITIAL (newdecl) && !DECL_INITIAL (olddecl)))
1591 warning (OPT_Wredundant_decls, "redundant redeclaration of %q+D",
1592 newdecl);
1593 warned = true;
1596 /* Report location of previous decl/defn in a consistent manner. */
1597 if (warned || pedwarned)
1598 locate_old_decl (olddecl, pedwarned ? pedwarn : warning0);
1600 #undef DECL_EXTERN_INLINE
1602 return retval;
1605 /* Subroutine of duplicate_decls. NEWDECL has been found to be
1606 consistent with OLDDECL, but carries new information. Merge the
1607 new information into OLDDECL. This function issues no
1608 diagnostics. */
1610 static void
1611 merge_decls (tree newdecl, tree olddecl, tree newtype, tree oldtype)
1613 bool new_is_definition = (TREE_CODE (newdecl) == FUNCTION_DECL
1614 && DECL_INITIAL (newdecl) != 0);
1615 bool new_is_prototype = (TREE_CODE (newdecl) == FUNCTION_DECL
1616 && TYPE_ARG_TYPES (TREE_TYPE (newdecl)) != 0);
1617 bool old_is_prototype = (TREE_CODE (olddecl) == FUNCTION_DECL
1618 && TYPE_ARG_TYPES (TREE_TYPE (olddecl)) != 0);
1619 bool extern_changed = false;
1621 /* For real parm decl following a forward decl, rechain the old decl
1622 in its new location and clear TREE_ASM_WRITTEN (it's not a
1623 forward decl anymore). */
1624 if (TREE_CODE (newdecl) == PARM_DECL
1625 && TREE_ASM_WRITTEN (olddecl) && !TREE_ASM_WRITTEN (newdecl))
1627 struct c_binding *b, **here;
1629 for (here = &current_scope->bindings; *here; here = &(*here)->prev)
1630 if ((*here)->decl == olddecl)
1631 goto found;
1632 gcc_unreachable ();
1634 found:
1635 b = *here;
1636 *here = b->prev;
1637 b->prev = current_scope->bindings;
1638 current_scope->bindings = b;
1640 TREE_ASM_WRITTEN (olddecl) = 0;
1643 DECL_ATTRIBUTES (newdecl)
1644 = targetm.merge_decl_attributes (olddecl, newdecl);
1646 /* Merge the data types specified in the two decls. */
1647 TREE_TYPE (newdecl)
1648 = TREE_TYPE (olddecl)
1649 = composite_type (newtype, oldtype);
1651 /* Lay the type out, unless already done. */
1652 if (!comptypes (oldtype, TREE_TYPE (newdecl)))
1654 if (TREE_TYPE (newdecl) != error_mark_node)
1655 layout_type (TREE_TYPE (newdecl));
1656 if (TREE_CODE (newdecl) != FUNCTION_DECL
1657 && TREE_CODE (newdecl) != TYPE_DECL
1658 && TREE_CODE (newdecl) != CONST_DECL)
1659 layout_decl (newdecl, 0);
1661 else
1663 /* Since the type is OLDDECL's, make OLDDECL's size go with. */
1664 DECL_SIZE (newdecl) = DECL_SIZE (olddecl);
1665 DECL_SIZE_UNIT (newdecl) = DECL_SIZE_UNIT (olddecl);
1666 DECL_MODE (newdecl) = DECL_MODE (olddecl);
1667 if (DECL_ALIGN (olddecl) > DECL_ALIGN (newdecl))
1669 DECL_ALIGN (newdecl) = DECL_ALIGN (olddecl);
1670 DECL_USER_ALIGN (newdecl) |= DECL_USER_ALIGN (olddecl);
1674 /* Keep the old rtl since we can safely use it. */
1675 if (HAS_RTL_P (olddecl))
1676 COPY_DECL_RTL (olddecl, newdecl);
1678 /* Merge the type qualifiers. */
1679 if (TREE_READONLY (newdecl))
1680 TREE_READONLY (olddecl) = 1;
1682 if (TREE_THIS_VOLATILE (newdecl))
1683 TREE_THIS_VOLATILE (olddecl) = 1;
1685 /* Merge deprecatedness. */
1686 if (TREE_DEPRECATED (newdecl))
1687 TREE_DEPRECATED (olddecl) = 1;
1689 /* Keep source location of definition rather than declaration and of
1690 prototype rather than non-prototype unless that prototype is
1691 built-in. */
1692 if ((DECL_INITIAL (newdecl) == 0 && DECL_INITIAL (olddecl) != 0)
1693 || (old_is_prototype && !new_is_prototype
1694 && !C_DECL_BUILTIN_PROTOTYPE (olddecl)))
1695 DECL_SOURCE_LOCATION (newdecl) = DECL_SOURCE_LOCATION (olddecl);
1697 /* Merge the initialization information. */
1698 if (DECL_INITIAL (newdecl) == 0)
1699 DECL_INITIAL (newdecl) = DECL_INITIAL (olddecl);
1701 /* Merge the threadprivate attribute. */
1702 if (TREE_CODE (olddecl) == VAR_DECL && C_DECL_THREADPRIVATE_P (olddecl))
1704 DECL_TLS_MODEL (newdecl) = DECL_TLS_MODEL (olddecl);
1705 C_DECL_THREADPRIVATE_P (newdecl) = 1;
1708 if (CODE_CONTAINS_STRUCT (TREE_CODE (olddecl), TS_DECL_WITH_VIS))
1710 /* Merge the unused-warning information. */
1711 if (DECL_IN_SYSTEM_HEADER (olddecl))
1712 DECL_IN_SYSTEM_HEADER (newdecl) = 1;
1713 else if (DECL_IN_SYSTEM_HEADER (newdecl))
1714 DECL_IN_SYSTEM_HEADER (olddecl) = 1;
1716 /* Merge the section attribute.
1717 We want to issue an error if the sections conflict but that
1718 must be done later in decl_attributes since we are called
1719 before attributes are assigned. */
1720 if (DECL_SECTION_NAME (newdecl) == NULL_TREE)
1721 DECL_SECTION_NAME (newdecl) = DECL_SECTION_NAME (olddecl);
1723 /* Copy the assembler name.
1724 Currently, it can only be defined in the prototype. */
1725 COPY_DECL_ASSEMBLER_NAME (olddecl, newdecl);
1727 /* Use visibility of whichever declaration had it specified */
1728 if (DECL_VISIBILITY_SPECIFIED (olddecl))
1730 DECL_VISIBILITY (newdecl) = DECL_VISIBILITY (olddecl);
1731 DECL_VISIBILITY_SPECIFIED (newdecl) = 1;
1734 if (TREE_CODE (newdecl) == FUNCTION_DECL)
1736 DECL_STATIC_CONSTRUCTOR(newdecl) |= DECL_STATIC_CONSTRUCTOR(olddecl);
1737 DECL_STATIC_DESTRUCTOR (newdecl) |= DECL_STATIC_DESTRUCTOR (olddecl);
1738 DECL_NO_LIMIT_STACK (newdecl) |= DECL_NO_LIMIT_STACK (olddecl);
1739 DECL_NO_INSTRUMENT_FUNCTION_ENTRY_EXIT (newdecl)
1740 |= DECL_NO_INSTRUMENT_FUNCTION_ENTRY_EXIT (olddecl);
1741 TREE_THIS_VOLATILE (newdecl) |= TREE_THIS_VOLATILE (olddecl);
1742 TREE_READONLY (newdecl) |= TREE_READONLY (olddecl);
1743 DECL_IS_MALLOC (newdecl) |= DECL_IS_MALLOC (olddecl);
1744 DECL_IS_OPERATOR_NEW (newdecl) |= DECL_IS_OPERATOR_NEW (olddecl);
1745 DECL_IS_PURE (newdecl) |= DECL_IS_PURE (olddecl);
1746 DECL_IS_NOVOPS (newdecl) |= DECL_IS_NOVOPS (olddecl);
1749 /* Merge the storage class information. */
1750 merge_weak (newdecl, olddecl);
1752 /* For functions, static overrides non-static. */
1753 if (TREE_CODE (newdecl) == FUNCTION_DECL)
1755 TREE_PUBLIC (newdecl) &= TREE_PUBLIC (olddecl);
1756 /* This is since we don't automatically
1757 copy the attributes of NEWDECL into OLDDECL. */
1758 TREE_PUBLIC (olddecl) = TREE_PUBLIC (newdecl);
1759 /* If this clears `static', clear it in the identifier too. */
1760 if (!TREE_PUBLIC (olddecl))
1761 TREE_PUBLIC (DECL_NAME (olddecl)) = 0;
1765 /* In c99, 'extern' declaration before (or after) 'inline' means this
1766 function is not DECL_EXTERNAL, unless 'gnu_inline' attribute
1767 is present. */
1768 if (TREE_CODE (newdecl) == FUNCTION_DECL
1769 && !flag_gnu89_inline
1770 && (DECL_DECLARED_INLINE_P (newdecl)
1771 || DECL_DECLARED_INLINE_P (olddecl))
1772 && (!DECL_DECLARED_INLINE_P (newdecl)
1773 || !DECL_DECLARED_INLINE_P (olddecl)
1774 || !DECL_EXTERNAL (olddecl))
1775 && DECL_EXTERNAL (newdecl)
1776 && !lookup_attribute ("gnu_inline", DECL_ATTRIBUTES (newdecl)))
1777 DECL_EXTERNAL (newdecl) = 0;
1779 if (DECL_EXTERNAL (newdecl))
1781 TREE_STATIC (newdecl) = TREE_STATIC (olddecl);
1782 DECL_EXTERNAL (newdecl) = DECL_EXTERNAL (olddecl);
1784 /* An extern decl does not override previous storage class. */
1785 TREE_PUBLIC (newdecl) = TREE_PUBLIC (olddecl);
1786 if (!DECL_EXTERNAL (newdecl))
1788 DECL_CONTEXT (newdecl) = DECL_CONTEXT (olddecl);
1789 DECL_COMMON (newdecl) = DECL_COMMON (olddecl);
1792 else
1794 TREE_STATIC (olddecl) = TREE_STATIC (newdecl);
1795 TREE_PUBLIC (olddecl) = TREE_PUBLIC (newdecl);
1798 if (TREE_CODE (newdecl) == FUNCTION_DECL)
1800 /* If we're redefining a function previously defined as extern
1801 inline, make sure we emit debug info for the inline before we
1802 throw it away, in case it was inlined into a function that
1803 hasn't been written out yet. */
1804 if (new_is_definition && DECL_INITIAL (olddecl))
1806 if (TREE_USED (olddecl)
1807 /* In unit-at-a-time mode we never inline re-defined extern
1808 inline functions. */
1809 && !flag_unit_at_a_time
1810 && cgraph_function_possibly_inlined_p (olddecl))
1811 (*debug_hooks->outlining_inline_function) (olddecl);
1813 /* The new defn must not be inline. */
1814 DECL_INLINE (newdecl) = 0;
1815 DECL_UNINLINABLE (newdecl) = 1;
1817 else
1819 /* If either decl says `inline', this fn is inline, unless
1820 its definition was passed already. */
1821 if (DECL_DECLARED_INLINE_P (newdecl)
1822 || DECL_DECLARED_INLINE_P (olddecl))
1823 DECL_DECLARED_INLINE_P (newdecl) = 1;
1825 DECL_UNINLINABLE (newdecl) = DECL_UNINLINABLE (olddecl)
1826 = (DECL_UNINLINABLE (newdecl) || DECL_UNINLINABLE (olddecl));
1828 DECL_DISREGARD_INLINE_LIMITS (newdecl)
1829 = DECL_DISREGARD_INLINE_LIMITS (olddecl)
1830 = (DECL_DISREGARD_INLINE_LIMITS (newdecl)
1831 || DECL_DISREGARD_INLINE_LIMITS (olddecl));
1834 if (DECL_BUILT_IN (olddecl))
1836 /* If redeclaring a builtin function, it stays built in.
1837 But it gets tagged as having been declared. */
1838 DECL_BUILT_IN_CLASS (newdecl) = DECL_BUILT_IN_CLASS (olddecl);
1839 DECL_FUNCTION_CODE (newdecl) = DECL_FUNCTION_CODE (olddecl);
1840 C_DECL_DECLARED_BUILTIN (newdecl) = 1;
1841 if (new_is_prototype)
1842 C_DECL_BUILTIN_PROTOTYPE (newdecl) = 0;
1843 else
1844 C_DECL_BUILTIN_PROTOTYPE (newdecl)
1845 = C_DECL_BUILTIN_PROTOTYPE (olddecl);
1848 /* Also preserve various other info from the definition. */
1849 if (!new_is_definition)
1851 DECL_RESULT (newdecl) = DECL_RESULT (olddecl);
1852 DECL_INITIAL (newdecl) = DECL_INITIAL (olddecl);
1853 DECL_STRUCT_FUNCTION (newdecl) = DECL_STRUCT_FUNCTION (olddecl);
1854 DECL_SAVED_TREE (newdecl) = DECL_SAVED_TREE (olddecl);
1855 DECL_ARGUMENTS (newdecl) = DECL_ARGUMENTS (olddecl);
1857 /* Set DECL_INLINE on the declaration if we've got a body
1858 from which to instantiate. */
1859 if (DECL_INLINE (olddecl) && !DECL_UNINLINABLE (newdecl))
1861 DECL_INLINE (newdecl) = 1;
1862 DECL_ABSTRACT_ORIGIN (newdecl)
1863 = DECL_ABSTRACT_ORIGIN (olddecl);
1866 else
1868 /* If a previous declaration said inline, mark the
1869 definition as inlinable. */
1870 if (DECL_DECLARED_INLINE_P (newdecl)
1871 && !DECL_UNINLINABLE (newdecl))
1872 DECL_INLINE (newdecl) = 1;
1876 extern_changed = DECL_EXTERNAL (olddecl) && !DECL_EXTERNAL (newdecl);
1878 /* Copy most of the decl-specific fields of NEWDECL into OLDDECL.
1879 But preserve OLDDECL's DECL_UID and DECL_CONTEXT. */
1881 unsigned olddecl_uid = DECL_UID (olddecl);
1882 tree olddecl_context = DECL_CONTEXT (olddecl);
1884 memcpy ((char *) olddecl + sizeof (struct tree_common),
1885 (char *) newdecl + sizeof (struct tree_common),
1886 sizeof (struct tree_decl_common) - sizeof (struct tree_common));
1887 switch (TREE_CODE (olddecl))
1889 case FIELD_DECL:
1890 case VAR_DECL:
1891 case PARM_DECL:
1892 case LABEL_DECL:
1893 case RESULT_DECL:
1894 case CONST_DECL:
1895 case TYPE_DECL:
1896 case FUNCTION_DECL:
1897 memcpy ((char *) olddecl + sizeof (struct tree_decl_common),
1898 (char *) newdecl + sizeof (struct tree_decl_common),
1899 tree_code_size (TREE_CODE (olddecl)) - sizeof (struct tree_decl_common));
1900 break;
1902 default:
1904 memcpy ((char *) olddecl + sizeof (struct tree_decl_common),
1905 (char *) newdecl + sizeof (struct tree_decl_common),
1906 sizeof (struct tree_decl_non_common) - sizeof (struct tree_decl_common));
1908 DECL_UID (olddecl) = olddecl_uid;
1909 DECL_CONTEXT (olddecl) = olddecl_context;
1912 /* If OLDDECL had its DECL_RTL instantiated, re-invoke make_decl_rtl
1913 so that encode_section_info has a chance to look at the new decl
1914 flags and attributes. */
1915 if (DECL_RTL_SET_P (olddecl)
1916 && (TREE_CODE (olddecl) == FUNCTION_DECL
1917 || (TREE_CODE (olddecl) == VAR_DECL
1918 && TREE_STATIC (olddecl))))
1919 make_decl_rtl (olddecl);
1921 /* If we changed a function from DECL_EXTERNAL to !DECL_EXTERNAL,
1922 and the definition is coming from the old version, cgraph needs
1923 to be called again. */
1924 if (extern_changed && !new_is_definition
1925 && TREE_CODE (olddecl) == FUNCTION_DECL && DECL_INITIAL (olddecl))
1926 cgraph_finalize_function (olddecl, false);
1929 /* Handle when a new declaration NEWDECL has the same name as an old
1930 one OLDDECL in the same binding contour. Prints an error message
1931 if appropriate.
1933 If safely possible, alter OLDDECL to look like NEWDECL, and return
1934 true. Otherwise, return false. */
1936 static bool
1937 duplicate_decls (tree newdecl, tree olddecl)
1939 tree newtype = NULL, oldtype = NULL;
1941 if (!diagnose_mismatched_decls (newdecl, olddecl, &newtype, &oldtype))
1943 /* Avoid `unused variable' and other warnings for OLDDECL. */
1944 TREE_NO_WARNING (olddecl) = 1;
1945 return false;
1948 merge_decls (newdecl, olddecl, newtype, oldtype);
1949 return true;
1953 /* Check whether decl-node NEW_DECL shadows an existing declaration. */
1954 static void
1955 warn_if_shadowing (tree new_decl)
1957 struct c_binding *b;
1959 /* Shadow warnings wanted? */
1960 if (!warn_shadow
1961 /* No shadow warnings for internally generated vars. */
1962 || DECL_IS_BUILTIN (new_decl)
1963 /* No shadow warnings for vars made for inlining. */
1964 || DECL_FROM_INLINE (new_decl))
1965 return;
1967 /* Is anything being shadowed? Invisible decls do not count. */
1968 for (b = I_SYMBOL_BINDING (DECL_NAME (new_decl)); b; b = b->shadowed)
1969 if (b->decl && b->decl != new_decl && !b->invisible)
1971 tree old_decl = b->decl;
1973 if (old_decl == error_mark_node)
1975 warning (OPT_Wshadow, "declaration of %q+D shadows previous "
1976 "non-variable", new_decl);
1977 break;
1979 else if (TREE_CODE (old_decl) == PARM_DECL)
1980 warning (OPT_Wshadow, "declaration of %q+D shadows a parameter",
1981 new_decl);
1982 else if (DECL_FILE_SCOPE_P (old_decl))
1983 warning (OPT_Wshadow, "declaration of %q+D shadows a global "
1984 "declaration", new_decl);
1985 else if (TREE_CODE (old_decl) == FUNCTION_DECL
1986 && DECL_BUILT_IN (old_decl))
1988 warning (OPT_Wshadow, "declaration of %q+D shadows "
1989 "a built-in function", new_decl);
1990 break;
1992 else
1993 warning (OPT_Wshadow, "declaration of %q+D shadows a previous local",
1994 new_decl);
1996 warning (OPT_Wshadow, "%Jshadowed declaration is here", old_decl);
1998 break;
2003 /* Subroutine of pushdecl.
2005 X is a TYPE_DECL for a typedef statement. Create a brand new
2006 ..._TYPE node (which will be just a variant of the existing
2007 ..._TYPE node with identical properties) and then install X
2008 as the TYPE_NAME of this brand new (duplicate) ..._TYPE node.
2010 The whole point here is to end up with a situation where each
2011 and every ..._TYPE node the compiler creates will be uniquely
2012 associated with AT MOST one node representing a typedef name.
2013 This way, even though the compiler substitutes corresponding
2014 ..._TYPE nodes for TYPE_DECL (i.e. "typedef name") nodes very
2015 early on, later parts of the compiler can always do the reverse
2016 translation and get back the corresponding typedef name. For
2017 example, given:
2019 typedef struct S MY_TYPE;
2020 MY_TYPE object;
2022 Later parts of the compiler might only know that `object' was of
2023 type `struct S' if it were not for code just below. With this
2024 code however, later parts of the compiler see something like:
2026 struct S' == struct S
2027 typedef struct S' MY_TYPE;
2028 struct S' object;
2030 And they can then deduce (from the node for type struct S') that
2031 the original object declaration was:
2033 MY_TYPE object;
2035 Being able to do this is important for proper support of protoize,
2036 and also for generating precise symbolic debugging information
2037 which takes full account of the programmer's (typedef) vocabulary.
2039 Obviously, we don't want to generate a duplicate ..._TYPE node if
2040 the TYPE_DECL node that we are now processing really represents a
2041 standard built-in type. */
2043 static void
2044 clone_underlying_type (tree x)
2046 if (DECL_IS_BUILTIN (x))
2048 if (TYPE_NAME (TREE_TYPE (x)) == 0)
2049 TYPE_NAME (TREE_TYPE (x)) = x;
2051 else if (TREE_TYPE (x) != error_mark_node
2052 && DECL_ORIGINAL_TYPE (x) == NULL_TREE)
2054 tree tt = TREE_TYPE (x);
2055 DECL_ORIGINAL_TYPE (x) = tt;
2056 tt = build_variant_type_copy (tt);
2057 TYPE_NAME (tt) = x;
2058 TREE_USED (tt) = TREE_USED (x);
2059 TREE_TYPE (x) = tt;
2063 /* Record a decl-node X as belonging to the current lexical scope.
2064 Check for errors (such as an incompatible declaration for the same
2065 name already seen in the same scope).
2067 Returns either X or an old decl for the same name.
2068 If an old decl is returned, it may have been smashed
2069 to agree with what X says. */
2071 tree
2072 pushdecl (tree x)
2074 tree name = DECL_NAME (x);
2075 struct c_scope *scope = current_scope;
2076 struct c_binding *b;
2077 bool nested = false;
2079 /* Must set DECL_CONTEXT for everything not at file scope or
2080 DECL_FILE_SCOPE_P won't work. Local externs don't count
2081 unless they have initializers (which generate code). */
2082 if (current_function_decl
2083 && ((TREE_CODE (x) != FUNCTION_DECL && TREE_CODE (x) != VAR_DECL)
2084 || DECL_INITIAL (x) || !DECL_EXTERNAL (x)))
2085 DECL_CONTEXT (x) = current_function_decl;
2087 /* If this is of variably modified type, prevent jumping into its
2088 scope. */
2089 if ((TREE_CODE (x) == VAR_DECL || TREE_CODE (x) == TYPE_DECL)
2090 && variably_modified_type_p (TREE_TYPE (x), NULL_TREE))
2091 c_begin_vm_scope (scope->depth);
2093 /* Anonymous decls are just inserted in the scope. */
2094 if (!name)
2096 bind (name, x, scope, /*invisible=*/false, /*nested=*/false);
2097 return x;
2100 /* First, see if there is another declaration with the same name in
2101 the current scope. If there is, duplicate_decls may do all the
2102 work for us. If duplicate_decls returns false, that indicates
2103 two incompatible decls in the same scope; we are to silently
2104 replace the old one (duplicate_decls has issued all appropriate
2105 diagnostics). In particular, we should not consider possible
2106 duplicates in the external scope, or shadowing. */
2107 b = I_SYMBOL_BINDING (name);
2108 if (b && B_IN_SCOPE (b, scope))
2110 struct c_binding *b_ext, *b_use;
2111 tree type = TREE_TYPE (x);
2112 tree visdecl = b->decl;
2113 tree vistype = TREE_TYPE (visdecl);
2114 if (TREE_CODE (TREE_TYPE (x)) == ARRAY_TYPE
2115 && COMPLETE_TYPE_P (TREE_TYPE (x)))
2116 b->inner_comp = false;
2117 b_use = b;
2118 b_ext = b;
2119 /* If this is an external linkage declaration, we should check
2120 for compatibility with the type in the external scope before
2121 setting the type at this scope based on the visible
2122 information only. */
2123 if (TREE_PUBLIC (x) && TREE_PUBLIC (visdecl))
2125 while (b_ext && !B_IN_EXTERNAL_SCOPE (b_ext))
2126 b_ext = b_ext->shadowed;
2127 if (b_ext)
2129 b_use = b_ext;
2130 if (b_use->type)
2131 TREE_TYPE (b_use->decl) = b_use->type;
2134 if (duplicate_decls (x, b_use->decl))
2136 if (b_use != b)
2138 /* Save the updated type in the external scope and
2139 restore the proper type for this scope. */
2140 tree thistype;
2141 if (comptypes (vistype, type))
2142 thistype = composite_type (vistype, type);
2143 else
2144 thistype = TREE_TYPE (b_use->decl);
2145 b_use->type = TREE_TYPE (b_use->decl);
2146 if (TREE_CODE (b_use->decl) == FUNCTION_DECL
2147 && DECL_BUILT_IN (b_use->decl))
2148 thistype
2149 = build_type_attribute_variant (thistype,
2150 TYPE_ATTRIBUTES
2151 (b_use->type));
2152 TREE_TYPE (b_use->decl) = thistype;
2154 return b_use->decl;
2156 else
2157 goto skip_external_and_shadow_checks;
2160 /* All declarations with external linkage, and all external
2161 references, go in the external scope, no matter what scope is
2162 current. However, the binding in that scope is ignored for
2163 purposes of normal name lookup. A separate binding structure is
2164 created in the requested scope; this governs the normal
2165 visibility of the symbol.
2167 The binding in the externals scope is used exclusively for
2168 detecting duplicate declarations of the same object, no matter
2169 what scope they are in; this is what we do here. (C99 6.2.7p2:
2170 All declarations that refer to the same object or function shall
2171 have compatible type; otherwise, the behavior is undefined.) */
2172 if (DECL_EXTERNAL (x) || scope == file_scope)
2174 tree type = TREE_TYPE (x);
2175 tree vistype = 0;
2176 tree visdecl = 0;
2177 bool type_saved = false;
2178 if (b && !B_IN_EXTERNAL_SCOPE (b)
2179 && (TREE_CODE (b->decl) == FUNCTION_DECL
2180 || TREE_CODE (b->decl) == VAR_DECL)
2181 && DECL_FILE_SCOPE_P (b->decl))
2183 visdecl = b->decl;
2184 vistype = TREE_TYPE (visdecl);
2186 if (scope != file_scope
2187 && !DECL_IN_SYSTEM_HEADER (x))
2188 warning (OPT_Wnested_externs, "nested extern declaration of %qD", x);
2190 while (b && !B_IN_EXTERNAL_SCOPE (b))
2192 /* If this decl might be modified, save its type. This is
2193 done here rather than when the decl is first bound
2194 because the type may change after first binding, through
2195 being completed or through attributes being added. If we
2196 encounter multiple such decls, only the first should have
2197 its type saved; the others will already have had their
2198 proper types saved and the types will not have changed as
2199 their scopes will not have been re-entered. */
2200 if (DECL_P (b->decl) && DECL_FILE_SCOPE_P (b->decl) && !type_saved)
2202 b->type = TREE_TYPE (b->decl);
2203 type_saved = true;
2205 if (B_IN_FILE_SCOPE (b)
2206 && TREE_CODE (b->decl) == VAR_DECL
2207 && TREE_STATIC (b->decl)
2208 && TREE_CODE (TREE_TYPE (b->decl)) == ARRAY_TYPE
2209 && !TYPE_DOMAIN (TREE_TYPE (b->decl))
2210 && TREE_CODE (type) == ARRAY_TYPE
2211 && TYPE_DOMAIN (type)
2212 && TYPE_MAX_VALUE (TYPE_DOMAIN (type))
2213 && !integer_zerop (TYPE_MAX_VALUE (TYPE_DOMAIN (type))))
2215 /* Array type completed in inner scope, which should be
2216 diagnosed if the completion does not have size 1 and
2217 it does not get completed in the file scope. */
2218 b->inner_comp = true;
2220 b = b->shadowed;
2223 /* If a matching external declaration has been found, set its
2224 type to the composite of all the types of that declaration.
2225 After the consistency checks, it will be reset to the
2226 composite of the visible types only. */
2227 if (b && (TREE_PUBLIC (x) || same_translation_unit_p (x, b->decl))
2228 && b->type)
2229 TREE_TYPE (b->decl) = b->type;
2231 /* The point of the same_translation_unit_p check here is,
2232 we want to detect a duplicate decl for a construct like
2233 foo() { extern bar(); } ... static bar(); but not if
2234 they are in different translation units. In any case,
2235 the static does not go in the externals scope. */
2236 if (b
2237 && (TREE_PUBLIC (x) || same_translation_unit_p (x, b->decl))
2238 && duplicate_decls (x, b->decl))
2240 tree thistype;
2241 if (vistype)
2243 if (comptypes (vistype, type))
2244 thistype = composite_type (vistype, type);
2245 else
2246 thistype = TREE_TYPE (b->decl);
2248 else
2249 thistype = type;
2250 b->type = TREE_TYPE (b->decl);
2251 if (TREE_CODE (b->decl) == FUNCTION_DECL && DECL_BUILT_IN (b->decl))
2252 thistype
2253 = build_type_attribute_variant (thistype,
2254 TYPE_ATTRIBUTES (b->type));
2255 TREE_TYPE (b->decl) = thistype;
2256 bind (name, b->decl, scope, /*invisible=*/false, /*nested=*/true);
2257 return b->decl;
2259 else if (TREE_PUBLIC (x))
2261 if (visdecl && !b && duplicate_decls (x, visdecl))
2263 /* An external declaration at block scope referring to a
2264 visible entity with internal linkage. The composite
2265 type will already be correct for this scope, so we
2266 just need to fall through to make the declaration in
2267 this scope. */
2268 nested = true;
2269 x = visdecl;
2271 else
2273 bind (name, x, external_scope, /*invisible=*/true,
2274 /*nested=*/false);
2275 nested = true;
2280 if (TREE_CODE (x) != PARM_DECL)
2281 warn_if_shadowing (x);
2283 skip_external_and_shadow_checks:
2284 if (TREE_CODE (x) == TYPE_DECL)
2285 clone_underlying_type (x);
2287 bind (name, x, scope, /*invisible=*/false, nested);
2289 /* If x's type is incomplete because it's based on a
2290 structure or union which has not yet been fully declared,
2291 attach it to that structure or union type, so we can go
2292 back and complete the variable declaration later, if the
2293 structure or union gets fully declared.
2295 If the input is erroneous, we can have error_mark in the type
2296 slot (e.g. "f(void a, ...)") - that doesn't count as an
2297 incomplete type. */
2298 if (TREE_TYPE (x) != error_mark_node
2299 && !COMPLETE_TYPE_P (TREE_TYPE (x)))
2301 tree element = TREE_TYPE (x);
2303 while (TREE_CODE (element) == ARRAY_TYPE)
2304 element = TREE_TYPE (element);
2305 element = TYPE_MAIN_VARIANT (element);
2307 if ((TREE_CODE (element) == RECORD_TYPE
2308 || TREE_CODE (element) == UNION_TYPE)
2309 && (TREE_CODE (x) != TYPE_DECL
2310 || TREE_CODE (TREE_TYPE (x)) == ARRAY_TYPE)
2311 && !COMPLETE_TYPE_P (element))
2312 C_TYPE_INCOMPLETE_VARS (element)
2313 = tree_cons (NULL_TREE, x, C_TYPE_INCOMPLETE_VARS (element));
2315 return x;
2318 /* Record X as belonging to file scope.
2319 This is used only internally by the Objective-C front end,
2320 and is limited to its needs. duplicate_decls is not called;
2321 if there is any preexisting decl for this identifier, it is an ICE. */
2323 tree
2324 pushdecl_top_level (tree x)
2326 tree name;
2327 bool nested = false;
2328 gcc_assert (TREE_CODE (x) == VAR_DECL || TREE_CODE (x) == CONST_DECL);
2330 name = DECL_NAME (x);
2332 gcc_assert (TREE_CODE (x) == CONST_DECL || !I_SYMBOL_BINDING (name));
2334 if (TREE_PUBLIC (x))
2336 bind (name, x, external_scope, /*invisible=*/true, /*nested=*/false);
2337 nested = true;
2339 if (file_scope)
2340 bind (name, x, file_scope, /*invisible=*/false, nested);
2342 return x;
2345 static void
2346 implicit_decl_warning (tree id, tree olddecl)
2348 if (warn_implicit_function_declaration)
2350 if (flag_isoc99)
2351 pedwarn (G_("implicit declaration of function %qE"), id);
2352 else
2353 warning (OPT_Wimplicit_function_declaration,
2354 G_("implicit declaration of function %qE"), id);
2355 if (olddecl)
2356 locate_old_decl (olddecl, inform);
2360 /* Generate an implicit declaration for identifier FUNCTIONID as a
2361 function of type int (). */
2363 tree
2364 implicitly_declare (tree functionid)
2366 struct c_binding *b;
2367 tree decl = 0;
2368 tree asmspec_tree;
2370 for (b = I_SYMBOL_BINDING (functionid); b; b = b->shadowed)
2372 if (B_IN_SCOPE (b, external_scope))
2374 decl = b->decl;
2375 break;
2379 if (decl)
2381 if (decl == error_mark_node)
2382 return decl;
2384 /* FIXME: Objective-C has weird not-really-builtin functions
2385 which are supposed to be visible automatically. They wind up
2386 in the external scope because they're pushed before the file
2387 scope gets created. Catch this here and rebind them into the
2388 file scope. */
2389 if (!DECL_BUILT_IN (decl) && DECL_IS_BUILTIN (decl))
2391 bind (functionid, decl, file_scope,
2392 /*invisible=*/false, /*nested=*/true);
2393 return decl;
2395 else
2397 tree newtype = default_function_type;
2398 if (b->type)
2399 TREE_TYPE (decl) = b->type;
2400 /* Implicit declaration of a function already declared
2401 (somehow) in a different scope, or as a built-in.
2402 If this is the first time this has happened, warn;
2403 then recycle the old declaration but with the new type. */
2404 if (!C_DECL_IMPLICIT (decl))
2406 implicit_decl_warning (functionid, decl);
2407 C_DECL_IMPLICIT (decl) = 1;
2409 if (DECL_BUILT_IN (decl))
2411 newtype = build_type_attribute_variant (newtype,
2412 TYPE_ATTRIBUTES
2413 (TREE_TYPE (decl)));
2414 if (!comptypes (newtype, TREE_TYPE (decl)))
2416 warning (0, "incompatible implicit declaration of built-in"
2417 " function %qD", decl);
2418 newtype = TREE_TYPE (decl);
2421 else
2423 if (!comptypes (newtype, TREE_TYPE (decl)))
2425 error ("incompatible implicit declaration of function %qD",
2426 decl);
2427 locate_old_decl (decl, error);
2430 b->type = TREE_TYPE (decl);
2431 TREE_TYPE (decl) = newtype;
2432 bind (functionid, decl, current_scope,
2433 /*invisible=*/false, /*nested=*/true);
2434 return decl;
2438 /* Not seen before. */
2439 decl = build_decl (FUNCTION_DECL, functionid, default_function_type);
2440 DECL_EXTERNAL (decl) = 1;
2441 TREE_PUBLIC (decl) = 1;
2442 C_DECL_IMPLICIT (decl) = 1;
2443 implicit_decl_warning (functionid, 0);
2444 asmspec_tree = maybe_apply_renaming_pragma (decl, /*asmname=*/NULL);
2445 if (asmspec_tree)
2446 set_user_assembler_name (decl, TREE_STRING_POINTER (asmspec_tree));
2448 /* C89 says implicit declarations are in the innermost block.
2449 So we record the decl in the standard fashion. */
2450 decl = pushdecl (decl);
2452 /* No need to call objc_check_decl here - it's a function type. */
2453 rest_of_decl_compilation (decl, 0, 0);
2455 /* Write a record describing this implicit function declaration
2456 to the prototypes file (if requested). */
2457 gen_aux_info_record (decl, 0, 1, 0);
2459 /* Possibly apply some default attributes to this implicit declaration. */
2460 decl_attributes (&decl, NULL_TREE, 0);
2462 return decl;
2465 /* Issue an error message for a reference to an undeclared variable
2466 ID, including a reference to a builtin outside of function-call
2467 context. Establish a binding of the identifier to error_mark_node
2468 in an appropriate scope, which will suppress further errors for the
2469 same identifier. The error message should be given location LOC. */
2470 void
2471 undeclared_variable (tree id, location_t loc)
2473 static bool already = false;
2474 struct c_scope *scope;
2476 if (current_function_decl == 0)
2478 error ("%H%qE undeclared here (not in a function)", &loc, id);
2479 scope = current_scope;
2481 else
2483 error ("%H%qE undeclared (first use in this function)", &loc, id);
2485 if (!already)
2487 error ("%H(Each undeclared identifier is reported only once", &loc);
2488 error ("%Hfor each function it appears in.)", &loc);
2489 already = true;
2492 /* If we are parsing old-style parameter decls, current_function_decl
2493 will be nonnull but current_function_scope will be null. */
2494 scope = current_function_scope ? current_function_scope : current_scope;
2496 bind (id, error_mark_node, scope, /*invisible=*/false, /*nested=*/false);
2499 /* Subroutine of lookup_label, declare_label, define_label: construct a
2500 LABEL_DECL with all the proper frills. */
2502 static tree
2503 make_label (tree name, location_t location)
2505 tree label = build_decl (LABEL_DECL, name, void_type_node);
2507 DECL_CONTEXT (label) = current_function_decl;
2508 DECL_MODE (label) = VOIDmode;
2509 DECL_SOURCE_LOCATION (label) = location;
2511 return label;
2514 /* Get the LABEL_DECL corresponding to identifier NAME as a label.
2515 Create one if none exists so far for the current function.
2516 This is called when a label is used in a goto expression or
2517 has its address taken. */
2519 tree
2520 lookup_label (tree name)
2522 tree label;
2524 if (current_function_decl == 0)
2526 error ("label %qE referenced outside of any function", name);
2527 return 0;
2530 /* Use a label already defined or ref'd with this name, but not if
2531 it is inherited from a containing function and wasn't declared
2532 using __label__. */
2533 label = I_LABEL_DECL (name);
2534 if (label && (DECL_CONTEXT (label) == current_function_decl
2535 || C_DECLARED_LABEL_FLAG (label)))
2537 /* If the label has only been declared, update its apparent
2538 location to point here, for better diagnostics if it
2539 turns out not to have been defined. */
2540 if (!TREE_USED (label))
2541 DECL_SOURCE_LOCATION (label) = input_location;
2542 return label;
2545 /* No label binding for that identifier; make one. */
2546 label = make_label (name, input_location);
2548 /* Ordinary labels go in the current function scope. */
2549 bind (name, label, current_function_scope,
2550 /*invisible=*/false, /*nested=*/false);
2551 return label;
2554 /* Make a label named NAME in the current function, shadowing silently
2555 any that may be inherited from containing functions or containing
2556 scopes. This is called for __label__ declarations. */
2558 tree
2559 declare_label (tree name)
2561 struct c_binding *b = I_LABEL_BINDING (name);
2562 tree label;
2564 /* Check to make sure that the label hasn't already been declared
2565 at this scope */
2566 if (b && B_IN_CURRENT_SCOPE (b))
2568 error ("duplicate label declaration %qE", name);
2569 locate_old_decl (b->decl, error);
2571 /* Just use the previous declaration. */
2572 return b->decl;
2575 label = make_label (name, input_location);
2576 C_DECLARED_LABEL_FLAG (label) = 1;
2578 /* Declared labels go in the current scope. */
2579 bind (name, label, current_scope,
2580 /*invisible=*/false, /*nested=*/false);
2581 return label;
2584 /* Define a label, specifying the location in the source file.
2585 Return the LABEL_DECL node for the label, if the definition is valid.
2586 Otherwise return 0. */
2588 tree
2589 define_label (location_t location, tree name)
2591 /* Find any preexisting label with this name. It is an error
2592 if that label has already been defined in this function, or
2593 if there is a containing function with a declared label with
2594 the same name. */
2595 tree label = I_LABEL_DECL (name);
2596 struct c_label_list *nlist_se, *nlist_vm;
2598 if (label
2599 && ((DECL_CONTEXT (label) == current_function_decl
2600 && DECL_INITIAL (label) != 0)
2601 || (DECL_CONTEXT (label) != current_function_decl
2602 && C_DECLARED_LABEL_FLAG (label))))
2604 error ("%Hduplicate label %qD", &location, label);
2605 locate_old_decl (label, error);
2606 return 0;
2608 else if (label && DECL_CONTEXT (label) == current_function_decl)
2610 /* The label has been used or declared already in this function,
2611 but not defined. Update its location to point to this
2612 definition. */
2613 if (C_DECL_UNDEFINABLE_STMT_EXPR (label))
2614 error ("%Jjump into statement expression", label);
2615 if (C_DECL_UNDEFINABLE_VM (label))
2616 error ("%Jjump into scope of identifier with variably modified type",
2617 label);
2618 DECL_SOURCE_LOCATION (label) = location;
2620 else
2622 /* No label binding for that identifier; make one. */
2623 label = make_label (name, location);
2625 /* Ordinary labels go in the current function scope. */
2626 bind (name, label, current_function_scope,
2627 /*invisible=*/false, /*nested=*/false);
2630 if (!in_system_header && lookup_name (name))
2631 warning (OPT_Wtraditional, "%Htraditional C lacks a separate namespace "
2632 "for labels, identifier %qE conflicts", &location, name);
2634 nlist_se = XOBNEW (&parser_obstack, struct c_label_list);
2635 nlist_se->next = label_context_stack_se->labels_def;
2636 nlist_se->label = label;
2637 label_context_stack_se->labels_def = nlist_se;
2639 nlist_vm = XOBNEW (&parser_obstack, struct c_label_list);
2640 nlist_vm->next = label_context_stack_vm->labels_def;
2641 nlist_vm->label = label;
2642 label_context_stack_vm->labels_def = nlist_vm;
2644 /* Mark label as having been defined. */
2645 DECL_INITIAL (label) = error_mark_node;
2646 return label;
2649 /* Given NAME, an IDENTIFIER_NODE,
2650 return the structure (or union or enum) definition for that name.
2651 If THISLEVEL_ONLY is nonzero, searches only the current_scope.
2652 CODE says which kind of type the caller wants;
2653 it is RECORD_TYPE or UNION_TYPE or ENUMERAL_TYPE.
2654 If the wrong kind of type is found, an error is reported. */
2656 static tree
2657 lookup_tag (enum tree_code code, tree name, int thislevel_only)
2659 struct c_binding *b = I_TAG_BINDING (name);
2660 int thislevel = 0;
2662 if (!b || !b->decl)
2663 return 0;
2665 /* We only care about whether it's in this level if
2666 thislevel_only was set or it might be a type clash. */
2667 if (thislevel_only || TREE_CODE (b->decl) != code)
2669 /* For our purposes, a tag in the external scope is the same as
2670 a tag in the file scope. (Primarily relevant to Objective-C
2671 and its builtin structure tags, which get pushed before the
2672 file scope is created.) */
2673 if (B_IN_CURRENT_SCOPE (b)
2674 || (current_scope == file_scope && B_IN_EXTERNAL_SCOPE (b)))
2675 thislevel = 1;
2678 if (thislevel_only && !thislevel)
2679 return 0;
2681 if (TREE_CODE (b->decl) != code)
2683 /* Definition isn't the kind we were looking for. */
2684 pending_invalid_xref = name;
2685 pending_invalid_xref_location = input_location;
2687 /* If in the same binding level as a declaration as a tag
2688 of a different type, this must not be allowed to
2689 shadow that tag, so give the error immediately.
2690 (For example, "struct foo; union foo;" is invalid.) */
2691 if (thislevel)
2692 pending_xref_error ();
2694 return b->decl;
2697 /* Print an error message now
2698 for a recent invalid struct, union or enum cross reference.
2699 We don't print them immediately because they are not invalid
2700 when used in the `struct foo;' construct for shadowing. */
2702 void
2703 pending_xref_error (void)
2705 if (pending_invalid_xref != 0)
2706 error ("%H%qE defined as wrong kind of tag",
2707 &pending_invalid_xref_location, pending_invalid_xref);
2708 pending_invalid_xref = 0;
2712 /* Look up NAME in the current scope and its superiors
2713 in the namespace of variables, functions and typedefs.
2714 Return a ..._DECL node of some kind representing its definition,
2715 or return 0 if it is undefined. */
2717 tree
2718 lookup_name (tree name)
2720 struct c_binding *b = I_SYMBOL_BINDING (name);
2721 if (b && !b->invisible)
2722 return b->decl;
2723 return 0;
2726 /* Similar to `lookup_name' but look only at the indicated scope. */
2728 static tree
2729 lookup_name_in_scope (tree name, struct c_scope *scope)
2731 struct c_binding *b;
2733 for (b = I_SYMBOL_BINDING (name); b; b = b->shadowed)
2734 if (B_IN_SCOPE (b, scope))
2735 return b->decl;
2736 return 0;
2739 /* Create the predefined scalar types of C,
2740 and some nodes representing standard constants (0, 1, (void *) 0).
2741 Initialize the global scope.
2742 Make definitions for built-in primitive functions. */
2744 void
2745 c_init_decl_processing (void)
2747 location_t save_loc = input_location;
2749 /* Initialize reserved words for parser. */
2750 c_parse_init ();
2752 current_function_decl = 0;
2754 gcc_obstack_init (&parser_obstack);
2756 /* Make the externals scope. */
2757 push_scope ();
2758 external_scope = current_scope;
2760 /* Declarations from c_common_nodes_and_builtins must not be associated
2761 with this input file, lest we get differences between using and not
2762 using preprocessed headers. */
2763 input_location = BUILTINS_LOCATION;
2765 build_common_tree_nodes (flag_signed_char, false);
2767 c_common_nodes_and_builtins ();
2769 /* In C, comparisons and TRUTH_* expressions have type int. */
2770 truthvalue_type_node = integer_type_node;
2771 truthvalue_true_node = integer_one_node;
2772 truthvalue_false_node = integer_zero_node;
2774 /* Even in C99, which has a real boolean type. */
2775 pushdecl (build_decl (TYPE_DECL, get_identifier ("_Bool"),
2776 boolean_type_node));
2778 input_location = save_loc;
2780 pedantic_lvalues = true;
2782 make_fname_decl = c_make_fname_decl;
2783 start_fname_decls ();
2786 /* Create the VAR_DECL for __FUNCTION__ etc. ID is the name to give the
2787 decl, NAME is the initialization string and TYPE_DEP indicates whether
2788 NAME depended on the type of the function. As we don't yet implement
2789 delayed emission of static data, we mark the decl as emitted
2790 so it is not placed in the output. Anything using it must therefore pull
2791 out the STRING_CST initializer directly. FIXME. */
2793 static tree
2794 c_make_fname_decl (tree id, int type_dep)
2796 const char *name = fname_as_string (type_dep);
2797 tree decl, type, init;
2798 size_t length = strlen (name);
2800 type = build_array_type (char_type_node,
2801 build_index_type (size_int (length)));
2802 type = c_build_qualified_type (type, TYPE_QUAL_CONST);
2804 decl = build_decl (VAR_DECL, id, type);
2806 TREE_STATIC (decl) = 1;
2807 TREE_READONLY (decl) = 1;
2808 DECL_ARTIFICIAL (decl) = 1;
2810 init = build_string (length + 1, name);
2811 free (CONST_CAST (char *, name));
2812 TREE_TYPE (init) = type;
2813 DECL_INITIAL (decl) = init;
2815 TREE_USED (decl) = 1;
2817 if (current_function_decl
2818 /* For invalid programs like this:
2820 void foo()
2821 const char* p = __FUNCTION__;
2823 the __FUNCTION__ is believed to appear in K&R style function
2824 parameter declarator. In that case we still don't have
2825 function_scope. */
2826 && (!errorcount || current_function_scope))
2828 DECL_CONTEXT (decl) = current_function_decl;
2829 bind (id, decl, current_function_scope,
2830 /*invisible=*/false, /*nested=*/false);
2833 finish_decl (decl, init, NULL_TREE);
2835 return decl;
2838 tree
2839 c_builtin_function (tree decl)
2841 tree type = TREE_TYPE (decl);
2842 tree id = DECL_NAME (decl);
2844 const char *name = IDENTIFIER_POINTER (id);
2845 C_DECL_BUILTIN_PROTOTYPE (decl) = (TYPE_ARG_TYPES (type) != 0);
2847 /* Should never be called on a symbol with a preexisting meaning. */
2848 gcc_assert (!I_SYMBOL_BINDING (id));
2850 bind (id, decl, external_scope, /*invisible=*/true, /*nested=*/false);
2852 /* Builtins in the implementation namespace are made visible without
2853 needing to be explicitly declared. See push_file_scope. */
2854 if (name[0] == '_' && (name[1] == '_' || ISUPPER (name[1])))
2856 TREE_CHAIN (decl) = visible_builtins;
2857 visible_builtins = decl;
2860 return decl;
2863 /* Called when a declaration is seen that contains no names to declare.
2864 If its type is a reference to a structure, union or enum inherited
2865 from a containing scope, shadow that tag name for the current scope
2866 with a forward reference.
2867 If its type defines a new named structure or union
2868 or defines an enum, it is valid but we need not do anything here.
2869 Otherwise, it is an error. */
2871 void
2872 shadow_tag (const struct c_declspecs *declspecs)
2874 shadow_tag_warned (declspecs, 0);
2877 /* WARNED is 1 if we have done a pedwarn, 2 if we have done a warning,
2878 but no pedwarn. */
2879 void
2880 shadow_tag_warned (const struct c_declspecs *declspecs, int warned)
2882 bool found_tag = false;
2884 if (declspecs->type && !declspecs->default_int_p && !declspecs->typedef_p)
2886 tree value = declspecs->type;
2887 enum tree_code code = TREE_CODE (value);
2889 if (code == RECORD_TYPE || code == UNION_TYPE || code == ENUMERAL_TYPE)
2890 /* Used to test also that TYPE_SIZE (value) != 0.
2891 That caused warning for `struct foo;' at top level in the file. */
2893 tree name = TYPE_NAME (value);
2894 tree t;
2896 found_tag = true;
2898 if (name == 0)
2900 if (warned != 1 && code != ENUMERAL_TYPE)
2901 /* Empty unnamed enum OK */
2903 pedwarn ("unnamed struct/union that defines no instances");
2904 warned = 1;
2907 else if (!declspecs->tag_defined_p
2908 && declspecs->storage_class != csc_none)
2910 if (warned != 1)
2911 pedwarn ("empty declaration with storage class specifier "
2912 "does not redeclare tag");
2913 warned = 1;
2914 pending_xref_error ();
2916 else if (!declspecs->tag_defined_p
2917 && (declspecs->const_p
2918 || declspecs->volatile_p
2919 || declspecs->restrict_p))
2921 if (warned != 1)
2922 pedwarn ("empty declaration with type qualifier "
2923 "does not redeclare tag");
2924 warned = 1;
2925 pending_xref_error ();
2927 else
2929 pending_invalid_xref = 0;
2930 t = lookup_tag (code, name, 1);
2932 if (t == 0)
2934 t = make_node (code);
2935 pushtag (name, t);
2939 else
2941 if (warned != 1 && !in_system_header)
2943 pedwarn ("useless type name in empty declaration");
2944 warned = 1;
2948 else if (warned != 1 && !in_system_header && declspecs->typedef_p)
2950 pedwarn ("useless type name in empty declaration");
2951 warned = 1;
2954 pending_invalid_xref = 0;
2956 if (declspecs->inline_p)
2958 error ("%<inline%> in empty declaration");
2959 warned = 1;
2962 if (current_scope == file_scope && declspecs->storage_class == csc_auto)
2964 error ("%<auto%> in file-scope empty declaration");
2965 warned = 1;
2968 if (current_scope == file_scope && declspecs->storage_class == csc_register)
2970 error ("%<register%> in file-scope empty declaration");
2971 warned = 1;
2974 if (!warned && !in_system_header && declspecs->storage_class != csc_none)
2976 warning (0, "useless storage class specifier in empty declaration");
2977 warned = 2;
2980 if (!warned && !in_system_header && declspecs->thread_p)
2982 warning (0, "useless %<__thread%> in empty declaration");
2983 warned = 2;
2986 if (!warned && !in_system_header && (declspecs->const_p
2987 || declspecs->volatile_p
2988 || declspecs->restrict_p))
2990 warning (0, "useless type qualifier in empty declaration");
2991 warned = 2;
2994 if (warned != 1)
2996 if (!found_tag)
2997 pedwarn ("empty declaration");
3002 /* Return the qualifiers from SPECS as a bitwise OR of TYPE_QUAL_*
3003 bits. SPECS represents declaration specifiers that the grammar
3004 only permits to contain type qualifiers and attributes. */
3007 quals_from_declspecs (const struct c_declspecs *specs)
3009 int quals = ((specs->const_p ? TYPE_QUAL_CONST : 0)
3010 | (specs->volatile_p ? TYPE_QUAL_VOLATILE : 0)
3011 | (specs->restrict_p ? TYPE_QUAL_RESTRICT : 0));
3012 gcc_assert (!specs->type
3013 && !specs->decl_attr
3014 && specs->typespec_word == cts_none
3015 && specs->storage_class == csc_none
3016 && !specs->typedef_p
3017 && !specs->explicit_signed_p
3018 && !specs->deprecated_p
3019 && !specs->long_p
3020 && !specs->long_long_p
3021 && !specs->short_p
3022 && !specs->signed_p
3023 && !specs->unsigned_p
3024 && !specs->complex_p
3025 && !specs->inline_p
3026 && !specs->thread_p);
3027 return quals;
3030 /* Construct an array declarator. EXPR is the expression inside [],
3031 or NULL_TREE. QUALS are the type qualifiers inside the [] (to be
3032 applied to the pointer to which a parameter array is converted).
3033 STATIC_P is true if "static" is inside the [], false otherwise.
3034 VLA_UNSPEC_P is true if the array is [*], a VLA of unspecified
3035 length which is nevertheless a complete type, false otherwise. The
3036 field for the contained declarator is left to be filled in by
3037 set_array_declarator_inner. */
3039 struct c_declarator *
3040 build_array_declarator (tree expr, struct c_declspecs *quals, bool static_p,
3041 bool vla_unspec_p)
3043 struct c_declarator *declarator = XOBNEW (&parser_obstack,
3044 struct c_declarator);
3045 declarator->kind = cdk_array;
3046 declarator->declarator = 0;
3047 declarator->u.array.dimen = expr;
3048 if (quals)
3050 declarator->u.array.attrs = quals->attrs;
3051 declarator->u.array.quals = quals_from_declspecs (quals);
3053 else
3055 declarator->u.array.attrs = NULL_TREE;
3056 declarator->u.array.quals = 0;
3058 declarator->u.array.static_p = static_p;
3059 declarator->u.array.vla_unspec_p = vla_unspec_p;
3060 if (pedantic && !flag_isoc99)
3062 if (static_p || quals != NULL)
3063 pedwarn ("ISO C90 does not support %<static%> or type "
3064 "qualifiers in parameter array declarators");
3065 if (vla_unspec_p)
3066 pedwarn ("ISO C90 does not support %<[*]%> array declarators");
3068 if (vla_unspec_p)
3070 if (!current_scope->parm_flag)
3072 /* C99 6.7.5.2p4 */
3073 error ("%<[*]%> not allowed in other than function prototype scope");
3074 declarator->u.array.vla_unspec_p = false;
3075 return NULL;
3077 current_scope->had_vla_unspec = true;
3079 return declarator;
3082 /* Set the contained declarator of an array declarator. DECL is the
3083 declarator, as constructed by build_array_declarator; INNER is what
3084 appears on the left of the []. */
3086 struct c_declarator *
3087 set_array_declarator_inner (struct c_declarator *decl,
3088 struct c_declarator *inner)
3090 decl->declarator = inner;
3091 return decl;
3094 /* INIT is a constructor that forms DECL's initializer. If the final
3095 element initializes a flexible array field, add the size of that
3096 initializer to DECL's size. */
3098 static void
3099 add_flexible_array_elts_to_size (tree decl, tree init)
3101 tree elt, type;
3103 if (VEC_empty (constructor_elt, CONSTRUCTOR_ELTS (init)))
3104 return;
3106 elt = VEC_last (constructor_elt, CONSTRUCTOR_ELTS (init))->value;
3107 type = TREE_TYPE (elt);
3108 if (TREE_CODE (type) == ARRAY_TYPE
3109 && TYPE_SIZE (type) == NULL_TREE
3110 && TYPE_DOMAIN (type) != NULL_TREE
3111 && TYPE_MAX_VALUE (TYPE_DOMAIN (type)) == NULL_TREE)
3113 complete_array_type (&type, elt, false);
3114 DECL_SIZE (decl)
3115 = size_binop (PLUS_EXPR, DECL_SIZE (decl), TYPE_SIZE (type));
3116 DECL_SIZE_UNIT (decl)
3117 = size_binop (PLUS_EXPR, DECL_SIZE_UNIT (decl), TYPE_SIZE_UNIT (type));
3121 /* Decode a "typename", such as "int **", returning a ..._TYPE node. */
3123 tree
3124 groktypename (struct c_type_name *type_name)
3126 tree type;
3127 tree attrs = type_name->specs->attrs;
3129 type_name->specs->attrs = NULL_TREE;
3131 type = grokdeclarator (type_name->declarator, type_name->specs, TYPENAME,
3132 false, NULL, &attrs, DEPRECATED_NORMAL);
3134 /* Apply attributes. */
3135 decl_attributes (&type, attrs, 0);
3137 return type;
3140 /* Decode a declarator in an ordinary declaration or data definition.
3141 This is called as soon as the type information and variable name
3142 have been parsed, before parsing the initializer if any.
3143 Here we create the ..._DECL node, fill in its type,
3144 and put it on the list of decls for the current context.
3145 The ..._DECL node is returned as the value.
3147 Exception: for arrays where the length is not specified,
3148 the type is left null, to be filled in by `finish_decl'.
3150 Function definitions do not come here; they go to start_function
3151 instead. However, external and forward declarations of functions
3152 do go through here. Structure field declarations are done by
3153 grokfield and not through here. */
3155 tree
3156 start_decl (struct c_declarator *declarator, struct c_declspecs *declspecs,
3157 bool initialized, tree attributes)
3159 tree decl;
3160 tree tem;
3161 enum deprecated_states deprecated_state = DEPRECATED_NORMAL;
3163 /* An object declared as __attribute__((deprecated)) suppresses
3164 warnings of uses of other deprecated items. */
3165 if (lookup_attribute ("deprecated", attributes))
3166 deprecated_state = DEPRECATED_SUPPRESS;
3168 decl = grokdeclarator (declarator, declspecs,
3169 NORMAL, initialized, NULL, &attributes,
3170 deprecated_state);
3171 if (!decl)
3172 return 0;
3174 if (warn_main > 0 && TREE_CODE (decl) != FUNCTION_DECL
3175 && MAIN_NAME_P (DECL_NAME (decl)))
3176 warning (OPT_Wmain, "%q+D is usually a function", decl);
3178 if (initialized)
3179 /* Is it valid for this decl to have an initializer at all?
3180 If not, set INITIALIZED to zero, which will indirectly
3181 tell 'finish_decl' to ignore the initializer once it is parsed. */
3182 switch (TREE_CODE (decl))
3184 case TYPE_DECL:
3185 error ("typedef %qD is initialized (use __typeof__ instead)", decl);
3186 initialized = 0;
3187 break;
3189 case FUNCTION_DECL:
3190 error ("function %qD is initialized like a variable", decl);
3191 initialized = 0;
3192 break;
3194 case PARM_DECL:
3195 /* DECL_INITIAL in a PARM_DECL is really DECL_ARG_TYPE. */
3196 error ("parameter %qD is initialized", decl);
3197 initialized = 0;
3198 break;
3200 default:
3201 /* Don't allow initializations for incomplete types except for
3202 arrays which might be completed by the initialization. */
3204 /* This can happen if the array size is an undefined macro.
3205 We already gave a warning, so we don't need another one. */
3206 if (TREE_TYPE (decl) == error_mark_node)
3207 initialized = 0;
3208 else if (COMPLETE_TYPE_P (TREE_TYPE (decl)))
3210 /* A complete type is ok if size is fixed. */
3212 if (TREE_CODE (TYPE_SIZE (TREE_TYPE (decl))) != INTEGER_CST
3213 || C_DECL_VARIABLE_SIZE (decl))
3215 error ("variable-sized object may not be initialized");
3216 initialized = 0;
3219 else if (TREE_CODE (TREE_TYPE (decl)) != ARRAY_TYPE)
3221 error ("variable %qD has initializer but incomplete type", decl);
3222 initialized = 0;
3224 else if (C_DECL_VARIABLE_SIZE (decl))
3226 /* Although C99 is unclear about whether incomplete arrays
3227 of VLAs themselves count as VLAs, it does not make
3228 sense to permit them to be initialized given that
3229 ordinary VLAs may not be initialized. */
3230 error ("variable-sized object may not be initialized");
3231 initialized = 0;
3235 if (initialized)
3237 if (current_scope == file_scope)
3238 TREE_STATIC (decl) = 1;
3240 /* Tell 'pushdecl' this is an initialized decl
3241 even though we don't yet have the initializer expression.
3242 Also tell 'finish_decl' it may store the real initializer. */
3243 DECL_INITIAL (decl) = error_mark_node;
3246 /* If this is a function declaration, write a record describing it to the
3247 prototypes file (if requested). */
3249 if (TREE_CODE (decl) == FUNCTION_DECL)
3250 gen_aux_info_record (decl, 0, 0, TYPE_ARG_TYPES (TREE_TYPE (decl)) != 0);
3252 /* ANSI specifies that a tentative definition which is not merged with
3253 a non-tentative definition behaves exactly like a definition with an
3254 initializer equal to zero. (Section 3.7.2)
3256 -fno-common gives strict ANSI behavior, though this tends to break
3257 a large body of code that grew up without this rule.
3259 Thread-local variables are never common, since there's no entrenched
3260 body of code to break, and it allows more efficient variable references
3261 in the presence of dynamic linking. */
3263 if (TREE_CODE (decl) == VAR_DECL
3264 && !initialized
3265 && TREE_PUBLIC (decl)
3266 && !DECL_THREAD_LOCAL_P (decl)
3267 && !flag_no_common)
3268 DECL_COMMON (decl) = 1;
3270 /* Set attributes here so if duplicate decl, will have proper attributes. */
3271 decl_attributes (&decl, attributes, 0);
3273 /* Handle gnu_inline attribute. */
3274 if (declspecs->inline_p
3275 && !flag_gnu89_inline
3276 && TREE_CODE (decl) == FUNCTION_DECL
3277 && lookup_attribute ("gnu_inline", DECL_ATTRIBUTES (decl)))
3279 if (declspecs->storage_class == csc_auto && current_scope != file_scope)
3281 else if (declspecs->storage_class != csc_static)
3282 DECL_EXTERNAL (decl) = !DECL_EXTERNAL (decl);
3285 if (TREE_CODE (decl) == FUNCTION_DECL
3286 && targetm.calls.promote_prototypes (TREE_TYPE (decl)))
3288 struct c_declarator *ce = declarator;
3290 if (ce->kind == cdk_pointer)
3291 ce = declarator->declarator;
3292 if (ce->kind == cdk_function)
3294 tree args = ce->u.arg_info->parms;
3295 for (; args; args = TREE_CHAIN (args))
3297 tree type = TREE_TYPE (args);
3298 if (type && INTEGRAL_TYPE_P (type)
3299 && TYPE_PRECISION (type) < TYPE_PRECISION (integer_type_node))
3300 DECL_ARG_TYPE (args) = integer_type_node;
3305 if (TREE_CODE (decl) == FUNCTION_DECL
3306 && DECL_DECLARED_INLINE_P (decl)
3307 && DECL_UNINLINABLE (decl)
3308 && lookup_attribute ("noinline", DECL_ATTRIBUTES (decl)))
3309 warning (OPT_Wattributes, "inline function %q+D given attribute noinline",
3310 decl);
3312 /* C99 6.7.4p3: An inline definition of a function with external
3313 linkage shall not contain a definition of a modifiable object
3314 with static storage duration... */
3315 if (TREE_CODE (decl) == VAR_DECL
3316 && current_scope != file_scope
3317 && TREE_STATIC (decl)
3318 && !TREE_READONLY (decl)
3319 && DECL_DECLARED_INLINE_P (current_function_decl)
3320 && DECL_EXTERNAL (current_function_decl))
3321 pedwarn ("%q+D is static but declared in inline function %qD "
3322 "which is not static", decl, current_function_decl);
3324 /* Add this decl to the current scope.
3325 TEM may equal DECL or it may be a previous decl of the same name. */
3326 tem = pushdecl (decl);
3328 if (initialized && DECL_EXTERNAL (tem))
3330 DECL_EXTERNAL (tem) = 0;
3331 TREE_STATIC (tem) = 1;
3334 return tem;
3337 /* Initialize EH if not initialized yet and exceptions are enabled. */
3339 void
3340 c_maybe_initialize_eh (void)
3342 if (!flag_exceptions || c_eh_initialized_p)
3343 return;
3345 c_eh_initialized_p = true;
3346 eh_personality_libfunc
3347 = init_one_libfunc (USING_SJLJ_EXCEPTIONS
3348 ? "__gcc_personality_sj0"
3349 : "__gcc_personality_v0");
3350 default_init_unwind_resume_libfunc ();
3351 using_eh_for_cleanups ();
3354 /* Finish processing of a declaration;
3355 install its initial value.
3356 If the length of an array type is not known before,
3357 it must be determined now, from the initial value, or it is an error. */
3359 void
3360 finish_decl (tree decl, tree init, tree asmspec_tree)
3362 tree type;
3363 int was_incomplete = (DECL_SIZE (decl) == 0);
3364 const char *asmspec = 0;
3366 /* If a name was specified, get the string. */
3367 if ((TREE_CODE (decl) == FUNCTION_DECL || TREE_CODE (decl) == VAR_DECL)
3368 && DECL_FILE_SCOPE_P (decl))
3369 asmspec_tree = maybe_apply_renaming_pragma (decl, asmspec_tree);
3370 if (asmspec_tree)
3371 asmspec = TREE_STRING_POINTER (asmspec_tree);
3373 /* If `start_decl' didn't like having an initialization, ignore it now. */
3374 if (init != 0 && DECL_INITIAL (decl) == 0)
3375 init = 0;
3377 /* Don't crash if parm is initialized. */
3378 if (TREE_CODE (decl) == PARM_DECL)
3379 init = 0;
3381 if (init)
3382 store_init_value (decl, init);
3384 if (c_dialect_objc () && (TREE_CODE (decl) == VAR_DECL
3385 || TREE_CODE (decl) == FUNCTION_DECL
3386 || TREE_CODE (decl) == FIELD_DECL))
3387 objc_check_decl (decl);
3389 type = TREE_TYPE (decl);
3391 /* Deduce size of array from initialization, if not already known. */
3392 if (TREE_CODE (type) == ARRAY_TYPE
3393 && TYPE_DOMAIN (type) == 0
3394 && TREE_CODE (decl) != TYPE_DECL)
3396 bool do_default
3397 = (TREE_STATIC (decl)
3398 /* Even if pedantic, an external linkage array
3399 may have incomplete type at first. */
3400 ? pedantic && !TREE_PUBLIC (decl)
3401 : !DECL_EXTERNAL (decl));
3402 int failure
3403 = complete_array_type (&TREE_TYPE (decl), DECL_INITIAL (decl),
3404 do_default);
3406 /* Get the completed type made by complete_array_type. */
3407 type = TREE_TYPE (decl);
3409 switch (failure)
3411 case 1:
3412 error ("initializer fails to determine size of %q+D", decl);
3413 break;
3415 case 2:
3416 if (do_default)
3417 error ("array size missing in %q+D", decl);
3418 /* If a `static' var's size isn't known,
3419 make it extern as well as static, so it does not get
3420 allocated.
3421 If it is not `static', then do not mark extern;
3422 finish_incomplete_decl will give it a default size
3423 and it will get allocated. */
3424 else if (!pedantic && TREE_STATIC (decl) && !TREE_PUBLIC (decl))
3425 DECL_EXTERNAL (decl) = 1;
3426 break;
3428 case 3:
3429 error ("zero or negative size array %q+D", decl);
3430 break;
3432 case 0:
3433 /* For global variables, update the copy of the type that
3434 exists in the binding. */
3435 if (TREE_PUBLIC (decl))
3437 struct c_binding *b_ext = I_SYMBOL_BINDING (DECL_NAME (decl));
3438 while (b_ext && !B_IN_EXTERNAL_SCOPE (b_ext))
3439 b_ext = b_ext->shadowed;
3440 if (b_ext)
3442 if (b_ext->type)
3443 b_ext->type = composite_type (b_ext->type, type);
3444 else
3445 b_ext->type = type;
3448 break;
3450 default:
3451 gcc_unreachable ();
3454 if (DECL_INITIAL (decl))
3455 TREE_TYPE (DECL_INITIAL (decl)) = type;
3457 layout_decl (decl, 0);
3460 if (TREE_CODE (decl) == VAR_DECL)
3462 if (init && TREE_CODE (init) == CONSTRUCTOR)
3463 add_flexible_array_elts_to_size (decl, init);
3465 if (DECL_SIZE (decl) == 0 && TREE_TYPE (decl) != error_mark_node
3466 && COMPLETE_TYPE_P (TREE_TYPE (decl)))
3467 layout_decl (decl, 0);
3469 if (DECL_SIZE (decl) == 0
3470 /* Don't give an error if we already gave one earlier. */
3471 && TREE_TYPE (decl) != error_mark_node
3472 && (TREE_STATIC (decl)
3473 /* A static variable with an incomplete type
3474 is an error if it is initialized.
3475 Also if it is not file scope.
3476 Otherwise, let it through, but if it is not `extern'
3477 then it may cause an error message later. */
3478 ? (DECL_INITIAL (decl) != 0
3479 || !DECL_FILE_SCOPE_P (decl))
3480 /* An automatic variable with an incomplete type
3481 is an error. */
3482 : !DECL_EXTERNAL (decl)))
3484 error ("storage size of %q+D isn%'t known", decl);
3485 TREE_TYPE (decl) = error_mark_node;
3488 if ((DECL_EXTERNAL (decl) || TREE_STATIC (decl))
3489 && DECL_SIZE (decl) != 0)
3491 if (TREE_CODE (DECL_SIZE (decl)) == INTEGER_CST)
3492 constant_expression_warning (DECL_SIZE (decl));
3493 else
3494 error ("storage size of %q+D isn%'t constant", decl);
3497 if (TREE_USED (type))
3498 TREE_USED (decl) = 1;
3501 /* If this is a function and an assembler name is specified, reset DECL_RTL
3502 so we can give it its new name. Also, update built_in_decls if it
3503 was a normal built-in. */
3504 if (TREE_CODE (decl) == FUNCTION_DECL && asmspec)
3506 if (DECL_BUILT_IN_CLASS (decl) == BUILT_IN_NORMAL)
3507 set_builtin_user_assembler_name (decl, asmspec);
3508 set_user_assembler_name (decl, asmspec);
3511 /* If #pragma weak was used, mark the decl weak now. */
3512 maybe_apply_pragma_weak (decl);
3514 /* Output the assembler code and/or RTL code for variables and functions,
3515 unless the type is an undefined structure or union.
3516 If not, it will get done when the type is completed. */
3518 if (TREE_CODE (decl) == VAR_DECL || TREE_CODE (decl) == FUNCTION_DECL)
3520 /* Determine the ELF visibility. */
3521 if (TREE_PUBLIC (decl))
3522 c_determine_visibility (decl);
3524 /* This is a no-op in c-lang.c or something real in objc-act.c. */
3525 if (c_dialect_objc ())
3526 objc_check_decl (decl);
3528 if (asmspec)
3530 /* If this is not a static variable, issue a warning.
3531 It doesn't make any sense to give an ASMSPEC for an
3532 ordinary, non-register local variable. Historically,
3533 GCC has accepted -- but ignored -- the ASMSPEC in
3534 this case. */
3535 if (!DECL_FILE_SCOPE_P (decl)
3536 && TREE_CODE (decl) == VAR_DECL
3537 && !C_DECL_REGISTER (decl)
3538 && !TREE_STATIC (decl))
3539 warning (0, "ignoring asm-specifier for non-static local "
3540 "variable %q+D", decl);
3541 else
3542 set_user_assembler_name (decl, asmspec);
3545 if (DECL_FILE_SCOPE_P (decl))
3547 if (DECL_INITIAL (decl) == NULL_TREE
3548 || DECL_INITIAL (decl) == error_mark_node)
3549 /* Don't output anything
3550 when a tentative file-scope definition is seen.
3551 But at end of compilation, do output code for them. */
3552 DECL_DEFER_OUTPUT (decl) = 1;
3553 rest_of_decl_compilation (decl, true, 0);
3555 else
3557 /* In conjunction with an ASMSPEC, the `register'
3558 keyword indicates that we should place the variable
3559 in a particular register. */
3560 if (asmspec && C_DECL_REGISTER (decl))
3562 DECL_HARD_REGISTER (decl) = 1;
3563 /* This cannot be done for a structure with volatile
3564 fields, on which DECL_REGISTER will have been
3565 reset. */
3566 if (!DECL_REGISTER (decl))
3567 error ("cannot put object with volatile field into register");
3570 if (TREE_CODE (decl) != FUNCTION_DECL)
3572 /* If we're building a variable sized type, and we might be
3573 reachable other than via the top of the current binding
3574 level, then create a new BIND_EXPR so that we deallocate
3575 the object at the right time. */
3576 /* Note that DECL_SIZE can be null due to errors. */
3577 if (DECL_SIZE (decl)
3578 && !TREE_CONSTANT (DECL_SIZE (decl))
3579 && STATEMENT_LIST_HAS_LABEL (cur_stmt_list))
3581 tree bind;
3582 bind = build3 (BIND_EXPR, void_type_node, NULL, NULL, NULL);
3583 TREE_SIDE_EFFECTS (bind) = 1;
3584 add_stmt (bind);
3585 BIND_EXPR_BODY (bind) = push_stmt_list ();
3587 add_stmt (build_stmt (DECL_EXPR, decl));
3592 if (!DECL_FILE_SCOPE_P (decl))
3594 /* Recompute the RTL of a local array now
3595 if it used to be an incomplete type. */
3596 if (was_incomplete
3597 && !TREE_STATIC (decl) && !DECL_EXTERNAL (decl))
3599 /* If we used it already as memory, it must stay in memory. */
3600 TREE_ADDRESSABLE (decl) = TREE_USED (decl);
3601 /* If it's still incomplete now, no init will save it. */
3602 if (DECL_SIZE (decl) == 0)
3603 DECL_INITIAL (decl) = 0;
3608 /* If this was marked 'used', be sure it will be output. */
3609 if (!flag_unit_at_a_time && lookup_attribute ("used", DECL_ATTRIBUTES (decl)))
3610 mark_decl_referenced (decl);
3612 if (TREE_CODE (decl) == TYPE_DECL)
3614 if (!DECL_FILE_SCOPE_P (decl)
3615 && variably_modified_type_p (TREE_TYPE (decl), NULL_TREE))
3616 add_stmt (build_stmt (DECL_EXPR, decl));
3618 rest_of_decl_compilation (decl, DECL_FILE_SCOPE_P (decl), 0);
3621 /* At the end of a declaration, throw away any variable type sizes
3622 of types defined inside that declaration. There is no use
3623 computing them in the following function definition. */
3624 if (current_scope == file_scope)
3625 get_pending_sizes ();
3627 /* Install a cleanup (aka destructor) if one was given. */
3628 if (TREE_CODE (decl) == VAR_DECL && !TREE_STATIC (decl))
3630 tree attr = lookup_attribute ("cleanup", DECL_ATTRIBUTES (decl));
3631 if (attr)
3633 tree cleanup_id = TREE_VALUE (TREE_VALUE (attr));
3634 tree cleanup_decl = lookup_name (cleanup_id);
3635 tree cleanup;
3637 /* Build "cleanup(&decl)" for the destructor. */
3638 cleanup = build_unary_op (ADDR_EXPR, decl, 0);
3639 cleanup = build_tree_list (NULL_TREE, cleanup);
3640 cleanup = build_function_call (cleanup_decl, cleanup);
3642 /* Don't warn about decl unused; the cleanup uses it. */
3643 TREE_USED (decl) = 1;
3644 TREE_USED (cleanup_decl) = 1;
3646 /* Initialize EH, if we've been told to do so. */
3647 c_maybe_initialize_eh ();
3649 push_cleanup (decl, cleanup, false);
3654 /* Given a parsed parameter declaration, decode it into a PARM_DECL. */
3656 tree
3657 grokparm (const struct c_parm *parm)
3659 tree attrs = parm->attrs;
3660 tree decl = grokdeclarator (parm->declarator, parm->specs, PARM, false,
3661 NULL, &attrs, DEPRECATED_NORMAL);
3663 decl_attributes (&decl, attrs, 0);
3665 return decl;
3668 /* Given a parsed parameter declaration, decode it into a PARM_DECL
3669 and push that on the current scope. */
3671 void
3672 push_parm_decl (const struct c_parm *parm)
3674 tree attrs = parm->attrs;
3675 tree decl;
3677 decl = grokdeclarator (parm->declarator, parm->specs, PARM, false, NULL,
3678 &attrs, DEPRECATED_NORMAL);
3679 decl_attributes (&decl, attrs, 0);
3681 decl = pushdecl (decl);
3683 finish_decl (decl, NULL_TREE, NULL_TREE);
3686 /* Mark all the parameter declarations to date as forward decls.
3687 Also diagnose use of this extension. */
3689 void
3690 mark_forward_parm_decls (void)
3692 struct c_binding *b;
3694 if (pedantic && !current_scope->warned_forward_parm_decls)
3696 pedwarn ("ISO C forbids forward parameter declarations");
3697 current_scope->warned_forward_parm_decls = true;
3700 for (b = current_scope->bindings; b; b = b->prev)
3701 if (TREE_CODE (b->decl) == PARM_DECL)
3702 TREE_ASM_WRITTEN (b->decl) = 1;
3705 /* Build a COMPOUND_LITERAL_EXPR. TYPE is the type given in the compound
3706 literal, which may be an incomplete array type completed by the
3707 initializer; INIT is a CONSTRUCTOR that initializes the compound
3708 literal. */
3710 tree
3711 build_compound_literal (tree type, tree init)
3713 /* We do not use start_decl here because we have a type, not a declarator;
3714 and do not use finish_decl because the decl should be stored inside
3715 the COMPOUND_LITERAL_EXPR rather than added elsewhere as a DECL_EXPR. */
3716 tree decl;
3717 tree complit;
3718 tree stmt;
3720 if (type == error_mark_node)
3721 return error_mark_node;
3723 decl = build_decl (VAR_DECL, NULL_TREE, type);
3724 DECL_EXTERNAL (decl) = 0;
3725 TREE_PUBLIC (decl) = 0;
3726 TREE_STATIC (decl) = (current_scope == file_scope);
3727 DECL_CONTEXT (decl) = current_function_decl;
3728 TREE_USED (decl) = 1;
3729 TREE_TYPE (decl) = type;
3730 TREE_READONLY (decl) = TYPE_READONLY (type);
3731 store_init_value (decl, init);
3733 if (TREE_CODE (type) == ARRAY_TYPE && !COMPLETE_TYPE_P (type))
3735 int failure = complete_array_type (&TREE_TYPE (decl),
3736 DECL_INITIAL (decl), true);
3737 gcc_assert (!failure);
3739 type = TREE_TYPE (decl);
3740 TREE_TYPE (DECL_INITIAL (decl)) = type;
3743 if (type == error_mark_node || !COMPLETE_TYPE_P (type))
3744 return error_mark_node;
3746 stmt = build_stmt (DECL_EXPR, decl);
3747 complit = build1 (COMPOUND_LITERAL_EXPR, type, stmt);
3748 TREE_SIDE_EFFECTS (complit) = 1;
3750 layout_decl (decl, 0);
3752 if (TREE_STATIC (decl))
3754 /* This decl needs a name for the assembler output. */
3755 set_compound_literal_name (decl);
3756 DECL_DEFER_OUTPUT (decl) = 1;
3757 DECL_COMDAT (decl) = 1;
3758 DECL_ARTIFICIAL (decl) = 1;
3759 DECL_IGNORED_P (decl) = 1;
3760 pushdecl (decl);
3761 rest_of_decl_compilation (decl, 1, 0);
3764 return complit;
3767 /* Determine whether TYPE is a structure with a flexible array member,
3768 or a union containing such a structure (possibly recursively). */
3770 static bool
3771 flexible_array_type_p (tree type)
3773 tree x;
3774 switch (TREE_CODE (type))
3776 case RECORD_TYPE:
3777 x = TYPE_FIELDS (type);
3778 if (x == NULL_TREE)
3779 return false;
3780 while (TREE_CHAIN (x) != NULL_TREE)
3781 x = TREE_CHAIN (x);
3782 if (TREE_CODE (TREE_TYPE (x)) == ARRAY_TYPE
3783 && TYPE_SIZE (TREE_TYPE (x)) == NULL_TREE
3784 && TYPE_DOMAIN (TREE_TYPE (x)) != NULL_TREE
3785 && TYPE_MAX_VALUE (TYPE_DOMAIN (TREE_TYPE (x))) == NULL_TREE)
3786 return true;
3787 return false;
3788 case UNION_TYPE:
3789 for (x = TYPE_FIELDS (type); x != NULL_TREE; x = TREE_CHAIN (x))
3791 if (flexible_array_type_p (TREE_TYPE (x)))
3792 return true;
3794 return false;
3795 default:
3796 return false;
3800 /* Performs sanity checks on the TYPE and WIDTH of the bit-field NAME,
3801 replacing with appropriate values if they are invalid. */
3802 static void
3803 check_bitfield_type_and_width (tree *type, tree *width, const char *orig_name)
3805 tree type_mv;
3806 unsigned int max_width;
3807 unsigned HOST_WIDE_INT w;
3808 const char *name = orig_name ? orig_name: _("<anonymous>");
3810 /* Detect and ignore out of range field width and process valid
3811 field widths. */
3812 if (!INTEGRAL_TYPE_P (TREE_TYPE (*width))
3813 || TREE_CODE (*width) != INTEGER_CST)
3815 error ("bit-field %qs width not an integer constant", name);
3816 *width = integer_one_node;
3818 else
3820 constant_expression_warning (*width);
3821 if (tree_int_cst_sgn (*width) < 0)
3823 error ("negative width in bit-field %qs", name);
3824 *width = integer_one_node;
3826 else if (integer_zerop (*width) && orig_name)
3828 error ("zero width for bit-field %qs", name);
3829 *width = integer_one_node;
3833 /* Detect invalid bit-field type. */
3834 if (TREE_CODE (*type) != INTEGER_TYPE
3835 && TREE_CODE (*type) != BOOLEAN_TYPE
3836 && TREE_CODE (*type) != ENUMERAL_TYPE)
3838 error ("bit-field %qs has invalid type", name);
3839 *type = unsigned_type_node;
3842 type_mv = TYPE_MAIN_VARIANT (*type);
3843 if (pedantic
3844 && !in_system_header
3845 && type_mv != integer_type_node
3846 && type_mv != unsigned_type_node
3847 && type_mv != boolean_type_node)
3848 pedwarn ("type of bit-field %qs is a GCC extension", name);
3850 max_width = TYPE_PRECISION (*type);
3852 if (0 < compare_tree_int (*width, max_width))
3854 error ("width of %qs exceeds its type", name);
3855 w = max_width;
3856 *width = build_int_cst (NULL_TREE, w);
3858 else
3859 w = tree_low_cst (*width, 1);
3861 if (TREE_CODE (*type) == ENUMERAL_TYPE)
3863 struct lang_type *lt = TYPE_LANG_SPECIFIC (*type);
3864 if (!lt
3865 || w < min_precision (lt->enum_min, TYPE_UNSIGNED (*type))
3866 || w < min_precision (lt->enum_max, TYPE_UNSIGNED (*type)))
3867 warning (0, "%qs is narrower than values of its type", name);
3873 /* Print warning about variable length array if necessary. */
3875 static void
3876 warn_variable_length_array (const char *name, tree size)
3878 int ped = !flag_isoc99 && pedantic && warn_vla != 0;
3879 int const_size = TREE_CONSTANT (size);
3881 if (ped)
3883 if (const_size)
3885 if (name)
3886 pedwarn ("ISO C90 forbids array %qs whose size "
3887 "can%'t be evaluated",
3888 name);
3889 else
3890 pedwarn ("ISO C90 forbids array whose size "
3891 "can%'t be evaluated");
3893 else
3895 if (name)
3896 pedwarn ("ISO C90 forbids variable length array %qs",
3897 name);
3898 else
3899 pedwarn ("ISO C90 forbids variable length array");
3902 else if (warn_vla > 0)
3904 if (const_size)
3906 if (name)
3907 warning (OPT_Wvla,
3908 "the size of array %qs can"
3909 "%'t be evaluated", name);
3910 else
3911 warning (OPT_Wvla,
3912 "the size of array can %'t be evaluated");
3914 else
3916 if (name)
3917 warning (OPT_Wvla,
3918 "variable length array %qs is used",
3919 name);
3920 else
3921 warning (OPT_Wvla,
3922 "variable length array is used");
3927 /* Given declspecs and a declarator,
3928 determine the name and type of the object declared
3929 and construct a ..._DECL node for it.
3930 (In one case we can return a ..._TYPE node instead.
3931 For invalid input we sometimes return 0.)
3933 DECLSPECS is a c_declspecs structure for the declaration specifiers.
3935 DECL_CONTEXT says which syntactic context this declaration is in:
3936 NORMAL for most contexts. Make a VAR_DECL or FUNCTION_DECL or TYPE_DECL.
3937 FUNCDEF for a function definition. Like NORMAL but a few different
3938 error messages in each case. Return value may be zero meaning
3939 this definition is too screwy to try to parse.
3940 PARM for a parameter declaration (either within a function prototype
3941 or before a function body). Make a PARM_DECL, or return void_type_node.
3942 TYPENAME if for a typename (in a cast or sizeof).
3943 Don't make a DECL node; just return the ..._TYPE node.
3944 FIELD for a struct or union field; make a FIELD_DECL.
3945 INITIALIZED is true if the decl has an initializer.
3946 WIDTH is non-NULL for bit-fields, and is a pointer to an INTEGER_CST node
3947 representing the width of the bit-field.
3948 DECL_ATTRS points to the list of attributes that should be added to this
3949 decl. Any nested attributes that belong on the decl itself will be
3950 added to this list.
3951 DEPRECATED_STATE is a deprecated_states value indicating whether
3952 deprecation warnings should be suppressed.
3954 In the TYPENAME case, DECLARATOR is really an absolute declarator.
3955 It may also be so in the PARM case, for a prototype where the
3956 argument type is specified but not the name.
3958 This function is where the complicated C meanings of `static'
3959 and `extern' are interpreted. */
3961 static tree
3962 grokdeclarator (const struct c_declarator *declarator,
3963 struct c_declspecs *declspecs,
3964 enum decl_context decl_context, bool initialized, tree *width,
3965 tree *decl_attrs, enum deprecated_states deprecated_state)
3967 tree type = declspecs->type;
3968 bool threadp = declspecs->thread_p;
3969 enum c_storage_class storage_class = declspecs->storage_class;
3970 int constp;
3971 int restrictp;
3972 int volatilep;
3973 int type_quals = TYPE_UNQUALIFIED;
3974 const char *name, *orig_name;
3975 bool funcdef_flag = false;
3976 bool funcdef_syntax = false;
3977 int size_varies = 0;
3978 tree decl_attr = declspecs->decl_attr;
3979 int array_ptr_quals = TYPE_UNQUALIFIED;
3980 tree array_ptr_attrs = NULL_TREE;
3981 int array_parm_static = 0;
3982 bool array_parm_vla_unspec_p = false;
3983 tree returned_attrs = NULL_TREE;
3984 bool bitfield = width != NULL;
3985 tree element_type;
3986 struct c_arg_info *arg_info = 0;
3988 if (decl_context == FUNCDEF)
3989 funcdef_flag = true, decl_context = NORMAL;
3991 /* Look inside a declarator for the name being declared
3992 and get it as a string, for an error message. */
3994 const struct c_declarator *decl = declarator;
3995 name = 0;
3997 while (decl)
3998 switch (decl->kind)
4000 case cdk_function:
4001 case cdk_array:
4002 case cdk_pointer:
4003 funcdef_syntax = (decl->kind == cdk_function);
4004 decl = decl->declarator;
4005 break;
4007 case cdk_attrs:
4008 decl = decl->declarator;
4009 break;
4011 case cdk_id:
4012 if (decl->u.id)
4013 name = IDENTIFIER_POINTER (decl->u.id);
4014 decl = 0;
4015 break;
4017 default:
4018 gcc_unreachable ();
4020 orig_name = name;
4021 if (name == 0)
4022 name = "type name";
4025 /* A function definition's declarator must have the form of
4026 a function declarator. */
4028 if (funcdef_flag && !funcdef_syntax)
4029 return 0;
4031 /* If this looks like a function definition, make it one,
4032 even if it occurs where parms are expected.
4033 Then store_parm_decls will reject it and not use it as a parm. */
4034 if (decl_context == NORMAL && !funcdef_flag && current_scope->parm_flag)
4035 decl_context = PARM;
4037 if (declspecs->deprecated_p && deprecated_state != DEPRECATED_SUPPRESS)
4038 warn_deprecated_use (declspecs->type);
4040 if ((decl_context == NORMAL || decl_context == FIELD)
4041 && current_scope == file_scope
4042 && variably_modified_type_p (type, NULL_TREE))
4044 error ("variably modified %qs at file scope", name);
4045 type = integer_type_node;
4048 size_varies = C_TYPE_VARIABLE_SIZE (type);
4050 /* Diagnose defaulting to "int". */
4052 if (declspecs->default_int_p && !in_system_header)
4054 /* Issue a warning if this is an ISO C 99 program or if
4055 -Wreturn-type and this is a function, or if -Wimplicit;
4056 prefer the former warning since it is more explicit. */
4057 if ((warn_implicit_int || warn_return_type || flag_isoc99)
4058 && funcdef_flag)
4059 warn_about_return_type = 1;
4060 else if (warn_implicit_int || flag_isoc99)
4061 pedwarn_c99 ("type defaults to %<int%> in declaration of %qs", name);
4064 /* Adjust the type if a bit-field is being declared,
4065 -funsigned-bitfields applied and the type is not explicitly
4066 "signed". */
4067 if (bitfield && !flag_signed_bitfields && !declspecs->explicit_signed_p
4068 && TREE_CODE (type) == INTEGER_TYPE)
4069 type = c_common_unsigned_type (type);
4071 /* Figure out the type qualifiers for the declaration. There are
4072 two ways a declaration can become qualified. One is something
4073 like `const int i' where the `const' is explicit. Another is
4074 something like `typedef const int CI; CI i' where the type of the
4075 declaration contains the `const'. A third possibility is that
4076 there is a type qualifier on the element type of a typedefed
4077 array type, in which case we should extract that qualifier so
4078 that c_apply_type_quals_to_decls receives the full list of
4079 qualifiers to work with (C90 is not entirely clear about whether
4080 duplicate qualifiers should be diagnosed in this case, but it
4081 seems most appropriate to do so). */
4082 element_type = strip_array_types (type);
4083 constp = declspecs->const_p + TYPE_READONLY (element_type);
4084 restrictp = declspecs->restrict_p + TYPE_RESTRICT (element_type);
4085 volatilep = declspecs->volatile_p + TYPE_VOLATILE (element_type);
4086 if (pedantic && !flag_isoc99)
4088 if (constp > 1)
4089 pedwarn ("duplicate %<const%>");
4090 if (restrictp > 1)
4091 pedwarn ("duplicate %<restrict%>");
4092 if (volatilep > 1)
4093 pedwarn ("duplicate %<volatile%>");
4095 if (!flag_gen_aux_info && (TYPE_QUALS (element_type)))
4096 type = TYPE_MAIN_VARIANT (type);
4097 type_quals = ((constp ? TYPE_QUAL_CONST : 0)
4098 | (restrictp ? TYPE_QUAL_RESTRICT : 0)
4099 | (volatilep ? TYPE_QUAL_VOLATILE : 0));
4101 /* Warn about storage classes that are invalid for certain
4102 kinds of declarations (parameters, typenames, etc.). */
4104 if (funcdef_flag
4105 && (threadp
4106 || storage_class == csc_auto
4107 || storage_class == csc_register
4108 || storage_class == csc_typedef))
4110 if (storage_class == csc_auto
4111 && (pedantic || current_scope == file_scope))
4112 pedwarn ("function definition declared %<auto%>");
4113 if (storage_class == csc_register)
4114 error ("function definition declared %<register%>");
4115 if (storage_class == csc_typedef)
4116 error ("function definition declared %<typedef%>");
4117 if (threadp)
4118 error ("function definition declared %<__thread%>");
4119 threadp = false;
4120 if (storage_class == csc_auto
4121 || storage_class == csc_register
4122 || storage_class == csc_typedef)
4123 storage_class = csc_none;
4125 else if (decl_context != NORMAL && (storage_class != csc_none || threadp))
4127 if (decl_context == PARM && storage_class == csc_register)
4129 else
4131 switch (decl_context)
4133 case FIELD:
4134 error ("storage class specified for structure field %qs",
4135 name);
4136 break;
4137 case PARM:
4138 error ("storage class specified for parameter %qs", name);
4139 break;
4140 default:
4141 error ("storage class specified for typename");
4142 break;
4144 storage_class = csc_none;
4145 threadp = false;
4148 else if (storage_class == csc_extern
4149 && initialized
4150 && !funcdef_flag)
4152 /* 'extern' with initialization is invalid if not at file scope. */
4153 if (current_scope == file_scope)
4155 /* It is fine to have 'extern const' when compiling at C
4156 and C++ intersection. */
4157 if (!(warn_cxx_compat && constp))
4158 warning (0, "%qs initialized and declared %<extern%>", name);
4160 else
4161 error ("%qs has both %<extern%> and initializer", name);
4163 else if (current_scope == file_scope)
4165 if (storage_class == csc_auto)
4166 error ("file-scope declaration of %qs specifies %<auto%>", name);
4167 if (pedantic && storage_class == csc_register)
4168 pedwarn ("file-scope declaration of %qs specifies %<register%>", name);
4170 else
4172 if (storage_class == csc_extern && funcdef_flag)
4173 error ("nested function %qs declared %<extern%>", name);
4174 else if (threadp && storage_class == csc_none)
4176 error ("function-scope %qs implicitly auto and declared "
4177 "%<__thread%>",
4178 name);
4179 threadp = false;
4183 /* Now figure out the structure of the declarator proper.
4184 Descend through it, creating more complex types, until we reach
4185 the declared identifier (or NULL_TREE, in an absolute declarator).
4186 At each stage we maintain an unqualified version of the type
4187 together with any qualifiers that should be applied to it with
4188 c_build_qualified_type; this way, array types including
4189 multidimensional array types are first built up in unqualified
4190 form and then the qualified form is created with
4191 TYPE_MAIN_VARIANT pointing to the unqualified form. */
4193 while (declarator && declarator->kind != cdk_id)
4195 if (type == error_mark_node)
4197 declarator = declarator->declarator;
4198 continue;
4201 /* Each level of DECLARATOR is either a cdk_array (for ...[..]),
4202 a cdk_pointer (for *...),
4203 a cdk_function (for ...(...)),
4204 a cdk_attrs (for nested attributes),
4205 or a cdk_id (for the name being declared
4206 or the place in an absolute declarator
4207 where the name was omitted).
4208 For the last case, we have just exited the loop.
4210 At this point, TYPE is the type of elements of an array,
4211 or for a function to return, or for a pointer to point to.
4212 After this sequence of ifs, TYPE is the type of the
4213 array or function or pointer, and DECLARATOR has had its
4214 outermost layer removed. */
4216 if (array_ptr_quals != TYPE_UNQUALIFIED
4217 || array_ptr_attrs != NULL_TREE
4218 || array_parm_static)
4220 /* Only the innermost declarator (making a parameter be of
4221 array type which is converted to pointer type)
4222 may have static or type qualifiers. */
4223 error ("static or type qualifiers in non-parameter array declarator");
4224 array_ptr_quals = TYPE_UNQUALIFIED;
4225 array_ptr_attrs = NULL_TREE;
4226 array_parm_static = 0;
4229 switch (declarator->kind)
4231 case cdk_attrs:
4233 /* A declarator with embedded attributes. */
4234 tree attrs = declarator->u.attrs;
4235 const struct c_declarator *inner_decl;
4236 int attr_flags = 0;
4237 declarator = declarator->declarator;
4238 inner_decl = declarator;
4239 while (inner_decl->kind == cdk_attrs)
4240 inner_decl = inner_decl->declarator;
4241 if (inner_decl->kind == cdk_id)
4242 attr_flags |= (int) ATTR_FLAG_DECL_NEXT;
4243 else if (inner_decl->kind == cdk_function)
4244 attr_flags |= (int) ATTR_FLAG_FUNCTION_NEXT;
4245 else if (inner_decl->kind == cdk_array)
4246 attr_flags |= (int) ATTR_FLAG_ARRAY_NEXT;
4247 returned_attrs = decl_attributes (&type,
4248 chainon (returned_attrs, attrs),
4249 attr_flags);
4250 break;
4252 case cdk_array:
4254 tree itype = NULL_TREE;
4255 tree size = declarator->u.array.dimen;
4256 /* The index is a signed object `sizetype' bits wide. */
4257 tree index_type = c_common_signed_type (sizetype);
4259 array_ptr_quals = declarator->u.array.quals;
4260 array_ptr_attrs = declarator->u.array.attrs;
4261 array_parm_static = declarator->u.array.static_p;
4262 array_parm_vla_unspec_p = declarator->u.array.vla_unspec_p;
4264 declarator = declarator->declarator;
4266 /* Check for some types that there cannot be arrays of. */
4268 if (VOID_TYPE_P (type))
4270 error ("declaration of %qs as array of voids", name);
4271 type = error_mark_node;
4274 if (TREE_CODE (type) == FUNCTION_TYPE)
4276 error ("declaration of %qs as array of functions", name);
4277 type = error_mark_node;
4280 if (pedantic && !in_system_header && flexible_array_type_p (type))
4281 pedwarn ("invalid use of structure with flexible array member");
4283 if (size == error_mark_node)
4284 type = error_mark_node;
4286 if (type == error_mark_node)
4287 continue;
4289 /* If size was specified, set ITYPE to a range-type for
4290 that size. Otherwise, ITYPE remains null. finish_decl
4291 may figure it out from an initial value. */
4293 if (size)
4295 /* Strip NON_LVALUE_EXPRs since we aren't using as an
4296 lvalue. */
4297 STRIP_TYPE_NOPS (size);
4299 if (!INTEGRAL_TYPE_P (TREE_TYPE (size)))
4301 error ("size of array %qs has non-integer type", name);
4302 size = integer_one_node;
4305 if (pedantic && integer_zerop (size))
4306 pedwarn ("ISO C forbids zero-size array %qs", name);
4308 if (TREE_CODE (size) == INTEGER_CST)
4310 constant_expression_warning (size);
4311 if (tree_int_cst_sgn (size) < 0)
4313 error ("size of array %qs is negative", name);
4314 size = integer_one_node;
4317 else if ((decl_context == NORMAL || decl_context == FIELD)
4318 && current_scope == file_scope)
4320 error ("variably modified %qs at file scope", name);
4321 size = integer_one_node;
4323 else
4325 /* Make sure the array size remains visibly
4326 nonconstant even if it is (eg) a const variable
4327 with known value. */
4328 size_varies = 1;
4329 warn_variable_length_array (orig_name, size);
4332 if (integer_zerop (size))
4334 /* A zero-length array cannot be represented with
4335 an unsigned index type, which is what we'll
4336 get with build_index_type. Create an
4337 open-ended range instead. */
4338 itype = build_range_type (sizetype, size, NULL_TREE);
4340 else
4342 /* Arrange for the SAVE_EXPR on the inside of the
4343 MINUS_EXPR, which allows the -1 to get folded
4344 with the +1 that happens when building TYPE_SIZE. */
4345 if (size_varies)
4346 size = variable_size (size);
4348 /* Compute the maximum valid index, that is, size
4349 - 1. Do the calculation in index_type, so that
4350 if it is a variable the computations will be
4351 done in the proper mode. */
4352 itype = fold_build2 (MINUS_EXPR, index_type,
4353 convert (index_type, size),
4354 convert (index_type,
4355 size_one_node));
4357 /* If that overflowed, the array is too big. ???
4358 While a size of INT_MAX+1 technically shouldn't
4359 cause an overflow (because we subtract 1), the
4360 overflow is recorded during the conversion to
4361 index_type, before the subtraction. Handling
4362 this case seems like an unnecessary
4363 complication. */
4364 if (TREE_CODE (itype) == INTEGER_CST
4365 && TREE_OVERFLOW (itype))
4367 error ("size of array %qs is too large", name);
4368 type = error_mark_node;
4369 continue;
4372 itype = build_index_type (itype);
4375 else if (decl_context == FIELD)
4377 if (pedantic && !flag_isoc99 && !in_system_header)
4378 pedwarn ("ISO C90 does not support flexible array members");
4380 /* ISO C99 Flexible array members are effectively
4381 identical to GCC's zero-length array extension. */
4382 itype = build_range_type (sizetype, size_zero_node, NULL_TREE);
4384 else if (decl_context == PARM)
4386 if (array_parm_vla_unspec_p)
4388 if (! orig_name)
4390 /* C99 6.7.5.2p4 */
4391 error ("%<[*]%> not allowed in other than a declaration");
4394 itype = build_range_type (sizetype, size_zero_node, NULL_TREE);
4395 size_varies = 1;
4398 else if (decl_context == TYPENAME)
4400 if (array_parm_vla_unspec_p)
4402 /* The error is printed elsewhere. We use this to
4403 avoid messing up with incomplete array types of
4404 the same type, that would otherwise be modified
4405 below. */
4406 itype = build_range_type (sizetype, size_zero_node,
4407 NULL_TREE);
4411 /* Complain about arrays of incomplete types. */
4412 if (!COMPLETE_TYPE_P (type))
4414 error ("array type has incomplete element type");
4415 type = error_mark_node;
4417 else
4418 /* When itype is NULL, a shared incomplete array type is
4419 returned for all array of a given type. Elsewhere we
4420 make sure we don't complete that type before copying
4421 it, but here we want to make sure we don't ever
4422 modify the shared type, so we gcc_assert (itype)
4423 below. */
4424 type = build_array_type (type, itype);
4426 if (type != error_mark_node)
4428 if (size_varies)
4430 /* It is ok to modify type here even if itype is
4431 NULL: if size_varies, we're in a
4432 multi-dimensional array and the inner type has
4433 variable size, so the enclosing shared array type
4434 must too. */
4435 if (size && TREE_CODE (size) == INTEGER_CST)
4436 type
4437 = build_distinct_type_copy (TYPE_MAIN_VARIANT (type));
4438 C_TYPE_VARIABLE_SIZE (type) = 1;
4441 /* The GCC extension for zero-length arrays differs from
4442 ISO flexible array members in that sizeof yields
4443 zero. */
4444 if (size && integer_zerop (size))
4446 gcc_assert (itype);
4447 TYPE_SIZE (type) = bitsize_zero_node;
4448 TYPE_SIZE_UNIT (type) = size_zero_node;
4450 if (array_parm_vla_unspec_p)
4452 gcc_assert (itype);
4453 /* The type is complete. C99 6.7.5.2p4 */
4454 TYPE_SIZE (type) = bitsize_zero_node;
4455 TYPE_SIZE_UNIT (type) = size_zero_node;
4459 if (decl_context != PARM
4460 && (array_ptr_quals != TYPE_UNQUALIFIED
4461 || array_ptr_attrs != NULL_TREE
4462 || array_parm_static))
4464 error ("static or type qualifiers in non-parameter array declarator");
4465 array_ptr_quals = TYPE_UNQUALIFIED;
4466 array_ptr_attrs = NULL_TREE;
4467 array_parm_static = 0;
4469 break;
4471 case cdk_function:
4473 /* Say it's a definition only for the declarator closest
4474 to the identifier, apart possibly from some
4475 attributes. */
4476 bool really_funcdef = false;
4477 tree arg_types;
4478 if (funcdef_flag)
4480 const struct c_declarator *t = declarator->declarator;
4481 while (t->kind == cdk_attrs)
4482 t = t->declarator;
4483 really_funcdef = (t->kind == cdk_id);
4486 /* Declaring a function type. Make sure we have a valid
4487 type for the function to return. */
4488 if (type == error_mark_node)
4489 continue;
4491 size_varies = 0;
4493 /* Warn about some types functions can't return. */
4494 if (TREE_CODE (type) == FUNCTION_TYPE)
4496 error ("%qs declared as function returning a function", name);
4497 type = integer_type_node;
4499 if (TREE_CODE (type) == ARRAY_TYPE)
4501 error ("%qs declared as function returning an array", name);
4502 type = integer_type_node;
4505 /* Construct the function type and go to the next
4506 inner layer of declarator. */
4507 arg_info = declarator->u.arg_info;
4508 arg_types = grokparms (arg_info, really_funcdef);
4509 if (really_funcdef)
4510 put_pending_sizes (arg_info->pending_sizes);
4512 /* Type qualifiers before the return type of the function
4513 qualify the return type, not the function type. */
4514 if (type_quals)
4516 /* Type qualifiers on a function return type are
4517 normally permitted by the standard but have no
4518 effect, so give a warning at -Wreturn-type.
4519 Qualifiers on a void return type are banned on
4520 function definitions in ISO C; GCC used to used
4521 them for noreturn functions. */
4522 if (VOID_TYPE_P (type) && really_funcdef)
4523 pedwarn ("function definition has qualified void return type");
4524 else
4525 warning (OPT_Wignored_qualifiers,
4526 "type qualifiers ignored on function return type");
4528 type = c_build_qualified_type (type, type_quals);
4530 type_quals = TYPE_UNQUALIFIED;
4532 type = build_function_type (type, arg_types);
4533 declarator = declarator->declarator;
4535 /* Set the TYPE_CONTEXTs for each tagged type which is local to
4536 the formal parameter list of this FUNCTION_TYPE to point to
4537 the FUNCTION_TYPE node itself. */
4539 tree link;
4541 for (link = arg_info->tags;
4542 link;
4543 link = TREE_CHAIN (link))
4544 TYPE_CONTEXT (TREE_VALUE (link)) = type;
4546 break;
4548 case cdk_pointer:
4550 /* Merge any constancy or volatility into the target type
4551 for the pointer. */
4553 if (pedantic && TREE_CODE (type) == FUNCTION_TYPE
4554 && type_quals)
4555 pedwarn ("ISO C forbids qualified function types");
4556 if (type_quals)
4557 type = c_build_qualified_type (type, type_quals);
4558 size_varies = 0;
4560 /* When the pointed-to type involves components of variable size,
4561 care must be taken to ensure that the size evaluation code is
4562 emitted early enough to dominate all the possible later uses
4563 and late enough for the variables on which it depends to have
4564 been assigned.
4566 This is expected to happen automatically when the pointed-to
4567 type has a name/declaration of it's own, but special attention
4568 is required if the type is anonymous.
4570 We handle the NORMAL and FIELD contexts here by attaching an
4571 artificial TYPE_DECL to such pointed-to type. This forces the
4572 sizes evaluation at a safe point and ensures it is not deferred
4573 until e.g. within a deeper conditional context.
4575 We expect nothing to be needed here for PARM or TYPENAME.
4576 Pushing a TYPE_DECL at this point for TYPENAME would actually
4577 be incorrect, as we might be in the middle of an expression
4578 with side effects on the pointed-to type size "arguments" prior
4579 to the pointer declaration point and the fake TYPE_DECL in the
4580 enclosing context would force the size evaluation prior to the
4581 side effects. */
4583 if (!TYPE_NAME (type)
4584 && (decl_context == NORMAL || decl_context == FIELD)
4585 && variably_modified_type_p (type, NULL_TREE))
4587 tree decl = build_decl (TYPE_DECL, NULL_TREE, type);
4588 DECL_ARTIFICIAL (decl) = 1;
4589 pushdecl (decl);
4590 finish_decl (decl, NULL_TREE, NULL_TREE);
4591 TYPE_NAME (type) = decl;
4594 type = build_pointer_type (type);
4596 /* Process type qualifiers (such as const or volatile)
4597 that were given inside the `*'. */
4598 type_quals = declarator->u.pointer_quals;
4600 declarator = declarator->declarator;
4601 break;
4603 default:
4604 gcc_unreachable ();
4607 *decl_attrs = chainon (returned_attrs, *decl_attrs);
4609 /* Now TYPE has the actual type, apart from any qualifiers in
4610 TYPE_QUALS. */
4612 /* Check the type and width of a bit-field. */
4613 if (bitfield)
4614 check_bitfield_type_and_width (&type, width, orig_name);
4616 /* Did array size calculations overflow? */
4618 if (TREE_CODE (type) == ARRAY_TYPE
4619 && COMPLETE_TYPE_P (type)
4620 && TREE_CODE (TYPE_SIZE_UNIT (type)) == INTEGER_CST
4621 && TREE_OVERFLOW (TYPE_SIZE_UNIT (type)))
4623 error ("size of array %qs is too large", name);
4624 /* If we proceed with the array type as it is, we'll eventually
4625 crash in tree_low_cst(). */
4626 type = error_mark_node;
4629 /* If this is declaring a typedef name, return a TYPE_DECL. */
4631 if (storage_class == csc_typedef)
4633 tree decl;
4634 if (pedantic && TREE_CODE (type) == FUNCTION_TYPE
4635 && type_quals)
4636 pedwarn ("ISO C forbids qualified function types");
4637 if (type_quals)
4638 type = c_build_qualified_type (type, type_quals);
4639 decl = build_decl (TYPE_DECL, declarator->u.id, type);
4640 DECL_SOURCE_LOCATION (decl) = declarator->id_loc;
4641 if (declspecs->explicit_signed_p)
4642 C_TYPEDEF_EXPLICITLY_SIGNED (decl) = 1;
4643 if (declspecs->inline_p)
4644 pedwarn ("typedef %q+D declared %<inline%>", decl);
4645 return decl;
4648 /* If this is a type name (such as, in a cast or sizeof),
4649 compute the type and return it now. */
4651 if (decl_context == TYPENAME)
4653 /* Note that the grammar rejects storage classes in typenames
4654 and fields. */
4655 gcc_assert (storage_class == csc_none && !threadp
4656 && !declspecs->inline_p);
4657 if (pedantic && TREE_CODE (type) == FUNCTION_TYPE
4658 && type_quals)
4659 pedwarn ("ISO C forbids const or volatile function types");
4660 if (type_quals)
4661 type = c_build_qualified_type (type, type_quals);
4662 return type;
4665 if (pedantic && decl_context == FIELD
4666 && variably_modified_type_p (type, NULL_TREE))
4668 /* C99 6.7.2.1p8 */
4669 pedwarn ("a member of a structure or union cannot have a variably modified type");
4672 /* Aside from typedefs and type names (handle above),
4673 `void' at top level (not within pointer)
4674 is allowed only in public variables.
4675 We don't complain about parms either, but that is because
4676 a better error message can be made later. */
4678 if (VOID_TYPE_P (type) && decl_context != PARM
4679 && !((decl_context != FIELD && TREE_CODE (type) != FUNCTION_TYPE)
4680 && (storage_class == csc_extern
4681 || (current_scope == file_scope
4682 && !(storage_class == csc_static
4683 || storage_class == csc_register)))))
4685 error ("variable or field %qs declared void", name);
4686 type = integer_type_node;
4689 /* Now create the decl, which may be a VAR_DECL, a PARM_DECL
4690 or a FUNCTION_DECL, depending on DECL_CONTEXT and TYPE. */
4693 tree decl;
4695 if (decl_context == PARM)
4697 tree promoted_type;
4699 /* A parameter declared as an array of T is really a pointer to T.
4700 One declared as a function is really a pointer to a function. */
4702 if (TREE_CODE (type) == ARRAY_TYPE)
4704 /* Transfer const-ness of array into that of type pointed to. */
4705 type = TREE_TYPE (type);
4706 if (type_quals)
4707 type = c_build_qualified_type (type, type_quals);
4708 type = build_pointer_type (type);
4709 type_quals = array_ptr_quals;
4710 if (type_quals)
4711 type = c_build_qualified_type (type, type_quals);
4713 /* We don't yet implement attributes in this context. */
4714 if (array_ptr_attrs != NULL_TREE)
4715 warning (OPT_Wattributes,
4716 "attributes in parameter array declarator ignored");
4718 size_varies = 0;
4720 else if (TREE_CODE (type) == FUNCTION_TYPE)
4722 if (pedantic && type_quals)
4723 pedwarn ("ISO C forbids qualified function types");
4724 if (type_quals)
4725 type = c_build_qualified_type (type, type_quals);
4726 type = build_pointer_type (type);
4727 type_quals = TYPE_UNQUALIFIED;
4729 else if (type_quals)
4730 type = c_build_qualified_type (type, type_quals);
4732 decl = build_decl (PARM_DECL, declarator->u.id, type);
4733 DECL_SOURCE_LOCATION (decl) = declarator->id_loc;
4734 if (size_varies)
4735 C_DECL_VARIABLE_SIZE (decl) = 1;
4737 /* Compute the type actually passed in the parmlist,
4738 for the case where there is no prototype.
4739 (For example, shorts and chars are passed as ints.)
4740 When there is a prototype, this is overridden later. */
4742 if (type == error_mark_node)
4743 promoted_type = type;
4744 else
4745 promoted_type = c_type_promotes_to (type);
4747 DECL_ARG_TYPE (decl) = promoted_type;
4748 if (declspecs->inline_p)
4749 pedwarn ("parameter %q+D declared %<inline%>", decl);
4751 else if (decl_context == FIELD)
4753 /* Note that the grammar rejects storage classes in typenames
4754 and fields. */
4755 gcc_assert (storage_class == csc_none && !threadp
4756 && !declspecs->inline_p);
4758 /* Structure field. It may not be a function. */
4760 if (TREE_CODE (type) == FUNCTION_TYPE)
4762 error ("field %qs declared as a function", name);
4763 type = build_pointer_type (type);
4765 else if (TREE_CODE (type) != ERROR_MARK
4766 && !COMPLETE_OR_UNBOUND_ARRAY_TYPE_P (type))
4768 error ("field %qs has incomplete type", name);
4769 type = error_mark_node;
4771 type = c_build_qualified_type (type, type_quals);
4772 decl = build_decl (FIELD_DECL, declarator->u.id, type);
4773 DECL_SOURCE_LOCATION (decl) = declarator->id_loc;
4774 DECL_NONADDRESSABLE_P (decl) = bitfield;
4775 if (bitfield && !declarator->u.id)
4776 TREE_NO_WARNING (decl) = 1;
4778 if (size_varies)
4779 C_DECL_VARIABLE_SIZE (decl) = 1;
4781 else if (TREE_CODE (type) == FUNCTION_TYPE)
4783 if (storage_class == csc_register || threadp)
4785 error ("invalid storage class for function %qs", name);
4787 else if (current_scope != file_scope)
4789 /* Function declaration not at file scope. Storage
4790 classes other than `extern' are not allowed, C99
4791 6.7.1p5, and `extern' makes no difference. However,
4792 GCC allows 'auto', perhaps with 'inline', to support
4793 nested functions. */
4794 if (storage_class == csc_auto)
4796 if (pedantic)
4797 pedwarn ("invalid storage class for function %qs", name);
4799 else if (storage_class == csc_static)
4801 error ("invalid storage class for function %qs", name);
4802 if (funcdef_flag)
4803 storage_class = declspecs->storage_class = csc_none;
4804 else
4805 return 0;
4809 decl = build_decl (FUNCTION_DECL, declarator->u.id, type);
4810 DECL_SOURCE_LOCATION (decl) = declarator->id_loc;
4811 decl = build_decl_attribute_variant (decl, decl_attr);
4813 if (pedantic && type_quals && !DECL_IN_SYSTEM_HEADER (decl))
4814 pedwarn ("ISO C forbids qualified function types");
4816 /* GNU C interprets a volatile-qualified function type to indicate
4817 that the function does not return. */
4818 if ((type_quals & TYPE_QUAL_VOLATILE)
4819 && !VOID_TYPE_P (TREE_TYPE (TREE_TYPE (decl))))
4820 warning (0, "%<noreturn%> function returns non-void value");
4822 /* Every function declaration is an external reference
4823 (DECL_EXTERNAL) except for those which are not at file
4824 scope and are explicitly declared "auto". This is
4825 forbidden by standard C (C99 6.7.1p5) and is interpreted by
4826 GCC to signify a forward declaration of a nested function. */
4827 if (storage_class == csc_auto && current_scope != file_scope)
4828 DECL_EXTERNAL (decl) = 0;
4829 /* In C99, a function which is declared 'inline' with 'extern'
4830 is not an external reference (which is confusing). It
4831 means that the later definition of the function must be output
4832 in this file, C99 6.7.4p6. In GNU C89, a function declared
4833 'extern inline' is an external reference. */
4834 else if (declspecs->inline_p && storage_class != csc_static)
4835 DECL_EXTERNAL (decl) = ((storage_class == csc_extern)
4836 == flag_gnu89_inline);
4837 else
4838 DECL_EXTERNAL (decl) = !initialized;
4840 /* Record absence of global scope for `static' or `auto'. */
4841 TREE_PUBLIC (decl)
4842 = !(storage_class == csc_static || storage_class == csc_auto);
4844 /* For a function definition, record the argument information
4845 block where store_parm_decls will look for it. */
4846 if (funcdef_flag)
4847 current_function_arg_info = arg_info;
4849 if (declspecs->default_int_p)
4850 C_FUNCTION_IMPLICIT_INT (decl) = 1;
4852 /* Record presence of `inline', if it is reasonable. */
4853 if (flag_hosted && MAIN_NAME_P (declarator->u.id))
4855 if (declspecs->inline_p)
4856 pedwarn ("cannot inline function %<main%>");
4858 else if (declspecs->inline_p)
4860 /* Record that the function is declared `inline'. */
4861 DECL_DECLARED_INLINE_P (decl) = 1;
4863 /* Do not mark bare declarations as DECL_INLINE. Doing so
4864 in the presence of multiple declarations can result in
4865 the abstract origin pointing between the declarations,
4866 which will confuse dwarf2out. */
4867 if (initialized)
4868 DECL_INLINE (decl) = 1;
4870 /* If -finline-functions, assume it can be inlined. This does
4871 two things: let the function be deferred until it is actually
4872 needed, and let dwarf2 know that the function is inlinable. */
4873 else if (flag_inline_trees == 2 && initialized)
4874 DECL_INLINE (decl) = 1;
4876 else
4878 /* It's a variable. */
4879 /* An uninitialized decl with `extern' is a reference. */
4880 int extern_ref = !initialized && storage_class == csc_extern;
4882 type = c_build_qualified_type (type, type_quals);
4884 /* C99 6.2.2p7: It is invalid (compile-time undefined
4885 behavior) to create an 'extern' declaration for a
4886 variable if there is a global declaration that is
4887 'static' and the global declaration is not visible.
4888 (If the static declaration _is_ currently visible,
4889 the 'extern' declaration is taken to refer to that decl.) */
4890 if (extern_ref && current_scope != file_scope)
4892 tree global_decl = identifier_global_value (declarator->u.id);
4893 tree visible_decl = lookup_name (declarator->u.id);
4895 if (global_decl
4896 && global_decl != visible_decl
4897 && TREE_CODE (global_decl) == VAR_DECL
4898 && !TREE_PUBLIC (global_decl))
4899 error ("variable previously declared %<static%> redeclared "
4900 "%<extern%>");
4903 decl = build_decl (VAR_DECL, declarator->u.id, type);
4904 DECL_SOURCE_LOCATION (decl) = declarator->id_loc;
4905 if (size_varies)
4906 C_DECL_VARIABLE_SIZE (decl) = 1;
4908 if (declspecs->inline_p)
4909 pedwarn ("variable %q+D declared %<inline%>", decl);
4911 /* At file scope, an initialized extern declaration may follow
4912 a static declaration. In that case, DECL_EXTERNAL will be
4913 reset later in start_decl. */
4914 DECL_EXTERNAL (decl) = (storage_class == csc_extern);
4916 /* At file scope, the presence of a `static' or `register' storage
4917 class specifier, or the absence of all storage class specifiers
4918 makes this declaration a definition (perhaps tentative). Also,
4919 the absence of `static' makes it public. */
4920 if (current_scope == file_scope)
4922 TREE_PUBLIC (decl) = storage_class != csc_static;
4923 TREE_STATIC (decl) = !extern_ref;
4925 /* Not at file scope, only `static' makes a static definition. */
4926 else
4928 TREE_STATIC (decl) = (storage_class == csc_static);
4929 TREE_PUBLIC (decl) = extern_ref;
4932 if (threadp)
4933 DECL_TLS_MODEL (decl) = decl_default_tls_model (decl);
4936 if (storage_class == csc_extern
4937 && variably_modified_type_p (type, NULL_TREE))
4939 /* C99 6.7.5.2p2 */
4940 error ("object with variably modified type must have no linkage");
4943 /* Record `register' declaration for warnings on &
4944 and in case doing stupid register allocation. */
4946 if (storage_class == csc_register)
4948 C_DECL_REGISTER (decl) = 1;
4949 DECL_REGISTER (decl) = 1;
4952 /* Record constancy and volatility. */
4953 c_apply_type_quals_to_decl (type_quals, decl);
4955 /* If a type has volatile components, it should be stored in memory.
4956 Otherwise, the fact that those components are volatile
4957 will be ignored, and would even crash the compiler.
4958 Of course, this only makes sense on VAR,PARM, and RESULT decl's. */
4959 if (C_TYPE_FIELDS_VOLATILE (TREE_TYPE (decl))
4960 && (TREE_CODE (decl) == VAR_DECL || TREE_CODE (decl) == PARM_DECL
4961 || TREE_CODE (decl) == RESULT_DECL))
4963 /* It is not an error for a structure with volatile fields to
4964 be declared register, but reset DECL_REGISTER since it
4965 cannot actually go in a register. */
4966 int was_reg = C_DECL_REGISTER (decl);
4967 C_DECL_REGISTER (decl) = 0;
4968 DECL_REGISTER (decl) = 0;
4969 c_mark_addressable (decl);
4970 C_DECL_REGISTER (decl) = was_reg;
4973 /* This is the earliest point at which we might know the assembler
4974 name of a variable. Thus, if it's known before this, die horribly. */
4975 gcc_assert (!DECL_ASSEMBLER_NAME_SET_P (decl));
4977 return decl;
4981 /* Decode the parameter-list info for a function type or function definition.
4982 The argument is the value returned by `get_parm_info' (or made in c-parse.c
4983 if there is an identifier list instead of a parameter decl list).
4984 These two functions are separate because when a function returns
4985 or receives functions then each is called multiple times but the order
4986 of calls is different. The last call to `grokparms' is always the one
4987 that contains the formal parameter names of a function definition.
4989 Return a list of arg types to use in the FUNCTION_TYPE for this function.
4991 FUNCDEF_FLAG is true for a function definition, false for
4992 a mere declaration. A nonempty identifier-list gets an error message
4993 when FUNCDEF_FLAG is false. */
4995 static tree
4996 grokparms (struct c_arg_info *arg_info, bool funcdef_flag)
4998 tree arg_types = arg_info->types;
5000 if (funcdef_flag && arg_info->had_vla_unspec)
5002 /* A function definition isn't function prototype scope C99 6.2.1p4. */
5003 /* C99 6.7.5.2p4 */
5004 error ("%<[*]%> not allowed in other than function prototype scope");
5007 if (arg_types == 0 && !funcdef_flag && !in_system_header)
5008 warning (OPT_Wstrict_prototypes,
5009 "function declaration isn%'t a prototype");
5011 if (arg_types == error_mark_node)
5012 return 0; /* don't set TYPE_ARG_TYPES in this case */
5014 else if (arg_types && TREE_CODE (TREE_VALUE (arg_types)) == IDENTIFIER_NODE)
5016 if (!funcdef_flag)
5017 pedwarn ("parameter names (without types) in function declaration");
5019 arg_info->parms = arg_info->types;
5020 arg_info->types = 0;
5021 return 0;
5023 else
5025 tree parm, type, typelt;
5026 unsigned int parmno;
5028 /* If there is a parameter of incomplete type in a definition,
5029 this is an error. In a declaration this is valid, and a
5030 struct or union type may be completed later, before any calls
5031 or definition of the function. In the case where the tag was
5032 first declared within the parameter list, a warning has
5033 already been given. If a parameter has void type, then
5034 however the function cannot be defined or called, so
5035 warn. */
5037 for (parm = arg_info->parms, typelt = arg_types, parmno = 1;
5038 parm;
5039 parm = TREE_CHAIN (parm), typelt = TREE_CHAIN (typelt), parmno++)
5041 type = TREE_VALUE (typelt);
5042 if (type == error_mark_node)
5043 continue;
5045 if (!COMPLETE_TYPE_P (type))
5047 if (funcdef_flag)
5049 if (DECL_NAME (parm))
5050 error ("parameter %u (%q+D) has incomplete type",
5051 parmno, parm);
5052 else
5053 error ("%Jparameter %u has incomplete type",
5054 parm, parmno);
5056 TREE_VALUE (typelt) = error_mark_node;
5057 TREE_TYPE (parm) = error_mark_node;
5059 else if (VOID_TYPE_P (type))
5061 if (DECL_NAME (parm))
5062 warning (0, "parameter %u (%q+D) has void type",
5063 parmno, parm);
5064 else
5065 warning (0, "%Jparameter %u has void type",
5066 parm, parmno);
5070 if (DECL_NAME (parm) && TREE_USED (parm))
5071 warn_if_shadowing (parm);
5073 return arg_types;
5077 /* Take apart the current scope and return a c_arg_info structure with
5078 info on a parameter list just parsed.
5080 This structure is later fed to 'grokparms' and 'store_parm_decls'.
5082 ELLIPSIS being true means the argument list ended in '...' so don't
5083 append a sentinel (void_list_node) to the end of the type-list. */
5085 struct c_arg_info *
5086 get_parm_info (bool ellipsis)
5088 struct c_binding *b = current_scope->bindings;
5089 struct c_arg_info *arg_info = XOBNEW (&parser_obstack,
5090 struct c_arg_info);
5091 tree parms = 0;
5092 tree tags = 0;
5093 tree types = 0;
5094 tree others = 0;
5096 static bool explained_incomplete_types = false;
5097 bool gave_void_only_once_err = false;
5099 arg_info->parms = 0;
5100 arg_info->tags = 0;
5101 arg_info->types = 0;
5102 arg_info->others = 0;
5103 arg_info->pending_sizes = 0;
5104 arg_info->had_vla_unspec = current_scope->had_vla_unspec;
5106 /* The bindings in this scope must not get put into a block.
5107 We will take care of deleting the binding nodes. */
5108 current_scope->bindings = 0;
5110 /* This function is only called if there was *something* on the
5111 parameter list. */
5112 gcc_assert (b);
5114 /* A parameter list consisting solely of 'void' indicates that the
5115 function takes no arguments. But if the 'void' is qualified
5116 (by 'const' or 'volatile'), or has a storage class specifier
5117 ('register'), then the behavior is undefined; issue an error.
5118 Typedefs for 'void' are OK (see DR#157). */
5119 if (b->prev == 0 /* one binding */
5120 && TREE_CODE (b->decl) == PARM_DECL /* which is a parameter */
5121 && !DECL_NAME (b->decl) /* anonymous */
5122 && VOID_TYPE_P (TREE_TYPE (b->decl))) /* of void type */
5124 if (TREE_THIS_VOLATILE (b->decl)
5125 || TREE_READONLY (b->decl)
5126 || C_DECL_REGISTER (b->decl))
5127 error ("%<void%> as only parameter may not be qualified");
5129 /* There cannot be an ellipsis. */
5130 if (ellipsis)
5131 error ("%<void%> must be the only parameter");
5133 arg_info->types = void_list_node;
5134 return arg_info;
5137 if (!ellipsis)
5138 types = void_list_node;
5140 /* Break up the bindings list into parms, tags, types, and others;
5141 apply sanity checks; purge the name-to-decl bindings. */
5142 while (b)
5144 tree decl = b->decl;
5145 tree type = TREE_TYPE (decl);
5146 const char *keyword;
5148 switch (TREE_CODE (decl))
5150 case PARM_DECL:
5151 if (b->id)
5153 gcc_assert (I_SYMBOL_BINDING (b->id) == b);
5154 I_SYMBOL_BINDING (b->id) = b->shadowed;
5157 /* Check for forward decls that never got their actual decl. */
5158 if (TREE_ASM_WRITTEN (decl))
5159 error ("parameter %q+D has just a forward declaration", decl);
5160 /* Check for (..., void, ...) and issue an error. */
5161 else if (VOID_TYPE_P (type) && !DECL_NAME (decl))
5163 if (!gave_void_only_once_err)
5165 error ("%<void%> must be the only parameter");
5166 gave_void_only_once_err = true;
5169 else
5171 /* Valid parameter, add it to the list. */
5172 TREE_CHAIN (decl) = parms;
5173 parms = decl;
5175 /* Since there is a prototype, args are passed in their
5176 declared types. The back end may override this later. */
5177 DECL_ARG_TYPE (decl) = type;
5178 types = tree_cons (0, type, types);
5180 break;
5182 case ENUMERAL_TYPE: keyword = "enum"; goto tag;
5183 case UNION_TYPE: keyword = "union"; goto tag;
5184 case RECORD_TYPE: keyword = "struct"; goto tag;
5185 tag:
5186 /* Types may not have tag-names, in which case the type
5187 appears in the bindings list with b->id NULL. */
5188 if (b->id)
5190 gcc_assert (I_TAG_BINDING (b->id) == b);
5191 I_TAG_BINDING (b->id) = b->shadowed;
5194 /* Warn about any struct, union or enum tags defined in a
5195 parameter list. The scope of such types is limited to
5196 the parameter list, which is rarely if ever desirable
5197 (it's impossible to call such a function with type-
5198 correct arguments). An anonymous union parm type is
5199 meaningful as a GNU extension, so don't warn for that. */
5200 if (TREE_CODE (decl) != UNION_TYPE || b->id != 0)
5202 if (b->id)
5203 /* The %s will be one of 'struct', 'union', or 'enum'. */
5204 warning (0, "%<%s %E%> declared inside parameter list",
5205 keyword, b->id);
5206 else
5207 /* The %s will be one of 'struct', 'union', or 'enum'. */
5208 warning (0, "anonymous %s declared inside parameter list",
5209 keyword);
5211 if (!explained_incomplete_types)
5213 warning (0, "its scope is only this definition or declaration,"
5214 " which is probably not what you want");
5215 explained_incomplete_types = true;
5219 tags = tree_cons (b->id, decl, tags);
5220 break;
5222 case CONST_DECL:
5223 case TYPE_DECL:
5224 case FUNCTION_DECL:
5225 /* CONST_DECLs appear here when we have an embedded enum,
5226 and TYPE_DECLs appear here when we have an embedded struct
5227 or union. No warnings for this - we already warned about the
5228 type itself. FUNCTION_DECLs appear when there is an implicit
5229 function declaration in the parameter list. */
5231 TREE_CHAIN (decl) = others;
5232 others = decl;
5233 /* fall through */
5235 case ERROR_MARK:
5236 /* error_mark_node appears here when we have an undeclared
5237 variable. Just throw it away. */
5238 if (b->id)
5240 gcc_assert (I_SYMBOL_BINDING (b->id) == b);
5241 I_SYMBOL_BINDING (b->id) = b->shadowed;
5243 break;
5245 /* Other things that might be encountered. */
5246 case LABEL_DECL:
5247 case VAR_DECL:
5248 default:
5249 gcc_unreachable ();
5252 b = free_binding_and_advance (b);
5255 arg_info->parms = parms;
5256 arg_info->tags = tags;
5257 arg_info->types = types;
5258 arg_info->others = others;
5259 arg_info->pending_sizes = get_pending_sizes ();
5260 return arg_info;
5263 /* Get the struct, enum or union (CODE says which) with tag NAME.
5264 Define the tag as a forward-reference if it is not defined.
5265 Return a c_typespec structure for the type specifier. */
5267 struct c_typespec
5268 parser_xref_tag (enum tree_code code, tree name)
5270 struct c_typespec ret;
5271 /* If a cross reference is requested, look up the type
5272 already defined for this tag and return it. */
5274 tree ref = lookup_tag (code, name, 0);
5275 /* If this is the right type of tag, return what we found.
5276 (This reference will be shadowed by shadow_tag later if appropriate.)
5277 If this is the wrong type of tag, do not return it. If it was the
5278 wrong type in the same scope, we will have had an error
5279 message already; if in a different scope and declaring
5280 a name, pending_xref_error will give an error message; but if in a
5281 different scope and not declaring a name, this tag should
5282 shadow the previous declaration of a different type of tag, and
5283 this would not work properly if we return the reference found.
5284 (For example, with "struct foo" in an outer scope, "union foo;"
5285 must shadow that tag with a new one of union type.) */
5286 ret.kind = (ref ? ctsk_tagref : ctsk_tagfirstref);
5287 if (ref && TREE_CODE (ref) == code)
5289 ret.spec = ref;
5290 return ret;
5293 /* If no such tag is yet defined, create a forward-reference node
5294 and record it as the "definition".
5295 When a real declaration of this type is found,
5296 the forward-reference will be altered into a real type. */
5298 ref = make_node (code);
5299 if (code == ENUMERAL_TYPE)
5301 /* Give the type a default layout like unsigned int
5302 to avoid crashing if it does not get defined. */
5303 TYPE_MODE (ref) = TYPE_MODE (unsigned_type_node);
5304 TYPE_ALIGN (ref) = TYPE_ALIGN (unsigned_type_node);
5305 TYPE_USER_ALIGN (ref) = 0;
5306 TYPE_UNSIGNED (ref) = 1;
5307 TYPE_PRECISION (ref) = TYPE_PRECISION (unsigned_type_node);
5308 TYPE_MIN_VALUE (ref) = TYPE_MIN_VALUE (unsigned_type_node);
5309 TYPE_MAX_VALUE (ref) = TYPE_MAX_VALUE (unsigned_type_node);
5312 pushtag (name, ref);
5314 ret.spec = ref;
5315 return ret;
5318 /* Get the struct, enum or union (CODE says which) with tag NAME.
5319 Define the tag as a forward-reference if it is not defined.
5320 Return a tree for the type. */
5322 tree
5323 xref_tag (enum tree_code code, tree name)
5325 return parser_xref_tag (code, name).spec;
5328 /* Make sure that the tag NAME is defined *in the current scope*
5329 at least as a forward reference.
5330 CODE says which kind of tag NAME ought to be. */
5332 tree
5333 start_struct (enum tree_code code, tree name)
5335 /* If there is already a tag defined at this scope
5336 (as a forward reference), just return it. */
5338 tree ref = 0;
5340 if (name != 0)
5341 ref = lookup_tag (code, name, 1);
5342 if (ref && TREE_CODE (ref) == code)
5344 if (TYPE_SIZE (ref))
5346 if (code == UNION_TYPE)
5347 error ("redefinition of %<union %E%>", name);
5348 else
5349 error ("redefinition of %<struct %E%>", name);
5351 else if (C_TYPE_BEING_DEFINED (ref))
5353 if (code == UNION_TYPE)
5354 error ("nested redefinition of %<union %E%>", name);
5355 else
5356 error ("nested redefinition of %<struct %E%>", name);
5357 /* Don't create structures that contain themselves. */
5358 ref = NULL_TREE;
5362 /* Otherwise create a forward-reference just so the tag is in scope. */
5364 if (ref == NULL_TREE || TREE_CODE (ref) != code)
5366 ref = make_node (code);
5367 pushtag (name, ref);
5370 C_TYPE_BEING_DEFINED (ref) = 1;
5371 TYPE_PACKED (ref) = flag_pack_struct;
5372 return ref;
5375 /* Process the specs, declarator and width (NULL if omitted)
5376 of a structure component, returning a FIELD_DECL node.
5377 WIDTH is non-NULL for bit-fields only, and is an INTEGER_CST node.
5378 DECL_ATTRS is as for grokdeclarator.
5380 This is done during the parsing of the struct declaration.
5381 The FIELD_DECL nodes are chained together and the lot of them
5382 are ultimately passed to `build_struct' to make the RECORD_TYPE node. */
5384 tree
5385 grokfield (struct c_declarator *declarator, struct c_declspecs *declspecs,
5386 tree width, tree *decl_attrs)
5388 tree value;
5390 if (declarator->kind == cdk_id && declarator->u.id == NULL_TREE
5391 && width == NULL_TREE)
5393 /* This is an unnamed decl.
5395 If we have something of the form "union { list } ;" then this
5396 is the anonymous union extension. Similarly for struct.
5398 If this is something of the form "struct foo;", then
5399 If MS extensions are enabled, this is handled as an
5400 anonymous struct.
5401 Otherwise this is a forward declaration of a structure tag.
5403 If this is something of the form "foo;" and foo is a TYPE_DECL, then
5404 If MS extensions are enabled and foo names a structure, then
5405 again this is an anonymous struct.
5406 Otherwise this is an error.
5408 Oh what a horrid tangled web we weave. I wonder if MS consciously
5409 took this from Plan 9 or if it was an accident of implementation
5410 that took root before someone noticed the bug... */
5412 tree type = declspecs->type;
5413 bool type_ok = (TREE_CODE (type) == RECORD_TYPE
5414 || TREE_CODE (type) == UNION_TYPE);
5415 bool ok = false;
5417 if (type_ok
5418 && (flag_ms_extensions || !declspecs->typedef_p))
5420 if (flag_ms_extensions)
5421 ok = true;
5422 else if (flag_iso)
5423 ok = false;
5424 else if (TYPE_NAME (type) == NULL)
5425 ok = true;
5426 else
5427 ok = false;
5429 if (!ok)
5431 pedwarn ("declaration does not declare anything");
5432 return NULL_TREE;
5434 if (pedantic)
5435 pedwarn ("ISO C doesn%'t support unnamed structs/unions");
5438 value = grokdeclarator (declarator, declspecs, FIELD, false,
5439 width ? &width : NULL, decl_attrs,
5440 DEPRECATED_NORMAL);
5442 finish_decl (value, NULL_TREE, NULL_TREE);
5443 DECL_INITIAL (value) = width;
5445 return value;
5448 /* Generate an error for any duplicate field names in FIELDLIST. Munge
5449 the list such that this does not present a problem later. */
5451 static void
5452 detect_field_duplicates (tree fieldlist)
5454 tree x, y;
5455 int timeout = 10;
5457 /* First, see if there are more than "a few" fields.
5458 This is trivially true if there are zero or one fields. */
5459 if (!fieldlist)
5460 return;
5461 x = TREE_CHAIN (fieldlist);
5462 if (!x)
5463 return;
5464 do {
5465 timeout--;
5466 x = TREE_CHAIN (x);
5467 } while (timeout > 0 && x);
5469 /* If there were "few" fields, avoid the overhead of allocating
5470 a hash table. Instead just do the nested traversal thing. */
5471 if (timeout > 0)
5473 for (x = TREE_CHAIN (fieldlist); x ; x = TREE_CHAIN (x))
5474 if (DECL_NAME (x))
5476 for (y = fieldlist; y != x; y = TREE_CHAIN (y))
5477 if (DECL_NAME (y) == DECL_NAME (x))
5479 error ("duplicate member %q+D", x);
5480 DECL_NAME (x) = NULL_TREE;
5484 else
5486 htab_t htab = htab_create (37, htab_hash_pointer, htab_eq_pointer, NULL);
5487 void **slot;
5489 for (x = fieldlist; x ; x = TREE_CHAIN (x))
5490 if ((y = DECL_NAME (x)) != 0)
5492 slot = htab_find_slot (htab, y, INSERT);
5493 if (*slot)
5495 error ("duplicate member %q+D", x);
5496 DECL_NAME (x) = NULL_TREE;
5498 *slot = y;
5501 htab_delete (htab);
5505 /* Fill in the fields of a RECORD_TYPE or UNION_TYPE node, T.
5506 FIELDLIST is a chain of FIELD_DECL nodes for the fields.
5507 ATTRIBUTES are attributes to be applied to the structure. */
5509 tree
5510 finish_struct (tree t, tree fieldlist, tree attributes)
5512 tree x;
5513 bool toplevel = file_scope == current_scope;
5514 int saw_named_field;
5516 /* If this type was previously laid out as a forward reference,
5517 make sure we lay it out again. */
5519 TYPE_SIZE (t) = 0;
5521 decl_attributes (&t, attributes, (int) ATTR_FLAG_TYPE_IN_PLACE);
5523 if (pedantic)
5525 for (x = fieldlist; x; x = TREE_CHAIN (x))
5526 if (DECL_NAME (x) != 0)
5527 break;
5529 if (x == 0)
5531 if (TREE_CODE (t) == UNION_TYPE)
5533 if (fieldlist)
5534 pedwarn ("union has no named members");
5535 else
5536 pedwarn ("union has no members");
5538 else
5540 if (fieldlist)
5541 pedwarn ("struct has no named members");
5542 else
5543 pedwarn ("struct has no members");
5548 /* Install struct as DECL_CONTEXT of each field decl.
5549 Also process specified field sizes, found in the DECL_INITIAL,
5550 storing 0 there after the type has been changed to precision equal
5551 to its width, rather than the precision of the specified standard
5552 type. (Correct layout requires the original type to have been preserved
5553 until now.) */
5555 saw_named_field = 0;
5556 for (x = fieldlist; x; x = TREE_CHAIN (x))
5558 if (TREE_TYPE (x) == error_mark_node)
5559 continue;
5561 DECL_CONTEXT (x) = t;
5563 if (TYPE_PACKED (t) && TYPE_ALIGN (TREE_TYPE (x)) > BITS_PER_UNIT)
5564 DECL_PACKED (x) = 1;
5566 /* If any field is const, the structure type is pseudo-const. */
5567 if (TREE_READONLY (x))
5568 C_TYPE_FIELDS_READONLY (t) = 1;
5569 else
5571 /* A field that is pseudo-const makes the structure likewise. */
5572 tree t1 = TREE_TYPE (x);
5573 while (TREE_CODE (t1) == ARRAY_TYPE)
5574 t1 = TREE_TYPE (t1);
5575 if ((TREE_CODE (t1) == RECORD_TYPE || TREE_CODE (t1) == UNION_TYPE)
5576 && C_TYPE_FIELDS_READONLY (t1))
5577 C_TYPE_FIELDS_READONLY (t) = 1;
5580 /* Any field that is volatile means variables of this type must be
5581 treated in some ways as volatile. */
5582 if (TREE_THIS_VOLATILE (x))
5583 C_TYPE_FIELDS_VOLATILE (t) = 1;
5585 /* Any field of nominal variable size implies structure is too. */
5586 if (C_DECL_VARIABLE_SIZE (x))
5587 C_TYPE_VARIABLE_SIZE (t) = 1;
5589 if (DECL_INITIAL (x))
5591 unsigned HOST_WIDE_INT width = tree_low_cst (DECL_INITIAL (x), 1);
5592 DECL_SIZE (x) = bitsize_int (width);
5593 DECL_BIT_FIELD (x) = 1;
5594 SET_DECL_C_BIT_FIELD (x);
5597 /* Detect flexible array member in an invalid context. */
5598 if (TREE_CODE (TREE_TYPE (x)) == ARRAY_TYPE
5599 && TYPE_SIZE (TREE_TYPE (x)) == NULL_TREE
5600 && TYPE_DOMAIN (TREE_TYPE (x)) != NULL_TREE
5601 && TYPE_MAX_VALUE (TYPE_DOMAIN (TREE_TYPE (x))) == NULL_TREE)
5603 if (TREE_CODE (t) == UNION_TYPE)
5605 error ("%Jflexible array member in union", x);
5606 TREE_TYPE (x) = error_mark_node;
5608 else if (TREE_CHAIN (x) != NULL_TREE)
5610 error ("%Jflexible array member not at end of struct", x);
5611 TREE_TYPE (x) = error_mark_node;
5613 else if (!saw_named_field)
5615 error ("%Jflexible array member in otherwise empty struct", x);
5616 TREE_TYPE (x) = error_mark_node;
5620 if (pedantic && !in_system_header && TREE_CODE (t) == RECORD_TYPE
5621 && flexible_array_type_p (TREE_TYPE (x)))
5622 pedwarn ("%Jinvalid use of structure with flexible array member", x);
5624 if (DECL_NAME (x))
5625 saw_named_field = 1;
5628 detect_field_duplicates (fieldlist);
5630 /* Now we have the nearly final fieldlist. Record it,
5631 then lay out the structure or union (including the fields). */
5633 TYPE_FIELDS (t) = fieldlist;
5635 layout_type (t);
5637 /* Give bit-fields their proper types. */
5639 tree *fieldlistp = &fieldlist;
5640 while (*fieldlistp)
5641 if (TREE_CODE (*fieldlistp) == FIELD_DECL && DECL_INITIAL (*fieldlistp)
5642 && TREE_TYPE (*fieldlistp) != error_mark_node)
5644 unsigned HOST_WIDE_INT width
5645 = tree_low_cst (DECL_INITIAL (*fieldlistp), 1);
5646 tree type = TREE_TYPE (*fieldlistp);
5647 if (width != TYPE_PRECISION (type))
5649 TREE_TYPE (*fieldlistp)
5650 = c_build_bitfield_integer_type (width, TYPE_UNSIGNED (type));
5651 DECL_MODE (*fieldlistp) = TYPE_MODE (TREE_TYPE (*fieldlistp));
5653 DECL_INITIAL (*fieldlistp) = 0;
5655 else
5656 fieldlistp = &TREE_CHAIN (*fieldlistp);
5659 /* Now we have the truly final field list.
5660 Store it in this type and in the variants. */
5662 TYPE_FIELDS (t) = fieldlist;
5664 /* If there are lots of fields, sort so we can look through them fast.
5665 We arbitrarily consider 16 or more elts to be "a lot". */
5668 int len = 0;
5670 for (x = fieldlist; x; x = TREE_CHAIN (x))
5672 if (len > 15 || DECL_NAME (x) == NULL)
5673 break;
5674 len += 1;
5677 if (len > 15)
5679 tree *field_array;
5680 struct lang_type *space;
5681 struct sorted_fields_type *space2;
5683 len += list_length (x);
5685 /* Use the same allocation policy here that make_node uses, to
5686 ensure that this lives as long as the rest of the struct decl.
5687 All decls in an inline function need to be saved. */
5689 space = GGC_CNEW (struct lang_type);
5690 space2 = GGC_NEWVAR (struct sorted_fields_type,
5691 sizeof (struct sorted_fields_type) + len * sizeof (tree));
5693 len = 0;
5694 space->s = space2;
5695 field_array = &space2->elts[0];
5696 for (x = fieldlist; x; x = TREE_CHAIN (x))
5698 field_array[len++] = x;
5700 /* If there is anonymous struct or union, break out of the loop. */
5701 if (DECL_NAME (x) == NULL)
5702 break;
5704 /* Found no anonymous struct/union. Add the TYPE_LANG_SPECIFIC. */
5705 if (x == NULL)
5707 TYPE_LANG_SPECIFIC (t) = space;
5708 TYPE_LANG_SPECIFIC (t)->s->len = len;
5709 field_array = TYPE_LANG_SPECIFIC (t)->s->elts;
5710 qsort (field_array, len, sizeof (tree), field_decl_cmp);
5715 for (x = TYPE_MAIN_VARIANT (t); x; x = TYPE_NEXT_VARIANT (x))
5717 TYPE_FIELDS (x) = TYPE_FIELDS (t);
5718 TYPE_LANG_SPECIFIC (x) = TYPE_LANG_SPECIFIC (t);
5719 C_TYPE_FIELDS_READONLY (x) = C_TYPE_FIELDS_READONLY (t);
5720 C_TYPE_FIELDS_VOLATILE (x) = C_TYPE_FIELDS_VOLATILE (t);
5721 C_TYPE_VARIABLE_SIZE (x) = C_TYPE_VARIABLE_SIZE (t);
5724 /* If this was supposed to be a transparent union, but we can't
5725 make it one, warn and turn off the flag. */
5726 if (TREE_CODE (t) == UNION_TYPE
5727 && TYPE_TRANSPARENT_UNION (t)
5728 && (!TYPE_FIELDS (t) || TYPE_MODE (t) != DECL_MODE (TYPE_FIELDS (t))))
5730 TYPE_TRANSPARENT_UNION (t) = 0;
5731 warning (0, "union cannot be made transparent");
5734 /* If this structure or union completes the type of any previous
5735 variable declaration, lay it out and output its rtl. */
5736 for (x = C_TYPE_INCOMPLETE_VARS (TYPE_MAIN_VARIANT (t));
5738 x = TREE_CHAIN (x))
5740 tree decl = TREE_VALUE (x);
5741 if (TREE_CODE (TREE_TYPE (decl)) == ARRAY_TYPE)
5742 layout_array_type (TREE_TYPE (decl));
5743 if (TREE_CODE (decl) != TYPE_DECL)
5745 layout_decl (decl, 0);
5746 if (c_dialect_objc ())
5747 objc_check_decl (decl);
5748 rest_of_decl_compilation (decl, toplevel, 0);
5749 if (!toplevel)
5750 expand_decl (decl);
5753 C_TYPE_INCOMPLETE_VARS (TYPE_MAIN_VARIANT (t)) = 0;
5755 /* Finish debugging output for this type. */
5756 rest_of_type_compilation (t, toplevel);
5758 /* If we're inside a function proper, i.e. not file-scope and not still
5759 parsing parameters, then arrange for the size of a variable sized type
5760 to be bound now. */
5761 if (cur_stmt_list && variably_modified_type_p (t, NULL_TREE))
5762 add_stmt (build_stmt (DECL_EXPR, build_decl (TYPE_DECL, NULL, t)));
5764 return t;
5767 /* Lay out the type T, and its element type, and so on. */
5769 static void
5770 layout_array_type (tree t)
5772 if (TREE_CODE (TREE_TYPE (t)) == ARRAY_TYPE)
5773 layout_array_type (TREE_TYPE (t));
5774 layout_type (t);
5777 /* Begin compiling the definition of an enumeration type.
5778 NAME is its name (or null if anonymous).
5779 Returns the type object, as yet incomplete.
5780 Also records info about it so that build_enumerator
5781 may be used to declare the individual values as they are read. */
5783 tree
5784 start_enum (struct c_enum_contents *the_enum, tree name)
5786 tree enumtype = 0;
5788 /* If this is the real definition for a previous forward reference,
5789 fill in the contents in the same object that used to be the
5790 forward reference. */
5792 if (name != 0)
5793 enumtype = lookup_tag (ENUMERAL_TYPE, name, 1);
5795 if (enumtype == 0 || TREE_CODE (enumtype) != ENUMERAL_TYPE)
5797 enumtype = make_node (ENUMERAL_TYPE);
5798 pushtag (name, enumtype);
5801 if (C_TYPE_BEING_DEFINED (enumtype))
5802 error ("nested redefinition of %<enum %E%>", name);
5804 C_TYPE_BEING_DEFINED (enumtype) = 1;
5806 if (TYPE_VALUES (enumtype) != 0)
5808 /* This enum is a named one that has been declared already. */
5809 error ("redeclaration of %<enum %E%>", name);
5811 /* Completely replace its old definition.
5812 The old enumerators remain defined, however. */
5813 TYPE_VALUES (enumtype) = 0;
5816 the_enum->enum_next_value = integer_zero_node;
5817 the_enum->enum_overflow = 0;
5819 if (flag_short_enums)
5820 TYPE_PACKED (enumtype) = 1;
5822 return enumtype;
5825 /* After processing and defining all the values of an enumeration type,
5826 install their decls in the enumeration type and finish it off.
5827 ENUMTYPE is the type object, VALUES a list of decl-value pairs,
5828 and ATTRIBUTES are the specified attributes.
5829 Returns ENUMTYPE. */
5831 tree
5832 finish_enum (tree enumtype, tree values, tree attributes)
5834 tree pair, tem;
5835 tree minnode = 0, maxnode = 0;
5836 int precision, unsign;
5837 bool toplevel = (file_scope == current_scope);
5838 struct lang_type *lt;
5840 decl_attributes (&enumtype, attributes, (int) ATTR_FLAG_TYPE_IN_PLACE);
5842 /* Calculate the maximum value of any enumerator in this type. */
5844 if (values == error_mark_node)
5845 minnode = maxnode = integer_zero_node;
5846 else
5848 minnode = maxnode = TREE_VALUE (values);
5849 for (pair = TREE_CHAIN (values); pair; pair = TREE_CHAIN (pair))
5851 tree value = TREE_VALUE (pair);
5852 if (tree_int_cst_lt (maxnode, value))
5853 maxnode = value;
5854 if (tree_int_cst_lt (value, minnode))
5855 minnode = value;
5859 /* Construct the final type of this enumeration. It is the same
5860 as one of the integral types - the narrowest one that fits, except
5861 that normally we only go as narrow as int - and signed iff any of
5862 the values are negative. */
5863 unsign = (tree_int_cst_sgn (minnode) >= 0);
5864 precision = MAX (min_precision (minnode, unsign),
5865 min_precision (maxnode, unsign));
5867 if (TYPE_PACKED (enumtype) || precision > TYPE_PRECISION (integer_type_node))
5869 tem = c_common_type_for_size (precision, unsign);
5870 if (tem == NULL)
5872 warning (0, "enumeration values exceed range of largest integer");
5873 tem = long_long_integer_type_node;
5876 else
5877 tem = unsign ? unsigned_type_node : integer_type_node;
5879 TYPE_MIN_VALUE (enumtype) = TYPE_MIN_VALUE (tem);
5880 TYPE_MAX_VALUE (enumtype) = TYPE_MAX_VALUE (tem);
5881 TYPE_UNSIGNED (enumtype) = TYPE_UNSIGNED (tem);
5882 TYPE_SIZE (enumtype) = 0;
5884 /* If the precision of the type was specific with an attribute and it
5885 was too small, give an error. Otherwise, use it. */
5886 if (TYPE_PRECISION (enumtype))
5888 if (precision > TYPE_PRECISION (enumtype))
5889 error ("specified mode too small for enumeral values");
5891 else
5892 TYPE_PRECISION (enumtype) = TYPE_PRECISION (tem);
5894 layout_type (enumtype);
5896 if (values != error_mark_node)
5898 /* Change the type of the enumerators to be the enum type. We
5899 need to do this irrespective of the size of the enum, for
5900 proper type checking. Replace the DECL_INITIALs of the
5901 enumerators, and the value slots of the list, with copies
5902 that have the enum type; they cannot be modified in place
5903 because they may be shared (e.g. integer_zero_node) Finally,
5904 change the purpose slots to point to the names of the decls. */
5905 for (pair = values; pair; pair = TREE_CHAIN (pair))
5907 tree enu = TREE_PURPOSE (pair);
5908 tree ini = DECL_INITIAL (enu);
5910 TREE_TYPE (enu) = enumtype;
5912 /* The ISO C Standard mandates enumerators to have type int,
5913 even though the underlying type of an enum type is
5914 unspecified. Here we convert any enumerators that fit in
5915 an int to type int, to avoid promotions to unsigned types
5916 when comparing integers with enumerators that fit in the
5917 int range. When -pedantic is given, build_enumerator()
5918 would have already taken care of those that don't fit. */
5919 if (int_fits_type_p (ini, integer_type_node))
5920 tem = integer_type_node;
5921 else
5922 tem = enumtype;
5923 ini = convert (tem, ini);
5925 DECL_INITIAL (enu) = ini;
5926 TREE_PURPOSE (pair) = DECL_NAME (enu);
5927 TREE_VALUE (pair) = ini;
5930 TYPE_VALUES (enumtype) = values;
5933 /* Record the min/max values so that we can warn about bit-field
5934 enumerations that are too small for the values. */
5935 lt = GGC_CNEW (struct lang_type);
5936 lt->enum_min = minnode;
5937 lt->enum_max = maxnode;
5938 TYPE_LANG_SPECIFIC (enumtype) = lt;
5940 /* Fix up all variant types of this enum type. */
5941 for (tem = TYPE_MAIN_VARIANT (enumtype); tem; tem = TYPE_NEXT_VARIANT (tem))
5943 if (tem == enumtype)
5944 continue;
5945 TYPE_VALUES (tem) = TYPE_VALUES (enumtype);
5946 TYPE_MIN_VALUE (tem) = TYPE_MIN_VALUE (enumtype);
5947 TYPE_MAX_VALUE (tem) = TYPE_MAX_VALUE (enumtype);
5948 TYPE_SIZE (tem) = TYPE_SIZE (enumtype);
5949 TYPE_SIZE_UNIT (tem) = TYPE_SIZE_UNIT (enumtype);
5950 TYPE_MODE (tem) = TYPE_MODE (enumtype);
5951 TYPE_PRECISION (tem) = TYPE_PRECISION (enumtype);
5952 TYPE_ALIGN (tem) = TYPE_ALIGN (enumtype);
5953 TYPE_USER_ALIGN (tem) = TYPE_USER_ALIGN (enumtype);
5954 TYPE_UNSIGNED (tem) = TYPE_UNSIGNED (enumtype);
5955 TYPE_LANG_SPECIFIC (tem) = TYPE_LANG_SPECIFIC (enumtype);
5958 /* Finish debugging output for this type. */
5959 rest_of_type_compilation (enumtype, toplevel);
5961 return enumtype;
5964 /* Build and install a CONST_DECL for one value of the
5965 current enumeration type (one that was begun with start_enum).
5966 Return a tree-list containing the CONST_DECL and its value.
5967 Assignment of sequential values by default is handled here. */
5969 tree
5970 build_enumerator (struct c_enum_contents *the_enum, tree name, tree value)
5972 tree decl, type;
5974 /* Validate and default VALUE. */
5976 if (value != 0)
5978 /* Don't issue more errors for error_mark_node (i.e. an
5979 undeclared identifier) - just ignore the value expression. */
5980 if (value == error_mark_node)
5981 value = 0;
5982 else if (!INTEGRAL_TYPE_P (TREE_TYPE (value))
5983 || TREE_CODE (value) != INTEGER_CST)
5985 error ("enumerator value for %qE is not an integer constant", name);
5986 value = 0;
5988 else
5990 value = default_conversion (value);
5991 constant_expression_warning (value);
5995 /* Default based on previous value. */
5996 /* It should no longer be possible to have NON_LVALUE_EXPR
5997 in the default. */
5998 if (value == 0)
6000 value = the_enum->enum_next_value;
6001 if (the_enum->enum_overflow)
6002 error ("overflow in enumeration values");
6005 if (pedantic && !int_fits_type_p (value, integer_type_node))
6007 pedwarn ("ISO C restricts enumerator values to range of %<int%>");
6008 /* XXX This causes -pedantic to change the meaning of the program.
6009 Remove? -zw 2004-03-15 */
6010 value = convert (integer_type_node, value);
6013 /* Set basis for default for next value. */
6014 the_enum->enum_next_value = build_binary_op (PLUS_EXPR, value,
6015 integer_one_node, 0);
6016 the_enum->enum_overflow = tree_int_cst_lt (the_enum->enum_next_value, value);
6018 /* Now create a declaration for the enum value name. */
6020 type = TREE_TYPE (value);
6021 type = c_common_type_for_size (MAX (TYPE_PRECISION (type),
6022 TYPE_PRECISION (integer_type_node)),
6023 (TYPE_PRECISION (type)
6024 >= TYPE_PRECISION (integer_type_node)
6025 && TYPE_UNSIGNED (type)));
6027 decl = build_decl (CONST_DECL, name, type);
6028 DECL_INITIAL (decl) = convert (type, value);
6029 pushdecl (decl);
6031 return tree_cons (decl, value, NULL_TREE);
6035 /* Create the FUNCTION_DECL for a function definition.
6036 DECLSPECS, DECLARATOR and ATTRIBUTES are the parts of
6037 the declaration; they describe the function's name and the type it returns,
6038 but twisted together in a fashion that parallels the syntax of C.
6040 This function creates a binding context for the function body
6041 as well as setting up the FUNCTION_DECL in current_function_decl.
6043 Returns 1 on success. If the DECLARATOR is not suitable for a function
6044 (it defines a datum instead), we return 0, which tells
6045 yyparse to report a parse error. */
6048 start_function (struct c_declspecs *declspecs, struct c_declarator *declarator,
6049 tree attributes)
6051 tree decl1, old_decl;
6052 tree restype, resdecl;
6053 struct c_label_context_se *nstack_se;
6054 struct c_label_context_vm *nstack_vm;
6056 current_function_returns_value = 0; /* Assume, until we see it does. */
6057 current_function_returns_null = 0;
6058 current_function_returns_abnormally = 0;
6059 warn_about_return_type = 0;
6060 c_switch_stack = NULL;
6062 nstack_se = XOBNEW (&parser_obstack, struct c_label_context_se);
6063 nstack_se->labels_def = NULL;
6064 nstack_se->labels_used = NULL;
6065 nstack_se->next = label_context_stack_se;
6066 label_context_stack_se = nstack_se;
6068 nstack_vm = XOBNEW (&parser_obstack, struct c_label_context_vm);
6069 nstack_vm->labels_def = NULL;
6070 nstack_vm->labels_used = NULL;
6071 nstack_vm->scope = 0;
6072 nstack_vm->next = label_context_stack_vm;
6073 label_context_stack_vm = nstack_vm;
6075 /* Indicate no valid break/continue context by setting these variables
6076 to some non-null, non-label value. We'll notice and emit the proper
6077 error message in c_finish_bc_stmt. */
6078 c_break_label = c_cont_label = size_zero_node;
6080 decl1 = grokdeclarator (declarator, declspecs, FUNCDEF, true, NULL,
6081 &attributes, DEPRECATED_NORMAL);
6083 /* If the declarator is not suitable for a function definition,
6084 cause a syntax error. */
6085 if (decl1 == 0)
6087 label_context_stack_se = label_context_stack_se->next;
6088 label_context_stack_vm = label_context_stack_vm->next;
6089 return 0;
6092 decl_attributes (&decl1, attributes, 0);
6094 if (DECL_DECLARED_INLINE_P (decl1)
6095 && DECL_UNINLINABLE (decl1)
6096 && lookup_attribute ("noinline", DECL_ATTRIBUTES (decl1)))
6097 warning (OPT_Wattributes, "inline function %q+D given attribute noinline",
6098 decl1);
6100 /* Handle gnu_inline attribute. */
6101 if (declspecs->inline_p
6102 && !flag_gnu89_inline
6103 && TREE_CODE (decl1) == FUNCTION_DECL
6104 && lookup_attribute ("gnu_inline", DECL_ATTRIBUTES (decl1)))
6106 if (declspecs->storage_class != csc_static)
6107 DECL_EXTERNAL (decl1) = !DECL_EXTERNAL (decl1);
6110 announce_function (decl1);
6112 if (!COMPLETE_OR_VOID_TYPE_P (TREE_TYPE (TREE_TYPE (decl1))))
6114 error ("return type is an incomplete type");
6115 /* Make it return void instead. */
6116 TREE_TYPE (decl1)
6117 = build_function_type (void_type_node,
6118 TYPE_ARG_TYPES (TREE_TYPE (decl1)));
6121 if (warn_about_return_type)
6122 pedwarn_c99 ("return type defaults to %<int%>");
6124 /* Make the init_value nonzero so pushdecl knows this is not tentative.
6125 error_mark_node is replaced below (in pop_scope) with the BLOCK. */
6126 DECL_INITIAL (decl1) = error_mark_node;
6128 /* If this definition isn't a prototype and we had a prototype declaration
6129 before, copy the arg type info from that prototype. */
6130 old_decl = lookup_name_in_scope (DECL_NAME (decl1), current_scope);
6131 if (old_decl && TREE_CODE (old_decl) != FUNCTION_DECL)
6132 old_decl = 0;
6133 current_function_prototype_locus = UNKNOWN_LOCATION;
6134 current_function_prototype_built_in = false;
6135 current_function_prototype_arg_types = NULL_TREE;
6136 if (TYPE_ARG_TYPES (TREE_TYPE (decl1)) == 0)
6138 if (old_decl != 0 && TREE_CODE (TREE_TYPE (old_decl)) == FUNCTION_TYPE
6139 && comptypes (TREE_TYPE (TREE_TYPE (decl1)),
6140 TREE_TYPE (TREE_TYPE (old_decl))))
6142 TREE_TYPE (decl1) = composite_type (TREE_TYPE (old_decl),
6143 TREE_TYPE (decl1));
6144 current_function_prototype_locus = DECL_SOURCE_LOCATION (old_decl);
6145 current_function_prototype_built_in
6146 = C_DECL_BUILTIN_PROTOTYPE (old_decl);
6147 current_function_prototype_arg_types
6148 = TYPE_ARG_TYPES (TREE_TYPE (decl1));
6150 if (TREE_PUBLIC (decl1))
6152 /* If there is an external prototype declaration of this
6153 function, record its location but do not copy information
6154 to this decl. This may be an invisible declaration
6155 (built-in or in a scope which has finished) or simply
6156 have more refined argument types than any declaration
6157 found above. */
6158 struct c_binding *b;
6159 for (b = I_SYMBOL_BINDING (DECL_NAME (decl1)); b; b = b->shadowed)
6160 if (B_IN_SCOPE (b, external_scope))
6161 break;
6162 if (b)
6164 tree ext_decl, ext_type;
6165 ext_decl = b->decl;
6166 ext_type = b->type ? b->type : TREE_TYPE (ext_decl);
6167 if (TREE_CODE (ext_type) == FUNCTION_TYPE
6168 && comptypes (TREE_TYPE (TREE_TYPE (decl1)),
6169 TREE_TYPE (ext_type)))
6171 current_function_prototype_locus
6172 = DECL_SOURCE_LOCATION (ext_decl);
6173 current_function_prototype_built_in
6174 = C_DECL_BUILTIN_PROTOTYPE (ext_decl);
6175 current_function_prototype_arg_types
6176 = TYPE_ARG_TYPES (ext_type);
6182 /* Optionally warn of old-fashioned def with no previous prototype. */
6183 if (warn_strict_prototypes
6184 && old_decl != error_mark_node
6185 && TYPE_ARG_TYPES (TREE_TYPE (decl1)) == 0
6186 && C_DECL_ISNT_PROTOTYPE (old_decl))
6187 warning (OPT_Wstrict_prototypes,
6188 "function declaration isn%'t a prototype");
6189 /* Optionally warn of any global def with no previous prototype. */
6190 else if (warn_missing_prototypes
6191 && old_decl != error_mark_node
6192 && TREE_PUBLIC (decl1)
6193 && !MAIN_NAME_P (DECL_NAME (decl1))
6194 && C_DECL_ISNT_PROTOTYPE (old_decl))
6195 warning (OPT_Wmissing_prototypes, "no previous prototype for %q+D", decl1);
6196 /* Optionally warn of any def with no previous prototype
6197 if the function has already been used. */
6198 else if (warn_missing_prototypes
6199 && old_decl != 0
6200 && old_decl != error_mark_node
6201 && TREE_USED (old_decl)
6202 && TYPE_ARG_TYPES (TREE_TYPE (old_decl)) == 0)
6203 warning (OPT_Wmissing_prototypes,
6204 "%q+D was used with no prototype before its definition", decl1);
6205 /* Optionally warn of any global def with no previous declaration. */
6206 else if (warn_missing_declarations
6207 && TREE_PUBLIC (decl1)
6208 && old_decl == 0
6209 && !MAIN_NAME_P (DECL_NAME (decl1)))
6210 warning (OPT_Wmissing_declarations, "no previous declaration for %q+D",
6211 decl1);
6212 /* Optionally warn of any def with no previous declaration
6213 if the function has already been used. */
6214 else if (warn_missing_declarations
6215 && old_decl != 0
6216 && old_decl != error_mark_node
6217 && TREE_USED (old_decl)
6218 && C_DECL_IMPLICIT (old_decl))
6219 warning (OPT_Wmissing_declarations,
6220 "%q+D was used with no declaration before its definition", decl1);
6222 /* This function exists in static storage.
6223 (This does not mean `static' in the C sense!) */
6224 TREE_STATIC (decl1) = 1;
6226 /* A nested function is not global. */
6227 if (current_function_decl != 0)
6228 TREE_PUBLIC (decl1) = 0;
6230 /* This is the earliest point at which we might know the assembler
6231 name of the function. Thus, if it's set before this, die horribly. */
6232 gcc_assert (!DECL_ASSEMBLER_NAME_SET_P (decl1));
6234 /* If #pragma weak was used, mark the decl weak now. */
6235 if (current_scope == file_scope)
6236 maybe_apply_pragma_weak (decl1);
6238 /* Warn for unlikely, improbable, or stupid declarations of `main'. */
6239 if (warn_main > 0 && MAIN_NAME_P (DECL_NAME (decl1)))
6241 if (TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (decl1)))
6242 != integer_type_node)
6243 pedwarn ("return type of %q+D is not %<int%>", decl1);
6245 check_main_parameter_types(decl1);
6247 if (!TREE_PUBLIC (decl1))
6248 pedwarn ("%q+D is normally a non-static function", decl1);
6251 /* Record the decl so that the function name is defined.
6252 If we already have a decl for this name, and it is a FUNCTION_DECL,
6253 use the old decl. */
6255 current_function_decl = pushdecl (decl1);
6257 push_scope ();
6258 declare_parm_level ();
6260 restype = TREE_TYPE (TREE_TYPE (current_function_decl));
6261 resdecl = build_decl (RESULT_DECL, NULL_TREE, restype);
6262 DECL_ARTIFICIAL (resdecl) = 1;
6263 DECL_IGNORED_P (resdecl) = 1;
6264 DECL_RESULT (current_function_decl) = resdecl;
6266 start_fname_decls ();
6268 return 1;
6271 /* Subroutine of store_parm_decls which handles new-style function
6272 definitions (prototype format). The parms already have decls, so we
6273 need only record them as in effect and complain if any redundant
6274 old-style parm decls were written. */
6275 static void
6276 store_parm_decls_newstyle (tree fndecl, const struct c_arg_info *arg_info)
6278 tree decl;
6280 if (current_scope->bindings)
6282 error ("%Jold-style parameter declarations in prototyped "
6283 "function definition", fndecl);
6285 /* Get rid of the old-style declarations. */
6286 pop_scope ();
6287 push_scope ();
6289 /* Don't issue this warning for nested functions, and don't issue this
6290 warning if we got here because ARG_INFO_TYPES was error_mark_node
6291 (this happens when a function definition has just an ellipsis in
6292 its parameter list). */
6293 else if (!in_system_header && !current_function_scope
6294 && arg_info->types != error_mark_node)
6295 warning (OPT_Wtraditional,
6296 "%Jtraditional C rejects ISO C style function definitions",
6297 fndecl);
6299 /* Now make all the parameter declarations visible in the function body.
6300 We can bypass most of the grunt work of pushdecl. */
6301 for (decl = arg_info->parms; decl; decl = TREE_CHAIN (decl))
6303 DECL_CONTEXT (decl) = current_function_decl;
6304 if (DECL_NAME (decl))
6306 bind (DECL_NAME (decl), decl, current_scope,
6307 /*invisible=*/false, /*nested=*/false);
6308 if (!TREE_USED (decl))
6309 warn_if_shadowing (decl);
6311 else
6312 error ("%Jparameter name omitted", decl);
6315 /* Record the parameter list in the function declaration. */
6316 DECL_ARGUMENTS (fndecl) = arg_info->parms;
6318 /* Now make all the ancillary declarations visible, likewise. */
6319 for (decl = arg_info->others; decl; decl = TREE_CHAIN (decl))
6321 DECL_CONTEXT (decl) = current_function_decl;
6322 if (DECL_NAME (decl))
6323 bind (DECL_NAME (decl), decl, current_scope,
6324 /*invisible=*/false, /*nested=*/false);
6327 /* And all the tag declarations. */
6328 for (decl = arg_info->tags; decl; decl = TREE_CHAIN (decl))
6329 if (TREE_PURPOSE (decl))
6330 bind (TREE_PURPOSE (decl), TREE_VALUE (decl), current_scope,
6331 /*invisible=*/false, /*nested=*/false);
6334 /* Subroutine of store_parm_decls which handles old-style function
6335 definitions (separate parameter list and declarations). */
6337 static void
6338 store_parm_decls_oldstyle (tree fndecl, const struct c_arg_info *arg_info)
6340 struct c_binding *b;
6341 tree parm, decl, last;
6342 tree parmids = arg_info->parms;
6343 struct pointer_set_t *seen_args = pointer_set_create ();
6345 if (!in_system_header)
6346 warning (OPT_Wold_style_definition, "%Jold-style function definition",
6347 fndecl);
6349 /* Match each formal parameter name with its declaration. Save each
6350 decl in the appropriate TREE_PURPOSE slot of the parmids chain. */
6351 for (parm = parmids; parm; parm = TREE_CHAIN (parm))
6353 if (TREE_VALUE (parm) == 0)
6355 error ("%Jparameter name missing from parameter list", fndecl);
6356 TREE_PURPOSE (parm) = 0;
6357 continue;
6360 b = I_SYMBOL_BINDING (TREE_VALUE (parm));
6361 if (b && B_IN_CURRENT_SCOPE (b))
6363 decl = b->decl;
6364 /* If we got something other than a PARM_DECL it is an error. */
6365 if (TREE_CODE (decl) != PARM_DECL)
6366 error ("%q+D declared as a non-parameter", decl);
6367 /* If the declaration is already marked, we have a duplicate
6368 name. Complain and ignore the duplicate. */
6369 else if (pointer_set_contains (seen_args, decl))
6371 error ("multiple parameters named %q+D", decl);
6372 TREE_PURPOSE (parm) = 0;
6373 continue;
6375 /* If the declaration says "void", complain and turn it into
6376 an int. */
6377 else if (VOID_TYPE_P (TREE_TYPE (decl)))
6379 error ("parameter %q+D declared with void type", decl);
6380 TREE_TYPE (decl) = integer_type_node;
6381 DECL_ARG_TYPE (decl) = integer_type_node;
6382 layout_decl (decl, 0);
6384 warn_if_shadowing (decl);
6386 /* If no declaration found, default to int. */
6387 else
6389 decl = build_decl (PARM_DECL, TREE_VALUE (parm), integer_type_node);
6390 DECL_ARG_TYPE (decl) = TREE_TYPE (decl);
6391 DECL_SOURCE_LOCATION (decl) = DECL_SOURCE_LOCATION (fndecl);
6392 pushdecl (decl);
6393 warn_if_shadowing (decl);
6395 if (flag_isoc99)
6396 pedwarn ("type of %q+D defaults to %<int%>", decl);
6397 else
6398 warning (OPT_Wmissing_parameter_type, "type of %q+D defaults to %<int%>", decl);
6401 TREE_PURPOSE (parm) = decl;
6402 pointer_set_insert (seen_args, decl);
6405 /* Now examine the parms chain for incomplete declarations
6406 and declarations with no corresponding names. */
6408 for (b = current_scope->bindings; b; b = b->prev)
6410 parm = b->decl;
6411 if (TREE_CODE (parm) != PARM_DECL)
6412 continue;
6414 if (TREE_TYPE (parm) != error_mark_node
6415 && !COMPLETE_TYPE_P (TREE_TYPE (parm)))
6417 error ("parameter %q+D has incomplete type", parm);
6418 TREE_TYPE (parm) = error_mark_node;
6421 if (!pointer_set_contains (seen_args, parm))
6423 error ("declaration for parameter %q+D but no such parameter", parm);
6425 /* Pretend the parameter was not missing.
6426 This gets us to a standard state and minimizes
6427 further error messages. */
6428 parmids = chainon (parmids, tree_cons (parm, 0, 0));
6432 /* Chain the declarations together in the order of the list of
6433 names. Store that chain in the function decl, replacing the
6434 list of names. Update the current scope to match. */
6435 DECL_ARGUMENTS (fndecl) = 0;
6437 for (parm = parmids; parm; parm = TREE_CHAIN (parm))
6438 if (TREE_PURPOSE (parm))
6439 break;
6440 if (parm && TREE_PURPOSE (parm))
6442 last = TREE_PURPOSE (parm);
6443 DECL_ARGUMENTS (fndecl) = last;
6445 for (parm = TREE_CHAIN (parm); parm; parm = TREE_CHAIN (parm))
6446 if (TREE_PURPOSE (parm))
6448 TREE_CHAIN (last) = TREE_PURPOSE (parm);
6449 last = TREE_PURPOSE (parm);
6451 TREE_CHAIN (last) = 0;
6454 pointer_set_destroy (seen_args);
6456 /* If there was a previous prototype,
6457 set the DECL_ARG_TYPE of each argument according to
6458 the type previously specified, and report any mismatches. */
6460 if (current_function_prototype_arg_types)
6462 tree type;
6463 for (parm = DECL_ARGUMENTS (fndecl),
6464 type = current_function_prototype_arg_types;
6465 parm || (type && TREE_VALUE (type) != error_mark_node
6466 && (TYPE_MAIN_VARIANT (TREE_VALUE (type)) != void_type_node));
6467 parm = TREE_CHAIN (parm), type = TREE_CHAIN (type))
6469 if (parm == 0 || type == 0
6470 || TYPE_MAIN_VARIANT (TREE_VALUE (type)) == void_type_node)
6472 if (current_function_prototype_built_in)
6473 warning (0, "number of arguments doesn%'t match "
6474 "built-in prototype");
6475 else
6477 error ("number of arguments doesn%'t match prototype");
6478 error ("%Hprototype declaration",
6479 &current_function_prototype_locus);
6481 break;
6483 /* Type for passing arg must be consistent with that
6484 declared for the arg. ISO C says we take the unqualified
6485 type for parameters declared with qualified type. */
6486 if (TREE_TYPE (parm) != error_mark_node
6487 && TREE_TYPE (type) != error_mark_node
6488 && !comptypes (TYPE_MAIN_VARIANT (DECL_ARG_TYPE (parm)),
6489 TYPE_MAIN_VARIANT (TREE_VALUE (type))))
6491 if (TYPE_MAIN_VARIANT (TREE_TYPE (parm))
6492 == TYPE_MAIN_VARIANT (TREE_VALUE (type)))
6494 /* Adjust argument to match prototype. E.g. a previous
6495 `int foo(float);' prototype causes
6496 `int foo(x) float x; {...}' to be treated like
6497 `int foo(float x) {...}'. This is particularly
6498 useful for argument types like uid_t. */
6499 DECL_ARG_TYPE (parm) = TREE_TYPE (parm);
6501 if (targetm.calls.promote_prototypes (TREE_TYPE (current_function_decl))
6502 && INTEGRAL_TYPE_P (TREE_TYPE (parm))
6503 && TYPE_PRECISION (TREE_TYPE (parm))
6504 < TYPE_PRECISION (integer_type_node))
6505 DECL_ARG_TYPE (parm) = integer_type_node;
6507 if (pedantic)
6509 /* ??? Is it possible to get here with a
6510 built-in prototype or will it always have
6511 been diagnosed as conflicting with an
6512 old-style definition and discarded? */
6513 if (current_function_prototype_built_in)
6514 warning (0, "promoted argument %qD "
6515 "doesn%'t match built-in prototype", parm);
6516 else
6518 pedwarn ("promoted argument %qD "
6519 "doesn%'t match prototype", parm);
6520 pedwarn ("%Hprototype declaration",
6521 &current_function_prototype_locus);
6525 else
6527 if (current_function_prototype_built_in)
6528 warning (0, "argument %qD doesn%'t match "
6529 "built-in prototype", parm);
6530 else
6532 error ("argument %qD doesn%'t match prototype", parm);
6533 error ("%Hprototype declaration",
6534 &current_function_prototype_locus);
6539 TYPE_ACTUAL_ARG_TYPES (TREE_TYPE (fndecl)) = 0;
6542 /* Otherwise, create a prototype that would match. */
6544 else
6546 tree actual = 0, last = 0, type;
6548 for (parm = DECL_ARGUMENTS (fndecl); parm; parm = TREE_CHAIN (parm))
6550 type = tree_cons (NULL_TREE, DECL_ARG_TYPE (parm), NULL_TREE);
6551 if (last)
6552 TREE_CHAIN (last) = type;
6553 else
6554 actual = type;
6555 last = type;
6557 type = tree_cons (NULL_TREE, void_type_node, NULL_TREE);
6558 if (last)
6559 TREE_CHAIN (last) = type;
6560 else
6561 actual = type;
6563 /* We are going to assign a new value for the TYPE_ACTUAL_ARG_TYPES
6564 of the type of this function, but we need to avoid having this
6565 affect the types of other similarly-typed functions, so we must
6566 first force the generation of an identical (but separate) type
6567 node for the relevant function type. The new node we create
6568 will be a variant of the main variant of the original function
6569 type. */
6571 TREE_TYPE (fndecl) = build_variant_type_copy (TREE_TYPE (fndecl));
6573 TYPE_ACTUAL_ARG_TYPES (TREE_TYPE (fndecl)) = actual;
6577 /* Store parameter declarations passed in ARG_INFO into the current
6578 function declaration. */
6580 void
6581 store_parm_decls_from (struct c_arg_info *arg_info)
6583 current_function_arg_info = arg_info;
6584 store_parm_decls ();
6587 /* Store the parameter declarations into the current function declaration.
6588 This is called after parsing the parameter declarations, before
6589 digesting the body of the function.
6591 For an old-style definition, construct a prototype out of the old-style
6592 parameter declarations and inject it into the function's type. */
6594 void
6595 store_parm_decls (void)
6597 tree fndecl = current_function_decl;
6598 bool proto;
6600 /* The argument information block for FNDECL. */
6601 struct c_arg_info *arg_info = current_function_arg_info;
6602 current_function_arg_info = 0;
6604 /* True if this definition is written with a prototype. Note:
6605 despite C99 6.7.5.3p14, we can *not* treat an empty argument
6606 list in a function definition as equivalent to (void) -- an
6607 empty argument list specifies the function has no parameters,
6608 but only (void) sets up a prototype for future calls. */
6609 proto = arg_info->types != 0;
6611 if (proto)
6612 store_parm_decls_newstyle (fndecl, arg_info);
6613 else
6614 store_parm_decls_oldstyle (fndecl, arg_info);
6616 /* The next call to push_scope will be a function body. */
6618 next_is_function_body = true;
6620 /* Write a record describing this function definition to the prototypes
6621 file (if requested). */
6623 gen_aux_info_record (fndecl, 1, 0, proto);
6625 /* Initialize the RTL code for the function. */
6626 allocate_struct_function (fndecl, false);
6628 /* Begin the statement tree for this function. */
6629 DECL_SAVED_TREE (fndecl) = push_stmt_list ();
6631 /* ??? Insert the contents of the pending sizes list into the function
6632 to be evaluated. The only reason left to have this is
6633 void foo(int n, int array[n++])
6634 because we throw away the array type in favor of a pointer type, and
6635 thus won't naturally see the SAVE_EXPR containing the increment. All
6636 other pending sizes would be handled by gimplify_parameters. */
6638 tree t;
6639 for (t = nreverse (get_pending_sizes ()); t ; t = TREE_CHAIN (t))
6640 add_stmt (TREE_VALUE (t));
6643 /* Even though we're inside a function body, we still don't want to
6644 call expand_expr to calculate the size of a variable-sized array.
6645 We haven't necessarily assigned RTL to all variables yet, so it's
6646 not safe to try to expand expressions involving them. */
6647 cfun->x_dont_save_pending_sizes_p = 1;
6650 /* Emit diagnostics that require gimple input for detection. Operate on
6651 FNDECL and all its nested functions. */
6653 static void
6654 c_gimple_diagnostics_recursively (tree fndecl)
6656 struct cgraph_node *cgn;
6658 /* Handle attribute((warn_unused_result)). Relies on gimple input. */
6659 c_warn_unused_result (&DECL_SAVED_TREE (fndecl));
6661 /* Notice when OpenMP structured block constraints are violated. */
6662 if (flag_openmp)
6663 diagnose_omp_structured_block_errors (fndecl);
6665 /* Finalize all nested functions now. */
6666 cgn = cgraph_node (fndecl);
6667 for (cgn = cgn->nested; cgn ; cgn = cgn->next_nested)
6668 c_gimple_diagnostics_recursively (cgn->decl);
6671 /* Finish up a function declaration and compile that function
6672 all the way to assembler language output. The free the storage
6673 for the function definition.
6675 This is called after parsing the body of the function definition. */
6677 void
6678 finish_function (void)
6680 tree fndecl = current_function_decl;
6682 label_context_stack_se = label_context_stack_se->next;
6683 label_context_stack_vm = label_context_stack_vm->next;
6685 if (TREE_CODE (fndecl) == FUNCTION_DECL
6686 && targetm.calls.promote_prototypes (TREE_TYPE (fndecl)))
6688 tree args = DECL_ARGUMENTS (fndecl);
6689 for (; args; args = TREE_CHAIN (args))
6691 tree type = TREE_TYPE (args);
6692 if (INTEGRAL_TYPE_P (type)
6693 && TYPE_PRECISION (type) < TYPE_PRECISION (integer_type_node))
6694 DECL_ARG_TYPE (args) = integer_type_node;
6698 if (DECL_INITIAL (fndecl) && DECL_INITIAL (fndecl) != error_mark_node)
6699 BLOCK_SUPERCONTEXT (DECL_INITIAL (fndecl)) = fndecl;
6701 /* Must mark the RESULT_DECL as being in this function. */
6703 if (DECL_RESULT (fndecl) && DECL_RESULT (fndecl) != error_mark_node)
6704 DECL_CONTEXT (DECL_RESULT (fndecl)) = fndecl;
6706 if (MAIN_NAME_P (DECL_NAME (fndecl)) && flag_hosted)
6708 if (TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (fndecl)))
6709 != integer_type_node)
6711 /* If warn_main is 1 (-Wmain) or 2 (-Wall), we have already warned.
6712 If warn_main is -1 (-Wno-main) we don't want to be warned. */
6713 if (!warn_main)
6714 pedwarn ("return type of %q+D is not %<int%>", fndecl);
6716 else
6718 if (flag_isoc99)
6720 tree stmt = c_finish_return (integer_zero_node);
6721 /* Hack. We don't want the middle-end to warn that this return
6722 is unreachable, so we mark its location as special. Using
6723 UNKNOWN_LOCATION has the problem that it gets clobbered in
6724 annotate_one_with_locus. A cleaner solution might be to
6725 ensure ! should_carry_locus_p (stmt), but that needs a flag.
6727 SET_EXPR_LOCATION (stmt, BUILTINS_LOCATION);
6732 /* Tie off the statement tree for this function. */
6733 DECL_SAVED_TREE (fndecl) = pop_stmt_list (DECL_SAVED_TREE (fndecl));
6735 finish_fname_decls ();
6737 /* Complain if there's just no return statement. */
6738 if (warn_return_type
6739 && TREE_CODE (TREE_TYPE (TREE_TYPE (fndecl))) != VOID_TYPE
6740 && !current_function_returns_value && !current_function_returns_null
6741 /* Don't complain if we are no-return. */
6742 && !current_function_returns_abnormally
6743 /* Don't warn for main(). */
6744 && !MAIN_NAME_P (DECL_NAME (fndecl))
6745 /* Or if they didn't actually specify a return type. */
6746 && !C_FUNCTION_IMPLICIT_INT (fndecl)
6747 /* Normally, with -Wreturn-type, flow will complain. Unless we're an
6748 inline function, as we might never be compiled separately. */
6749 && DECL_INLINE (fndecl))
6751 warning (OPT_Wreturn_type,
6752 "no return statement in function returning non-void");
6753 TREE_NO_WARNING (fndecl) = 1;
6756 /* Store the end of the function, so that we get good line number
6757 info for the epilogue. */
6758 cfun->function_end_locus = input_location;
6760 /* Finalize the ELF visibility for the function. */
6761 c_determine_visibility (fndecl);
6763 /* For GNU C extern inline functions disregard inline limits. */
6764 if (DECL_EXTERNAL (fndecl)
6765 && DECL_DECLARED_INLINE_P (fndecl))
6766 DECL_DISREGARD_INLINE_LIMITS (fndecl) = 1;
6768 /* Genericize before inlining. Delay genericizing nested functions
6769 until their parent function is genericized. Since finalizing
6770 requires GENERIC, delay that as well. */
6772 if (DECL_INITIAL (fndecl) && DECL_INITIAL (fndecl) != error_mark_node
6773 && !undef_nested_function)
6775 if (!decl_function_context (fndecl))
6777 c_genericize (fndecl);
6778 c_gimple_diagnostics_recursively (fndecl);
6780 /* ??? Objc emits functions after finalizing the compilation unit.
6781 This should be cleaned up later and this conditional removed. */
6782 if (cgraph_global_info_ready)
6784 cgraph_add_new_function (fndecl, false);
6785 return;
6788 cgraph_finalize_function (fndecl, false);
6790 else
6792 /* Register this function with cgraph just far enough to get it
6793 added to our parent's nested function list. Handy, since the
6794 C front end doesn't have such a list. */
6795 (void) cgraph_node (fndecl);
6799 if (!decl_function_context (fndecl))
6800 undef_nested_function = false;
6802 /* We're leaving the context of this function, so zap cfun.
6803 It's still in DECL_STRUCT_FUNCTION, and we'll restore it in
6804 tree_rest_of_compilation. */
6805 set_cfun (NULL);
6806 current_function_decl = NULL;
6809 /* Check the declarations given in a for-loop for satisfying the C99
6810 constraints. If exactly one such decl is found, return it. */
6812 tree
6813 check_for_loop_decls (void)
6815 struct c_binding *b;
6816 tree one_decl = NULL_TREE;
6817 int n_decls = 0;
6820 if (!flag_isoc99)
6822 /* If we get here, declarations have been used in a for loop without
6823 the C99 for loop scope. This doesn't make much sense, so don't
6824 allow it. */
6825 error ("%<for%> loop initial declaration used outside C99 mode");
6826 return NULL_TREE;
6828 /* C99 subclause 6.8.5 paragraph 3:
6830 [#3] The declaration part of a for statement shall only
6831 declare identifiers for objects having storage class auto or
6832 register.
6834 It isn't clear whether, in this sentence, "identifiers" binds to
6835 "shall only declare" or to "objects" - that is, whether all identifiers
6836 declared must be identifiers for objects, or whether the restriction
6837 only applies to those that are. (A question on this in comp.std.c
6838 in November 2000 received no answer.) We implement the strictest
6839 interpretation, to avoid creating an extension which later causes
6840 problems. */
6842 for (b = current_scope->bindings; b; b = b->prev)
6844 tree id = b->id;
6845 tree decl = b->decl;
6847 if (!id)
6848 continue;
6850 switch (TREE_CODE (decl))
6852 case VAR_DECL:
6853 if (TREE_STATIC (decl))
6854 error ("declaration of static variable %q+D in %<for%> loop "
6855 "initial declaration", decl);
6856 else if (DECL_EXTERNAL (decl))
6857 error ("declaration of %<extern%> variable %q+D in %<for%> loop "
6858 "initial declaration", decl);
6859 break;
6861 case RECORD_TYPE:
6862 error ("%<struct %E%> declared in %<for%> loop initial declaration",
6863 id);
6864 break;
6865 case UNION_TYPE:
6866 error ("%<union %E%> declared in %<for%> loop initial declaration",
6867 id);
6868 break;
6869 case ENUMERAL_TYPE:
6870 error ("%<enum %E%> declared in %<for%> loop initial declaration",
6871 id);
6872 break;
6873 default:
6874 error ("declaration of non-variable %q+D in %<for%> loop "
6875 "initial declaration", decl);
6878 n_decls++;
6879 one_decl = decl;
6882 return n_decls == 1 ? one_decl : NULL_TREE;
6885 /* Save and reinitialize the variables
6886 used during compilation of a C function. */
6888 void
6889 c_push_function_context (struct function *f)
6891 struct language_function *p;
6892 p = GGC_NEW (struct language_function);
6893 f->language = p;
6895 p->base.x_stmt_tree = c_stmt_tree;
6896 p->x_break_label = c_break_label;
6897 p->x_cont_label = c_cont_label;
6898 p->x_switch_stack = c_switch_stack;
6899 p->arg_info = current_function_arg_info;
6900 p->returns_value = current_function_returns_value;
6901 p->returns_null = current_function_returns_null;
6902 p->returns_abnormally = current_function_returns_abnormally;
6903 p->warn_about_return_type = warn_about_return_type;
6906 /* Restore the variables used during compilation of a C function. */
6908 void
6909 c_pop_function_context (struct function *f)
6911 struct language_function *p = f->language;
6913 if (DECL_STRUCT_FUNCTION (current_function_decl) == 0
6914 && DECL_SAVED_TREE (current_function_decl) == NULL_TREE)
6916 /* Stop pointing to the local nodes about to be freed. */
6917 /* But DECL_INITIAL must remain nonzero so we know this
6918 was an actual function definition. */
6919 DECL_INITIAL (current_function_decl) = error_mark_node;
6920 DECL_ARGUMENTS (current_function_decl) = 0;
6923 c_stmt_tree = p->base.x_stmt_tree;
6924 c_break_label = p->x_break_label;
6925 c_cont_label = p->x_cont_label;
6926 c_switch_stack = p->x_switch_stack;
6927 current_function_arg_info = p->arg_info;
6928 current_function_returns_value = p->returns_value;
6929 current_function_returns_null = p->returns_null;
6930 current_function_returns_abnormally = p->returns_abnormally;
6931 warn_about_return_type = p->warn_about_return_type;
6933 f->language = NULL;
6936 /* Copy the DECL_LANG_SPECIFIC data associated with DECL. */
6938 void
6939 c_dup_lang_specific_decl (tree decl)
6941 struct lang_decl *ld;
6943 if (!DECL_LANG_SPECIFIC (decl))
6944 return;
6946 ld = GGC_NEW (struct lang_decl);
6947 memcpy (ld, DECL_LANG_SPECIFIC (decl), sizeof (struct lang_decl));
6948 DECL_LANG_SPECIFIC (decl) = ld;
6951 /* The functions below are required for functionality of doing
6952 function at once processing in the C front end. Currently these
6953 functions are not called from anywhere in the C front end, but as
6954 these changes continue, that will change. */
6956 /* Returns the stmt_tree (if any) to which statements are currently
6957 being added. If there is no active statement-tree, NULL is
6958 returned. */
6960 stmt_tree
6961 current_stmt_tree (void)
6963 return &c_stmt_tree;
6966 /* Nonzero if TYPE is an anonymous union or struct type. Always 0 in
6967 C. */
6970 anon_aggr_type_p (const_tree ARG_UNUSED (node))
6972 return 0;
6975 /* Return the global value of T as a symbol. */
6977 tree
6978 identifier_global_value (tree t)
6980 struct c_binding *b;
6982 for (b = I_SYMBOL_BINDING (t); b; b = b->shadowed)
6983 if (B_IN_FILE_SCOPE (b) || B_IN_EXTERNAL_SCOPE (b))
6984 return b->decl;
6986 return 0;
6989 /* Record a builtin type for C. If NAME is non-NULL, it is the name used;
6990 otherwise the name is found in ridpointers from RID_INDEX. */
6992 void
6993 record_builtin_type (enum rid rid_index, const char *name, tree type)
6995 tree id, decl;
6996 if (name == 0)
6997 id = ridpointers[(int) rid_index];
6998 else
6999 id = get_identifier (name);
7000 decl = build_decl (TYPE_DECL, id, type);
7001 pushdecl (decl);
7002 if (debug_hooks->type_decl)
7003 debug_hooks->type_decl (decl, false);
7006 /* Build the void_list_node (void_type_node having been created). */
7007 tree
7008 build_void_list_node (void)
7010 tree t = build_tree_list (NULL_TREE, void_type_node);
7011 return t;
7014 /* Return a c_parm structure with the given SPECS, ATTRS and DECLARATOR. */
7016 struct c_parm *
7017 build_c_parm (struct c_declspecs *specs, tree attrs,
7018 struct c_declarator *declarator)
7020 struct c_parm *ret = XOBNEW (&parser_obstack, struct c_parm);
7021 ret->specs = specs;
7022 ret->attrs = attrs;
7023 ret->declarator = declarator;
7024 return ret;
7027 /* Return a declarator with nested attributes. TARGET is the inner
7028 declarator to which these attributes apply. ATTRS are the
7029 attributes. */
7031 struct c_declarator *
7032 build_attrs_declarator (tree attrs, struct c_declarator *target)
7034 struct c_declarator *ret = XOBNEW (&parser_obstack, struct c_declarator);
7035 ret->kind = cdk_attrs;
7036 ret->declarator = target;
7037 ret->u.attrs = attrs;
7038 return ret;
7041 /* Return a declarator for a function with arguments specified by ARGS
7042 and return type specified by TARGET. */
7044 struct c_declarator *
7045 build_function_declarator (struct c_arg_info *args,
7046 struct c_declarator *target)
7048 struct c_declarator *ret = XOBNEW (&parser_obstack, struct c_declarator);
7049 ret->kind = cdk_function;
7050 ret->declarator = target;
7051 ret->u.arg_info = args;
7052 return ret;
7055 /* Return a declarator for the identifier IDENT (which may be
7056 NULL_TREE for an abstract declarator). */
7058 struct c_declarator *
7059 build_id_declarator (tree ident)
7061 struct c_declarator *ret = XOBNEW (&parser_obstack, struct c_declarator);
7062 ret->kind = cdk_id;
7063 ret->declarator = 0;
7064 ret->u.id = ident;
7065 /* Default value - may get reset to a more precise location. */
7066 ret->id_loc = input_location;
7067 return ret;
7070 /* Return something to represent absolute declarators containing a *.
7071 TARGET is the absolute declarator that the * contains.
7072 TYPE_QUALS_ATTRS is a structure for type qualifiers and attributes
7073 to apply to the pointer type. */
7075 struct c_declarator *
7076 make_pointer_declarator (struct c_declspecs *type_quals_attrs,
7077 struct c_declarator *target)
7079 tree attrs;
7080 int quals = 0;
7081 struct c_declarator *itarget = target;
7082 struct c_declarator *ret = XOBNEW (&parser_obstack, struct c_declarator);
7083 if (type_quals_attrs)
7085 attrs = type_quals_attrs->attrs;
7086 quals = quals_from_declspecs (type_quals_attrs);
7087 if (attrs != NULL_TREE)
7088 itarget = build_attrs_declarator (attrs, target);
7090 ret->kind = cdk_pointer;
7091 ret->declarator = itarget;
7092 ret->u.pointer_quals = quals;
7093 return ret;
7096 /* Return a pointer to a structure for an empty list of declaration
7097 specifiers. */
7099 struct c_declspecs *
7100 build_null_declspecs (void)
7102 struct c_declspecs *ret = XOBNEW (&parser_obstack, struct c_declspecs);
7103 ret->type = 0;
7104 ret->decl_attr = 0;
7105 ret->attrs = 0;
7106 ret->typespec_word = cts_none;
7107 ret->storage_class = csc_none;
7108 ret->declspecs_seen_p = false;
7109 ret->type_seen_p = false;
7110 ret->non_sc_seen_p = false;
7111 ret->typedef_p = false;
7112 ret->tag_defined_p = false;
7113 ret->explicit_signed_p = false;
7114 ret->deprecated_p = false;
7115 ret->default_int_p = false;
7116 ret->long_p = false;
7117 ret->long_long_p = false;
7118 ret->short_p = false;
7119 ret->signed_p = false;
7120 ret->unsigned_p = false;
7121 ret->complex_p = false;
7122 ret->inline_p = false;
7123 ret->thread_p = false;
7124 ret->const_p = false;
7125 ret->volatile_p = false;
7126 ret->restrict_p = false;
7127 ret->saturating_p = false;
7128 return ret;
7131 /* Add the type qualifier QUAL to the declaration specifiers SPECS,
7132 returning SPECS. */
7134 struct c_declspecs *
7135 declspecs_add_qual (struct c_declspecs *specs, tree qual)
7137 enum rid i;
7138 bool dupe = false;
7139 specs->non_sc_seen_p = true;
7140 specs->declspecs_seen_p = true;
7141 gcc_assert (TREE_CODE (qual) == IDENTIFIER_NODE
7142 && C_IS_RESERVED_WORD (qual));
7143 i = C_RID_CODE (qual);
7144 switch (i)
7146 case RID_CONST:
7147 dupe = specs->const_p;
7148 specs->const_p = true;
7149 break;
7150 case RID_VOLATILE:
7151 dupe = specs->volatile_p;
7152 specs->volatile_p = true;
7153 break;
7154 case RID_RESTRICT:
7155 dupe = specs->restrict_p;
7156 specs->restrict_p = true;
7157 break;
7158 default:
7159 gcc_unreachable ();
7161 if (dupe && pedantic && !flag_isoc99)
7162 pedwarn ("duplicate %qE", qual);
7163 return specs;
7166 /* Add the type specifier TYPE to the declaration specifiers SPECS,
7167 returning SPECS. */
7169 struct c_declspecs *
7170 declspecs_add_type (struct c_declspecs *specs, struct c_typespec spec)
7172 tree type = spec.spec;
7173 specs->non_sc_seen_p = true;
7174 specs->declspecs_seen_p = true;
7175 specs->type_seen_p = true;
7176 if (TREE_DEPRECATED (type))
7177 specs->deprecated_p = true;
7179 /* Handle type specifier keywords. */
7180 if (TREE_CODE (type) == IDENTIFIER_NODE && C_IS_RESERVED_WORD (type))
7182 enum rid i = C_RID_CODE (type);
7183 if (specs->type)
7185 error ("two or more data types in declaration specifiers");
7186 return specs;
7188 if ((int) i <= (int) RID_LAST_MODIFIER)
7190 /* "long", "short", "signed", "unsigned", "_Complex" or "_Sat". */
7191 bool dupe = false;
7192 switch (i)
7194 case RID_LONG:
7195 if (specs->long_long_p)
7197 error ("%<long long long%> is too long for GCC");
7198 break;
7200 if (specs->long_p)
7202 if (specs->typespec_word == cts_double)
7204 error ("both %<long long%> and %<double%> in "
7205 "declaration specifiers");
7206 break;
7208 if (pedantic && !flag_isoc99 && !in_system_header
7209 && warn_long_long)
7210 pedwarn ("ISO C90 does not support %<long long%>");
7211 specs->long_long_p = 1;
7212 break;
7214 if (specs->short_p)
7215 error ("both %<long%> and %<short%> in "
7216 "declaration specifiers");
7217 else if (specs->typespec_word == cts_void)
7218 error ("both %<long%> and %<void%> in "
7219 "declaration specifiers");
7220 else if (specs->typespec_word == cts_bool)
7221 error ("both %<long%> and %<_Bool%> in "
7222 "declaration specifiers");
7223 else if (specs->typespec_word == cts_char)
7224 error ("both %<long%> and %<char%> in "
7225 "declaration specifiers");
7226 else if (specs->typespec_word == cts_float)
7227 error ("both %<long%> and %<float%> in "
7228 "declaration specifiers");
7229 else if (specs->typespec_word == cts_dfloat32)
7230 error ("both %<long%> and %<_Decimal32%> in "
7231 "declaration specifiers");
7232 else if (specs->typespec_word == cts_dfloat64)
7233 error ("both %<long%> and %<_Decimal64%> in "
7234 "declaration specifiers");
7235 else if (specs->typespec_word == cts_dfloat128)
7236 error ("both %<long%> and %<_Decimal128%> in "
7237 "declaration specifiers");
7238 else
7239 specs->long_p = true;
7240 break;
7241 case RID_SHORT:
7242 dupe = specs->short_p;
7243 if (specs->long_p)
7244 error ("both %<long%> and %<short%> in "
7245 "declaration specifiers");
7246 else if (specs->typespec_word == cts_void)
7247 error ("both %<short%> and %<void%> in "
7248 "declaration specifiers");
7249 else if (specs->typespec_word == cts_bool)
7250 error ("both %<short%> and %<_Bool%> in "
7251 "declaration specifiers");
7252 else if (specs->typespec_word == cts_char)
7253 error ("both %<short%> and %<char%> in "
7254 "declaration specifiers");
7255 else if (specs->typespec_word == cts_float)
7256 error ("both %<short%> and %<float%> in "
7257 "declaration specifiers");
7258 else if (specs->typespec_word == cts_double)
7259 error ("both %<short%> and %<double%> in "
7260 "declaration specifiers");
7261 else if (specs->typespec_word == cts_dfloat32)
7262 error ("both %<short%> and %<_Decimal32%> in "
7263 "declaration specifiers");
7264 else if (specs->typespec_word == cts_dfloat64)
7265 error ("both %<short%> and %<_Decimal64%> in "
7266 "declaration specifiers");
7267 else if (specs->typespec_word == cts_dfloat128)
7268 error ("both %<short%> and %<_Decimal128%> in "
7269 "declaration specifiers");
7270 else
7271 specs->short_p = true;
7272 break;
7273 case RID_SIGNED:
7274 dupe = specs->signed_p;
7275 if (specs->unsigned_p)
7276 error ("both %<signed%> and %<unsigned%> in "
7277 "declaration specifiers");
7278 else if (specs->typespec_word == cts_void)
7279 error ("both %<signed%> and %<void%> in "
7280 "declaration specifiers");
7281 else if (specs->typespec_word == cts_bool)
7282 error ("both %<signed%> and %<_Bool%> in "
7283 "declaration specifiers");
7284 else if (specs->typespec_word == cts_float)
7285 error ("both %<signed%> and %<float%> in "
7286 "declaration specifiers");
7287 else if (specs->typespec_word == cts_double)
7288 error ("both %<signed%> and %<double%> in "
7289 "declaration specifiers");
7290 else if (specs->typespec_word == cts_dfloat32)
7291 error ("both %<signed%> and %<_Decimal32%> in "
7292 "declaration specifiers");
7293 else if (specs->typespec_word == cts_dfloat64)
7294 error ("both %<signed%> and %<_Decimal64%> in "
7295 "declaration specifiers");
7296 else if (specs->typespec_word == cts_dfloat128)
7297 error ("both %<signed%> and %<_Decimal128%> in "
7298 "declaration specifiers");
7299 else
7300 specs->signed_p = true;
7301 break;
7302 case RID_UNSIGNED:
7303 dupe = specs->unsigned_p;
7304 if (specs->signed_p)
7305 error ("both %<signed%> and %<unsigned%> in "
7306 "declaration specifiers");
7307 else if (specs->typespec_word == cts_void)
7308 error ("both %<unsigned%> and %<void%> in "
7309 "declaration specifiers");
7310 else if (specs->typespec_word == cts_bool)
7311 error ("both %<unsigned%> and %<_Bool%> in "
7312 "declaration specifiers");
7313 else if (specs->typespec_word == cts_float)
7314 error ("both %<unsigned%> and %<float%> in "
7315 "declaration specifiers");
7316 else if (specs->typespec_word == cts_double)
7317 error ("both %<unsigned%> and %<double%> in "
7318 "declaration specifiers");
7319 else if (specs->typespec_word == cts_dfloat32)
7320 error ("both %<unsigned%> and %<_Decimal32%> in "
7321 "declaration specifiers");
7322 else if (specs->typespec_word == cts_dfloat64)
7323 error ("both %<unsigned%> and %<_Decimal64%> in "
7324 "declaration specifiers");
7325 else if (specs->typespec_word == cts_dfloat128)
7326 error ("both %<unsigned%> and %<_Decimal128%> in "
7327 "declaration specifiers");
7328 else
7329 specs->unsigned_p = true;
7330 break;
7331 case RID_COMPLEX:
7332 dupe = specs->complex_p;
7333 if (pedantic && !flag_isoc99 && !in_system_header)
7334 pedwarn ("ISO C90 does not support complex types");
7335 if (specs->typespec_word == cts_void)
7336 error ("both %<complex%> and %<void%> in "
7337 "declaration specifiers");
7338 else if (specs->typespec_word == cts_bool)
7339 error ("both %<complex%> and %<_Bool%> in "
7340 "declaration specifiers");
7341 else if (specs->typespec_word == cts_dfloat32)
7342 error ("both %<complex%> and %<_Decimal32%> in "
7343 "declaration specifiers");
7344 else if (specs->typespec_word == cts_dfloat64)
7345 error ("both %<complex%> and %<_Decimal64%> in "
7346 "declaration specifiers");
7347 else if (specs->typespec_word == cts_dfloat128)
7348 error ("both %<complex%> and %<_Decimal128%> in "
7349 "declaration specifiers");
7350 else if (specs->typespec_word == cts_fract)
7351 error ("both %<complex%> and %<_Fract%> in "
7352 "declaration specifiers");
7353 else if (specs->typespec_word == cts_accum)
7354 error ("both %<complex%> and %<_Accum%> in "
7355 "declaration specifiers");
7356 else if (specs->saturating_p)
7357 error ("both %<complex%> and %<_Sat%> in "
7358 "declaration specifiers");
7359 else
7360 specs->complex_p = true;
7361 break;
7362 case RID_SAT:
7363 dupe = specs->saturating_p;
7364 if (pedantic)
7365 pedwarn ("ISO C does not support saturating types");
7366 if (specs->typespec_word == cts_void)
7367 error ("both %<_Sat%> and %<void%> in "
7368 "declaration specifiers");
7369 else if (specs->typespec_word == cts_bool)
7370 error ("both %<_Sat%> and %<_Bool%> in "
7371 "declaration specifiers");
7372 else if (specs->typespec_word == cts_char)
7373 error ("both %<_Sat%> and %<char%> in "
7374 "declaration specifiers");
7375 else if (specs->typespec_word == cts_int)
7376 error ("both %<_Sat%> and %<int%> in "
7377 "declaration specifiers");
7378 else if (specs->typespec_word == cts_float)
7379 error ("both %<_Sat%> and %<float%> in "
7380 "declaration specifiers");
7381 else if (specs->typespec_word == cts_double)
7382 error ("both %<_Sat%> and %<double%> in "
7383 "declaration specifiers");
7384 else if (specs->typespec_word == cts_dfloat32)
7385 error ("both %<_Sat%> and %<_Decimal32%> in "
7386 "declaration specifiers");
7387 else if (specs->typespec_word == cts_dfloat64)
7388 error ("both %<_Sat%> and %<_Decimal64%> in "
7389 "declaration specifiers");
7390 else if (specs->typespec_word == cts_dfloat128)
7391 error ("both %<_Sat%> and %<_Decimal128%> in "
7392 "declaration specifiers");
7393 else if (specs->complex_p)
7394 error ("both %<_Sat%> and %<complex%> in "
7395 "declaration specifiers");
7396 else
7397 specs->saturating_p = true;
7398 break;
7399 default:
7400 gcc_unreachable ();
7403 if (dupe)
7404 error ("duplicate %qE", type);
7406 return specs;
7408 else
7410 /* "void", "_Bool", "char", "int", "float", "double", "_Decimal32",
7411 "_Decimal64", "_Decimal128", "_Fract" or "_Accum". */
7412 if (specs->typespec_word != cts_none)
7414 error ("two or more data types in declaration specifiers");
7415 return specs;
7417 switch (i)
7419 case RID_VOID:
7420 if (specs->long_p)
7421 error ("both %<long%> and %<void%> in "
7422 "declaration specifiers");
7423 else if (specs->short_p)
7424 error ("both %<short%> and %<void%> in "
7425 "declaration specifiers");
7426 else if (specs->signed_p)
7427 error ("both %<signed%> and %<void%> in "
7428 "declaration specifiers");
7429 else if (specs->unsigned_p)
7430 error ("both %<unsigned%> and %<void%> in "
7431 "declaration specifiers");
7432 else if (specs->complex_p)
7433 error ("both %<complex%> and %<void%> in "
7434 "declaration specifiers");
7435 else if (specs->saturating_p)
7436 error ("both %<_Sat%> and %<void%> in "
7437 "declaration specifiers");
7438 else
7439 specs->typespec_word = cts_void;
7440 return specs;
7441 case RID_BOOL:
7442 if (specs->long_p)
7443 error ("both %<long%> and %<_Bool%> in "
7444 "declaration specifiers");
7445 else if (specs->short_p)
7446 error ("both %<short%> and %<_Bool%> in "
7447 "declaration specifiers");
7448 else if (specs->signed_p)
7449 error ("both %<signed%> and %<_Bool%> in "
7450 "declaration specifiers");
7451 else if (specs->unsigned_p)
7452 error ("both %<unsigned%> and %<_Bool%> in "
7453 "declaration specifiers");
7454 else if (specs->complex_p)
7455 error ("both %<complex%> and %<_Bool%> in "
7456 "declaration specifiers");
7457 else if (specs->saturating_p)
7458 error ("both %<_Sat%> and %<_Bool%> in "
7459 "declaration specifiers");
7460 else
7461 specs->typespec_word = cts_bool;
7462 return specs;
7463 case RID_CHAR:
7464 if (specs->long_p)
7465 error ("both %<long%> and %<char%> in "
7466 "declaration specifiers");
7467 else if (specs->short_p)
7468 error ("both %<short%> and %<char%> in "
7469 "declaration specifiers");
7470 else if (specs->saturating_p)
7471 error ("both %<_Sat%> and %<char%> in "
7472 "declaration specifiers");
7473 else
7474 specs->typespec_word = cts_char;
7475 return specs;
7476 case RID_INT:
7477 if (specs->saturating_p)
7478 error ("both %<_Sat%> and %<int%> in "
7479 "declaration specifiers");
7480 else
7481 specs->typespec_word = cts_int;
7482 return specs;
7483 case RID_FLOAT:
7484 if (specs->long_p)
7485 error ("both %<long%> and %<float%> in "
7486 "declaration specifiers");
7487 else if (specs->short_p)
7488 error ("both %<short%> and %<float%> in "
7489 "declaration specifiers");
7490 else if (specs->signed_p)
7491 error ("both %<signed%> and %<float%> in "
7492 "declaration specifiers");
7493 else if (specs->unsigned_p)
7494 error ("both %<unsigned%> and %<float%> in "
7495 "declaration specifiers");
7496 else if (specs->saturating_p)
7497 error ("both %<_Sat%> and %<float%> in "
7498 "declaration specifiers");
7499 else
7500 specs->typespec_word = cts_float;
7501 return specs;
7502 case RID_DOUBLE:
7503 if (specs->long_long_p)
7504 error ("both %<long long%> and %<double%> in "
7505 "declaration specifiers");
7506 else if (specs->short_p)
7507 error ("both %<short%> and %<double%> in "
7508 "declaration specifiers");
7509 else if (specs->signed_p)
7510 error ("both %<signed%> and %<double%> in "
7511 "declaration specifiers");
7512 else if (specs->unsigned_p)
7513 error ("both %<unsigned%> and %<double%> in "
7514 "declaration specifiers");
7515 else if (specs->saturating_p)
7516 error ("both %<_Sat%> and %<double%> in "
7517 "declaration specifiers");
7518 else
7519 specs->typespec_word = cts_double;
7520 return specs;
7521 case RID_DFLOAT32:
7522 case RID_DFLOAT64:
7523 case RID_DFLOAT128:
7525 const char *str;
7526 if (i == RID_DFLOAT32)
7527 str = "_Decimal32";
7528 else if (i == RID_DFLOAT64)
7529 str = "_Decimal64";
7530 else
7531 str = "_Decimal128";
7532 if (specs->long_long_p)
7533 error ("both %<long long%> and %<%s%> in "
7534 "declaration specifiers", str);
7535 if (specs->long_p)
7536 error ("both %<long%> and %<%s%> in "
7537 "declaration specifiers", str);
7538 else if (specs->short_p)
7539 error ("both %<short%> and %<%s%> in "
7540 "declaration specifiers", str);
7541 else if (specs->signed_p)
7542 error ("both %<signed%> and %<%s%> in "
7543 "declaration specifiers", str);
7544 else if (specs->unsigned_p)
7545 error ("both %<unsigned%> and %<%s%> in "
7546 "declaration specifiers", str);
7547 else if (specs->complex_p)
7548 error ("both %<complex%> and %<%s%> in "
7549 "declaration specifiers", str);
7550 else if (specs->saturating_p)
7551 error ("both %<_Sat%> and %<%s%> in "
7552 "declaration specifiers", str);
7553 else if (i == RID_DFLOAT32)
7554 specs->typespec_word = cts_dfloat32;
7555 else if (i == RID_DFLOAT64)
7556 specs->typespec_word = cts_dfloat64;
7557 else
7558 specs->typespec_word = cts_dfloat128;
7560 if (!targetm.decimal_float_supported_p ())
7561 error ("decimal floating point not supported for this target");
7562 if (pedantic)
7563 pedwarn ("ISO C does not support decimal floating point");
7564 return specs;
7565 case RID_FRACT:
7566 case RID_ACCUM:
7568 const char *str;
7569 if (i == RID_FRACT)
7570 str = "_Fract";
7571 else
7572 str = "_Accum";
7573 if (specs->complex_p)
7574 error ("both %<complex%> and %<%s%> in "
7575 "declaration specifiers", str);
7576 else if (i == RID_FRACT)
7577 specs->typespec_word = cts_fract;
7578 else
7579 specs->typespec_word = cts_accum;
7581 if (!targetm.fixed_point_supported_p ())
7582 error ("fixed-point types not supported for this target");
7583 if (pedantic)
7584 pedwarn ("ISO C does not support fixed-point types");
7585 return specs;
7586 default:
7587 /* ObjC reserved word "id", handled below. */
7588 break;
7593 /* Now we have a typedef (a TYPE_DECL node), an identifier (some
7594 form of ObjC type, cases such as "int" and "long" being handled
7595 above), a TYPE (struct, union, enum and typeof specifiers) or an
7596 ERROR_MARK. In none of these cases may there have previously
7597 been any type specifiers. */
7598 if (specs->type || specs->typespec_word != cts_none
7599 || specs->long_p || specs->short_p || specs->signed_p
7600 || specs->unsigned_p || specs->complex_p)
7601 error ("two or more data types in declaration specifiers");
7602 else if (TREE_CODE (type) == TYPE_DECL)
7604 if (TREE_TYPE (type) == error_mark_node)
7605 ; /* Allow the type to default to int to avoid cascading errors. */
7606 else
7608 specs->type = TREE_TYPE (type);
7609 specs->decl_attr = DECL_ATTRIBUTES (type);
7610 specs->typedef_p = true;
7611 specs->explicit_signed_p = C_TYPEDEF_EXPLICITLY_SIGNED (type);
7614 else if (TREE_CODE (type) == IDENTIFIER_NODE)
7616 tree t = lookup_name (type);
7617 if (!t || TREE_CODE (t) != TYPE_DECL)
7618 error ("%qE fails to be a typedef or built in type", type);
7619 else if (TREE_TYPE (t) == error_mark_node)
7621 else
7622 specs->type = TREE_TYPE (t);
7624 else if (TREE_CODE (type) != ERROR_MARK)
7626 if (spec.kind == ctsk_tagdef || spec.kind == ctsk_tagfirstref)
7627 specs->tag_defined_p = true;
7628 if (spec.kind == ctsk_typeof)
7629 specs->typedef_p = true;
7630 specs->type = type;
7633 return specs;
7636 /* Add the storage class specifier or function specifier SCSPEC to the
7637 declaration specifiers SPECS, returning SPECS. */
7639 struct c_declspecs *
7640 declspecs_add_scspec (struct c_declspecs *specs, tree scspec)
7642 enum rid i;
7643 enum c_storage_class n = csc_none;
7644 bool dupe = false;
7645 specs->declspecs_seen_p = true;
7646 gcc_assert (TREE_CODE (scspec) == IDENTIFIER_NODE
7647 && C_IS_RESERVED_WORD (scspec));
7648 i = C_RID_CODE (scspec);
7649 if (specs->non_sc_seen_p)
7650 warning (OPT_Wold_style_declaration,
7651 "%qE is not at beginning of declaration", scspec);
7652 switch (i)
7654 case RID_INLINE:
7655 /* C99 permits duplicate inline. Although of doubtful utility,
7656 it seems simplest to permit it in gnu89 mode as well, as
7657 there is also little utility in maintaining this as a
7658 difference between gnu89 and C99 inline. */
7659 dupe = false;
7660 specs->inline_p = true;
7661 break;
7662 case RID_THREAD:
7663 dupe = specs->thread_p;
7664 if (specs->storage_class == csc_auto)
7665 error ("%<__thread%> used with %<auto%>");
7666 else if (specs->storage_class == csc_register)
7667 error ("%<__thread%> used with %<register%>");
7668 else if (specs->storage_class == csc_typedef)
7669 error ("%<__thread%> used with %<typedef%>");
7670 else
7671 specs->thread_p = true;
7672 break;
7673 case RID_AUTO:
7674 n = csc_auto;
7675 break;
7676 case RID_EXTERN:
7677 n = csc_extern;
7678 /* Diagnose "__thread extern". */
7679 if (specs->thread_p)
7680 error ("%<__thread%> before %<extern%>");
7681 break;
7682 case RID_REGISTER:
7683 n = csc_register;
7684 break;
7685 case RID_STATIC:
7686 n = csc_static;
7687 /* Diagnose "__thread static". */
7688 if (specs->thread_p)
7689 error ("%<__thread%> before %<static%>");
7690 break;
7691 case RID_TYPEDEF:
7692 n = csc_typedef;
7693 break;
7694 default:
7695 gcc_unreachable ();
7697 if (n != csc_none && n == specs->storage_class)
7698 dupe = true;
7699 if (dupe)
7700 error ("duplicate %qE", scspec);
7701 if (n != csc_none)
7703 if (specs->storage_class != csc_none && n != specs->storage_class)
7705 error ("multiple storage classes in declaration specifiers");
7707 else
7709 specs->storage_class = n;
7710 if (n != csc_extern && n != csc_static && specs->thread_p)
7712 error ("%<__thread%> used with %qE", scspec);
7713 specs->thread_p = false;
7717 return specs;
7720 /* Add the attributes ATTRS to the declaration specifiers SPECS,
7721 returning SPECS. */
7723 struct c_declspecs *
7724 declspecs_add_attrs (struct c_declspecs *specs, tree attrs)
7726 specs->attrs = chainon (attrs, specs->attrs);
7727 specs->declspecs_seen_p = true;
7728 return specs;
7731 /* Combine "long", "short", "signed", "unsigned" and "_Complex" type
7732 specifiers with any other type specifier to determine the resulting
7733 type. This is where ISO C checks on complex types are made, since
7734 "_Complex long" is a prefix of the valid ISO C type "_Complex long
7735 double". */
7737 struct c_declspecs *
7738 finish_declspecs (struct c_declspecs *specs)
7740 /* If a type was specified as a whole, we have no modifiers and are
7741 done. */
7742 if (specs->type != NULL_TREE)
7744 gcc_assert (!specs->long_p && !specs->long_long_p && !specs->short_p
7745 && !specs->signed_p && !specs->unsigned_p
7746 && !specs->complex_p);
7747 return specs;
7750 /* If none of "void", "_Bool", "char", "int", "float" or "double"
7751 has been specified, treat it as "int" unless "_Complex" is
7752 present and there are no other specifiers. If we just have
7753 "_Complex", it is equivalent to "_Complex double", but e.g.
7754 "_Complex short" is equivalent to "_Complex short int". */
7755 if (specs->typespec_word == cts_none)
7757 if (specs->saturating_p)
7759 error ("%<_Sat%> is used without %<_Fract%> or %<_Accum%>");
7760 specs->typespec_word = cts_fract;
7762 else if (specs->long_p || specs->short_p
7763 || specs->signed_p || specs->unsigned_p)
7765 specs->typespec_word = cts_int;
7767 else if (specs->complex_p)
7769 specs->typespec_word = cts_double;
7770 if (pedantic)
7771 pedwarn ("ISO C does not support plain %<complex%> meaning "
7772 "%<double complex%>");
7774 else
7776 specs->typespec_word = cts_int;
7777 specs->default_int_p = true;
7778 /* We don't diagnose this here because grokdeclarator will
7779 give more specific diagnostics according to whether it is
7780 a function definition. */
7784 /* If "signed" was specified, record this to distinguish "int" and
7785 "signed int" in the case of a bit-field with
7786 -funsigned-bitfields. */
7787 specs->explicit_signed_p = specs->signed_p;
7789 /* Now compute the actual type. */
7790 switch (specs->typespec_word)
7792 case cts_void:
7793 gcc_assert (!specs->long_p && !specs->short_p
7794 && !specs->signed_p && !specs->unsigned_p
7795 && !specs->complex_p);
7796 specs->type = void_type_node;
7797 break;
7798 case cts_bool:
7799 gcc_assert (!specs->long_p && !specs->short_p
7800 && !specs->signed_p && !specs->unsigned_p
7801 && !specs->complex_p);
7802 specs->type = boolean_type_node;
7803 break;
7804 case cts_char:
7805 gcc_assert (!specs->long_p && !specs->short_p);
7806 gcc_assert (!(specs->signed_p && specs->unsigned_p));
7807 if (specs->signed_p)
7808 specs->type = signed_char_type_node;
7809 else if (specs->unsigned_p)
7810 specs->type = unsigned_char_type_node;
7811 else
7812 specs->type = char_type_node;
7813 if (specs->complex_p)
7815 if (pedantic)
7816 pedwarn ("ISO C does not support complex integer types");
7817 specs->type = build_complex_type (specs->type);
7819 break;
7820 case cts_int:
7821 gcc_assert (!(specs->long_p && specs->short_p));
7822 gcc_assert (!(specs->signed_p && specs->unsigned_p));
7823 if (specs->long_long_p)
7824 specs->type = (specs->unsigned_p
7825 ? long_long_unsigned_type_node
7826 : long_long_integer_type_node);
7827 else if (specs->long_p)
7828 specs->type = (specs->unsigned_p
7829 ? long_unsigned_type_node
7830 : long_integer_type_node);
7831 else if (specs->short_p)
7832 specs->type = (specs->unsigned_p
7833 ? short_unsigned_type_node
7834 : short_integer_type_node);
7835 else
7836 specs->type = (specs->unsigned_p
7837 ? unsigned_type_node
7838 : integer_type_node);
7839 if (specs->complex_p)
7841 if (pedantic)
7842 pedwarn ("ISO C does not support complex integer types");
7843 specs->type = build_complex_type (specs->type);
7845 break;
7846 case cts_float:
7847 gcc_assert (!specs->long_p && !specs->short_p
7848 && !specs->signed_p && !specs->unsigned_p);
7849 specs->type = (specs->complex_p
7850 ? complex_float_type_node
7851 : float_type_node);
7852 break;
7853 case cts_double:
7854 gcc_assert (!specs->long_long_p && !specs->short_p
7855 && !specs->signed_p && !specs->unsigned_p);
7856 if (specs->long_p)
7858 specs->type = (specs->complex_p
7859 ? complex_long_double_type_node
7860 : long_double_type_node);
7862 else
7864 specs->type = (specs->complex_p
7865 ? complex_double_type_node
7866 : double_type_node);
7868 break;
7869 case cts_dfloat32:
7870 case cts_dfloat64:
7871 case cts_dfloat128:
7872 gcc_assert (!specs->long_p && !specs->long_long_p && !specs->short_p
7873 && !specs->signed_p && !specs->unsigned_p && !specs->complex_p);
7874 if (specs->typespec_word == cts_dfloat32)
7875 specs->type = dfloat32_type_node;
7876 else if (specs->typespec_word == cts_dfloat64)
7877 specs->type = dfloat64_type_node;
7878 else
7879 specs->type = dfloat128_type_node;
7880 break;
7881 case cts_fract:
7882 gcc_assert (!specs->complex_p);
7883 if (specs->saturating_p)
7885 if (specs->long_long_p)
7886 specs->type = specs->unsigned_p
7887 ? sat_unsigned_long_long_fract_type_node
7888 : sat_long_long_fract_type_node;
7889 else if (specs->long_p)
7890 specs->type = specs->unsigned_p
7891 ? sat_unsigned_long_fract_type_node
7892 : sat_long_fract_type_node;
7893 else if (specs->short_p)
7894 specs->type = specs->unsigned_p
7895 ? sat_unsigned_short_fract_type_node
7896 : sat_short_fract_type_node;
7897 else
7898 specs->type = specs->unsigned_p
7899 ? sat_unsigned_fract_type_node
7900 : sat_fract_type_node;
7902 else
7904 if (specs->long_long_p)
7905 specs->type = specs->unsigned_p
7906 ? unsigned_long_long_fract_type_node
7907 : long_long_fract_type_node;
7908 else if (specs->long_p)
7909 specs->type = specs->unsigned_p
7910 ? unsigned_long_fract_type_node
7911 : long_fract_type_node;
7912 else if (specs->short_p)
7913 specs->type = specs->unsigned_p
7914 ? unsigned_short_fract_type_node
7915 : short_fract_type_node;
7916 else
7917 specs->type = specs->unsigned_p
7918 ? unsigned_fract_type_node
7919 : fract_type_node;
7921 break;
7922 case cts_accum:
7923 gcc_assert (!specs->complex_p);
7924 if (specs->saturating_p)
7926 if (specs->long_long_p)
7927 specs->type = specs->unsigned_p
7928 ? sat_unsigned_long_long_accum_type_node
7929 : sat_long_long_accum_type_node;
7930 else if (specs->long_p)
7931 specs->type = specs->unsigned_p
7932 ? sat_unsigned_long_accum_type_node
7933 : sat_long_accum_type_node;
7934 else if (specs->short_p)
7935 specs->type = specs->unsigned_p
7936 ? sat_unsigned_short_accum_type_node
7937 : sat_short_accum_type_node;
7938 else
7939 specs->type = specs->unsigned_p
7940 ? sat_unsigned_accum_type_node
7941 : sat_accum_type_node;
7943 else
7945 if (specs->long_long_p)
7946 specs->type = specs->unsigned_p
7947 ? unsigned_long_long_accum_type_node
7948 : long_long_accum_type_node;
7949 else if (specs->long_p)
7950 specs->type = specs->unsigned_p
7951 ? unsigned_long_accum_type_node
7952 : long_accum_type_node;
7953 else if (specs->short_p)
7954 specs->type = specs->unsigned_p
7955 ? unsigned_short_accum_type_node
7956 : short_accum_type_node;
7957 else
7958 specs->type = specs->unsigned_p
7959 ? unsigned_accum_type_node
7960 : accum_type_node;
7962 break;
7963 default:
7964 gcc_unreachable ();
7967 return specs;
7970 /* A subroutine of c_write_global_declarations. Perform final processing
7971 on one file scope's declarations (or the external scope's declarations),
7972 GLOBALS. */
7974 static void
7975 c_write_global_declarations_1 (tree globals)
7977 tree decl;
7978 bool reconsider;
7980 /* Process the decls in the order they were written. */
7981 for (decl = globals; decl; decl = TREE_CHAIN (decl))
7983 /* Check for used but undefined static functions using the C
7984 standard's definition of "used", and set TREE_NO_WARNING so
7985 that check_global_declarations doesn't repeat the check. */
7986 if (TREE_CODE (decl) == FUNCTION_DECL
7987 && DECL_INITIAL (decl) == 0
7988 && DECL_EXTERNAL (decl)
7989 && !TREE_PUBLIC (decl)
7990 && C_DECL_USED (decl))
7992 pedwarn ("%q+F used but never defined", decl);
7993 TREE_NO_WARNING (decl) = 1;
7996 wrapup_global_declaration_1 (decl);
8001 reconsider = false;
8002 for (decl = globals; decl; decl = TREE_CHAIN (decl))
8003 reconsider |= wrapup_global_declaration_2 (decl);
8005 while (reconsider);
8007 for (decl = globals; decl; decl = TREE_CHAIN (decl))
8008 check_global_declaration_1 (decl);
8011 /* A subroutine of c_write_global_declarations Emit debug information for each
8012 of the declarations in GLOBALS. */
8014 static void
8015 c_write_global_declarations_2 (tree globals)
8017 tree decl;
8019 for (decl = globals; decl ; decl = TREE_CHAIN (decl))
8020 debug_hooks->global_decl (decl);
8023 /* Preserve the external declarations scope across a garbage collect. */
8024 static GTY(()) tree ext_block;
8026 void
8027 c_write_global_declarations (void)
8029 tree t;
8031 /* We don't want to do this if generating a PCH. */
8032 if (pch_file)
8033 return;
8035 /* Don't waste time on further processing if -fsyntax-only or we've
8036 encountered errors. */
8037 if (flag_syntax_only || errorcount || sorrycount || cpp_errors (parse_in))
8038 return;
8040 /* Close the external scope. */
8041 ext_block = pop_scope ();
8042 external_scope = 0;
8043 gcc_assert (!current_scope);
8045 if (ext_block)
8047 tree tmp = BLOCK_VARS (ext_block);
8048 int flags;
8049 FILE * stream = dump_begin (TDI_tu, &flags);
8050 if (stream && tmp)
8052 dump_node (tmp, flags & ~TDF_SLIM, stream);
8053 dump_end (TDI_tu, stream);
8057 /* Process all file scopes in this compilation, and the external_scope,
8058 through wrapup_global_declarations and check_global_declarations. */
8059 for (t = all_translation_units; t; t = TREE_CHAIN (t))
8060 c_write_global_declarations_1 (BLOCK_VARS (DECL_INITIAL (t)));
8061 c_write_global_declarations_1 (BLOCK_VARS (ext_block));
8063 /* We're done parsing; proceed to optimize and emit assembly.
8064 FIXME: shouldn't be the front end's responsibility to call this. */
8065 cgraph_optimize ();
8067 /* After cgraph has had a chance to emit everything that's going to
8068 be emitted, output debug information for globals. */
8069 if (errorcount == 0 && sorrycount == 0)
8071 timevar_push (TV_SYMOUT);
8072 for (t = all_translation_units; t; t = TREE_CHAIN (t))
8073 c_write_global_declarations_2 (BLOCK_VARS (DECL_INITIAL (t)));
8074 c_write_global_declarations_2 (BLOCK_VARS (ext_block));
8075 timevar_pop (TV_SYMOUT);
8078 ext_block = NULL;
8081 #include "gt-c-decl.h"