Merged r157428 through r157652 into branch.
[official-gcc.git] / gcc / c-decl.c
blob9ab168dfd5df7aa5a7a283e71a2f826a48a35dbd
1 /* Process declarations and variables for C compiler.
2 Copyright (C) 1988, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000,
3 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010
4 Free Software Foundation, Inc.
6 This file is part of GCC.
8 GCC is free software; you can redistribute it and/or modify it under
9 the terms of the GNU General Public License as published by the Free
10 Software Foundation; either version 3, or (at your option) any later
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 "c-lang.h"
54 #include "langhooks.h"
55 #include "tree-mudflap.h"
56 #include "gimple.h"
57 #include "tree-iterator.h"
58 #include "diagnostic.h"
59 #include "tree-dump.h"
60 #include "cgraph.h"
61 #include "hashtab.h"
62 #include "libfuncs.h"
63 #include "except.h"
64 #include "langhooks-def.h"
65 #include "pointer-set.h"
66 #include "gimple.h"
67 #include "plugin.h"
69 /* In grokdeclarator, distinguish syntactic contexts of declarators. */
70 enum decl_context
71 { NORMAL, /* Ordinary declaration */
72 FUNCDEF, /* Function definition */
73 PARM, /* Declaration of parm before function body */
74 FIELD, /* Declaration inside struct or union */
75 TYPENAME}; /* Typename (inside cast or sizeof) */
77 /* States indicating how grokdeclarator() should handle declspecs marked
78 with __attribute__((deprecated)). An object declared as
79 __attribute__((deprecated)) suppresses warnings of uses of other
80 deprecated items. */
82 enum deprecated_states {
83 DEPRECATED_NORMAL,
84 DEPRECATED_SUPPRESS
88 /* Nonzero if we have seen an invalid cross reference
89 to a struct, union, or enum, but not yet printed the message. */
90 tree pending_invalid_xref;
92 /* File and line to appear in the eventual error message. */
93 location_t pending_invalid_xref_location;
95 /* The file and line that the prototype came from if this is an
96 old-style definition; used for diagnostics in
97 store_parm_decls_oldstyle. */
99 static location_t current_function_prototype_locus;
101 /* Whether this prototype was built-in. */
103 static bool current_function_prototype_built_in;
105 /* The argument type information of this prototype. */
107 static tree current_function_prototype_arg_types;
109 /* The argument information structure for the function currently being
110 defined. */
112 static struct c_arg_info *current_function_arg_info;
114 /* The obstack on which parser and related data structures, which are
115 not live beyond their top-level declaration or definition, are
116 allocated. */
117 struct obstack parser_obstack;
119 /* The current statement tree. */
121 static GTY(()) struct stmt_tree_s c_stmt_tree;
123 /* State saving variables. */
124 tree c_break_label;
125 tree c_cont_label;
127 /* Linked list of TRANSLATION_UNIT_DECLS for the translation units
128 included in this invocation. Note that the current translation
129 unit is not included in this list. */
131 static GTY(()) tree all_translation_units;
133 /* A list of decls to be made automatically visible in each file scope. */
134 static GTY(()) tree visible_builtins;
136 /* Set to 0 at beginning of a function definition, set to 1 if
137 a return statement that specifies a return value is seen. */
139 int current_function_returns_value;
141 /* Set to 0 at beginning of a function definition, set to 1 if
142 a return statement with no argument is seen. */
144 int current_function_returns_null;
146 /* Set to 0 at beginning of a function definition, set to 1 if
147 a call to a noreturn function is seen. */
149 int current_function_returns_abnormally;
151 /* Set to nonzero by `grokdeclarator' for a function
152 whose return type is defaulted, if warnings for this are desired. */
154 static int warn_about_return_type;
156 /* Nonzero when the current toplevel function contains a declaration
157 of a nested function which is never defined. */
159 static bool undef_nested_function;
161 /* True means global_bindings_p should return false even if the scope stack
162 says we are in file scope. */
163 bool c_override_global_bindings_to_false;
166 /* Each c_binding structure describes one binding of an identifier to
167 a decl. All the decls in a scope - irrespective of namespace - are
168 chained together by the ->prev field, which (as the name implies)
169 runs in reverse order. All the decls in a given namespace bound to
170 a given identifier are chained by the ->shadowed field, which runs
171 from inner to outer scopes.
173 The ->decl field usually points to a DECL node, but there are two
174 exceptions. In the namespace of type tags, the bound entity is a
175 RECORD_TYPE, UNION_TYPE, or ENUMERAL_TYPE node. If an undeclared
176 identifier is encountered, it is bound to error_mark_node to
177 suppress further errors about that identifier in the current
178 function.
180 The ->u.type field stores the type of the declaration in this scope;
181 if NULL, the type is the type of the ->decl field. This is only of
182 relevance for objects with external or internal linkage which may
183 be redeclared in inner scopes, forming composite types that only
184 persist for the duration of those scopes. In the external scope,
185 this stores the composite of all the types declared for this
186 object, visible or not. The ->inner_comp field (used only at file
187 scope) stores whether an incomplete array type at file scope was
188 completed at an inner scope to an array size other than 1.
190 The ->u.label field is used for labels. It points to a structure
191 which stores additional information used for warnings.
193 The depth field is copied from the scope structure that holds this
194 decl. It is used to preserve the proper ordering of the ->shadowed
195 field (see bind()) and also for a handful of special-case checks.
196 Finally, the invisible bit is true for a decl which should be
197 ignored for purposes of normal name lookup, and the nested bit is
198 true for a decl that's been bound a second time in an inner scope;
199 in all such cases, the binding in the outer scope will have its
200 invisible bit true. */
202 struct GTY((chain_next ("%h.prev"))) c_binding {
203 union GTY(()) { /* first so GTY desc can use decl */
204 tree GTY((tag ("0"))) type; /* the type in this scope */
205 struct c_label_vars * GTY((tag ("1"))) label; /* for warnings */
206 } GTY((desc ("TREE_CODE (%0.decl) == LABEL_DECL"))) u;
207 tree decl; /* the decl bound */
208 tree id; /* the identifier it's bound to */
209 struct c_binding *prev; /* the previous decl in this scope */
210 struct c_binding *shadowed; /* the innermost decl shadowed by this one */
211 unsigned int depth : 28; /* depth of this scope */
212 BOOL_BITFIELD invisible : 1; /* normal lookup should ignore this binding */
213 BOOL_BITFIELD nested : 1; /* do not set DECL_CONTEXT when popping */
214 BOOL_BITFIELD inner_comp : 1; /* incomplete array completed in inner scope */
215 BOOL_BITFIELD in_struct : 1; /* currently defined as struct field */
216 location_t locus; /* location for nested bindings */
218 #define B_IN_SCOPE(b1, b2) ((b1)->depth == (b2)->depth)
219 #define B_IN_CURRENT_SCOPE(b) ((b)->depth == current_scope->depth)
220 #define B_IN_FILE_SCOPE(b) ((b)->depth == 1 /*file_scope->depth*/)
221 #define B_IN_EXTERNAL_SCOPE(b) ((b)->depth == 0 /*external_scope->depth*/)
223 #define I_SYMBOL_BINDING(node) \
224 (((struct lang_identifier *) IDENTIFIER_NODE_CHECK(node))->symbol_binding)
225 #define I_SYMBOL_DECL(node) \
226 (I_SYMBOL_BINDING(node) ? I_SYMBOL_BINDING(node)->decl : 0)
228 #define I_TAG_BINDING(node) \
229 (((struct lang_identifier *) IDENTIFIER_NODE_CHECK(node))->tag_binding)
230 #define I_TAG_DECL(node) \
231 (I_TAG_BINDING(node) ? I_TAG_BINDING(node)->decl : 0)
233 #define I_LABEL_BINDING(node) \
234 (((struct lang_identifier *) IDENTIFIER_NODE_CHECK(node))->label_binding)
235 #define I_LABEL_DECL(node) \
236 (I_LABEL_BINDING(node) ? I_LABEL_BINDING(node)->decl : 0)
238 /* Each C symbol points to three linked lists of c_binding structures.
239 These describe the values of the identifier in the three different
240 namespaces defined by the language. */
242 struct GTY(()) lang_identifier {
243 struct c_common_identifier common_id;
244 struct c_binding *symbol_binding; /* vars, funcs, constants, typedefs */
245 struct c_binding *tag_binding; /* struct/union/enum tags */
246 struct c_binding *label_binding; /* labels */
249 /* Validate c-lang.c's assumptions. */
250 extern char C_SIZEOF_STRUCT_LANG_IDENTIFIER_isnt_accurate
251 [(sizeof(struct lang_identifier) == C_SIZEOF_STRUCT_LANG_IDENTIFIER) ? 1 : -1];
253 /* The resulting tree type. */
255 union GTY((desc ("TREE_CODE (&%h.generic) == IDENTIFIER_NODE"),
256 chain_next ("TREE_CODE (&%h.generic) == INTEGER_TYPE ? (union lang_tree_node *) TYPE_NEXT_VARIANT (&%h.generic) : ((union lang_tree_node *) TREE_CHAIN (&%h.generic))"))) lang_tree_node
258 union tree_node GTY ((tag ("0"),
259 desc ("tree_node_structure (&%h)")))
260 generic;
261 struct lang_identifier GTY ((tag ("1"))) identifier;
264 /* Track bindings and other things that matter for goto warnings. For
265 efficiency, we do not gather all the decls at the point of
266 definition. Instead, we point into the bindings structure. As
267 scopes are popped, we update these structures and gather the decls
268 that matter at that time. */
270 struct GTY(()) c_spot_bindings {
271 /* The currently open scope which holds bindings defined when the
272 label was defined or the goto statement was found. */
273 struct c_scope *scope;
274 /* The bindings in the scope field which were defined at the point
275 of the label or goto. This lets us look at older or newer
276 bindings in the scope, as appropriate. */
277 struct c_binding *bindings_in_scope;
278 /* The number of statement expressions that have started since this
279 label or goto statement was defined. This is zero if we are at
280 the same statement expression level. It is positive if we are in
281 a statement expression started since this spot. It is negative
282 if this spot was in a statement expression and we have left
283 it. */
284 int stmt_exprs;
285 /* Whether we started in a statement expression but are no longer in
286 it. This is set to true if stmt_exprs ever goes negative. */
287 bool left_stmt_expr;
290 /* This structure is used to keep track of bindings seen when a goto
291 statement is defined. This is only used if we see the goto
292 statement before we see the label. */
294 struct GTY(()) c_goto_bindings {
295 /* The location of the goto statement. */
296 location_t loc;
297 /* The bindings of the goto statement. */
298 struct c_spot_bindings goto_bindings;
301 typedef struct c_goto_bindings *c_goto_bindings_p;
302 DEF_VEC_P(c_goto_bindings_p);
303 DEF_VEC_ALLOC_P(c_goto_bindings_p,gc);
305 /* The additional information we keep track of for a label binding.
306 These fields are updated as scopes are popped. */
308 struct GTY(()) c_label_vars {
309 /* The shadowed c_label_vars, when one label shadows another (which
310 can only happen using a __label__ declaration). */
311 struct c_label_vars *shadowed;
312 /* The bindings when the label was defined. */
313 struct c_spot_bindings label_bindings;
314 /* A list of decls that we care about: decls about which we should
315 warn if a goto branches to this label from later in the function.
316 Decls are added to this list as scopes are popped. We only add
317 the decls that matter. */
318 VEC(tree,gc) *decls_in_scope;
319 /* A list of goto statements to this label. This is only used for
320 goto statements seen before the label was defined, so that we can
321 issue appropriate warnings for them. */
322 VEC(c_goto_bindings_p,gc) *gotos;
325 /* Each c_scope structure describes the complete contents of one
326 scope. Four scopes are distinguished specially: the innermost or
327 current scope, the innermost function scope, the file scope (always
328 the second to outermost) and the outermost or external scope.
330 Most declarations are recorded in the current scope.
332 All normal label declarations are recorded in the innermost
333 function scope, as are bindings of undeclared identifiers to
334 error_mark_node. (GCC permits nested functions as an extension,
335 hence the 'innermost' qualifier.) Explicitly declared labels
336 (using the __label__ extension) appear in the current scope.
338 Being in the file scope (current_scope == file_scope) causes
339 special behavior in several places below. Also, under some
340 conditions the Objective-C front end records declarations in the
341 file scope even though that isn't the current scope.
343 All declarations with external linkage are recorded in the external
344 scope, even if they aren't visible there; this models the fact that
345 such declarations are visible to the entire program, and (with a
346 bit of cleverness, see pushdecl) allows diagnosis of some violations
347 of C99 6.2.2p7 and 6.2.7p2:
349 If, within the same translation unit, the same identifier appears
350 with both internal and external linkage, the behavior is
351 undefined.
353 All declarations that refer to the same object or function shall
354 have compatible type; otherwise, the behavior is undefined.
356 Initially only the built-in declarations, which describe compiler
357 intrinsic functions plus a subset of the standard library, are in
358 this scope.
360 The order of the blocks list matters, and it is frequently appended
361 to. To avoid having to walk all the way to the end of the list on
362 each insertion, or reverse the list later, we maintain a pointer to
363 the last list entry. (FIXME: It should be feasible to use a reversed
364 list here.)
366 The bindings list is strictly in reverse order of declarations;
367 pop_scope relies on this. */
370 struct GTY((chain_next ("%h.outer"))) c_scope {
371 /* The scope containing this one. */
372 struct c_scope *outer;
374 /* The next outermost function scope. */
375 struct c_scope *outer_function;
377 /* All bindings in this scope. */
378 struct c_binding *bindings;
380 /* For each scope (except the global one), a chain of BLOCK nodes
381 for all the scopes that were entered and exited one level down. */
382 tree blocks;
383 tree blocks_last;
385 /* The depth of this scope. Used to keep the ->shadowed chain of
386 bindings sorted innermost to outermost. */
387 unsigned int depth : 28;
389 /* True if we are currently filling this scope with parameter
390 declarations. */
391 BOOL_BITFIELD parm_flag : 1;
393 /* True if we saw [*] in this scope. Used to give an error messages
394 if these appears in a function definition. */
395 BOOL_BITFIELD had_vla_unspec : 1;
397 /* True if we already complained about forward parameter decls
398 in this scope. This prevents double warnings on
399 foo (int a; int b; ...) */
400 BOOL_BITFIELD warned_forward_parm_decls : 1;
402 /* True if this is the outermost block scope of a function body.
403 This scope contains the parameters, the local variables declared
404 in the outermost block, and all the labels (except those in
405 nested functions, or declared at block scope with __label__). */
406 BOOL_BITFIELD function_body : 1;
408 /* True means make a BLOCK for this scope no matter what. */
409 BOOL_BITFIELD keep : 1;
411 /* True means that an unsuffixed float constant is _Decimal64. */
412 BOOL_BITFIELD float_const_decimal64 : 1;
414 /* True if this scope has any label bindings. This is used to speed
415 up searching for labels when popping scopes, particularly since
416 labels are normally only found at function scope. */
417 BOOL_BITFIELD has_label_bindings : 1;
420 /* The scope currently in effect. */
422 static GTY(()) struct c_scope *current_scope;
424 /* The innermost function scope. Ordinary (not explicitly declared)
425 labels, bindings to error_mark_node, and the lazily-created
426 bindings of __func__ and its friends get this scope. */
428 static GTY(()) struct c_scope *current_function_scope;
430 /* The C file scope. This is reset for each input translation unit. */
432 static GTY(()) struct c_scope *file_scope;
434 /* The outermost scope. This is used for all declarations with
435 external linkage, and only these, hence the name. */
437 static GTY(()) struct c_scope *external_scope;
439 /* A chain of c_scope structures awaiting reuse. */
441 static GTY((deletable)) struct c_scope *scope_freelist;
443 /* A chain of c_binding structures awaiting reuse. */
445 static GTY((deletable)) struct c_binding *binding_freelist;
447 /* Append VAR to LIST in scope SCOPE. */
448 #define SCOPE_LIST_APPEND(scope, list, decl) do { \
449 struct c_scope *s_ = (scope); \
450 tree d_ = (decl); \
451 if (s_->list##_last) \
452 BLOCK_CHAIN (s_->list##_last) = d_; \
453 else \
454 s_->list = d_; \
455 s_->list##_last = d_; \
456 } while (0)
458 /* Concatenate FROM in scope FSCOPE onto TO in scope TSCOPE. */
459 #define SCOPE_LIST_CONCAT(tscope, to, fscope, from) do { \
460 struct c_scope *t_ = (tscope); \
461 struct c_scope *f_ = (fscope); \
462 if (t_->to##_last) \
463 BLOCK_CHAIN (t_->to##_last) = f_->from; \
464 else \
465 t_->to = f_->from; \
466 t_->to##_last = f_->from##_last; \
467 } while (0)
469 /* A c_inline_static structure stores details of a static identifier
470 referenced in a definition of a function that may be an inline
471 definition if no subsequent declaration of that function uses
472 "extern" or does not use "inline". */
474 struct GTY((chain_next ("%h.next"))) c_inline_static {
475 /* The location for a diagnostic. */
476 location_t location;
478 /* The function that may be an inline definition. */
479 tree function;
481 /* The object or function referenced. */
482 tree static_decl;
484 /* What sort of reference this is. */
485 enum c_inline_static_type type;
487 /* The next such structure or NULL. */
488 struct c_inline_static *next;
491 /* List of static identifiers used or referenced in functions that may
492 be inline definitions. */
493 static GTY(()) struct c_inline_static *c_inline_statics;
495 /* True means unconditionally make a BLOCK for the next scope pushed. */
497 static bool keep_next_level_flag;
499 /* True means the next call to push_scope will be the outermost scope
500 of a function body, so do not push a new scope, merely cease
501 expecting parameter decls. */
503 static bool next_is_function_body;
505 /* A VEC of pointers to c_binding structures. */
507 typedef struct c_binding *c_binding_ptr;
508 DEF_VEC_P(c_binding_ptr);
509 DEF_VEC_ALLOC_P(c_binding_ptr,heap);
511 /* Information that we keep for a struct or union while it is being
512 parsed. */
514 struct c_struct_parse_info
516 /* If warn_cxx_compat, a list of types defined within this
517 struct. */
518 VEC(tree,heap) *struct_types;
519 /* If warn_cxx_compat, a list of field names which have bindings,
520 and which are defined in this struct, but which are not defined
521 in any enclosing struct. This is used to clear the in_struct
522 field of the c_bindings structure. */
523 VEC(c_binding_ptr,heap) *fields;
524 /* If warn_cxx_compat, a list of typedef names used when defining
525 fields in this struct. */
526 VEC(tree,heap) *typedefs_seen;
529 /* Information for the struct or union currently being parsed, or
530 NULL if not parsing a struct or union. */
531 static struct c_struct_parse_info *struct_parse_info;
533 /* Forward declarations. */
534 static tree lookup_name_in_scope (tree, struct c_scope *);
535 static tree c_make_fname_decl (location_t, tree, int);
536 static tree grokdeclarator (const struct c_declarator *,
537 struct c_declspecs *,
538 enum decl_context, bool, tree *, tree *, tree *,
539 bool *, enum deprecated_states);
540 static tree grokparms (struct c_arg_info *, bool);
541 static void layout_array_type (tree);
543 /* T is a statement. Add it to the statement-tree. This is the
544 C/ObjC version--C++ has a slightly different version of this
545 function. */
547 tree
548 add_stmt (tree t)
550 enum tree_code code = TREE_CODE (t);
552 if (CAN_HAVE_LOCATION_P (t) && code != LABEL_EXPR)
554 if (!EXPR_HAS_LOCATION (t))
555 SET_EXPR_LOCATION (t, input_location);
558 if (code == LABEL_EXPR || code == CASE_LABEL_EXPR)
559 STATEMENT_LIST_HAS_LABEL (cur_stmt_list) = 1;
561 /* Add T to the statement-tree. Non-side-effect statements need to be
562 recorded during statement expressions. */
563 append_to_statement_list_force (t, &cur_stmt_list);
565 return t;
569 void
570 c_print_identifier (FILE *file, tree node, int indent)
572 print_node (file, "symbol", I_SYMBOL_DECL (node), indent + 4);
573 print_node (file, "tag", I_TAG_DECL (node), indent + 4);
574 print_node (file, "label", I_LABEL_DECL (node), indent + 4);
575 if (C_IS_RESERVED_WORD (node) && C_RID_CODE (node) != RID_CXX_COMPAT_WARN)
577 tree rid = ridpointers[C_RID_CODE (node)];
578 indent_to (file, indent + 4);
579 fprintf (file, "rid " HOST_PTR_PRINTF " \"%s\"",
580 (void *) rid, IDENTIFIER_POINTER (rid));
584 /* Establish a binding between NAME, an IDENTIFIER_NODE, and DECL,
585 which may be any of several kinds of DECL or TYPE or error_mark_node,
586 in the scope SCOPE. */
587 static void
588 bind (tree name, tree decl, struct c_scope *scope, bool invisible,
589 bool nested, location_t locus)
591 struct c_binding *b, **here;
593 if (binding_freelist)
595 b = binding_freelist;
596 binding_freelist = b->prev;
598 else
599 b = GGC_NEW (struct c_binding);
601 b->shadowed = 0;
602 b->decl = decl;
603 b->id = name;
604 b->depth = scope->depth;
605 b->invisible = invisible;
606 b->nested = nested;
607 b->inner_comp = 0;
608 b->in_struct = 0;
609 b->locus = locus;
611 b->u.type = NULL;
613 b->prev = scope->bindings;
614 scope->bindings = b;
616 if (!name)
617 return;
619 switch (TREE_CODE (decl))
621 case LABEL_DECL: here = &I_LABEL_BINDING (name); break;
622 case ENUMERAL_TYPE:
623 case UNION_TYPE:
624 case RECORD_TYPE: here = &I_TAG_BINDING (name); break;
625 case VAR_DECL:
626 case FUNCTION_DECL:
627 case TYPE_DECL:
628 case CONST_DECL:
629 case PARM_DECL:
630 case ERROR_MARK: here = &I_SYMBOL_BINDING (name); break;
632 default:
633 gcc_unreachable ();
636 /* Locate the appropriate place in the chain of shadowed decls
637 to insert this binding. Normally, scope == current_scope and
638 this does nothing. */
639 while (*here && (*here)->depth > scope->depth)
640 here = &(*here)->shadowed;
642 b->shadowed = *here;
643 *here = b;
646 /* Clear the binding structure B, stick it on the binding_freelist,
647 and return the former value of b->prev. This is used by pop_scope
648 and get_parm_info to iterate destructively over all the bindings
649 from a given scope. */
650 static struct c_binding *
651 free_binding_and_advance (struct c_binding *b)
653 struct c_binding *prev = b->prev;
655 memset (b, 0, sizeof (struct c_binding));
656 b->prev = binding_freelist;
657 binding_freelist = b;
659 return prev;
662 /* Bind a label. Like bind, but skip fields which aren't used for
663 labels, and add the LABEL_VARS value. */
664 static void
665 bind_label (tree name, tree label, struct c_scope *scope,
666 struct c_label_vars *label_vars)
668 struct c_binding *b;
670 bind (name, label, scope, /*invisible=*/false, /*nested=*/false,
671 UNKNOWN_LOCATION);
673 scope->has_label_bindings = true;
675 b = scope->bindings;
676 gcc_assert (b->decl == label);
677 label_vars->shadowed = b->u.label;
678 b->u.label = label_vars;
681 /* Hook called at end of compilation to assume 1 elt
682 for a file-scope tentative array defn that wasn't complete before. */
684 void
685 c_finish_incomplete_decl (tree decl)
687 if (TREE_CODE (decl) == VAR_DECL)
689 tree type = TREE_TYPE (decl);
690 if (type != error_mark_node
691 && TREE_CODE (type) == ARRAY_TYPE
692 && !DECL_EXTERNAL (decl)
693 && TYPE_DOMAIN (type) == 0)
695 warning_at (DECL_SOURCE_LOCATION (decl),
696 0, "array %q+D assumed to have one element", decl);
698 complete_array_type (&TREE_TYPE (decl), NULL_TREE, true);
700 layout_decl (decl, 0);
705 /* Record that inline function FUNC contains a reference (location
706 LOC) to static DECL (file-scope or function-local according to
707 TYPE). */
709 void
710 record_inline_static (location_t loc, tree func, tree decl,
711 enum c_inline_static_type type)
713 struct c_inline_static *csi = GGC_NEW (struct c_inline_static);
714 csi->location = loc;
715 csi->function = func;
716 csi->static_decl = decl;
717 csi->type = type;
718 csi->next = c_inline_statics;
719 c_inline_statics = csi;
722 /* Check for references to static declarations in inline functions at
723 the end of the translation unit and diagnose them if the functions
724 are still inline definitions. */
726 static void
727 check_inline_statics (void)
729 struct c_inline_static *csi;
730 for (csi = c_inline_statics; csi; csi = csi->next)
732 if (DECL_EXTERNAL (csi->function))
733 switch (csi->type)
735 case csi_internal:
736 pedwarn (csi->location, 0,
737 "%qD is static but used in inline function %qD "
738 "which is not static", csi->static_decl, csi->function);
739 break;
740 case csi_modifiable:
741 pedwarn (csi->location, 0,
742 "%q+D is static but declared in inline function %qD "
743 "which is not static", csi->static_decl, csi->function);
744 break;
745 default:
746 gcc_unreachable ();
749 c_inline_statics = NULL;
752 /* Fill in a c_spot_bindings structure. If DEFINING is true, set it
753 for the current state, otherwise set it to uninitialized. */
755 static void
756 set_spot_bindings (struct c_spot_bindings *p, bool defining)
758 if (defining)
760 p->scope = current_scope;
761 p->bindings_in_scope = current_scope->bindings;
763 else
765 p->scope = NULL;
766 p->bindings_in_scope = NULL;
768 p->stmt_exprs = 0;
769 p->left_stmt_expr = false;
772 /* Return true if we will want to say something if a goto statement
773 crosses DECL. */
775 static bool
776 decl_jump_unsafe (tree decl)
778 if (decl == error_mark_node || TREE_TYPE (decl) == error_mark_node)
779 return false;
781 /* Always warn about crossing variably modified types. */
782 if ((TREE_CODE (decl) == VAR_DECL || TREE_CODE (decl) == TYPE_DECL)
783 && variably_modified_type_p (TREE_TYPE (decl), NULL_TREE))
784 return true;
786 /* Otherwise, only warn if -Wgoto-misses-init and this is an
787 initialized automatic decl. */
788 if (warn_jump_misses_init
789 && TREE_CODE (decl) == VAR_DECL
790 && !TREE_STATIC (decl)
791 && DECL_INITIAL (decl) != NULL_TREE)
792 return true;
794 return false;
797 /* Update spot bindings P as we pop out of SCOPE. Return true if we
798 should push decls for a label. */
800 static bool
801 update_spot_bindings (struct c_scope *scope, struct c_spot_bindings *p)
803 if (p->scope != scope)
805 /* This label or goto is defined in some other scope, or it is a
806 label which is not yet defined. There is nothing to
807 update. */
808 return false;
811 /* Adjust the spot bindings to refer to the bindings already defined
812 in the enclosing scope. */
813 p->scope = scope->outer;
814 p->bindings_in_scope = p->scope->bindings;
816 return true;
819 /* The Objective-C front-end often needs to determine the current scope. */
821 void *
822 objc_get_current_scope (void)
824 return current_scope;
827 /* The following function is used only by Objective-C. It needs to live here
828 because it accesses the innards of c_scope. */
830 void
831 objc_mark_locals_volatile (void *enclosing_blk)
833 struct c_scope *scope;
834 struct c_binding *b;
836 for (scope = current_scope;
837 scope && scope != enclosing_blk;
838 scope = scope->outer)
840 for (b = scope->bindings; b; b = b->prev)
841 objc_volatilize_decl (b->decl);
843 /* Do not climb up past the current function. */
844 if (scope->function_body)
845 break;
849 /* Nonzero if we are currently in file scope. */
852 global_bindings_p (void)
854 return (current_scope == file_scope && !c_override_global_bindings_to_false
855 ? -1
856 : 0);
859 void
860 keep_next_level (void)
862 keep_next_level_flag = true;
865 /* Set the flag for the FLOAT_CONST_DECIMAL64 pragma being ON. */
867 void
868 set_float_const_decimal64 (void)
870 current_scope->float_const_decimal64 = true;
873 /* Clear the flag for the FLOAT_CONST_DECIMAL64 pragma. */
875 void
876 clear_float_const_decimal64 (void)
878 current_scope->float_const_decimal64 = false;
881 /* Return nonzero if an unsuffixed float constant is _Decimal64. */
883 bool
884 float_const_decimal64_p (void)
886 return current_scope->float_const_decimal64;
889 /* Identify this scope as currently being filled with parameters. */
891 void
892 declare_parm_level (void)
894 current_scope->parm_flag = true;
897 void
898 push_scope (void)
900 if (next_is_function_body)
902 /* This is the transition from the parameters to the top level
903 of the function body. These are the same scope
904 (C99 6.2.1p4,6) so we do not push another scope structure.
905 next_is_function_body is set only by store_parm_decls, which
906 in turn is called when and only when we are about to
907 encounter the opening curly brace for the function body.
909 The outermost block of a function always gets a BLOCK node,
910 because the debugging output routines expect that each
911 function has at least one BLOCK. */
912 current_scope->parm_flag = false;
913 current_scope->function_body = true;
914 current_scope->keep = true;
915 current_scope->outer_function = current_function_scope;
916 current_function_scope = current_scope;
918 keep_next_level_flag = false;
919 next_is_function_body = false;
921 /* The FLOAT_CONST_DECIMAL64 pragma applies to nested scopes. */
922 if (current_scope->outer)
923 current_scope->float_const_decimal64
924 = current_scope->outer->float_const_decimal64;
925 else
926 current_scope->float_const_decimal64 = false;
928 else
930 struct c_scope *scope;
931 if (scope_freelist)
933 scope = scope_freelist;
934 scope_freelist = scope->outer;
936 else
937 scope = GGC_CNEW (struct c_scope);
939 /* The FLOAT_CONST_DECIMAL64 pragma applies to nested scopes. */
940 if (current_scope)
941 scope->float_const_decimal64 = current_scope->float_const_decimal64;
942 else
943 scope->float_const_decimal64 = false;
945 scope->keep = keep_next_level_flag;
946 scope->outer = current_scope;
947 scope->depth = current_scope ? (current_scope->depth + 1) : 0;
949 /* Check for scope depth overflow. Unlikely (2^28 == 268,435,456) but
950 possible. */
951 if (current_scope && scope->depth == 0)
953 scope->depth--;
954 sorry ("GCC supports only %u nested scopes", scope->depth);
957 current_scope = scope;
958 keep_next_level_flag = false;
962 /* This is called when we are leaving SCOPE. For each label defined
963 in SCOPE, add any appropriate decls to its decls_in_scope fields.
964 These are the decls whose initialization will be skipped by a goto
965 later in the function. */
967 static void
968 update_label_decls (struct c_scope *scope)
970 struct c_scope *s;
972 s = scope;
973 while (s != NULL)
975 if (s->has_label_bindings)
977 struct c_binding *b;
979 for (b = s->bindings; b != NULL; b = b->prev)
981 struct c_label_vars *label_vars;
982 struct c_binding *b1;
983 unsigned int ix;
984 struct c_goto_bindings *g;
986 if (TREE_CODE (b->decl) != LABEL_DECL)
987 continue;
988 label_vars = b->u.label;
990 b1 = label_vars->label_bindings.bindings_in_scope;
991 if (update_spot_bindings (scope, &label_vars->label_bindings))
993 /* This label is defined in this scope. */
994 for (; b1 != NULL; b1 = b1->prev)
996 /* A goto from later in the function to this
997 label will never see the initialization of
998 B1, if any. Save it to issue a warning if
999 needed. */
1000 if (decl_jump_unsafe (b1->decl))
1001 VEC_safe_push (tree, gc, label_vars->decls_in_scope,
1002 b1->decl);
1006 /* Update the bindings of any goto statements associated
1007 with this label. */
1008 for (ix = 0;
1009 VEC_iterate (c_goto_bindings_p, label_vars->gotos, ix, g);
1010 ++ix)
1011 update_spot_bindings (scope, &g->goto_bindings);
1015 /* Don't search beyond the current function. */
1016 if (s == current_function_scope)
1017 break;
1019 s = s->outer;
1023 /* Set the TYPE_CONTEXT of all of TYPE's variants to CONTEXT. */
1025 static void
1026 set_type_context (tree type, tree context)
1028 for (type = TYPE_MAIN_VARIANT (type); type;
1029 type = TYPE_NEXT_VARIANT (type))
1030 TYPE_CONTEXT (type) = context;
1033 /* Exit a scope. Restore the state of the identifier-decl mappings
1034 that were in effect when this scope was entered. Return a BLOCK
1035 node containing all the DECLs in this scope that are of interest
1036 to debug info generation. */
1038 tree
1039 pop_scope (void)
1041 struct c_scope *scope = current_scope;
1042 tree block, context, p;
1043 struct c_binding *b;
1045 bool functionbody = scope->function_body;
1046 bool keep = functionbody || scope->keep || scope->bindings;
1048 update_label_decls (scope);
1050 /* If appropriate, create a BLOCK to record the decls for the life
1051 of this function. */
1052 block = 0;
1053 if (keep)
1055 block = make_node (BLOCK);
1056 BLOCK_SUBBLOCKS (block) = scope->blocks;
1057 TREE_USED (block) = 1;
1059 /* In each subblock, record that this is its superior. */
1060 for (p = scope->blocks; p; p = BLOCK_CHAIN (p))
1061 BLOCK_SUPERCONTEXT (p) = block;
1063 BLOCK_VARS (block) = 0;
1066 /* The TYPE_CONTEXTs for all of the tagged types belonging to this
1067 scope must be set so that they point to the appropriate
1068 construct, i.e. either to the current FUNCTION_DECL node, or
1069 else to the BLOCK node we just constructed.
1071 Note that for tagged types whose scope is just the formal
1072 parameter list for some function type specification, we can't
1073 properly set their TYPE_CONTEXTs here, because we don't have a
1074 pointer to the appropriate FUNCTION_TYPE node readily available
1075 to us. For those cases, the TYPE_CONTEXTs of the relevant tagged
1076 type nodes get set in `grokdeclarator' as soon as we have created
1077 the FUNCTION_TYPE node which will represent the "scope" for these
1078 "parameter list local" tagged types. */
1079 if (scope->function_body)
1080 context = current_function_decl;
1081 else if (scope == file_scope)
1083 tree file_decl = build_decl (UNKNOWN_LOCATION,
1084 TRANSLATION_UNIT_DECL, 0, 0);
1085 TREE_CHAIN (file_decl) = all_translation_units;
1086 all_translation_units = file_decl;
1087 context = file_decl;
1089 else
1090 context = block;
1092 /* Clear all bindings in this scope. */
1093 for (b = scope->bindings; b; b = free_binding_and_advance (b))
1095 p = b->decl;
1096 switch (TREE_CODE (p))
1098 case LABEL_DECL:
1099 /* Warnings for unused labels, errors for undefined labels. */
1100 if (TREE_USED (p) && !DECL_INITIAL (p))
1102 error ("label %q+D used but not defined", p);
1103 DECL_INITIAL (p) = error_mark_node;
1105 else
1106 warn_for_unused_label (p);
1108 /* Labels go in BLOCK_VARS. */
1109 TREE_CHAIN (p) = BLOCK_VARS (block);
1110 BLOCK_VARS (block) = p;
1111 gcc_assert (I_LABEL_BINDING (b->id) == b);
1112 I_LABEL_BINDING (b->id) = b->shadowed;
1114 /* Also pop back to the shadowed label_vars. */
1115 release_tree_vector (b->u.label->decls_in_scope);
1116 b->u.label = b->u.label->shadowed;
1117 break;
1119 case ENUMERAL_TYPE:
1120 case UNION_TYPE:
1121 case RECORD_TYPE:
1122 set_type_context (p, context);
1124 /* Types may not have tag-names, in which case the type
1125 appears in the bindings list with b->id NULL. */
1126 if (b->id)
1128 gcc_assert (I_TAG_BINDING (b->id) == b);
1129 I_TAG_BINDING (b->id) = b->shadowed;
1131 break;
1133 case FUNCTION_DECL:
1134 /* Propagate TREE_ADDRESSABLE from nested functions to their
1135 containing functions. */
1136 if (!TREE_ASM_WRITTEN (p)
1137 && DECL_INITIAL (p) != 0
1138 && TREE_ADDRESSABLE (p)
1139 && DECL_ABSTRACT_ORIGIN (p) != 0
1140 && DECL_ABSTRACT_ORIGIN (p) != p)
1141 TREE_ADDRESSABLE (DECL_ABSTRACT_ORIGIN (p)) = 1;
1142 if (!DECL_EXTERNAL (p)
1143 && !DECL_INITIAL (p)
1144 && scope != file_scope
1145 && scope != external_scope)
1147 error ("nested function %q+D declared but never defined", p);
1148 undef_nested_function = true;
1150 else if (DECL_DECLARED_INLINE_P (p)
1151 && TREE_PUBLIC (p)
1152 && !DECL_INITIAL (p))
1154 /* C99 6.7.4p6: "a function with external linkage... declared
1155 with an inline function specifier ... shall also be defined
1156 in the same translation unit." */
1157 if (!flag_gnu89_inline)
1158 pedwarn (input_location, 0,
1159 "inline function %q+D declared but never defined", p);
1160 DECL_EXTERNAL (p) = 1;
1163 goto common_symbol;
1165 case VAR_DECL:
1166 /* Warnings for unused variables. */
1167 if (!TREE_USED (p)
1168 && !TREE_NO_WARNING (p)
1169 && !DECL_IN_SYSTEM_HEADER (p)
1170 && DECL_NAME (p)
1171 && !DECL_ARTIFICIAL (p)
1172 && scope != file_scope
1173 && scope != external_scope)
1174 warning (OPT_Wunused_variable, "unused variable %q+D", p);
1176 if (b->inner_comp)
1178 error ("type of array %q+D completed incompatibly with"
1179 " implicit initialization", p);
1182 /* Fall through. */
1183 case TYPE_DECL:
1184 case CONST_DECL:
1185 common_symbol:
1186 /* All of these go in BLOCK_VARS, but only if this is the
1187 binding in the home scope. */
1188 if (!b->nested)
1190 TREE_CHAIN (p) = BLOCK_VARS (block);
1191 BLOCK_VARS (block) = p;
1193 else if (VAR_OR_FUNCTION_DECL_P (p))
1195 /* For block local externs add a special
1196 DECL_EXTERNAL decl for debug info generation. */
1197 tree extp = copy_node (p);
1199 DECL_EXTERNAL (extp) = 1;
1200 TREE_STATIC (extp) = 0;
1201 TREE_PUBLIC (extp) = 1;
1202 DECL_INITIAL (extp) = NULL_TREE;
1203 DECL_LANG_SPECIFIC (extp) = NULL;
1204 DECL_CONTEXT (extp) = current_function_decl;
1205 if (TREE_CODE (p) == FUNCTION_DECL)
1207 DECL_RESULT (extp) = NULL_TREE;
1208 DECL_SAVED_TREE (extp) = NULL_TREE;
1209 DECL_STRUCT_FUNCTION (extp) = NULL;
1211 if (b->locus != UNKNOWN_LOCATION)
1212 DECL_SOURCE_LOCATION (extp) = b->locus;
1213 TREE_CHAIN (extp) = BLOCK_VARS (block);
1214 BLOCK_VARS (block) = extp;
1216 /* If this is the file scope, and we are processing more
1217 than one translation unit in this compilation, set
1218 DECL_CONTEXT of each decl to the TRANSLATION_UNIT_DECL.
1219 This makes same_translation_unit_p work, and causes
1220 static declarations to be given disambiguating suffixes. */
1221 if (scope == file_scope && num_in_fnames > 1)
1223 DECL_CONTEXT (p) = context;
1224 if (TREE_CODE (p) == TYPE_DECL)
1225 set_type_context (TREE_TYPE (p), context);
1228 /* Fall through. */
1229 /* Parameters go in DECL_ARGUMENTS, not BLOCK_VARS, and have
1230 already been put there by store_parm_decls. Unused-
1231 parameter warnings are handled by function.c.
1232 error_mark_node obviously does not go in BLOCK_VARS and
1233 does not get unused-variable warnings. */
1234 case PARM_DECL:
1235 case ERROR_MARK:
1236 /* It is possible for a decl not to have a name. We get
1237 here with b->id NULL in this case. */
1238 if (b->id)
1240 gcc_assert (I_SYMBOL_BINDING (b->id) == b);
1241 I_SYMBOL_BINDING (b->id) = b->shadowed;
1242 if (b->shadowed && b->shadowed->u.type)
1243 TREE_TYPE (b->shadowed->decl) = b->shadowed->u.type;
1245 break;
1247 default:
1248 gcc_unreachable ();
1253 /* Dispose of the block that we just made inside some higher level. */
1254 if ((scope->function_body || scope == file_scope) && context)
1256 DECL_INITIAL (context) = block;
1257 BLOCK_SUPERCONTEXT (block) = context;
1259 else if (scope->outer)
1261 if (block)
1262 SCOPE_LIST_APPEND (scope->outer, blocks, block);
1263 /* If we did not make a block for the scope just exited, any
1264 blocks made for inner scopes must be carried forward so they
1265 will later become subblocks of something else. */
1266 else if (scope->blocks)
1267 SCOPE_LIST_CONCAT (scope->outer, blocks, scope, blocks);
1270 /* Pop the current scope, and free the structure for reuse. */
1271 current_scope = scope->outer;
1272 if (scope->function_body)
1273 current_function_scope = scope->outer_function;
1275 memset (scope, 0, sizeof (struct c_scope));
1276 scope->outer = scope_freelist;
1277 scope_freelist = scope;
1279 return block;
1282 void
1283 push_file_scope (void)
1285 tree decl;
1287 if (file_scope)
1288 return;
1290 push_scope ();
1291 file_scope = current_scope;
1293 start_fname_decls ();
1295 for (decl = visible_builtins; decl; decl = TREE_CHAIN (decl))
1296 bind (DECL_NAME (decl), decl, file_scope,
1297 /*invisible=*/false, /*nested=*/true, DECL_SOURCE_LOCATION (decl));
1300 void
1301 pop_file_scope (void)
1303 /* In case there were missing closebraces, get us back to the global
1304 binding level. */
1305 while (current_scope != file_scope)
1306 pop_scope ();
1308 /* __FUNCTION__ is defined at file scope (""). This
1309 call may not be necessary as my tests indicate it
1310 still works without it. */
1311 finish_fname_decls ();
1313 check_inline_statics ();
1315 /* This is the point to write out a PCH if we're doing that.
1316 In that case we do not want to do anything else. */
1317 if (pch_file)
1319 c_common_write_pch ();
1320 return;
1323 /* Pop off the file scope and close this translation unit. */
1324 pop_scope ();
1325 file_scope = 0;
1327 maybe_apply_pending_pragma_weaks ();
1330 /* Adjust the bindings for the start of a statement expression. */
1332 void
1333 c_bindings_start_stmt_expr (struct c_spot_bindings* switch_bindings)
1335 struct c_scope *scope;
1337 for (scope = current_scope; scope != NULL; scope = scope->outer)
1339 struct c_binding *b;
1341 if (!scope->has_label_bindings)
1342 continue;
1344 for (b = scope->bindings; b != NULL; b = b->prev)
1346 struct c_label_vars *label_vars;
1347 unsigned int ix;
1348 struct c_goto_bindings *g;
1350 if (TREE_CODE (b->decl) != LABEL_DECL)
1351 continue;
1352 label_vars = b->u.label;
1353 ++label_vars->label_bindings.stmt_exprs;
1354 for (ix = 0;
1355 VEC_iterate (c_goto_bindings_p, label_vars->gotos, ix, g);
1356 ++ix)
1357 ++g->goto_bindings.stmt_exprs;
1361 if (switch_bindings != NULL)
1362 ++switch_bindings->stmt_exprs;
1365 /* Adjust the bindings for the end of a statement expression. */
1367 void
1368 c_bindings_end_stmt_expr (struct c_spot_bindings *switch_bindings)
1370 struct c_scope *scope;
1372 for (scope = current_scope; scope != NULL; scope = scope->outer)
1374 struct c_binding *b;
1376 if (!scope->has_label_bindings)
1377 continue;
1379 for (b = scope->bindings; b != NULL; b = b->prev)
1381 struct c_label_vars *label_vars;
1382 unsigned int ix;
1383 struct c_goto_bindings *g;
1385 if (TREE_CODE (b->decl) != LABEL_DECL)
1386 continue;
1387 label_vars = b->u.label;
1388 --label_vars->label_bindings.stmt_exprs;
1389 if (label_vars->label_bindings.stmt_exprs < 0)
1391 label_vars->label_bindings.left_stmt_expr = true;
1392 label_vars->label_bindings.stmt_exprs = 0;
1394 for (ix = 0;
1395 VEC_iterate (c_goto_bindings_p, label_vars->gotos, ix, g);
1396 ++ix)
1398 --g->goto_bindings.stmt_exprs;
1399 if (g->goto_bindings.stmt_exprs < 0)
1401 g->goto_bindings.left_stmt_expr = true;
1402 g->goto_bindings.stmt_exprs = 0;
1408 if (switch_bindings != NULL)
1410 --switch_bindings->stmt_exprs;
1411 gcc_assert (switch_bindings->stmt_exprs >= 0);
1415 /* Push a definition or a declaration of struct, union or enum tag "name".
1416 "type" should be the type node.
1417 We assume that the tag "name" is not already defined, and has a location
1418 of LOC.
1420 Note that the definition may really be just a forward reference.
1421 In that case, the TYPE_SIZE will be zero. */
1423 static void
1424 pushtag (location_t loc, tree name, tree type)
1426 /* Record the identifier as the type's name if it has none. */
1427 if (name && !TYPE_NAME (type))
1428 TYPE_NAME (type) = name;
1429 bind (name, type, current_scope, /*invisible=*/false, /*nested=*/false, loc);
1431 /* Create a fake NULL-named TYPE_DECL node whose TREE_TYPE will be the
1432 tagged type we just added to the current scope. This fake
1433 NULL-named TYPE_DECL node helps dwarfout.c to know when it needs
1434 to output a representation of a tagged type, and it also gives
1435 us a convenient place to record the "scope start" address for the
1436 tagged type. */
1438 TYPE_STUB_DECL (type) = pushdecl (build_decl (loc,
1439 TYPE_DECL, NULL_TREE, type));
1441 /* An approximation for now, so we can tell this is a function-scope tag.
1442 This will be updated in pop_scope. */
1443 TYPE_CONTEXT (type) = DECL_CONTEXT (TYPE_STUB_DECL (type));
1445 if (warn_cxx_compat && name != NULL_TREE)
1447 struct c_binding *b = I_SYMBOL_BINDING (name);
1449 if (b != NULL
1450 && b->decl != NULL_TREE
1451 && TREE_CODE (b->decl) == TYPE_DECL
1452 && (B_IN_CURRENT_SCOPE (b)
1453 || (current_scope == file_scope && B_IN_EXTERNAL_SCOPE (b)))
1454 && (TYPE_MAIN_VARIANT (TREE_TYPE (b->decl))
1455 != TYPE_MAIN_VARIANT (type)))
1457 warning_at (loc, OPT_Wc___compat,
1458 ("using %qD as both a typedef and a tag is "
1459 "invalid in C++"),
1460 b->decl);
1461 if (b->locus != UNKNOWN_LOCATION)
1462 inform (b->locus, "originally defined here");
1467 /* Subroutine of compare_decls. Allow harmless mismatches in return
1468 and argument types provided that the type modes match. This function
1469 return a unified type given a suitable match, and 0 otherwise. */
1471 static tree
1472 match_builtin_function_types (tree newtype, tree oldtype)
1474 tree newrettype, oldrettype;
1475 tree newargs, oldargs;
1476 tree trytype, tryargs;
1478 /* Accept the return type of the new declaration if same modes. */
1479 oldrettype = TREE_TYPE (oldtype);
1480 newrettype = TREE_TYPE (newtype);
1482 if (TYPE_MODE (oldrettype) != TYPE_MODE (newrettype))
1483 return 0;
1485 oldargs = TYPE_ARG_TYPES (oldtype);
1486 newargs = TYPE_ARG_TYPES (newtype);
1487 tryargs = newargs;
1489 while (oldargs || newargs)
1491 if (!oldargs
1492 || !newargs
1493 || !TREE_VALUE (oldargs)
1494 || !TREE_VALUE (newargs)
1495 || TYPE_MODE (TREE_VALUE (oldargs))
1496 != TYPE_MODE (TREE_VALUE (newargs)))
1497 return 0;
1499 oldargs = TREE_CHAIN (oldargs);
1500 newargs = TREE_CHAIN (newargs);
1503 trytype = build_function_type (newrettype, tryargs);
1504 return build_type_attribute_variant (trytype, TYPE_ATTRIBUTES (oldtype));
1507 /* Subroutine of diagnose_mismatched_decls. Check for function type
1508 mismatch involving an empty arglist vs a nonempty one and give clearer
1509 diagnostics. */
1510 static void
1511 diagnose_arglist_conflict (tree newdecl, tree olddecl,
1512 tree newtype, tree oldtype)
1514 tree t;
1516 if (TREE_CODE (olddecl) != FUNCTION_DECL
1517 || !comptypes (TREE_TYPE (oldtype), TREE_TYPE (newtype))
1518 || !((TYPE_ARG_TYPES (oldtype) == 0 && DECL_INITIAL (olddecl) == 0)
1520 (TYPE_ARG_TYPES (newtype) == 0 && DECL_INITIAL (newdecl) == 0)))
1521 return;
1523 t = TYPE_ARG_TYPES (oldtype);
1524 if (t == 0)
1525 t = TYPE_ARG_TYPES (newtype);
1526 for (; t; t = TREE_CHAIN (t))
1528 tree type = TREE_VALUE (t);
1530 if (TREE_CHAIN (t) == 0
1531 && TYPE_MAIN_VARIANT (type) != void_type_node)
1533 inform (input_location, "a parameter list with an ellipsis can%'t match "
1534 "an empty parameter name list declaration");
1535 break;
1538 if (c_type_promotes_to (type) != type)
1540 inform (input_location, "an argument type that has a default promotion can%'t match "
1541 "an empty parameter name list declaration");
1542 break;
1547 /* Another subroutine of diagnose_mismatched_decls. OLDDECL is an
1548 old-style function definition, NEWDECL is a prototype declaration.
1549 Diagnose inconsistencies in the argument list. Returns TRUE if
1550 the prototype is compatible, FALSE if not. */
1551 static bool
1552 validate_proto_after_old_defn (tree newdecl, tree newtype, tree oldtype)
1554 tree newargs, oldargs;
1555 int i;
1557 #define END_OF_ARGLIST(t) ((t) == void_type_node)
1559 oldargs = TYPE_ACTUAL_ARG_TYPES (oldtype);
1560 newargs = TYPE_ARG_TYPES (newtype);
1561 i = 1;
1563 for (;;)
1565 tree oldargtype = TREE_VALUE (oldargs);
1566 tree newargtype = TREE_VALUE (newargs);
1568 if (oldargtype == error_mark_node || newargtype == error_mark_node)
1569 return false;
1571 oldargtype = TYPE_MAIN_VARIANT (oldargtype);
1572 newargtype = TYPE_MAIN_VARIANT (newargtype);
1574 if (END_OF_ARGLIST (oldargtype) && END_OF_ARGLIST (newargtype))
1575 break;
1577 /* Reaching the end of just one list means the two decls don't
1578 agree on the number of arguments. */
1579 if (END_OF_ARGLIST (oldargtype))
1581 error ("prototype for %q+D declares more arguments "
1582 "than previous old-style definition", newdecl);
1583 return false;
1585 else if (END_OF_ARGLIST (newargtype))
1587 error ("prototype for %q+D declares fewer arguments "
1588 "than previous old-style definition", newdecl);
1589 return false;
1592 /* Type for passing arg must be consistent with that declared
1593 for the arg. */
1594 else if (!comptypes (oldargtype, newargtype))
1596 error ("prototype for %q+D declares argument %d"
1597 " with incompatible type",
1598 newdecl, i);
1599 return false;
1602 oldargs = TREE_CHAIN (oldargs);
1603 newargs = TREE_CHAIN (newargs);
1604 i++;
1607 /* If we get here, no errors were found, but do issue a warning
1608 for this poor-style construct. */
1609 warning (0, "prototype for %q+D follows non-prototype definition",
1610 newdecl);
1611 return true;
1612 #undef END_OF_ARGLIST
1615 /* Subroutine of diagnose_mismatched_decls. Report the location of DECL,
1616 first in a pair of mismatched declarations, using the diagnostic
1617 function DIAG. */
1618 static void
1619 locate_old_decl (tree decl)
1621 if (TREE_CODE (decl) == FUNCTION_DECL && DECL_BUILT_IN (decl))
1623 else if (DECL_INITIAL (decl))
1624 inform (input_location, "previous definition of %q+D was here", decl);
1625 else if (C_DECL_IMPLICIT (decl))
1626 inform (input_location, "previous implicit declaration of %q+D was here", decl);
1627 else
1628 inform (input_location, "previous declaration of %q+D was here", decl);
1631 /* Subroutine of duplicate_decls. Compare NEWDECL to OLDDECL.
1632 Returns true if the caller should proceed to merge the two, false
1633 if OLDDECL should simply be discarded. As a side effect, issues
1634 all necessary diagnostics for invalid or poor-style combinations.
1635 If it returns true, writes the types of NEWDECL and OLDDECL to
1636 *NEWTYPEP and *OLDTYPEP - these may have been adjusted from
1637 TREE_TYPE (NEWDECL, OLDDECL) respectively. */
1639 static bool
1640 diagnose_mismatched_decls (tree newdecl, tree olddecl,
1641 tree *newtypep, tree *oldtypep)
1643 tree newtype, oldtype;
1644 bool pedwarned = false;
1645 bool warned = false;
1646 bool retval = true;
1648 #define DECL_EXTERN_INLINE(DECL) (DECL_DECLARED_INLINE_P (DECL) \
1649 && DECL_EXTERNAL (DECL))
1651 /* If we have error_mark_node for either decl or type, just discard
1652 the previous decl - we're in an error cascade already. */
1653 if (olddecl == error_mark_node || newdecl == error_mark_node)
1654 return false;
1655 *oldtypep = oldtype = TREE_TYPE (olddecl);
1656 *newtypep = newtype = TREE_TYPE (newdecl);
1657 if (oldtype == error_mark_node || newtype == error_mark_node)
1658 return false;
1660 /* Two different categories of symbol altogether. This is an error
1661 unless OLDDECL is a builtin. OLDDECL will be discarded in any case. */
1662 if (TREE_CODE (olddecl) != TREE_CODE (newdecl))
1664 if (!(TREE_CODE (olddecl) == FUNCTION_DECL
1665 && DECL_BUILT_IN (olddecl)
1666 && !C_DECL_DECLARED_BUILTIN (olddecl)))
1668 error ("%q+D redeclared as different kind of symbol", newdecl);
1669 locate_old_decl (olddecl);
1671 else if (TREE_PUBLIC (newdecl))
1672 warning (0, "built-in function %q+D declared as non-function",
1673 newdecl);
1674 else
1675 warning (OPT_Wshadow, "declaration of %q+D shadows "
1676 "a built-in function", newdecl);
1677 return false;
1680 /* Enumerators have no linkage, so may only be declared once in a
1681 given scope. */
1682 if (TREE_CODE (olddecl) == CONST_DECL)
1684 error ("redeclaration of enumerator %q+D", newdecl);
1685 locate_old_decl (olddecl);
1686 return false;
1689 if (!comptypes (oldtype, newtype))
1691 if (TREE_CODE (olddecl) == FUNCTION_DECL
1692 && DECL_BUILT_IN (olddecl) && !C_DECL_DECLARED_BUILTIN (olddecl))
1694 /* Accept harmless mismatch in function types.
1695 This is for the ffs and fprintf builtins. */
1696 tree trytype = match_builtin_function_types (newtype, oldtype);
1698 if (trytype && comptypes (newtype, trytype))
1699 *oldtypep = oldtype = trytype;
1700 else
1702 /* If types don't match for a built-in, throw away the
1703 built-in. No point in calling locate_old_decl here, it
1704 won't print anything. */
1705 warning (0, "conflicting types for built-in function %q+D",
1706 newdecl);
1707 return false;
1710 else if (TREE_CODE (olddecl) == FUNCTION_DECL
1711 && DECL_IS_BUILTIN (olddecl))
1713 /* A conflicting function declaration for a predeclared
1714 function that isn't actually built in. Objective C uses
1715 these. The new declaration silently overrides everything
1716 but the volatility (i.e. noreturn) indication. See also
1717 below. FIXME: Make Objective C use normal builtins. */
1718 TREE_THIS_VOLATILE (newdecl) |= TREE_THIS_VOLATILE (olddecl);
1719 return false;
1721 /* Permit void foo (...) to match int foo (...) if the latter is
1722 the definition and implicit int was used. See
1723 c-torture/compile/920625-2.c. */
1724 else if (TREE_CODE (newdecl) == FUNCTION_DECL && DECL_INITIAL (newdecl)
1725 && TYPE_MAIN_VARIANT (TREE_TYPE (oldtype)) == void_type_node
1726 && TYPE_MAIN_VARIANT (TREE_TYPE (newtype)) == integer_type_node
1727 && C_FUNCTION_IMPLICIT_INT (newdecl) && !DECL_INITIAL (olddecl))
1729 pedwarned = pedwarn (input_location, 0,
1730 "conflicting types for %q+D", newdecl);
1731 /* Make sure we keep void as the return type. */
1732 TREE_TYPE (newdecl) = *newtypep = newtype = oldtype;
1733 C_FUNCTION_IMPLICIT_INT (newdecl) = 0;
1735 /* Permit void foo (...) to match an earlier call to foo (...) with
1736 no declared type (thus, implicitly int). */
1737 else if (TREE_CODE (newdecl) == FUNCTION_DECL
1738 && TYPE_MAIN_VARIANT (TREE_TYPE (newtype)) == void_type_node
1739 && TYPE_MAIN_VARIANT (TREE_TYPE (oldtype)) == integer_type_node
1740 && C_DECL_IMPLICIT (olddecl) && !DECL_INITIAL (olddecl))
1742 pedwarned = pedwarn (input_location, 0,
1743 "conflicting types for %q+D", newdecl);
1744 /* Make sure we keep void as the return type. */
1745 TREE_TYPE (olddecl) = *oldtypep = oldtype = newtype;
1747 else
1749 int new_quals = TYPE_QUALS (newtype);
1750 int old_quals = TYPE_QUALS (oldtype);
1752 if (new_quals != old_quals)
1754 addr_space_t new_addr = DECODE_QUAL_ADDR_SPACE (new_quals);
1755 addr_space_t old_addr = DECODE_QUAL_ADDR_SPACE (old_quals);
1756 if (new_addr != old_addr)
1758 if (ADDR_SPACE_GENERIC_P (new_addr))
1759 error ("conflicting named address spaces (generic vs %s) "
1760 "for %q+D",
1761 c_addr_space_name (old_addr), newdecl);
1762 else if (ADDR_SPACE_GENERIC_P (old_addr))
1763 error ("conflicting named address spaces (%s vs generic) "
1764 "for %q+D",
1765 c_addr_space_name (new_addr), newdecl);
1766 else
1767 error ("conflicting named address spaces (%s vs %s) "
1768 "for %q+D",
1769 c_addr_space_name (new_addr),
1770 c_addr_space_name (old_addr),
1771 newdecl);
1774 if (CLEAR_QUAL_ADDR_SPACE (new_quals)
1775 != CLEAR_QUAL_ADDR_SPACE (old_quals))
1776 error ("conflicting type qualifiers for %q+D", newdecl);
1778 else
1779 error ("conflicting types for %q+D", newdecl);
1780 diagnose_arglist_conflict (newdecl, olddecl, newtype, oldtype);
1781 locate_old_decl (olddecl);
1782 return false;
1786 /* Redeclaration of a type is a constraint violation (6.7.2.3p1),
1787 but silently ignore the redeclaration if either is in a system
1788 header. (Conflicting redeclarations were handled above.) */
1789 if (TREE_CODE (newdecl) == TYPE_DECL)
1791 if (DECL_IN_SYSTEM_HEADER (newdecl)
1792 || DECL_IN_SYSTEM_HEADER (olddecl)
1793 || TREE_NO_WARNING (newdecl)
1794 || TREE_NO_WARNING (olddecl))
1795 return true; /* Allow OLDDECL to continue in use. */
1797 error ("redefinition of typedef %q+D", newdecl);
1798 locate_old_decl (olddecl);
1799 return false;
1802 /* Function declarations can either be 'static' or 'extern' (no
1803 qualifier is equivalent to 'extern' - C99 6.2.2p5) and therefore
1804 can never conflict with each other on account of linkage
1805 (6.2.2p4). Multiple definitions are not allowed (6.9p3,5) but
1806 gnu89 mode permits two definitions if one is 'extern inline' and
1807 one is not. The non- extern-inline definition supersedes the
1808 extern-inline definition. */
1810 else if (TREE_CODE (newdecl) == FUNCTION_DECL)
1812 /* If you declare a built-in function name as static, or
1813 define the built-in with an old-style definition (so we
1814 can't validate the argument list) the built-in definition is
1815 overridden, but optionally warn this was a bad choice of name. */
1816 if (DECL_BUILT_IN (olddecl)
1817 && !C_DECL_DECLARED_BUILTIN (olddecl)
1818 && (!TREE_PUBLIC (newdecl)
1819 || (DECL_INITIAL (newdecl)
1820 && !TYPE_ARG_TYPES (TREE_TYPE (newdecl)))))
1822 warning (OPT_Wshadow, "declaration of %q+D shadows "
1823 "a built-in function", newdecl);
1824 /* Discard the old built-in function. */
1825 return false;
1828 if (DECL_INITIAL (newdecl))
1830 if (DECL_INITIAL (olddecl))
1832 /* If both decls are in the same TU and the new declaration
1833 isn't overriding an extern inline reject the new decl.
1834 In c99, no overriding is allowed in the same translation
1835 unit. */
1836 if ((!DECL_EXTERN_INLINE (olddecl)
1837 || DECL_EXTERN_INLINE (newdecl)
1838 || (!flag_gnu89_inline
1839 && (!DECL_DECLARED_INLINE_P (olddecl)
1840 || !lookup_attribute ("gnu_inline",
1841 DECL_ATTRIBUTES (olddecl)))
1842 && (!DECL_DECLARED_INLINE_P (newdecl)
1843 || !lookup_attribute ("gnu_inline",
1844 DECL_ATTRIBUTES (newdecl))))
1846 && same_translation_unit_p (newdecl, olddecl))
1848 error ("redefinition of %q+D", newdecl);
1849 locate_old_decl (olddecl);
1850 return false;
1854 /* If we have a prototype after an old-style function definition,
1855 the argument types must be checked specially. */
1856 else if (DECL_INITIAL (olddecl)
1857 && !TYPE_ARG_TYPES (oldtype) && TYPE_ARG_TYPES (newtype)
1858 && TYPE_ACTUAL_ARG_TYPES (oldtype)
1859 && !validate_proto_after_old_defn (newdecl, newtype, oldtype))
1861 locate_old_decl (olddecl);
1862 return false;
1864 /* A non-static declaration (even an "extern") followed by a
1865 static declaration is undefined behavior per C99 6.2.2p3-5,7.
1866 The same is true for a static forward declaration at block
1867 scope followed by a non-static declaration/definition at file
1868 scope. Static followed by non-static at the same scope is
1869 not undefined behavior, and is the most convenient way to get
1870 some effects (see e.g. what unwind-dw2-fde-glibc.c does to
1871 the definition of _Unwind_Find_FDE in unwind-dw2-fde.c), but
1872 we do diagnose it if -Wtraditional. */
1873 if (TREE_PUBLIC (olddecl) && !TREE_PUBLIC (newdecl))
1875 /* Two exceptions to the rule. If olddecl is an extern
1876 inline, or a predeclared function that isn't actually
1877 built in, newdecl silently overrides olddecl. The latter
1878 occur only in Objective C; see also above. (FIXME: Make
1879 Objective C use normal builtins.) */
1880 if (!DECL_IS_BUILTIN (olddecl)
1881 && !DECL_EXTERN_INLINE (olddecl))
1883 error ("static declaration of %q+D follows "
1884 "non-static declaration", newdecl);
1885 locate_old_decl (olddecl);
1887 return false;
1889 else if (TREE_PUBLIC (newdecl) && !TREE_PUBLIC (olddecl))
1891 if (DECL_CONTEXT (olddecl))
1893 error ("non-static declaration of %q+D follows "
1894 "static declaration", newdecl);
1895 locate_old_decl (olddecl);
1896 return false;
1898 else if (warn_traditional)
1900 warned |= warning (OPT_Wtraditional,
1901 "non-static declaration of %q+D "
1902 "follows static declaration", newdecl);
1906 /* Make sure gnu_inline attribute is either not present, or
1907 present on all inline decls. */
1908 if (DECL_DECLARED_INLINE_P (olddecl)
1909 && DECL_DECLARED_INLINE_P (newdecl))
1911 bool newa = lookup_attribute ("gnu_inline",
1912 DECL_ATTRIBUTES (newdecl)) != NULL;
1913 bool olda = lookup_attribute ("gnu_inline",
1914 DECL_ATTRIBUTES (olddecl)) != NULL;
1915 if (newa != olda)
1917 error_at (input_location, "%<gnu_inline%> attribute present on %q+D",
1918 newa ? newdecl : olddecl);
1919 error_at (DECL_SOURCE_LOCATION (newa ? olddecl : newdecl),
1920 "but not here");
1924 else if (TREE_CODE (newdecl) == VAR_DECL)
1926 /* Only variables can be thread-local, and all declarations must
1927 agree on this property. */
1928 if (C_DECL_THREADPRIVATE_P (olddecl) && !DECL_THREAD_LOCAL_P (newdecl))
1930 /* Nothing to check. Since OLDDECL is marked threadprivate
1931 and NEWDECL does not have a thread-local attribute, we
1932 will merge the threadprivate attribute into NEWDECL. */
1935 else if (DECL_THREAD_LOCAL_P (newdecl) != DECL_THREAD_LOCAL_P (olddecl))
1937 if (DECL_THREAD_LOCAL_P (newdecl))
1938 error ("thread-local declaration of %q+D follows "
1939 "non-thread-local declaration", newdecl);
1940 else
1941 error ("non-thread-local declaration of %q+D follows "
1942 "thread-local declaration", newdecl);
1944 locate_old_decl (olddecl);
1945 return false;
1948 /* Multiple initialized definitions are not allowed (6.9p3,5). */
1949 if (DECL_INITIAL (newdecl) && DECL_INITIAL (olddecl))
1951 error ("redefinition of %q+D", newdecl);
1952 locate_old_decl (olddecl);
1953 return false;
1956 /* Objects declared at file scope: if the first declaration had
1957 external linkage (even if it was an external reference) the
1958 second must have external linkage as well, or the behavior is
1959 undefined. If the first declaration had internal linkage, then
1960 the second must too, or else be an external reference (in which
1961 case the composite declaration still has internal linkage).
1962 As for function declarations, we warn about the static-then-
1963 extern case only for -Wtraditional. See generally 6.2.2p3-5,7. */
1964 if (DECL_FILE_SCOPE_P (newdecl)
1965 && TREE_PUBLIC (newdecl) != TREE_PUBLIC (olddecl))
1967 if (DECL_EXTERNAL (newdecl))
1969 if (!DECL_FILE_SCOPE_P (olddecl))
1971 error ("extern declaration of %q+D follows "
1972 "declaration with no linkage", newdecl);
1973 locate_old_decl (olddecl);
1974 return false;
1976 else if (warn_traditional)
1978 warned |= warning (OPT_Wtraditional,
1979 "non-static declaration of %q+D "
1980 "follows static declaration", newdecl);
1983 else
1985 if (TREE_PUBLIC (newdecl))
1986 error ("non-static declaration of %q+D follows "
1987 "static declaration", newdecl);
1988 else
1989 error ("static declaration of %q+D follows "
1990 "non-static declaration", newdecl);
1992 locate_old_decl (olddecl);
1993 return false;
1996 /* Two objects with the same name declared at the same block
1997 scope must both be external references (6.7p3). */
1998 else if (!DECL_FILE_SCOPE_P (newdecl))
2000 if (DECL_EXTERNAL (newdecl))
2002 /* Extern with initializer at block scope, which will
2003 already have received an error. */
2005 else if (DECL_EXTERNAL (olddecl))
2007 error ("declaration of %q+D with no linkage follows "
2008 "extern declaration", newdecl);
2009 locate_old_decl (olddecl);
2011 else
2013 error ("redeclaration of %q+D with no linkage", newdecl);
2014 locate_old_decl (olddecl);
2017 return false;
2020 /* C++ does not permit a decl to appear multiple times at file
2021 scope. */
2022 if (warn_cxx_compat
2023 && DECL_FILE_SCOPE_P (newdecl)
2024 && !DECL_EXTERNAL (newdecl)
2025 && !DECL_EXTERNAL (olddecl))
2026 warned |= warning_at (DECL_SOURCE_LOCATION (newdecl),
2027 OPT_Wc___compat,
2028 ("duplicate declaration of %qD is "
2029 "invalid in C++"),
2030 newdecl);
2033 /* warnings */
2034 /* All decls must agree on a visibility. */
2035 if (CODE_CONTAINS_STRUCT (TREE_CODE (newdecl), TS_DECL_WITH_VIS)
2036 && DECL_VISIBILITY_SPECIFIED (newdecl) && DECL_VISIBILITY_SPECIFIED (olddecl)
2037 && DECL_VISIBILITY (newdecl) != DECL_VISIBILITY (olddecl))
2039 warned |= warning (0, "redeclaration of %q+D with different visibility "
2040 "(old visibility preserved)", newdecl);
2043 if (TREE_CODE (newdecl) == FUNCTION_DECL)
2045 /* Diagnose inline __attribute__ ((noinline)) which is silly. */
2046 if (DECL_DECLARED_INLINE_P (newdecl)
2047 && lookup_attribute ("noinline", DECL_ATTRIBUTES (olddecl)))
2049 warned |= warning (OPT_Wattributes,
2050 "inline declaration of %qD follows "
2051 "declaration with attribute noinline", newdecl);
2053 else if (DECL_DECLARED_INLINE_P (olddecl)
2054 && lookup_attribute ("noinline", DECL_ATTRIBUTES (newdecl)))
2056 warned |= warning (OPT_Wattributes,
2057 "declaration of %q+D with attribute "
2058 "noinline follows inline declaration ", newdecl);
2061 else /* PARM_DECL, VAR_DECL */
2063 /* Redeclaration of a parameter is a constraint violation (this is
2064 not explicitly stated, but follows from C99 6.7p3 [no more than
2065 one declaration of the same identifier with no linkage in the
2066 same scope, except type tags] and 6.2.2p6 [parameters have no
2067 linkage]). We must check for a forward parameter declaration,
2068 indicated by TREE_ASM_WRITTEN on the old declaration - this is
2069 an extension, the mandatory diagnostic for which is handled by
2070 mark_forward_parm_decls. */
2072 if (TREE_CODE (newdecl) == PARM_DECL
2073 && (!TREE_ASM_WRITTEN (olddecl) || TREE_ASM_WRITTEN (newdecl)))
2075 error ("redefinition of parameter %q+D", newdecl);
2076 locate_old_decl (olddecl);
2077 return false;
2081 /* Optional warning for completely redundant decls. */
2082 if (!warned && !pedwarned
2083 && warn_redundant_decls
2084 /* Don't warn about a function declaration followed by a
2085 definition. */
2086 && !(TREE_CODE (newdecl) == FUNCTION_DECL
2087 && DECL_INITIAL (newdecl) && !DECL_INITIAL (olddecl))
2088 /* Don't warn about redundant redeclarations of builtins. */
2089 && !(TREE_CODE (newdecl) == FUNCTION_DECL
2090 && !DECL_BUILT_IN (newdecl)
2091 && DECL_BUILT_IN (olddecl)
2092 && !C_DECL_DECLARED_BUILTIN (olddecl))
2093 /* Don't warn about an extern followed by a definition. */
2094 && !(DECL_EXTERNAL (olddecl) && !DECL_EXTERNAL (newdecl))
2095 /* Don't warn about forward parameter decls. */
2096 && !(TREE_CODE (newdecl) == PARM_DECL
2097 && TREE_ASM_WRITTEN (olddecl) && !TREE_ASM_WRITTEN (newdecl))
2098 /* Don't warn about a variable definition following a declaration. */
2099 && !(TREE_CODE (newdecl) == VAR_DECL
2100 && DECL_INITIAL (newdecl) && !DECL_INITIAL (olddecl)))
2102 warned = warning (OPT_Wredundant_decls, "redundant redeclaration of %q+D",
2103 newdecl);
2106 /* Report location of previous decl/defn. */
2107 if (warned || pedwarned)
2108 locate_old_decl (olddecl);
2110 #undef DECL_EXTERN_INLINE
2112 return retval;
2115 /* Subroutine of duplicate_decls. NEWDECL has been found to be
2116 consistent with OLDDECL, but carries new information. Merge the
2117 new information into OLDDECL. This function issues no
2118 diagnostics. */
2120 static void
2121 merge_decls (tree newdecl, tree olddecl, tree newtype, tree oldtype)
2123 bool new_is_definition = (TREE_CODE (newdecl) == FUNCTION_DECL
2124 && DECL_INITIAL (newdecl) != 0);
2125 bool new_is_prototype = (TREE_CODE (newdecl) == FUNCTION_DECL
2126 && TYPE_ARG_TYPES (TREE_TYPE (newdecl)) != 0);
2127 bool old_is_prototype = (TREE_CODE (olddecl) == FUNCTION_DECL
2128 && TYPE_ARG_TYPES (TREE_TYPE (olddecl)) != 0);
2129 bool extern_changed = false;
2131 /* For real parm decl following a forward decl, rechain the old decl
2132 in its new location and clear TREE_ASM_WRITTEN (it's not a
2133 forward decl anymore). */
2134 if (TREE_CODE (newdecl) == PARM_DECL
2135 && TREE_ASM_WRITTEN (olddecl) && !TREE_ASM_WRITTEN (newdecl))
2137 struct c_binding *b, **here;
2139 for (here = &current_scope->bindings; *here; here = &(*here)->prev)
2140 if ((*here)->decl == olddecl)
2141 goto found;
2142 gcc_unreachable ();
2144 found:
2145 b = *here;
2146 *here = b->prev;
2147 b->prev = current_scope->bindings;
2148 current_scope->bindings = b;
2150 TREE_ASM_WRITTEN (olddecl) = 0;
2153 DECL_ATTRIBUTES (newdecl)
2154 = targetm.merge_decl_attributes (olddecl, newdecl);
2156 /* Merge the data types specified in the two decls. */
2157 TREE_TYPE (newdecl)
2158 = TREE_TYPE (olddecl)
2159 = composite_type (newtype, oldtype);
2161 /* Lay the type out, unless already done. */
2162 if (!comptypes (oldtype, TREE_TYPE (newdecl)))
2164 if (TREE_TYPE (newdecl) != error_mark_node)
2165 layout_type (TREE_TYPE (newdecl));
2166 if (TREE_CODE (newdecl) != FUNCTION_DECL
2167 && TREE_CODE (newdecl) != TYPE_DECL
2168 && TREE_CODE (newdecl) != CONST_DECL)
2169 layout_decl (newdecl, 0);
2171 else
2173 /* Since the type is OLDDECL's, make OLDDECL's size go with. */
2174 DECL_SIZE (newdecl) = DECL_SIZE (olddecl);
2175 DECL_SIZE_UNIT (newdecl) = DECL_SIZE_UNIT (olddecl);
2176 DECL_MODE (newdecl) = DECL_MODE (olddecl);
2177 if (DECL_ALIGN (olddecl) > DECL_ALIGN (newdecl))
2179 DECL_ALIGN (newdecl) = DECL_ALIGN (olddecl);
2180 DECL_USER_ALIGN (newdecl) |= DECL_USER_ALIGN (olddecl);
2184 /* Keep the old rtl since we can safely use it. */
2185 if (HAS_RTL_P (olddecl))
2186 COPY_DECL_RTL (olddecl, newdecl);
2188 /* Merge the type qualifiers. */
2189 if (TREE_READONLY (newdecl))
2190 TREE_READONLY (olddecl) = 1;
2192 if (TREE_THIS_VOLATILE (newdecl))
2193 TREE_THIS_VOLATILE (olddecl) = 1;
2195 /* Merge deprecatedness. */
2196 if (TREE_DEPRECATED (newdecl))
2197 TREE_DEPRECATED (olddecl) = 1;
2199 /* If a decl is in a system header and the other isn't, keep the one on the
2200 system header. Otherwise, keep source location of definition rather than
2201 declaration and of prototype rather than non-prototype unless that
2202 prototype is built-in. */
2203 if (CODE_CONTAINS_STRUCT (TREE_CODE (olddecl), TS_DECL_WITH_VIS)
2204 && DECL_IN_SYSTEM_HEADER (olddecl)
2205 && !DECL_IN_SYSTEM_HEADER (newdecl) )
2206 DECL_SOURCE_LOCATION (newdecl) = DECL_SOURCE_LOCATION (olddecl);
2207 else if (CODE_CONTAINS_STRUCT (TREE_CODE (olddecl), TS_DECL_WITH_VIS)
2208 && DECL_IN_SYSTEM_HEADER (newdecl)
2209 && !DECL_IN_SYSTEM_HEADER (olddecl))
2210 DECL_SOURCE_LOCATION (olddecl) = DECL_SOURCE_LOCATION (newdecl);
2211 else if ((DECL_INITIAL (newdecl) == 0 && DECL_INITIAL (olddecl) != 0)
2212 || (old_is_prototype && !new_is_prototype
2213 && !C_DECL_BUILTIN_PROTOTYPE (olddecl)))
2214 DECL_SOURCE_LOCATION (newdecl) = DECL_SOURCE_LOCATION (olddecl);
2216 /* Merge the initialization information. */
2217 if (DECL_INITIAL (newdecl) == 0)
2218 DECL_INITIAL (newdecl) = DECL_INITIAL (olddecl);
2220 /* Merge the threadprivate attribute. */
2221 if (TREE_CODE (olddecl) == VAR_DECL && C_DECL_THREADPRIVATE_P (olddecl))
2223 DECL_TLS_MODEL (newdecl) = DECL_TLS_MODEL (olddecl);
2224 C_DECL_THREADPRIVATE_P (newdecl) = 1;
2227 if (CODE_CONTAINS_STRUCT (TREE_CODE (olddecl), TS_DECL_WITH_VIS))
2229 /* Merge the section attribute.
2230 We want to issue an error if the sections conflict but that
2231 must be done later in decl_attributes since we are called
2232 before attributes are assigned. */
2233 if (DECL_SECTION_NAME (newdecl) == NULL_TREE)
2234 DECL_SECTION_NAME (newdecl) = DECL_SECTION_NAME (olddecl);
2236 /* Copy the assembler name.
2237 Currently, it can only be defined in the prototype. */
2238 COPY_DECL_ASSEMBLER_NAME (olddecl, newdecl);
2240 /* Use visibility of whichever declaration had it specified */
2241 if (DECL_VISIBILITY_SPECIFIED (olddecl))
2243 DECL_VISIBILITY (newdecl) = DECL_VISIBILITY (olddecl);
2244 DECL_VISIBILITY_SPECIFIED (newdecl) = 1;
2247 if (TREE_CODE (newdecl) == FUNCTION_DECL)
2249 DECL_STATIC_CONSTRUCTOR(newdecl) |= DECL_STATIC_CONSTRUCTOR(olddecl);
2250 DECL_STATIC_DESTRUCTOR (newdecl) |= DECL_STATIC_DESTRUCTOR (olddecl);
2251 DECL_NO_LIMIT_STACK (newdecl) |= DECL_NO_LIMIT_STACK (olddecl);
2252 DECL_NO_INSTRUMENT_FUNCTION_ENTRY_EXIT (newdecl)
2253 |= DECL_NO_INSTRUMENT_FUNCTION_ENTRY_EXIT (olddecl);
2254 TREE_THIS_VOLATILE (newdecl) |= TREE_THIS_VOLATILE (olddecl);
2255 DECL_IS_MALLOC (newdecl) |= DECL_IS_MALLOC (olddecl);
2256 DECL_IS_OPERATOR_NEW (newdecl) |= DECL_IS_OPERATOR_NEW (olddecl);
2257 TREE_READONLY (newdecl) |= TREE_READONLY (olddecl);
2258 DECL_PURE_P (newdecl) |= DECL_PURE_P (olddecl);
2259 DECL_IS_NOVOPS (newdecl) |= DECL_IS_NOVOPS (olddecl);
2262 /* Merge the storage class information. */
2263 merge_weak (newdecl, olddecl);
2265 /* For functions, static overrides non-static. */
2266 if (TREE_CODE (newdecl) == FUNCTION_DECL)
2268 TREE_PUBLIC (newdecl) &= TREE_PUBLIC (olddecl);
2269 /* This is since we don't automatically
2270 copy the attributes of NEWDECL into OLDDECL. */
2271 TREE_PUBLIC (olddecl) = TREE_PUBLIC (newdecl);
2272 /* If this clears `static', clear it in the identifier too. */
2273 if (!TREE_PUBLIC (olddecl))
2274 TREE_PUBLIC (DECL_NAME (olddecl)) = 0;
2278 /* In c99, 'extern' declaration before (or after) 'inline' means this
2279 function is not DECL_EXTERNAL, unless 'gnu_inline' attribute
2280 is present. */
2281 if (TREE_CODE (newdecl) == FUNCTION_DECL
2282 && !flag_gnu89_inline
2283 && (DECL_DECLARED_INLINE_P (newdecl)
2284 || DECL_DECLARED_INLINE_P (olddecl))
2285 && (!DECL_DECLARED_INLINE_P (newdecl)
2286 || !DECL_DECLARED_INLINE_P (olddecl)
2287 || !DECL_EXTERNAL (olddecl))
2288 && DECL_EXTERNAL (newdecl)
2289 && !lookup_attribute ("gnu_inline", DECL_ATTRIBUTES (newdecl))
2290 && !current_function_decl)
2291 DECL_EXTERNAL (newdecl) = 0;
2293 if (DECL_EXTERNAL (newdecl))
2295 TREE_STATIC (newdecl) = TREE_STATIC (olddecl);
2296 DECL_EXTERNAL (newdecl) = DECL_EXTERNAL (olddecl);
2298 /* An extern decl does not override previous storage class. */
2299 TREE_PUBLIC (newdecl) = TREE_PUBLIC (olddecl);
2300 if (!DECL_EXTERNAL (newdecl))
2302 DECL_CONTEXT (newdecl) = DECL_CONTEXT (olddecl);
2303 DECL_COMMON (newdecl) = DECL_COMMON (olddecl);
2306 else
2308 TREE_STATIC (olddecl) = TREE_STATIC (newdecl);
2309 TREE_PUBLIC (olddecl) = TREE_PUBLIC (newdecl);
2312 if (TREE_CODE (newdecl) == FUNCTION_DECL)
2314 /* If we're redefining a function previously defined as extern
2315 inline, make sure we emit debug info for the inline before we
2316 throw it away, in case it was inlined into a function that
2317 hasn't been written out yet. */
2318 if (new_is_definition && DECL_INITIAL (olddecl))
2319 /* The new defn must not be inline. */
2320 DECL_UNINLINABLE (newdecl) = 1;
2321 else
2323 /* If either decl says `inline', this fn is inline, unless
2324 its definition was passed already. */
2325 if (DECL_DECLARED_INLINE_P (newdecl)
2326 || DECL_DECLARED_INLINE_P (olddecl))
2327 DECL_DECLARED_INLINE_P (newdecl) = 1;
2329 DECL_UNINLINABLE (newdecl) = DECL_UNINLINABLE (olddecl)
2330 = (DECL_UNINLINABLE (newdecl) || DECL_UNINLINABLE (olddecl));
2332 DECL_DISREGARD_INLINE_LIMITS (newdecl)
2333 = DECL_DISREGARD_INLINE_LIMITS (olddecl)
2334 = (DECL_DISREGARD_INLINE_LIMITS (newdecl)
2335 || DECL_DISREGARD_INLINE_LIMITS (olddecl));
2338 if (DECL_BUILT_IN (olddecl))
2340 /* If redeclaring a builtin function, it stays built in.
2341 But it gets tagged as having been declared. */
2342 DECL_BUILT_IN_CLASS (newdecl) = DECL_BUILT_IN_CLASS (olddecl);
2343 DECL_FUNCTION_CODE (newdecl) = DECL_FUNCTION_CODE (olddecl);
2344 C_DECL_DECLARED_BUILTIN (newdecl) = 1;
2345 if (new_is_prototype)
2346 C_DECL_BUILTIN_PROTOTYPE (newdecl) = 0;
2347 else
2348 C_DECL_BUILTIN_PROTOTYPE (newdecl)
2349 = C_DECL_BUILTIN_PROTOTYPE (olddecl);
2352 /* Preserve function specific target and optimization options */
2353 if (DECL_FUNCTION_SPECIFIC_TARGET (olddecl)
2354 && !DECL_FUNCTION_SPECIFIC_TARGET (newdecl))
2355 DECL_FUNCTION_SPECIFIC_TARGET (newdecl)
2356 = DECL_FUNCTION_SPECIFIC_TARGET (olddecl);
2358 if (DECL_FUNCTION_SPECIFIC_OPTIMIZATION (olddecl)
2359 && !DECL_FUNCTION_SPECIFIC_OPTIMIZATION (newdecl))
2360 DECL_FUNCTION_SPECIFIC_OPTIMIZATION (newdecl)
2361 = DECL_FUNCTION_SPECIFIC_OPTIMIZATION (olddecl);
2363 /* Also preserve various other info from the definition. */
2364 if (!new_is_definition)
2366 tree t;
2367 DECL_RESULT (newdecl) = DECL_RESULT (olddecl);
2368 DECL_INITIAL (newdecl) = DECL_INITIAL (olddecl);
2369 DECL_STRUCT_FUNCTION (newdecl) = DECL_STRUCT_FUNCTION (olddecl);
2370 DECL_SAVED_TREE (newdecl) = DECL_SAVED_TREE (olddecl);
2371 gimple_set_body (newdecl, gimple_body (olddecl));
2372 DECL_ARGUMENTS (newdecl) = copy_list (DECL_ARGUMENTS (olddecl));
2373 for (t = DECL_ARGUMENTS (newdecl); t ; t = TREE_CHAIN (t))
2374 DECL_CONTEXT (t) = newdecl;
2376 /* See if we've got a function to instantiate from. */
2377 if (DECL_SAVED_TREE (olddecl))
2378 DECL_ABSTRACT_ORIGIN (newdecl)
2379 = DECL_ABSTRACT_ORIGIN (olddecl);
2381 else if (DECL_IS_IFUNC (olddecl)
2382 && !DECL_IS_IFUNC (newdecl))
2384 /* The IFUNC information must be on definition since it
2385 may change the function return type inside the function
2386 body. */
2387 error ("definition of function %q+D conflicts with",
2388 newdecl);
2389 error ("previous declaration of indirect function %q+D here",
2390 olddecl);
2393 /* Merge the IFUNC information. */
2394 if (DECL_IS_IFUNC (olddecl))
2395 DECL_IS_IFUNC (newdecl) = 1;
2396 else if (DECL_IS_IFUNC (newdecl))
2397 DECL_IS_IFUNC (olddecl) = 1;
2400 extern_changed = DECL_EXTERNAL (olddecl) && !DECL_EXTERNAL (newdecl);
2402 /* Merge the USED information. */
2403 if (TREE_USED (olddecl))
2404 TREE_USED (newdecl) = 1;
2405 else if (TREE_USED (newdecl))
2406 TREE_USED (olddecl) = 1;
2407 if (DECL_PRESERVE_P (olddecl))
2408 DECL_PRESERVE_P (newdecl) = 1;
2409 else if (DECL_PRESERVE_P (newdecl))
2410 DECL_PRESERVE_P (olddecl) = 1;
2412 /* Copy most of the decl-specific fields of NEWDECL into OLDDECL.
2413 But preserve OLDDECL's DECL_UID, DECL_CONTEXT and
2414 DECL_ARGUMENTS (if appropriate). */
2416 unsigned olddecl_uid = DECL_UID (olddecl);
2417 tree olddecl_context = DECL_CONTEXT (olddecl);
2418 tree olddecl_arguments = NULL;
2419 if (TREE_CODE (olddecl) == FUNCTION_DECL)
2420 olddecl_arguments = DECL_ARGUMENTS (olddecl);
2422 memcpy ((char *) olddecl + sizeof (struct tree_common),
2423 (char *) newdecl + sizeof (struct tree_common),
2424 sizeof (struct tree_decl_common) - sizeof (struct tree_common));
2425 switch (TREE_CODE (olddecl))
2427 case FUNCTION_DECL:
2428 gimple_set_body (olddecl, gimple_body (newdecl));
2429 /* fall through */
2431 case FIELD_DECL:
2432 case VAR_DECL:
2433 case PARM_DECL:
2434 case LABEL_DECL:
2435 case RESULT_DECL:
2436 case CONST_DECL:
2437 case TYPE_DECL:
2438 memcpy ((char *) olddecl + sizeof (struct tree_decl_common),
2439 (char *) newdecl + sizeof (struct tree_decl_common),
2440 tree_code_size (TREE_CODE (olddecl)) - sizeof (struct tree_decl_common));
2441 break;
2443 default:
2445 memcpy ((char *) olddecl + sizeof (struct tree_decl_common),
2446 (char *) newdecl + sizeof (struct tree_decl_common),
2447 sizeof (struct tree_decl_non_common) - sizeof (struct tree_decl_common));
2449 DECL_UID (olddecl) = olddecl_uid;
2450 DECL_CONTEXT (olddecl) = olddecl_context;
2451 if (TREE_CODE (olddecl) == FUNCTION_DECL)
2452 DECL_ARGUMENTS (olddecl) = olddecl_arguments;
2455 /* If OLDDECL had its DECL_RTL instantiated, re-invoke make_decl_rtl
2456 so that encode_section_info has a chance to look at the new decl
2457 flags and attributes. */
2458 if (DECL_RTL_SET_P (olddecl)
2459 && (TREE_CODE (olddecl) == FUNCTION_DECL
2460 || (TREE_CODE (olddecl) == VAR_DECL
2461 && TREE_STATIC (olddecl))))
2462 make_decl_rtl (olddecl);
2464 /* If we changed a function from DECL_EXTERNAL to !DECL_EXTERNAL,
2465 and the definition is coming from the old version, cgraph needs
2466 to be called again. */
2467 if (extern_changed && !new_is_definition
2468 && TREE_CODE (olddecl) == FUNCTION_DECL && DECL_INITIAL (olddecl))
2469 cgraph_mark_if_needed (olddecl);
2472 /* Handle when a new declaration NEWDECL has the same name as an old
2473 one OLDDECL in the same binding contour. Prints an error message
2474 if appropriate.
2476 If safely possible, alter OLDDECL to look like NEWDECL, and return
2477 true. Otherwise, return false. */
2479 static bool
2480 duplicate_decls (tree newdecl, tree olddecl)
2482 tree newtype = NULL, oldtype = NULL;
2484 if (!diagnose_mismatched_decls (newdecl, olddecl, &newtype, &oldtype))
2486 /* Avoid `unused variable' and other warnings for OLDDECL. */
2487 TREE_NO_WARNING (olddecl) = 1;
2488 return false;
2491 merge_decls (newdecl, olddecl, newtype, oldtype);
2492 return true;
2496 /* Check whether decl-node NEW_DECL shadows an existing declaration. */
2497 static void
2498 warn_if_shadowing (tree new_decl)
2500 struct c_binding *b;
2502 /* Shadow warnings wanted? */
2503 if (!warn_shadow
2504 /* No shadow warnings for internally generated vars. */
2505 || DECL_IS_BUILTIN (new_decl)
2506 /* No shadow warnings for vars made for inlining. */
2507 || DECL_FROM_INLINE (new_decl))
2508 return;
2510 /* Is anything being shadowed? Invisible decls do not count. */
2511 for (b = I_SYMBOL_BINDING (DECL_NAME (new_decl)); b; b = b->shadowed)
2512 if (b->decl && b->decl != new_decl && !b->invisible)
2514 tree old_decl = b->decl;
2516 if (old_decl == error_mark_node)
2518 warning (OPT_Wshadow, "declaration of %q+D shadows previous "
2519 "non-variable", new_decl);
2520 break;
2522 else if (TREE_CODE (old_decl) == PARM_DECL)
2523 warning (OPT_Wshadow, "declaration of %q+D shadows a parameter",
2524 new_decl);
2525 else if (DECL_FILE_SCOPE_P (old_decl))
2526 warning (OPT_Wshadow, "declaration of %q+D shadows a global "
2527 "declaration", new_decl);
2528 else if (TREE_CODE (old_decl) == FUNCTION_DECL
2529 && DECL_BUILT_IN (old_decl))
2531 warning (OPT_Wshadow, "declaration of %q+D shadows "
2532 "a built-in function", new_decl);
2533 break;
2535 else
2536 warning (OPT_Wshadow, "declaration of %q+D shadows a previous local",
2537 new_decl);
2539 warning_at (DECL_SOURCE_LOCATION (old_decl), OPT_Wshadow,
2540 "shadowed declaration is here");
2542 break;
2546 /* Record a decl-node X as belonging to the current lexical scope.
2547 Check for errors (such as an incompatible declaration for the same
2548 name already seen in the same scope).
2550 Returns either X or an old decl for the same name.
2551 If an old decl is returned, it may have been smashed
2552 to agree with what X says. */
2554 tree
2555 pushdecl (tree x)
2557 tree name = DECL_NAME (x);
2558 struct c_scope *scope = current_scope;
2559 struct c_binding *b;
2560 bool nested = false;
2561 location_t locus = DECL_SOURCE_LOCATION (x);
2563 /* Must set DECL_CONTEXT for everything not at file scope or
2564 DECL_FILE_SCOPE_P won't work. Local externs don't count
2565 unless they have initializers (which generate code). */
2566 if (current_function_decl
2567 && ((TREE_CODE (x) != FUNCTION_DECL && TREE_CODE (x) != VAR_DECL)
2568 || DECL_INITIAL (x) || !DECL_EXTERNAL (x)))
2569 DECL_CONTEXT (x) = current_function_decl;
2571 /* Anonymous decls are just inserted in the scope. */
2572 if (!name)
2574 bind (name, x, scope, /*invisible=*/false, /*nested=*/false,
2575 locus);
2576 return x;
2579 /* First, see if there is another declaration with the same name in
2580 the current scope. If there is, duplicate_decls may do all the
2581 work for us. If duplicate_decls returns false, that indicates
2582 two incompatible decls in the same scope; we are to silently
2583 replace the old one (duplicate_decls has issued all appropriate
2584 diagnostics). In particular, we should not consider possible
2585 duplicates in the external scope, or shadowing. */
2586 b = I_SYMBOL_BINDING (name);
2587 if (b && B_IN_SCOPE (b, scope))
2589 struct c_binding *b_ext, *b_use;
2590 tree type = TREE_TYPE (x);
2591 tree visdecl = b->decl;
2592 tree vistype = TREE_TYPE (visdecl);
2593 if (TREE_CODE (TREE_TYPE (x)) == ARRAY_TYPE
2594 && COMPLETE_TYPE_P (TREE_TYPE (x)))
2595 b->inner_comp = false;
2596 b_use = b;
2597 b_ext = b;
2598 /* If this is an external linkage declaration, we should check
2599 for compatibility with the type in the external scope before
2600 setting the type at this scope based on the visible
2601 information only. */
2602 if (TREE_PUBLIC (x) && TREE_PUBLIC (visdecl))
2604 while (b_ext && !B_IN_EXTERNAL_SCOPE (b_ext))
2605 b_ext = b_ext->shadowed;
2606 if (b_ext)
2608 b_use = b_ext;
2609 if (b_use->u.type)
2610 TREE_TYPE (b_use->decl) = b_use->u.type;
2613 if (duplicate_decls (x, b_use->decl))
2615 if (b_use != b)
2617 /* Save the updated type in the external scope and
2618 restore the proper type for this scope. */
2619 tree thistype;
2620 if (comptypes (vistype, type))
2621 thistype = composite_type (vistype, type);
2622 else
2623 thistype = TREE_TYPE (b_use->decl);
2624 b_use->u.type = TREE_TYPE (b_use->decl);
2625 if (TREE_CODE (b_use->decl) == FUNCTION_DECL
2626 && DECL_BUILT_IN (b_use->decl))
2627 thistype
2628 = build_type_attribute_variant (thistype,
2629 TYPE_ATTRIBUTES
2630 (b_use->u.type));
2631 TREE_TYPE (b_use->decl) = thistype;
2633 return b_use->decl;
2635 else
2636 goto skip_external_and_shadow_checks;
2639 /* All declarations with external linkage, and all external
2640 references, go in the external scope, no matter what scope is
2641 current. However, the binding in that scope is ignored for
2642 purposes of normal name lookup. A separate binding structure is
2643 created in the requested scope; this governs the normal
2644 visibility of the symbol.
2646 The binding in the externals scope is used exclusively for
2647 detecting duplicate declarations of the same object, no matter
2648 what scope they are in; this is what we do here. (C99 6.2.7p2:
2649 All declarations that refer to the same object or function shall
2650 have compatible type; otherwise, the behavior is undefined.) */
2651 if (DECL_EXTERNAL (x) || scope == file_scope)
2653 tree type = TREE_TYPE (x);
2654 tree vistype = 0;
2655 tree visdecl = 0;
2656 bool type_saved = false;
2657 if (b && !B_IN_EXTERNAL_SCOPE (b)
2658 && (TREE_CODE (b->decl) == FUNCTION_DECL
2659 || TREE_CODE (b->decl) == VAR_DECL)
2660 && DECL_FILE_SCOPE_P (b->decl))
2662 visdecl = b->decl;
2663 vistype = TREE_TYPE (visdecl);
2665 if (scope != file_scope
2666 && !DECL_IN_SYSTEM_HEADER (x))
2667 warning (OPT_Wnested_externs, "nested extern declaration of %qD", x);
2669 while (b && !B_IN_EXTERNAL_SCOPE (b))
2671 /* If this decl might be modified, save its type. This is
2672 done here rather than when the decl is first bound
2673 because the type may change after first binding, through
2674 being completed or through attributes being added. If we
2675 encounter multiple such decls, only the first should have
2676 its type saved; the others will already have had their
2677 proper types saved and the types will not have changed as
2678 their scopes will not have been re-entered. */
2679 if (DECL_P (b->decl) && DECL_FILE_SCOPE_P (b->decl) && !type_saved)
2681 b->u.type = TREE_TYPE (b->decl);
2682 type_saved = true;
2684 if (B_IN_FILE_SCOPE (b)
2685 && TREE_CODE (b->decl) == VAR_DECL
2686 && TREE_STATIC (b->decl)
2687 && TREE_CODE (TREE_TYPE (b->decl)) == ARRAY_TYPE
2688 && !TYPE_DOMAIN (TREE_TYPE (b->decl))
2689 && TREE_CODE (type) == ARRAY_TYPE
2690 && TYPE_DOMAIN (type)
2691 && TYPE_MAX_VALUE (TYPE_DOMAIN (type))
2692 && !integer_zerop (TYPE_MAX_VALUE (TYPE_DOMAIN (type))))
2694 /* Array type completed in inner scope, which should be
2695 diagnosed if the completion does not have size 1 and
2696 it does not get completed in the file scope. */
2697 b->inner_comp = true;
2699 b = b->shadowed;
2702 /* If a matching external declaration has been found, set its
2703 type to the composite of all the types of that declaration.
2704 After the consistency checks, it will be reset to the
2705 composite of the visible types only. */
2706 if (b && (TREE_PUBLIC (x) || same_translation_unit_p (x, b->decl))
2707 && b->u.type)
2708 TREE_TYPE (b->decl) = b->u.type;
2710 /* The point of the same_translation_unit_p check here is,
2711 we want to detect a duplicate decl for a construct like
2712 foo() { extern bar(); } ... static bar(); but not if
2713 they are in different translation units. In any case,
2714 the static does not go in the externals scope. */
2715 if (b
2716 && (TREE_PUBLIC (x) || same_translation_unit_p (x, b->decl))
2717 && duplicate_decls (x, b->decl))
2719 tree thistype;
2720 if (vistype)
2722 if (comptypes (vistype, type))
2723 thistype = composite_type (vistype, type);
2724 else
2725 thistype = TREE_TYPE (b->decl);
2727 else
2728 thistype = type;
2729 b->u.type = TREE_TYPE (b->decl);
2730 if (TREE_CODE (b->decl) == FUNCTION_DECL && DECL_BUILT_IN (b->decl))
2731 thistype
2732 = build_type_attribute_variant (thistype,
2733 TYPE_ATTRIBUTES (b->u.type));
2734 TREE_TYPE (b->decl) = thistype;
2735 bind (name, b->decl, scope, /*invisible=*/false, /*nested=*/true,
2736 locus);
2737 return b->decl;
2739 else if (TREE_PUBLIC (x))
2741 if (visdecl && !b && duplicate_decls (x, visdecl))
2743 /* An external declaration at block scope referring to a
2744 visible entity with internal linkage. The composite
2745 type will already be correct for this scope, so we
2746 just need to fall through to make the declaration in
2747 this scope. */
2748 nested = true;
2749 x = visdecl;
2751 else
2753 bind (name, x, external_scope, /*invisible=*/true,
2754 /*nested=*/false, locus);
2755 nested = true;
2760 if (TREE_CODE (x) != PARM_DECL)
2761 warn_if_shadowing (x);
2763 skip_external_and_shadow_checks:
2764 if (TREE_CODE (x) == TYPE_DECL)
2765 set_underlying_type (x);
2767 bind (name, x, scope, /*invisible=*/false, nested, locus);
2769 /* If x's type is incomplete because it's based on a
2770 structure or union which has not yet been fully declared,
2771 attach it to that structure or union type, so we can go
2772 back and complete the variable declaration later, if the
2773 structure or union gets fully declared.
2775 If the input is erroneous, we can have error_mark in the type
2776 slot (e.g. "f(void a, ...)") - that doesn't count as an
2777 incomplete type. */
2778 if (TREE_TYPE (x) != error_mark_node
2779 && !COMPLETE_TYPE_P (TREE_TYPE (x)))
2781 tree element = TREE_TYPE (x);
2783 while (TREE_CODE (element) == ARRAY_TYPE)
2784 element = TREE_TYPE (element);
2785 element = TYPE_MAIN_VARIANT (element);
2787 if ((TREE_CODE (element) == RECORD_TYPE
2788 || TREE_CODE (element) == UNION_TYPE)
2789 && (TREE_CODE (x) != TYPE_DECL
2790 || TREE_CODE (TREE_TYPE (x)) == ARRAY_TYPE)
2791 && !COMPLETE_TYPE_P (element))
2792 C_TYPE_INCOMPLETE_VARS (element)
2793 = tree_cons (NULL_TREE, x, C_TYPE_INCOMPLETE_VARS (element));
2795 return x;
2798 /* Record X as belonging to file scope.
2799 This is used only internally by the Objective-C front end,
2800 and is limited to its needs. duplicate_decls is not called;
2801 if there is any preexisting decl for this identifier, it is an ICE. */
2803 tree
2804 pushdecl_top_level (tree x)
2806 tree name;
2807 bool nested = false;
2808 gcc_assert (TREE_CODE (x) == VAR_DECL || TREE_CODE (x) == CONST_DECL);
2810 name = DECL_NAME (x);
2812 gcc_assert (TREE_CODE (x) == CONST_DECL || !I_SYMBOL_BINDING (name));
2814 if (TREE_PUBLIC (x))
2816 bind (name, x, external_scope, /*invisible=*/true, /*nested=*/false,
2817 UNKNOWN_LOCATION);
2818 nested = true;
2820 if (file_scope)
2821 bind (name, x, file_scope, /*invisible=*/false, nested, UNKNOWN_LOCATION);
2823 return x;
2826 static void
2827 implicit_decl_warning (tree id, tree olddecl)
2829 if (warn_implicit_function_declaration)
2831 bool warned;
2833 if (flag_isoc99)
2834 warned = pedwarn (input_location, OPT_Wimplicit_function_declaration,
2835 "implicit declaration of function %qE", id);
2836 else
2837 warned = warning (OPT_Wimplicit_function_declaration,
2838 G_("implicit declaration of function %qE"), id);
2839 if (olddecl && warned)
2840 locate_old_decl (olddecl);
2844 /* Generate an implicit declaration for identifier FUNCTIONID at LOC as a
2845 function of type int (). */
2847 tree
2848 implicitly_declare (location_t loc, tree functionid)
2850 struct c_binding *b;
2851 tree decl = 0;
2852 tree asmspec_tree;
2854 for (b = I_SYMBOL_BINDING (functionid); b; b = b->shadowed)
2856 if (B_IN_SCOPE (b, external_scope))
2858 decl = b->decl;
2859 break;
2863 if (decl)
2865 if (decl == error_mark_node)
2866 return decl;
2868 /* FIXME: Objective-C has weird not-really-builtin functions
2869 which are supposed to be visible automatically. They wind up
2870 in the external scope because they're pushed before the file
2871 scope gets created. Catch this here and rebind them into the
2872 file scope. */
2873 if (!DECL_BUILT_IN (decl) && DECL_IS_BUILTIN (decl))
2875 bind (functionid, decl, file_scope,
2876 /*invisible=*/false, /*nested=*/true,
2877 DECL_SOURCE_LOCATION (decl));
2878 return decl;
2880 else
2882 tree newtype = default_function_type;
2883 if (b->u.type)
2884 TREE_TYPE (decl) = b->u.type;
2885 /* Implicit declaration of a function already declared
2886 (somehow) in a different scope, or as a built-in.
2887 If this is the first time this has happened, warn;
2888 then recycle the old declaration but with the new type. */
2889 if (!C_DECL_IMPLICIT (decl))
2891 implicit_decl_warning (functionid, decl);
2892 C_DECL_IMPLICIT (decl) = 1;
2894 if (DECL_BUILT_IN (decl))
2896 newtype = build_type_attribute_variant (newtype,
2897 TYPE_ATTRIBUTES
2898 (TREE_TYPE (decl)));
2899 if (!comptypes (newtype, TREE_TYPE (decl)))
2901 warning_at (loc, 0, "incompatible implicit declaration of "
2902 "built-in function %qD", decl);
2903 newtype = TREE_TYPE (decl);
2906 else
2908 if (!comptypes (newtype, TREE_TYPE (decl)))
2910 error_at (loc, "incompatible implicit declaration of function %qD", decl);
2911 locate_old_decl (decl);
2914 b->u.type = TREE_TYPE (decl);
2915 TREE_TYPE (decl) = newtype;
2916 bind (functionid, decl, current_scope,
2917 /*invisible=*/false, /*nested=*/true,
2918 DECL_SOURCE_LOCATION (decl));
2919 return decl;
2923 /* Not seen before. */
2924 decl = build_decl (loc, FUNCTION_DECL, functionid, default_function_type);
2925 DECL_EXTERNAL (decl) = 1;
2926 TREE_PUBLIC (decl) = 1;
2927 C_DECL_IMPLICIT (decl) = 1;
2928 implicit_decl_warning (functionid, 0);
2929 asmspec_tree = maybe_apply_renaming_pragma (decl, /*asmname=*/NULL);
2930 if (asmspec_tree)
2931 set_user_assembler_name (decl, TREE_STRING_POINTER (asmspec_tree));
2933 /* C89 says implicit declarations are in the innermost block.
2934 So we record the decl in the standard fashion. */
2935 decl = pushdecl (decl);
2937 /* No need to call objc_check_decl here - it's a function type. */
2938 rest_of_decl_compilation (decl, 0, 0);
2940 /* Write a record describing this implicit function declaration
2941 to the prototypes file (if requested). */
2942 gen_aux_info_record (decl, 0, 1, 0);
2944 /* Possibly apply some default attributes to this implicit declaration. */
2945 decl_attributes (&decl, NULL_TREE, 0);
2947 return decl;
2950 /* Issue an error message for a reference to an undeclared variable
2951 ID, including a reference to a builtin outside of function-call
2952 context. Establish a binding of the identifier to error_mark_node
2953 in an appropriate scope, which will suppress further errors for the
2954 same identifier. The error message should be given location LOC. */
2955 void
2956 undeclared_variable (location_t loc, tree id)
2958 static bool already = false;
2959 struct c_scope *scope;
2961 if (current_function_decl == 0)
2963 error_at (loc, "%qE undeclared here (not in a function)", id);
2964 scope = current_scope;
2966 else
2968 error_at (loc, "%qE undeclared (first use in this function)", id);
2969 if (!already)
2971 inform (loc, "each undeclared identifier is reported only"
2972 " once for each function it appears in");
2973 already = true;
2976 /* If we are parsing old-style parameter decls, current_function_decl
2977 will be nonnull but current_function_scope will be null. */
2978 scope = current_function_scope ? current_function_scope : current_scope;
2980 bind (id, error_mark_node, scope, /*invisible=*/false, /*nested=*/false,
2981 UNKNOWN_LOCATION);
2984 /* Subroutine of lookup_label, declare_label, define_label: construct a
2985 LABEL_DECL with all the proper frills. Also create a struct
2986 c_label_vars initialized for the current scope. */
2988 static tree
2989 make_label (location_t location, tree name, bool defining,
2990 struct c_label_vars **p_label_vars)
2992 tree label = build_decl (location, LABEL_DECL, name, void_type_node);
2993 struct c_label_vars *label_vars;
2995 DECL_CONTEXT (label) = current_function_decl;
2996 DECL_MODE (label) = VOIDmode;
2998 label_vars = GGC_NEW (struct c_label_vars);
2999 label_vars->shadowed = NULL;
3000 set_spot_bindings (&label_vars->label_bindings, defining);
3001 label_vars->decls_in_scope = make_tree_vector ();
3002 label_vars->gotos = VEC_alloc (c_goto_bindings_p, gc, 0);
3003 *p_label_vars = label_vars;
3005 return label;
3008 /* Get the LABEL_DECL corresponding to identifier NAME as a label.
3009 Create one if none exists so far for the current function.
3010 This is called when a label is used in a goto expression or
3011 has its address taken. */
3013 tree
3014 lookup_label (tree name)
3016 tree label;
3017 struct c_label_vars *label_vars;
3019 if (current_function_decl == 0)
3021 error ("label %qE referenced outside of any function", name);
3022 return 0;
3025 /* Use a label already defined or ref'd with this name, but not if
3026 it is inherited from a containing function and wasn't declared
3027 using __label__. */
3028 label = I_LABEL_DECL (name);
3029 if (label && (DECL_CONTEXT (label) == current_function_decl
3030 || C_DECLARED_LABEL_FLAG (label)))
3032 /* If the label has only been declared, update its apparent
3033 location to point here, for better diagnostics if it
3034 turns out not to have been defined. */
3035 if (DECL_INITIAL (label) == NULL_TREE)
3036 DECL_SOURCE_LOCATION (label) = input_location;
3037 return label;
3040 /* No label binding for that identifier; make one. */
3041 label = make_label (input_location, name, false, &label_vars);
3043 /* Ordinary labels go in the current function scope. */
3044 bind_label (name, label, current_function_scope, label_vars);
3046 return label;
3049 /* Issue a warning about DECL for a goto statement at GOTO_LOC going
3050 to LABEL. */
3052 static void
3053 warn_about_goto (location_t goto_loc, tree label, tree decl)
3055 if (variably_modified_type_p (TREE_TYPE (decl), NULL_TREE))
3056 error_at (goto_loc,
3057 "jump into scope of identifier with variably modified type");
3058 else
3059 warning_at (goto_loc, OPT_Wjump_misses_init,
3060 "jump skips variable initialization");
3061 inform (DECL_SOURCE_LOCATION (label), "label %qD defined here", label);
3062 inform (DECL_SOURCE_LOCATION (decl), "%qD declared here", decl);
3065 /* Look up a label because of a goto statement. This is like
3066 lookup_label, but also issues any appropriate warnings. */
3068 tree
3069 lookup_label_for_goto (location_t loc, tree name)
3071 tree label;
3072 struct c_label_vars *label_vars;
3073 unsigned int ix;
3074 tree decl;
3076 label = lookup_label (name);
3077 if (label == NULL_TREE)
3078 return NULL_TREE;
3080 /* If we are jumping to a different function, we can't issue any
3081 useful warnings. */
3082 if (DECL_CONTEXT (label) != current_function_decl)
3084 gcc_assert (C_DECLARED_LABEL_FLAG (label));
3085 return label;
3088 label_vars = I_LABEL_BINDING (name)->u.label;
3090 /* If the label has not yet been defined, then push this goto on a
3091 list for possible later warnings. */
3092 if (label_vars->label_bindings.scope == NULL)
3094 struct c_goto_bindings *g;
3096 g = GGC_NEW (struct c_goto_bindings);
3097 g->loc = loc;
3098 set_spot_bindings (&g->goto_bindings, true);
3099 VEC_safe_push (c_goto_bindings_p, gc, label_vars->gotos, g);
3100 return label;
3103 /* If there are any decls in label_vars->decls_in_scope, then this
3104 goto has missed the declaration of the decl. This happens for a
3105 case like
3106 int i = 1;
3107 lab:
3109 goto lab;
3110 Issue a warning or error. */
3111 for (ix = 0; VEC_iterate (tree, label_vars->decls_in_scope, ix, decl); ++ix)
3112 warn_about_goto (loc, label, decl);
3114 if (label_vars->label_bindings.left_stmt_expr)
3116 error_at (loc, "jump into statement expression");
3117 inform (DECL_SOURCE_LOCATION (label), "label %qD defined here", label);
3120 return label;
3123 /* Make a label named NAME in the current function, shadowing silently
3124 any that may be inherited from containing functions or containing
3125 scopes. This is called for __label__ declarations. */
3127 tree
3128 declare_label (tree name)
3130 struct c_binding *b = I_LABEL_BINDING (name);
3131 tree label;
3132 struct c_label_vars *label_vars;
3134 /* Check to make sure that the label hasn't already been declared
3135 at this scope */
3136 if (b && B_IN_CURRENT_SCOPE (b))
3138 error ("duplicate label declaration %qE", name);
3139 locate_old_decl (b->decl);
3141 /* Just use the previous declaration. */
3142 return b->decl;
3145 label = make_label (input_location, name, false, &label_vars);
3146 C_DECLARED_LABEL_FLAG (label) = 1;
3148 /* Declared labels go in the current scope. */
3149 bind_label (name, label, current_scope, label_vars);
3151 return label;
3154 /* When we define a label, issue any appropriate warnings if there are
3155 any gotos earlier in the function which jump to this label. */
3157 static void
3158 check_earlier_gotos (tree label, struct c_label_vars* label_vars)
3160 unsigned int ix;
3161 struct c_goto_bindings *g;
3163 for (ix = 0;
3164 VEC_iterate (c_goto_bindings_p, label_vars->gotos, ix, g);
3165 ++ix)
3167 struct c_binding *b;
3168 struct c_scope *scope;
3170 /* We have a goto to this label. The goto is going forward. In
3171 g->scope, the goto is going to skip any binding which was
3172 defined after g->bindings_in_scope. */
3173 for (b = g->goto_bindings.scope->bindings;
3174 b != g->goto_bindings.bindings_in_scope;
3175 b = b->prev)
3177 if (decl_jump_unsafe (b->decl))
3178 warn_about_goto (g->loc, label, b->decl);
3181 /* We also need to warn about decls defined in any scopes
3182 between the scope of the label and the scope of the goto. */
3183 for (scope = label_vars->label_bindings.scope;
3184 scope != g->goto_bindings.scope;
3185 scope = scope->outer)
3187 gcc_assert (scope != NULL);
3188 if (scope == label_vars->label_bindings.scope)
3189 b = label_vars->label_bindings.bindings_in_scope;
3190 else
3191 b = scope->bindings;
3192 for (; b != NULL; b = b->prev)
3194 if (decl_jump_unsafe (b->decl))
3195 warn_about_goto (g->loc, label, b->decl);
3199 if (g->goto_bindings.stmt_exprs > 0)
3201 error_at (g->loc, "jump into statement expression");
3202 inform (DECL_SOURCE_LOCATION (label), "label %qD defined here",
3203 label);
3207 /* Now that the label is defined, we will issue warnings about
3208 subsequent gotos to this label when we see them. */
3209 VEC_truncate (c_goto_bindings_p, label_vars->gotos, 0);
3210 label_vars->gotos = NULL;
3213 /* Define a label, specifying the location in the source file.
3214 Return the LABEL_DECL node for the label, if the definition is valid.
3215 Otherwise return 0. */
3217 tree
3218 define_label (location_t location, tree name)
3220 /* Find any preexisting label with this name. It is an error
3221 if that label has already been defined in this function, or
3222 if there is a containing function with a declared label with
3223 the same name. */
3224 tree label = I_LABEL_DECL (name);
3226 if (label
3227 && ((DECL_CONTEXT (label) == current_function_decl
3228 && DECL_INITIAL (label) != 0)
3229 || (DECL_CONTEXT (label) != current_function_decl
3230 && C_DECLARED_LABEL_FLAG (label))))
3232 error_at (location, "duplicate label %qD", label);
3233 locate_old_decl (label);
3234 return 0;
3236 else if (label && DECL_CONTEXT (label) == current_function_decl)
3238 struct c_label_vars *label_vars = I_LABEL_BINDING (name)->u.label;
3240 /* The label has been used or declared already in this function,
3241 but not defined. Update its location to point to this
3242 definition. */
3243 DECL_SOURCE_LOCATION (label) = location;
3244 set_spot_bindings (&label_vars->label_bindings, true);
3246 /* Issue warnings as required about any goto statements from
3247 earlier in the function. */
3248 check_earlier_gotos (label, label_vars);
3250 else
3252 struct c_label_vars *label_vars;
3254 /* No label binding for that identifier; make one. */
3255 label = make_label (location, name, true, &label_vars);
3257 /* Ordinary labels go in the current function scope. */
3258 bind_label (name, label, current_function_scope, label_vars);
3261 if (!in_system_header && lookup_name (name))
3262 warning_at (location, OPT_Wtraditional,
3263 "traditional C lacks a separate namespace "
3264 "for labels, identifier %qE conflicts", name);
3266 /* Mark label as having been defined. */
3267 DECL_INITIAL (label) = error_mark_node;
3268 return label;
3271 /* Get the bindings for a new switch statement. This is used to issue
3272 warnings as appropriate for jumps from the switch to case or
3273 default labels. */
3275 struct c_spot_bindings *
3276 c_get_switch_bindings (void)
3278 struct c_spot_bindings *switch_bindings;
3280 switch_bindings = XNEW (struct c_spot_bindings);
3281 set_spot_bindings (switch_bindings, true);
3282 return switch_bindings;
3285 void
3286 c_release_switch_bindings (struct c_spot_bindings *bindings)
3288 gcc_assert (bindings->stmt_exprs == 0 && !bindings->left_stmt_expr);
3289 XDELETE (bindings);
3292 /* This is called at the point of a case or default label to issue
3293 warnings about decls as needed. It returns true if it found an
3294 error, not just a warning. */
3296 bool
3297 c_check_switch_jump_warnings (struct c_spot_bindings *switch_bindings,
3298 location_t switch_loc, location_t case_loc)
3300 bool saw_error;
3301 struct c_scope *scope;
3303 saw_error = false;
3304 for (scope = current_scope;
3305 scope != switch_bindings->scope;
3306 scope = scope->outer)
3308 struct c_binding *b;
3310 gcc_assert (scope != NULL);
3311 for (b = scope->bindings; b != NULL; b = b->prev)
3313 if (decl_jump_unsafe (b->decl))
3315 if (variably_modified_type_p (TREE_TYPE (b->decl), NULL_TREE))
3317 saw_error = true;
3318 error_at (case_loc,
3319 ("switch jumps into scope of identifier with "
3320 "variably modified type"));
3322 else
3323 warning_at (case_loc, OPT_Wjump_misses_init,
3324 "switch jumps over variable initialization");
3325 inform (switch_loc, "switch starts here");
3326 inform (DECL_SOURCE_LOCATION (b->decl), "%qD declared here",
3327 b->decl);
3332 if (switch_bindings->stmt_exprs > 0)
3334 saw_error = true;
3335 error_at (case_loc, "switch jumps into statement expression");
3336 inform (switch_loc, "switch starts here");
3339 return saw_error;
3342 /* Given NAME, an IDENTIFIER_NODE,
3343 return the structure (or union or enum) definition for that name.
3344 If THISLEVEL_ONLY is nonzero, searches only the current_scope.
3345 CODE says which kind of type the caller wants;
3346 it is RECORD_TYPE or UNION_TYPE or ENUMERAL_TYPE.
3347 If PLOC is not NULL and this returns non-null, it sets *PLOC to the
3348 location where the tag was defined.
3349 If the wrong kind of type is found, an error is reported. */
3351 static tree
3352 lookup_tag (enum tree_code code, tree name, int thislevel_only,
3353 location_t *ploc)
3355 struct c_binding *b = I_TAG_BINDING (name);
3356 int thislevel = 0;
3358 if (!b || !b->decl)
3359 return 0;
3361 /* We only care about whether it's in this level if
3362 thislevel_only was set or it might be a type clash. */
3363 if (thislevel_only || TREE_CODE (b->decl) != code)
3365 /* For our purposes, a tag in the external scope is the same as
3366 a tag in the file scope. (Primarily relevant to Objective-C
3367 and its builtin structure tags, which get pushed before the
3368 file scope is created.) */
3369 if (B_IN_CURRENT_SCOPE (b)
3370 || (current_scope == file_scope && B_IN_EXTERNAL_SCOPE (b)))
3371 thislevel = 1;
3374 if (thislevel_only && !thislevel)
3375 return 0;
3377 if (TREE_CODE (b->decl) != code)
3379 /* Definition isn't the kind we were looking for. */
3380 pending_invalid_xref = name;
3381 pending_invalid_xref_location = input_location;
3383 /* If in the same binding level as a declaration as a tag
3384 of a different type, this must not be allowed to
3385 shadow that tag, so give the error immediately.
3386 (For example, "struct foo; union foo;" is invalid.) */
3387 if (thislevel)
3388 pending_xref_error ();
3391 if (ploc != NULL)
3392 *ploc = b->locus;
3394 return b->decl;
3397 /* Print an error message now
3398 for a recent invalid struct, union or enum cross reference.
3399 We don't print them immediately because they are not invalid
3400 when used in the `struct foo;' construct for shadowing. */
3402 void
3403 pending_xref_error (void)
3405 if (pending_invalid_xref != 0)
3406 error_at (pending_invalid_xref_location, "%qE defined as wrong kind of tag",
3407 pending_invalid_xref);
3408 pending_invalid_xref = 0;
3412 /* Look up NAME in the current scope and its superiors
3413 in the namespace of variables, functions and typedefs.
3414 Return a ..._DECL node of some kind representing its definition,
3415 or return 0 if it is undefined. */
3417 tree
3418 lookup_name (tree name)
3420 struct c_binding *b = I_SYMBOL_BINDING (name);
3421 if (b && !b->invisible)
3422 return b->decl;
3423 return 0;
3426 /* Similar to `lookup_name' but look only at the indicated scope. */
3428 static tree
3429 lookup_name_in_scope (tree name, struct c_scope *scope)
3431 struct c_binding *b;
3433 for (b = I_SYMBOL_BINDING (name); b; b = b->shadowed)
3434 if (B_IN_SCOPE (b, scope))
3435 return b->decl;
3436 return 0;
3439 /* Create the predefined scalar types of C,
3440 and some nodes representing standard constants (0, 1, (void *) 0).
3441 Initialize the global scope.
3442 Make definitions for built-in primitive functions. */
3444 void
3445 c_init_decl_processing (void)
3447 location_t save_loc = input_location;
3449 /* Initialize reserved words for parser. */
3450 c_parse_init ();
3452 current_function_decl = 0;
3454 gcc_obstack_init (&parser_obstack);
3456 /* Make the externals scope. */
3457 push_scope ();
3458 external_scope = current_scope;
3460 /* Declarations from c_common_nodes_and_builtins must not be associated
3461 with this input file, lest we get differences between using and not
3462 using preprocessed headers. */
3463 input_location = BUILTINS_LOCATION;
3465 build_common_tree_nodes (flag_signed_char, false);
3467 c_common_nodes_and_builtins ();
3469 /* In C, comparisons and TRUTH_* expressions have type int. */
3470 truthvalue_type_node = integer_type_node;
3471 truthvalue_true_node = integer_one_node;
3472 truthvalue_false_node = integer_zero_node;
3474 /* Even in C99, which has a real boolean type. */
3475 pushdecl (build_decl (UNKNOWN_LOCATION, TYPE_DECL, get_identifier ("_Bool"),
3476 boolean_type_node));
3478 input_location = save_loc;
3480 pedantic_lvalues = true;
3482 make_fname_decl = c_make_fname_decl;
3483 start_fname_decls ();
3486 /* Create the VAR_DECL at LOC for __FUNCTION__ etc. ID is the name to
3487 give the decl, NAME is the initialization string and TYPE_DEP
3488 indicates whether NAME depended on the type of the function. As we
3489 don't yet implement delayed emission of static data, we mark the
3490 decl as emitted so it is not placed in the output. Anything using
3491 it must therefore pull out the STRING_CST initializer directly.
3492 FIXME. */
3494 static tree
3495 c_make_fname_decl (location_t loc, tree id, int type_dep)
3497 const char *name = fname_as_string (type_dep);
3498 tree decl, type, init;
3499 size_t length = strlen (name);
3501 type = build_array_type (char_type_node,
3502 build_index_type (size_int (length)));
3503 type = c_build_qualified_type (type, TYPE_QUAL_CONST);
3505 decl = build_decl (loc, VAR_DECL, id, type);
3507 TREE_STATIC (decl) = 1;
3508 TREE_READONLY (decl) = 1;
3509 DECL_ARTIFICIAL (decl) = 1;
3511 init = build_string (length + 1, name);
3512 free (CONST_CAST (char *, name));
3513 TREE_TYPE (init) = type;
3514 DECL_INITIAL (decl) = init;
3516 TREE_USED (decl) = 1;
3518 if (current_function_decl
3519 /* For invalid programs like this:
3521 void foo()
3522 const char* p = __FUNCTION__;
3524 the __FUNCTION__ is believed to appear in K&R style function
3525 parameter declarator. In that case we still don't have
3526 function_scope. */
3527 && (!errorcount || current_function_scope))
3529 DECL_CONTEXT (decl) = current_function_decl;
3530 bind (id, decl, current_function_scope,
3531 /*invisible=*/false, /*nested=*/false, UNKNOWN_LOCATION);
3534 finish_decl (decl, loc, init, NULL_TREE, NULL_TREE);
3536 return decl;
3539 tree
3540 c_builtin_function (tree decl)
3542 tree type = TREE_TYPE (decl);
3543 tree id = DECL_NAME (decl);
3545 const char *name = IDENTIFIER_POINTER (id);
3546 C_DECL_BUILTIN_PROTOTYPE (decl) = (TYPE_ARG_TYPES (type) != 0);
3548 /* Should never be called on a symbol with a preexisting meaning. */
3549 gcc_assert (!I_SYMBOL_BINDING (id));
3551 bind (id, decl, external_scope, /*invisible=*/true, /*nested=*/false,
3552 UNKNOWN_LOCATION);
3554 /* Builtins in the implementation namespace are made visible without
3555 needing to be explicitly declared. See push_file_scope. */
3556 if (name[0] == '_' && (name[1] == '_' || ISUPPER (name[1])))
3558 TREE_CHAIN (decl) = visible_builtins;
3559 visible_builtins = decl;
3562 return decl;
3565 tree
3566 c_builtin_function_ext_scope (tree decl)
3568 tree type = TREE_TYPE (decl);
3569 tree id = DECL_NAME (decl);
3571 const char *name = IDENTIFIER_POINTER (id);
3572 C_DECL_BUILTIN_PROTOTYPE (decl) = (TYPE_ARG_TYPES (type) != 0);
3574 /* Should never be called on a symbol with a preexisting meaning. */
3575 gcc_assert (!I_SYMBOL_BINDING (id));
3577 bind (id, decl, external_scope, /*invisible=*/false, /*nested=*/false,
3578 UNKNOWN_LOCATION);
3580 /* Builtins in the implementation namespace are made visible without
3581 needing to be explicitly declared. See push_file_scope. */
3582 if (name[0] == '_' && (name[1] == '_' || ISUPPER (name[1])))
3584 TREE_CHAIN (decl) = visible_builtins;
3585 visible_builtins = decl;
3588 return decl;
3591 /* Called when a declaration is seen that contains no names to declare.
3592 If its type is a reference to a structure, union or enum inherited
3593 from a containing scope, shadow that tag name for the current scope
3594 with a forward reference.
3595 If its type defines a new named structure or union
3596 or defines an enum, it is valid but we need not do anything here.
3597 Otherwise, it is an error. */
3599 void
3600 shadow_tag (const struct c_declspecs *declspecs)
3602 shadow_tag_warned (declspecs, 0);
3605 /* WARNED is 1 if we have done a pedwarn, 2 if we have done a warning,
3606 but no pedwarn. */
3607 void
3608 shadow_tag_warned (const struct c_declspecs *declspecs, int warned)
3610 bool found_tag = false;
3612 if (declspecs->type && !declspecs->default_int_p && !declspecs->typedef_p)
3614 tree value = declspecs->type;
3615 enum tree_code code = TREE_CODE (value);
3617 if (code == RECORD_TYPE || code == UNION_TYPE || code == ENUMERAL_TYPE)
3618 /* Used to test also that TYPE_SIZE (value) != 0.
3619 That caused warning for `struct foo;' at top level in the file. */
3621 tree name = TYPE_NAME (value);
3622 tree t;
3624 found_tag = true;
3626 if (declspecs->restrict_p)
3628 error ("invalid use of %<restrict%>");
3629 warned = 1;
3632 if (name == 0)
3634 if (warned != 1 && code != ENUMERAL_TYPE)
3635 /* Empty unnamed enum OK */
3637 pedwarn (input_location, 0,
3638 "unnamed struct/union that defines no instances");
3639 warned = 1;
3642 else if (!declspecs->tag_defined_p
3643 && declspecs->storage_class != csc_none)
3645 if (warned != 1)
3646 pedwarn (input_location, 0,
3647 "empty declaration with storage class specifier "
3648 "does not redeclare tag");
3649 warned = 1;
3650 pending_xref_error ();
3652 else if (!declspecs->tag_defined_p
3653 && (declspecs->const_p
3654 || declspecs->volatile_p
3655 || declspecs->restrict_p
3656 || declspecs->address_space))
3658 if (warned != 1)
3659 pedwarn (input_location, 0,
3660 "empty declaration with type qualifier "
3661 "does not redeclare tag");
3662 warned = 1;
3663 pending_xref_error ();
3665 else
3667 pending_invalid_xref = 0;
3668 t = lookup_tag (code, name, 1, NULL);
3670 if (t == 0)
3672 t = make_node (code);
3673 pushtag (input_location, name, t);
3677 else
3679 if (warned != 1 && !in_system_header)
3681 pedwarn (input_location, 0,
3682 "useless type name in empty declaration");
3683 warned = 1;
3687 else if (warned != 1 && !in_system_header && declspecs->typedef_p)
3689 pedwarn (input_location, 0, "useless type name in empty declaration");
3690 warned = 1;
3693 pending_invalid_xref = 0;
3695 if (declspecs->inline_p)
3697 error ("%<inline%> in empty declaration");
3698 warned = 1;
3701 if (current_scope == file_scope && declspecs->storage_class == csc_auto)
3703 error ("%<auto%> in file-scope empty declaration");
3704 warned = 1;
3707 if (current_scope == file_scope && declspecs->storage_class == csc_register)
3709 error ("%<register%> in file-scope empty declaration");
3710 warned = 1;
3713 if (!warned && !in_system_header && declspecs->storage_class != csc_none)
3715 warning (0, "useless storage class specifier in empty declaration");
3716 warned = 2;
3719 if (!warned && !in_system_header && declspecs->thread_p)
3721 warning (0, "useless %<__thread%> in empty declaration");
3722 warned = 2;
3725 if (!warned && !in_system_header && (declspecs->const_p
3726 || declspecs->volatile_p
3727 || declspecs->restrict_p
3728 || declspecs->address_space))
3730 warning (0, "useless type qualifier in empty declaration");
3731 warned = 2;
3734 if (warned != 1)
3736 if (!found_tag)
3737 pedwarn (input_location, 0, "empty declaration");
3742 /* Return the qualifiers from SPECS as a bitwise OR of TYPE_QUAL_*
3743 bits. SPECS represents declaration specifiers that the grammar
3744 only permits to contain type qualifiers and attributes. */
3747 quals_from_declspecs (const struct c_declspecs *specs)
3749 int quals = ((specs->const_p ? TYPE_QUAL_CONST : 0)
3750 | (specs->volatile_p ? TYPE_QUAL_VOLATILE : 0)
3751 | (specs->restrict_p ? TYPE_QUAL_RESTRICT : 0)
3752 | (ENCODE_QUAL_ADDR_SPACE (specs->address_space)));
3753 gcc_assert (!specs->type
3754 && !specs->decl_attr
3755 && specs->typespec_word == cts_none
3756 && specs->storage_class == csc_none
3757 && !specs->typedef_p
3758 && !specs->explicit_signed_p
3759 && !specs->deprecated_p
3760 && !specs->long_p
3761 && !specs->long_long_p
3762 && !specs->short_p
3763 && !specs->signed_p
3764 && !specs->unsigned_p
3765 && !specs->complex_p
3766 && !specs->inline_p
3767 && !specs->thread_p);
3768 return quals;
3771 /* Construct an array declarator. LOC is the location of the
3772 beginning of the array (usually the opening brace). EXPR is the
3773 expression inside [], or NULL_TREE. QUALS are the type qualifiers
3774 inside the [] (to be applied to the pointer to which a parameter
3775 array is converted). STATIC_P is true if "static" is inside the
3776 [], false otherwise. VLA_UNSPEC_P is true if the array is [*], a
3777 VLA of unspecified length which is nevertheless a complete type,
3778 false otherwise. The field for the contained declarator is left to
3779 be filled in by set_array_declarator_inner. */
3781 struct c_declarator *
3782 build_array_declarator (location_t loc,
3783 tree expr, struct c_declspecs *quals, bool static_p,
3784 bool vla_unspec_p)
3786 struct c_declarator *declarator = XOBNEW (&parser_obstack,
3787 struct c_declarator);
3788 declarator->id_loc = loc;
3789 declarator->kind = cdk_array;
3790 declarator->declarator = 0;
3791 declarator->u.array.dimen = expr;
3792 if (quals)
3794 declarator->u.array.attrs = quals->attrs;
3795 declarator->u.array.quals = quals_from_declspecs (quals);
3797 else
3799 declarator->u.array.attrs = NULL_TREE;
3800 declarator->u.array.quals = 0;
3802 declarator->u.array.static_p = static_p;
3803 declarator->u.array.vla_unspec_p = vla_unspec_p;
3804 if (!flag_isoc99)
3806 if (static_p || quals != NULL)
3807 pedwarn (loc, OPT_pedantic,
3808 "ISO C90 does not support %<static%> or type "
3809 "qualifiers in parameter array declarators");
3810 if (vla_unspec_p)
3811 pedwarn (loc, OPT_pedantic,
3812 "ISO C90 does not support %<[*]%> array declarators");
3814 if (vla_unspec_p)
3816 if (!current_scope->parm_flag)
3818 /* C99 6.7.5.2p4 */
3819 error_at (loc, "%<[*]%> not allowed in other than "
3820 "function prototype scope");
3821 declarator->u.array.vla_unspec_p = false;
3822 return NULL;
3824 current_scope->had_vla_unspec = true;
3826 return declarator;
3829 /* Set the contained declarator of an array declarator. DECL is the
3830 declarator, as constructed by build_array_declarator; INNER is what
3831 appears on the left of the []. */
3833 struct c_declarator *
3834 set_array_declarator_inner (struct c_declarator *decl,
3835 struct c_declarator *inner)
3837 decl->declarator = inner;
3838 return decl;
3841 /* INIT is a constructor that forms DECL's initializer. If the final
3842 element initializes a flexible array field, add the size of that
3843 initializer to DECL's size. */
3845 static void
3846 add_flexible_array_elts_to_size (tree decl, tree init)
3848 tree elt, type;
3850 if (VEC_empty (constructor_elt, CONSTRUCTOR_ELTS (init)))
3851 return;
3853 elt = VEC_last (constructor_elt, CONSTRUCTOR_ELTS (init))->value;
3854 type = TREE_TYPE (elt);
3855 if (TREE_CODE (type) == ARRAY_TYPE
3856 && TYPE_SIZE (type) == NULL_TREE
3857 && TYPE_DOMAIN (type) != NULL_TREE
3858 && TYPE_MAX_VALUE (TYPE_DOMAIN (type)) == NULL_TREE)
3860 complete_array_type (&type, elt, false);
3861 DECL_SIZE (decl)
3862 = size_binop (PLUS_EXPR, DECL_SIZE (decl), TYPE_SIZE (type));
3863 DECL_SIZE_UNIT (decl)
3864 = size_binop (PLUS_EXPR, DECL_SIZE_UNIT (decl), TYPE_SIZE_UNIT (type));
3868 /* Decode a "typename", such as "int **", returning a ..._TYPE node.
3869 Set *EXPR, if EXPR not NULL, to any expression to be evaluated
3870 before the type name, and set *EXPR_CONST_OPERANDS, if
3871 EXPR_CONST_OPERANDS not NULL, to indicate whether the type name may
3872 appear in a constant expression. */
3874 tree
3875 groktypename (struct c_type_name *type_name, tree *expr,
3876 bool *expr_const_operands)
3878 tree type;
3879 tree attrs = type_name->specs->attrs;
3881 type_name->specs->attrs = NULL_TREE;
3883 type = grokdeclarator (type_name->declarator, type_name->specs, TYPENAME,
3884 false, NULL, &attrs, expr, expr_const_operands,
3885 DEPRECATED_NORMAL);
3887 /* Apply attributes. */
3888 decl_attributes (&type, attrs, 0);
3890 return type;
3893 /* Decode a declarator in an ordinary declaration or data definition.
3894 This is called as soon as the type information and variable name
3895 have been parsed, before parsing the initializer if any.
3896 Here we create the ..._DECL node, fill in its type,
3897 and put it on the list of decls for the current context.
3898 The ..._DECL node is returned as the value.
3900 Exception: for arrays where the length is not specified,
3901 the type is left null, to be filled in by `finish_decl'.
3903 Function definitions do not come here; they go to start_function
3904 instead. However, external and forward declarations of functions
3905 do go through here. Structure field declarations are done by
3906 grokfield and not through here. */
3908 tree
3909 start_decl (struct c_declarator *declarator, struct c_declspecs *declspecs,
3910 bool initialized, tree attributes)
3912 tree decl;
3913 tree tem;
3914 tree expr = NULL_TREE;
3915 enum deprecated_states deprecated_state = DEPRECATED_NORMAL;
3917 /* An object declared as __attribute__((deprecated)) suppresses
3918 warnings of uses of other deprecated items. */
3919 if (lookup_attribute ("deprecated", attributes))
3920 deprecated_state = DEPRECATED_SUPPRESS;
3922 decl = grokdeclarator (declarator, declspecs,
3923 NORMAL, initialized, NULL, &attributes, &expr, NULL,
3924 deprecated_state);
3925 if (!decl)
3926 return 0;
3928 if (expr)
3929 add_stmt (expr);
3931 if (TREE_CODE (decl) != FUNCTION_DECL && MAIN_NAME_P (DECL_NAME (decl)))
3932 warning (OPT_Wmain, "%q+D is usually a function", decl);
3934 if (initialized)
3935 /* Is it valid for this decl to have an initializer at all?
3936 If not, set INITIALIZED to zero, which will indirectly
3937 tell 'finish_decl' to ignore the initializer once it is parsed. */
3938 switch (TREE_CODE (decl))
3940 case TYPE_DECL:
3941 error ("typedef %qD is initialized (use __typeof__ instead)", decl);
3942 initialized = 0;
3943 break;
3945 case FUNCTION_DECL:
3946 error ("function %qD is initialized like a variable", decl);
3947 initialized = 0;
3948 break;
3950 case PARM_DECL:
3951 /* DECL_INITIAL in a PARM_DECL is really DECL_ARG_TYPE. */
3952 error ("parameter %qD is initialized", decl);
3953 initialized = 0;
3954 break;
3956 default:
3957 /* Don't allow initializations for incomplete types except for
3958 arrays which might be completed by the initialization. */
3960 /* This can happen if the array size is an undefined macro.
3961 We already gave a warning, so we don't need another one. */
3962 if (TREE_TYPE (decl) == error_mark_node)
3963 initialized = 0;
3964 else if (COMPLETE_TYPE_P (TREE_TYPE (decl)))
3966 /* A complete type is ok if size is fixed. */
3968 if (TREE_CODE (TYPE_SIZE (TREE_TYPE (decl))) != INTEGER_CST
3969 || C_DECL_VARIABLE_SIZE (decl))
3971 error ("variable-sized object may not be initialized");
3972 initialized = 0;
3975 else if (TREE_CODE (TREE_TYPE (decl)) != ARRAY_TYPE)
3977 error ("variable %qD has initializer but incomplete type", decl);
3978 initialized = 0;
3980 else if (C_DECL_VARIABLE_SIZE (decl))
3982 /* Although C99 is unclear about whether incomplete arrays
3983 of VLAs themselves count as VLAs, it does not make
3984 sense to permit them to be initialized given that
3985 ordinary VLAs may not be initialized. */
3986 error ("variable-sized object may not be initialized");
3987 initialized = 0;
3991 if (initialized)
3993 if (current_scope == file_scope)
3994 TREE_STATIC (decl) = 1;
3996 /* Tell 'pushdecl' this is an initialized decl
3997 even though we don't yet have the initializer expression.
3998 Also tell 'finish_decl' it may store the real initializer. */
3999 DECL_INITIAL (decl) = error_mark_node;
4002 /* If this is a function declaration, write a record describing it to the
4003 prototypes file (if requested). */
4005 if (TREE_CODE (decl) == FUNCTION_DECL)
4006 gen_aux_info_record (decl, 0, 0, TYPE_ARG_TYPES (TREE_TYPE (decl)) != 0);
4008 /* ANSI specifies that a tentative definition which is not merged with
4009 a non-tentative definition behaves exactly like a definition with an
4010 initializer equal to zero. (Section 3.7.2)
4012 -fno-common gives strict ANSI behavior, though this tends to break
4013 a large body of code that grew up without this rule.
4015 Thread-local variables are never common, since there's no entrenched
4016 body of code to break, and it allows more efficient variable references
4017 in the presence of dynamic linking. */
4019 if (TREE_CODE (decl) == VAR_DECL
4020 && !initialized
4021 && TREE_PUBLIC (decl)
4022 && !DECL_THREAD_LOCAL_P (decl)
4023 && !flag_no_common)
4024 DECL_COMMON (decl) = 1;
4026 /* Set attributes here so if duplicate decl, will have proper attributes. */
4027 decl_attributes (&decl, attributes, 0);
4029 /* Handle gnu_inline attribute. */
4030 if (declspecs->inline_p
4031 && !flag_gnu89_inline
4032 && TREE_CODE (decl) == FUNCTION_DECL
4033 && (lookup_attribute ("gnu_inline", DECL_ATTRIBUTES (decl))
4034 || current_function_decl))
4036 if (declspecs->storage_class == csc_auto && current_scope != file_scope)
4038 else if (declspecs->storage_class != csc_static)
4039 DECL_EXTERNAL (decl) = !DECL_EXTERNAL (decl);
4042 if (TREE_CODE (decl) == FUNCTION_DECL
4043 && targetm.calls.promote_prototypes (TREE_TYPE (decl)))
4045 struct c_declarator *ce = declarator;
4047 if (ce->kind == cdk_pointer)
4048 ce = declarator->declarator;
4049 if (ce->kind == cdk_function)
4051 tree args = ce->u.arg_info->parms;
4052 for (; args; args = TREE_CHAIN (args))
4054 tree type = TREE_TYPE (args);
4055 if (type && INTEGRAL_TYPE_P (type)
4056 && TYPE_PRECISION (type) < TYPE_PRECISION (integer_type_node))
4057 DECL_ARG_TYPE (args) = integer_type_node;
4062 if (TREE_CODE (decl) == FUNCTION_DECL
4063 && DECL_DECLARED_INLINE_P (decl)
4064 && DECL_UNINLINABLE (decl)
4065 && lookup_attribute ("noinline", DECL_ATTRIBUTES (decl)))
4066 warning (OPT_Wattributes, "inline function %q+D given attribute noinline",
4067 decl);
4069 /* C99 6.7.4p3: An inline definition of a function with external
4070 linkage shall not contain a definition of a modifiable object
4071 with static storage duration... */
4072 if (TREE_CODE (decl) == VAR_DECL
4073 && current_scope != file_scope
4074 && TREE_STATIC (decl)
4075 && !TREE_READONLY (decl)
4076 && DECL_DECLARED_INLINE_P (current_function_decl)
4077 && DECL_EXTERNAL (current_function_decl))
4078 record_inline_static (input_location, current_function_decl,
4079 decl, csi_modifiable);
4081 /* Add this decl to the current scope.
4082 TEM may equal DECL or it may be a previous decl of the same name. */
4083 tem = pushdecl (decl);
4085 if (initialized && DECL_EXTERNAL (tem))
4087 DECL_EXTERNAL (tem) = 0;
4088 TREE_STATIC (tem) = 1;
4091 return tem;
4094 /* Finish processing of a declaration;
4095 install its initial value.
4096 If ORIGTYPE is not NULL_TREE, it is the original type of INIT.
4097 If the length of an array type is not known before,
4098 it must be determined now, from the initial value, or it is an error.
4100 INIT_LOC is the location of the initial value. */
4102 void
4103 finish_decl (tree decl, location_t init_loc, tree init,
4104 tree origtype, tree asmspec_tree)
4106 tree type;
4107 bool was_incomplete = (DECL_SIZE (decl) == 0);
4108 const char *asmspec = 0;
4110 /* If a name was specified, get the string. */
4111 if ((TREE_CODE (decl) == FUNCTION_DECL || TREE_CODE (decl) == VAR_DECL)
4112 && DECL_FILE_SCOPE_P (decl))
4113 asmspec_tree = maybe_apply_renaming_pragma (decl, asmspec_tree);
4114 if (asmspec_tree)
4115 asmspec = TREE_STRING_POINTER (asmspec_tree);
4117 if (TREE_CODE (decl) == VAR_DECL
4118 && TREE_STATIC (decl)
4119 && global_bindings_p ())
4120 /* So decl is a global variable. Record the types it uses
4121 so that we can decide later to emit debug info for them. */
4122 record_types_used_by_current_var_decl (decl);
4124 /* If `start_decl' didn't like having an initialization, ignore it now. */
4125 if (init != 0 && DECL_INITIAL (decl) == 0)
4126 init = 0;
4128 /* Don't crash if parm is initialized. */
4129 if (TREE_CODE (decl) == PARM_DECL)
4130 init = 0;
4132 if (init)
4133 store_init_value (init_loc, decl, init, origtype);
4135 if (c_dialect_objc () && (TREE_CODE (decl) == VAR_DECL
4136 || TREE_CODE (decl) == FUNCTION_DECL
4137 || TREE_CODE (decl) == FIELD_DECL))
4138 objc_check_decl (decl);
4140 type = TREE_TYPE (decl);
4142 /* Deduce size of array from initialization, if not already known. */
4143 if (TREE_CODE (type) == ARRAY_TYPE
4144 && TYPE_DOMAIN (type) == 0
4145 && TREE_CODE (decl) != TYPE_DECL)
4147 bool do_default
4148 = (TREE_STATIC (decl)
4149 /* Even if pedantic, an external linkage array
4150 may have incomplete type at first. */
4151 ? pedantic && !TREE_PUBLIC (decl)
4152 : !DECL_EXTERNAL (decl));
4153 int failure
4154 = complete_array_type (&TREE_TYPE (decl), DECL_INITIAL (decl),
4155 do_default);
4157 /* Get the completed type made by complete_array_type. */
4158 type = TREE_TYPE (decl);
4160 switch (failure)
4162 case 1:
4163 error ("initializer fails to determine size of %q+D", decl);
4164 break;
4166 case 2:
4167 if (do_default)
4168 error ("array size missing in %q+D", decl);
4169 /* If a `static' var's size isn't known,
4170 make it extern as well as static, so it does not get
4171 allocated.
4172 If it is not `static', then do not mark extern;
4173 finish_incomplete_decl will give it a default size
4174 and it will get allocated. */
4175 else if (!pedantic && TREE_STATIC (decl) && !TREE_PUBLIC (decl))
4176 DECL_EXTERNAL (decl) = 1;
4177 break;
4179 case 3:
4180 error ("zero or negative size array %q+D", decl);
4181 break;
4183 case 0:
4184 /* For global variables, update the copy of the type that
4185 exists in the binding. */
4186 if (TREE_PUBLIC (decl))
4188 struct c_binding *b_ext = I_SYMBOL_BINDING (DECL_NAME (decl));
4189 while (b_ext && !B_IN_EXTERNAL_SCOPE (b_ext))
4190 b_ext = b_ext->shadowed;
4191 if (b_ext)
4193 if (b_ext->u.type)
4194 b_ext->u.type = composite_type (b_ext->u.type, type);
4195 else
4196 b_ext->u.type = type;
4199 break;
4201 default:
4202 gcc_unreachable ();
4205 if (DECL_INITIAL (decl))
4206 TREE_TYPE (DECL_INITIAL (decl)) = type;
4208 layout_decl (decl, 0);
4211 if (TREE_CODE (decl) == VAR_DECL)
4213 if (init && TREE_CODE (init) == CONSTRUCTOR)
4214 add_flexible_array_elts_to_size (decl, init);
4216 if (DECL_SIZE (decl) == 0 && TREE_TYPE (decl) != error_mark_node
4217 && COMPLETE_TYPE_P (TREE_TYPE (decl)))
4218 layout_decl (decl, 0);
4220 if (DECL_SIZE (decl) == 0
4221 /* Don't give an error if we already gave one earlier. */
4222 && TREE_TYPE (decl) != error_mark_node
4223 && (TREE_STATIC (decl)
4224 /* A static variable with an incomplete type
4225 is an error if it is initialized.
4226 Also if it is not file scope.
4227 Otherwise, let it through, but if it is not `extern'
4228 then it may cause an error message later. */
4229 ? (DECL_INITIAL (decl) != 0
4230 || !DECL_FILE_SCOPE_P (decl))
4231 /* An automatic variable with an incomplete type
4232 is an error. */
4233 : !DECL_EXTERNAL (decl)))
4235 error ("storage size of %q+D isn%'t known", decl);
4236 TREE_TYPE (decl) = error_mark_node;
4239 if ((DECL_EXTERNAL (decl) || TREE_STATIC (decl))
4240 && DECL_SIZE (decl) != 0)
4242 if (TREE_CODE (DECL_SIZE (decl)) == INTEGER_CST)
4243 constant_expression_warning (DECL_SIZE (decl));
4244 else
4246 error ("storage size of %q+D isn%'t constant", decl);
4247 TREE_TYPE (decl) = error_mark_node;
4251 if (TREE_USED (type))
4252 TREE_USED (decl) = 1;
4255 /* If this is a function and an assembler name is specified, reset DECL_RTL
4256 so we can give it its new name. Also, update built_in_decls if it
4257 was a normal built-in. */
4258 if (TREE_CODE (decl) == FUNCTION_DECL && asmspec)
4260 if (DECL_BUILT_IN_CLASS (decl) == BUILT_IN_NORMAL)
4261 set_builtin_user_assembler_name (decl, asmspec);
4262 set_user_assembler_name (decl, asmspec);
4265 /* If #pragma weak was used, mark the decl weak now. */
4266 maybe_apply_pragma_weak (decl);
4268 /* Output the assembler code and/or RTL code for variables and functions,
4269 unless the type is an undefined structure or union.
4270 If not, it will get done when the type is completed. */
4272 if (TREE_CODE (decl) == VAR_DECL || TREE_CODE (decl) == FUNCTION_DECL)
4274 /* Determine the ELF visibility. */
4275 if (TREE_PUBLIC (decl))
4276 c_determine_visibility (decl);
4278 /* This is a no-op in c-lang.c or something real in objc-act.c. */
4279 if (c_dialect_objc ())
4280 objc_check_decl (decl);
4282 if (asmspec)
4284 /* If this is not a static variable, issue a warning.
4285 It doesn't make any sense to give an ASMSPEC for an
4286 ordinary, non-register local variable. Historically,
4287 GCC has accepted -- but ignored -- the ASMSPEC in
4288 this case. */
4289 if (!DECL_FILE_SCOPE_P (decl)
4290 && TREE_CODE (decl) == VAR_DECL
4291 && !C_DECL_REGISTER (decl)
4292 && !TREE_STATIC (decl))
4293 warning (0, "ignoring asm-specifier for non-static local "
4294 "variable %q+D", decl);
4295 else
4296 set_user_assembler_name (decl, asmspec);
4299 if (DECL_FILE_SCOPE_P (decl))
4301 if (DECL_INITIAL (decl) == NULL_TREE
4302 || DECL_INITIAL (decl) == error_mark_node)
4303 /* Don't output anything
4304 when a tentative file-scope definition is seen.
4305 But at end of compilation, do output code for them. */
4306 DECL_DEFER_OUTPUT (decl) = 1;
4307 rest_of_decl_compilation (decl, true, 0);
4309 else
4311 /* In conjunction with an ASMSPEC, the `register'
4312 keyword indicates that we should place the variable
4313 in a particular register. */
4314 if (asmspec && C_DECL_REGISTER (decl))
4316 DECL_HARD_REGISTER (decl) = 1;
4317 /* This cannot be done for a structure with volatile
4318 fields, on which DECL_REGISTER will have been
4319 reset. */
4320 if (!DECL_REGISTER (decl))
4321 error ("cannot put object with volatile field into register");
4324 if (TREE_CODE (decl) != FUNCTION_DECL)
4326 /* If we're building a variable sized type, and we might be
4327 reachable other than via the top of the current binding
4328 level, then create a new BIND_EXPR so that we deallocate
4329 the object at the right time. */
4330 /* Note that DECL_SIZE can be null due to errors. */
4331 if (DECL_SIZE (decl)
4332 && !TREE_CONSTANT (DECL_SIZE (decl))
4333 && STATEMENT_LIST_HAS_LABEL (cur_stmt_list))
4335 tree bind;
4336 bind = build3 (BIND_EXPR, void_type_node, NULL, NULL, NULL);
4337 TREE_SIDE_EFFECTS (bind) = 1;
4338 add_stmt (bind);
4339 BIND_EXPR_BODY (bind) = push_stmt_list ();
4341 add_stmt (build_stmt (DECL_SOURCE_LOCATION (decl),
4342 DECL_EXPR, decl));
4347 if (!DECL_FILE_SCOPE_P (decl))
4349 /* Recompute the RTL of a local array now
4350 if it used to be an incomplete type. */
4351 if (was_incomplete
4352 && !TREE_STATIC (decl) && !DECL_EXTERNAL (decl))
4354 /* If we used it already as memory, it must stay in memory. */
4355 TREE_ADDRESSABLE (decl) = TREE_USED (decl);
4356 /* If it's still incomplete now, no init will save it. */
4357 if (DECL_SIZE (decl) == 0)
4358 DECL_INITIAL (decl) = 0;
4363 if (TREE_CODE (decl) == TYPE_DECL)
4365 if (!DECL_FILE_SCOPE_P (decl)
4366 && variably_modified_type_p (TREE_TYPE (decl), NULL_TREE))
4367 add_stmt (build_stmt (DECL_SOURCE_LOCATION (decl), DECL_EXPR, decl));
4369 rest_of_decl_compilation (decl, DECL_FILE_SCOPE_P (decl), 0);
4372 /* At the end of a declaration, throw away any variable type sizes
4373 of types defined inside that declaration. There is no use
4374 computing them in the following function definition. */
4375 if (current_scope == file_scope)
4376 get_pending_sizes ();
4378 /* Install a cleanup (aka destructor) if one was given. */
4379 if (TREE_CODE (decl) == VAR_DECL && !TREE_STATIC (decl))
4381 tree attr = lookup_attribute ("cleanup", DECL_ATTRIBUTES (decl));
4382 if (attr)
4384 tree cleanup_id = TREE_VALUE (TREE_VALUE (attr));
4385 tree cleanup_decl = lookup_name (cleanup_id);
4386 tree cleanup;
4387 VEC(tree,gc) *vec;
4389 /* Build "cleanup(&decl)" for the destructor. */
4390 cleanup = build_unary_op (input_location, ADDR_EXPR, decl, 0);
4391 vec = VEC_alloc (tree, gc, 1);
4392 VEC_quick_push (tree, vec, cleanup);
4393 cleanup = build_function_call_vec (DECL_SOURCE_LOCATION (decl),
4394 cleanup_decl, vec, NULL);
4395 VEC_free (tree, gc, vec);
4397 /* Don't warn about decl unused; the cleanup uses it. */
4398 TREE_USED (decl) = 1;
4399 TREE_USED (cleanup_decl) = 1;
4401 push_cleanup (decl, cleanup, false);
4405 if (warn_cxx_compat
4406 && TREE_CODE (decl) == VAR_DECL
4407 && TREE_READONLY (decl)
4408 && !DECL_EXTERNAL (decl)
4409 && DECL_INITIAL (decl) == NULL_TREE)
4410 warning_at (DECL_SOURCE_LOCATION (decl), OPT_Wc___compat,
4411 "uninitialized const %qD is invalid in C++", decl);
4414 /* Given a parsed parameter declaration, decode it into a PARM_DECL. */
4416 tree
4417 grokparm (const struct c_parm *parm)
4419 tree attrs = parm->attrs;
4420 tree decl = grokdeclarator (parm->declarator, parm->specs, PARM, false,
4421 NULL, &attrs, NULL, NULL, DEPRECATED_NORMAL);
4423 decl_attributes (&decl, attrs, 0);
4425 return decl;
4428 /* Given a parsed parameter declaration, decode it into a PARM_DECL
4429 and push that on the current scope. */
4431 void
4432 push_parm_decl (const struct c_parm *parm)
4434 tree attrs = parm->attrs;
4435 tree decl;
4437 decl = grokdeclarator (parm->declarator, parm->specs, PARM, false, NULL,
4438 &attrs, NULL, NULL, DEPRECATED_NORMAL);
4439 decl_attributes (&decl, attrs, 0);
4441 decl = pushdecl (decl);
4443 finish_decl (decl, input_location, NULL_TREE, NULL_TREE, NULL_TREE);
4446 /* Mark all the parameter declarations to date as forward decls.
4447 Also diagnose use of this extension. */
4449 void
4450 mark_forward_parm_decls (void)
4452 struct c_binding *b;
4454 if (pedantic && !current_scope->warned_forward_parm_decls)
4456 pedwarn (input_location, OPT_pedantic,
4457 "ISO C forbids forward parameter declarations");
4458 current_scope->warned_forward_parm_decls = true;
4461 for (b = current_scope->bindings; b; b = b->prev)
4462 if (TREE_CODE (b->decl) == PARM_DECL)
4463 TREE_ASM_WRITTEN (b->decl) = 1;
4466 /* Build a COMPOUND_LITERAL_EXPR. TYPE is the type given in the compound
4467 literal, which may be an incomplete array type completed by the
4468 initializer; INIT is a CONSTRUCTOR at LOC that initializes the compound
4469 literal. NON_CONST is true if the initializers contain something
4470 that cannot occur in a constant expression. */
4472 tree
4473 build_compound_literal (location_t loc, tree type, tree init, bool non_const)
4475 /* We do not use start_decl here because we have a type, not a declarator;
4476 and do not use finish_decl because the decl should be stored inside
4477 the COMPOUND_LITERAL_EXPR rather than added elsewhere as a DECL_EXPR. */
4478 tree decl;
4479 tree complit;
4480 tree stmt;
4482 if (type == error_mark_node
4483 || init == error_mark_node)
4484 return error_mark_node;
4486 decl = build_decl (loc, VAR_DECL, NULL_TREE, type);
4487 DECL_EXTERNAL (decl) = 0;
4488 TREE_PUBLIC (decl) = 0;
4489 TREE_STATIC (decl) = (current_scope == file_scope);
4490 DECL_CONTEXT (decl) = current_function_decl;
4491 TREE_USED (decl) = 1;
4492 TREE_TYPE (decl) = type;
4493 TREE_READONLY (decl) = TYPE_READONLY (type);
4494 store_init_value (loc, decl, init, NULL_TREE);
4496 if (TREE_CODE (type) == ARRAY_TYPE && !COMPLETE_TYPE_P (type))
4498 int failure = complete_array_type (&TREE_TYPE (decl),
4499 DECL_INITIAL (decl), true);
4500 gcc_assert (!failure);
4502 type = TREE_TYPE (decl);
4503 TREE_TYPE (DECL_INITIAL (decl)) = type;
4506 if (type == error_mark_node || !COMPLETE_TYPE_P (type))
4507 return error_mark_node;
4509 stmt = build_stmt (DECL_SOURCE_LOCATION (decl), DECL_EXPR, decl);
4510 complit = build1 (COMPOUND_LITERAL_EXPR, type, stmt);
4511 TREE_SIDE_EFFECTS (complit) = 1;
4513 layout_decl (decl, 0);
4515 if (TREE_STATIC (decl))
4517 /* This decl needs a name for the assembler output. */
4518 set_compound_literal_name (decl);
4519 DECL_DEFER_OUTPUT (decl) = 1;
4520 DECL_COMDAT (decl) = 1;
4521 DECL_ARTIFICIAL (decl) = 1;
4522 DECL_IGNORED_P (decl) = 1;
4523 pushdecl (decl);
4524 rest_of_decl_compilation (decl, 1, 0);
4527 if (non_const)
4529 complit = build2 (C_MAYBE_CONST_EXPR, type, NULL, complit);
4530 C_MAYBE_CONST_EXPR_NON_CONST (complit) = 1;
4533 return complit;
4536 /* Check the type of a compound literal. Here we just check that it
4537 is valid for C++. */
4539 void
4540 check_compound_literal_type (location_t loc, struct c_type_name *type_name)
4542 if (warn_cxx_compat && type_name->specs->tag_defined_p)
4543 warning_at (loc, OPT_Wc___compat,
4544 "defining a type in a compound literal is invalid in C++");
4547 /* Determine whether TYPE is a structure with a flexible array member,
4548 or a union containing such a structure (possibly recursively). */
4550 static bool
4551 flexible_array_type_p (tree type)
4553 tree x;
4554 switch (TREE_CODE (type))
4556 case RECORD_TYPE:
4557 x = TYPE_FIELDS (type);
4558 if (x == NULL_TREE)
4559 return false;
4560 while (TREE_CHAIN (x) != NULL_TREE)
4561 x = TREE_CHAIN (x);
4562 if (TREE_CODE (TREE_TYPE (x)) == ARRAY_TYPE
4563 && TYPE_SIZE (TREE_TYPE (x)) == NULL_TREE
4564 && TYPE_DOMAIN (TREE_TYPE (x)) != NULL_TREE
4565 && TYPE_MAX_VALUE (TYPE_DOMAIN (TREE_TYPE (x))) == NULL_TREE)
4566 return true;
4567 return false;
4568 case UNION_TYPE:
4569 for (x = TYPE_FIELDS (type); x != NULL_TREE; x = TREE_CHAIN (x))
4571 if (flexible_array_type_p (TREE_TYPE (x)))
4572 return true;
4574 return false;
4575 default:
4576 return false;
4580 /* Performs sanity checks on the TYPE and WIDTH of the bit-field NAME,
4581 replacing with appropriate values if they are invalid. */
4582 static void
4583 check_bitfield_type_and_width (tree *type, tree *width, tree orig_name)
4585 tree type_mv;
4586 unsigned int max_width;
4587 unsigned HOST_WIDE_INT w;
4588 const char *name = (orig_name
4589 ? identifier_to_locale (IDENTIFIER_POINTER (orig_name))
4590 : _("<anonymous>"));
4592 /* Detect and ignore out of range field width and process valid
4593 field widths. */
4594 if (!INTEGRAL_TYPE_P (TREE_TYPE (*width)))
4596 error ("bit-field %qs width not an integer constant", name);
4597 *width = integer_one_node;
4599 else
4601 if (TREE_CODE (*width) != INTEGER_CST)
4603 *width = c_fully_fold (*width, false, NULL);
4604 if (TREE_CODE (*width) == INTEGER_CST)
4605 pedwarn (input_location, OPT_pedantic,
4606 "bit-field %qs width not an integer constant expression",
4607 name);
4609 if (TREE_CODE (*width) != INTEGER_CST)
4611 error ("bit-field %qs width not an integer constant", name);
4612 *width = integer_one_node;
4614 constant_expression_warning (*width);
4615 if (tree_int_cst_sgn (*width) < 0)
4617 error ("negative width in bit-field %qs", name);
4618 *width = integer_one_node;
4620 else if (integer_zerop (*width) && orig_name)
4622 error ("zero width for bit-field %qs", name);
4623 *width = integer_one_node;
4627 /* Detect invalid bit-field type. */
4628 if (TREE_CODE (*type) != INTEGER_TYPE
4629 && TREE_CODE (*type) != BOOLEAN_TYPE
4630 && TREE_CODE (*type) != ENUMERAL_TYPE)
4632 error ("bit-field %qs has invalid type", name);
4633 *type = unsigned_type_node;
4636 type_mv = TYPE_MAIN_VARIANT (*type);
4637 if (!in_system_header
4638 && type_mv != integer_type_node
4639 && type_mv != unsigned_type_node
4640 && type_mv != boolean_type_node)
4641 pedwarn (input_location, OPT_pedantic,
4642 "type of bit-field %qs is a GCC extension", name);
4644 max_width = TYPE_PRECISION (*type);
4646 if (0 < compare_tree_int (*width, max_width))
4648 error ("width of %qs exceeds its type", name);
4649 w = max_width;
4650 *width = build_int_cst (NULL_TREE, w);
4652 else
4653 w = tree_low_cst (*width, 1);
4655 if (TREE_CODE (*type) == ENUMERAL_TYPE)
4657 struct lang_type *lt = TYPE_LANG_SPECIFIC (*type);
4658 if (!lt
4659 || w < tree_int_cst_min_precision (lt->enum_min, TYPE_UNSIGNED (*type))
4660 || w < tree_int_cst_min_precision (lt->enum_max, TYPE_UNSIGNED (*type)))
4661 warning (0, "%qs is narrower than values of its type", name);
4667 /* Print warning about variable length array if necessary. */
4669 static void
4670 warn_variable_length_array (tree name, tree size)
4672 int const_size = TREE_CONSTANT (size);
4674 if (!flag_isoc99 && pedantic && warn_vla != 0)
4676 if (const_size)
4678 if (name)
4679 pedwarn (input_location, OPT_Wvla,
4680 "ISO C90 forbids array %qE whose size "
4681 "can%'t be evaluated",
4682 name);
4683 else
4684 pedwarn (input_location, OPT_Wvla, "ISO C90 forbids array whose size "
4685 "can%'t be evaluated");
4687 else
4689 if (name)
4690 pedwarn (input_location, OPT_Wvla,
4691 "ISO C90 forbids variable length array %qE",
4692 name);
4693 else
4694 pedwarn (input_location, OPT_Wvla, "ISO C90 forbids variable length array");
4697 else if (warn_vla > 0)
4699 if (const_size)
4701 if (name)
4702 warning (OPT_Wvla,
4703 "the size of array %qE can"
4704 "%'t be evaluated", name);
4705 else
4706 warning (OPT_Wvla,
4707 "the size of array can %'t be evaluated");
4709 else
4711 if (name)
4712 warning (OPT_Wvla,
4713 "variable length array %qE is used",
4714 name);
4715 else
4716 warning (OPT_Wvla,
4717 "variable length array is used");
4722 /* Given a size SIZE that may not be a constant, return a SAVE_EXPR to
4723 serve as the actual size-expression for a type or decl. This is
4724 like variable_size in stor-layout.c, but we make global_bindings_p
4725 return negative to avoid calls to that function from outside the
4726 front end resulting in errors at file scope, then call this version
4727 instead from front-end code. */
4729 static tree
4730 c_variable_size (tree size)
4732 tree save;
4734 if (TREE_CONSTANT (size))
4735 return size;
4737 size = save_expr (size);
4739 save = skip_simple_arithmetic (size);
4741 if (cfun && cfun->dont_save_pending_sizes_p)
4742 return size;
4744 if (!global_bindings_p ())
4745 put_pending_size (save);
4747 return size;
4750 /* Given declspecs and a declarator,
4751 determine the name and type of the object declared
4752 and construct a ..._DECL node for it.
4753 (In one case we can return a ..._TYPE node instead.
4754 For invalid input we sometimes return 0.)
4756 DECLSPECS is a c_declspecs structure for the declaration specifiers.
4758 DECL_CONTEXT says which syntactic context this declaration is in:
4759 NORMAL for most contexts. Make a VAR_DECL or FUNCTION_DECL or TYPE_DECL.
4760 FUNCDEF for a function definition. Like NORMAL but a few different
4761 error messages in each case. Return value may be zero meaning
4762 this definition is too screwy to try to parse.
4763 PARM for a parameter declaration (either within a function prototype
4764 or before a function body). Make a PARM_DECL, or return void_type_node.
4765 TYPENAME if for a typename (in a cast or sizeof).
4766 Don't make a DECL node; just return the ..._TYPE node.
4767 FIELD for a struct or union field; make a FIELD_DECL.
4768 INITIALIZED is true if the decl has an initializer.
4769 WIDTH is non-NULL for bit-fields, and is a pointer to an INTEGER_CST node
4770 representing the width of the bit-field.
4771 DECL_ATTRS points to the list of attributes that should be added to this
4772 decl. Any nested attributes that belong on the decl itself will be
4773 added to this list.
4774 If EXPR is not NULL, any expressions that need to be evaluated as
4775 part of evaluating variably modified types will be stored in *EXPR.
4776 If EXPR_CONST_OPERANDS is not NULL, *EXPR_CONST_OPERANDS will be
4777 set to indicate whether operands in *EXPR can be used in constant
4778 expressions.
4779 DEPRECATED_STATE is a deprecated_states value indicating whether
4780 deprecation warnings should be suppressed.
4782 In the TYPENAME case, DECLARATOR is really an absolute declarator.
4783 It may also be so in the PARM case, for a prototype where the
4784 argument type is specified but not the name.
4786 This function is where the complicated C meanings of `static'
4787 and `extern' are interpreted. */
4789 static tree
4790 grokdeclarator (const struct c_declarator *declarator,
4791 struct c_declspecs *declspecs,
4792 enum decl_context decl_context, bool initialized, tree *width,
4793 tree *decl_attrs, tree *expr, bool *expr_const_operands,
4794 enum deprecated_states deprecated_state)
4796 tree type = declspecs->type;
4797 bool threadp = declspecs->thread_p;
4798 enum c_storage_class storage_class = declspecs->storage_class;
4799 int constp;
4800 int restrictp;
4801 int volatilep;
4802 int type_quals = TYPE_UNQUALIFIED;
4803 tree name = NULL_TREE;
4804 bool funcdef_flag = false;
4805 bool funcdef_syntax = false;
4806 bool size_varies = false;
4807 tree decl_attr = declspecs->decl_attr;
4808 int array_ptr_quals = TYPE_UNQUALIFIED;
4809 tree array_ptr_attrs = NULL_TREE;
4810 int array_parm_static = 0;
4811 bool array_parm_vla_unspec_p = false;
4812 tree returned_attrs = NULL_TREE;
4813 bool bitfield = width != NULL;
4814 tree element_type;
4815 struct c_arg_info *arg_info = 0;
4816 addr_space_t as1, as2, address_space;
4817 location_t loc = UNKNOWN_LOCATION;
4818 const char *errmsg;
4819 tree expr_dummy;
4820 bool expr_const_operands_dummy;
4822 if (expr == NULL)
4823 expr = &expr_dummy;
4824 if (expr_const_operands == NULL)
4825 expr_const_operands = &expr_const_operands_dummy;
4827 *expr = declspecs->expr;
4828 *expr_const_operands = declspecs->expr_const_operands;
4830 if (decl_context == FUNCDEF)
4831 funcdef_flag = true, decl_context = NORMAL;
4833 /* Look inside a declarator for the name being declared
4834 and get it as an IDENTIFIER_NODE, for an error message. */
4836 const struct c_declarator *decl = declarator;
4838 while (decl)
4839 switch (decl->kind)
4841 case cdk_array:
4842 loc = decl->id_loc;
4843 /* FALL THRU. */
4845 case cdk_function:
4846 case cdk_pointer:
4847 funcdef_syntax = (decl->kind == cdk_function);
4848 decl = decl->declarator;
4849 break;
4851 case cdk_attrs:
4852 decl = decl->declarator;
4853 break;
4855 case cdk_id:
4856 loc = decl->id_loc;
4857 if (decl->u.id)
4858 name = decl->u.id;
4859 decl = 0;
4860 break;
4862 default:
4863 gcc_unreachable ();
4865 if (name == 0)
4867 gcc_assert (decl_context == PARM
4868 || decl_context == TYPENAME
4869 || (decl_context == FIELD
4870 && declarator->kind == cdk_id));
4871 gcc_assert (!initialized);
4875 /* A function definition's declarator must have the form of
4876 a function declarator. */
4878 if (funcdef_flag && !funcdef_syntax)
4879 return 0;
4881 /* If this looks like a function definition, make it one,
4882 even if it occurs where parms are expected.
4883 Then store_parm_decls will reject it and not use it as a parm. */
4884 if (decl_context == NORMAL && !funcdef_flag && current_scope->parm_flag)
4885 decl_context = PARM;
4887 if (declspecs->deprecated_p && deprecated_state != DEPRECATED_SUPPRESS)
4888 warn_deprecated_use (declspecs->type, declspecs->decl_attr);
4890 if ((decl_context == NORMAL || decl_context == FIELD)
4891 && current_scope == file_scope
4892 && variably_modified_type_p (type, NULL_TREE))
4894 if (name)
4895 error_at (loc, "variably modified %qE at file scope", name);
4896 else
4897 error_at (loc, "variably modified field at file scope");
4898 type = integer_type_node;
4901 size_varies = C_TYPE_VARIABLE_SIZE (type) != 0;
4903 /* Diagnose defaulting to "int". */
4905 if (declspecs->default_int_p && !in_system_header)
4907 /* Issue a warning if this is an ISO C 99 program or if
4908 -Wreturn-type and this is a function, or if -Wimplicit;
4909 prefer the former warning since it is more explicit. */
4910 if ((warn_implicit_int || warn_return_type || flag_isoc99)
4911 && funcdef_flag)
4912 warn_about_return_type = 1;
4913 else
4915 if (name)
4916 pedwarn_c99 (loc, flag_isoc99 ? 0 : OPT_Wimplicit_int,
4917 "type defaults to %<int%> in declaration of %qE",
4918 name);
4919 else
4920 pedwarn_c99 (input_location, flag_isoc99 ? 0 : OPT_Wimplicit_int,
4921 "type defaults to %<int%> in type name");
4925 /* Adjust the type if a bit-field is being declared,
4926 -funsigned-bitfields applied and the type is not explicitly
4927 "signed". */
4928 if (bitfield && !flag_signed_bitfields && !declspecs->explicit_signed_p
4929 && TREE_CODE (type) == INTEGER_TYPE)
4930 type = unsigned_type_for (type);
4932 /* Figure out the type qualifiers for the declaration. There are
4933 two ways a declaration can become qualified. One is something
4934 like `const int i' where the `const' is explicit. Another is
4935 something like `typedef const int CI; CI i' where the type of the
4936 declaration contains the `const'. A third possibility is that
4937 there is a type qualifier on the element type of a typedefed
4938 array type, in which case we should extract that qualifier so
4939 that c_apply_type_quals_to_decl receives the full list of
4940 qualifiers to work with (C90 is not entirely clear about whether
4941 duplicate qualifiers should be diagnosed in this case, but it
4942 seems most appropriate to do so). */
4943 element_type = strip_array_types (type);
4944 constp = declspecs->const_p + TYPE_READONLY (element_type);
4945 restrictp = declspecs->restrict_p + TYPE_RESTRICT (element_type);
4946 volatilep = declspecs->volatile_p + TYPE_VOLATILE (element_type);
4947 as1 = declspecs->address_space;
4948 as2 = TYPE_ADDR_SPACE (element_type);
4949 address_space = ADDR_SPACE_GENERIC_P (as1)? as2 : as1;
4951 if (pedantic && !flag_isoc99)
4953 if (constp > 1)
4954 pedwarn (loc, OPT_pedantic, "duplicate %<const%>");
4955 if (restrictp > 1)
4956 pedwarn (loc, OPT_pedantic, "duplicate %<restrict%>");
4957 if (volatilep > 1)
4958 pedwarn (loc, OPT_pedantic, "duplicate %<volatile%>");
4961 if (!ADDR_SPACE_GENERIC_P (as1) && !ADDR_SPACE_GENERIC_P (as2) && as1 != as2)
4962 error_at (loc, "conflicting named address spaces (%s vs %s)",
4963 c_addr_space_name (as1), c_addr_space_name (as2));
4965 if (!flag_gen_aux_info && (TYPE_QUALS (element_type)))
4966 type = TYPE_MAIN_VARIANT (type);
4967 type_quals = ((constp ? TYPE_QUAL_CONST : 0)
4968 | (restrictp ? TYPE_QUAL_RESTRICT : 0)
4969 | (volatilep ? TYPE_QUAL_VOLATILE : 0)
4970 | ENCODE_QUAL_ADDR_SPACE (address_space));
4972 /* Warn about storage classes that are invalid for certain
4973 kinds of declarations (parameters, typenames, etc.). */
4975 if (funcdef_flag
4976 && (threadp
4977 || storage_class == csc_auto
4978 || storage_class == csc_register
4979 || storage_class == csc_typedef))
4981 if (storage_class == csc_auto)
4982 pedwarn (loc,
4983 (current_scope == file_scope) ? 0 : OPT_pedantic,
4984 "function definition declared %<auto%>");
4985 if (storage_class == csc_register)
4986 error_at (loc, "function definition declared %<register%>");
4987 if (storage_class == csc_typedef)
4988 error_at (loc, "function definition declared %<typedef%>");
4989 if (threadp)
4990 error_at (loc, "function definition declared %<__thread%>");
4991 threadp = false;
4992 if (storage_class == csc_auto
4993 || storage_class == csc_register
4994 || storage_class == csc_typedef)
4995 storage_class = csc_none;
4997 else if (decl_context != NORMAL && (storage_class != csc_none || threadp))
4999 if (decl_context == PARM && storage_class == csc_register)
5001 else
5003 switch (decl_context)
5005 case FIELD:
5006 if (name)
5007 error_at (loc, "storage class specified for structure "
5008 "field %qE", name);
5009 else
5010 error_at (loc, "storage class specified for structure field");
5011 break;
5012 case PARM:
5013 if (name)
5014 error_at (loc, "storage class specified for parameter %qE",
5015 name);
5016 else
5017 error_at (loc, "storage class specified for unnamed parameter");
5018 break;
5019 default:
5020 error_at (loc, "storage class specified for typename");
5021 break;
5023 storage_class = csc_none;
5024 threadp = false;
5027 else if (storage_class == csc_extern
5028 && initialized
5029 && !funcdef_flag)
5031 /* 'extern' with initialization is invalid if not at file scope. */
5032 if (current_scope == file_scope)
5034 /* It is fine to have 'extern const' when compiling at C
5035 and C++ intersection. */
5036 if (!(warn_cxx_compat && constp))
5037 warning_at (loc, 0, "%qE initialized and declared %<extern%>",
5038 name);
5040 else
5041 error_at (loc, "%qE has both %<extern%> and initializer", name);
5043 else if (current_scope == file_scope)
5045 if (storage_class == csc_auto)
5046 error_at (loc, "file-scope declaration of %qE specifies %<auto%>",
5047 name);
5048 if (pedantic && storage_class == csc_register)
5049 pedwarn (input_location, OPT_pedantic,
5050 "file-scope declaration of %qE specifies %<register%>", name);
5052 else
5054 if (storage_class == csc_extern && funcdef_flag)
5055 error_at (loc, "nested function %qE declared %<extern%>", name);
5056 else if (threadp && storage_class == csc_none)
5058 error_at (loc, "function-scope %qE implicitly auto and declared "
5059 "%<__thread%>",
5060 name);
5061 threadp = false;
5065 /* Now figure out the structure of the declarator proper.
5066 Descend through it, creating more complex types, until we reach
5067 the declared identifier (or NULL_TREE, in an absolute declarator).
5068 At each stage we maintain an unqualified version of the type
5069 together with any qualifiers that should be applied to it with
5070 c_build_qualified_type; this way, array types including
5071 multidimensional array types are first built up in unqualified
5072 form and then the qualified form is created with
5073 TYPE_MAIN_VARIANT pointing to the unqualified form. */
5075 while (declarator && declarator->kind != cdk_id)
5077 if (type == error_mark_node)
5079 declarator = declarator->declarator;
5080 continue;
5083 /* Each level of DECLARATOR is either a cdk_array (for ...[..]),
5084 a cdk_pointer (for *...),
5085 a cdk_function (for ...(...)),
5086 a cdk_attrs (for nested attributes),
5087 or a cdk_id (for the name being declared
5088 or the place in an absolute declarator
5089 where the name was omitted).
5090 For the last case, we have just exited the loop.
5092 At this point, TYPE is the type of elements of an array,
5093 or for a function to return, or for a pointer to point to.
5094 After this sequence of ifs, TYPE is the type of the
5095 array or function or pointer, and DECLARATOR has had its
5096 outermost layer removed. */
5098 if (array_ptr_quals != TYPE_UNQUALIFIED
5099 || array_ptr_attrs != NULL_TREE
5100 || array_parm_static)
5102 /* Only the innermost declarator (making a parameter be of
5103 array type which is converted to pointer type)
5104 may have static or type qualifiers. */
5105 error_at (loc, "static or type qualifiers in non-parameter array declarator");
5106 array_ptr_quals = TYPE_UNQUALIFIED;
5107 array_ptr_attrs = NULL_TREE;
5108 array_parm_static = 0;
5111 switch (declarator->kind)
5113 case cdk_attrs:
5115 /* A declarator with embedded attributes. */
5116 tree attrs = declarator->u.attrs;
5117 const struct c_declarator *inner_decl;
5118 int attr_flags = 0;
5119 declarator = declarator->declarator;
5120 inner_decl = declarator;
5121 while (inner_decl->kind == cdk_attrs)
5122 inner_decl = inner_decl->declarator;
5123 if (inner_decl->kind == cdk_id)
5124 attr_flags |= (int) ATTR_FLAG_DECL_NEXT;
5125 else if (inner_decl->kind == cdk_function)
5126 attr_flags |= (int) ATTR_FLAG_FUNCTION_NEXT;
5127 else if (inner_decl->kind == cdk_array)
5128 attr_flags |= (int) ATTR_FLAG_ARRAY_NEXT;
5129 returned_attrs = decl_attributes (&type,
5130 chainon (returned_attrs, attrs),
5131 attr_flags);
5132 break;
5134 case cdk_array:
5136 tree itype = NULL_TREE;
5137 tree size = declarator->u.array.dimen;
5138 /* The index is a signed object `sizetype' bits wide. */
5139 tree index_type = c_common_signed_type (sizetype);
5141 array_ptr_quals = declarator->u.array.quals;
5142 array_ptr_attrs = declarator->u.array.attrs;
5143 array_parm_static = declarator->u.array.static_p;
5144 array_parm_vla_unspec_p = declarator->u.array.vla_unspec_p;
5146 declarator = declarator->declarator;
5148 /* Check for some types that there cannot be arrays of. */
5150 if (VOID_TYPE_P (type))
5152 if (name)
5153 error_at (loc, "declaration of %qE as array of voids", name);
5154 else
5155 error_at (loc, "declaration of type name as array of voids");
5156 type = error_mark_node;
5159 if (TREE_CODE (type) == FUNCTION_TYPE)
5161 if (name)
5162 error_at (loc, "declaration of %qE as array of functions",
5163 name);
5164 else
5165 error_at (loc, "declaration of type name as array of "
5166 "functions");
5167 type = error_mark_node;
5170 if (pedantic && !in_system_header && flexible_array_type_p (type))
5171 pedwarn (loc, OPT_pedantic,
5172 "invalid use of structure with flexible array member");
5174 if (size == error_mark_node)
5175 type = error_mark_node;
5177 if (type == error_mark_node)
5178 continue;
5180 /* If size was specified, set ITYPE to a range-type for
5181 that size. Otherwise, ITYPE remains null. finish_decl
5182 may figure it out from an initial value. */
5184 if (size)
5186 bool size_maybe_const = true;
5187 bool size_int_const = (TREE_CODE (size) == INTEGER_CST
5188 && !TREE_OVERFLOW (size));
5189 bool this_size_varies = false;
5191 /* Strip NON_LVALUE_EXPRs since we aren't using as an
5192 lvalue. */
5193 STRIP_TYPE_NOPS (size);
5195 if (!INTEGRAL_TYPE_P (TREE_TYPE (size)))
5197 if (name)
5198 error_at (loc, "size of array %qE has non-integer type",
5199 name);
5200 else
5201 error_at (loc,
5202 "size of unnamed array has non-integer type");
5203 size = integer_one_node;
5206 size = c_fully_fold (size, false, &size_maybe_const);
5208 if (pedantic && size_maybe_const && integer_zerop (size))
5210 if (name)
5211 pedwarn (loc, OPT_pedantic,
5212 "ISO C forbids zero-size array %qE", name);
5213 else
5214 pedwarn (loc, OPT_pedantic,
5215 "ISO C forbids zero-size array");
5218 if (TREE_CODE (size) == INTEGER_CST && size_maybe_const)
5220 constant_expression_warning (size);
5221 if (tree_int_cst_sgn (size) < 0)
5223 if (name)
5224 error_at (loc, "size of array %qE is negative", name);
5225 else
5226 error_at (loc, "size of unnamed array is negative");
5227 size = integer_one_node;
5229 /* Handle a size folded to an integer constant but
5230 not an integer constant expression. */
5231 if (!size_int_const)
5233 /* If this is a file scope declaration of an
5234 ordinary identifier, this is invalid code;
5235 diagnosing it here and not subsequently
5236 treating the type as variable-length avoids
5237 more confusing diagnostics later. */
5238 if ((decl_context == NORMAL || decl_context == FIELD)
5239 && current_scope == file_scope)
5240 pedwarn (input_location, 0,
5241 "variably modified %qE at file scope",
5242 name);
5243 else
5244 this_size_varies = size_varies = true;
5245 warn_variable_length_array (name, size);
5248 else if ((decl_context == NORMAL || decl_context == FIELD)
5249 && current_scope == file_scope)
5251 error_at (loc, "variably modified %qE at file scope", name);
5252 size = integer_one_node;
5254 else
5256 /* Make sure the array size remains visibly
5257 nonconstant even if it is (eg) a const variable
5258 with known value. */
5259 this_size_varies = size_varies = true;
5260 warn_variable_length_array (name, size);
5263 if (integer_zerop (size) && !this_size_varies)
5265 /* A zero-length array cannot be represented with
5266 an unsigned index type, which is what we'll
5267 get with build_index_type. Create an
5268 open-ended range instead. */
5269 itype = build_range_type (sizetype, size, NULL_TREE);
5271 else
5273 /* Arrange for the SAVE_EXPR on the inside of the
5274 MINUS_EXPR, which allows the -1 to get folded
5275 with the +1 that happens when building TYPE_SIZE. */
5276 if (size_varies)
5277 size = c_variable_size (size);
5278 if (this_size_varies && TREE_CODE (size) == INTEGER_CST)
5279 size = build2 (COMPOUND_EXPR, TREE_TYPE (size),
5280 integer_zero_node, size);
5282 /* Compute the maximum valid index, that is, size
5283 - 1. Do the calculation in index_type, so that
5284 if it is a variable the computations will be
5285 done in the proper mode. */
5286 itype = fold_build2_loc (loc, MINUS_EXPR, index_type,
5287 convert (index_type, size),
5288 convert (index_type,
5289 size_one_node));
5291 /* If that overflowed, the array is too big. ???
5292 While a size of INT_MAX+1 technically shouldn't
5293 cause an overflow (because we subtract 1), the
5294 overflow is recorded during the conversion to
5295 index_type, before the subtraction. Handling
5296 this case seems like an unnecessary
5297 complication. */
5298 if (TREE_CODE (itype) == INTEGER_CST
5299 && TREE_OVERFLOW (itype))
5301 if (name)
5302 error_at (loc, "size of array %qE is too large",
5303 name);
5304 else
5305 error_at (loc, "size of unnamed array is too large");
5306 type = error_mark_node;
5307 continue;
5310 itype = build_index_type (itype);
5312 if (this_size_varies)
5314 if (*expr)
5315 *expr = build2 (COMPOUND_EXPR, TREE_TYPE (size),
5316 *expr, size);
5317 else
5318 *expr = size;
5319 *expr_const_operands &= size_maybe_const;
5322 else if (decl_context == FIELD)
5324 bool flexible_array_member = false;
5325 if (array_parm_vla_unspec_p)
5326 /* Field names can in fact have function prototype
5327 scope so [*] is disallowed here through making
5328 the field variably modified, not through being
5329 something other than a declaration with function
5330 prototype scope. */
5331 size_varies = true;
5332 else
5334 const struct c_declarator *t = declarator;
5335 while (t->kind == cdk_attrs)
5336 t = t->declarator;
5337 flexible_array_member = (t->kind == cdk_id);
5339 if (flexible_array_member
5340 && pedantic && !flag_isoc99 && !in_system_header)
5341 pedwarn (loc, OPT_pedantic,
5342 "ISO C90 does not support flexible array members");
5344 /* ISO C99 Flexible array members are effectively
5345 identical to GCC's zero-length array extension. */
5346 if (flexible_array_member || array_parm_vla_unspec_p)
5347 itype = build_range_type (sizetype, size_zero_node,
5348 NULL_TREE);
5350 else if (decl_context == PARM)
5352 if (array_parm_vla_unspec_p)
5354 itype = build_range_type (sizetype, size_zero_node, NULL_TREE);
5355 size_varies = true;
5358 else if (decl_context == TYPENAME)
5360 if (array_parm_vla_unspec_p)
5362 /* C99 6.7.5.2p4 */
5363 warning (0, "%<[*]%> not in a declaration");
5364 /* We use this to avoid messing up with incomplete
5365 array types of the same type, that would
5366 otherwise be modified below. */
5367 itype = build_range_type (sizetype, size_zero_node,
5368 NULL_TREE);
5369 size_varies = true;
5373 /* Complain about arrays of incomplete types. */
5374 if (!COMPLETE_TYPE_P (type))
5376 error_at (loc, "array type has incomplete element type");
5377 type = error_mark_node;
5379 else
5380 /* When itype is NULL, a shared incomplete array type is
5381 returned for all array of a given type. Elsewhere we
5382 make sure we don't complete that type before copying
5383 it, but here we want to make sure we don't ever
5384 modify the shared type, so we gcc_assert (itype)
5385 below. */
5387 addr_space_t as = DECODE_QUAL_ADDR_SPACE (type_quals);
5388 if (!ADDR_SPACE_GENERIC_P (as) && as != TYPE_ADDR_SPACE (type))
5389 type = build_qualified_type (type,
5390 ENCODE_QUAL_ADDR_SPACE (as));
5392 type = build_array_type (type, itype);
5395 if (type != error_mark_node)
5397 if (size_varies)
5399 /* It is ok to modify type here even if itype is
5400 NULL: if size_varies, we're in a
5401 multi-dimensional array and the inner type has
5402 variable size, so the enclosing shared array type
5403 must too. */
5404 if (size && TREE_CODE (size) == INTEGER_CST)
5405 type
5406 = build_distinct_type_copy (TYPE_MAIN_VARIANT (type));
5407 C_TYPE_VARIABLE_SIZE (type) = 1;
5410 /* The GCC extension for zero-length arrays differs from
5411 ISO flexible array members in that sizeof yields
5412 zero. */
5413 if (size && integer_zerop (size))
5415 gcc_assert (itype);
5416 TYPE_SIZE (type) = bitsize_zero_node;
5417 TYPE_SIZE_UNIT (type) = size_zero_node;
5418 SET_TYPE_STRUCTURAL_EQUALITY (type);
5420 if (array_parm_vla_unspec_p)
5422 gcc_assert (itype);
5423 /* The type is complete. C99 6.7.5.2p4 */
5424 TYPE_SIZE (type) = bitsize_zero_node;
5425 TYPE_SIZE_UNIT (type) = size_zero_node;
5426 SET_TYPE_STRUCTURAL_EQUALITY (type);
5430 if (decl_context != PARM
5431 && (array_ptr_quals != TYPE_UNQUALIFIED
5432 || array_ptr_attrs != NULL_TREE
5433 || array_parm_static))
5435 error_at (loc, "static or type qualifiers in non-parameter array declarator");
5436 array_ptr_quals = TYPE_UNQUALIFIED;
5437 array_ptr_attrs = NULL_TREE;
5438 array_parm_static = 0;
5440 break;
5442 case cdk_function:
5444 /* Say it's a definition only for the declarator closest
5445 to the identifier, apart possibly from some
5446 attributes. */
5447 bool really_funcdef = false;
5448 tree arg_types;
5449 if (funcdef_flag)
5451 const struct c_declarator *t = declarator->declarator;
5452 while (t->kind == cdk_attrs)
5453 t = t->declarator;
5454 really_funcdef = (t->kind == cdk_id);
5457 /* Declaring a function type. Make sure we have a valid
5458 type for the function to return. */
5459 if (type == error_mark_node)
5460 continue;
5462 size_varies = false;
5464 /* Warn about some types functions can't return. */
5465 if (TREE_CODE (type) == FUNCTION_TYPE)
5467 if (name)
5468 error_at (loc, "%qE declared as function returning a "
5469 "function", name);
5470 else
5471 error_at (loc, "type name declared as function "
5472 "returning a function");
5473 type = integer_type_node;
5475 if (TREE_CODE (type) == ARRAY_TYPE)
5477 if (name)
5478 error_at (loc, "%qE declared as function returning an array",
5479 name);
5480 else
5481 error_at (loc, "type name declared as function returning "
5482 "an array");
5483 type = integer_type_node;
5485 errmsg = targetm.invalid_return_type (type);
5486 if (errmsg)
5488 error (errmsg);
5489 type = integer_type_node;
5492 /* Construct the function type and go to the next
5493 inner layer of declarator. */
5494 arg_info = declarator->u.arg_info;
5495 arg_types = grokparms (arg_info, really_funcdef);
5496 if (really_funcdef)
5497 put_pending_sizes (arg_info->pending_sizes);
5499 /* Type qualifiers before the return type of the function
5500 qualify the return type, not the function type. */
5501 if (type_quals)
5503 /* Type qualifiers on a function return type are
5504 normally permitted by the standard but have no
5505 effect, so give a warning at -Wreturn-type.
5506 Qualifiers on a void return type are banned on
5507 function definitions in ISO C; GCC used to used
5508 them for noreturn functions. */
5509 if (VOID_TYPE_P (type) && really_funcdef)
5510 pedwarn (loc, 0,
5511 "function definition has qualified void return type");
5512 else
5513 warning_at (loc, OPT_Wignored_qualifiers,
5514 "type qualifiers ignored on function return type");
5516 type = c_build_qualified_type (type, type_quals);
5518 type_quals = TYPE_UNQUALIFIED;
5520 type = build_function_type (type, arg_types);
5521 declarator = declarator->declarator;
5523 /* Set the TYPE_CONTEXTs for each tagged type which is local to
5524 the formal parameter list of this FUNCTION_TYPE to point to
5525 the FUNCTION_TYPE node itself. */
5527 tree link;
5529 for (link = arg_info->tags;
5530 link;
5531 link = TREE_CHAIN (link))
5532 TYPE_CONTEXT (TREE_VALUE (link)) = type;
5534 break;
5536 case cdk_pointer:
5538 /* Merge any constancy or volatility into the target type
5539 for the pointer. */
5541 if (pedantic && TREE_CODE (type) == FUNCTION_TYPE
5542 && type_quals)
5543 pedwarn (loc, OPT_pedantic,
5544 "ISO C forbids qualified function types");
5545 if (type_quals)
5546 type = c_build_qualified_type (type, type_quals);
5547 size_varies = false;
5549 /* When the pointed-to type involves components of variable size,
5550 care must be taken to ensure that the size evaluation code is
5551 emitted early enough to dominate all the possible later uses
5552 and late enough for the variables on which it depends to have
5553 been assigned.
5555 This is expected to happen automatically when the pointed-to
5556 type has a name/declaration of it's own, but special attention
5557 is required if the type is anonymous.
5559 We handle the NORMAL and FIELD contexts here by attaching an
5560 artificial TYPE_DECL to such pointed-to type. This forces the
5561 sizes evaluation at a safe point and ensures it is not deferred
5562 until e.g. within a deeper conditional context.
5564 We expect nothing to be needed here for PARM or TYPENAME.
5565 Pushing a TYPE_DECL at this point for TYPENAME would actually
5566 be incorrect, as we might be in the middle of an expression
5567 with side effects on the pointed-to type size "arguments" prior
5568 to the pointer declaration point and the fake TYPE_DECL in the
5569 enclosing context would force the size evaluation prior to the
5570 side effects. */
5572 if (!TYPE_NAME (type)
5573 && (decl_context == NORMAL || decl_context == FIELD)
5574 && variably_modified_type_p (type, NULL_TREE))
5576 tree decl = build_decl (loc, TYPE_DECL, NULL_TREE, type);
5577 DECL_ARTIFICIAL (decl) = 1;
5578 pushdecl (decl);
5579 finish_decl (decl, loc, NULL_TREE, NULL_TREE, NULL_TREE);
5580 TYPE_NAME (type) = decl;
5583 type = build_pointer_type (type);
5585 /* Process type qualifiers (such as const or volatile)
5586 that were given inside the `*'. */
5587 type_quals = declarator->u.pointer_quals;
5589 declarator = declarator->declarator;
5590 break;
5592 default:
5593 gcc_unreachable ();
5596 *decl_attrs = chainon (returned_attrs, *decl_attrs);
5598 /* Now TYPE has the actual type, apart from any qualifiers in
5599 TYPE_QUALS. */
5601 /* Warn about address space used for things other than static memory or
5602 pointers. */
5603 address_space = DECODE_QUAL_ADDR_SPACE (type_quals);
5604 if (!ADDR_SPACE_GENERIC_P (address_space))
5606 if (decl_context == NORMAL)
5608 switch (storage_class)
5610 case csc_auto:
5611 error ("%qs combined with %<auto%> qualifier for %qE",
5612 c_addr_space_name (address_space), name);
5613 break;
5614 case csc_register:
5615 error ("%qs combined with %<register%> qualifier for %qE",
5616 c_addr_space_name (address_space), name);
5617 break;
5618 case csc_none:
5619 if (current_function_scope)
5621 error ("%qs specified for auto variable %qE",
5622 c_addr_space_name (address_space), name);
5623 break;
5625 break;
5626 case csc_static:
5627 case csc_extern:
5628 case csc_typedef:
5629 break;
5630 default:
5631 gcc_unreachable ();
5634 else if (decl_context == PARM && TREE_CODE (type) != ARRAY_TYPE)
5636 if (name)
5637 error ("%qs specified for parameter %qE",
5638 c_addr_space_name (address_space), name);
5639 else
5640 error ("%qs specified for unnamed parameter",
5641 c_addr_space_name (address_space));
5643 else if (decl_context == FIELD)
5645 if (name)
5646 error ("%qs specified for structure field %qE",
5647 c_addr_space_name (address_space), name);
5648 else
5649 error ("%qs specified for structure field",
5650 c_addr_space_name (address_space));
5654 /* Check the type and width of a bit-field. */
5655 if (bitfield)
5656 check_bitfield_type_and_width (&type, width, name);
5658 /* Did array size calculations overflow? */
5660 if (TREE_CODE (type) == ARRAY_TYPE
5661 && COMPLETE_TYPE_P (type)
5662 && TREE_CODE (TYPE_SIZE_UNIT (type)) == INTEGER_CST
5663 && TREE_OVERFLOW (TYPE_SIZE_UNIT (type)))
5665 if (name)
5666 error_at (loc, "size of array %qE is too large", name);
5667 else
5668 error_at (loc, "size of unnamed array is too large");
5669 /* If we proceed with the array type as it is, we'll eventually
5670 crash in tree_low_cst(). */
5671 type = error_mark_node;
5674 /* If this is declaring a typedef name, return a TYPE_DECL. */
5676 if (storage_class == csc_typedef)
5678 tree decl;
5679 if (pedantic && TREE_CODE (type) == FUNCTION_TYPE
5680 && type_quals)
5681 pedwarn (loc, OPT_pedantic,
5682 "ISO C forbids qualified function types");
5683 if (type_quals)
5684 type = c_build_qualified_type (type, type_quals);
5685 decl = build_decl (declarator->id_loc,
5686 TYPE_DECL, declarator->u.id, type);
5687 if (declspecs->explicit_signed_p)
5688 C_TYPEDEF_EXPLICITLY_SIGNED (decl) = 1;
5689 if (declspecs->inline_p)
5690 pedwarn (loc, 0,"typedef %q+D declared %<inline%>", decl);
5692 if (warn_cxx_compat && declarator->u.id != NULL_TREE)
5694 struct c_binding *b = I_TAG_BINDING (declarator->u.id);
5696 if (b != NULL
5697 && b->decl != NULL_TREE
5698 && (B_IN_CURRENT_SCOPE (b)
5699 || (current_scope == file_scope && B_IN_EXTERNAL_SCOPE (b)))
5700 && TYPE_MAIN_VARIANT (b->decl) != TYPE_MAIN_VARIANT (type))
5702 warning_at (declarator->id_loc, OPT_Wc___compat,
5703 ("using %qD as both a typedef and a tag is "
5704 "invalid in C++"),
5705 decl);
5706 if (b->locus != UNKNOWN_LOCATION)
5707 inform (b->locus, "originally defined here");
5711 return decl;
5714 /* If this is a type name (such as, in a cast or sizeof),
5715 compute the type and return it now. */
5717 if (decl_context == TYPENAME)
5719 /* Note that the grammar rejects storage classes in typenames
5720 and fields. */
5721 gcc_assert (storage_class == csc_none && !threadp
5722 && !declspecs->inline_p);
5723 if (pedantic && TREE_CODE (type) == FUNCTION_TYPE
5724 && type_quals)
5725 pedwarn (loc, OPT_pedantic,
5726 "ISO C forbids const or volatile function types");
5727 if (type_quals)
5728 type = c_build_qualified_type (type, type_quals);
5729 return type;
5732 if (pedantic && decl_context == FIELD
5733 && variably_modified_type_p (type, NULL_TREE))
5735 /* C99 6.7.2.1p8 */
5736 pedwarn (loc, OPT_pedantic, "a member of a structure or union cannot "
5737 "have a variably modified type");
5740 /* Aside from typedefs and type names (handle above),
5741 `void' at top level (not within pointer)
5742 is allowed only in public variables.
5743 We don't complain about parms either, but that is because
5744 a better error message can be made later. */
5746 if (VOID_TYPE_P (type) && decl_context != PARM
5747 && !((decl_context != FIELD && TREE_CODE (type) != FUNCTION_TYPE)
5748 && (storage_class == csc_extern
5749 || (current_scope == file_scope
5750 && !(storage_class == csc_static
5751 || storage_class == csc_register)))))
5753 error_at (loc, "variable or field %qE declared void", name);
5754 type = integer_type_node;
5757 /* Now create the decl, which may be a VAR_DECL, a PARM_DECL
5758 or a FUNCTION_DECL, depending on DECL_CONTEXT and TYPE. */
5761 tree decl;
5763 if (decl_context == PARM)
5765 tree promoted_type;
5767 /* A parameter declared as an array of T is really a pointer to T.
5768 One declared as a function is really a pointer to a function. */
5770 if (TREE_CODE (type) == ARRAY_TYPE)
5772 /* Transfer const-ness of array into that of type pointed to. */
5773 type = TREE_TYPE (type);
5774 if (type_quals)
5775 type = c_build_qualified_type (type, type_quals);
5776 type = build_pointer_type (type);
5777 type_quals = array_ptr_quals;
5778 if (type_quals)
5779 type = c_build_qualified_type (type, type_quals);
5781 /* We don't yet implement attributes in this context. */
5782 if (array_ptr_attrs != NULL_TREE)
5783 warning_at (loc, OPT_Wattributes,
5784 "attributes in parameter array declarator ignored");
5786 size_varies = false;
5788 else if (TREE_CODE (type) == FUNCTION_TYPE)
5790 if (type_quals)
5791 pedwarn (loc, OPT_pedantic,
5792 "ISO C forbids qualified function types");
5793 if (type_quals)
5794 type = c_build_qualified_type (type, type_quals);
5795 type = build_pointer_type (type);
5796 type_quals = TYPE_UNQUALIFIED;
5798 else if (type_quals)
5799 type = c_build_qualified_type (type, type_quals);
5801 decl = build_decl (declarator->id_loc,
5802 PARM_DECL, declarator->u.id, type);
5803 if (size_varies)
5804 C_DECL_VARIABLE_SIZE (decl) = 1;
5806 /* Compute the type actually passed in the parmlist,
5807 for the case where there is no prototype.
5808 (For example, shorts and chars are passed as ints.)
5809 When there is a prototype, this is overridden later. */
5811 if (type == error_mark_node)
5812 promoted_type = type;
5813 else
5814 promoted_type = c_type_promotes_to (type);
5816 DECL_ARG_TYPE (decl) = promoted_type;
5817 if (declspecs->inline_p)
5818 pedwarn (loc, 0, "parameter %q+D declared %<inline%>", decl);
5820 else if (decl_context == FIELD)
5822 /* Note that the grammar rejects storage classes in typenames
5823 and fields. */
5824 gcc_assert (storage_class == csc_none && !threadp
5825 && !declspecs->inline_p);
5827 /* Structure field. It may not be a function. */
5829 if (TREE_CODE (type) == FUNCTION_TYPE)
5831 error_at (loc, "field %qE declared as a function", name);
5832 type = build_pointer_type (type);
5834 else if (TREE_CODE (type) != ERROR_MARK
5835 && !COMPLETE_OR_UNBOUND_ARRAY_TYPE_P (type))
5837 if (name)
5838 error_at (loc, "field %qE has incomplete type", name);
5839 else
5840 error_at (loc, "unnamed field has incomplete type");
5841 type = error_mark_node;
5843 type = c_build_qualified_type (type, type_quals);
5844 decl = build_decl (declarator->id_loc,
5845 FIELD_DECL, declarator->u.id, type);
5846 DECL_NONADDRESSABLE_P (decl) = bitfield;
5847 if (bitfield && !declarator->u.id)
5848 TREE_NO_WARNING (decl) = 1;
5850 if (size_varies)
5851 C_DECL_VARIABLE_SIZE (decl) = 1;
5853 else if (TREE_CODE (type) == FUNCTION_TYPE)
5855 if (storage_class == csc_register || threadp)
5857 error_at (loc, "invalid storage class for function %qE", name);
5859 else if (current_scope != file_scope)
5861 /* Function declaration not at file scope. Storage
5862 classes other than `extern' are not allowed, C99
5863 6.7.1p5, and `extern' makes no difference. However,
5864 GCC allows 'auto', perhaps with 'inline', to support
5865 nested functions. */
5866 if (storage_class == csc_auto)
5867 pedwarn (loc, OPT_pedantic,
5868 "invalid storage class for function %qE", name);
5869 else if (storage_class == csc_static)
5871 error_at (loc, "invalid storage class for function %qE", name);
5872 if (funcdef_flag)
5873 storage_class = declspecs->storage_class = csc_none;
5874 else
5875 return 0;
5879 decl = build_decl (declarator->id_loc,
5880 FUNCTION_DECL, declarator->u.id, type);
5881 decl = build_decl_attribute_variant (decl, decl_attr);
5883 if (pedantic && type_quals && !DECL_IN_SYSTEM_HEADER (decl))
5884 pedwarn (loc, OPT_pedantic,
5885 "ISO C forbids qualified function types");
5887 /* GNU C interprets a volatile-qualified function type to indicate
5888 that the function does not return. */
5889 if ((type_quals & TYPE_QUAL_VOLATILE)
5890 && !VOID_TYPE_P (TREE_TYPE (TREE_TYPE (decl))))
5891 warning_at (loc, 0, "%<noreturn%> function returns non-void value");
5893 /* Every function declaration is an external reference
5894 (DECL_EXTERNAL) except for those which are not at file
5895 scope and are explicitly declared "auto". This is
5896 forbidden by standard C (C99 6.7.1p5) and is interpreted by
5897 GCC to signify a forward declaration of a nested function. */
5898 if (storage_class == csc_auto && current_scope != file_scope)
5899 DECL_EXTERNAL (decl) = 0;
5900 /* In C99, a function which is declared 'inline' with 'extern'
5901 is not an external reference (which is confusing). It
5902 means that the later definition of the function must be output
5903 in this file, C99 6.7.4p6. In GNU C89, a function declared
5904 'extern inline' is an external reference. */
5905 else if (declspecs->inline_p && storage_class != csc_static)
5906 DECL_EXTERNAL (decl) = ((storage_class == csc_extern)
5907 == flag_gnu89_inline);
5908 else
5909 DECL_EXTERNAL (decl) = !initialized;
5911 /* Record absence of global scope for `static' or `auto'. */
5912 TREE_PUBLIC (decl)
5913 = !(storage_class == csc_static || storage_class == csc_auto);
5915 /* For a function definition, record the argument information
5916 block where store_parm_decls will look for it. */
5917 if (funcdef_flag)
5918 current_function_arg_info = arg_info;
5920 if (declspecs->default_int_p)
5921 C_FUNCTION_IMPLICIT_INT (decl) = 1;
5923 /* Record presence of `inline', if it is reasonable. */
5924 if (flag_hosted && MAIN_NAME_P (declarator->u.id))
5926 if (declspecs->inline_p)
5927 pedwarn (loc, 0, "cannot inline function %<main%>");
5929 else if (declspecs->inline_p)
5930 /* Record that the function is declared `inline'. */
5931 DECL_DECLARED_INLINE_P (decl) = 1;
5933 else
5935 /* It's a variable. */
5936 /* An uninitialized decl with `extern' is a reference. */
5937 int extern_ref = !initialized && storage_class == csc_extern;
5939 type = c_build_qualified_type (type, type_quals);
5941 /* C99 6.2.2p7: It is invalid (compile-time undefined
5942 behavior) to create an 'extern' declaration for a
5943 variable if there is a global declaration that is
5944 'static' and the global declaration is not visible.
5945 (If the static declaration _is_ currently visible,
5946 the 'extern' declaration is taken to refer to that decl.) */
5947 if (extern_ref && current_scope != file_scope)
5949 tree global_decl = identifier_global_value (declarator->u.id);
5950 tree visible_decl = lookup_name (declarator->u.id);
5952 if (global_decl
5953 && global_decl != visible_decl
5954 && TREE_CODE (global_decl) == VAR_DECL
5955 && !TREE_PUBLIC (global_decl))
5956 error_at (loc, "variable previously declared %<static%> "
5957 "redeclared %<extern%>");
5960 decl = build_decl (declarator->id_loc,
5961 VAR_DECL, declarator->u.id, type);
5962 if (size_varies)
5963 C_DECL_VARIABLE_SIZE (decl) = 1;
5965 if (declspecs->inline_p)
5966 pedwarn (loc, 0, "variable %q+D declared %<inline%>", decl);
5968 /* At file scope, an initialized extern declaration may follow
5969 a static declaration. In that case, DECL_EXTERNAL will be
5970 reset later in start_decl. */
5971 DECL_EXTERNAL (decl) = (storage_class == csc_extern);
5973 /* At file scope, the presence of a `static' or `register' storage
5974 class specifier, or the absence of all storage class specifiers
5975 makes this declaration a definition (perhaps tentative). Also,
5976 the absence of `static' makes it public. */
5977 if (current_scope == file_scope)
5979 TREE_PUBLIC (decl) = storage_class != csc_static;
5980 TREE_STATIC (decl) = !extern_ref;
5982 /* Not at file scope, only `static' makes a static definition. */
5983 else
5985 TREE_STATIC (decl) = (storage_class == csc_static);
5986 TREE_PUBLIC (decl) = extern_ref;
5989 if (threadp)
5990 DECL_TLS_MODEL (decl) = decl_default_tls_model (decl);
5993 if ((storage_class == csc_extern
5994 || (storage_class == csc_none
5995 && TREE_CODE (type) == FUNCTION_TYPE
5996 && !funcdef_flag))
5997 && variably_modified_type_p (type, NULL_TREE))
5999 /* C99 6.7.5.2p2 */
6000 if (TREE_CODE (type) == FUNCTION_TYPE)
6001 error_at (loc, "non-nested function with variably modified type");
6002 else
6003 error_at (loc, "object with variably modified type must have "
6004 "no linkage");
6007 /* Record `register' declaration for warnings on &
6008 and in case doing stupid register allocation. */
6010 if (storage_class == csc_register)
6012 C_DECL_REGISTER (decl) = 1;
6013 DECL_REGISTER (decl) = 1;
6016 /* Record constancy and volatility. */
6017 c_apply_type_quals_to_decl (type_quals, decl);
6019 /* If a type has volatile components, it should be stored in memory.
6020 Otherwise, the fact that those components are volatile
6021 will be ignored, and would even crash the compiler.
6022 Of course, this only makes sense on VAR,PARM, and RESULT decl's. */
6023 if (C_TYPE_FIELDS_VOLATILE (TREE_TYPE (decl))
6024 && (TREE_CODE (decl) == VAR_DECL || TREE_CODE (decl) == PARM_DECL
6025 || TREE_CODE (decl) == RESULT_DECL))
6027 /* It is not an error for a structure with volatile fields to
6028 be declared register, but reset DECL_REGISTER since it
6029 cannot actually go in a register. */
6030 int was_reg = C_DECL_REGISTER (decl);
6031 C_DECL_REGISTER (decl) = 0;
6032 DECL_REGISTER (decl) = 0;
6033 c_mark_addressable (decl);
6034 C_DECL_REGISTER (decl) = was_reg;
6037 /* This is the earliest point at which we might know the assembler
6038 name of a variable. Thus, if it's known before this, die horribly. */
6039 gcc_assert (!DECL_ASSEMBLER_NAME_SET_P (decl));
6041 if (warn_cxx_compat
6042 && TREE_CODE (decl) == VAR_DECL
6043 && TREE_PUBLIC (decl)
6044 && TREE_STATIC (decl)
6045 && (TREE_CODE (TREE_TYPE (decl)) == RECORD_TYPE
6046 || TREE_CODE (TREE_TYPE (decl)) == UNION_TYPE
6047 || TREE_CODE (TREE_TYPE (decl)) == ENUMERAL_TYPE)
6048 && TYPE_NAME (TREE_TYPE (decl)) == NULL_TREE)
6049 warning_at (DECL_SOURCE_LOCATION (decl), OPT_Wc___compat,
6050 ("non-local variable %qD with anonymous type is "
6051 "questionable in C++"),
6052 decl);
6054 return decl;
6058 /* Decode the parameter-list info for a function type or function definition.
6059 The argument is the value returned by `get_parm_info' (or made in c-parse.c
6060 if there is an identifier list instead of a parameter decl list).
6061 These two functions are separate because when a function returns
6062 or receives functions then each is called multiple times but the order
6063 of calls is different. The last call to `grokparms' is always the one
6064 that contains the formal parameter names of a function definition.
6066 Return a list of arg types to use in the FUNCTION_TYPE for this function.
6068 FUNCDEF_FLAG is true for a function definition, false for
6069 a mere declaration. A nonempty identifier-list gets an error message
6070 when FUNCDEF_FLAG is false. */
6072 static tree
6073 grokparms (struct c_arg_info *arg_info, bool funcdef_flag)
6075 tree arg_types = arg_info->types;
6077 if (funcdef_flag && arg_info->had_vla_unspec)
6079 /* A function definition isn't function prototype scope C99 6.2.1p4. */
6080 /* C99 6.7.5.2p4 */
6081 error ("%<[*]%> not allowed in other than function prototype scope");
6084 if (arg_types == 0 && !funcdef_flag && !in_system_header)
6085 warning (OPT_Wstrict_prototypes,
6086 "function declaration isn%'t a prototype");
6088 if (arg_types == error_mark_node)
6089 return 0; /* don't set TYPE_ARG_TYPES in this case */
6091 else if (arg_types && TREE_CODE (TREE_VALUE (arg_types)) == IDENTIFIER_NODE)
6093 if (!funcdef_flag)
6094 pedwarn (input_location, 0, "parameter names (without types) in function declaration");
6096 arg_info->parms = arg_info->types;
6097 arg_info->types = 0;
6098 return 0;
6100 else
6102 tree parm, type, typelt;
6103 unsigned int parmno;
6104 const char *errmsg;
6106 /* If there is a parameter of incomplete type in a definition,
6107 this is an error. In a declaration this is valid, and a
6108 struct or union type may be completed later, before any calls
6109 or definition of the function. In the case where the tag was
6110 first declared within the parameter list, a warning has
6111 already been given. If a parameter has void type, then
6112 however the function cannot be defined or called, so
6113 warn. */
6115 for (parm = arg_info->parms, typelt = arg_types, parmno = 1;
6116 parm;
6117 parm = TREE_CHAIN (parm), typelt = TREE_CHAIN (typelt), parmno++)
6119 type = TREE_VALUE (typelt);
6120 if (type == error_mark_node)
6121 continue;
6123 if (!COMPLETE_TYPE_P (type))
6125 if (funcdef_flag)
6127 if (DECL_NAME (parm))
6128 error_at (input_location,
6129 "parameter %u (%q+D) has incomplete type",
6130 parmno, parm);
6131 else
6132 error_at (DECL_SOURCE_LOCATION (parm),
6133 "parameter %u has incomplete type",
6134 parmno);
6136 TREE_VALUE (typelt) = error_mark_node;
6137 TREE_TYPE (parm) = error_mark_node;
6138 arg_types = NULL_TREE;
6140 else if (VOID_TYPE_P (type))
6142 if (DECL_NAME (parm))
6143 warning_at (input_location, 0,
6144 "parameter %u (%q+D) has void type",
6145 parmno, parm);
6146 else
6147 warning_at (DECL_SOURCE_LOCATION (parm), 0,
6148 "parameter %u has void type",
6149 parmno);
6153 errmsg = targetm.invalid_parameter_type (type);
6154 if (errmsg)
6156 error (errmsg);
6157 TREE_VALUE (typelt) = error_mark_node;
6158 TREE_TYPE (parm) = error_mark_node;
6159 arg_types = NULL_TREE;
6162 if (DECL_NAME (parm) && TREE_USED (parm))
6163 warn_if_shadowing (parm);
6165 return arg_types;
6169 /* Take apart the current scope and return a c_arg_info structure with
6170 info on a parameter list just parsed.
6172 This structure is later fed to 'grokparms' and 'store_parm_decls'.
6174 ELLIPSIS being true means the argument list ended in '...' so don't
6175 append a sentinel (void_list_node) to the end of the type-list. */
6177 struct c_arg_info *
6178 get_parm_info (bool ellipsis)
6180 struct c_binding *b = current_scope->bindings;
6181 struct c_arg_info *arg_info = XOBNEW (&parser_obstack,
6182 struct c_arg_info);
6183 tree parms = 0;
6184 tree tags = 0;
6185 tree types = 0;
6186 tree others = 0;
6188 static bool explained_incomplete_types = false;
6189 bool gave_void_only_once_err = false;
6191 arg_info->parms = 0;
6192 arg_info->tags = 0;
6193 arg_info->types = 0;
6194 arg_info->others = 0;
6195 arg_info->pending_sizes = 0;
6196 arg_info->had_vla_unspec = current_scope->had_vla_unspec;
6198 /* The bindings in this scope must not get put into a block.
6199 We will take care of deleting the binding nodes. */
6200 current_scope->bindings = 0;
6202 /* This function is only called if there was *something* on the
6203 parameter list. */
6204 gcc_assert (b);
6206 /* A parameter list consisting solely of 'void' indicates that the
6207 function takes no arguments. But if the 'void' is qualified
6208 (by 'const' or 'volatile'), or has a storage class specifier
6209 ('register'), then the behavior is undefined; issue an error.
6210 Typedefs for 'void' are OK (see DR#157). */
6211 if (b->prev == 0 /* one binding */
6212 && TREE_CODE (b->decl) == PARM_DECL /* which is a parameter */
6213 && !DECL_NAME (b->decl) /* anonymous */
6214 && VOID_TYPE_P (TREE_TYPE (b->decl))) /* of void type */
6216 if (TREE_THIS_VOLATILE (b->decl)
6217 || TREE_READONLY (b->decl)
6218 || C_DECL_REGISTER (b->decl))
6219 error ("%<void%> as only parameter may not be qualified");
6221 /* There cannot be an ellipsis. */
6222 if (ellipsis)
6223 error ("%<void%> must be the only parameter");
6225 arg_info->types = void_list_node;
6226 return arg_info;
6229 if (!ellipsis)
6230 types = void_list_node;
6232 /* Break up the bindings list into parms, tags, types, and others;
6233 apply sanity checks; purge the name-to-decl bindings. */
6234 while (b)
6236 tree decl = b->decl;
6237 tree type = TREE_TYPE (decl);
6238 const char *keyword;
6240 switch (TREE_CODE (decl))
6242 case PARM_DECL:
6243 if (b->id)
6245 gcc_assert (I_SYMBOL_BINDING (b->id) == b);
6246 I_SYMBOL_BINDING (b->id) = b->shadowed;
6249 /* Check for forward decls that never got their actual decl. */
6250 if (TREE_ASM_WRITTEN (decl))
6251 error ("parameter %q+D has just a forward declaration", decl);
6252 /* Check for (..., void, ...) and issue an error. */
6253 else if (VOID_TYPE_P (type) && !DECL_NAME (decl))
6255 if (!gave_void_only_once_err)
6257 error ("%<void%> must be the only parameter");
6258 gave_void_only_once_err = true;
6261 else
6263 /* Valid parameter, add it to the list. */
6264 TREE_CHAIN (decl) = parms;
6265 parms = decl;
6267 /* Since there is a prototype, args are passed in their
6268 declared types. The back end may override this later. */
6269 DECL_ARG_TYPE (decl) = type;
6270 types = tree_cons (0, type, types);
6272 break;
6274 case ENUMERAL_TYPE: keyword = "enum"; goto tag;
6275 case UNION_TYPE: keyword = "union"; goto tag;
6276 case RECORD_TYPE: keyword = "struct"; goto tag;
6277 tag:
6278 /* Types may not have tag-names, in which case the type
6279 appears in the bindings list with b->id NULL. */
6280 if (b->id)
6282 gcc_assert (I_TAG_BINDING (b->id) == b);
6283 I_TAG_BINDING (b->id) = b->shadowed;
6286 /* Warn about any struct, union or enum tags defined in a
6287 parameter list. The scope of such types is limited to
6288 the parameter list, which is rarely if ever desirable
6289 (it's impossible to call such a function with type-
6290 correct arguments). An anonymous union parm type is
6291 meaningful as a GNU extension, so don't warn for that. */
6292 if (TREE_CODE (decl) != UNION_TYPE || b->id != 0)
6294 if (b->id)
6295 /* The %s will be one of 'struct', 'union', or 'enum'. */
6296 warning (0, "%<%s %E%> declared inside parameter list",
6297 keyword, b->id);
6298 else
6299 /* The %s will be one of 'struct', 'union', or 'enum'. */
6300 warning (0, "anonymous %s declared inside parameter list",
6301 keyword);
6303 if (!explained_incomplete_types)
6305 warning (0, "its scope is only this definition or declaration,"
6306 " which is probably not what you want");
6307 explained_incomplete_types = true;
6311 tags = tree_cons (b->id, decl, tags);
6312 break;
6314 case CONST_DECL:
6315 case TYPE_DECL:
6316 case FUNCTION_DECL:
6317 /* CONST_DECLs appear here when we have an embedded enum,
6318 and TYPE_DECLs appear here when we have an embedded struct
6319 or union. No warnings for this - we already warned about the
6320 type itself. FUNCTION_DECLs appear when there is an implicit
6321 function declaration in the parameter list. */
6323 TREE_CHAIN (decl) = others;
6324 others = decl;
6325 /* fall through */
6327 case ERROR_MARK:
6328 /* error_mark_node appears here when we have an undeclared
6329 variable. Just throw it away. */
6330 if (b->id)
6332 gcc_assert (I_SYMBOL_BINDING (b->id) == b);
6333 I_SYMBOL_BINDING (b->id) = b->shadowed;
6335 break;
6337 /* Other things that might be encountered. */
6338 case LABEL_DECL:
6339 case VAR_DECL:
6340 default:
6341 gcc_unreachable ();
6344 b = free_binding_and_advance (b);
6347 arg_info->parms = parms;
6348 arg_info->tags = tags;
6349 arg_info->types = types;
6350 arg_info->others = others;
6351 arg_info->pending_sizes = get_pending_sizes ();
6352 return arg_info;
6355 /* Get the struct, enum or union (CODE says which) with tag NAME.
6356 Define the tag as a forward-reference with location LOC if it is
6357 not defined. Return a c_typespec structure for the type
6358 specifier. */
6360 struct c_typespec
6361 parser_xref_tag (location_t loc, enum tree_code code, tree name)
6363 struct c_typespec ret;
6364 tree ref;
6365 location_t refloc;
6367 ret.expr = NULL_TREE;
6368 ret.expr_const_operands = true;
6370 /* If a cross reference is requested, look up the type
6371 already defined for this tag and return it. */
6373 ref = lookup_tag (code, name, 0, &refloc);
6374 /* If this is the right type of tag, return what we found.
6375 (This reference will be shadowed by shadow_tag later if appropriate.)
6376 If this is the wrong type of tag, do not return it. If it was the
6377 wrong type in the same scope, we will have had an error
6378 message already; if in a different scope and declaring
6379 a name, pending_xref_error will give an error message; but if in a
6380 different scope and not declaring a name, this tag should
6381 shadow the previous declaration of a different type of tag, and
6382 this would not work properly if we return the reference found.
6383 (For example, with "struct foo" in an outer scope, "union foo;"
6384 must shadow that tag with a new one of union type.) */
6385 ret.kind = (ref ? ctsk_tagref : ctsk_tagfirstref);
6386 if (ref && TREE_CODE (ref) == code)
6388 if (C_TYPE_DEFINED_IN_STRUCT (ref)
6389 && loc != UNKNOWN_LOCATION
6390 && warn_cxx_compat)
6392 switch (code)
6394 case ENUMERAL_TYPE:
6395 warning_at (loc, OPT_Wc___compat,
6396 ("enum type defined in struct or union "
6397 "is not visible in C++"));
6398 inform (refloc, "enum type defined here");
6399 break;
6400 case RECORD_TYPE:
6401 warning_at (loc, OPT_Wc___compat,
6402 ("struct defined in struct or union "
6403 "is not visible in C++"));
6404 inform (refloc, "struct defined here");
6405 break;
6406 case UNION_TYPE:
6407 warning_at (loc, OPT_Wc___compat,
6408 ("union defined in struct or union "
6409 "is not visible in C++"));
6410 inform (refloc, "union defined here");
6411 break;
6412 default:
6413 gcc_unreachable();
6417 ret.spec = ref;
6418 return ret;
6421 /* If no such tag is yet defined, create a forward-reference node
6422 and record it as the "definition".
6423 When a real declaration of this type is found,
6424 the forward-reference will be altered into a real type. */
6426 ref = make_node (code);
6427 if (code == ENUMERAL_TYPE)
6429 /* Give the type a default layout like unsigned int
6430 to avoid crashing if it does not get defined. */
6431 SET_TYPE_MODE (ref, TYPE_MODE (unsigned_type_node));
6432 TYPE_ALIGN (ref) = TYPE_ALIGN (unsigned_type_node);
6433 TYPE_USER_ALIGN (ref) = 0;
6434 TYPE_UNSIGNED (ref) = 1;
6435 TYPE_PRECISION (ref) = TYPE_PRECISION (unsigned_type_node);
6436 TYPE_MIN_VALUE (ref) = TYPE_MIN_VALUE (unsigned_type_node);
6437 TYPE_MAX_VALUE (ref) = TYPE_MAX_VALUE (unsigned_type_node);
6440 pushtag (loc, name, ref);
6442 ret.spec = ref;
6443 return ret;
6446 /* Get the struct, enum or union (CODE says which) with tag NAME.
6447 Define the tag as a forward-reference if it is not defined.
6448 Return a tree for the type. */
6450 tree
6451 xref_tag (enum tree_code code, tree name)
6453 return parser_xref_tag (input_location, code, name).spec;
6456 /* Make sure that the tag NAME is defined *in the current scope*
6457 at least as a forward reference.
6458 LOC is the location of the struct's definition.
6459 CODE says which kind of tag NAME ought to be.
6461 This stores the current value of the file static STRUCT_PARSE_INFO
6462 in *ENCLOSING_STRUCT_PARSE_INFO, and points STRUCT_PARSE_INFO at a
6463 new c_struct_parse_info structure. The old value of
6464 STRUCT_PARSE_INFO is restored in finish_struct. */
6466 tree
6467 start_struct (location_t loc, enum tree_code code, tree name,
6468 struct c_struct_parse_info **enclosing_struct_parse_info)
6470 /* If there is already a tag defined at this scope
6471 (as a forward reference), just return it. */
6473 tree ref = NULL_TREE;
6474 location_t refloc = UNKNOWN_LOCATION;
6476 if (name != NULL_TREE)
6477 ref = lookup_tag (code, name, 1, &refloc);
6478 if (ref && TREE_CODE (ref) == code)
6480 if (TYPE_SIZE (ref))
6482 if (code == UNION_TYPE)
6483 error_at (loc, "redefinition of %<union %E%>", name);
6484 else
6485 error_at (loc, "redefinition of %<struct %E%>", name);
6486 if (refloc != UNKNOWN_LOCATION)
6487 inform (refloc, "originally defined here");
6488 /* Don't create structures using a name already in use. */
6489 ref = NULL_TREE;
6491 else if (C_TYPE_BEING_DEFINED (ref))
6493 if (code == UNION_TYPE)
6494 error_at (loc, "nested redefinition of %<union %E%>", name);
6495 else
6496 error_at (loc, "nested redefinition of %<struct %E%>", name);
6497 /* Don't bother to report "originally defined here" for a
6498 nested redefinition; the original definition should be
6499 obvious. */
6500 /* Don't create structures that contain themselves. */
6501 ref = NULL_TREE;
6505 /* Otherwise create a forward-reference just so the tag is in scope. */
6507 if (ref == NULL_TREE || TREE_CODE (ref) != code)
6509 ref = make_node (code);
6510 pushtag (loc, name, ref);
6513 C_TYPE_BEING_DEFINED (ref) = 1;
6514 TYPE_PACKED (ref) = flag_pack_struct;
6516 *enclosing_struct_parse_info = struct_parse_info;
6517 struct_parse_info = XNEW (struct c_struct_parse_info);
6518 struct_parse_info->struct_types = VEC_alloc (tree, heap, 0);
6519 struct_parse_info->fields = VEC_alloc (c_binding_ptr, heap, 0);
6520 struct_parse_info->typedefs_seen = VEC_alloc (tree, heap, 0);
6522 /* FIXME: This will issue a warning for a use of a type defined
6523 within a statement expr used within sizeof, et. al. This is not
6524 terribly serious as C++ doesn't permit statement exprs within
6525 sizeof anyhow. */
6526 if (warn_cxx_compat && (in_sizeof || in_typeof || in_alignof))
6527 warning_at (loc, OPT_Wc___compat,
6528 "defining type in %qs expression is invalid in C++",
6529 (in_sizeof
6530 ? "sizeof"
6531 : (in_typeof ? "typeof" : "alignof")));
6533 return ref;
6536 /* Process the specs, declarator and width (NULL if omitted)
6537 of a structure component, returning a FIELD_DECL node.
6538 WIDTH is non-NULL for bit-fields only, and is an INTEGER_CST node.
6539 DECL_ATTRS is as for grokdeclarator.
6541 LOC is the location of the structure component.
6543 This is done during the parsing of the struct declaration.
6544 The FIELD_DECL nodes are chained together and the lot of them
6545 are ultimately passed to `build_struct' to make the RECORD_TYPE node. */
6547 tree
6548 grokfield (location_t loc,
6549 struct c_declarator *declarator, struct c_declspecs *declspecs,
6550 tree width, tree *decl_attrs)
6552 tree value;
6554 if (declarator->kind == cdk_id && declarator->u.id == NULL_TREE
6555 && width == NULL_TREE)
6557 /* This is an unnamed decl.
6559 If we have something of the form "union { list } ;" then this
6560 is the anonymous union extension. Similarly for struct.
6562 If this is something of the form "struct foo;", then
6563 If MS extensions are enabled, this is handled as an
6564 anonymous struct.
6565 Otherwise this is a forward declaration of a structure tag.
6567 If this is something of the form "foo;" and foo is a TYPE_DECL, then
6568 If MS extensions are enabled and foo names a structure, then
6569 again this is an anonymous struct.
6570 Otherwise this is an error.
6572 Oh what a horrid tangled web we weave. I wonder if MS consciously
6573 took this from Plan 9 or if it was an accident of implementation
6574 that took root before someone noticed the bug... */
6576 tree type = declspecs->type;
6577 bool type_ok = (TREE_CODE (type) == RECORD_TYPE
6578 || TREE_CODE (type) == UNION_TYPE);
6579 bool ok = false;
6581 if (type_ok
6582 && (flag_ms_extensions || !declspecs->typedef_p))
6584 if (flag_ms_extensions)
6585 ok = true;
6586 else if (flag_iso)
6587 ok = false;
6588 else if (TYPE_NAME (type) == NULL)
6589 ok = true;
6590 else
6591 ok = false;
6593 if (!ok)
6595 pedwarn (loc, 0, "declaration does not declare anything");
6596 return NULL_TREE;
6598 pedwarn (loc, OPT_pedantic, "ISO C doesn%'t support unnamed structs/unions");
6601 value = grokdeclarator (declarator, declspecs, FIELD, false,
6602 width ? &width : NULL, decl_attrs, NULL, NULL,
6603 DEPRECATED_NORMAL);
6605 finish_decl (value, loc, NULL_TREE, NULL_TREE, NULL_TREE);
6606 DECL_INITIAL (value) = width;
6608 if (warn_cxx_compat && DECL_NAME (value) != NULL_TREE)
6610 /* If we currently have a binding for this field, set the
6611 in_struct field in the binding, so that we warn about lookups
6612 which find it. */
6613 struct c_binding *b = I_SYMBOL_BINDING (DECL_NAME (value));
6614 if (b != NULL)
6616 /* If the in_struct field is not yet set, push it on a list
6617 to be cleared when this struct is finished. */
6618 if (!b->in_struct)
6620 VEC_safe_push (c_binding_ptr, heap,
6621 struct_parse_info->fields, b);
6622 b->in_struct = 1;
6627 return value;
6630 /* Generate an error for any duplicate field names in FIELDLIST. Munge
6631 the list such that this does not present a problem later. */
6633 static void
6634 detect_field_duplicates (tree fieldlist)
6636 tree x, y;
6637 int timeout = 10;
6639 /* First, see if there are more than "a few" fields.
6640 This is trivially true if there are zero or one fields. */
6641 if (!fieldlist)
6642 return;
6643 x = TREE_CHAIN (fieldlist);
6644 if (!x)
6645 return;
6646 do {
6647 timeout--;
6648 x = TREE_CHAIN (x);
6649 } while (timeout > 0 && x);
6651 /* If there were "few" fields, avoid the overhead of allocating
6652 a hash table. Instead just do the nested traversal thing. */
6653 if (timeout > 0)
6655 for (x = TREE_CHAIN (fieldlist); x ; x = TREE_CHAIN (x))
6656 if (DECL_NAME (x))
6658 for (y = fieldlist; y != x; y = TREE_CHAIN (y))
6659 if (DECL_NAME (y) == DECL_NAME (x))
6661 error ("duplicate member %q+D", x);
6662 DECL_NAME (x) = NULL_TREE;
6666 else
6668 htab_t htab = htab_create (37, htab_hash_pointer, htab_eq_pointer, NULL);
6669 void **slot;
6671 for (x = fieldlist; x ; x = TREE_CHAIN (x))
6672 if ((y = DECL_NAME (x)) != 0)
6674 slot = htab_find_slot (htab, y, INSERT);
6675 if (*slot)
6677 error ("duplicate member %q+D", x);
6678 DECL_NAME (x) = NULL_TREE;
6680 *slot = y;
6683 htab_delete (htab);
6687 /* Finish up struct info used by -Wc++-compat. */
6689 static void
6690 warn_cxx_compat_finish_struct (tree fieldlist)
6692 unsigned int ix;
6693 tree x;
6694 struct c_binding *b;
6696 /* Set the C_TYPE_DEFINED_IN_STRUCT flag for each type defined in
6697 the current struct. We do this now at the end of the struct
6698 because the flag is used to issue visibility warnings, and we
6699 only want to issue those warnings if the type is referenced
6700 outside of the struct declaration. */
6701 for (ix = 0; VEC_iterate (tree, struct_parse_info->struct_types, ix, x); ++ix)
6702 C_TYPE_DEFINED_IN_STRUCT (x) = 1;
6704 /* The TYPEDEFS_SEEN field of STRUCT_PARSE_INFO is a list of
6705 typedefs used when declaring fields in this struct. If the name
6706 of any of the fields is also a typedef name then the struct would
6707 not parse in C++, because the C++ lookup rules say that the
6708 typedef name would be looked up in the context of the struct, and
6709 would thus be the field rather than the typedef. */
6710 if (!VEC_empty (tree, struct_parse_info->typedefs_seen)
6711 && fieldlist != NULL_TREE)
6713 /* Use a pointer_set using the name of the typedef. We can use
6714 a pointer_set because identifiers are interned. */
6715 struct pointer_set_t *tset = pointer_set_create ();
6717 for (ix = 0;
6718 VEC_iterate (tree, struct_parse_info->typedefs_seen, ix, x);
6719 ++ix)
6720 pointer_set_insert (tset, DECL_NAME (x));
6722 for (x = fieldlist; x != NULL_TREE; x = TREE_CHAIN (x))
6724 if (pointer_set_contains (tset, DECL_NAME (x)))
6726 warning_at (DECL_SOURCE_LOCATION (x), OPT_Wc___compat,
6727 ("using %qD as both field and typedef name is "
6728 "invalid in C++"),
6730 /* FIXME: It would be nice to report the location where
6731 the typedef name is used. */
6735 pointer_set_destroy (tset);
6738 /* For each field which has a binding and which was not defined in
6739 an enclosing struct, clear the in_struct field. */
6740 for (ix = 0;
6741 VEC_iterate (c_binding_ptr, struct_parse_info->fields, ix, b);
6742 ++ix)
6743 b->in_struct = 0;
6746 /* Fill in the fields of a RECORD_TYPE or UNION_TYPE node, T.
6747 LOC is the location of the RECORD_TYPE or UNION_TYPE's definition.
6748 FIELDLIST is a chain of FIELD_DECL nodes for the fields.
6749 ATTRIBUTES are attributes to be applied to the structure.
6751 ENCLOSING_STRUCT_PARSE_INFO is the value of STRUCT_PARSE_INFO when
6752 the struct was started. */
6754 tree
6755 finish_struct (location_t loc, tree t, tree fieldlist, tree attributes,
6756 struct c_struct_parse_info *enclosing_struct_parse_info)
6758 tree x;
6759 bool toplevel = file_scope == current_scope;
6760 int saw_named_field;
6762 /* If this type was previously laid out as a forward reference,
6763 make sure we lay it out again. */
6765 TYPE_SIZE (t) = 0;
6767 decl_attributes (&t, attributes, (int) ATTR_FLAG_TYPE_IN_PLACE);
6769 if (pedantic)
6771 for (x = fieldlist; x; x = TREE_CHAIN (x))
6772 if (DECL_NAME (x) != 0)
6773 break;
6775 if (x == 0)
6777 if (TREE_CODE (t) == UNION_TYPE)
6779 if (fieldlist)
6780 pedwarn (loc, OPT_pedantic, "union has no named members");
6781 else
6782 pedwarn (loc, OPT_pedantic, "union has no members");
6784 else
6786 if (fieldlist)
6787 pedwarn (loc, OPT_pedantic, "struct has no named members");
6788 else
6789 pedwarn (loc, OPT_pedantic, "struct has no members");
6794 /* Install struct as DECL_CONTEXT of each field decl.
6795 Also process specified field sizes, found in the DECL_INITIAL,
6796 storing 0 there after the type has been changed to precision equal
6797 to its width, rather than the precision of the specified standard
6798 type. (Correct layout requires the original type to have been preserved
6799 until now.) */
6801 saw_named_field = 0;
6802 for (x = fieldlist; x; x = TREE_CHAIN (x))
6804 if (TREE_TYPE (x) == error_mark_node)
6805 continue;
6807 DECL_CONTEXT (x) = t;
6809 /* If any field is const, the structure type is pseudo-const. */
6810 if (TREE_READONLY (x))
6811 C_TYPE_FIELDS_READONLY (t) = 1;
6812 else
6814 /* A field that is pseudo-const makes the structure likewise. */
6815 tree t1 = TREE_TYPE (x);
6816 while (TREE_CODE (t1) == ARRAY_TYPE)
6817 t1 = TREE_TYPE (t1);
6818 if ((TREE_CODE (t1) == RECORD_TYPE || TREE_CODE (t1) == UNION_TYPE)
6819 && C_TYPE_FIELDS_READONLY (t1))
6820 C_TYPE_FIELDS_READONLY (t) = 1;
6823 /* Any field that is volatile means variables of this type must be
6824 treated in some ways as volatile. */
6825 if (TREE_THIS_VOLATILE (x))
6826 C_TYPE_FIELDS_VOLATILE (t) = 1;
6828 /* Any field of nominal variable size implies structure is too. */
6829 if (C_DECL_VARIABLE_SIZE (x))
6830 C_TYPE_VARIABLE_SIZE (t) = 1;
6832 if (DECL_INITIAL (x))
6834 unsigned HOST_WIDE_INT width = tree_low_cst (DECL_INITIAL (x), 1);
6835 DECL_SIZE (x) = bitsize_int (width);
6836 DECL_BIT_FIELD (x) = 1;
6837 SET_DECL_C_BIT_FIELD (x);
6840 if (TYPE_PACKED (t)
6841 && (DECL_BIT_FIELD (x)
6842 || TYPE_ALIGN (TREE_TYPE (x)) > BITS_PER_UNIT))
6843 DECL_PACKED (x) = 1;
6845 /* Detect flexible array member in an invalid context. */
6846 if (TREE_CODE (TREE_TYPE (x)) == ARRAY_TYPE
6847 && TYPE_SIZE (TREE_TYPE (x)) == NULL_TREE
6848 && TYPE_DOMAIN (TREE_TYPE (x)) != NULL_TREE
6849 && TYPE_MAX_VALUE (TYPE_DOMAIN (TREE_TYPE (x))) == NULL_TREE)
6851 if (TREE_CODE (t) == UNION_TYPE)
6853 error_at (DECL_SOURCE_LOCATION (x),
6854 "flexible array member in union");
6855 TREE_TYPE (x) = error_mark_node;
6857 else if (TREE_CHAIN (x) != NULL_TREE)
6859 error_at (DECL_SOURCE_LOCATION (x),
6860 "flexible array member not at end of struct");
6861 TREE_TYPE (x) = error_mark_node;
6863 else if (!saw_named_field)
6865 error_at (DECL_SOURCE_LOCATION (x),
6866 "flexible array member in otherwise empty struct");
6867 TREE_TYPE (x) = error_mark_node;
6871 if (pedantic && TREE_CODE (t) == RECORD_TYPE
6872 && flexible_array_type_p (TREE_TYPE (x)))
6873 pedwarn (DECL_SOURCE_LOCATION (x), OPT_pedantic,
6874 "invalid use of structure with flexible array member");
6876 if (DECL_NAME (x))
6877 saw_named_field = 1;
6880 detect_field_duplicates (fieldlist);
6882 /* Now we have the nearly final fieldlist. Record it,
6883 then lay out the structure or union (including the fields). */
6885 TYPE_FIELDS (t) = fieldlist;
6887 layout_type (t);
6889 /* Give bit-fields their proper types. */
6891 tree *fieldlistp = &fieldlist;
6892 while (*fieldlistp)
6893 if (TREE_CODE (*fieldlistp) == FIELD_DECL && DECL_INITIAL (*fieldlistp)
6894 && TREE_TYPE (*fieldlistp) != error_mark_node)
6896 unsigned HOST_WIDE_INT width
6897 = tree_low_cst (DECL_INITIAL (*fieldlistp), 1);
6898 tree type = TREE_TYPE (*fieldlistp);
6899 if (width != TYPE_PRECISION (type))
6901 TREE_TYPE (*fieldlistp)
6902 = c_build_bitfield_integer_type (width, TYPE_UNSIGNED (type));
6903 DECL_MODE (*fieldlistp) = TYPE_MODE (TREE_TYPE (*fieldlistp));
6905 DECL_INITIAL (*fieldlistp) = 0;
6907 else
6908 fieldlistp = &TREE_CHAIN (*fieldlistp);
6911 /* Now we have the truly final field list.
6912 Store it in this type and in the variants. */
6914 TYPE_FIELDS (t) = fieldlist;
6916 /* If there are lots of fields, sort so we can look through them fast.
6917 We arbitrarily consider 16 or more elts to be "a lot". */
6920 int len = 0;
6922 for (x = fieldlist; x; x = TREE_CHAIN (x))
6924 if (len > 15 || DECL_NAME (x) == NULL)
6925 break;
6926 len += 1;
6929 if (len > 15)
6931 tree *field_array;
6932 struct lang_type *space;
6933 struct sorted_fields_type *space2;
6935 len += list_length (x);
6937 /* Use the same allocation policy here that make_node uses, to
6938 ensure that this lives as long as the rest of the struct decl.
6939 All decls in an inline function need to be saved. */
6941 space = GGC_CNEW (struct lang_type);
6942 space2 = GGC_NEWVAR (struct sorted_fields_type,
6943 sizeof (struct sorted_fields_type) + len * sizeof (tree));
6945 len = 0;
6946 space->s = space2;
6947 field_array = &space2->elts[0];
6948 for (x = fieldlist; x; x = TREE_CHAIN (x))
6950 field_array[len++] = x;
6952 /* If there is anonymous struct or union, break out of the loop. */
6953 if (DECL_NAME (x) == NULL)
6954 break;
6956 /* Found no anonymous struct/union. Add the TYPE_LANG_SPECIFIC. */
6957 if (x == NULL)
6959 TYPE_LANG_SPECIFIC (t) = space;
6960 TYPE_LANG_SPECIFIC (t)->s->len = len;
6961 field_array = TYPE_LANG_SPECIFIC (t)->s->elts;
6962 qsort (field_array, len, sizeof (tree), field_decl_cmp);
6967 for (x = TYPE_MAIN_VARIANT (t); x; x = TYPE_NEXT_VARIANT (x))
6969 TYPE_FIELDS (x) = TYPE_FIELDS (t);
6970 TYPE_LANG_SPECIFIC (x) = TYPE_LANG_SPECIFIC (t);
6971 C_TYPE_FIELDS_READONLY (x) = C_TYPE_FIELDS_READONLY (t);
6972 C_TYPE_FIELDS_VOLATILE (x) = C_TYPE_FIELDS_VOLATILE (t);
6973 C_TYPE_VARIABLE_SIZE (x) = C_TYPE_VARIABLE_SIZE (t);
6976 /* If this was supposed to be a transparent union, but we can't
6977 make it one, warn and turn off the flag. */
6978 if (TREE_CODE (t) == UNION_TYPE
6979 && TYPE_TRANSPARENT_AGGR (t)
6980 && (!TYPE_FIELDS (t) || TYPE_MODE (t) != DECL_MODE (TYPE_FIELDS (t))))
6982 TYPE_TRANSPARENT_AGGR (t) = 0;
6983 warning_at (loc, 0, "union cannot be made transparent");
6986 /* If this structure or union completes the type of any previous
6987 variable declaration, lay it out and output its rtl. */
6988 for (x = C_TYPE_INCOMPLETE_VARS (TYPE_MAIN_VARIANT (t));
6990 x = TREE_CHAIN (x))
6992 tree decl = TREE_VALUE (x);
6993 if (TREE_CODE (TREE_TYPE (decl)) == ARRAY_TYPE)
6994 layout_array_type (TREE_TYPE (decl));
6995 if (TREE_CODE (decl) != TYPE_DECL)
6997 layout_decl (decl, 0);
6998 if (c_dialect_objc ())
6999 objc_check_decl (decl);
7000 rest_of_decl_compilation (decl, toplevel, 0);
7001 if (!toplevel)
7002 expand_decl (decl);
7005 C_TYPE_INCOMPLETE_VARS (TYPE_MAIN_VARIANT (t)) = 0;
7007 /* Update type location to the one of the definition, instead of e.g.
7008 a forward declaration. */
7009 if (TYPE_STUB_DECL (t))
7010 DECL_SOURCE_LOCATION (TYPE_STUB_DECL (t)) = loc;
7012 /* Finish debugging output for this type. */
7013 rest_of_type_compilation (t, toplevel);
7015 /* If we're inside a function proper, i.e. not file-scope and not still
7016 parsing parameters, then arrange for the size of a variable sized type
7017 to be bound now. */
7018 if (cur_stmt_list && variably_modified_type_p (t, NULL_TREE))
7019 add_stmt (build_stmt (loc,
7020 DECL_EXPR, build_decl (loc, TYPE_DECL, NULL, t)));
7022 if (warn_cxx_compat)
7023 warn_cxx_compat_finish_struct (fieldlist);
7025 VEC_free (tree, heap, struct_parse_info->struct_types);
7026 VEC_free (c_binding_ptr, heap, struct_parse_info->fields);
7027 VEC_free (tree, heap, struct_parse_info->typedefs_seen);
7028 XDELETE (struct_parse_info);
7030 struct_parse_info = enclosing_struct_parse_info;
7032 /* If this struct is defined inside a struct, add it to
7033 struct_types. */
7034 if (warn_cxx_compat
7035 && struct_parse_info != NULL
7036 && !in_sizeof && !in_typeof && !in_alignof)
7037 VEC_safe_push (tree, heap, struct_parse_info->struct_types, t);
7039 return t;
7042 /* Lay out the type T, and its element type, and so on. */
7044 static void
7045 layout_array_type (tree t)
7047 if (TREE_CODE (TREE_TYPE (t)) == ARRAY_TYPE)
7048 layout_array_type (TREE_TYPE (t));
7049 layout_type (t);
7052 /* Begin compiling the definition of an enumeration type.
7053 NAME is its name (or null if anonymous).
7054 LOC is the enum's location.
7055 Returns the type object, as yet incomplete.
7056 Also records info about it so that build_enumerator
7057 may be used to declare the individual values as they are read. */
7059 tree
7060 start_enum (location_t loc, struct c_enum_contents *the_enum, tree name)
7062 tree enumtype = NULL_TREE;
7063 location_t enumloc = UNKNOWN_LOCATION;
7065 /* If this is the real definition for a previous forward reference,
7066 fill in the contents in the same object that used to be the
7067 forward reference. */
7069 if (name != NULL_TREE)
7070 enumtype = lookup_tag (ENUMERAL_TYPE, name, 1, &enumloc);
7072 if (enumtype == 0 || TREE_CODE (enumtype) != ENUMERAL_TYPE)
7074 enumtype = make_node (ENUMERAL_TYPE);
7075 pushtag (loc, name, enumtype);
7078 if (C_TYPE_BEING_DEFINED (enumtype))
7079 error_at (loc, "nested redefinition of %<enum %E%>", name);
7081 C_TYPE_BEING_DEFINED (enumtype) = 1;
7083 if (TYPE_VALUES (enumtype) != 0)
7085 /* This enum is a named one that has been declared already. */
7086 error_at (loc, "redeclaration of %<enum %E%>", name);
7087 if (enumloc != UNKNOWN_LOCATION)
7088 inform (enumloc, "originally defined here");
7090 /* Completely replace its old definition.
7091 The old enumerators remain defined, however. */
7092 TYPE_VALUES (enumtype) = 0;
7095 the_enum->enum_next_value = integer_zero_node;
7096 the_enum->enum_overflow = 0;
7098 if (flag_short_enums)
7099 TYPE_PACKED (enumtype) = 1;
7101 /* FIXME: This will issue a warning for a use of a type defined
7102 within sizeof in a statement expr. This is not terribly serious
7103 as C++ doesn't permit statement exprs within sizeof anyhow. */
7104 if (warn_cxx_compat && (in_sizeof || in_typeof || in_alignof))
7105 warning_at (loc, OPT_Wc___compat,
7106 "defining type in %qs expression is invalid in C++",
7107 (in_sizeof
7108 ? "sizeof"
7109 : (in_typeof ? "typeof" : "alignof")));
7111 return enumtype;
7114 /* After processing and defining all the values of an enumeration type,
7115 install their decls in the enumeration type and finish it off.
7116 ENUMTYPE is the type object, VALUES a list of decl-value pairs,
7117 and ATTRIBUTES are the specified attributes.
7118 Returns ENUMTYPE. */
7120 tree
7121 finish_enum (tree enumtype, tree values, tree attributes)
7123 tree pair, tem;
7124 tree minnode = 0, maxnode = 0;
7125 int precision, unsign;
7126 bool toplevel = (file_scope == current_scope);
7127 struct lang_type *lt;
7129 decl_attributes (&enumtype, attributes, (int) ATTR_FLAG_TYPE_IN_PLACE);
7131 /* Calculate the maximum value of any enumerator in this type. */
7133 if (values == error_mark_node)
7134 minnode = maxnode = integer_zero_node;
7135 else
7137 minnode = maxnode = TREE_VALUE (values);
7138 for (pair = TREE_CHAIN (values); pair; pair = TREE_CHAIN (pair))
7140 tree value = TREE_VALUE (pair);
7141 if (tree_int_cst_lt (maxnode, value))
7142 maxnode = value;
7143 if (tree_int_cst_lt (value, minnode))
7144 minnode = value;
7148 /* Construct the final type of this enumeration. It is the same
7149 as one of the integral types - the narrowest one that fits, except
7150 that normally we only go as narrow as int - and signed iff any of
7151 the values are negative. */
7152 unsign = (tree_int_cst_sgn (minnode) >= 0);
7153 precision = MAX (tree_int_cst_min_precision (minnode, unsign),
7154 tree_int_cst_min_precision (maxnode, unsign));
7156 if (TYPE_PACKED (enumtype) || precision > TYPE_PRECISION (integer_type_node))
7158 tem = c_common_type_for_size (precision, unsign);
7159 if (tem == NULL)
7161 warning (0, "enumeration values exceed range of largest integer");
7162 tem = long_long_integer_type_node;
7165 else
7166 tem = unsign ? unsigned_type_node : integer_type_node;
7168 TYPE_MIN_VALUE (enumtype) = TYPE_MIN_VALUE (tem);
7169 TYPE_MAX_VALUE (enumtype) = TYPE_MAX_VALUE (tem);
7170 TYPE_UNSIGNED (enumtype) = TYPE_UNSIGNED (tem);
7171 TYPE_SIZE (enumtype) = 0;
7173 /* If the precision of the type was specific with an attribute and it
7174 was too small, give an error. Otherwise, use it. */
7175 if (TYPE_PRECISION (enumtype))
7177 if (precision > TYPE_PRECISION (enumtype))
7178 error ("specified mode too small for enumeral values");
7180 else
7181 TYPE_PRECISION (enumtype) = TYPE_PRECISION (tem);
7183 layout_type (enumtype);
7185 if (values != error_mark_node)
7187 /* Change the type of the enumerators to be the enum type. We
7188 need to do this irrespective of the size of the enum, for
7189 proper type checking. Replace the DECL_INITIALs of the
7190 enumerators, and the value slots of the list, with copies
7191 that have the enum type; they cannot be modified in place
7192 because they may be shared (e.g. integer_zero_node) Finally,
7193 change the purpose slots to point to the names of the decls. */
7194 for (pair = values; pair; pair = TREE_CHAIN (pair))
7196 tree enu = TREE_PURPOSE (pair);
7197 tree ini = DECL_INITIAL (enu);
7199 TREE_TYPE (enu) = enumtype;
7201 /* The ISO C Standard mandates enumerators to have type int,
7202 even though the underlying type of an enum type is
7203 unspecified. However, GCC allows enumerators of any
7204 integer type as an extensions. build_enumerator()
7205 converts any enumerators that fit in an int to type int,
7206 to avoid promotions to unsigned types when comparing
7207 integers with enumerators that fit in the int range.
7208 When -pedantic is given, build_enumerator() would have
7209 already warned about those that don't fit. Here we
7210 convert the rest to the enumerator type. */
7211 if (TREE_TYPE (ini) != integer_type_node)
7212 ini = convert (enumtype, ini);
7214 DECL_INITIAL (enu) = ini;
7215 TREE_PURPOSE (pair) = DECL_NAME (enu);
7216 TREE_VALUE (pair) = ini;
7219 TYPE_VALUES (enumtype) = values;
7222 /* Record the min/max values so that we can warn about bit-field
7223 enumerations that are too small for the values. */
7224 lt = GGC_CNEW (struct lang_type);
7225 lt->enum_min = minnode;
7226 lt->enum_max = maxnode;
7227 TYPE_LANG_SPECIFIC (enumtype) = lt;
7229 /* Fix up all variant types of this enum type. */
7230 for (tem = TYPE_MAIN_VARIANT (enumtype); tem; tem = TYPE_NEXT_VARIANT (tem))
7232 if (tem == enumtype)
7233 continue;
7234 TYPE_VALUES (tem) = TYPE_VALUES (enumtype);
7235 TYPE_MIN_VALUE (tem) = TYPE_MIN_VALUE (enumtype);
7236 TYPE_MAX_VALUE (tem) = TYPE_MAX_VALUE (enumtype);
7237 TYPE_SIZE (tem) = TYPE_SIZE (enumtype);
7238 TYPE_SIZE_UNIT (tem) = TYPE_SIZE_UNIT (enumtype);
7239 SET_TYPE_MODE (tem, TYPE_MODE (enumtype));
7240 TYPE_PRECISION (tem) = TYPE_PRECISION (enumtype);
7241 TYPE_ALIGN (tem) = TYPE_ALIGN (enumtype);
7242 TYPE_USER_ALIGN (tem) = TYPE_USER_ALIGN (enumtype);
7243 TYPE_UNSIGNED (tem) = TYPE_UNSIGNED (enumtype);
7244 TYPE_LANG_SPECIFIC (tem) = TYPE_LANG_SPECIFIC (enumtype);
7247 /* Finish debugging output for this type. */
7248 rest_of_type_compilation (enumtype, toplevel);
7250 /* If this enum is defined inside a struct, add it to
7251 struct_types. */
7252 if (warn_cxx_compat
7253 && struct_parse_info != NULL
7254 && !in_sizeof && !in_typeof && !in_alignof)
7255 VEC_safe_push (tree, heap, struct_parse_info->struct_types, enumtype);
7257 return enumtype;
7260 /* Build and install a CONST_DECL for one value of the
7261 current enumeration type (one that was begun with start_enum).
7262 LOC is the location of the enumerator.
7263 Return a tree-list containing the CONST_DECL and its value.
7264 Assignment of sequential values by default is handled here. */
7266 tree
7267 build_enumerator (location_t loc,
7268 struct c_enum_contents *the_enum, tree name, tree value)
7270 tree decl, type;
7272 /* Validate and default VALUE. */
7274 if (value != 0)
7276 /* Don't issue more errors for error_mark_node (i.e. an
7277 undeclared identifier) - just ignore the value expression. */
7278 if (value == error_mark_node)
7279 value = 0;
7280 else if (!INTEGRAL_TYPE_P (TREE_TYPE (value)))
7282 error_at (loc, "enumerator value for %qE is not an integer constant",
7283 name);
7284 value = 0;
7286 else
7288 if (TREE_CODE (value) != INTEGER_CST)
7290 value = c_fully_fold (value, false, NULL);
7291 if (TREE_CODE (value) == INTEGER_CST)
7292 pedwarn (loc, OPT_pedantic,
7293 "enumerator value for %qE is not an integer "
7294 "constant expression", name);
7296 if (TREE_CODE (value) != INTEGER_CST)
7298 error ("enumerator value for %qE is not an integer constant",
7299 name);
7300 value = 0;
7302 else
7304 value = default_conversion (value);
7305 constant_expression_warning (value);
7310 /* Default based on previous value. */
7311 /* It should no longer be possible to have NON_LVALUE_EXPR
7312 in the default. */
7313 if (value == 0)
7315 value = the_enum->enum_next_value;
7316 if (the_enum->enum_overflow)
7317 error_at (loc, "overflow in enumeration values");
7319 /* Even though the underlying type of an enum is unspecified, the
7320 type of enumeration constants is explicitly defined as int
7321 (6.4.4.3/2 in the C99 Standard). GCC allows any integer type as
7322 an extension. */
7323 else if (!int_fits_type_p (value, integer_type_node))
7324 pedwarn (loc, OPT_pedantic,
7325 "ISO C restricts enumerator values to range of %<int%>");
7327 /* The ISO C Standard mandates enumerators to have type int, even
7328 though the underlying type of an enum type is unspecified.
7329 However, GCC allows enumerators of any integer type as an
7330 extensions. Here we convert any enumerators that fit in an int
7331 to type int, to avoid promotions to unsigned types when comparing
7332 integers with enumerators that fit in the int range. When
7333 -pedantic is given, we would have already warned about those that
7334 don't fit. We have to do this here rather than in finish_enum
7335 because this value may be used to define more enumerators. */
7336 if (int_fits_type_p (value, integer_type_node))
7337 value = convert (integer_type_node, value);
7339 /* Set basis for default for next value. */
7340 the_enum->enum_next_value
7341 = build_binary_op
7342 (EXPR_HAS_LOCATION (value) ? EXPR_LOCATION (value) : input_location,
7343 PLUS_EXPR, value, integer_one_node, 0);
7344 the_enum->enum_overflow = tree_int_cst_lt (the_enum->enum_next_value, value);
7346 /* Now create a declaration for the enum value name. */
7348 type = TREE_TYPE (value);
7349 type = c_common_type_for_size (MAX (TYPE_PRECISION (type),
7350 TYPE_PRECISION (integer_type_node)),
7351 (TYPE_PRECISION (type)
7352 >= TYPE_PRECISION (integer_type_node)
7353 && TYPE_UNSIGNED (type)));
7355 decl = build_decl (loc, CONST_DECL, name, type);
7356 DECL_INITIAL (decl) = convert (type, value);
7357 pushdecl (decl);
7359 return tree_cons (decl, value, NULL_TREE);
7363 /* Create the FUNCTION_DECL for a function definition.
7364 DECLSPECS, DECLARATOR and ATTRIBUTES are the parts of
7365 the declaration; they describe the function's name and the type it returns,
7366 but twisted together in a fashion that parallels the syntax of C.
7368 This function creates a binding context for the function body
7369 as well as setting up the FUNCTION_DECL in current_function_decl.
7371 Returns 1 on success. If the DECLARATOR is not suitable for a function
7372 (it defines a datum instead), we return 0, which tells
7373 yyparse to report a parse error. */
7376 start_function (struct c_declspecs *declspecs, struct c_declarator *declarator,
7377 tree attributes)
7379 tree decl1, old_decl;
7380 tree restype, resdecl;
7381 location_t loc;
7383 current_function_returns_value = 0; /* Assume, until we see it does. */
7384 current_function_returns_null = 0;
7385 current_function_returns_abnormally = 0;
7386 warn_about_return_type = 0;
7387 c_switch_stack = NULL;
7389 /* Indicate no valid break/continue context by setting these variables
7390 to some non-null, non-label value. We'll notice and emit the proper
7391 error message in c_finish_bc_stmt. */
7392 c_break_label = c_cont_label = size_zero_node;
7394 decl1 = grokdeclarator (declarator, declspecs, FUNCDEF, true, NULL,
7395 &attributes, NULL, NULL, DEPRECATED_NORMAL);
7397 /* If the declarator is not suitable for a function definition,
7398 cause a syntax error. */
7399 if (decl1 == 0)
7400 return 0;
7402 loc = DECL_SOURCE_LOCATION (decl1);
7404 decl_attributes (&decl1, attributes, 0);
7406 if (DECL_DECLARED_INLINE_P (decl1)
7407 && DECL_UNINLINABLE (decl1)
7408 && lookup_attribute ("noinline", DECL_ATTRIBUTES (decl1)))
7409 warning_at (loc, OPT_Wattributes,
7410 "inline function %qD given attribute noinline",
7411 decl1);
7413 /* Handle gnu_inline attribute. */
7414 if (declspecs->inline_p
7415 && !flag_gnu89_inline
7416 && TREE_CODE (decl1) == FUNCTION_DECL
7417 && (lookup_attribute ("gnu_inline", DECL_ATTRIBUTES (decl1))
7418 || current_function_decl))
7420 if (declspecs->storage_class != csc_static)
7421 DECL_EXTERNAL (decl1) = !DECL_EXTERNAL (decl1);
7424 announce_function (decl1);
7426 if (!COMPLETE_OR_VOID_TYPE_P (TREE_TYPE (TREE_TYPE (decl1))))
7428 error_at (loc, "return type is an incomplete type");
7429 /* Make it return void instead. */
7430 TREE_TYPE (decl1)
7431 = build_function_type (void_type_node,
7432 TYPE_ARG_TYPES (TREE_TYPE (decl1)));
7435 if (warn_about_return_type)
7436 pedwarn_c99 (loc, flag_isoc99 ? 0
7437 : (warn_return_type ? OPT_Wreturn_type : OPT_Wimplicit_int),
7438 "return type defaults to %<int%>");
7440 /* Make the init_value nonzero so pushdecl knows this is not tentative.
7441 error_mark_node is replaced below (in pop_scope) with the BLOCK. */
7442 DECL_INITIAL (decl1) = error_mark_node;
7444 /* If this definition isn't a prototype and we had a prototype declaration
7445 before, copy the arg type info from that prototype. */
7446 old_decl = lookup_name_in_scope (DECL_NAME (decl1), current_scope);
7447 if (old_decl && TREE_CODE (old_decl) != FUNCTION_DECL)
7448 old_decl = 0;
7449 current_function_prototype_locus = UNKNOWN_LOCATION;
7450 current_function_prototype_built_in = false;
7451 current_function_prototype_arg_types = NULL_TREE;
7452 if (TYPE_ARG_TYPES (TREE_TYPE (decl1)) == 0)
7454 if (old_decl != 0 && TREE_CODE (TREE_TYPE (old_decl)) == FUNCTION_TYPE
7455 && comptypes (TREE_TYPE (TREE_TYPE (decl1)),
7456 TREE_TYPE (TREE_TYPE (old_decl))))
7458 TREE_TYPE (decl1) = composite_type (TREE_TYPE (old_decl),
7459 TREE_TYPE (decl1));
7460 current_function_prototype_locus = DECL_SOURCE_LOCATION (old_decl);
7461 current_function_prototype_built_in
7462 = C_DECL_BUILTIN_PROTOTYPE (old_decl);
7463 current_function_prototype_arg_types
7464 = TYPE_ARG_TYPES (TREE_TYPE (decl1));
7466 if (TREE_PUBLIC (decl1))
7468 /* If there is an external prototype declaration of this
7469 function, record its location but do not copy information
7470 to this decl. This may be an invisible declaration
7471 (built-in or in a scope which has finished) or simply
7472 have more refined argument types than any declaration
7473 found above. */
7474 struct c_binding *b;
7475 for (b = I_SYMBOL_BINDING (DECL_NAME (decl1)); b; b = b->shadowed)
7476 if (B_IN_SCOPE (b, external_scope))
7477 break;
7478 if (b)
7480 tree ext_decl, ext_type;
7481 ext_decl = b->decl;
7482 ext_type = b->u.type ? b->u.type : TREE_TYPE (ext_decl);
7483 if (TREE_CODE (ext_type) == FUNCTION_TYPE
7484 && comptypes (TREE_TYPE (TREE_TYPE (decl1)),
7485 TREE_TYPE (ext_type)))
7487 current_function_prototype_locus
7488 = DECL_SOURCE_LOCATION (ext_decl);
7489 current_function_prototype_built_in
7490 = C_DECL_BUILTIN_PROTOTYPE (ext_decl);
7491 current_function_prototype_arg_types
7492 = TYPE_ARG_TYPES (ext_type);
7498 /* Optionally warn of old-fashioned def with no previous prototype. */
7499 if (warn_strict_prototypes
7500 && old_decl != error_mark_node
7501 && TYPE_ARG_TYPES (TREE_TYPE (decl1)) == 0
7502 && C_DECL_ISNT_PROTOTYPE (old_decl))
7503 warning_at (loc, OPT_Wstrict_prototypes,
7504 "function declaration isn%'t a prototype");
7505 /* Optionally warn of any global def with no previous prototype. */
7506 else if (warn_missing_prototypes
7507 && old_decl != error_mark_node
7508 && TREE_PUBLIC (decl1)
7509 && !MAIN_NAME_P (DECL_NAME (decl1))
7510 && C_DECL_ISNT_PROTOTYPE (old_decl))
7511 warning_at (loc, OPT_Wmissing_prototypes,
7512 "no previous prototype for %qD", decl1);
7513 /* Optionally warn of any def with no previous prototype
7514 if the function has already been used. */
7515 else if (warn_missing_prototypes
7516 && old_decl != 0
7517 && old_decl != error_mark_node
7518 && TREE_USED (old_decl)
7519 && TYPE_ARG_TYPES (TREE_TYPE (old_decl)) == 0)
7520 warning_at (loc, OPT_Wmissing_prototypes,
7521 "%qD was used with no prototype before its definition", decl1);
7522 /* Optionally warn of any global def with no previous declaration. */
7523 else if (warn_missing_declarations
7524 && TREE_PUBLIC (decl1)
7525 && old_decl == 0
7526 && !MAIN_NAME_P (DECL_NAME (decl1)))
7527 warning_at (loc, OPT_Wmissing_declarations,
7528 "no previous declaration for %qD",
7529 decl1);
7530 /* Optionally warn of any def with no previous declaration
7531 if the function has already been used. */
7532 else if (warn_missing_declarations
7533 && old_decl != 0
7534 && old_decl != error_mark_node
7535 && TREE_USED (old_decl)
7536 && C_DECL_IMPLICIT (old_decl))
7537 warning_at (loc, OPT_Wmissing_declarations,
7538 "%qD was used with no declaration before its definition", decl1);
7540 /* This function exists in static storage.
7541 (This does not mean `static' in the C sense!) */
7542 TREE_STATIC (decl1) = 1;
7544 /* A nested function is not global. */
7545 if (current_function_decl != 0)
7546 TREE_PUBLIC (decl1) = 0;
7548 /* This is the earliest point at which we might know the assembler
7549 name of the function. Thus, if it's set before this, die horribly. */
7550 gcc_assert (!DECL_ASSEMBLER_NAME_SET_P (decl1));
7552 /* If #pragma weak was used, mark the decl weak now. */
7553 if (current_scope == file_scope)
7554 maybe_apply_pragma_weak (decl1);
7556 /* Warn for unlikely, improbable, or stupid declarations of `main'. */
7557 if (warn_main && MAIN_NAME_P (DECL_NAME (decl1)))
7559 if (TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (decl1)))
7560 != integer_type_node)
7561 pedwarn (loc, OPT_Wmain, "return type of %qD is not %<int%>", decl1);
7563 check_main_parameter_types (decl1);
7565 if (!TREE_PUBLIC (decl1))
7566 pedwarn (loc, OPT_Wmain,
7567 "%qD is normally a non-static function", decl1);
7570 /* Record the decl so that the function name is defined.
7571 If we already have a decl for this name, and it is a FUNCTION_DECL,
7572 use the old decl. */
7574 current_function_decl = pushdecl (decl1);
7576 push_scope ();
7577 declare_parm_level ();
7579 restype = function_return_type (current_function_decl);
7580 resdecl = build_decl (loc, RESULT_DECL, NULL_TREE, restype);
7581 DECL_ARTIFICIAL (resdecl) = 1;
7582 DECL_IGNORED_P (resdecl) = 1;
7583 DECL_RESULT (current_function_decl) = resdecl;
7585 start_fname_decls ();
7587 return 1;
7590 /* Subroutine of store_parm_decls which handles new-style function
7591 definitions (prototype format). The parms already have decls, so we
7592 need only record them as in effect and complain if any redundant
7593 old-style parm decls were written. */
7594 static void
7595 store_parm_decls_newstyle (tree fndecl, const struct c_arg_info *arg_info)
7597 tree decl;
7599 if (current_scope->bindings)
7601 error_at (DECL_SOURCE_LOCATION (fndecl),
7602 "old-style parameter declarations in prototyped "
7603 "function definition");
7605 /* Get rid of the old-style declarations. */
7606 pop_scope ();
7607 push_scope ();
7609 /* Don't issue this warning for nested functions, and don't issue this
7610 warning if we got here because ARG_INFO_TYPES was error_mark_node
7611 (this happens when a function definition has just an ellipsis in
7612 its parameter list). */
7613 else if (!in_system_header && !current_function_scope
7614 && arg_info->types != error_mark_node)
7615 warning_at (DECL_SOURCE_LOCATION (fndecl), OPT_Wtraditional,
7616 "traditional C rejects ISO C style function definitions");
7618 /* Now make all the parameter declarations visible in the function body.
7619 We can bypass most of the grunt work of pushdecl. */
7620 for (decl = arg_info->parms; decl; decl = TREE_CHAIN (decl))
7622 DECL_CONTEXT (decl) = current_function_decl;
7623 if (DECL_NAME (decl))
7625 bind (DECL_NAME (decl), decl, current_scope,
7626 /*invisible=*/false, /*nested=*/false,
7627 UNKNOWN_LOCATION);
7628 if (!TREE_USED (decl))
7629 warn_if_shadowing (decl);
7631 else
7633 /* Parameters in IFUNC function are never used. */
7634 if (!DECL_IS_IFUNC (current_function_decl))
7635 error_at (DECL_SOURCE_LOCATION (decl),
7636 "parameter name omitted");
7640 /* Record the parameter list in the function declaration. */
7641 DECL_ARGUMENTS (fndecl) = arg_info->parms;
7643 /* Now make all the ancillary declarations visible, likewise. */
7644 for (decl = arg_info->others; decl; decl = TREE_CHAIN (decl))
7646 DECL_CONTEXT (decl) = current_function_decl;
7647 if (DECL_NAME (decl))
7648 bind (DECL_NAME (decl), decl, current_scope,
7649 /*invisible=*/false, /*nested=*/false, UNKNOWN_LOCATION);
7652 /* And all the tag declarations. */
7653 for (decl = arg_info->tags; decl; decl = TREE_CHAIN (decl))
7654 if (TREE_PURPOSE (decl))
7655 bind (TREE_PURPOSE (decl), TREE_VALUE (decl), current_scope,
7656 /*invisible=*/false, /*nested=*/false, UNKNOWN_LOCATION);
7659 /* Subroutine of store_parm_decls which handles old-style function
7660 definitions (separate parameter list and declarations). */
7662 static void
7663 store_parm_decls_oldstyle (tree fndecl, const struct c_arg_info *arg_info)
7665 struct c_binding *b;
7666 tree parm, decl, last;
7667 tree parmids = arg_info->parms;
7668 struct pointer_set_t *seen_args = pointer_set_create ();
7670 if (!in_system_header)
7671 warning_at (DECL_SOURCE_LOCATION (fndecl),
7672 OPT_Wold_style_definition, "old-style function definition");
7674 /* Match each formal parameter name with its declaration. Save each
7675 decl in the appropriate TREE_PURPOSE slot of the parmids chain. */
7676 for (parm = parmids; parm; parm = TREE_CHAIN (parm))
7678 if (TREE_VALUE (parm) == 0)
7680 error_at (DECL_SOURCE_LOCATION (fndecl),
7681 "parameter name missing from parameter list");
7682 TREE_PURPOSE (parm) = 0;
7683 continue;
7686 b = I_SYMBOL_BINDING (TREE_VALUE (parm));
7687 if (b && B_IN_CURRENT_SCOPE (b))
7689 decl = b->decl;
7690 /* If we got something other than a PARM_DECL it is an error. */
7691 if (TREE_CODE (decl) != PARM_DECL)
7692 error_at (DECL_SOURCE_LOCATION (decl),
7693 "%qD declared as a non-parameter", decl);
7694 /* If the declaration is already marked, we have a duplicate
7695 name. Complain and ignore the duplicate. */
7696 else if (pointer_set_contains (seen_args, decl))
7698 error_at (DECL_SOURCE_LOCATION (decl),
7699 "multiple parameters named %qD", decl);
7700 TREE_PURPOSE (parm) = 0;
7701 continue;
7703 /* If the declaration says "void", complain and turn it into
7704 an int. */
7705 else if (VOID_TYPE_P (TREE_TYPE (decl)))
7707 error_at (DECL_SOURCE_LOCATION (decl),
7708 "parameter %qD declared with void type", decl);
7709 TREE_TYPE (decl) = integer_type_node;
7710 DECL_ARG_TYPE (decl) = integer_type_node;
7711 layout_decl (decl, 0);
7713 warn_if_shadowing (decl);
7715 /* If no declaration found, default to int. */
7716 else
7718 /* FIXME diagnostics: This should be the location of the argument,
7719 not the FNDECL. E.g., for an old-style declaration
7721 int f10(v) { blah; }
7723 We should use the location of the V, not the F10.
7724 Unfortunately, the V is an IDENTIFIER_NODE which has no
7725 location. In the future we need locations for c_arg_info
7726 entries.
7728 See gcc.dg/Wshadow-3.c for an example of this problem. */
7729 decl = build_decl (DECL_SOURCE_LOCATION (fndecl),
7730 PARM_DECL, TREE_VALUE (parm), integer_type_node);
7731 DECL_ARG_TYPE (decl) = TREE_TYPE (decl);
7732 pushdecl (decl);
7733 warn_if_shadowing (decl);
7735 if (flag_isoc99)
7736 pedwarn (DECL_SOURCE_LOCATION (decl),
7737 0, "type of %qD defaults to %<int%>", decl);
7738 else
7739 warning_at (DECL_SOURCE_LOCATION (decl),
7740 OPT_Wmissing_parameter_type,
7741 "type of %qD defaults to %<int%>", decl);
7744 TREE_PURPOSE (parm) = decl;
7745 pointer_set_insert (seen_args, decl);
7748 /* Now examine the parms chain for incomplete declarations
7749 and declarations with no corresponding names. */
7751 for (b = current_scope->bindings; b; b = b->prev)
7753 parm = b->decl;
7754 if (TREE_CODE (parm) != PARM_DECL)
7755 continue;
7757 if (TREE_TYPE (parm) != error_mark_node
7758 && !COMPLETE_TYPE_P (TREE_TYPE (parm)))
7760 error_at (DECL_SOURCE_LOCATION (parm),
7761 "parameter %qD has incomplete type", parm);
7762 TREE_TYPE (parm) = error_mark_node;
7765 if (!pointer_set_contains (seen_args, parm))
7767 error_at (DECL_SOURCE_LOCATION (parm),
7768 "declaration for parameter %qD but no such parameter",
7769 parm);
7771 /* Pretend the parameter was not missing.
7772 This gets us to a standard state and minimizes
7773 further error messages. */
7774 parmids = chainon (parmids, tree_cons (parm, 0, 0));
7778 /* Chain the declarations together in the order of the list of
7779 names. Store that chain in the function decl, replacing the
7780 list of names. Update the current scope to match. */
7781 DECL_ARGUMENTS (fndecl) = 0;
7783 for (parm = parmids; parm; parm = TREE_CHAIN (parm))
7784 if (TREE_PURPOSE (parm))
7785 break;
7786 if (parm && TREE_PURPOSE (parm))
7788 last = TREE_PURPOSE (parm);
7789 DECL_ARGUMENTS (fndecl) = last;
7791 for (parm = TREE_CHAIN (parm); parm; parm = TREE_CHAIN (parm))
7792 if (TREE_PURPOSE (parm))
7794 TREE_CHAIN (last) = TREE_PURPOSE (parm);
7795 last = TREE_PURPOSE (parm);
7797 TREE_CHAIN (last) = 0;
7800 pointer_set_destroy (seen_args);
7802 /* If there was a previous prototype,
7803 set the DECL_ARG_TYPE of each argument according to
7804 the type previously specified, and report any mismatches. */
7806 if (current_function_prototype_arg_types)
7808 tree type;
7809 for (parm = DECL_ARGUMENTS (fndecl),
7810 type = current_function_prototype_arg_types;
7811 parm || (type && TREE_VALUE (type) != error_mark_node
7812 && (TYPE_MAIN_VARIANT (TREE_VALUE (type)) != void_type_node));
7813 parm = TREE_CHAIN (parm), type = TREE_CHAIN (type))
7815 if (parm == 0 || type == 0
7816 || TYPE_MAIN_VARIANT (TREE_VALUE (type)) == void_type_node)
7818 if (current_function_prototype_built_in)
7819 warning_at (DECL_SOURCE_LOCATION (fndecl),
7820 0, "number of arguments doesn%'t match "
7821 "built-in prototype");
7822 else
7824 /* FIXME diagnostics: This should be the location of
7825 FNDECL, but there is bug when a prototype is
7826 declared inside function context, but defined
7827 outside of it (e.g., gcc.dg/pr15698-2.c). In
7828 which case FNDECL gets the location of the
7829 prototype, not the definition. */
7830 error_at (input_location,
7831 "number of arguments doesn%'t match prototype");
7833 error_at (current_function_prototype_locus,
7834 "prototype declaration");
7836 break;
7838 /* Type for passing arg must be consistent with that
7839 declared for the arg. ISO C says we take the unqualified
7840 type for parameters declared with qualified type. */
7841 if (TREE_TYPE (parm) != error_mark_node
7842 && TREE_TYPE (type) != error_mark_node
7843 && !comptypes (TYPE_MAIN_VARIANT (DECL_ARG_TYPE (parm)),
7844 TYPE_MAIN_VARIANT (TREE_VALUE (type))))
7846 if (TYPE_MAIN_VARIANT (TREE_TYPE (parm))
7847 == TYPE_MAIN_VARIANT (TREE_VALUE (type)))
7849 /* Adjust argument to match prototype. E.g. a previous
7850 `int foo(float);' prototype causes
7851 `int foo(x) float x; {...}' to be treated like
7852 `int foo(float x) {...}'. This is particularly
7853 useful for argument types like uid_t. */
7854 DECL_ARG_TYPE (parm) = TREE_TYPE (parm);
7856 if (targetm.calls.promote_prototypes (TREE_TYPE (current_function_decl))
7857 && INTEGRAL_TYPE_P (TREE_TYPE (parm))
7858 && TYPE_PRECISION (TREE_TYPE (parm))
7859 < TYPE_PRECISION (integer_type_node))
7860 DECL_ARG_TYPE (parm) = integer_type_node;
7862 /* ??? Is it possible to get here with a
7863 built-in prototype or will it always have
7864 been diagnosed as conflicting with an
7865 old-style definition and discarded? */
7866 if (current_function_prototype_built_in)
7867 warning_at (DECL_SOURCE_LOCATION (parm),
7868 OPT_pedantic, "promoted argument %qD "
7869 "doesn%'t match built-in prototype", parm);
7870 else
7872 pedwarn (DECL_SOURCE_LOCATION (parm),
7873 OPT_pedantic, "promoted argument %qD "
7874 "doesn%'t match prototype", parm);
7875 pedwarn (current_function_prototype_locus, OPT_pedantic,
7876 "prototype declaration");
7879 else
7881 if (current_function_prototype_built_in)
7882 warning_at (DECL_SOURCE_LOCATION (parm),
7883 0, "argument %qD doesn%'t match "
7884 "built-in prototype", parm);
7885 else
7887 error_at (DECL_SOURCE_LOCATION (parm),
7888 "argument %qD doesn%'t match prototype", parm);
7889 error_at (current_function_prototype_locus,
7890 "prototype declaration");
7895 TYPE_ACTUAL_ARG_TYPES (TREE_TYPE (fndecl)) = 0;
7898 /* Otherwise, create a prototype that would match. */
7900 else
7902 tree actual = 0, last = 0, type;
7904 for (parm = DECL_ARGUMENTS (fndecl); parm; parm = TREE_CHAIN (parm))
7906 type = tree_cons (NULL_TREE, DECL_ARG_TYPE (parm), NULL_TREE);
7907 if (last)
7908 TREE_CHAIN (last) = type;
7909 else
7910 actual = type;
7911 last = type;
7913 type = tree_cons (NULL_TREE, void_type_node, NULL_TREE);
7914 if (last)
7915 TREE_CHAIN (last) = type;
7916 else
7917 actual = type;
7919 /* We are going to assign a new value for the TYPE_ACTUAL_ARG_TYPES
7920 of the type of this function, but we need to avoid having this
7921 affect the types of other similarly-typed functions, so we must
7922 first force the generation of an identical (but separate) type
7923 node for the relevant function type. The new node we create
7924 will be a variant of the main variant of the original function
7925 type. */
7927 TREE_TYPE (fndecl) = build_variant_type_copy (TREE_TYPE (fndecl));
7929 TYPE_ACTUAL_ARG_TYPES (TREE_TYPE (fndecl)) = actual;
7933 /* Store parameter declarations passed in ARG_INFO into the current
7934 function declaration. */
7936 void
7937 store_parm_decls_from (struct c_arg_info *arg_info)
7939 current_function_arg_info = arg_info;
7940 store_parm_decls ();
7943 /* Store the parameter declarations into the current function declaration.
7944 This is called after parsing the parameter declarations, before
7945 digesting the body of the function.
7947 For an old-style definition, construct a prototype out of the old-style
7948 parameter declarations and inject it into the function's type. */
7950 void
7951 store_parm_decls (void)
7953 tree fndecl = current_function_decl;
7954 bool proto;
7956 /* The argument information block for FNDECL. */
7957 struct c_arg_info *arg_info = current_function_arg_info;
7958 current_function_arg_info = 0;
7960 /* True if this definition is written with a prototype. Note:
7961 despite C99 6.7.5.3p14, we can *not* treat an empty argument
7962 list in a function definition as equivalent to (void) -- an
7963 empty argument list specifies the function has no parameters,
7964 but only (void) sets up a prototype for future calls. */
7965 proto = arg_info->types != 0;
7967 if (proto)
7968 store_parm_decls_newstyle (fndecl, arg_info);
7969 else
7970 store_parm_decls_oldstyle (fndecl, arg_info);
7972 /* The next call to push_scope will be a function body. */
7974 next_is_function_body = true;
7976 /* Write a record describing this function definition to the prototypes
7977 file (if requested). */
7979 gen_aux_info_record (fndecl, 1, 0, proto);
7981 /* Initialize the RTL code for the function. */
7982 allocate_struct_function (fndecl, false);
7984 /* Begin the statement tree for this function. */
7985 DECL_SAVED_TREE (fndecl) = push_stmt_list ();
7987 /* ??? Insert the contents of the pending sizes list into the function
7988 to be evaluated. The only reason left to have this is
7989 void foo(int n, int array[n++])
7990 because we throw away the array type in favor of a pointer type, and
7991 thus won't naturally see the SAVE_EXPR containing the increment. All
7992 other pending sizes would be handled by gimplify_parameters. */
7994 tree t;
7995 for (t = nreverse (get_pending_sizes ()); t ; t = TREE_CHAIN (t))
7996 add_stmt (TREE_VALUE (t));
7999 /* Even though we're inside a function body, we still don't want to
8000 call expand_expr to calculate the size of a variable-sized array.
8001 We haven't necessarily assigned RTL to all variables yet, so it's
8002 not safe to try to expand expressions involving them. */
8003 cfun->dont_save_pending_sizes_p = 1;
8007 /* Finish up a function declaration and compile that function
8008 all the way to assembler language output. The free the storage
8009 for the function definition.
8011 This is called after parsing the body of the function definition. */
8013 void
8014 finish_function (void)
8016 tree fndecl = current_function_decl;
8018 if (TREE_CODE (fndecl) == FUNCTION_DECL
8019 && targetm.calls.promote_prototypes (TREE_TYPE (fndecl)))
8021 tree args = DECL_ARGUMENTS (fndecl);
8022 for (; args; args = TREE_CHAIN (args))
8024 tree type = TREE_TYPE (args);
8025 if (INTEGRAL_TYPE_P (type)
8026 && TYPE_PRECISION (type) < TYPE_PRECISION (integer_type_node))
8027 DECL_ARG_TYPE (args) = integer_type_node;
8031 if (DECL_INITIAL (fndecl) && DECL_INITIAL (fndecl) != error_mark_node)
8032 BLOCK_SUPERCONTEXT (DECL_INITIAL (fndecl)) = fndecl;
8034 /* Must mark the RESULT_DECL as being in this function. */
8036 if (DECL_RESULT (fndecl) && DECL_RESULT (fndecl) != error_mark_node)
8037 DECL_CONTEXT (DECL_RESULT (fndecl)) = fndecl;
8039 if (MAIN_NAME_P (DECL_NAME (fndecl)) && flag_hosted
8040 && TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (fndecl)))
8041 == integer_type_node && flag_isoc99)
8043 /* Hack. We don't want the middle-end to warn that this return
8044 is unreachable, so we mark its location as special. Using
8045 UNKNOWN_LOCATION has the problem that it gets clobbered in
8046 annotate_one_with_locus. A cleaner solution might be to
8047 ensure ! should_carry_locus_p (stmt), but that needs a flag.
8049 c_finish_return (BUILTINS_LOCATION, integer_zero_node, NULL_TREE);
8052 /* Tie off the statement tree for this function. */
8053 DECL_SAVED_TREE (fndecl) = pop_stmt_list (DECL_SAVED_TREE (fndecl));
8055 finish_fname_decls ();
8057 /* Complain if there's just no return statement. */
8058 if ((warn_return_type
8059 || DECL_IS_IFUNC (fndecl))
8060 && TREE_CODE (function_return_type (fndecl)) != VOID_TYPE
8061 && !current_function_returns_value && !current_function_returns_null
8062 /* Don't complain if we are no-return. */
8063 && !current_function_returns_abnormally
8064 /* Don't complain if we are declared noreturn. */
8065 && !TREE_THIS_VOLATILE (fndecl)
8066 /* Don't warn for main(). */
8067 && !MAIN_NAME_P (DECL_NAME (fndecl))
8068 /* Or if they didn't actually specify a return type. */
8069 && !C_FUNCTION_IMPLICIT_INT (fndecl)
8070 /* Normally, with -Wreturn-type, flow will complain, but we might
8071 optimize out static functions. */
8072 && !TREE_PUBLIC (fndecl))
8074 if (DECL_IS_IFUNC (fndecl))
8075 error ("control reaches end of indirect function");
8076 else
8077 warning (OPT_Wreturn_type,
8078 "no return statement in function returning non-void");
8079 TREE_NO_WARNING (fndecl) = 1;
8082 /* Store the end of the function, so that we get good line number
8083 info for the epilogue. */
8084 cfun->function_end_locus = input_location;
8086 /* Finalize the ELF visibility for the function. */
8087 c_determine_visibility (fndecl);
8089 /* For GNU C extern inline functions disregard inline limits. */
8090 if (DECL_EXTERNAL (fndecl)
8091 && DECL_DECLARED_INLINE_P (fndecl))
8092 DECL_DISREGARD_INLINE_LIMITS (fndecl) = 1;
8094 /* Genericize before inlining. Delay genericizing nested functions
8095 until their parent function is genericized. Since finalizing
8096 requires GENERIC, delay that as well. */
8098 if (DECL_INITIAL (fndecl) && DECL_INITIAL (fndecl) != error_mark_node
8099 && !undef_nested_function)
8101 if (!decl_function_context (fndecl))
8103 invoke_plugin_callbacks (PLUGIN_PRE_GENERICIZE, fndecl);
8104 c_genericize (fndecl);
8106 /* ??? Objc emits functions after finalizing the compilation unit.
8107 This should be cleaned up later and this conditional removed. */
8108 if (cgraph_global_info_ready)
8110 cgraph_add_new_function (fndecl, false);
8111 return;
8113 cgraph_finalize_function (fndecl, false);
8115 else
8117 /* Register this function with cgraph just far enough to get it
8118 added to our parent's nested function list. Handy, since the
8119 C front end doesn't have such a list. */
8120 (void) cgraph_node (fndecl);
8124 if (!decl_function_context (fndecl))
8125 undef_nested_function = false;
8127 /* We're leaving the context of this function, so zap cfun.
8128 It's still in DECL_STRUCT_FUNCTION, and we'll restore it in
8129 tree_rest_of_compilation. */
8130 set_cfun (NULL);
8131 current_function_decl = NULL;
8134 /* Check the declarations given in a for-loop for satisfying the C99
8135 constraints. If exactly one such decl is found, return it. LOC is
8136 the location of the opening parenthesis of the for loop. */
8138 tree
8139 check_for_loop_decls (location_t loc)
8141 struct c_binding *b;
8142 tree one_decl = NULL_TREE;
8143 int n_decls = 0;
8145 if (!flag_isoc99)
8147 static bool hint = true;
8148 /* If we get here, declarations have been used in a for loop without
8149 the C99 for loop scope. This doesn't make much sense, so don't
8150 allow it. */
8151 error_at (loc, "%<for%> loop initial declarations "
8152 "are only allowed in C99 mode");
8153 if (hint)
8155 inform (loc,
8156 "use option -std=c99 or -std=gnu99 to compile your code");
8157 hint = false;
8159 return NULL_TREE;
8161 /* C99 subclause 6.8.5 paragraph 3:
8163 [#3] The declaration part of a for statement shall only
8164 declare identifiers for objects having storage class auto or
8165 register.
8167 It isn't clear whether, in this sentence, "identifiers" binds to
8168 "shall only declare" or to "objects" - that is, whether all identifiers
8169 declared must be identifiers for objects, or whether the restriction
8170 only applies to those that are. (A question on this in comp.std.c
8171 in November 2000 received no answer.) We implement the strictest
8172 interpretation, to avoid creating an extension which later causes
8173 problems. */
8175 for (b = current_scope->bindings; b; b = b->prev)
8177 tree id = b->id;
8178 tree decl = b->decl;
8180 if (!id)
8181 continue;
8183 switch (TREE_CODE (decl))
8185 case VAR_DECL:
8187 location_t decl_loc = DECL_SOURCE_LOCATION (decl);
8188 if (TREE_STATIC (decl))
8189 error_at (decl_loc,
8190 "declaration of static variable %qD in %<for%> loop "
8191 "initial declaration", decl);
8192 else if (DECL_EXTERNAL (decl))
8193 error_at (decl_loc,
8194 "declaration of %<extern%> variable %qD in %<for%> loop "
8195 "initial declaration", decl);
8197 break;
8199 case RECORD_TYPE:
8200 error_at (loc,
8201 "%<struct %E%> declared in %<for%> loop initial "
8202 "declaration", id);
8203 break;
8204 case UNION_TYPE:
8205 error_at (loc,
8206 "%<union %E%> declared in %<for%> loop initial declaration",
8207 id);
8208 break;
8209 case ENUMERAL_TYPE:
8210 error_at (loc, "%<enum %E%> declared in %<for%> loop "
8211 "initial declaration", id);
8212 break;
8213 default:
8214 error_at (loc, "declaration of non-variable "
8215 "%qD in %<for%> loop initial declaration", decl);
8218 n_decls++;
8219 one_decl = decl;
8222 return n_decls == 1 ? one_decl : NULL_TREE;
8225 /* Save and reinitialize the variables
8226 used during compilation of a C function. */
8228 void
8229 c_push_function_context (void)
8231 struct language_function *p;
8232 p = GGC_NEW (struct language_function);
8233 cfun->language = p;
8235 p->base.x_stmt_tree = c_stmt_tree;
8236 p->x_break_label = c_break_label;
8237 p->x_cont_label = c_cont_label;
8238 p->x_switch_stack = c_switch_stack;
8239 p->arg_info = current_function_arg_info;
8240 p->returns_value = current_function_returns_value;
8241 p->returns_null = current_function_returns_null;
8242 p->returns_abnormally = current_function_returns_abnormally;
8243 p->warn_about_return_type = warn_about_return_type;
8245 push_function_context ();
8248 /* Restore the variables used during compilation of a C function. */
8250 void
8251 c_pop_function_context (void)
8253 struct language_function *p;
8255 pop_function_context ();
8256 p = cfun->language;
8257 cfun->language = NULL;
8259 if (DECL_STRUCT_FUNCTION (current_function_decl) == 0
8260 && DECL_SAVED_TREE (current_function_decl) == NULL_TREE)
8262 /* Stop pointing to the local nodes about to be freed. */
8263 /* But DECL_INITIAL must remain nonzero so we know this
8264 was an actual function definition. */
8265 DECL_INITIAL (current_function_decl) = error_mark_node;
8266 DECL_ARGUMENTS (current_function_decl) = 0;
8269 c_stmt_tree = p->base.x_stmt_tree;
8270 c_break_label = p->x_break_label;
8271 c_cont_label = p->x_cont_label;
8272 c_switch_stack = p->x_switch_stack;
8273 current_function_arg_info = p->arg_info;
8274 current_function_returns_value = p->returns_value;
8275 current_function_returns_null = p->returns_null;
8276 current_function_returns_abnormally = p->returns_abnormally;
8277 warn_about_return_type = p->warn_about_return_type;
8280 /* The functions below are required for functionality of doing
8281 function at once processing in the C front end. Currently these
8282 functions are not called from anywhere in the C front end, but as
8283 these changes continue, that will change. */
8285 /* Returns the stmt_tree (if any) to which statements are currently
8286 being added. If there is no active statement-tree, NULL is
8287 returned. */
8289 stmt_tree
8290 current_stmt_tree (void)
8292 return &c_stmt_tree;
8295 /* Return the global value of T as a symbol. */
8297 tree
8298 identifier_global_value (tree t)
8300 struct c_binding *b;
8302 for (b = I_SYMBOL_BINDING (t); b; b = b->shadowed)
8303 if (B_IN_FILE_SCOPE (b) || B_IN_EXTERNAL_SCOPE (b))
8304 return b->decl;
8306 return 0;
8309 /* Record a builtin type for C. If NAME is non-NULL, it is the name used;
8310 otherwise the name is found in ridpointers from RID_INDEX. */
8312 void
8313 record_builtin_type (enum rid rid_index, const char *name, tree type)
8315 tree id, decl;
8316 if (name == 0)
8317 id = ridpointers[(int) rid_index];
8318 else
8319 id = get_identifier (name);
8320 decl = build_decl (UNKNOWN_LOCATION, TYPE_DECL, id, type);
8321 pushdecl (decl);
8322 if (debug_hooks->type_decl)
8323 debug_hooks->type_decl (decl, false);
8326 /* Build the void_list_node (void_type_node having been created). */
8327 tree
8328 build_void_list_node (void)
8330 tree t = build_tree_list (NULL_TREE, void_type_node);
8331 return t;
8334 /* Return a c_parm structure with the given SPECS, ATTRS and DECLARATOR. */
8336 struct c_parm *
8337 build_c_parm (struct c_declspecs *specs, tree attrs,
8338 struct c_declarator *declarator)
8340 struct c_parm *ret = XOBNEW (&parser_obstack, struct c_parm);
8341 ret->specs = specs;
8342 ret->attrs = attrs;
8343 ret->declarator = declarator;
8344 return ret;
8347 /* Return a declarator with nested attributes. TARGET is the inner
8348 declarator to which these attributes apply. ATTRS are the
8349 attributes. */
8351 struct c_declarator *
8352 build_attrs_declarator (tree attrs, struct c_declarator *target)
8354 struct c_declarator *ret = XOBNEW (&parser_obstack, struct c_declarator);
8355 ret->kind = cdk_attrs;
8356 ret->declarator = target;
8357 ret->u.attrs = attrs;
8358 return ret;
8361 /* Return a declarator for a function with arguments specified by ARGS
8362 and return type specified by TARGET. */
8364 struct c_declarator *
8365 build_function_declarator (struct c_arg_info *args,
8366 struct c_declarator *target)
8368 struct c_declarator *ret = XOBNEW (&parser_obstack, struct c_declarator);
8369 ret->kind = cdk_function;
8370 ret->declarator = target;
8371 ret->u.arg_info = args;
8372 return ret;
8375 /* Return a declarator for the identifier IDENT (which may be
8376 NULL_TREE for an abstract declarator). */
8378 struct c_declarator *
8379 build_id_declarator (tree ident)
8381 struct c_declarator *ret = XOBNEW (&parser_obstack, struct c_declarator);
8382 ret->kind = cdk_id;
8383 ret->declarator = 0;
8384 ret->u.id = ident;
8385 /* Default value - may get reset to a more precise location. */
8386 ret->id_loc = input_location;
8387 return ret;
8390 /* Return something to represent absolute declarators containing a *.
8391 TARGET is the absolute declarator that the * contains.
8392 TYPE_QUALS_ATTRS is a structure for type qualifiers and attributes
8393 to apply to the pointer type. */
8395 struct c_declarator *
8396 make_pointer_declarator (struct c_declspecs *type_quals_attrs,
8397 struct c_declarator *target)
8399 tree attrs;
8400 int quals = 0;
8401 struct c_declarator *itarget = target;
8402 struct c_declarator *ret = XOBNEW (&parser_obstack, struct c_declarator);
8403 if (type_quals_attrs)
8405 attrs = type_quals_attrs->attrs;
8406 quals = quals_from_declspecs (type_quals_attrs);
8407 if (attrs != NULL_TREE)
8408 itarget = build_attrs_declarator (attrs, target);
8410 ret->kind = cdk_pointer;
8411 ret->declarator = itarget;
8412 ret->u.pointer_quals = quals;
8413 return ret;
8416 /* Return a pointer to a structure for an empty list of declaration
8417 specifiers. */
8419 struct c_declspecs *
8420 build_null_declspecs (void)
8422 struct c_declspecs *ret = XOBNEW (&parser_obstack, struct c_declspecs);
8423 ret->type = 0;
8424 ret->expr = 0;
8425 ret->decl_attr = 0;
8426 ret->attrs = 0;
8427 ret->typespec_word = cts_none;
8428 ret->storage_class = csc_none;
8429 ret->expr_const_operands = true;
8430 ret->declspecs_seen_p = false;
8431 ret->type_seen_p = false;
8432 ret->non_sc_seen_p = false;
8433 ret->typedef_p = false;
8434 ret->tag_defined_p = false;
8435 ret->explicit_signed_p = false;
8436 ret->deprecated_p = false;
8437 ret->default_int_p = false;
8438 ret->long_p = false;
8439 ret->long_long_p = false;
8440 ret->short_p = false;
8441 ret->signed_p = false;
8442 ret->unsigned_p = false;
8443 ret->complex_p = false;
8444 ret->inline_p = false;
8445 ret->thread_p = false;
8446 ret->const_p = false;
8447 ret->volatile_p = false;
8448 ret->restrict_p = false;
8449 ret->saturating_p = false;
8450 ret->address_space = ADDR_SPACE_GENERIC;
8451 return ret;
8454 /* Add the address space ADDRSPACE to the declaration specifiers
8455 SPECS, returning SPECS. */
8457 struct c_declspecs *
8458 declspecs_add_addrspace (struct c_declspecs *specs, addr_space_t as)
8460 specs->non_sc_seen_p = true;
8461 specs->declspecs_seen_p = true;
8463 if (!ADDR_SPACE_GENERIC_P (specs->address_space)
8464 && specs->address_space != as)
8465 error ("incompatible address space qualifiers %qs and %qs",
8466 c_addr_space_name (as),
8467 c_addr_space_name (specs->address_space));
8468 else
8469 specs->address_space = as;
8470 return specs;
8473 /* Add the type qualifier QUAL to the declaration specifiers SPECS,
8474 returning SPECS. */
8476 struct c_declspecs *
8477 declspecs_add_qual (struct c_declspecs *specs, tree qual)
8479 enum rid i;
8480 bool dupe = false;
8481 specs->non_sc_seen_p = true;
8482 specs->declspecs_seen_p = true;
8483 gcc_assert (TREE_CODE (qual) == IDENTIFIER_NODE
8484 && C_IS_RESERVED_WORD (qual));
8485 i = C_RID_CODE (qual);
8486 switch (i)
8488 case RID_CONST:
8489 dupe = specs->const_p;
8490 specs->const_p = true;
8491 break;
8492 case RID_VOLATILE:
8493 dupe = specs->volatile_p;
8494 specs->volatile_p = true;
8495 break;
8496 case RID_RESTRICT:
8497 dupe = specs->restrict_p;
8498 specs->restrict_p = true;
8499 break;
8500 default:
8501 gcc_unreachable ();
8503 if (dupe && !flag_isoc99)
8504 pedwarn (input_location, OPT_pedantic, "duplicate %qE", qual);
8505 return specs;
8508 /* Add the type specifier TYPE to the declaration specifiers SPECS,
8509 returning SPECS. */
8511 struct c_declspecs *
8512 declspecs_add_type (location_t loc, struct c_declspecs *specs,
8513 struct c_typespec spec)
8515 tree type = spec.spec;
8516 specs->non_sc_seen_p = true;
8517 specs->declspecs_seen_p = true;
8518 specs->type_seen_p = true;
8519 if (TREE_DEPRECATED (type))
8520 specs->deprecated_p = true;
8522 /* Handle type specifier keywords. */
8523 if (TREE_CODE (type) == IDENTIFIER_NODE
8524 && C_IS_RESERVED_WORD (type)
8525 && C_RID_CODE (type) != RID_CXX_COMPAT_WARN)
8527 enum rid i = C_RID_CODE (type);
8528 if (specs->type)
8530 error_at (loc, "two or more data types in declaration specifiers");
8531 return specs;
8533 if ((int) i <= (int) RID_LAST_MODIFIER)
8535 /* "long", "short", "signed", "unsigned", "_Complex" or "_Sat". */
8536 bool dupe = false;
8537 switch (i)
8539 case RID_LONG:
8540 if (specs->long_long_p)
8542 error_at (loc, "%<long long long%> is too long for GCC");
8543 break;
8545 if (specs->long_p)
8547 if (specs->typespec_word == cts_double)
8549 error_at (loc,
8550 ("both %<long long%> and %<double%> in "
8551 "declaration specifiers"));
8552 break;
8554 pedwarn_c90 (loc, OPT_Wlong_long,
8555 "ISO C90 does not support %<long long%>");
8556 specs->long_long_p = 1;
8557 break;
8559 if (specs->short_p)
8560 error_at (loc,
8561 ("both %<long%> and %<short%> in "
8562 "declaration specifiers"));
8563 else if (specs->typespec_word == cts_void)
8564 error_at (loc,
8565 ("both %<long%> and %<void%> in "
8566 "declaration specifiers"));
8567 else if (specs->typespec_word == cts_bool)
8568 error_at (loc,
8569 ("both %<long%> and %<_Bool%> in "
8570 "declaration specifiers"));
8571 else if (specs->typespec_word == cts_char)
8572 error_at (loc,
8573 ("both %<long%> and %<char%> in "
8574 "declaration specifiers"));
8575 else if (specs->typespec_word == cts_float)
8576 error_at (loc,
8577 ("both %<long%> and %<float%> in "
8578 "declaration specifiers"));
8579 else if (specs->typespec_word == cts_dfloat32)
8580 error_at (loc,
8581 ("both %<long%> and %<_Decimal32%> in "
8582 "declaration specifiers"));
8583 else if (specs->typespec_word == cts_dfloat64)
8584 error_at (loc,
8585 ("both %<long%> and %<_Decimal64%> in "
8586 "declaration specifiers"));
8587 else if (specs->typespec_word == cts_dfloat128)
8588 error_at (loc,
8589 ("both %<long%> and %<_Decimal128%> in "
8590 "declaration specifiers"));
8591 else
8592 specs->long_p = true;
8593 break;
8594 case RID_SHORT:
8595 dupe = specs->short_p;
8596 if (specs->long_p)
8597 error_at (loc,
8598 ("both %<long%> and %<short%> in "
8599 "declaration specifiers"));
8600 else if (specs->typespec_word == cts_void)
8601 error_at (loc,
8602 ("both %<short%> and %<void%> in "
8603 "declaration specifiers"));
8604 else if (specs->typespec_word == cts_bool)
8605 error_at (loc,
8606 ("both %<short%> and %<_Bool%> in "
8607 "declaration specifiers"));
8608 else if (specs->typespec_word == cts_char)
8609 error_at (loc,
8610 ("both %<short%> and %<char%> in "
8611 "declaration specifiers"));
8612 else if (specs->typespec_word == cts_float)
8613 error_at (loc,
8614 ("both %<short%> and %<float%> in "
8615 "declaration specifiers"));
8616 else if (specs->typespec_word == cts_double)
8617 error_at (loc,
8618 ("both %<short%> and %<double%> in "
8619 "declaration specifiers"));
8620 else if (specs->typespec_word == cts_dfloat32)
8621 error_at (loc,
8622 ("both %<short%> and %<_Decimal32%> in "
8623 "declaration specifiers"));
8624 else if (specs->typespec_word == cts_dfloat64)
8625 error_at (loc,
8626 ("both %<short%> and %<_Decimal64%> in "
8627 "declaration specifiers"));
8628 else if (specs->typespec_word == cts_dfloat128)
8629 error_at (loc,
8630 ("both %<short%> and %<_Decimal128%> in "
8631 "declaration specifiers"));
8632 else
8633 specs->short_p = true;
8634 break;
8635 case RID_SIGNED:
8636 dupe = specs->signed_p;
8637 if (specs->unsigned_p)
8638 error_at (loc,
8639 ("both %<signed%> and %<unsigned%> in "
8640 "declaration specifiers"));
8641 else if (specs->typespec_word == cts_void)
8642 error_at (loc,
8643 ("both %<signed%> and %<void%> in "
8644 "declaration specifiers"));
8645 else if (specs->typespec_word == cts_bool)
8646 error_at (loc,
8647 ("both %<signed%> and %<_Bool%> in "
8648 "declaration specifiers"));
8649 else if (specs->typespec_word == cts_float)
8650 error_at (loc,
8651 ("both %<signed%> and %<float%> in "
8652 "declaration specifiers"));
8653 else if (specs->typespec_word == cts_double)
8654 error_at (loc,
8655 ("both %<signed%> and %<double%> in "
8656 "declaration specifiers"));
8657 else if (specs->typespec_word == cts_dfloat32)
8658 error_at (loc,
8659 ("both %<signed%> and %<_Decimal32%> in "
8660 "declaration specifiers"));
8661 else if (specs->typespec_word == cts_dfloat64)
8662 error_at (loc,
8663 ("both %<signed%> and %<_Decimal64%> in "
8664 "declaration specifiers"));
8665 else if (specs->typespec_word == cts_dfloat128)
8666 error_at (loc,
8667 ("both %<signed%> and %<_Decimal128%> in "
8668 "declaration specifiers"));
8669 else
8670 specs->signed_p = true;
8671 break;
8672 case RID_UNSIGNED:
8673 dupe = specs->unsigned_p;
8674 if (specs->signed_p)
8675 error_at (loc,
8676 ("both %<signed%> and %<unsigned%> in "
8677 "declaration specifiers"));
8678 else if (specs->typespec_word == cts_void)
8679 error_at (loc,
8680 ("both %<unsigned%> and %<void%> in "
8681 "declaration specifiers"));
8682 else if (specs->typespec_word == cts_bool)
8683 error_at (loc,
8684 ("both %<unsigned%> and %<_Bool%> in "
8685 "declaration specifiers"));
8686 else if (specs->typespec_word == cts_float)
8687 error_at (loc,
8688 ("both %<unsigned%> and %<float%> in "
8689 "declaration specifiers"));
8690 else if (specs->typespec_word == cts_double)
8691 error_at (loc,
8692 ("both %<unsigned%> and %<double%> in "
8693 "declaration specifiers"));
8694 else if (specs->typespec_word == cts_dfloat32)
8695 error_at (loc,
8696 ("both %<unsigned%> and %<_Decimal32%> in "
8697 "declaration specifiers"));
8698 else if (specs->typespec_word == cts_dfloat64)
8699 error_at (loc,
8700 ("both %<unsigned%> and %<_Decimal64%> in "
8701 "declaration specifiers"));
8702 else if (specs->typespec_word == cts_dfloat128)
8703 error_at (loc,
8704 ("both %<unsigned%> and %<_Decimal128%> in "
8705 "declaration specifiers"));
8706 else
8707 specs->unsigned_p = true;
8708 break;
8709 case RID_COMPLEX:
8710 dupe = specs->complex_p;
8711 if (!flag_isoc99 && !in_system_header)
8712 pedwarn (loc, OPT_pedantic,
8713 "ISO C90 does not support complex types");
8714 if (specs->typespec_word == cts_void)
8715 error_at (loc,
8716 ("both %<complex%> and %<void%> in "
8717 "declaration specifiers"));
8718 else if (specs->typespec_word == cts_bool)
8719 error_at (loc,
8720 ("both %<complex%> and %<_Bool%> in "
8721 "declaration specifiers"));
8722 else if (specs->typespec_word == cts_dfloat32)
8723 error_at (loc,
8724 ("both %<complex%> and %<_Decimal32%> in "
8725 "declaration specifiers"));
8726 else if (specs->typespec_word == cts_dfloat64)
8727 error_at (loc,
8728 ("both %<complex%> and %<_Decimal64%> in "
8729 "declaration specifiers"));
8730 else if (specs->typespec_word == cts_dfloat128)
8731 error_at (loc,
8732 ("both %<complex%> and %<_Decimal128%> in "
8733 "declaration specifiers"));
8734 else if (specs->typespec_word == cts_fract)
8735 error_at (loc,
8736 ("both %<complex%> and %<_Fract%> in "
8737 "declaration specifiers"));
8738 else if (specs->typespec_word == cts_accum)
8739 error_at (loc,
8740 ("both %<complex%> and %<_Accum%> in "
8741 "declaration specifiers"));
8742 else if (specs->saturating_p)
8743 error_at (loc,
8744 ("both %<complex%> and %<_Sat%> in "
8745 "declaration specifiers"));
8746 else
8747 specs->complex_p = true;
8748 break;
8749 case RID_SAT:
8750 dupe = specs->saturating_p;
8751 pedwarn (loc, OPT_pedantic,
8752 "ISO C does not support saturating types");
8753 if (specs->typespec_word == cts_void)
8754 error_at (loc,
8755 ("both %<_Sat%> and %<void%> in "
8756 "declaration specifiers"));
8757 else if (specs->typespec_word == cts_bool)
8758 error_at (loc,
8759 ("both %<_Sat%> and %<_Bool%> in "
8760 "declaration specifiers"));
8761 else if (specs->typespec_word == cts_char)
8762 error_at (loc,
8763 ("both %<_Sat%> and %<char%> in "
8764 "declaration specifiers"));
8765 else if (specs->typespec_word == cts_int)
8766 error_at (loc,
8767 ("both %<_Sat%> and %<int%> in "
8768 "declaration specifiers"));
8769 else if (specs->typespec_word == cts_float)
8770 error_at (loc,
8771 ("both %<_Sat%> and %<float%> in "
8772 "declaration specifiers"));
8773 else if (specs->typespec_word == cts_double)
8774 error_at (loc,
8775 ("both %<_Sat%> and %<double%> in "
8776 "declaration specifiers"));
8777 else if (specs->typespec_word == cts_dfloat32)
8778 error_at (loc,
8779 ("both %<_Sat%> and %<_Decimal32%> in "
8780 "declaration specifiers"));
8781 else if (specs->typespec_word == cts_dfloat64)
8782 error_at (loc,
8783 ("both %<_Sat%> and %<_Decimal64%> in "
8784 "declaration specifiers"));
8785 else if (specs->typespec_word == cts_dfloat128)
8786 error_at (loc,
8787 ("both %<_Sat%> and %<_Decimal128%> in "
8788 "declaration specifiers"));
8789 else if (specs->complex_p)
8790 error_at (loc,
8791 ("both %<_Sat%> and %<complex%> in "
8792 "declaration specifiers"));
8793 else
8794 specs->saturating_p = true;
8795 break;
8796 default:
8797 gcc_unreachable ();
8800 if (dupe)
8801 error_at (loc, "duplicate %qE", type);
8803 return specs;
8805 else
8807 /* "void", "_Bool", "char", "int", "float", "double", "_Decimal32",
8808 "_Decimal64", "_Decimal128", "_Fract" or "_Accum". */
8809 if (specs->typespec_word != cts_none)
8811 error_at (loc,
8812 "two or more data types in declaration specifiers");
8813 return specs;
8815 switch (i)
8817 case RID_VOID:
8818 if (specs->long_p)
8819 error_at (loc,
8820 ("both %<long%> and %<void%> in "
8821 "declaration specifiers"));
8822 else if (specs->short_p)
8823 error_at (loc,
8824 ("both %<short%> and %<void%> in "
8825 "declaration specifiers"));
8826 else if (specs->signed_p)
8827 error_at (loc,
8828 ("both %<signed%> and %<void%> in "
8829 "declaration specifiers"));
8830 else if (specs->unsigned_p)
8831 error_at (loc,
8832 ("both %<unsigned%> and %<void%> in "
8833 "declaration specifiers"));
8834 else if (specs->complex_p)
8835 error_at (loc,
8836 ("both %<complex%> and %<void%> in "
8837 "declaration specifiers"));
8838 else if (specs->saturating_p)
8839 error_at (loc,
8840 ("both %<_Sat%> and %<void%> in "
8841 "declaration specifiers"));
8842 else
8843 specs->typespec_word = cts_void;
8844 return specs;
8845 case RID_BOOL:
8846 if (specs->long_p)
8847 error_at (loc,
8848 ("both %<long%> and %<_Bool%> in "
8849 "declaration specifiers"));
8850 else if (specs->short_p)
8851 error_at (loc,
8852 ("both %<short%> and %<_Bool%> in "
8853 "declaration specifiers"));
8854 else if (specs->signed_p)
8855 error_at (loc,
8856 ("both %<signed%> and %<_Bool%> in "
8857 "declaration specifiers"));
8858 else if (specs->unsigned_p)
8859 error_at (loc,
8860 ("both %<unsigned%> and %<_Bool%> in "
8861 "declaration specifiers"));
8862 else if (specs->complex_p)
8863 error_at (loc,
8864 ("both %<complex%> and %<_Bool%> in "
8865 "declaration specifiers"));
8866 else if (specs->saturating_p)
8867 error_at (loc,
8868 ("both %<_Sat%> and %<_Bool%> in "
8869 "declaration specifiers"));
8870 else
8871 specs->typespec_word = cts_bool;
8872 return specs;
8873 case RID_CHAR:
8874 if (specs->long_p)
8875 error_at (loc,
8876 ("both %<long%> and %<char%> in "
8877 "declaration specifiers"));
8878 else if (specs->short_p)
8879 error_at (loc,
8880 ("both %<short%> and %<char%> in "
8881 "declaration specifiers"));
8882 else if (specs->saturating_p)
8883 error_at (loc,
8884 ("both %<_Sat%> and %<char%> in "
8885 "declaration specifiers"));
8886 else
8887 specs->typespec_word = cts_char;
8888 return specs;
8889 case RID_INT:
8890 if (specs->saturating_p)
8891 error_at (loc,
8892 ("both %<_Sat%> and %<int%> in "
8893 "declaration specifiers"));
8894 else
8895 specs->typespec_word = cts_int;
8896 return specs;
8897 case RID_FLOAT:
8898 if (specs->long_p)
8899 error_at (loc,
8900 ("both %<long%> and %<float%> in "
8901 "declaration specifiers"));
8902 else if (specs->short_p)
8903 error_at (loc,
8904 ("both %<short%> and %<float%> in "
8905 "declaration specifiers"));
8906 else if (specs->signed_p)
8907 error_at (loc,
8908 ("both %<signed%> and %<float%> in "
8909 "declaration specifiers"));
8910 else if (specs->unsigned_p)
8911 error_at (loc,
8912 ("both %<unsigned%> and %<float%> in "
8913 "declaration specifiers"));
8914 else if (specs->saturating_p)
8915 error_at (loc,
8916 ("both %<_Sat%> and %<float%> in "
8917 "declaration specifiers"));
8918 else
8919 specs->typespec_word = cts_float;
8920 return specs;
8921 case RID_DOUBLE:
8922 if (specs->long_long_p)
8923 error_at (loc,
8924 ("both %<long long%> and %<double%> in "
8925 "declaration specifiers"));
8926 else if (specs->short_p)
8927 error_at (loc,
8928 ("both %<short%> and %<double%> in "
8929 "declaration specifiers"));
8930 else if (specs->signed_p)
8931 error_at (loc,
8932 ("both %<signed%> and %<double%> in "
8933 "declaration specifiers"));
8934 else if (specs->unsigned_p)
8935 error_at (loc,
8936 ("both %<unsigned%> and %<double%> in "
8937 "declaration specifiers"));
8938 else if (specs->saturating_p)
8939 error_at (loc,
8940 ("both %<_Sat%> and %<double%> in "
8941 "declaration specifiers"));
8942 else
8943 specs->typespec_word = cts_double;
8944 return specs;
8945 case RID_DFLOAT32:
8946 case RID_DFLOAT64:
8947 case RID_DFLOAT128:
8949 const char *str;
8950 if (i == RID_DFLOAT32)
8951 str = "_Decimal32";
8952 else if (i == RID_DFLOAT64)
8953 str = "_Decimal64";
8954 else
8955 str = "_Decimal128";
8956 if (specs->long_long_p)
8957 error_at (loc,
8958 ("both %<long long%> and %<%s%> in "
8959 "declaration specifiers"),
8960 str);
8961 if (specs->long_p)
8962 error_at (loc,
8963 ("both %<long%> and %<%s%> in "
8964 "declaration specifiers"),
8965 str);
8966 else if (specs->short_p)
8967 error_at (loc,
8968 ("both %<short%> and %<%s%> in "
8969 "declaration specifiers"),
8970 str);
8971 else if (specs->signed_p)
8972 error_at (loc,
8973 ("both %<signed%> and %<%s%> in "
8974 "declaration specifiers"),
8975 str);
8976 else if (specs->unsigned_p)
8977 error_at (loc,
8978 ("both %<unsigned%> and %<%s%> in "
8979 "declaration specifiers"),
8980 str);
8981 else if (specs->complex_p)
8982 error_at (loc,
8983 ("both %<complex%> and %<%s%> in "
8984 "declaration specifiers"),
8985 str);
8986 else if (specs->saturating_p)
8987 error_at (loc,
8988 ("both %<_Sat%> and %<%s%> in "
8989 "declaration specifiers"),
8990 str);
8991 else if (i == RID_DFLOAT32)
8992 specs->typespec_word = cts_dfloat32;
8993 else if (i == RID_DFLOAT64)
8994 specs->typespec_word = cts_dfloat64;
8995 else
8996 specs->typespec_word = cts_dfloat128;
8998 if (!targetm.decimal_float_supported_p ())
8999 error_at (loc,
9000 ("decimal floating point not supported "
9001 "for this target"));
9002 pedwarn (loc, OPT_pedantic,
9003 "ISO C does not support decimal floating point");
9004 return specs;
9005 case RID_FRACT:
9006 case RID_ACCUM:
9008 const char *str;
9009 if (i == RID_FRACT)
9010 str = "_Fract";
9011 else
9012 str = "_Accum";
9013 if (specs->complex_p)
9014 error_at (loc,
9015 ("both %<complex%> and %<%s%> in "
9016 "declaration specifiers"),
9017 str);
9018 else if (i == RID_FRACT)
9019 specs->typespec_word = cts_fract;
9020 else
9021 specs->typespec_word = cts_accum;
9023 if (!targetm.fixed_point_supported_p ())
9024 error_at (loc,
9025 "fixed-point types not supported for this target");
9026 pedwarn (loc, OPT_pedantic,
9027 "ISO C does not support fixed-point types");
9028 return specs;
9029 default:
9030 /* ObjC reserved word "id", handled below. */
9031 break;
9036 /* Now we have a typedef (a TYPE_DECL node), an identifier (some
9037 form of ObjC type, cases such as "int" and "long" being handled
9038 above), a TYPE (struct, union, enum and typeof specifiers) or an
9039 ERROR_MARK. In none of these cases may there have previously
9040 been any type specifiers. */
9041 if (specs->type || specs->typespec_word != cts_none
9042 || specs->long_p || specs->short_p || specs->signed_p
9043 || specs->unsigned_p || specs->complex_p)
9044 error_at (loc, "two or more data types in declaration specifiers");
9045 else if (TREE_CODE (type) == TYPE_DECL)
9047 if (TREE_TYPE (type) == error_mark_node)
9048 ; /* Allow the type to default to int to avoid cascading errors. */
9049 else
9051 specs->type = TREE_TYPE (type);
9052 specs->decl_attr = DECL_ATTRIBUTES (type);
9053 specs->typedef_p = true;
9054 specs->explicit_signed_p = C_TYPEDEF_EXPLICITLY_SIGNED (type);
9056 /* If this typedef name is defined in a struct, then a C++
9057 lookup would return a different value. */
9058 if (warn_cxx_compat
9059 && I_SYMBOL_BINDING (DECL_NAME (type))->in_struct)
9060 warning_at (loc, OPT_Wc___compat,
9061 "C++ lookup of %qD would return a field, not a type",
9062 type);
9064 /* If we are parsing a struct, record that a struct field
9065 used a typedef. */
9066 if (warn_cxx_compat && struct_parse_info != NULL)
9067 VEC_safe_push (tree, heap, struct_parse_info->typedefs_seen, type);
9070 else if (TREE_CODE (type) == IDENTIFIER_NODE)
9072 tree t = lookup_name (type);
9073 if (!t || TREE_CODE (t) != TYPE_DECL)
9074 error_at (loc, "%qE fails to be a typedef or built in type", type);
9075 else if (TREE_TYPE (t) == error_mark_node)
9077 else
9078 specs->type = TREE_TYPE (t);
9080 else if (TREE_CODE (type) != ERROR_MARK)
9082 if (spec.kind == ctsk_tagdef || spec.kind == ctsk_tagfirstref)
9083 specs->tag_defined_p = true;
9084 if (spec.kind == ctsk_typeof)
9086 specs->typedef_p = true;
9087 if (spec.expr)
9089 if (specs->expr)
9090 specs->expr = build2 (COMPOUND_EXPR, TREE_TYPE (spec.expr),
9091 specs->expr, spec.expr);
9092 else
9093 specs->expr = spec.expr;
9094 specs->expr_const_operands &= spec.expr_const_operands;
9097 specs->type = type;
9100 return specs;
9103 /* Add the storage class specifier or function specifier SCSPEC to the
9104 declaration specifiers SPECS, returning SPECS. */
9106 struct c_declspecs *
9107 declspecs_add_scspec (struct c_declspecs *specs, tree scspec)
9109 enum rid i;
9110 enum c_storage_class n = csc_none;
9111 bool dupe = false;
9112 specs->declspecs_seen_p = true;
9113 gcc_assert (TREE_CODE (scspec) == IDENTIFIER_NODE
9114 && C_IS_RESERVED_WORD (scspec));
9115 i = C_RID_CODE (scspec);
9116 if (specs->non_sc_seen_p)
9117 warning (OPT_Wold_style_declaration,
9118 "%qE is not at beginning of declaration", scspec);
9119 switch (i)
9121 case RID_INLINE:
9122 /* C99 permits duplicate inline. Although of doubtful utility,
9123 it seems simplest to permit it in gnu89 mode as well, as
9124 there is also little utility in maintaining this as a
9125 difference between gnu89 and C99 inline. */
9126 dupe = false;
9127 specs->inline_p = true;
9128 break;
9129 case RID_THREAD:
9130 dupe = specs->thread_p;
9131 if (specs->storage_class == csc_auto)
9132 error ("%<__thread%> used with %<auto%>");
9133 else if (specs->storage_class == csc_register)
9134 error ("%<__thread%> used with %<register%>");
9135 else if (specs->storage_class == csc_typedef)
9136 error ("%<__thread%> used with %<typedef%>");
9137 else
9138 specs->thread_p = true;
9139 break;
9140 case RID_AUTO:
9141 n = csc_auto;
9142 break;
9143 case RID_EXTERN:
9144 n = csc_extern;
9145 /* Diagnose "__thread extern". */
9146 if (specs->thread_p)
9147 error ("%<__thread%> before %<extern%>");
9148 break;
9149 case RID_REGISTER:
9150 n = csc_register;
9151 break;
9152 case RID_STATIC:
9153 n = csc_static;
9154 /* Diagnose "__thread static". */
9155 if (specs->thread_p)
9156 error ("%<__thread%> before %<static%>");
9157 break;
9158 case RID_TYPEDEF:
9159 n = csc_typedef;
9160 break;
9161 default:
9162 gcc_unreachable ();
9164 if (n != csc_none && n == specs->storage_class)
9165 dupe = true;
9166 if (dupe)
9167 error ("duplicate %qE", scspec);
9168 if (n != csc_none)
9170 if (specs->storage_class != csc_none && n != specs->storage_class)
9172 error ("multiple storage classes in declaration specifiers");
9174 else
9176 specs->storage_class = n;
9177 if (n != csc_extern && n != csc_static && specs->thread_p)
9179 error ("%<__thread%> used with %qE", scspec);
9180 specs->thread_p = false;
9184 return specs;
9187 /* Add the attributes ATTRS to the declaration specifiers SPECS,
9188 returning SPECS. */
9190 struct c_declspecs *
9191 declspecs_add_attrs (struct c_declspecs *specs, tree attrs)
9193 specs->attrs = chainon (attrs, specs->attrs);
9194 specs->declspecs_seen_p = true;
9195 return specs;
9198 /* Combine "long", "short", "signed", "unsigned" and "_Complex" type
9199 specifiers with any other type specifier to determine the resulting
9200 type. This is where ISO C checks on complex types are made, since
9201 "_Complex long" is a prefix of the valid ISO C type "_Complex long
9202 double". */
9204 struct c_declspecs *
9205 finish_declspecs (struct c_declspecs *specs)
9207 /* If a type was specified as a whole, we have no modifiers and are
9208 done. */
9209 if (specs->type != NULL_TREE)
9211 gcc_assert (!specs->long_p && !specs->long_long_p && !specs->short_p
9212 && !specs->signed_p && !specs->unsigned_p
9213 && !specs->complex_p);
9214 return specs;
9217 /* If none of "void", "_Bool", "char", "int", "float" or "double"
9218 has been specified, treat it as "int" unless "_Complex" is
9219 present and there are no other specifiers. If we just have
9220 "_Complex", it is equivalent to "_Complex double", but e.g.
9221 "_Complex short" is equivalent to "_Complex short int". */
9222 if (specs->typespec_word == cts_none)
9224 if (specs->saturating_p)
9226 error ("%<_Sat%> is used without %<_Fract%> or %<_Accum%>");
9227 if (!targetm.fixed_point_supported_p ())
9228 error ("fixed-point types not supported for this target");
9229 specs->typespec_word = cts_fract;
9231 else if (specs->long_p || specs->short_p
9232 || specs->signed_p || specs->unsigned_p)
9234 specs->typespec_word = cts_int;
9236 else if (specs->complex_p)
9238 specs->typespec_word = cts_double;
9239 pedwarn (input_location, OPT_pedantic,
9240 "ISO C does not support plain %<complex%> meaning "
9241 "%<double complex%>");
9243 else
9245 specs->typespec_word = cts_int;
9246 specs->default_int_p = true;
9247 /* We don't diagnose this here because grokdeclarator will
9248 give more specific diagnostics according to whether it is
9249 a function definition. */
9253 /* If "signed" was specified, record this to distinguish "int" and
9254 "signed int" in the case of a bit-field with
9255 -funsigned-bitfields. */
9256 specs->explicit_signed_p = specs->signed_p;
9258 /* Now compute the actual type. */
9259 switch (specs->typespec_word)
9261 case cts_void:
9262 gcc_assert (!specs->long_p && !specs->short_p
9263 && !specs->signed_p && !specs->unsigned_p
9264 && !specs->complex_p);
9265 specs->type = void_type_node;
9266 break;
9267 case cts_bool:
9268 gcc_assert (!specs->long_p && !specs->short_p
9269 && !specs->signed_p && !specs->unsigned_p
9270 && !specs->complex_p);
9271 specs->type = boolean_type_node;
9272 break;
9273 case cts_char:
9274 gcc_assert (!specs->long_p && !specs->short_p);
9275 gcc_assert (!(specs->signed_p && specs->unsigned_p));
9276 if (specs->signed_p)
9277 specs->type = signed_char_type_node;
9278 else if (specs->unsigned_p)
9279 specs->type = unsigned_char_type_node;
9280 else
9281 specs->type = char_type_node;
9282 if (specs->complex_p)
9284 pedwarn (input_location, OPT_pedantic,
9285 "ISO C does not support complex integer types");
9286 specs->type = build_complex_type (specs->type);
9288 break;
9289 case cts_int:
9290 gcc_assert (!(specs->long_p && specs->short_p));
9291 gcc_assert (!(specs->signed_p && specs->unsigned_p));
9292 if (specs->long_long_p)
9293 specs->type = (specs->unsigned_p
9294 ? long_long_unsigned_type_node
9295 : long_long_integer_type_node);
9296 else if (specs->long_p)
9297 specs->type = (specs->unsigned_p
9298 ? long_unsigned_type_node
9299 : long_integer_type_node);
9300 else if (specs->short_p)
9301 specs->type = (specs->unsigned_p
9302 ? short_unsigned_type_node
9303 : short_integer_type_node);
9304 else
9305 specs->type = (specs->unsigned_p
9306 ? unsigned_type_node
9307 : integer_type_node);
9308 if (specs->complex_p)
9310 pedwarn (input_location, OPT_pedantic,
9311 "ISO C does not support complex integer types");
9312 specs->type = build_complex_type (specs->type);
9314 break;
9315 case cts_float:
9316 gcc_assert (!specs->long_p && !specs->short_p
9317 && !specs->signed_p && !specs->unsigned_p);
9318 specs->type = (specs->complex_p
9319 ? complex_float_type_node
9320 : float_type_node);
9321 break;
9322 case cts_double:
9323 gcc_assert (!specs->long_long_p && !specs->short_p
9324 && !specs->signed_p && !specs->unsigned_p);
9325 if (specs->long_p)
9327 specs->type = (specs->complex_p
9328 ? complex_long_double_type_node
9329 : long_double_type_node);
9331 else
9333 specs->type = (specs->complex_p
9334 ? complex_double_type_node
9335 : double_type_node);
9337 break;
9338 case cts_dfloat32:
9339 case cts_dfloat64:
9340 case cts_dfloat128:
9341 gcc_assert (!specs->long_p && !specs->long_long_p && !specs->short_p
9342 && !specs->signed_p && !specs->unsigned_p && !specs->complex_p);
9343 if (specs->typespec_word == cts_dfloat32)
9344 specs->type = dfloat32_type_node;
9345 else if (specs->typespec_word == cts_dfloat64)
9346 specs->type = dfloat64_type_node;
9347 else
9348 specs->type = dfloat128_type_node;
9349 break;
9350 case cts_fract:
9351 gcc_assert (!specs->complex_p);
9352 if (!targetm.fixed_point_supported_p ())
9353 specs->type = integer_type_node;
9354 else if (specs->saturating_p)
9356 if (specs->long_long_p)
9357 specs->type = specs->unsigned_p
9358 ? sat_unsigned_long_long_fract_type_node
9359 : sat_long_long_fract_type_node;
9360 else if (specs->long_p)
9361 specs->type = specs->unsigned_p
9362 ? sat_unsigned_long_fract_type_node
9363 : sat_long_fract_type_node;
9364 else if (specs->short_p)
9365 specs->type = specs->unsigned_p
9366 ? sat_unsigned_short_fract_type_node
9367 : sat_short_fract_type_node;
9368 else
9369 specs->type = specs->unsigned_p
9370 ? sat_unsigned_fract_type_node
9371 : sat_fract_type_node;
9373 else
9375 if (specs->long_long_p)
9376 specs->type = specs->unsigned_p
9377 ? unsigned_long_long_fract_type_node
9378 : long_long_fract_type_node;
9379 else if (specs->long_p)
9380 specs->type = specs->unsigned_p
9381 ? unsigned_long_fract_type_node
9382 : long_fract_type_node;
9383 else if (specs->short_p)
9384 specs->type = specs->unsigned_p
9385 ? unsigned_short_fract_type_node
9386 : short_fract_type_node;
9387 else
9388 specs->type = specs->unsigned_p
9389 ? unsigned_fract_type_node
9390 : fract_type_node;
9392 break;
9393 case cts_accum:
9394 gcc_assert (!specs->complex_p);
9395 if (!targetm.fixed_point_supported_p ())
9396 specs->type = integer_type_node;
9397 else if (specs->saturating_p)
9399 if (specs->long_long_p)
9400 specs->type = specs->unsigned_p
9401 ? sat_unsigned_long_long_accum_type_node
9402 : sat_long_long_accum_type_node;
9403 else if (specs->long_p)
9404 specs->type = specs->unsigned_p
9405 ? sat_unsigned_long_accum_type_node
9406 : sat_long_accum_type_node;
9407 else if (specs->short_p)
9408 specs->type = specs->unsigned_p
9409 ? sat_unsigned_short_accum_type_node
9410 : sat_short_accum_type_node;
9411 else
9412 specs->type = specs->unsigned_p
9413 ? sat_unsigned_accum_type_node
9414 : sat_accum_type_node;
9416 else
9418 if (specs->long_long_p)
9419 specs->type = specs->unsigned_p
9420 ? unsigned_long_long_accum_type_node
9421 : long_long_accum_type_node;
9422 else if (specs->long_p)
9423 specs->type = specs->unsigned_p
9424 ? unsigned_long_accum_type_node
9425 : long_accum_type_node;
9426 else if (specs->short_p)
9427 specs->type = specs->unsigned_p
9428 ? unsigned_short_accum_type_node
9429 : short_accum_type_node;
9430 else
9431 specs->type = specs->unsigned_p
9432 ? unsigned_accum_type_node
9433 : accum_type_node;
9435 break;
9436 default:
9437 gcc_unreachable ();
9440 return specs;
9443 /* A subroutine of c_write_global_declarations. Perform final processing
9444 on one file scope's declarations (or the external scope's declarations),
9445 GLOBALS. */
9447 static void
9448 c_write_global_declarations_1 (tree globals, bool ext_scope)
9450 tree decl;
9451 bool reconsider;
9453 /* Process the decls in the order they were written. */
9454 for (decl = globals; decl; decl = TREE_CHAIN (decl))
9456 /* Check for used but undefined static functions using the C
9457 standard's definition of "used", and set TREE_NO_WARNING so
9458 that check_global_declarations doesn't repeat the check.
9460 Issue an error if an IFUNC function is undefined. */
9461 if (TREE_CODE (decl) == FUNCTION_DECL
9462 && DECL_INITIAL (decl) == 0
9463 && DECL_EXTERNAL (decl))
9465 if (DECL_IS_IFUNC (decl))
9467 if (ext_scope || !TREE_PUBLIC (decl))
9469 error_at (input_location,
9470 "indirect function %q+F never defined",
9471 decl);
9472 TREE_NO_WARNING (decl) = 1;
9475 else if (!TREE_PUBLIC (decl)
9476 && C_DECL_USED (decl))
9478 pedwarn (input_location, 0, "%q+F used but never defined",
9479 decl);
9480 TREE_NO_WARNING (decl) = 1;
9484 wrapup_global_declaration_1 (decl);
9489 reconsider = false;
9490 for (decl = globals; decl; decl = TREE_CHAIN (decl))
9491 reconsider |= wrapup_global_declaration_2 (decl);
9493 while (reconsider);
9495 for (decl = globals; decl; decl = TREE_CHAIN (decl))
9496 check_global_declaration_1 (decl);
9499 /* A subroutine of c_write_global_declarations Emit debug information for each
9500 of the declarations in GLOBALS. */
9502 static void
9503 c_write_global_declarations_2 (tree globals)
9505 tree decl;
9507 for (decl = globals; decl ; decl = TREE_CHAIN (decl))
9508 debug_hooks->global_decl (decl);
9511 /* Preserve the external declarations scope across a garbage collect. */
9512 static GTY(()) tree ext_block;
9514 void
9515 c_write_global_declarations (void)
9517 tree t;
9519 /* We don't want to do this if generating a PCH. */
9520 if (pch_file)
9521 return;
9523 /* Don't waste time on further processing if -fsyntax-only.
9524 Continue for warning and errors issued during lowering though. */
9525 if (flag_syntax_only)
9526 return;
9528 /* Close the external scope. */
9529 ext_block = pop_scope ();
9530 external_scope = 0;
9531 gcc_assert (!current_scope);
9533 if (ext_block)
9535 tree tmp = BLOCK_VARS (ext_block);
9536 int flags;
9537 FILE * stream = dump_begin (TDI_tu, &flags);
9538 if (stream && tmp)
9540 dump_node (tmp, flags & ~TDF_SLIM, stream);
9541 dump_end (TDI_tu, stream);
9545 /* Process all file scopes in this compilation, and the external_scope,
9546 through wrapup_global_declarations and check_global_declarations. */
9547 for (t = all_translation_units; t; t = TREE_CHAIN (t))
9548 c_write_global_declarations_1 (BLOCK_VARS (DECL_INITIAL (t)), false);
9549 c_write_global_declarations_1 (BLOCK_VARS (ext_block), true);
9551 /* We're done parsing; proceed to optimize and emit assembly.
9552 FIXME: shouldn't be the front end's responsibility to call this. */
9553 cgraph_finalize_compilation_unit ();
9555 /* After cgraph has had a chance to emit everything that's going to
9556 be emitted, output debug information for globals. */
9557 if (errorcount == 0 && sorrycount == 0)
9559 timevar_push (TV_SYMOUT);
9560 for (t = all_translation_units; t; t = TREE_CHAIN (t))
9561 c_write_global_declarations_2 (BLOCK_VARS (DECL_INITIAL (t)));
9562 c_write_global_declarations_2 (BLOCK_VARS (ext_block));
9563 timevar_pop (TV_SYMOUT);
9566 ext_block = NULL;
9569 #include "gt-c-decl.h"