2010-11-14 Paolo Bonzini <bonzini@gnu.org>
[official-gcc.git] / gcc / c-decl.c
blobbab402d90f81fa221bc4935a4ccb2ce3de8d7eba
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 "flags.h"
38 #include "function.h"
39 #include "output.h"
40 #include "c-tree.h"
41 #include "toplev.h"
42 #include "tm_p.h"
43 #include "cpplib.h"
44 #include "target.h"
45 #include "debug.h"
46 #include "opts.h"
47 #include "timevar.h"
48 #include "c-family/c-common.h"
49 #include "c-family/c-pragma.h"
50 #include "c-lang.h"
51 #include "langhooks.h"
52 #include "tree-mudflap.h"
53 #include "tree-iterator.h"
54 #include "diagnostic-core.h"
55 #include "tree-dump.h"
56 #include "cgraph.h"
57 #include "hashtab.h"
58 #include "langhooks-def.h"
59 #include "pointer-set.h"
60 #include "plugin.h"
61 #include "c-family/c-ada-spec.h"
63 /* In grokdeclarator, distinguish syntactic contexts of declarators. */
64 enum decl_context
65 { NORMAL, /* Ordinary declaration */
66 FUNCDEF, /* Function definition */
67 PARM, /* Declaration of parm before function body */
68 FIELD, /* Declaration inside struct or union */
69 TYPENAME}; /* Typename (inside cast or sizeof) */
71 /* States indicating how grokdeclarator() should handle declspecs marked
72 with __attribute__((deprecated)). An object declared as
73 __attribute__((deprecated)) suppresses warnings of uses of other
74 deprecated items. */
76 enum deprecated_states {
77 DEPRECATED_NORMAL,
78 DEPRECATED_SUPPRESS
82 /* Nonzero if we have seen an invalid cross reference
83 to a struct, union, or enum, but not yet printed the message. */
84 tree pending_invalid_xref;
86 /* File and line to appear in the eventual error message. */
87 location_t pending_invalid_xref_location;
89 /* The file and line that the prototype came from if this is an
90 old-style definition; used for diagnostics in
91 store_parm_decls_oldstyle. */
93 static location_t current_function_prototype_locus;
95 /* Whether this prototype was built-in. */
97 static bool current_function_prototype_built_in;
99 /* The argument type information of this prototype. */
101 static tree current_function_prototype_arg_types;
103 /* The argument information structure for the function currently being
104 defined. */
106 static struct c_arg_info *current_function_arg_info;
108 /* The obstack on which parser and related data structures, which are
109 not live beyond their top-level declaration or definition, are
110 allocated. */
111 struct obstack parser_obstack;
113 /* The current statement tree. */
115 static GTY(()) struct stmt_tree_s c_stmt_tree;
117 /* State saving variables. */
118 tree c_break_label;
119 tree c_cont_label;
121 /* A list of decls to be made automatically visible in each file scope. */
122 static GTY(()) tree visible_builtins;
124 /* Set to 0 at beginning of a function definition, set to 1 if
125 a return statement that specifies a return value is seen. */
127 int current_function_returns_value;
129 /* Set to 0 at beginning of a function definition, set to 1 if
130 a return statement with no argument is seen. */
132 int current_function_returns_null;
134 /* Set to 0 at beginning of a function definition, set to 1 if
135 a call to a noreturn function is seen. */
137 int current_function_returns_abnormally;
139 /* Set to nonzero by `grokdeclarator' for a function
140 whose return type is defaulted, if warnings for this are desired. */
142 static int warn_about_return_type;
144 /* Nonzero when the current toplevel function contains a declaration
145 of a nested function which is never defined. */
147 static bool undef_nested_function;
149 /* True means global_bindings_p should return false even if the scope stack
150 says we are in file scope. */
151 bool c_override_global_bindings_to_false;
154 /* Each c_binding structure describes one binding of an identifier to
155 a decl. All the decls in a scope - irrespective of namespace - are
156 chained together by the ->prev field, which (as the name implies)
157 runs in reverse order. All the decls in a given namespace bound to
158 a given identifier are chained by the ->shadowed field, which runs
159 from inner to outer scopes.
161 The ->decl field usually points to a DECL node, but there are two
162 exceptions. In the namespace of type tags, the bound entity is a
163 RECORD_TYPE, UNION_TYPE, or ENUMERAL_TYPE node. If an undeclared
164 identifier is encountered, it is bound to error_mark_node to
165 suppress further errors about that identifier in the current
166 function.
168 The ->u.type field stores the type of the declaration in this scope;
169 if NULL, the type is the type of the ->decl field. This is only of
170 relevance for objects with external or internal linkage which may
171 be redeclared in inner scopes, forming composite types that only
172 persist for the duration of those scopes. In the external scope,
173 this stores the composite of all the types declared for this
174 object, visible or not. The ->inner_comp field (used only at file
175 scope) stores whether an incomplete array type at file scope was
176 completed at an inner scope to an array size other than 1.
178 The ->u.label field is used for labels. It points to a structure
179 which stores additional information used for warnings.
181 The depth field is copied from the scope structure that holds this
182 decl. It is used to preserve the proper ordering of the ->shadowed
183 field (see bind()) and also for a handful of special-case checks.
184 Finally, the invisible bit is true for a decl which should be
185 ignored for purposes of normal name lookup, and the nested bit is
186 true for a decl that's been bound a second time in an inner scope;
187 in all such cases, the binding in the outer scope will have its
188 invisible bit true. */
190 struct GTY((chain_next ("%h.prev"))) c_binding {
191 union GTY(()) { /* first so GTY desc can use decl */
192 tree GTY((tag ("0"))) type; /* the type in this scope */
193 struct c_label_vars * GTY((tag ("1"))) label; /* for warnings */
194 } GTY((desc ("TREE_CODE (%0.decl) == LABEL_DECL"))) u;
195 tree decl; /* the decl bound */
196 tree id; /* the identifier it's bound to */
197 struct c_binding *prev; /* the previous decl in this scope */
198 struct c_binding *shadowed; /* the innermost decl shadowed by this one */
199 unsigned int depth : 28; /* depth of this scope */
200 BOOL_BITFIELD invisible : 1; /* normal lookup should ignore this binding */
201 BOOL_BITFIELD nested : 1; /* do not set DECL_CONTEXT when popping */
202 BOOL_BITFIELD inner_comp : 1; /* incomplete array completed in inner scope */
203 BOOL_BITFIELD in_struct : 1; /* currently defined as struct field */
204 location_t locus; /* location for nested bindings */
206 #define B_IN_SCOPE(b1, b2) ((b1)->depth == (b2)->depth)
207 #define B_IN_CURRENT_SCOPE(b) ((b)->depth == current_scope->depth)
208 #define B_IN_FILE_SCOPE(b) ((b)->depth == 1 /*file_scope->depth*/)
209 #define B_IN_EXTERNAL_SCOPE(b) ((b)->depth == 0 /*external_scope->depth*/)
211 #define I_SYMBOL_BINDING(node) \
212 (((struct lang_identifier *) IDENTIFIER_NODE_CHECK(node))->symbol_binding)
213 #define I_SYMBOL_DECL(node) \
214 (I_SYMBOL_BINDING(node) ? I_SYMBOL_BINDING(node)->decl : 0)
216 #define I_TAG_BINDING(node) \
217 (((struct lang_identifier *) IDENTIFIER_NODE_CHECK(node))->tag_binding)
218 #define I_TAG_DECL(node) \
219 (I_TAG_BINDING(node) ? I_TAG_BINDING(node)->decl : 0)
221 #define I_LABEL_BINDING(node) \
222 (((struct lang_identifier *) IDENTIFIER_NODE_CHECK(node))->label_binding)
223 #define I_LABEL_DECL(node) \
224 (I_LABEL_BINDING(node) ? I_LABEL_BINDING(node)->decl : 0)
226 /* Each C symbol points to three linked lists of c_binding structures.
227 These describe the values of the identifier in the three different
228 namespaces defined by the language. */
230 struct GTY(()) lang_identifier {
231 struct c_common_identifier common_id;
232 struct c_binding *symbol_binding; /* vars, funcs, constants, typedefs */
233 struct c_binding *tag_binding; /* struct/union/enum tags */
234 struct c_binding *label_binding; /* labels */
237 /* Validate c-lang.c's assumptions. */
238 extern char C_SIZEOF_STRUCT_LANG_IDENTIFIER_isnt_accurate
239 [(sizeof(struct lang_identifier) == C_SIZEOF_STRUCT_LANG_IDENTIFIER) ? 1 : -1];
241 /* The resulting tree type. */
243 union GTY((desc ("TREE_CODE (&%h.generic) == IDENTIFIER_NODE"),
244 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
246 union tree_node GTY ((tag ("0"),
247 desc ("tree_node_structure (&%h)")))
248 generic;
249 struct lang_identifier GTY ((tag ("1"))) identifier;
252 /* Track bindings and other things that matter for goto warnings. For
253 efficiency, we do not gather all the decls at the point of
254 definition. Instead, we point into the bindings structure. As
255 scopes are popped, we update these structures and gather the decls
256 that matter at that time. */
258 struct GTY(()) c_spot_bindings {
259 /* The currently open scope which holds bindings defined when the
260 label was defined or the goto statement was found. */
261 struct c_scope *scope;
262 /* The bindings in the scope field which were defined at the point
263 of the label or goto. This lets us look at older or newer
264 bindings in the scope, as appropriate. */
265 struct c_binding *bindings_in_scope;
266 /* The number of statement expressions that have started since this
267 label or goto statement was defined. This is zero if we are at
268 the same statement expression level. It is positive if we are in
269 a statement expression started since this spot. It is negative
270 if this spot was in a statement expression and we have left
271 it. */
272 int stmt_exprs;
273 /* Whether we started in a statement expression but are no longer in
274 it. This is set to true if stmt_exprs ever goes negative. */
275 bool left_stmt_expr;
278 /* This structure is used to keep track of bindings seen when a goto
279 statement is defined. This is only used if we see the goto
280 statement before we see the label. */
282 struct GTY(()) c_goto_bindings {
283 /* The location of the goto statement. */
284 location_t loc;
285 /* The bindings of the goto statement. */
286 struct c_spot_bindings goto_bindings;
289 typedef struct c_goto_bindings *c_goto_bindings_p;
290 DEF_VEC_P(c_goto_bindings_p);
291 DEF_VEC_ALLOC_P(c_goto_bindings_p,gc);
293 /* The additional information we keep track of for a label binding.
294 These fields are updated as scopes are popped. */
296 struct GTY(()) c_label_vars {
297 /* The shadowed c_label_vars, when one label shadows another (which
298 can only happen using a __label__ declaration). */
299 struct c_label_vars *shadowed;
300 /* The bindings when the label was defined. */
301 struct c_spot_bindings label_bindings;
302 /* A list of decls that we care about: decls about which we should
303 warn if a goto branches to this label from later in the function.
304 Decls are added to this list as scopes are popped. We only add
305 the decls that matter. */
306 VEC(tree,gc) *decls_in_scope;
307 /* A list of goto statements to this label. This is only used for
308 goto statements seen before the label was defined, so that we can
309 issue appropriate warnings for them. */
310 VEC(c_goto_bindings_p,gc) *gotos;
313 /* Each c_scope structure describes the complete contents of one
314 scope. Four scopes are distinguished specially: the innermost or
315 current scope, the innermost function scope, the file scope (always
316 the second to outermost) and the outermost or external scope.
318 Most declarations are recorded in the current scope.
320 All normal label declarations are recorded in the innermost
321 function scope, as are bindings of undeclared identifiers to
322 error_mark_node. (GCC permits nested functions as an extension,
323 hence the 'innermost' qualifier.) Explicitly declared labels
324 (using the __label__ extension) appear in the current scope.
326 Being in the file scope (current_scope == file_scope) causes
327 special behavior in several places below. Also, under some
328 conditions the Objective-C front end records declarations in the
329 file scope even though that isn't the current scope.
331 All declarations with external linkage are recorded in the external
332 scope, even if they aren't visible there; this models the fact that
333 such declarations are visible to the entire program, and (with a
334 bit of cleverness, see pushdecl) allows diagnosis of some violations
335 of C99 6.2.2p7 and 6.2.7p2:
337 If, within the same translation unit, the same identifier appears
338 with both internal and external linkage, the behavior is
339 undefined.
341 All declarations that refer to the same object or function shall
342 have compatible type; otherwise, the behavior is undefined.
344 Initially only the built-in declarations, which describe compiler
345 intrinsic functions plus a subset of the standard library, are in
346 this scope.
348 The order of the blocks list matters, and it is frequently appended
349 to. To avoid having to walk all the way to the end of the list on
350 each insertion, or reverse the list later, we maintain a pointer to
351 the last list entry. (FIXME: It should be feasible to use a reversed
352 list here.)
354 The bindings list is strictly in reverse order of declarations;
355 pop_scope relies on this. */
358 struct GTY((chain_next ("%h.outer"))) c_scope {
359 /* The scope containing this one. */
360 struct c_scope *outer;
362 /* The next outermost function scope. */
363 struct c_scope *outer_function;
365 /* All bindings in this scope. */
366 struct c_binding *bindings;
368 /* For each scope (except the global one), a chain of BLOCK nodes
369 for all the scopes that were entered and exited one level down. */
370 tree blocks;
371 tree blocks_last;
373 /* The depth of this scope. Used to keep the ->shadowed chain of
374 bindings sorted innermost to outermost. */
375 unsigned int depth : 28;
377 /* True if we are currently filling this scope with parameter
378 declarations. */
379 BOOL_BITFIELD parm_flag : 1;
381 /* True if we saw [*] in this scope. Used to give an error messages
382 if these appears in a function definition. */
383 BOOL_BITFIELD had_vla_unspec : 1;
385 /* True if we already complained about forward parameter decls
386 in this scope. This prevents double warnings on
387 foo (int a; int b; ...) */
388 BOOL_BITFIELD warned_forward_parm_decls : 1;
390 /* True if this is the outermost block scope of a function body.
391 This scope contains the parameters, the local variables declared
392 in the outermost block, and all the labels (except those in
393 nested functions, or declared at block scope with __label__). */
394 BOOL_BITFIELD function_body : 1;
396 /* True means make a BLOCK for this scope no matter what. */
397 BOOL_BITFIELD keep : 1;
399 /* True means that an unsuffixed float constant is _Decimal64. */
400 BOOL_BITFIELD float_const_decimal64 : 1;
402 /* True if this scope has any label bindings. This is used to speed
403 up searching for labels when popping scopes, particularly since
404 labels are normally only found at function scope. */
405 BOOL_BITFIELD has_label_bindings : 1;
408 /* The scope currently in effect. */
410 static GTY(()) struct c_scope *current_scope;
412 /* The innermost function scope. Ordinary (not explicitly declared)
413 labels, bindings to error_mark_node, and the lazily-created
414 bindings of __func__ and its friends get this scope. */
416 static GTY(()) struct c_scope *current_function_scope;
418 /* The C file scope. This is reset for each input translation unit. */
420 static GTY(()) struct c_scope *file_scope;
422 /* The outermost scope. This is used for all declarations with
423 external linkage, and only these, hence the name. */
425 static GTY(()) struct c_scope *external_scope;
427 /* A chain of c_scope structures awaiting reuse. */
429 static GTY((deletable)) struct c_scope *scope_freelist;
431 /* A chain of c_binding structures awaiting reuse. */
433 static GTY((deletable)) struct c_binding *binding_freelist;
435 /* Append VAR to LIST in scope SCOPE. */
436 #define SCOPE_LIST_APPEND(scope, list, decl) do { \
437 struct c_scope *s_ = (scope); \
438 tree d_ = (decl); \
439 if (s_->list##_last) \
440 BLOCK_CHAIN (s_->list##_last) = d_; \
441 else \
442 s_->list = d_; \
443 s_->list##_last = d_; \
444 } while (0)
446 /* Concatenate FROM in scope FSCOPE onto TO in scope TSCOPE. */
447 #define SCOPE_LIST_CONCAT(tscope, to, fscope, from) do { \
448 struct c_scope *t_ = (tscope); \
449 struct c_scope *f_ = (fscope); \
450 if (t_->to##_last) \
451 BLOCK_CHAIN (t_->to##_last) = f_->from; \
452 else \
453 t_->to = f_->from; \
454 t_->to##_last = f_->from##_last; \
455 } while (0)
457 /* A c_inline_static structure stores details of a static identifier
458 referenced in a definition of a function that may be an inline
459 definition if no subsequent declaration of that function uses
460 "extern" or does not use "inline". */
462 struct GTY((chain_next ("%h.next"))) c_inline_static {
463 /* The location for a diagnostic. */
464 location_t location;
466 /* The function that may be an inline definition. */
467 tree function;
469 /* The object or function referenced. */
470 tree static_decl;
472 /* What sort of reference this is. */
473 enum c_inline_static_type type;
475 /* The next such structure or NULL. */
476 struct c_inline_static *next;
479 /* List of static identifiers used or referenced in functions that may
480 be inline definitions. */
481 static GTY(()) struct c_inline_static *c_inline_statics;
483 /* True means unconditionally make a BLOCK for the next scope pushed. */
485 static bool keep_next_level_flag;
487 /* True means the next call to push_scope will be the outermost scope
488 of a function body, so do not push a new scope, merely cease
489 expecting parameter decls. */
491 static bool next_is_function_body;
493 /* A VEC of pointers to c_binding structures. */
495 typedef struct c_binding *c_binding_ptr;
496 DEF_VEC_P(c_binding_ptr);
497 DEF_VEC_ALLOC_P(c_binding_ptr,heap);
499 /* Information that we keep for a struct or union while it is being
500 parsed. */
502 struct c_struct_parse_info
504 /* If warn_cxx_compat, a list of types defined within this
505 struct. */
506 VEC(tree,heap) *struct_types;
507 /* If warn_cxx_compat, a list of field names which have bindings,
508 and which are defined in this struct, but which are not defined
509 in any enclosing struct. This is used to clear the in_struct
510 field of the c_bindings structure. */
511 VEC(c_binding_ptr,heap) *fields;
512 /* If warn_cxx_compat, a list of typedef names used when defining
513 fields in this struct. */
514 VEC(tree,heap) *typedefs_seen;
517 /* Information for the struct or union currently being parsed, or
518 NULL if not parsing a struct or union. */
519 static struct c_struct_parse_info *struct_parse_info;
521 /* Forward declarations. */
522 static tree lookup_name_in_scope (tree, struct c_scope *);
523 static tree c_make_fname_decl (location_t, tree, int);
524 static tree grokdeclarator (const struct c_declarator *,
525 struct c_declspecs *,
526 enum decl_context, bool, tree *, tree *, tree *,
527 bool *, enum deprecated_states);
528 static tree grokparms (struct c_arg_info *, bool);
529 static void layout_array_type (tree);
531 /* T is a statement. Add it to the statement-tree. This is the
532 C/ObjC version--C++ has a slightly different version of this
533 function. */
535 tree
536 add_stmt (tree t)
538 enum tree_code code = TREE_CODE (t);
540 if (CAN_HAVE_LOCATION_P (t) && code != LABEL_EXPR)
542 if (!EXPR_HAS_LOCATION (t))
543 SET_EXPR_LOCATION (t, input_location);
546 if (code == LABEL_EXPR || code == CASE_LABEL_EXPR)
547 STATEMENT_LIST_HAS_LABEL (cur_stmt_list) = 1;
549 /* Add T to the statement-tree. Non-side-effect statements need to be
550 recorded during statement expressions. */
551 append_to_statement_list_force (t, &cur_stmt_list);
553 return t;
557 void
558 c_print_identifier (FILE *file, tree node, int indent)
560 print_node (file, "symbol", I_SYMBOL_DECL (node), indent + 4);
561 print_node (file, "tag", I_TAG_DECL (node), indent + 4);
562 print_node (file, "label", I_LABEL_DECL (node), indent + 4);
563 if (C_IS_RESERVED_WORD (node) && C_RID_CODE (node) != RID_CXX_COMPAT_WARN)
565 tree rid = ridpointers[C_RID_CODE (node)];
566 indent_to (file, indent + 4);
567 fprintf (file, "rid " HOST_PTR_PRINTF " \"%s\"",
568 (void *) rid, IDENTIFIER_POINTER (rid));
572 /* Establish a binding between NAME, an IDENTIFIER_NODE, and DECL,
573 which may be any of several kinds of DECL or TYPE or error_mark_node,
574 in the scope SCOPE. */
575 static void
576 bind (tree name, tree decl, struct c_scope *scope, bool invisible,
577 bool nested, location_t locus)
579 struct c_binding *b, **here;
581 if (binding_freelist)
583 b = binding_freelist;
584 binding_freelist = b->prev;
586 else
587 b = ggc_alloc_c_binding ();
589 b->shadowed = 0;
590 b->decl = decl;
591 b->id = name;
592 b->depth = scope->depth;
593 b->invisible = invisible;
594 b->nested = nested;
595 b->inner_comp = 0;
596 b->in_struct = 0;
597 b->locus = locus;
599 b->u.type = NULL;
601 b->prev = scope->bindings;
602 scope->bindings = b;
604 if (!name)
605 return;
607 switch (TREE_CODE (decl))
609 case LABEL_DECL: here = &I_LABEL_BINDING (name); break;
610 case ENUMERAL_TYPE:
611 case UNION_TYPE:
612 case RECORD_TYPE: here = &I_TAG_BINDING (name); break;
613 case VAR_DECL:
614 case FUNCTION_DECL:
615 case TYPE_DECL:
616 case CONST_DECL:
617 case PARM_DECL:
618 case ERROR_MARK: here = &I_SYMBOL_BINDING (name); break;
620 default:
621 gcc_unreachable ();
624 /* Locate the appropriate place in the chain of shadowed decls
625 to insert this binding. Normally, scope == current_scope and
626 this does nothing. */
627 while (*here && (*here)->depth > scope->depth)
628 here = &(*here)->shadowed;
630 b->shadowed = *here;
631 *here = b;
634 /* Clear the binding structure B, stick it on the binding_freelist,
635 and return the former value of b->prev. This is used by pop_scope
636 and get_parm_info to iterate destructively over all the bindings
637 from a given scope. */
638 static struct c_binding *
639 free_binding_and_advance (struct c_binding *b)
641 struct c_binding *prev = b->prev;
643 memset (b, 0, sizeof (struct c_binding));
644 b->prev = binding_freelist;
645 binding_freelist = b;
647 return prev;
650 /* Bind a label. Like bind, but skip fields which aren't used for
651 labels, and add the LABEL_VARS value. */
652 static void
653 bind_label (tree name, tree label, struct c_scope *scope,
654 struct c_label_vars *label_vars)
656 struct c_binding *b;
658 bind (name, label, scope, /*invisible=*/false, /*nested=*/false,
659 UNKNOWN_LOCATION);
661 scope->has_label_bindings = true;
663 b = scope->bindings;
664 gcc_assert (b->decl == label);
665 label_vars->shadowed = b->u.label;
666 b->u.label = label_vars;
669 /* Hook called at end of compilation to assume 1 elt
670 for a file-scope tentative array defn that wasn't complete before. */
672 void
673 c_finish_incomplete_decl (tree decl)
675 if (TREE_CODE (decl) == VAR_DECL)
677 tree type = TREE_TYPE (decl);
678 if (type != error_mark_node
679 && TREE_CODE (type) == ARRAY_TYPE
680 && !DECL_EXTERNAL (decl)
681 && TYPE_DOMAIN (type) == 0)
683 warning_at (DECL_SOURCE_LOCATION (decl),
684 0, "array %q+D assumed to have one element", decl);
686 complete_array_type (&TREE_TYPE (decl), NULL_TREE, true);
688 layout_decl (decl, 0);
693 /* Record that inline function FUNC contains a reference (location
694 LOC) to static DECL (file-scope or function-local according to
695 TYPE). */
697 void
698 record_inline_static (location_t loc, tree func, tree decl,
699 enum c_inline_static_type type)
701 struct c_inline_static *csi = ggc_alloc_c_inline_static ();
702 csi->location = loc;
703 csi->function = func;
704 csi->static_decl = decl;
705 csi->type = type;
706 csi->next = c_inline_statics;
707 c_inline_statics = csi;
710 /* Check for references to static declarations in inline functions at
711 the end of the translation unit and diagnose them if the functions
712 are still inline definitions. */
714 static void
715 check_inline_statics (void)
717 struct c_inline_static *csi;
718 for (csi = c_inline_statics; csi; csi = csi->next)
720 if (DECL_EXTERNAL (csi->function))
721 switch (csi->type)
723 case csi_internal:
724 pedwarn (csi->location, 0,
725 "%qD is static but used in inline function %qD "
726 "which is not static", csi->static_decl, csi->function);
727 break;
728 case csi_modifiable:
729 pedwarn (csi->location, 0,
730 "%q+D is static but declared in inline function %qD "
731 "which is not static", csi->static_decl, csi->function);
732 break;
733 default:
734 gcc_unreachable ();
737 c_inline_statics = NULL;
740 /* Fill in a c_spot_bindings structure. If DEFINING is true, set it
741 for the current state, otherwise set it to uninitialized. */
743 static void
744 set_spot_bindings (struct c_spot_bindings *p, bool defining)
746 if (defining)
748 p->scope = current_scope;
749 p->bindings_in_scope = current_scope->bindings;
751 else
753 p->scope = NULL;
754 p->bindings_in_scope = NULL;
756 p->stmt_exprs = 0;
757 p->left_stmt_expr = false;
760 /* Return true if we will want to say something if a goto statement
761 crosses DECL. */
763 static bool
764 decl_jump_unsafe (tree decl)
766 if (decl == error_mark_node || TREE_TYPE (decl) == error_mark_node)
767 return false;
769 /* Always warn about crossing variably modified types. */
770 if ((TREE_CODE (decl) == VAR_DECL || TREE_CODE (decl) == TYPE_DECL)
771 && variably_modified_type_p (TREE_TYPE (decl), NULL_TREE))
772 return true;
774 /* Otherwise, only warn if -Wgoto-misses-init and this is an
775 initialized automatic decl. */
776 if (warn_jump_misses_init
777 && TREE_CODE (decl) == VAR_DECL
778 && !TREE_STATIC (decl)
779 && DECL_INITIAL (decl) != NULL_TREE)
780 return true;
782 return false;
785 /* Update spot bindings P as we pop out of SCOPE. Return true if we
786 should push decls for a label. */
788 static bool
789 update_spot_bindings (struct c_scope *scope, struct c_spot_bindings *p)
791 if (p->scope != scope)
793 /* This label or goto is defined in some other scope, or it is a
794 label which is not yet defined. There is nothing to
795 update. */
796 return false;
799 /* Adjust the spot bindings to refer to the bindings already defined
800 in the enclosing scope. */
801 p->scope = scope->outer;
802 p->bindings_in_scope = p->scope->bindings;
804 return true;
807 /* The Objective-C front-end often needs to determine the current scope. */
809 void *
810 objc_get_current_scope (void)
812 return current_scope;
815 /* The following function is used only by Objective-C. It needs to live here
816 because it accesses the innards of c_scope. */
818 void
819 objc_mark_locals_volatile (void *enclosing_blk)
821 struct c_scope *scope;
822 struct c_binding *b;
824 for (scope = current_scope;
825 scope && scope != enclosing_blk;
826 scope = scope->outer)
828 for (b = scope->bindings; b; b = b->prev)
829 objc_volatilize_decl (b->decl);
831 /* Do not climb up past the current function. */
832 if (scope->function_body)
833 break;
837 /* Nonzero if we are currently in file scope. */
840 global_bindings_p (void)
842 return (current_scope == file_scope && !c_override_global_bindings_to_false
843 ? -1
844 : 0);
847 void
848 keep_next_level (void)
850 keep_next_level_flag = true;
853 /* Set the flag for the FLOAT_CONST_DECIMAL64 pragma being ON. */
855 void
856 set_float_const_decimal64 (void)
858 current_scope->float_const_decimal64 = true;
861 /* Clear the flag for the FLOAT_CONST_DECIMAL64 pragma. */
863 void
864 clear_float_const_decimal64 (void)
866 current_scope->float_const_decimal64 = false;
869 /* Return nonzero if an unsuffixed float constant is _Decimal64. */
871 bool
872 float_const_decimal64_p (void)
874 return current_scope->float_const_decimal64;
877 /* Identify this scope as currently being filled with parameters. */
879 void
880 declare_parm_level (void)
882 current_scope->parm_flag = true;
885 void
886 push_scope (void)
888 if (next_is_function_body)
890 /* This is the transition from the parameters to the top level
891 of the function body. These are the same scope
892 (C99 6.2.1p4,6) so we do not push another scope structure.
893 next_is_function_body is set only by store_parm_decls, which
894 in turn is called when and only when we are about to
895 encounter the opening curly brace for the function body.
897 The outermost block of a function always gets a BLOCK node,
898 because the debugging output routines expect that each
899 function has at least one BLOCK. */
900 current_scope->parm_flag = false;
901 current_scope->function_body = true;
902 current_scope->keep = true;
903 current_scope->outer_function = current_function_scope;
904 current_function_scope = current_scope;
906 keep_next_level_flag = false;
907 next_is_function_body = false;
909 /* The FLOAT_CONST_DECIMAL64 pragma applies to nested scopes. */
910 if (current_scope->outer)
911 current_scope->float_const_decimal64
912 = current_scope->outer->float_const_decimal64;
913 else
914 current_scope->float_const_decimal64 = false;
916 else
918 struct c_scope *scope;
919 if (scope_freelist)
921 scope = scope_freelist;
922 scope_freelist = scope->outer;
924 else
925 scope = ggc_alloc_cleared_c_scope ();
927 /* The FLOAT_CONST_DECIMAL64 pragma applies to nested scopes. */
928 if (current_scope)
929 scope->float_const_decimal64 = current_scope->float_const_decimal64;
930 else
931 scope->float_const_decimal64 = false;
933 scope->keep = keep_next_level_flag;
934 scope->outer = current_scope;
935 scope->depth = current_scope ? (current_scope->depth + 1) : 0;
937 /* Check for scope depth overflow. Unlikely (2^28 == 268,435,456) but
938 possible. */
939 if (current_scope && scope->depth == 0)
941 scope->depth--;
942 sorry ("GCC supports only %u nested scopes", scope->depth);
945 current_scope = scope;
946 keep_next_level_flag = false;
950 /* This is called when we are leaving SCOPE. For each label defined
951 in SCOPE, add any appropriate decls to its decls_in_scope fields.
952 These are the decls whose initialization will be skipped by a goto
953 later in the function. */
955 static void
956 update_label_decls (struct c_scope *scope)
958 struct c_scope *s;
960 s = scope;
961 while (s != NULL)
963 if (s->has_label_bindings)
965 struct c_binding *b;
967 for (b = s->bindings; b != NULL; b = b->prev)
969 struct c_label_vars *label_vars;
970 struct c_binding *b1;
971 unsigned int ix;
972 struct c_goto_bindings *g;
974 if (TREE_CODE (b->decl) != LABEL_DECL)
975 continue;
976 label_vars = b->u.label;
978 b1 = label_vars->label_bindings.bindings_in_scope;
979 if (update_spot_bindings (scope, &label_vars->label_bindings))
981 /* This label is defined in this scope. */
982 for (; b1 != NULL; b1 = b1->prev)
984 /* A goto from later in the function to this
985 label will never see the initialization of
986 B1, if any. Save it to issue a warning if
987 needed. */
988 if (decl_jump_unsafe (b1->decl))
989 VEC_safe_push (tree, gc, label_vars->decls_in_scope,
990 b1->decl);
994 /* Update the bindings of any goto statements associated
995 with this label. */
996 FOR_EACH_VEC_ELT (c_goto_bindings_p, label_vars->gotos, ix, g)
997 update_spot_bindings (scope, &g->goto_bindings);
1001 /* Don't search beyond the current function. */
1002 if (s == current_function_scope)
1003 break;
1005 s = s->outer;
1009 /* Set the TYPE_CONTEXT of all of TYPE's variants to CONTEXT. */
1011 static void
1012 set_type_context (tree type, tree context)
1014 for (type = TYPE_MAIN_VARIANT (type); type;
1015 type = TYPE_NEXT_VARIANT (type))
1016 TYPE_CONTEXT (type) = context;
1019 /* Exit a scope. Restore the state of the identifier-decl mappings
1020 that were in effect when this scope was entered. Return a BLOCK
1021 node containing all the DECLs in this scope that are of interest
1022 to debug info generation. */
1024 tree
1025 pop_scope (void)
1027 struct c_scope *scope = current_scope;
1028 tree block, context, p;
1029 struct c_binding *b;
1031 bool functionbody = scope->function_body;
1032 bool keep = functionbody || scope->keep || scope->bindings;
1034 update_label_decls (scope);
1036 /* If appropriate, create a BLOCK to record the decls for the life
1037 of this function. */
1038 block = 0;
1039 if (keep)
1041 block = make_node (BLOCK);
1042 BLOCK_SUBBLOCKS (block) = scope->blocks;
1043 TREE_USED (block) = 1;
1045 /* In each subblock, record that this is its superior. */
1046 for (p = scope->blocks; p; p = BLOCK_CHAIN (p))
1047 BLOCK_SUPERCONTEXT (p) = block;
1049 BLOCK_VARS (block) = 0;
1052 /* The TYPE_CONTEXTs for all of the tagged types belonging to this
1053 scope must be set so that they point to the appropriate
1054 construct, i.e. either to the current FUNCTION_DECL node, or
1055 else to the BLOCK node we just constructed.
1057 Note that for tagged types whose scope is just the formal
1058 parameter list for some function type specification, we can't
1059 properly set their TYPE_CONTEXTs here, because we don't have a
1060 pointer to the appropriate FUNCTION_TYPE node readily available
1061 to us. For those cases, the TYPE_CONTEXTs of the relevant tagged
1062 type nodes get set in `grokdeclarator' as soon as we have created
1063 the FUNCTION_TYPE node which will represent the "scope" for these
1064 "parameter list local" tagged types. */
1065 if (scope->function_body)
1066 context = current_function_decl;
1067 else if (scope == file_scope)
1069 tree file_decl = build_translation_unit_decl (NULL_TREE);
1070 context = file_decl;
1072 else
1073 context = block;
1075 /* Clear all bindings in this scope. */
1076 for (b = scope->bindings; b; b = free_binding_and_advance (b))
1078 p = b->decl;
1079 switch (TREE_CODE (p))
1081 case LABEL_DECL:
1082 /* Warnings for unused labels, errors for undefined labels. */
1083 if (TREE_USED (p) && !DECL_INITIAL (p))
1085 error ("label %q+D used but not defined", p);
1086 DECL_INITIAL (p) = error_mark_node;
1088 else
1089 warn_for_unused_label (p);
1091 /* Labels go in BLOCK_VARS. */
1092 DECL_CHAIN (p) = BLOCK_VARS (block);
1093 BLOCK_VARS (block) = p;
1094 gcc_assert (I_LABEL_BINDING (b->id) == b);
1095 I_LABEL_BINDING (b->id) = b->shadowed;
1097 /* Also pop back to the shadowed label_vars. */
1098 release_tree_vector (b->u.label->decls_in_scope);
1099 b->u.label = b->u.label->shadowed;
1100 break;
1102 case ENUMERAL_TYPE:
1103 case UNION_TYPE:
1104 case RECORD_TYPE:
1105 set_type_context (p, context);
1107 /* Types may not have tag-names, in which case the type
1108 appears in the bindings list with b->id NULL. */
1109 if (b->id)
1111 gcc_assert (I_TAG_BINDING (b->id) == b);
1112 I_TAG_BINDING (b->id) = b->shadowed;
1114 break;
1116 case FUNCTION_DECL:
1117 /* Propagate TREE_ADDRESSABLE from nested functions to their
1118 containing functions. */
1119 if (!TREE_ASM_WRITTEN (p)
1120 && DECL_INITIAL (p) != 0
1121 && TREE_ADDRESSABLE (p)
1122 && DECL_ABSTRACT_ORIGIN (p) != 0
1123 && DECL_ABSTRACT_ORIGIN (p) != p)
1124 TREE_ADDRESSABLE (DECL_ABSTRACT_ORIGIN (p)) = 1;
1125 if (!DECL_EXTERNAL (p)
1126 && !DECL_INITIAL (p)
1127 && scope != file_scope
1128 && scope != external_scope)
1130 error ("nested function %q+D declared but never defined", p);
1131 undef_nested_function = true;
1133 else if (DECL_DECLARED_INLINE_P (p)
1134 && TREE_PUBLIC (p)
1135 && !DECL_INITIAL (p))
1137 /* C99 6.7.4p6: "a function with external linkage... declared
1138 with an inline function specifier ... shall also be defined
1139 in the same translation unit." */
1140 if (!flag_gnu89_inline)
1141 pedwarn (input_location, 0,
1142 "inline function %q+D declared but never defined", p);
1143 DECL_EXTERNAL (p) = 1;
1146 goto common_symbol;
1148 case VAR_DECL:
1149 /* Warnings for unused variables. */
1150 if ((!TREE_USED (p) || !DECL_READ_P (p))
1151 && !TREE_NO_WARNING (p)
1152 && !DECL_IN_SYSTEM_HEADER (p)
1153 && DECL_NAME (p)
1154 && !DECL_ARTIFICIAL (p)
1155 && scope != file_scope
1156 && scope != external_scope)
1158 if (!TREE_USED (p))
1159 warning (OPT_Wunused_variable, "unused variable %q+D", p);
1160 else if (DECL_CONTEXT (p) == current_function_decl)
1161 warning_at (DECL_SOURCE_LOCATION (p),
1162 OPT_Wunused_but_set_variable,
1163 "variable %qD set but not used", p);
1166 if (b->inner_comp)
1168 error ("type of array %q+D completed incompatibly with"
1169 " implicit initialization", p);
1172 /* Fall through. */
1173 case TYPE_DECL:
1174 case CONST_DECL:
1175 common_symbol:
1176 /* All of these go in BLOCK_VARS, but only if this is the
1177 binding in the home scope. */
1178 if (!b->nested)
1180 DECL_CHAIN (p) = BLOCK_VARS (block);
1181 BLOCK_VARS (block) = p;
1183 else if (VAR_OR_FUNCTION_DECL_P (p))
1185 /* For block local externs add a special
1186 DECL_EXTERNAL decl for debug info generation. */
1187 tree extp = copy_node (p);
1189 DECL_EXTERNAL (extp) = 1;
1190 TREE_STATIC (extp) = 0;
1191 TREE_PUBLIC (extp) = 1;
1192 DECL_INITIAL (extp) = NULL_TREE;
1193 DECL_LANG_SPECIFIC (extp) = NULL;
1194 DECL_CONTEXT (extp) = current_function_decl;
1195 if (TREE_CODE (p) == FUNCTION_DECL)
1197 DECL_RESULT (extp) = NULL_TREE;
1198 DECL_SAVED_TREE (extp) = NULL_TREE;
1199 DECL_STRUCT_FUNCTION (extp) = NULL;
1201 if (b->locus != UNKNOWN_LOCATION)
1202 DECL_SOURCE_LOCATION (extp) = b->locus;
1203 DECL_CHAIN (extp) = BLOCK_VARS (block);
1204 BLOCK_VARS (block) = extp;
1206 /* If this is the file scope set DECL_CONTEXT of each decl to
1207 the TRANSLATION_UNIT_DECL. This makes same_translation_unit_p
1208 work. */
1209 if (scope == file_scope)
1211 DECL_CONTEXT (p) = context;
1212 if (TREE_CODE (p) == TYPE_DECL
1213 && TREE_TYPE (p) != error_mark_node)
1214 set_type_context (TREE_TYPE (p), context);
1217 /* Fall through. */
1218 /* Parameters go in DECL_ARGUMENTS, not BLOCK_VARS, and have
1219 already been put there by store_parm_decls. Unused-
1220 parameter warnings are handled by function.c.
1221 error_mark_node obviously does not go in BLOCK_VARS and
1222 does not get unused-variable warnings. */
1223 case PARM_DECL:
1224 case ERROR_MARK:
1225 /* It is possible for a decl not to have a name. We get
1226 here with b->id NULL in this case. */
1227 if (b->id)
1229 gcc_assert (I_SYMBOL_BINDING (b->id) == b);
1230 I_SYMBOL_BINDING (b->id) = b->shadowed;
1231 if (b->shadowed && b->shadowed->u.type)
1232 TREE_TYPE (b->shadowed->decl) = b->shadowed->u.type;
1234 break;
1236 default:
1237 gcc_unreachable ();
1242 /* Dispose of the block that we just made inside some higher level. */
1243 if ((scope->function_body || scope == file_scope) && context)
1245 DECL_INITIAL (context) = block;
1246 BLOCK_SUPERCONTEXT (block) = context;
1248 else if (scope->outer)
1250 if (block)
1251 SCOPE_LIST_APPEND (scope->outer, blocks, block);
1252 /* If we did not make a block for the scope just exited, any
1253 blocks made for inner scopes must be carried forward so they
1254 will later become subblocks of something else. */
1255 else if (scope->blocks)
1256 SCOPE_LIST_CONCAT (scope->outer, blocks, scope, blocks);
1259 /* Pop the current scope, and free the structure for reuse. */
1260 current_scope = scope->outer;
1261 if (scope->function_body)
1262 current_function_scope = scope->outer_function;
1264 memset (scope, 0, sizeof (struct c_scope));
1265 scope->outer = scope_freelist;
1266 scope_freelist = scope;
1268 return block;
1271 void
1272 push_file_scope (void)
1274 tree decl;
1276 if (file_scope)
1277 return;
1279 push_scope ();
1280 file_scope = current_scope;
1282 start_fname_decls ();
1284 for (decl = visible_builtins; decl; decl = DECL_CHAIN (decl))
1285 bind (DECL_NAME (decl), decl, file_scope,
1286 /*invisible=*/false, /*nested=*/true, DECL_SOURCE_LOCATION (decl));
1289 void
1290 pop_file_scope (void)
1292 /* In case there were missing closebraces, get us back to the global
1293 binding level. */
1294 while (current_scope != file_scope)
1295 pop_scope ();
1297 /* __FUNCTION__ is defined at file scope (""). This
1298 call may not be necessary as my tests indicate it
1299 still works without it. */
1300 finish_fname_decls ();
1302 check_inline_statics ();
1304 /* This is the point to write out a PCH if we're doing that.
1305 In that case we do not want to do anything else. */
1306 if (pch_file)
1308 c_common_write_pch ();
1309 return;
1312 /* Pop off the file scope and close this translation unit. */
1313 pop_scope ();
1314 file_scope = 0;
1316 maybe_apply_pending_pragma_weaks ();
1319 /* Adjust the bindings for the start of a statement expression. */
1321 void
1322 c_bindings_start_stmt_expr (struct c_spot_bindings* switch_bindings)
1324 struct c_scope *scope;
1326 for (scope = current_scope; scope != NULL; scope = scope->outer)
1328 struct c_binding *b;
1330 if (!scope->has_label_bindings)
1331 continue;
1333 for (b = scope->bindings; b != NULL; b = b->prev)
1335 struct c_label_vars *label_vars;
1336 unsigned int ix;
1337 struct c_goto_bindings *g;
1339 if (TREE_CODE (b->decl) != LABEL_DECL)
1340 continue;
1341 label_vars = b->u.label;
1342 ++label_vars->label_bindings.stmt_exprs;
1343 FOR_EACH_VEC_ELT (c_goto_bindings_p, label_vars->gotos, ix, g)
1344 ++g->goto_bindings.stmt_exprs;
1348 if (switch_bindings != NULL)
1349 ++switch_bindings->stmt_exprs;
1352 /* Adjust the bindings for the end of a statement expression. */
1354 void
1355 c_bindings_end_stmt_expr (struct c_spot_bindings *switch_bindings)
1357 struct c_scope *scope;
1359 for (scope = current_scope; scope != NULL; scope = scope->outer)
1361 struct c_binding *b;
1363 if (!scope->has_label_bindings)
1364 continue;
1366 for (b = scope->bindings; b != NULL; b = b->prev)
1368 struct c_label_vars *label_vars;
1369 unsigned int ix;
1370 struct c_goto_bindings *g;
1372 if (TREE_CODE (b->decl) != LABEL_DECL)
1373 continue;
1374 label_vars = b->u.label;
1375 --label_vars->label_bindings.stmt_exprs;
1376 if (label_vars->label_bindings.stmt_exprs < 0)
1378 label_vars->label_bindings.left_stmt_expr = true;
1379 label_vars->label_bindings.stmt_exprs = 0;
1381 FOR_EACH_VEC_ELT (c_goto_bindings_p, label_vars->gotos, ix, g)
1383 --g->goto_bindings.stmt_exprs;
1384 if (g->goto_bindings.stmt_exprs < 0)
1386 g->goto_bindings.left_stmt_expr = true;
1387 g->goto_bindings.stmt_exprs = 0;
1393 if (switch_bindings != NULL)
1395 --switch_bindings->stmt_exprs;
1396 gcc_assert (switch_bindings->stmt_exprs >= 0);
1400 /* Push a definition or a declaration of struct, union or enum tag "name".
1401 "type" should be the type node.
1402 We assume that the tag "name" is not already defined, and has a location
1403 of LOC.
1405 Note that the definition may really be just a forward reference.
1406 In that case, the TYPE_SIZE will be zero. */
1408 static void
1409 pushtag (location_t loc, tree name, tree type)
1411 /* Record the identifier as the type's name if it has none. */
1412 if (name && !TYPE_NAME (type))
1413 TYPE_NAME (type) = name;
1414 bind (name, type, current_scope, /*invisible=*/false, /*nested=*/false, loc);
1416 /* Create a fake NULL-named TYPE_DECL node whose TREE_TYPE will be the
1417 tagged type we just added to the current scope. This fake
1418 NULL-named TYPE_DECL node helps dwarfout.c to know when it needs
1419 to output a representation of a tagged type, and it also gives
1420 us a convenient place to record the "scope start" address for the
1421 tagged type. */
1423 TYPE_STUB_DECL (type) = pushdecl (build_decl (loc,
1424 TYPE_DECL, NULL_TREE, type));
1426 /* An approximation for now, so we can tell this is a function-scope tag.
1427 This will be updated in pop_scope. */
1428 TYPE_CONTEXT (type) = DECL_CONTEXT (TYPE_STUB_DECL (type));
1430 if (warn_cxx_compat && name != NULL_TREE)
1432 struct c_binding *b = I_SYMBOL_BINDING (name);
1434 if (b != NULL
1435 && b->decl != NULL_TREE
1436 && TREE_CODE (b->decl) == TYPE_DECL
1437 && (B_IN_CURRENT_SCOPE (b)
1438 || (current_scope == file_scope && B_IN_EXTERNAL_SCOPE (b)))
1439 && (TYPE_MAIN_VARIANT (TREE_TYPE (b->decl))
1440 != TYPE_MAIN_VARIANT (type)))
1442 warning_at (loc, OPT_Wc___compat,
1443 ("using %qD as both a typedef and a tag is "
1444 "invalid in C++"),
1445 b->decl);
1446 if (b->locus != UNKNOWN_LOCATION)
1447 inform (b->locus, "originally defined here");
1452 /* Subroutine of compare_decls. Allow harmless mismatches in return
1453 and argument types provided that the type modes match. This function
1454 return a unified type given a suitable match, and 0 otherwise. */
1456 static tree
1457 match_builtin_function_types (tree newtype, tree oldtype)
1459 tree newrettype, oldrettype;
1460 tree newargs, oldargs;
1461 tree trytype, tryargs;
1463 /* Accept the return type of the new declaration if same modes. */
1464 oldrettype = TREE_TYPE (oldtype);
1465 newrettype = TREE_TYPE (newtype);
1467 if (TYPE_MODE (oldrettype) != TYPE_MODE (newrettype))
1468 return 0;
1470 oldargs = TYPE_ARG_TYPES (oldtype);
1471 newargs = TYPE_ARG_TYPES (newtype);
1472 tryargs = newargs;
1474 while (oldargs || newargs)
1476 if (!oldargs
1477 || !newargs
1478 || !TREE_VALUE (oldargs)
1479 || !TREE_VALUE (newargs)
1480 || TYPE_MODE (TREE_VALUE (oldargs))
1481 != TYPE_MODE (TREE_VALUE (newargs)))
1482 return 0;
1484 oldargs = TREE_CHAIN (oldargs);
1485 newargs = TREE_CHAIN (newargs);
1488 trytype = build_function_type (newrettype, tryargs);
1489 return build_type_attribute_variant (trytype, TYPE_ATTRIBUTES (oldtype));
1492 /* Subroutine of diagnose_mismatched_decls. Check for function type
1493 mismatch involving an empty arglist vs a nonempty one and give clearer
1494 diagnostics. */
1495 static void
1496 diagnose_arglist_conflict (tree newdecl, tree olddecl,
1497 tree newtype, tree oldtype)
1499 tree t;
1501 if (TREE_CODE (olddecl) != FUNCTION_DECL
1502 || !comptypes (TREE_TYPE (oldtype), TREE_TYPE (newtype))
1503 || !((TYPE_ARG_TYPES (oldtype) == 0 && DECL_INITIAL (olddecl) == 0)
1505 (TYPE_ARG_TYPES (newtype) == 0 && DECL_INITIAL (newdecl) == 0)))
1506 return;
1508 t = TYPE_ARG_TYPES (oldtype);
1509 if (t == 0)
1510 t = TYPE_ARG_TYPES (newtype);
1511 for (; t; t = TREE_CHAIN (t))
1513 tree type = TREE_VALUE (t);
1515 if (TREE_CHAIN (t) == 0
1516 && TYPE_MAIN_VARIANT (type) != void_type_node)
1518 inform (input_location, "a parameter list with an ellipsis can%'t match "
1519 "an empty parameter name list declaration");
1520 break;
1523 if (c_type_promotes_to (type) != type)
1525 inform (input_location, "an argument type that has a default promotion can%'t match "
1526 "an empty parameter name list declaration");
1527 break;
1532 /* Another subroutine of diagnose_mismatched_decls. OLDDECL is an
1533 old-style function definition, NEWDECL is a prototype declaration.
1534 Diagnose inconsistencies in the argument list. Returns TRUE if
1535 the prototype is compatible, FALSE if not. */
1536 static bool
1537 validate_proto_after_old_defn (tree newdecl, tree newtype, tree oldtype)
1539 tree newargs, oldargs;
1540 int i;
1542 #define END_OF_ARGLIST(t) ((t) == void_type_node)
1544 oldargs = TYPE_ACTUAL_ARG_TYPES (oldtype);
1545 newargs = TYPE_ARG_TYPES (newtype);
1546 i = 1;
1548 for (;;)
1550 tree oldargtype = TREE_VALUE (oldargs);
1551 tree newargtype = TREE_VALUE (newargs);
1553 if (oldargtype == error_mark_node || newargtype == error_mark_node)
1554 return false;
1556 oldargtype = TYPE_MAIN_VARIANT (oldargtype);
1557 newargtype = TYPE_MAIN_VARIANT (newargtype);
1559 if (END_OF_ARGLIST (oldargtype) && END_OF_ARGLIST (newargtype))
1560 break;
1562 /* Reaching the end of just one list means the two decls don't
1563 agree on the number of arguments. */
1564 if (END_OF_ARGLIST (oldargtype))
1566 error ("prototype for %q+D declares more arguments "
1567 "than previous old-style definition", newdecl);
1568 return false;
1570 else if (END_OF_ARGLIST (newargtype))
1572 error ("prototype for %q+D declares fewer arguments "
1573 "than previous old-style definition", newdecl);
1574 return false;
1577 /* Type for passing arg must be consistent with that declared
1578 for the arg. */
1579 else if (!comptypes (oldargtype, newargtype))
1581 error ("prototype for %q+D declares argument %d"
1582 " with incompatible type",
1583 newdecl, i);
1584 return false;
1587 oldargs = TREE_CHAIN (oldargs);
1588 newargs = TREE_CHAIN (newargs);
1589 i++;
1592 /* If we get here, no errors were found, but do issue a warning
1593 for this poor-style construct. */
1594 warning (0, "prototype for %q+D follows non-prototype definition",
1595 newdecl);
1596 return true;
1597 #undef END_OF_ARGLIST
1600 /* Subroutine of diagnose_mismatched_decls. Report the location of DECL,
1601 first in a pair of mismatched declarations, using the diagnostic
1602 function DIAG. */
1603 static void
1604 locate_old_decl (tree decl)
1606 if (TREE_CODE (decl) == FUNCTION_DECL && DECL_BUILT_IN (decl))
1608 else if (DECL_INITIAL (decl))
1609 inform (input_location, "previous definition of %q+D was here", decl);
1610 else if (C_DECL_IMPLICIT (decl))
1611 inform (input_location, "previous implicit declaration of %q+D was here", decl);
1612 else
1613 inform (input_location, "previous declaration of %q+D was here", decl);
1616 /* Subroutine of duplicate_decls. Compare NEWDECL to OLDDECL.
1617 Returns true if the caller should proceed to merge the two, false
1618 if OLDDECL should simply be discarded. As a side effect, issues
1619 all necessary diagnostics for invalid or poor-style combinations.
1620 If it returns true, writes the types of NEWDECL and OLDDECL to
1621 *NEWTYPEP and *OLDTYPEP - these may have been adjusted from
1622 TREE_TYPE (NEWDECL, OLDDECL) respectively. */
1624 static bool
1625 diagnose_mismatched_decls (tree newdecl, tree olddecl,
1626 tree *newtypep, tree *oldtypep)
1628 tree newtype, oldtype;
1629 bool pedwarned = false;
1630 bool warned = false;
1631 bool retval = true;
1633 #define DECL_EXTERN_INLINE(DECL) (DECL_DECLARED_INLINE_P (DECL) \
1634 && DECL_EXTERNAL (DECL))
1636 /* If we have error_mark_node for either decl or type, just discard
1637 the previous decl - we're in an error cascade already. */
1638 if (olddecl == error_mark_node || newdecl == error_mark_node)
1639 return false;
1640 *oldtypep = oldtype = TREE_TYPE (olddecl);
1641 *newtypep = newtype = TREE_TYPE (newdecl);
1642 if (oldtype == error_mark_node || newtype == error_mark_node)
1643 return false;
1645 /* Two different categories of symbol altogether. This is an error
1646 unless OLDDECL is a builtin. OLDDECL will be discarded in any case. */
1647 if (TREE_CODE (olddecl) != TREE_CODE (newdecl))
1649 if (!(TREE_CODE (olddecl) == FUNCTION_DECL
1650 && DECL_BUILT_IN (olddecl)
1651 && !C_DECL_DECLARED_BUILTIN (olddecl)))
1653 error ("%q+D redeclared as different kind of symbol", newdecl);
1654 locate_old_decl (olddecl);
1656 else if (TREE_PUBLIC (newdecl))
1657 warning (0, "built-in function %q+D declared as non-function",
1658 newdecl);
1659 else
1660 warning (OPT_Wshadow, "declaration of %q+D shadows "
1661 "a built-in function", newdecl);
1662 return false;
1665 /* Enumerators have no linkage, so may only be declared once in a
1666 given scope. */
1667 if (TREE_CODE (olddecl) == CONST_DECL)
1669 error ("redeclaration of enumerator %q+D", newdecl);
1670 locate_old_decl (olddecl);
1671 return false;
1674 if (!comptypes (oldtype, newtype))
1676 if (TREE_CODE (olddecl) == FUNCTION_DECL
1677 && DECL_BUILT_IN (olddecl) && !C_DECL_DECLARED_BUILTIN (olddecl))
1679 /* Accept harmless mismatch in function types.
1680 This is for the ffs and fprintf builtins. */
1681 tree trytype = match_builtin_function_types (newtype, oldtype);
1683 if (trytype && comptypes (newtype, trytype))
1684 *oldtypep = oldtype = trytype;
1685 else
1687 /* If types don't match for a built-in, throw away the
1688 built-in. No point in calling locate_old_decl here, it
1689 won't print anything. */
1690 warning (0, "conflicting types for built-in function %q+D",
1691 newdecl);
1692 return false;
1695 else if (TREE_CODE (olddecl) == FUNCTION_DECL
1696 && DECL_IS_BUILTIN (olddecl))
1698 /* A conflicting function declaration for a predeclared
1699 function that isn't actually built in. Objective C uses
1700 these. The new declaration silently overrides everything
1701 but the volatility (i.e. noreturn) indication. See also
1702 below. FIXME: Make Objective C use normal builtins. */
1703 TREE_THIS_VOLATILE (newdecl) |= TREE_THIS_VOLATILE (olddecl);
1704 return false;
1706 /* Permit void foo (...) to match int foo (...) if the latter is
1707 the definition and implicit int was used. See
1708 c-torture/compile/920625-2.c. */
1709 else if (TREE_CODE (newdecl) == FUNCTION_DECL && DECL_INITIAL (newdecl)
1710 && TYPE_MAIN_VARIANT (TREE_TYPE (oldtype)) == void_type_node
1711 && TYPE_MAIN_VARIANT (TREE_TYPE (newtype)) == integer_type_node
1712 && C_FUNCTION_IMPLICIT_INT (newdecl) && !DECL_INITIAL (olddecl))
1714 pedwarned = pedwarn (input_location, 0,
1715 "conflicting types for %q+D", newdecl);
1716 /* Make sure we keep void as the return type. */
1717 TREE_TYPE (newdecl) = *newtypep = newtype = oldtype;
1718 C_FUNCTION_IMPLICIT_INT (newdecl) = 0;
1720 /* Permit void foo (...) to match an earlier call to foo (...) with
1721 no declared type (thus, implicitly int). */
1722 else if (TREE_CODE (newdecl) == FUNCTION_DECL
1723 && TYPE_MAIN_VARIANT (TREE_TYPE (newtype)) == void_type_node
1724 && TYPE_MAIN_VARIANT (TREE_TYPE (oldtype)) == integer_type_node
1725 && C_DECL_IMPLICIT (olddecl) && !DECL_INITIAL (olddecl))
1727 pedwarned = pedwarn (input_location, 0,
1728 "conflicting types for %q+D", newdecl);
1729 /* Make sure we keep void as the return type. */
1730 TREE_TYPE (olddecl) = *oldtypep = oldtype = newtype;
1732 else
1734 int new_quals = TYPE_QUALS (newtype);
1735 int old_quals = TYPE_QUALS (oldtype);
1737 if (new_quals != old_quals)
1739 addr_space_t new_addr = DECODE_QUAL_ADDR_SPACE (new_quals);
1740 addr_space_t old_addr = DECODE_QUAL_ADDR_SPACE (old_quals);
1741 if (new_addr != old_addr)
1743 if (ADDR_SPACE_GENERIC_P (new_addr))
1744 error ("conflicting named address spaces (generic vs %s) "
1745 "for %q+D",
1746 c_addr_space_name (old_addr), newdecl);
1747 else if (ADDR_SPACE_GENERIC_P (old_addr))
1748 error ("conflicting named address spaces (%s vs generic) "
1749 "for %q+D",
1750 c_addr_space_name (new_addr), newdecl);
1751 else
1752 error ("conflicting named address spaces (%s vs %s) "
1753 "for %q+D",
1754 c_addr_space_name (new_addr),
1755 c_addr_space_name (old_addr),
1756 newdecl);
1759 if (CLEAR_QUAL_ADDR_SPACE (new_quals)
1760 != CLEAR_QUAL_ADDR_SPACE (old_quals))
1761 error ("conflicting type qualifiers for %q+D", newdecl);
1763 else
1764 error ("conflicting types for %q+D", newdecl);
1765 diagnose_arglist_conflict (newdecl, olddecl, newtype, oldtype);
1766 locate_old_decl (olddecl);
1767 return false;
1771 /* Redeclaration of a type is a constraint violation (6.7.2.3p1),
1772 but silently ignore the redeclaration if either is in a system
1773 header. (Conflicting redeclarations were handled above.) This
1774 is allowed for C1X if the types are the same, not just
1775 compatible. */
1776 if (TREE_CODE (newdecl) == TYPE_DECL)
1778 bool types_different = false;
1779 int comptypes_result;
1781 comptypes_result
1782 = comptypes_check_different_types (oldtype, newtype, &types_different);
1784 if (comptypes_result != 1 || types_different)
1786 error ("redefinition of typedef %q+D with different type", newdecl);
1787 locate_old_decl (olddecl);
1788 return false;
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 if (pedantic && !flag_isoc1x)
1799 pedwarn (input_location, OPT_pedantic,
1800 "redefinition of typedef %q+D", newdecl);
1801 locate_old_decl (olddecl);
1803 else if (variably_modified_type_p (newtype, NULL))
1805 /* Whether there is a constraint violation for the types not
1806 being the same cannot be determined at compile time; a
1807 warning that there may be one at runtime is considered
1808 appropriate (WG14 reflector message 11743, 8 May 2009). */
1809 warning (0, "redefinition of typedef %q+D may be a constraint "
1810 "violation at runtime", newdecl);
1811 locate_old_decl (olddecl);
1814 return true;
1817 /* Function declarations can either be 'static' or 'extern' (no
1818 qualifier is equivalent to 'extern' - C99 6.2.2p5) and therefore
1819 can never conflict with each other on account of linkage
1820 (6.2.2p4). Multiple definitions are not allowed (6.9p3,5) but
1821 gnu89 mode permits two definitions if one is 'extern inline' and
1822 one is not. The non- extern-inline definition supersedes the
1823 extern-inline definition. */
1825 else if (TREE_CODE (newdecl) == FUNCTION_DECL)
1827 /* If you declare a built-in function name as static, or
1828 define the built-in with an old-style definition (so we
1829 can't validate the argument list) the built-in definition is
1830 overridden, but optionally warn this was a bad choice of name. */
1831 if (DECL_BUILT_IN (olddecl)
1832 && !C_DECL_DECLARED_BUILTIN (olddecl)
1833 && (!TREE_PUBLIC (newdecl)
1834 || (DECL_INITIAL (newdecl)
1835 && !TYPE_ARG_TYPES (TREE_TYPE (newdecl)))))
1837 warning (OPT_Wshadow, "declaration of %q+D shadows "
1838 "a built-in function", newdecl);
1839 /* Discard the old built-in function. */
1840 return false;
1843 if (DECL_INITIAL (newdecl))
1845 if (DECL_INITIAL (olddecl))
1847 /* If both decls are in the same TU and the new declaration
1848 isn't overriding an extern inline reject the new decl.
1849 In c99, no overriding is allowed in the same translation
1850 unit. */
1851 if ((!DECL_EXTERN_INLINE (olddecl)
1852 || DECL_EXTERN_INLINE (newdecl)
1853 || (!flag_gnu89_inline
1854 && (!DECL_DECLARED_INLINE_P (olddecl)
1855 || !lookup_attribute ("gnu_inline",
1856 DECL_ATTRIBUTES (olddecl)))
1857 && (!DECL_DECLARED_INLINE_P (newdecl)
1858 || !lookup_attribute ("gnu_inline",
1859 DECL_ATTRIBUTES (newdecl))))
1861 && same_translation_unit_p (newdecl, olddecl))
1863 error ("redefinition of %q+D", newdecl);
1864 locate_old_decl (olddecl);
1865 return false;
1869 /* If we have a prototype after an old-style function definition,
1870 the argument types must be checked specially. */
1871 else if (DECL_INITIAL (olddecl)
1872 && !TYPE_ARG_TYPES (oldtype) && TYPE_ARG_TYPES (newtype)
1873 && TYPE_ACTUAL_ARG_TYPES (oldtype)
1874 && !validate_proto_after_old_defn (newdecl, newtype, oldtype))
1876 locate_old_decl (olddecl);
1877 return false;
1879 /* A non-static declaration (even an "extern") followed by a
1880 static declaration is undefined behavior per C99 6.2.2p3-5,7.
1881 The same is true for a static forward declaration at block
1882 scope followed by a non-static declaration/definition at file
1883 scope. Static followed by non-static at the same scope is
1884 not undefined behavior, and is the most convenient way to get
1885 some effects (see e.g. what unwind-dw2-fde-glibc.c does to
1886 the definition of _Unwind_Find_FDE in unwind-dw2-fde.c), but
1887 we do diagnose it if -Wtraditional. */
1888 if (TREE_PUBLIC (olddecl) && !TREE_PUBLIC (newdecl))
1890 /* Two exceptions to the rule. If olddecl is an extern
1891 inline, or a predeclared function that isn't actually
1892 built in, newdecl silently overrides olddecl. The latter
1893 occur only in Objective C; see also above. (FIXME: Make
1894 Objective C use normal builtins.) */
1895 if (!DECL_IS_BUILTIN (olddecl)
1896 && !DECL_EXTERN_INLINE (olddecl))
1898 error ("static declaration of %q+D follows "
1899 "non-static declaration", newdecl);
1900 locate_old_decl (olddecl);
1902 return false;
1904 else if (TREE_PUBLIC (newdecl) && !TREE_PUBLIC (olddecl))
1906 if (DECL_CONTEXT (olddecl))
1908 error ("non-static declaration of %q+D follows "
1909 "static declaration", newdecl);
1910 locate_old_decl (olddecl);
1911 return false;
1913 else if (warn_traditional)
1915 warned |= warning (OPT_Wtraditional,
1916 "non-static declaration of %q+D "
1917 "follows static declaration", newdecl);
1921 /* Make sure gnu_inline attribute is either not present, or
1922 present on all inline decls. */
1923 if (DECL_DECLARED_INLINE_P (olddecl)
1924 && DECL_DECLARED_INLINE_P (newdecl))
1926 bool newa = lookup_attribute ("gnu_inline",
1927 DECL_ATTRIBUTES (newdecl)) != NULL;
1928 bool olda = lookup_attribute ("gnu_inline",
1929 DECL_ATTRIBUTES (olddecl)) != NULL;
1930 if (newa != olda)
1932 error_at (input_location, "%<gnu_inline%> attribute present on %q+D",
1933 newa ? newdecl : olddecl);
1934 error_at (DECL_SOURCE_LOCATION (newa ? olddecl : newdecl),
1935 "but not here");
1939 else if (TREE_CODE (newdecl) == VAR_DECL)
1941 /* Only variables can be thread-local, and all declarations must
1942 agree on this property. */
1943 if (C_DECL_THREADPRIVATE_P (olddecl) && !DECL_THREAD_LOCAL_P (newdecl))
1945 /* Nothing to check. Since OLDDECL is marked threadprivate
1946 and NEWDECL does not have a thread-local attribute, we
1947 will merge the threadprivate attribute into NEWDECL. */
1950 else if (DECL_THREAD_LOCAL_P (newdecl) != DECL_THREAD_LOCAL_P (olddecl))
1952 if (DECL_THREAD_LOCAL_P (newdecl))
1953 error ("thread-local declaration of %q+D follows "
1954 "non-thread-local declaration", newdecl);
1955 else
1956 error ("non-thread-local declaration of %q+D follows "
1957 "thread-local declaration", newdecl);
1959 locate_old_decl (olddecl);
1960 return false;
1963 /* Multiple initialized definitions are not allowed (6.9p3,5). */
1964 if (DECL_INITIAL (newdecl) && DECL_INITIAL (olddecl))
1966 error ("redefinition of %q+D", newdecl);
1967 locate_old_decl (olddecl);
1968 return false;
1971 /* Objects declared at file scope: if the first declaration had
1972 external linkage (even if it was an external reference) the
1973 second must have external linkage as well, or the behavior is
1974 undefined. If the first declaration had internal linkage, then
1975 the second must too, or else be an external reference (in which
1976 case the composite declaration still has internal linkage).
1977 As for function declarations, we warn about the static-then-
1978 extern case only for -Wtraditional. See generally 6.2.2p3-5,7. */
1979 if (DECL_FILE_SCOPE_P (newdecl)
1980 && TREE_PUBLIC (newdecl) != TREE_PUBLIC (olddecl))
1982 if (DECL_EXTERNAL (newdecl))
1984 if (!DECL_FILE_SCOPE_P (olddecl))
1986 error ("extern declaration of %q+D follows "
1987 "declaration with no linkage", newdecl);
1988 locate_old_decl (olddecl);
1989 return false;
1991 else if (warn_traditional)
1993 warned |= warning (OPT_Wtraditional,
1994 "non-static declaration of %q+D "
1995 "follows static declaration", newdecl);
1998 else
2000 if (TREE_PUBLIC (newdecl))
2001 error ("non-static declaration of %q+D follows "
2002 "static declaration", newdecl);
2003 else
2004 error ("static declaration of %q+D follows "
2005 "non-static declaration", newdecl);
2007 locate_old_decl (olddecl);
2008 return false;
2011 /* Two objects with the same name declared at the same block
2012 scope must both be external references (6.7p3). */
2013 else if (!DECL_FILE_SCOPE_P (newdecl))
2015 if (DECL_EXTERNAL (newdecl))
2017 /* Extern with initializer at block scope, which will
2018 already have received an error. */
2020 else if (DECL_EXTERNAL (olddecl))
2022 error ("declaration of %q+D with no linkage follows "
2023 "extern declaration", newdecl);
2024 locate_old_decl (olddecl);
2026 else
2028 error ("redeclaration of %q+D with no linkage", newdecl);
2029 locate_old_decl (olddecl);
2032 return false;
2035 /* C++ does not permit a decl to appear multiple times at file
2036 scope. */
2037 if (warn_cxx_compat
2038 && DECL_FILE_SCOPE_P (newdecl)
2039 && !DECL_EXTERNAL (newdecl)
2040 && !DECL_EXTERNAL (olddecl))
2041 warned |= warning_at (DECL_SOURCE_LOCATION (newdecl),
2042 OPT_Wc___compat,
2043 ("duplicate declaration of %qD is "
2044 "invalid in C++"),
2045 newdecl);
2048 /* warnings */
2049 /* All decls must agree on a visibility. */
2050 if (CODE_CONTAINS_STRUCT (TREE_CODE (newdecl), TS_DECL_WITH_VIS)
2051 && DECL_VISIBILITY_SPECIFIED (newdecl) && DECL_VISIBILITY_SPECIFIED (olddecl)
2052 && DECL_VISIBILITY (newdecl) != DECL_VISIBILITY (olddecl))
2054 warned |= warning (0, "redeclaration of %q+D with different visibility "
2055 "(old visibility preserved)", newdecl);
2058 if (TREE_CODE (newdecl) == FUNCTION_DECL)
2060 /* Diagnose inline __attribute__ ((noinline)) which is silly. */
2061 if (DECL_DECLARED_INLINE_P (newdecl)
2062 && lookup_attribute ("noinline", DECL_ATTRIBUTES (olddecl)))
2064 warned |= warning (OPT_Wattributes,
2065 "inline declaration of %qD follows "
2066 "declaration with attribute noinline", newdecl);
2068 else if (DECL_DECLARED_INLINE_P (olddecl)
2069 && lookup_attribute ("noinline", DECL_ATTRIBUTES (newdecl)))
2071 warned |= warning (OPT_Wattributes,
2072 "declaration of %q+D with attribute "
2073 "noinline follows inline declaration ", newdecl);
2076 else /* PARM_DECL, VAR_DECL */
2078 /* Redeclaration of a parameter is a constraint violation (this is
2079 not explicitly stated, but follows from C99 6.7p3 [no more than
2080 one declaration of the same identifier with no linkage in the
2081 same scope, except type tags] and 6.2.2p6 [parameters have no
2082 linkage]). We must check for a forward parameter declaration,
2083 indicated by TREE_ASM_WRITTEN on the old declaration - this is
2084 an extension, the mandatory diagnostic for which is handled by
2085 mark_forward_parm_decls. */
2087 if (TREE_CODE (newdecl) == PARM_DECL
2088 && (!TREE_ASM_WRITTEN (olddecl) || TREE_ASM_WRITTEN (newdecl)))
2090 error ("redefinition of parameter %q+D", newdecl);
2091 locate_old_decl (olddecl);
2092 return false;
2096 /* Optional warning for completely redundant decls. */
2097 if (!warned && !pedwarned
2098 && warn_redundant_decls
2099 /* Don't warn about a function declaration followed by a
2100 definition. */
2101 && !(TREE_CODE (newdecl) == FUNCTION_DECL
2102 && DECL_INITIAL (newdecl) && !DECL_INITIAL (olddecl))
2103 /* Don't warn about redundant redeclarations of builtins. */
2104 && !(TREE_CODE (newdecl) == FUNCTION_DECL
2105 && !DECL_BUILT_IN (newdecl)
2106 && DECL_BUILT_IN (olddecl)
2107 && !C_DECL_DECLARED_BUILTIN (olddecl))
2108 /* Don't warn about an extern followed by a definition. */
2109 && !(DECL_EXTERNAL (olddecl) && !DECL_EXTERNAL (newdecl))
2110 /* Don't warn about forward parameter decls. */
2111 && !(TREE_CODE (newdecl) == PARM_DECL
2112 && TREE_ASM_WRITTEN (olddecl) && !TREE_ASM_WRITTEN (newdecl))
2113 /* Don't warn about a variable definition following a declaration. */
2114 && !(TREE_CODE (newdecl) == VAR_DECL
2115 && DECL_INITIAL (newdecl) && !DECL_INITIAL (olddecl)))
2117 warned = warning (OPT_Wredundant_decls, "redundant redeclaration of %q+D",
2118 newdecl);
2121 /* Report location of previous decl/defn. */
2122 if (warned || pedwarned)
2123 locate_old_decl (olddecl);
2125 #undef DECL_EXTERN_INLINE
2127 return retval;
2130 /* Subroutine of duplicate_decls. NEWDECL has been found to be
2131 consistent with OLDDECL, but carries new information. Merge the
2132 new information into OLDDECL. This function issues no
2133 diagnostics. */
2135 static void
2136 merge_decls (tree newdecl, tree olddecl, tree newtype, tree oldtype)
2138 bool new_is_definition = (TREE_CODE (newdecl) == FUNCTION_DECL
2139 && DECL_INITIAL (newdecl) != 0);
2140 bool new_is_prototype = (TREE_CODE (newdecl) == FUNCTION_DECL
2141 && TYPE_ARG_TYPES (TREE_TYPE (newdecl)) != 0);
2142 bool old_is_prototype = (TREE_CODE (olddecl) == FUNCTION_DECL
2143 && TYPE_ARG_TYPES (TREE_TYPE (olddecl)) != 0);
2144 bool extern_changed = false;
2146 /* For real parm decl following a forward decl, rechain the old decl
2147 in its new location and clear TREE_ASM_WRITTEN (it's not a
2148 forward decl anymore). */
2149 if (TREE_CODE (newdecl) == PARM_DECL
2150 && TREE_ASM_WRITTEN (olddecl) && !TREE_ASM_WRITTEN (newdecl))
2152 struct c_binding *b, **here;
2154 for (here = &current_scope->bindings; *here; here = &(*here)->prev)
2155 if ((*here)->decl == olddecl)
2156 goto found;
2157 gcc_unreachable ();
2159 found:
2160 b = *here;
2161 *here = b->prev;
2162 b->prev = current_scope->bindings;
2163 current_scope->bindings = b;
2165 TREE_ASM_WRITTEN (olddecl) = 0;
2168 DECL_ATTRIBUTES (newdecl)
2169 = targetm.merge_decl_attributes (olddecl, newdecl);
2171 /* Merge the data types specified in the two decls. */
2172 TREE_TYPE (newdecl)
2173 = TREE_TYPE (olddecl)
2174 = composite_type (newtype, oldtype);
2176 /* Lay the type out, unless already done. */
2177 if (!comptypes (oldtype, TREE_TYPE (newdecl)))
2179 if (TREE_TYPE (newdecl) != error_mark_node)
2180 layout_type (TREE_TYPE (newdecl));
2181 if (TREE_CODE (newdecl) != FUNCTION_DECL
2182 && TREE_CODE (newdecl) != TYPE_DECL
2183 && TREE_CODE (newdecl) != CONST_DECL)
2184 layout_decl (newdecl, 0);
2186 else
2188 /* Since the type is OLDDECL's, make OLDDECL's size go with. */
2189 DECL_SIZE (newdecl) = DECL_SIZE (olddecl);
2190 DECL_SIZE_UNIT (newdecl) = DECL_SIZE_UNIT (olddecl);
2191 DECL_MODE (newdecl) = DECL_MODE (olddecl);
2192 if (DECL_ALIGN (olddecl) > DECL_ALIGN (newdecl))
2194 DECL_ALIGN (newdecl) = DECL_ALIGN (olddecl);
2195 DECL_USER_ALIGN (newdecl) |= DECL_USER_ALIGN (olddecl);
2199 /* Keep the old rtl since we can safely use it. */
2200 if (HAS_RTL_P (olddecl))
2201 COPY_DECL_RTL (olddecl, newdecl);
2203 /* Merge the type qualifiers. */
2204 if (TREE_READONLY (newdecl))
2205 TREE_READONLY (olddecl) = 1;
2207 if (TREE_THIS_VOLATILE (newdecl))
2208 TREE_THIS_VOLATILE (olddecl) = 1;
2210 /* Merge deprecatedness. */
2211 if (TREE_DEPRECATED (newdecl))
2212 TREE_DEPRECATED (olddecl) = 1;
2214 /* If a decl is in a system header and the other isn't, keep the one on the
2215 system header. Otherwise, keep source location of definition rather than
2216 declaration and of prototype rather than non-prototype unless that
2217 prototype is built-in. */
2218 if (CODE_CONTAINS_STRUCT (TREE_CODE (olddecl), TS_DECL_WITH_VIS)
2219 && DECL_IN_SYSTEM_HEADER (olddecl)
2220 && !DECL_IN_SYSTEM_HEADER (newdecl) )
2221 DECL_SOURCE_LOCATION (newdecl) = DECL_SOURCE_LOCATION (olddecl);
2222 else if (CODE_CONTAINS_STRUCT (TREE_CODE (olddecl), TS_DECL_WITH_VIS)
2223 && DECL_IN_SYSTEM_HEADER (newdecl)
2224 && !DECL_IN_SYSTEM_HEADER (olddecl))
2225 DECL_SOURCE_LOCATION (olddecl) = DECL_SOURCE_LOCATION (newdecl);
2226 else if ((DECL_INITIAL (newdecl) == 0 && DECL_INITIAL (olddecl) != 0)
2227 || (old_is_prototype && !new_is_prototype
2228 && !C_DECL_BUILTIN_PROTOTYPE (olddecl)))
2229 DECL_SOURCE_LOCATION (newdecl) = DECL_SOURCE_LOCATION (olddecl);
2231 /* Merge the initialization information. */
2232 if (DECL_INITIAL (newdecl) == 0)
2233 DECL_INITIAL (newdecl) = DECL_INITIAL (olddecl);
2235 /* Merge the threadprivate attribute. */
2236 if (TREE_CODE (olddecl) == VAR_DECL && C_DECL_THREADPRIVATE_P (olddecl))
2238 DECL_TLS_MODEL (newdecl) = DECL_TLS_MODEL (olddecl);
2239 C_DECL_THREADPRIVATE_P (newdecl) = 1;
2242 if (CODE_CONTAINS_STRUCT (TREE_CODE (olddecl), TS_DECL_WITH_VIS))
2244 /* Merge the section attribute.
2245 We want to issue an error if the sections conflict but that
2246 must be done later in decl_attributes since we are called
2247 before attributes are assigned. */
2248 if (DECL_SECTION_NAME (newdecl) == NULL_TREE)
2249 DECL_SECTION_NAME (newdecl) = DECL_SECTION_NAME (olddecl);
2251 /* Copy the assembler name.
2252 Currently, it can only be defined in the prototype. */
2253 COPY_DECL_ASSEMBLER_NAME (olddecl, newdecl);
2255 /* Use visibility of whichever declaration had it specified */
2256 if (DECL_VISIBILITY_SPECIFIED (olddecl))
2258 DECL_VISIBILITY (newdecl) = DECL_VISIBILITY (olddecl);
2259 DECL_VISIBILITY_SPECIFIED (newdecl) = 1;
2262 if (TREE_CODE (newdecl) == FUNCTION_DECL)
2264 DECL_STATIC_CONSTRUCTOR(newdecl) |= DECL_STATIC_CONSTRUCTOR(olddecl);
2265 DECL_STATIC_DESTRUCTOR (newdecl) |= DECL_STATIC_DESTRUCTOR (olddecl);
2266 DECL_NO_LIMIT_STACK (newdecl) |= DECL_NO_LIMIT_STACK (olddecl);
2267 DECL_NO_INSTRUMENT_FUNCTION_ENTRY_EXIT (newdecl)
2268 |= DECL_NO_INSTRUMENT_FUNCTION_ENTRY_EXIT (olddecl);
2269 TREE_THIS_VOLATILE (newdecl) |= TREE_THIS_VOLATILE (olddecl);
2270 DECL_IS_MALLOC (newdecl) |= DECL_IS_MALLOC (olddecl);
2271 DECL_IS_OPERATOR_NEW (newdecl) |= DECL_IS_OPERATOR_NEW (olddecl);
2272 TREE_READONLY (newdecl) |= TREE_READONLY (olddecl);
2273 DECL_PURE_P (newdecl) |= DECL_PURE_P (olddecl);
2274 DECL_IS_NOVOPS (newdecl) |= DECL_IS_NOVOPS (olddecl);
2277 /* Merge the storage class information. */
2278 merge_weak (newdecl, olddecl);
2280 /* For functions, static overrides non-static. */
2281 if (TREE_CODE (newdecl) == FUNCTION_DECL)
2283 TREE_PUBLIC (newdecl) &= TREE_PUBLIC (olddecl);
2284 /* This is since we don't automatically
2285 copy the attributes of NEWDECL into OLDDECL. */
2286 TREE_PUBLIC (olddecl) = TREE_PUBLIC (newdecl);
2287 /* If this clears `static', clear it in the identifier too. */
2288 if (!TREE_PUBLIC (olddecl))
2289 TREE_PUBLIC (DECL_NAME (olddecl)) = 0;
2293 /* In c99, 'extern' declaration before (or after) 'inline' means this
2294 function is not DECL_EXTERNAL, unless 'gnu_inline' attribute
2295 is present. */
2296 if (TREE_CODE (newdecl) == FUNCTION_DECL
2297 && !flag_gnu89_inline
2298 && (DECL_DECLARED_INLINE_P (newdecl)
2299 || DECL_DECLARED_INLINE_P (olddecl))
2300 && (!DECL_DECLARED_INLINE_P (newdecl)
2301 || !DECL_DECLARED_INLINE_P (olddecl)
2302 || !DECL_EXTERNAL (olddecl))
2303 && DECL_EXTERNAL (newdecl)
2304 && !lookup_attribute ("gnu_inline", DECL_ATTRIBUTES (newdecl))
2305 && !current_function_decl)
2306 DECL_EXTERNAL (newdecl) = 0;
2308 if (DECL_EXTERNAL (newdecl))
2310 TREE_STATIC (newdecl) = TREE_STATIC (olddecl);
2311 DECL_EXTERNAL (newdecl) = DECL_EXTERNAL (olddecl);
2313 /* An extern decl does not override previous storage class. */
2314 TREE_PUBLIC (newdecl) = TREE_PUBLIC (olddecl);
2315 if (!DECL_EXTERNAL (newdecl))
2317 DECL_CONTEXT (newdecl) = DECL_CONTEXT (olddecl);
2318 DECL_COMMON (newdecl) = DECL_COMMON (olddecl);
2321 else
2323 TREE_STATIC (olddecl) = TREE_STATIC (newdecl);
2324 TREE_PUBLIC (olddecl) = TREE_PUBLIC (newdecl);
2327 if (TREE_CODE (newdecl) == FUNCTION_DECL)
2329 /* If we're redefining a function previously defined as extern
2330 inline, make sure we emit debug info for the inline before we
2331 throw it away, in case it was inlined into a function that
2332 hasn't been written out yet. */
2333 if (new_is_definition && DECL_INITIAL (olddecl))
2334 /* The new defn must not be inline. */
2335 DECL_UNINLINABLE (newdecl) = 1;
2336 else
2338 /* If either decl says `inline', this fn is inline, unless
2339 its definition was passed already. */
2340 if (DECL_DECLARED_INLINE_P (newdecl)
2341 || DECL_DECLARED_INLINE_P (olddecl))
2342 DECL_DECLARED_INLINE_P (newdecl) = 1;
2344 DECL_UNINLINABLE (newdecl) = DECL_UNINLINABLE (olddecl)
2345 = (DECL_UNINLINABLE (newdecl) || DECL_UNINLINABLE (olddecl));
2347 DECL_DISREGARD_INLINE_LIMITS (newdecl)
2348 = DECL_DISREGARD_INLINE_LIMITS (olddecl)
2349 = (DECL_DISREGARD_INLINE_LIMITS (newdecl)
2350 || DECL_DISREGARD_INLINE_LIMITS (olddecl));
2353 if (DECL_BUILT_IN (olddecl))
2355 /* If redeclaring a builtin function, it stays built in.
2356 But it gets tagged as having been declared. */
2357 DECL_BUILT_IN_CLASS (newdecl) = DECL_BUILT_IN_CLASS (olddecl);
2358 DECL_FUNCTION_CODE (newdecl) = DECL_FUNCTION_CODE (olddecl);
2359 C_DECL_DECLARED_BUILTIN (newdecl) = 1;
2360 if (new_is_prototype)
2361 C_DECL_BUILTIN_PROTOTYPE (newdecl) = 0;
2362 else
2363 C_DECL_BUILTIN_PROTOTYPE (newdecl)
2364 = C_DECL_BUILTIN_PROTOTYPE (olddecl);
2367 /* Preserve function specific target and optimization options */
2368 if (DECL_FUNCTION_SPECIFIC_TARGET (olddecl)
2369 && !DECL_FUNCTION_SPECIFIC_TARGET (newdecl))
2370 DECL_FUNCTION_SPECIFIC_TARGET (newdecl)
2371 = DECL_FUNCTION_SPECIFIC_TARGET (olddecl);
2373 if (DECL_FUNCTION_SPECIFIC_OPTIMIZATION (olddecl)
2374 && !DECL_FUNCTION_SPECIFIC_OPTIMIZATION (newdecl))
2375 DECL_FUNCTION_SPECIFIC_OPTIMIZATION (newdecl)
2376 = DECL_FUNCTION_SPECIFIC_OPTIMIZATION (olddecl);
2378 /* Also preserve various other info from the definition. */
2379 if (!new_is_definition)
2381 tree t;
2382 DECL_RESULT (newdecl) = DECL_RESULT (olddecl);
2383 DECL_INITIAL (newdecl) = DECL_INITIAL (olddecl);
2384 DECL_STRUCT_FUNCTION (newdecl) = DECL_STRUCT_FUNCTION (olddecl);
2385 DECL_SAVED_TREE (newdecl) = DECL_SAVED_TREE (olddecl);
2386 DECL_ARGUMENTS (newdecl) = copy_list (DECL_ARGUMENTS (olddecl));
2387 for (t = DECL_ARGUMENTS (newdecl); t ; t = DECL_CHAIN (t))
2388 DECL_CONTEXT (t) = newdecl;
2390 /* See if we've got a function to instantiate from. */
2391 if (DECL_SAVED_TREE (olddecl))
2392 DECL_ABSTRACT_ORIGIN (newdecl)
2393 = DECL_ABSTRACT_ORIGIN (olddecl);
2397 extern_changed = DECL_EXTERNAL (olddecl) && !DECL_EXTERNAL (newdecl);
2399 /* Merge the USED information. */
2400 if (TREE_USED (olddecl))
2401 TREE_USED (newdecl) = 1;
2402 else if (TREE_USED (newdecl))
2403 TREE_USED (olddecl) = 1;
2404 if (TREE_CODE (olddecl) == VAR_DECL || TREE_CODE (olddecl) == PARM_DECL)
2405 DECL_READ_P (newdecl) |= DECL_READ_P (olddecl);
2406 if (DECL_PRESERVE_P (olddecl))
2407 DECL_PRESERVE_P (newdecl) = 1;
2408 else if (DECL_PRESERVE_P (newdecl))
2409 DECL_PRESERVE_P (olddecl) = 1;
2411 /* Copy most of the decl-specific fields of NEWDECL into OLDDECL.
2412 But preserve OLDDECL's DECL_UID, DECL_CONTEXT and
2413 DECL_ARGUMENTS (if appropriate). */
2415 unsigned olddecl_uid = DECL_UID (olddecl);
2416 tree olddecl_context = DECL_CONTEXT (olddecl);
2417 tree olddecl_arguments = NULL;
2418 if (TREE_CODE (olddecl) == FUNCTION_DECL)
2419 olddecl_arguments = DECL_ARGUMENTS (olddecl);
2421 memcpy ((char *) olddecl + sizeof (struct tree_common),
2422 (char *) newdecl + sizeof (struct tree_common),
2423 sizeof (struct tree_decl_common) - sizeof (struct tree_common));
2424 switch (TREE_CODE (olddecl))
2426 case FUNCTION_DECL:
2427 case FIELD_DECL:
2428 case VAR_DECL:
2429 case PARM_DECL:
2430 case LABEL_DECL:
2431 case RESULT_DECL:
2432 case CONST_DECL:
2433 case TYPE_DECL:
2434 memcpy ((char *) olddecl + sizeof (struct tree_decl_common),
2435 (char *) newdecl + sizeof (struct tree_decl_common),
2436 tree_code_size (TREE_CODE (olddecl)) - sizeof (struct tree_decl_common));
2437 break;
2439 default:
2441 memcpy ((char *) olddecl + sizeof (struct tree_decl_common),
2442 (char *) newdecl + sizeof (struct tree_decl_common),
2443 sizeof (struct tree_decl_non_common) - sizeof (struct tree_decl_common));
2445 DECL_UID (olddecl) = olddecl_uid;
2446 DECL_CONTEXT (olddecl) = olddecl_context;
2447 if (TREE_CODE (olddecl) == FUNCTION_DECL)
2448 DECL_ARGUMENTS (olddecl) = olddecl_arguments;
2451 /* If OLDDECL had its DECL_RTL instantiated, re-invoke make_decl_rtl
2452 so that encode_section_info has a chance to look at the new decl
2453 flags and attributes. */
2454 if (DECL_RTL_SET_P (olddecl)
2455 && (TREE_CODE (olddecl) == FUNCTION_DECL
2456 || (TREE_CODE (olddecl) == VAR_DECL
2457 && TREE_STATIC (olddecl))))
2458 make_decl_rtl (olddecl);
2460 /* If we changed a function from DECL_EXTERNAL to !DECL_EXTERNAL,
2461 and the definition is coming from the old version, cgraph needs
2462 to be called again. */
2463 if (extern_changed && !new_is_definition
2464 && TREE_CODE (olddecl) == FUNCTION_DECL && DECL_INITIAL (olddecl))
2465 cgraph_mark_if_needed (olddecl);
2468 /* Handle when a new declaration NEWDECL has the same name as an old
2469 one OLDDECL in the same binding contour. Prints an error message
2470 if appropriate.
2472 If safely possible, alter OLDDECL to look like NEWDECL, and return
2473 true. Otherwise, return false. */
2475 static bool
2476 duplicate_decls (tree newdecl, tree olddecl)
2478 tree newtype = NULL, oldtype = NULL;
2480 if (!diagnose_mismatched_decls (newdecl, olddecl, &newtype, &oldtype))
2482 /* Avoid `unused variable' and other warnings for OLDDECL. */
2483 TREE_NO_WARNING (olddecl) = 1;
2484 return false;
2487 merge_decls (newdecl, olddecl, newtype, oldtype);
2488 return true;
2492 /* Check whether decl-node NEW_DECL shadows an existing declaration. */
2493 static void
2494 warn_if_shadowing (tree new_decl)
2496 struct c_binding *b;
2498 /* Shadow warnings wanted? */
2499 if (!warn_shadow
2500 /* No shadow warnings for internally generated vars. */
2501 || DECL_IS_BUILTIN (new_decl)
2502 /* No shadow warnings for vars made for inlining. */
2503 || DECL_FROM_INLINE (new_decl))
2504 return;
2506 /* Is anything being shadowed? Invisible decls do not count. */
2507 for (b = I_SYMBOL_BINDING (DECL_NAME (new_decl)); b; b = b->shadowed)
2508 if (b->decl && b->decl != new_decl && !b->invisible)
2510 tree old_decl = b->decl;
2512 if (old_decl == error_mark_node)
2514 warning (OPT_Wshadow, "declaration of %q+D shadows previous "
2515 "non-variable", new_decl);
2516 break;
2518 else if (TREE_CODE (old_decl) == PARM_DECL)
2519 warning (OPT_Wshadow, "declaration of %q+D shadows a parameter",
2520 new_decl);
2521 else if (DECL_FILE_SCOPE_P (old_decl))
2522 warning (OPT_Wshadow, "declaration of %q+D shadows a global "
2523 "declaration", new_decl);
2524 else if (TREE_CODE (old_decl) == FUNCTION_DECL
2525 && DECL_BUILT_IN (old_decl))
2527 warning (OPT_Wshadow, "declaration of %q+D shadows "
2528 "a built-in function", new_decl);
2529 break;
2531 else
2532 warning (OPT_Wshadow, "declaration of %q+D shadows a previous local",
2533 new_decl);
2535 warning_at (DECL_SOURCE_LOCATION (old_decl), OPT_Wshadow,
2536 "shadowed declaration is here");
2538 break;
2542 /* Record a decl-node X as belonging to the current lexical scope.
2543 Check for errors (such as an incompatible declaration for the same
2544 name already seen in the same scope).
2546 Returns either X or an old decl for the same name.
2547 If an old decl is returned, it may have been smashed
2548 to agree with what X says. */
2550 tree
2551 pushdecl (tree x)
2553 tree name = DECL_NAME (x);
2554 struct c_scope *scope = current_scope;
2555 struct c_binding *b;
2556 bool nested = false;
2557 location_t locus = DECL_SOURCE_LOCATION (x);
2559 /* Must set DECL_CONTEXT for everything not at file scope or
2560 DECL_FILE_SCOPE_P won't work. Local externs don't count
2561 unless they have initializers (which generate code). */
2562 if (current_function_decl
2563 && ((TREE_CODE (x) != FUNCTION_DECL && TREE_CODE (x) != VAR_DECL)
2564 || DECL_INITIAL (x) || !DECL_EXTERNAL (x)))
2565 DECL_CONTEXT (x) = current_function_decl;
2567 /* Anonymous decls are just inserted in the scope. */
2568 if (!name)
2570 bind (name, x, scope, /*invisible=*/false, /*nested=*/false,
2571 locus);
2572 return x;
2575 /* First, see if there is another declaration with the same name in
2576 the current scope. If there is, duplicate_decls may do all the
2577 work for us. If duplicate_decls returns false, that indicates
2578 two incompatible decls in the same scope; we are to silently
2579 replace the old one (duplicate_decls has issued all appropriate
2580 diagnostics). In particular, we should not consider possible
2581 duplicates in the external scope, or shadowing. */
2582 b = I_SYMBOL_BINDING (name);
2583 if (b && B_IN_SCOPE (b, scope))
2585 struct c_binding *b_ext, *b_use;
2586 tree type = TREE_TYPE (x);
2587 tree visdecl = b->decl;
2588 tree vistype = TREE_TYPE (visdecl);
2589 if (TREE_CODE (TREE_TYPE (x)) == ARRAY_TYPE
2590 && COMPLETE_TYPE_P (TREE_TYPE (x)))
2591 b->inner_comp = false;
2592 b_use = b;
2593 b_ext = b;
2594 /* If this is an external linkage declaration, we should check
2595 for compatibility with the type in the external scope before
2596 setting the type at this scope based on the visible
2597 information only. */
2598 if (TREE_PUBLIC (x) && TREE_PUBLIC (visdecl))
2600 while (b_ext && !B_IN_EXTERNAL_SCOPE (b_ext))
2601 b_ext = b_ext->shadowed;
2602 if (b_ext)
2604 b_use = b_ext;
2605 if (b_use->u.type)
2606 TREE_TYPE (b_use->decl) = b_use->u.type;
2609 if (duplicate_decls (x, b_use->decl))
2611 if (b_use != b)
2613 /* Save the updated type in the external scope and
2614 restore the proper type for this scope. */
2615 tree thistype;
2616 if (comptypes (vistype, type))
2617 thistype = composite_type (vistype, type);
2618 else
2619 thistype = TREE_TYPE (b_use->decl);
2620 b_use->u.type = TREE_TYPE (b_use->decl);
2621 if (TREE_CODE (b_use->decl) == FUNCTION_DECL
2622 && DECL_BUILT_IN (b_use->decl))
2623 thistype
2624 = build_type_attribute_variant (thistype,
2625 TYPE_ATTRIBUTES
2626 (b_use->u.type));
2627 TREE_TYPE (b_use->decl) = thistype;
2629 return b_use->decl;
2631 else
2632 goto skip_external_and_shadow_checks;
2635 /* All declarations with external linkage, and all external
2636 references, go in the external scope, no matter what scope is
2637 current. However, the binding in that scope is ignored for
2638 purposes of normal name lookup. A separate binding structure is
2639 created in the requested scope; this governs the normal
2640 visibility of the symbol.
2642 The binding in the externals scope is used exclusively for
2643 detecting duplicate declarations of the same object, no matter
2644 what scope they are in; this is what we do here. (C99 6.2.7p2:
2645 All declarations that refer to the same object or function shall
2646 have compatible type; otherwise, the behavior is undefined.) */
2647 if (DECL_EXTERNAL (x) || scope == file_scope)
2649 tree type = TREE_TYPE (x);
2650 tree vistype = 0;
2651 tree visdecl = 0;
2652 bool type_saved = false;
2653 if (b && !B_IN_EXTERNAL_SCOPE (b)
2654 && (TREE_CODE (b->decl) == FUNCTION_DECL
2655 || TREE_CODE (b->decl) == VAR_DECL)
2656 && DECL_FILE_SCOPE_P (b->decl))
2658 visdecl = b->decl;
2659 vistype = TREE_TYPE (visdecl);
2661 if (scope != file_scope
2662 && !DECL_IN_SYSTEM_HEADER (x))
2663 warning (OPT_Wnested_externs, "nested extern declaration of %qD", x);
2665 while (b && !B_IN_EXTERNAL_SCOPE (b))
2667 /* If this decl might be modified, save its type. This is
2668 done here rather than when the decl is first bound
2669 because the type may change after first binding, through
2670 being completed or through attributes being added. If we
2671 encounter multiple such decls, only the first should have
2672 its type saved; the others will already have had their
2673 proper types saved and the types will not have changed as
2674 their scopes will not have been re-entered. */
2675 if (DECL_P (b->decl) && DECL_FILE_SCOPE_P (b->decl) && !type_saved)
2677 b->u.type = TREE_TYPE (b->decl);
2678 type_saved = true;
2680 if (B_IN_FILE_SCOPE (b)
2681 && TREE_CODE (b->decl) == VAR_DECL
2682 && TREE_STATIC (b->decl)
2683 && TREE_CODE (TREE_TYPE (b->decl)) == ARRAY_TYPE
2684 && !TYPE_DOMAIN (TREE_TYPE (b->decl))
2685 && TREE_CODE (type) == ARRAY_TYPE
2686 && TYPE_DOMAIN (type)
2687 && TYPE_MAX_VALUE (TYPE_DOMAIN (type))
2688 && !integer_zerop (TYPE_MAX_VALUE (TYPE_DOMAIN (type))))
2690 /* Array type completed in inner scope, which should be
2691 diagnosed if the completion does not have size 1 and
2692 it does not get completed in the file scope. */
2693 b->inner_comp = true;
2695 b = b->shadowed;
2698 /* If a matching external declaration has been found, set its
2699 type to the composite of all the types of that declaration.
2700 After the consistency checks, it will be reset to the
2701 composite of the visible types only. */
2702 if (b && (TREE_PUBLIC (x) || same_translation_unit_p (x, b->decl))
2703 && b->u.type)
2704 TREE_TYPE (b->decl) = b->u.type;
2706 /* The point of the same_translation_unit_p check here is,
2707 we want to detect a duplicate decl for a construct like
2708 foo() { extern bar(); } ... static bar(); but not if
2709 they are in different translation units. In any case,
2710 the static does not go in the externals scope. */
2711 if (b
2712 && (TREE_PUBLIC (x) || same_translation_unit_p (x, b->decl))
2713 && duplicate_decls (x, b->decl))
2715 tree thistype;
2716 if (vistype)
2718 if (comptypes (vistype, type))
2719 thistype = composite_type (vistype, type);
2720 else
2721 thistype = TREE_TYPE (b->decl);
2723 else
2724 thistype = type;
2725 b->u.type = TREE_TYPE (b->decl);
2726 if (TREE_CODE (b->decl) == FUNCTION_DECL && DECL_BUILT_IN (b->decl))
2727 thistype
2728 = build_type_attribute_variant (thistype,
2729 TYPE_ATTRIBUTES (b->u.type));
2730 TREE_TYPE (b->decl) = thistype;
2731 bind (name, b->decl, scope, /*invisible=*/false, /*nested=*/true,
2732 locus);
2733 return b->decl;
2735 else if (TREE_PUBLIC (x))
2737 if (visdecl && !b && duplicate_decls (x, visdecl))
2739 /* An external declaration at block scope referring to a
2740 visible entity with internal linkage. The composite
2741 type will already be correct for this scope, so we
2742 just need to fall through to make the declaration in
2743 this scope. */
2744 nested = true;
2745 x = visdecl;
2747 else
2749 bind (name, x, external_scope, /*invisible=*/true,
2750 /*nested=*/false, locus);
2751 nested = true;
2756 if (TREE_CODE (x) != PARM_DECL)
2757 warn_if_shadowing (x);
2759 skip_external_and_shadow_checks:
2760 if (TREE_CODE (x) == TYPE_DECL)
2761 set_underlying_type (x);
2763 bind (name, x, scope, /*invisible=*/false, nested, locus);
2765 /* If x's type is incomplete because it's based on a
2766 structure or union which has not yet been fully declared,
2767 attach it to that structure or union type, so we can go
2768 back and complete the variable declaration later, if the
2769 structure or union gets fully declared.
2771 If the input is erroneous, we can have error_mark in the type
2772 slot (e.g. "f(void a, ...)") - that doesn't count as an
2773 incomplete type. */
2774 if (TREE_TYPE (x) != error_mark_node
2775 && !COMPLETE_TYPE_P (TREE_TYPE (x)))
2777 tree element = TREE_TYPE (x);
2779 while (TREE_CODE (element) == ARRAY_TYPE)
2780 element = TREE_TYPE (element);
2781 element = TYPE_MAIN_VARIANT (element);
2783 if ((TREE_CODE (element) == RECORD_TYPE
2784 || TREE_CODE (element) == UNION_TYPE)
2785 && (TREE_CODE (x) != TYPE_DECL
2786 || TREE_CODE (TREE_TYPE (x)) == ARRAY_TYPE)
2787 && !COMPLETE_TYPE_P (element))
2788 C_TYPE_INCOMPLETE_VARS (element)
2789 = tree_cons (NULL_TREE, x, C_TYPE_INCOMPLETE_VARS (element));
2791 return x;
2794 /* Record X as belonging to file scope.
2795 This is used only internally by the Objective-C front end,
2796 and is limited to its needs. duplicate_decls is not called;
2797 if there is any preexisting decl for this identifier, it is an ICE. */
2799 tree
2800 pushdecl_top_level (tree x)
2802 tree name;
2803 bool nested = false;
2804 gcc_assert (TREE_CODE (x) == VAR_DECL || TREE_CODE (x) == CONST_DECL);
2806 name = DECL_NAME (x);
2808 gcc_assert (TREE_CODE (x) == CONST_DECL || !I_SYMBOL_BINDING (name));
2810 if (TREE_PUBLIC (x))
2812 bind (name, x, external_scope, /*invisible=*/true, /*nested=*/false,
2813 UNKNOWN_LOCATION);
2814 nested = true;
2816 if (file_scope)
2817 bind (name, x, file_scope, /*invisible=*/false, nested, UNKNOWN_LOCATION);
2819 return x;
2822 static void
2823 implicit_decl_warning (tree id, tree olddecl)
2825 if (warn_implicit_function_declaration)
2827 bool warned;
2829 if (flag_isoc99)
2830 warned = pedwarn (input_location, OPT_Wimplicit_function_declaration,
2831 "implicit declaration of function %qE", id);
2832 else
2833 warned = warning (OPT_Wimplicit_function_declaration,
2834 G_("implicit declaration of function %qE"), id);
2835 if (olddecl && warned)
2836 locate_old_decl (olddecl);
2840 /* Generate an implicit declaration for identifier FUNCTIONID at LOC as a
2841 function of type int (). */
2843 tree
2844 implicitly_declare (location_t loc, tree functionid)
2846 struct c_binding *b;
2847 tree decl = 0;
2848 tree asmspec_tree;
2850 for (b = I_SYMBOL_BINDING (functionid); b; b = b->shadowed)
2852 if (B_IN_SCOPE (b, external_scope))
2854 decl = b->decl;
2855 break;
2859 if (decl)
2861 if (decl == error_mark_node)
2862 return decl;
2864 /* FIXME: Objective-C has weird not-really-builtin functions
2865 which are supposed to be visible automatically. They wind up
2866 in the external scope because they're pushed before the file
2867 scope gets created. Catch this here and rebind them into the
2868 file scope. */
2869 if (!DECL_BUILT_IN (decl) && DECL_IS_BUILTIN (decl))
2871 bind (functionid, decl, file_scope,
2872 /*invisible=*/false, /*nested=*/true,
2873 DECL_SOURCE_LOCATION (decl));
2874 return decl;
2876 else
2878 tree newtype = default_function_type;
2879 if (b->u.type)
2880 TREE_TYPE (decl) = b->u.type;
2881 /* Implicit declaration of a function already declared
2882 (somehow) in a different scope, or as a built-in.
2883 If this is the first time this has happened, warn;
2884 then recycle the old declaration but with the new type. */
2885 if (!C_DECL_IMPLICIT (decl))
2887 implicit_decl_warning (functionid, decl);
2888 C_DECL_IMPLICIT (decl) = 1;
2890 if (DECL_BUILT_IN (decl))
2892 newtype = build_type_attribute_variant (newtype,
2893 TYPE_ATTRIBUTES
2894 (TREE_TYPE (decl)));
2895 if (!comptypes (newtype, TREE_TYPE (decl)))
2897 warning_at (loc, 0, "incompatible implicit declaration of "
2898 "built-in function %qD", decl);
2899 newtype = TREE_TYPE (decl);
2902 else
2904 if (!comptypes (newtype, TREE_TYPE (decl)))
2906 error_at (loc, "incompatible implicit declaration of function %qD", decl);
2907 locate_old_decl (decl);
2910 b->u.type = TREE_TYPE (decl);
2911 TREE_TYPE (decl) = newtype;
2912 bind (functionid, decl, current_scope,
2913 /*invisible=*/false, /*nested=*/true,
2914 DECL_SOURCE_LOCATION (decl));
2915 return decl;
2919 /* Not seen before. */
2920 decl = build_decl (loc, FUNCTION_DECL, functionid, default_function_type);
2921 DECL_EXTERNAL (decl) = 1;
2922 TREE_PUBLIC (decl) = 1;
2923 C_DECL_IMPLICIT (decl) = 1;
2924 implicit_decl_warning (functionid, 0);
2925 asmspec_tree = maybe_apply_renaming_pragma (decl, /*asmname=*/NULL);
2926 if (asmspec_tree)
2927 set_user_assembler_name (decl, TREE_STRING_POINTER (asmspec_tree));
2929 /* C89 says implicit declarations are in the innermost block.
2930 So we record the decl in the standard fashion. */
2931 decl = pushdecl (decl);
2933 /* No need to call objc_check_decl here - it's a function type. */
2934 rest_of_decl_compilation (decl, 0, 0);
2936 /* Write a record describing this implicit function declaration
2937 to the prototypes file (if requested). */
2938 gen_aux_info_record (decl, 0, 1, 0);
2940 /* Possibly apply some default attributes to this implicit declaration. */
2941 decl_attributes (&decl, NULL_TREE, 0);
2943 return decl;
2946 /* Issue an error message for a reference to an undeclared variable
2947 ID, including a reference to a builtin outside of function-call
2948 context. Establish a binding of the identifier to error_mark_node
2949 in an appropriate scope, which will suppress further errors for the
2950 same identifier. The error message should be given location LOC. */
2951 void
2952 undeclared_variable (location_t loc, tree id)
2954 static bool already = false;
2955 struct c_scope *scope;
2957 if (current_function_decl == 0)
2959 error_at (loc, "%qE undeclared here (not in a function)", id);
2960 scope = current_scope;
2962 else
2964 if (!objc_diagnose_private_ivar (id))
2965 error_at (loc, "%qE undeclared (first use in this function)", id);
2966 if (!already)
2968 inform (loc, "each undeclared identifier is reported only"
2969 " once for each function it appears in");
2970 already = true;
2973 /* If we are parsing old-style parameter decls, current_function_decl
2974 will be nonnull but current_function_scope will be null. */
2975 scope = current_function_scope ? current_function_scope : current_scope;
2977 bind (id, error_mark_node, scope, /*invisible=*/false, /*nested=*/false,
2978 UNKNOWN_LOCATION);
2981 /* Subroutine of lookup_label, declare_label, define_label: construct a
2982 LABEL_DECL with all the proper frills. Also create a struct
2983 c_label_vars initialized for the current scope. */
2985 static tree
2986 make_label (location_t location, tree name, bool defining,
2987 struct c_label_vars **p_label_vars)
2989 tree label = build_decl (location, LABEL_DECL, name, void_type_node);
2990 struct c_label_vars *label_vars;
2992 DECL_CONTEXT (label) = current_function_decl;
2993 DECL_MODE (label) = VOIDmode;
2995 label_vars = ggc_alloc_c_label_vars ();
2996 label_vars->shadowed = NULL;
2997 set_spot_bindings (&label_vars->label_bindings, defining);
2998 label_vars->decls_in_scope = make_tree_vector ();
2999 label_vars->gotos = VEC_alloc (c_goto_bindings_p, gc, 0);
3000 *p_label_vars = label_vars;
3002 return label;
3005 /* Get the LABEL_DECL corresponding to identifier NAME as a label.
3006 Create one if none exists so far for the current function.
3007 This is called when a label is used in a goto expression or
3008 has its address taken. */
3010 tree
3011 lookup_label (tree name)
3013 tree label;
3014 struct c_label_vars *label_vars;
3016 if (current_function_scope == 0)
3018 error ("label %qE referenced outside of any function", name);
3019 return 0;
3022 /* Use a label already defined or ref'd with this name, but not if
3023 it is inherited from a containing function and wasn't declared
3024 using __label__. */
3025 label = I_LABEL_DECL (name);
3026 if (label && (DECL_CONTEXT (label) == current_function_decl
3027 || C_DECLARED_LABEL_FLAG (label)))
3029 /* If the label has only been declared, update its apparent
3030 location to point here, for better diagnostics if it
3031 turns out not to have been defined. */
3032 if (DECL_INITIAL (label) == NULL_TREE)
3033 DECL_SOURCE_LOCATION (label) = input_location;
3034 return label;
3037 /* No label binding for that identifier; make one. */
3038 label = make_label (input_location, name, false, &label_vars);
3040 /* Ordinary labels go in the current function scope. */
3041 bind_label (name, label, current_function_scope, label_vars);
3043 return label;
3046 /* Issue a warning about DECL for a goto statement at GOTO_LOC going
3047 to LABEL. */
3049 static void
3050 warn_about_goto (location_t goto_loc, tree label, tree decl)
3052 if (variably_modified_type_p (TREE_TYPE (decl), NULL_TREE))
3053 error_at (goto_loc,
3054 "jump into scope of identifier with variably modified type");
3055 else
3056 warning_at (goto_loc, OPT_Wjump_misses_init,
3057 "jump skips variable initialization");
3058 inform (DECL_SOURCE_LOCATION (label), "label %qD defined here", label);
3059 inform (DECL_SOURCE_LOCATION (decl), "%qD declared here", decl);
3062 /* Look up a label because of a goto statement. This is like
3063 lookup_label, but also issues any appropriate warnings. */
3065 tree
3066 lookup_label_for_goto (location_t loc, tree name)
3068 tree label;
3069 struct c_label_vars *label_vars;
3070 unsigned int ix;
3071 tree decl;
3073 label = lookup_label (name);
3074 if (label == NULL_TREE)
3075 return NULL_TREE;
3077 /* If we are jumping to a different function, we can't issue any
3078 useful warnings. */
3079 if (DECL_CONTEXT (label) != current_function_decl)
3081 gcc_assert (C_DECLARED_LABEL_FLAG (label));
3082 return label;
3085 label_vars = I_LABEL_BINDING (name)->u.label;
3087 /* If the label has not yet been defined, then push this goto on a
3088 list for possible later warnings. */
3089 if (label_vars->label_bindings.scope == NULL)
3091 struct c_goto_bindings *g;
3093 g = ggc_alloc_c_goto_bindings ();
3094 g->loc = loc;
3095 set_spot_bindings (&g->goto_bindings, true);
3096 VEC_safe_push (c_goto_bindings_p, gc, label_vars->gotos, g);
3097 return label;
3100 /* If there are any decls in label_vars->decls_in_scope, then this
3101 goto has missed the declaration of the decl. This happens for a
3102 case like
3103 int i = 1;
3104 lab:
3106 goto lab;
3107 Issue a warning or error. */
3108 FOR_EACH_VEC_ELT (tree, label_vars->decls_in_scope, ix, decl)
3109 warn_about_goto (loc, label, decl);
3111 if (label_vars->label_bindings.left_stmt_expr)
3113 error_at (loc, "jump into statement expression");
3114 inform (DECL_SOURCE_LOCATION (label), "label %qD defined here", label);
3117 return label;
3120 /* Make a label named NAME in the current function, shadowing silently
3121 any that may be inherited from containing functions or containing
3122 scopes. This is called for __label__ declarations. */
3124 tree
3125 declare_label (tree name)
3127 struct c_binding *b = I_LABEL_BINDING (name);
3128 tree label;
3129 struct c_label_vars *label_vars;
3131 /* Check to make sure that the label hasn't already been declared
3132 at this scope */
3133 if (b && B_IN_CURRENT_SCOPE (b))
3135 error ("duplicate label declaration %qE", name);
3136 locate_old_decl (b->decl);
3138 /* Just use the previous declaration. */
3139 return b->decl;
3142 label = make_label (input_location, name, false, &label_vars);
3143 C_DECLARED_LABEL_FLAG (label) = 1;
3145 /* Declared labels go in the current scope. */
3146 bind_label (name, label, current_scope, label_vars);
3148 return label;
3151 /* When we define a label, issue any appropriate warnings if there are
3152 any gotos earlier in the function which jump to this label. */
3154 static void
3155 check_earlier_gotos (tree label, struct c_label_vars* label_vars)
3157 unsigned int ix;
3158 struct c_goto_bindings *g;
3160 FOR_EACH_VEC_ELT (c_goto_bindings_p, label_vars->gotos, ix, g)
3162 struct c_binding *b;
3163 struct c_scope *scope;
3165 /* We have a goto to this label. The goto is going forward. In
3166 g->scope, the goto is going to skip any binding which was
3167 defined after g->bindings_in_scope. */
3168 for (b = g->goto_bindings.scope->bindings;
3169 b != g->goto_bindings.bindings_in_scope;
3170 b = b->prev)
3172 if (decl_jump_unsafe (b->decl))
3173 warn_about_goto (g->loc, label, b->decl);
3176 /* We also need to warn about decls defined in any scopes
3177 between the scope of the label and the scope of the goto. */
3178 for (scope = label_vars->label_bindings.scope;
3179 scope != g->goto_bindings.scope;
3180 scope = scope->outer)
3182 gcc_assert (scope != NULL);
3183 if (scope == label_vars->label_bindings.scope)
3184 b = label_vars->label_bindings.bindings_in_scope;
3185 else
3186 b = scope->bindings;
3187 for (; b != NULL; b = b->prev)
3189 if (decl_jump_unsafe (b->decl))
3190 warn_about_goto (g->loc, label, b->decl);
3194 if (g->goto_bindings.stmt_exprs > 0)
3196 error_at (g->loc, "jump into statement expression");
3197 inform (DECL_SOURCE_LOCATION (label), "label %qD defined here",
3198 label);
3202 /* Now that the label is defined, we will issue warnings about
3203 subsequent gotos to this label when we see them. */
3204 VEC_truncate (c_goto_bindings_p, label_vars->gotos, 0);
3205 label_vars->gotos = NULL;
3208 /* Define a label, specifying the location in the source file.
3209 Return the LABEL_DECL node for the label, if the definition is valid.
3210 Otherwise return 0. */
3212 tree
3213 define_label (location_t location, tree name)
3215 /* Find any preexisting label with this name. It is an error
3216 if that label has already been defined in this function, or
3217 if there is a containing function with a declared label with
3218 the same name. */
3219 tree label = I_LABEL_DECL (name);
3221 if (label
3222 && ((DECL_CONTEXT (label) == current_function_decl
3223 && DECL_INITIAL (label) != 0)
3224 || (DECL_CONTEXT (label) != current_function_decl
3225 && C_DECLARED_LABEL_FLAG (label))))
3227 error_at (location, "duplicate label %qD", label);
3228 locate_old_decl (label);
3229 return 0;
3231 else if (label && DECL_CONTEXT (label) == current_function_decl)
3233 struct c_label_vars *label_vars = I_LABEL_BINDING (name)->u.label;
3235 /* The label has been used or declared already in this function,
3236 but not defined. Update its location to point to this
3237 definition. */
3238 DECL_SOURCE_LOCATION (label) = location;
3239 set_spot_bindings (&label_vars->label_bindings, true);
3241 /* Issue warnings as required about any goto statements from
3242 earlier in the function. */
3243 check_earlier_gotos (label, label_vars);
3245 else
3247 struct c_label_vars *label_vars;
3249 /* No label binding for that identifier; make one. */
3250 label = make_label (location, name, true, &label_vars);
3252 /* Ordinary labels go in the current function scope. */
3253 bind_label (name, label, current_function_scope, label_vars);
3256 if (!in_system_header && lookup_name (name))
3257 warning_at (location, OPT_Wtraditional,
3258 "traditional C lacks a separate namespace "
3259 "for labels, identifier %qE conflicts", name);
3261 /* Mark label as having been defined. */
3262 DECL_INITIAL (label) = error_mark_node;
3263 return label;
3266 /* Get the bindings for a new switch statement. This is used to issue
3267 warnings as appropriate for jumps from the switch to case or
3268 default labels. */
3270 struct c_spot_bindings *
3271 c_get_switch_bindings (void)
3273 struct c_spot_bindings *switch_bindings;
3275 switch_bindings = XNEW (struct c_spot_bindings);
3276 set_spot_bindings (switch_bindings, true);
3277 return switch_bindings;
3280 void
3281 c_release_switch_bindings (struct c_spot_bindings *bindings)
3283 gcc_assert (bindings->stmt_exprs == 0 && !bindings->left_stmt_expr);
3284 XDELETE (bindings);
3287 /* This is called at the point of a case or default label to issue
3288 warnings about decls as needed. It returns true if it found an
3289 error, not just a warning. */
3291 bool
3292 c_check_switch_jump_warnings (struct c_spot_bindings *switch_bindings,
3293 location_t switch_loc, location_t case_loc)
3295 bool saw_error;
3296 struct c_scope *scope;
3298 saw_error = false;
3299 for (scope = current_scope;
3300 scope != switch_bindings->scope;
3301 scope = scope->outer)
3303 struct c_binding *b;
3305 gcc_assert (scope != NULL);
3306 for (b = scope->bindings; b != NULL; b = b->prev)
3308 if (decl_jump_unsafe (b->decl))
3310 if (variably_modified_type_p (TREE_TYPE (b->decl), NULL_TREE))
3312 saw_error = true;
3313 error_at (case_loc,
3314 ("switch jumps into scope of identifier with "
3315 "variably modified type"));
3317 else
3318 warning_at (case_loc, OPT_Wjump_misses_init,
3319 "switch jumps over variable initialization");
3320 inform (switch_loc, "switch starts here");
3321 inform (DECL_SOURCE_LOCATION (b->decl), "%qD declared here",
3322 b->decl);
3327 if (switch_bindings->stmt_exprs > 0)
3329 saw_error = true;
3330 error_at (case_loc, "switch jumps into statement expression");
3331 inform (switch_loc, "switch starts here");
3334 return saw_error;
3337 /* Given NAME, an IDENTIFIER_NODE,
3338 return the structure (or union or enum) definition for that name.
3339 If THISLEVEL_ONLY is nonzero, searches only the current_scope.
3340 CODE says which kind of type the caller wants;
3341 it is RECORD_TYPE or UNION_TYPE or ENUMERAL_TYPE.
3342 If PLOC is not NULL and this returns non-null, it sets *PLOC to the
3343 location where the tag was defined.
3344 If the wrong kind of type is found, an error is reported. */
3346 static tree
3347 lookup_tag (enum tree_code code, tree name, int thislevel_only,
3348 location_t *ploc)
3350 struct c_binding *b = I_TAG_BINDING (name);
3351 int thislevel = 0;
3353 if (!b || !b->decl)
3354 return 0;
3356 /* We only care about whether it's in this level if
3357 thislevel_only was set or it might be a type clash. */
3358 if (thislevel_only || TREE_CODE (b->decl) != code)
3360 /* For our purposes, a tag in the external scope is the same as
3361 a tag in the file scope. (Primarily relevant to Objective-C
3362 and its builtin structure tags, which get pushed before the
3363 file scope is created.) */
3364 if (B_IN_CURRENT_SCOPE (b)
3365 || (current_scope == file_scope && B_IN_EXTERNAL_SCOPE (b)))
3366 thislevel = 1;
3369 if (thislevel_only && !thislevel)
3370 return 0;
3372 if (TREE_CODE (b->decl) != code)
3374 /* Definition isn't the kind we were looking for. */
3375 pending_invalid_xref = name;
3376 pending_invalid_xref_location = input_location;
3378 /* If in the same binding level as a declaration as a tag
3379 of a different type, this must not be allowed to
3380 shadow that tag, so give the error immediately.
3381 (For example, "struct foo; union foo;" is invalid.) */
3382 if (thislevel)
3383 pending_xref_error ();
3386 if (ploc != NULL)
3387 *ploc = b->locus;
3389 return b->decl;
3392 /* Print an error message now
3393 for a recent invalid struct, union or enum cross reference.
3394 We don't print them immediately because they are not invalid
3395 when used in the `struct foo;' construct for shadowing. */
3397 void
3398 pending_xref_error (void)
3400 if (pending_invalid_xref != 0)
3401 error_at (pending_invalid_xref_location, "%qE defined as wrong kind of tag",
3402 pending_invalid_xref);
3403 pending_invalid_xref = 0;
3407 /* Look up NAME in the current scope and its superiors
3408 in the namespace of variables, functions and typedefs.
3409 Return a ..._DECL node of some kind representing its definition,
3410 or return 0 if it is undefined. */
3412 tree
3413 lookup_name (tree name)
3415 struct c_binding *b = I_SYMBOL_BINDING (name);
3416 if (b && !b->invisible)
3417 return b->decl;
3418 return 0;
3421 /* Similar to `lookup_name' but look only at the indicated scope. */
3423 static tree
3424 lookup_name_in_scope (tree name, struct c_scope *scope)
3426 struct c_binding *b;
3428 for (b = I_SYMBOL_BINDING (name); b; b = b->shadowed)
3429 if (B_IN_SCOPE (b, scope))
3430 return b->decl;
3431 return 0;
3434 /* Create the predefined scalar types of C,
3435 and some nodes representing standard constants (0, 1, (void *) 0).
3436 Initialize the global scope.
3437 Make definitions for built-in primitive functions. */
3439 void
3440 c_init_decl_processing (void)
3442 location_t save_loc = input_location;
3444 /* Initialize reserved words for parser. */
3445 c_parse_init ();
3447 current_function_decl = 0;
3449 gcc_obstack_init (&parser_obstack);
3451 /* Make the externals scope. */
3452 push_scope ();
3453 external_scope = current_scope;
3455 /* Declarations from c_common_nodes_and_builtins must not be associated
3456 with this input file, lest we get differences between using and not
3457 using preprocessed headers. */
3458 input_location = BUILTINS_LOCATION;
3460 build_common_tree_nodes (flag_signed_char);
3462 c_common_nodes_and_builtins ();
3464 /* In C, comparisons and TRUTH_* expressions have type int. */
3465 truthvalue_type_node = integer_type_node;
3466 truthvalue_true_node = integer_one_node;
3467 truthvalue_false_node = integer_zero_node;
3469 /* Even in C99, which has a real boolean type. */
3470 pushdecl (build_decl (UNKNOWN_LOCATION, TYPE_DECL, get_identifier ("_Bool"),
3471 boolean_type_node));
3473 input_location = save_loc;
3475 pedantic_lvalues = true;
3477 make_fname_decl = c_make_fname_decl;
3478 start_fname_decls ();
3481 /* Create the VAR_DECL at LOC for __FUNCTION__ etc. ID is the name to
3482 give the decl, NAME is the initialization string and TYPE_DEP
3483 indicates whether NAME depended on the type of the function. As we
3484 don't yet implement delayed emission of static data, we mark the
3485 decl as emitted so it is not placed in the output. Anything using
3486 it must therefore pull out the STRING_CST initializer directly.
3487 FIXME. */
3489 static tree
3490 c_make_fname_decl (location_t loc, tree id, int type_dep)
3492 const char *name = fname_as_string (type_dep);
3493 tree decl, type, init;
3494 size_t length = strlen (name);
3496 type = build_array_type (char_type_node,
3497 build_index_type (size_int (length)));
3498 type = c_build_qualified_type (type, TYPE_QUAL_CONST);
3500 decl = build_decl (loc, VAR_DECL, id, type);
3502 TREE_STATIC (decl) = 1;
3503 TREE_READONLY (decl) = 1;
3504 DECL_ARTIFICIAL (decl) = 1;
3506 init = build_string (length + 1, name);
3507 free (CONST_CAST (char *, name));
3508 TREE_TYPE (init) = type;
3509 DECL_INITIAL (decl) = init;
3511 TREE_USED (decl) = 1;
3513 if (current_function_decl
3514 /* For invalid programs like this:
3516 void foo()
3517 const char* p = __FUNCTION__;
3519 the __FUNCTION__ is believed to appear in K&R style function
3520 parameter declarator. In that case we still don't have
3521 function_scope. */
3522 && (!seen_error () || current_function_scope))
3524 DECL_CONTEXT (decl) = current_function_decl;
3525 bind (id, decl, current_function_scope,
3526 /*invisible=*/false, /*nested=*/false, UNKNOWN_LOCATION);
3529 finish_decl (decl, loc, init, NULL_TREE, NULL_TREE);
3531 return decl;
3534 tree
3535 c_builtin_function (tree decl)
3537 tree type = TREE_TYPE (decl);
3538 tree id = DECL_NAME (decl);
3540 const char *name = IDENTIFIER_POINTER (id);
3541 C_DECL_BUILTIN_PROTOTYPE (decl) = (TYPE_ARG_TYPES (type) != 0);
3543 /* Should never be called on a symbol with a preexisting meaning. */
3544 gcc_assert (!I_SYMBOL_BINDING (id));
3546 bind (id, decl, external_scope, /*invisible=*/true, /*nested=*/false,
3547 UNKNOWN_LOCATION);
3549 /* Builtins in the implementation namespace are made visible without
3550 needing to be explicitly declared. See push_file_scope. */
3551 if (name[0] == '_' && (name[1] == '_' || ISUPPER (name[1])))
3553 DECL_CHAIN (decl) = visible_builtins;
3554 visible_builtins = decl;
3557 return decl;
3560 tree
3561 c_builtin_function_ext_scope (tree decl)
3563 tree type = TREE_TYPE (decl);
3564 tree id = DECL_NAME (decl);
3566 const char *name = IDENTIFIER_POINTER (id);
3567 C_DECL_BUILTIN_PROTOTYPE (decl) = (TYPE_ARG_TYPES (type) != 0);
3569 /* Should never be called on a symbol with a preexisting meaning. */
3570 gcc_assert (!I_SYMBOL_BINDING (id));
3572 bind (id, decl, external_scope, /*invisible=*/false, /*nested=*/false,
3573 UNKNOWN_LOCATION);
3575 /* Builtins in the implementation namespace are made visible without
3576 needing to be explicitly declared. See push_file_scope. */
3577 if (name[0] == '_' && (name[1] == '_' || ISUPPER (name[1])))
3579 DECL_CHAIN (decl) = visible_builtins;
3580 visible_builtins = decl;
3583 return decl;
3586 /* Called when a declaration is seen that contains no names to declare.
3587 If its type is a reference to a structure, union or enum inherited
3588 from a containing scope, shadow that tag name for the current scope
3589 with a forward reference.
3590 If its type defines a new named structure or union
3591 or defines an enum, it is valid but we need not do anything here.
3592 Otherwise, it is an error. */
3594 void
3595 shadow_tag (const struct c_declspecs *declspecs)
3597 shadow_tag_warned (declspecs, 0);
3600 /* WARNED is 1 if we have done a pedwarn, 2 if we have done a warning,
3601 but no pedwarn. */
3602 void
3603 shadow_tag_warned (const struct c_declspecs *declspecs, int warned)
3605 bool found_tag = false;
3607 if (declspecs->type && !declspecs->default_int_p && !declspecs->typedef_p)
3609 tree value = declspecs->type;
3610 enum tree_code code = TREE_CODE (value);
3612 if (code == RECORD_TYPE || code == UNION_TYPE || code == ENUMERAL_TYPE)
3613 /* Used to test also that TYPE_SIZE (value) != 0.
3614 That caused warning for `struct foo;' at top level in the file. */
3616 tree name = TYPE_NAME (value);
3617 tree t;
3619 found_tag = true;
3621 if (declspecs->restrict_p)
3623 error ("invalid use of %<restrict%>");
3624 warned = 1;
3627 if (name == 0)
3629 if (warned != 1 && code != ENUMERAL_TYPE)
3630 /* Empty unnamed enum OK */
3632 pedwarn (input_location, 0,
3633 "unnamed struct/union that defines no instances");
3634 warned = 1;
3637 else if (declspecs->typespec_kind != ctsk_tagdef
3638 && declspecs->typespec_kind != ctsk_tagfirstref
3639 && declspecs->storage_class != csc_none)
3641 if (warned != 1)
3642 pedwarn (input_location, 0,
3643 "empty declaration with storage class specifier "
3644 "does not redeclare tag");
3645 warned = 1;
3646 pending_xref_error ();
3648 else if (declspecs->typespec_kind != ctsk_tagdef
3649 && declspecs->typespec_kind != ctsk_tagfirstref
3650 && (declspecs->const_p
3651 || declspecs->volatile_p
3652 || declspecs->restrict_p
3653 || declspecs->address_space))
3655 if (warned != 1)
3656 pedwarn (input_location, 0,
3657 "empty declaration with type qualifier "
3658 "does not redeclare tag");
3659 warned = 1;
3660 pending_xref_error ();
3662 else
3664 pending_invalid_xref = 0;
3665 t = lookup_tag (code, name, 1, NULL);
3667 if (t == 0)
3669 t = make_node (code);
3670 pushtag (input_location, name, t);
3674 else
3676 if (warned != 1 && !in_system_header)
3678 pedwarn (input_location, 0,
3679 "useless type name in empty declaration");
3680 warned = 1;
3684 else if (warned != 1 && !in_system_header && declspecs->typedef_p)
3686 pedwarn (input_location, 0, "useless type name in empty declaration");
3687 warned = 1;
3690 pending_invalid_xref = 0;
3692 if (declspecs->inline_p)
3694 error ("%<inline%> in empty declaration");
3695 warned = 1;
3698 if (current_scope == file_scope && declspecs->storage_class == csc_auto)
3700 error ("%<auto%> in file-scope empty declaration");
3701 warned = 1;
3704 if (current_scope == file_scope && declspecs->storage_class == csc_register)
3706 error ("%<register%> in file-scope empty declaration");
3707 warned = 1;
3710 if (!warned && !in_system_header && declspecs->storage_class != csc_none)
3712 warning (0, "useless storage class specifier in empty declaration");
3713 warned = 2;
3716 if (!warned && !in_system_header && declspecs->thread_p)
3718 warning (0, "useless %<__thread%> in empty declaration");
3719 warned = 2;
3722 if (!warned && !in_system_header && (declspecs->const_p
3723 || declspecs->volatile_p
3724 || declspecs->restrict_p
3725 || declspecs->address_space))
3727 warning (0, "useless type qualifier in empty declaration");
3728 warned = 2;
3731 if (warned != 1)
3733 if (!found_tag)
3734 pedwarn (input_location, 0, "empty declaration");
3739 /* Return the qualifiers from SPECS as a bitwise OR of TYPE_QUAL_*
3740 bits. SPECS represents declaration specifiers that the grammar
3741 only permits to contain type qualifiers and attributes. */
3744 quals_from_declspecs (const struct c_declspecs *specs)
3746 int quals = ((specs->const_p ? TYPE_QUAL_CONST : 0)
3747 | (specs->volatile_p ? TYPE_QUAL_VOLATILE : 0)
3748 | (specs->restrict_p ? TYPE_QUAL_RESTRICT : 0)
3749 | (ENCODE_QUAL_ADDR_SPACE (specs->address_space)));
3750 gcc_assert (!specs->type
3751 && !specs->decl_attr
3752 && specs->typespec_word == cts_none
3753 && specs->storage_class == csc_none
3754 && !specs->typedef_p
3755 && !specs->explicit_signed_p
3756 && !specs->deprecated_p
3757 && !specs->long_p
3758 && !specs->long_long_p
3759 && !specs->short_p
3760 && !specs->signed_p
3761 && !specs->unsigned_p
3762 && !specs->complex_p
3763 && !specs->inline_p
3764 && !specs->thread_p);
3765 return quals;
3768 /* Construct an array declarator. LOC is the location of the
3769 beginning of the array (usually the opening brace). EXPR is the
3770 expression inside [], or NULL_TREE. QUALS are the type qualifiers
3771 inside the [] (to be applied to the pointer to which a parameter
3772 array is converted). STATIC_P is true if "static" is inside the
3773 [], false otherwise. VLA_UNSPEC_P is true if the array is [*], a
3774 VLA of unspecified length which is nevertheless a complete type,
3775 false otherwise. The field for the contained declarator is left to
3776 be filled in by set_array_declarator_inner. */
3778 struct c_declarator *
3779 build_array_declarator (location_t loc,
3780 tree expr, struct c_declspecs *quals, bool static_p,
3781 bool vla_unspec_p)
3783 struct c_declarator *declarator = XOBNEW (&parser_obstack,
3784 struct c_declarator);
3785 declarator->id_loc = loc;
3786 declarator->kind = cdk_array;
3787 declarator->declarator = 0;
3788 declarator->u.array.dimen = expr;
3789 if (quals)
3791 declarator->u.array.attrs = quals->attrs;
3792 declarator->u.array.quals = quals_from_declspecs (quals);
3794 else
3796 declarator->u.array.attrs = NULL_TREE;
3797 declarator->u.array.quals = 0;
3799 declarator->u.array.static_p = static_p;
3800 declarator->u.array.vla_unspec_p = vla_unspec_p;
3801 if (!flag_isoc99)
3803 if (static_p || quals != NULL)
3804 pedwarn (loc, OPT_pedantic,
3805 "ISO C90 does not support %<static%> or type "
3806 "qualifiers in parameter array declarators");
3807 if (vla_unspec_p)
3808 pedwarn (loc, OPT_pedantic,
3809 "ISO C90 does not support %<[*]%> array declarators");
3811 if (vla_unspec_p)
3813 if (!current_scope->parm_flag)
3815 /* C99 6.7.5.2p4 */
3816 error_at (loc, "%<[*]%> not allowed in other than "
3817 "function prototype scope");
3818 declarator->u.array.vla_unspec_p = false;
3819 return NULL;
3821 current_scope->had_vla_unspec = true;
3823 return declarator;
3826 /* Set the contained declarator of an array declarator. DECL is the
3827 declarator, as constructed by build_array_declarator; INNER is what
3828 appears on the left of the []. */
3830 struct c_declarator *
3831 set_array_declarator_inner (struct c_declarator *decl,
3832 struct c_declarator *inner)
3834 decl->declarator = inner;
3835 return decl;
3838 /* INIT is a constructor that forms DECL's initializer. If the final
3839 element initializes a flexible array field, add the size of that
3840 initializer to DECL's size. */
3842 static void
3843 add_flexible_array_elts_to_size (tree decl, tree init)
3845 tree elt, type;
3847 if (VEC_empty (constructor_elt, CONSTRUCTOR_ELTS (init)))
3848 return;
3850 elt = VEC_last (constructor_elt, CONSTRUCTOR_ELTS (init))->value;
3851 type = TREE_TYPE (elt);
3852 if (TREE_CODE (type) == ARRAY_TYPE
3853 && TYPE_SIZE (type) == NULL_TREE
3854 && TYPE_DOMAIN (type) != NULL_TREE
3855 && TYPE_MAX_VALUE (TYPE_DOMAIN (type)) == NULL_TREE)
3857 complete_array_type (&type, elt, false);
3858 DECL_SIZE (decl)
3859 = size_binop (PLUS_EXPR, DECL_SIZE (decl), TYPE_SIZE (type));
3860 DECL_SIZE_UNIT (decl)
3861 = size_binop (PLUS_EXPR, DECL_SIZE_UNIT (decl), TYPE_SIZE_UNIT (type));
3865 /* Decode a "typename", such as "int **", returning a ..._TYPE node.
3866 Set *EXPR, if EXPR not NULL, to any expression to be evaluated
3867 before the type name, and set *EXPR_CONST_OPERANDS, if
3868 EXPR_CONST_OPERANDS not NULL, to indicate whether the type name may
3869 appear in a constant expression. */
3871 tree
3872 groktypename (struct c_type_name *type_name, tree *expr,
3873 bool *expr_const_operands)
3875 tree type;
3876 tree attrs = type_name->specs->attrs;
3878 type_name->specs->attrs = NULL_TREE;
3880 type = grokdeclarator (type_name->declarator, type_name->specs, TYPENAME,
3881 false, NULL, &attrs, expr, expr_const_operands,
3882 DEPRECATED_NORMAL);
3884 /* Apply attributes. */
3885 decl_attributes (&type, attrs, 0);
3887 return type;
3890 /* Decode a declarator in an ordinary declaration or data definition.
3891 This is called as soon as the type information and variable name
3892 have been parsed, before parsing the initializer if any.
3893 Here we create the ..._DECL node, fill in its type,
3894 and put it on the list of decls for the current context.
3895 The ..._DECL node is returned as the value.
3897 Exception: for arrays where the length is not specified,
3898 the type is left null, to be filled in by `finish_decl'.
3900 Function definitions do not come here; they go to start_function
3901 instead. However, external and forward declarations of functions
3902 do go through here. Structure field declarations are done by
3903 grokfield and not through here. */
3905 tree
3906 start_decl (struct c_declarator *declarator, struct c_declspecs *declspecs,
3907 bool initialized, tree attributes)
3909 tree decl;
3910 tree tem;
3911 tree expr = NULL_TREE;
3912 enum deprecated_states deprecated_state = DEPRECATED_NORMAL;
3914 /* An object declared as __attribute__((deprecated)) suppresses
3915 warnings of uses of other deprecated items. */
3916 if (lookup_attribute ("deprecated", attributes))
3917 deprecated_state = DEPRECATED_SUPPRESS;
3919 decl = grokdeclarator (declarator, declspecs,
3920 NORMAL, initialized, NULL, &attributes, &expr, NULL,
3921 deprecated_state);
3922 if (!decl)
3923 return 0;
3925 if (expr)
3926 add_stmt (expr);
3928 if (TREE_CODE (decl) != FUNCTION_DECL && MAIN_NAME_P (DECL_NAME (decl)))
3929 warning (OPT_Wmain, "%q+D is usually a function", decl);
3931 if (initialized)
3932 /* Is it valid for this decl to have an initializer at all?
3933 If not, set INITIALIZED to zero, which will indirectly
3934 tell 'finish_decl' to ignore the initializer once it is parsed. */
3935 switch (TREE_CODE (decl))
3937 case TYPE_DECL:
3938 error ("typedef %qD is initialized (use __typeof__ instead)", decl);
3939 initialized = 0;
3940 break;
3942 case FUNCTION_DECL:
3943 error ("function %qD is initialized like a variable", decl);
3944 initialized = 0;
3945 break;
3947 case PARM_DECL:
3948 /* DECL_INITIAL in a PARM_DECL is really DECL_ARG_TYPE. */
3949 error ("parameter %qD is initialized", decl);
3950 initialized = 0;
3951 break;
3953 default:
3954 /* Don't allow initializations for incomplete types except for
3955 arrays which might be completed by the initialization. */
3957 /* This can happen if the array size is an undefined macro.
3958 We already gave a warning, so we don't need another one. */
3959 if (TREE_TYPE (decl) == error_mark_node)
3960 initialized = 0;
3961 else if (COMPLETE_TYPE_P (TREE_TYPE (decl)))
3963 /* A complete type is ok if size is fixed. */
3965 if (TREE_CODE (TYPE_SIZE (TREE_TYPE (decl))) != INTEGER_CST
3966 || C_DECL_VARIABLE_SIZE (decl))
3968 error ("variable-sized object may not be initialized");
3969 initialized = 0;
3972 else if (TREE_CODE (TREE_TYPE (decl)) != ARRAY_TYPE)
3974 error ("variable %qD has initializer but incomplete type", decl);
3975 initialized = 0;
3977 else if (C_DECL_VARIABLE_SIZE (decl))
3979 /* Although C99 is unclear about whether incomplete arrays
3980 of VLAs themselves count as VLAs, it does not make
3981 sense to permit them to be initialized given that
3982 ordinary VLAs may not be initialized. */
3983 error ("variable-sized object may not be initialized");
3984 initialized = 0;
3988 if (initialized)
3990 if (current_scope == file_scope)
3991 TREE_STATIC (decl) = 1;
3993 /* Tell 'pushdecl' this is an initialized decl
3994 even though we don't yet have the initializer expression.
3995 Also tell 'finish_decl' it may store the real initializer. */
3996 DECL_INITIAL (decl) = error_mark_node;
3999 /* If this is a function declaration, write a record describing it to the
4000 prototypes file (if requested). */
4002 if (TREE_CODE (decl) == FUNCTION_DECL)
4003 gen_aux_info_record (decl, 0, 0, TYPE_ARG_TYPES (TREE_TYPE (decl)) != 0);
4005 /* ANSI specifies that a tentative definition which is not merged with
4006 a non-tentative definition behaves exactly like a definition with an
4007 initializer equal to zero. (Section 3.7.2)
4009 -fno-common gives strict ANSI behavior, though this tends to break
4010 a large body of code that grew up without this rule.
4012 Thread-local variables are never common, since there's no entrenched
4013 body of code to break, and it allows more efficient variable references
4014 in the presence of dynamic linking. */
4016 if (TREE_CODE (decl) == VAR_DECL
4017 && !initialized
4018 && TREE_PUBLIC (decl)
4019 && !DECL_THREAD_LOCAL_P (decl)
4020 && !flag_no_common)
4021 DECL_COMMON (decl) = 1;
4023 /* Set attributes here so if duplicate decl, will have proper attributes. */
4024 decl_attributes (&decl, attributes, 0);
4026 /* Handle gnu_inline attribute. */
4027 if (declspecs->inline_p
4028 && !flag_gnu89_inline
4029 && TREE_CODE (decl) == FUNCTION_DECL
4030 && (lookup_attribute ("gnu_inline", DECL_ATTRIBUTES (decl))
4031 || current_function_decl))
4033 if (declspecs->storage_class == csc_auto && current_scope != file_scope)
4035 else if (declspecs->storage_class != csc_static)
4036 DECL_EXTERNAL (decl) = !DECL_EXTERNAL (decl);
4039 if (TREE_CODE (decl) == FUNCTION_DECL
4040 && targetm.calls.promote_prototypes (TREE_TYPE (decl)))
4042 struct c_declarator *ce = declarator;
4044 if (ce->kind == cdk_pointer)
4045 ce = declarator->declarator;
4046 if (ce->kind == cdk_function)
4048 tree args = ce->u.arg_info->parms;
4049 for (; args; args = DECL_CHAIN (args))
4051 tree type = TREE_TYPE (args);
4052 if (type && INTEGRAL_TYPE_P (type)
4053 && TYPE_PRECISION (type) < TYPE_PRECISION (integer_type_node))
4054 DECL_ARG_TYPE (args) = integer_type_node;
4059 if (TREE_CODE (decl) == FUNCTION_DECL
4060 && DECL_DECLARED_INLINE_P (decl)
4061 && DECL_UNINLINABLE (decl)
4062 && lookup_attribute ("noinline", DECL_ATTRIBUTES (decl)))
4063 warning (OPT_Wattributes, "inline function %q+D given attribute noinline",
4064 decl);
4066 /* C99 6.7.4p3: An inline definition of a function with external
4067 linkage shall not contain a definition of a modifiable object
4068 with static storage duration... */
4069 if (TREE_CODE (decl) == VAR_DECL
4070 && current_scope != file_scope
4071 && TREE_STATIC (decl)
4072 && !TREE_READONLY (decl)
4073 && DECL_DECLARED_INLINE_P (current_function_decl)
4074 && DECL_EXTERNAL (current_function_decl))
4075 record_inline_static (input_location, current_function_decl,
4076 decl, csi_modifiable);
4078 if (c_dialect_objc ()
4079 && (TREE_CODE (decl) == VAR_DECL
4080 || TREE_CODE (decl) == FUNCTION_DECL))
4081 objc_check_global_decl (decl);
4083 /* Add this decl to the current scope.
4084 TEM may equal DECL or it may be a previous decl of the same name. */
4085 tem = pushdecl (decl);
4087 if (initialized && DECL_EXTERNAL (tem))
4089 DECL_EXTERNAL (tem) = 0;
4090 TREE_STATIC (tem) = 1;
4093 return tem;
4096 /* Subroutine of finish_decl. TYPE is the type of an uninitialized object
4097 DECL or the non-array element type if DECL is an uninitialized array.
4098 If that type has a const member, diagnose this. */
4100 static void
4101 diagnose_uninitialized_cst_member (tree decl, tree type)
4103 tree field;
4104 for (field = TYPE_FIELDS (type); field; field = TREE_CHAIN (field))
4106 tree field_type;
4107 if (TREE_CODE (field) != FIELD_DECL)
4108 continue;
4109 field_type = strip_array_types (TREE_TYPE (field));
4111 if (TYPE_QUALS (field_type) & TYPE_QUAL_CONST)
4113 warning_at (DECL_SOURCE_LOCATION (decl), OPT_Wc___compat,
4114 "uninitialized const member in %qT is invalid in C++",
4115 strip_array_types (TREE_TYPE (decl)));
4116 inform (DECL_SOURCE_LOCATION (field), "%qD should be initialized", field);
4119 if (TREE_CODE (field_type) == RECORD_TYPE
4120 || TREE_CODE (field_type) == UNION_TYPE)
4121 diagnose_uninitialized_cst_member (decl, field_type);
4125 /* Finish processing of a declaration;
4126 install its initial value.
4127 If ORIGTYPE is not NULL_TREE, it is the original type of INIT.
4128 If the length of an array type is not known before,
4129 it must be determined now, from the initial value, or it is an error.
4131 INIT_LOC is the location of the initial value. */
4133 void
4134 finish_decl (tree decl, location_t init_loc, tree init,
4135 tree origtype, tree asmspec_tree)
4137 tree type;
4138 bool was_incomplete = (DECL_SIZE (decl) == 0);
4139 const char *asmspec = 0;
4141 /* If a name was specified, get the string. */
4142 if ((TREE_CODE (decl) == FUNCTION_DECL || TREE_CODE (decl) == VAR_DECL)
4143 && DECL_FILE_SCOPE_P (decl))
4144 asmspec_tree = maybe_apply_renaming_pragma (decl, asmspec_tree);
4145 if (asmspec_tree)
4146 asmspec = TREE_STRING_POINTER (asmspec_tree);
4148 if (TREE_CODE (decl) == VAR_DECL
4149 && TREE_STATIC (decl)
4150 && global_bindings_p ())
4151 /* So decl is a global variable. Record the types it uses
4152 so that we can decide later to emit debug info for them. */
4153 record_types_used_by_current_var_decl (decl);
4155 /* If `start_decl' didn't like having an initialization, ignore it now. */
4156 if (init != 0 && DECL_INITIAL (decl) == 0)
4157 init = 0;
4159 /* Don't crash if parm is initialized. */
4160 if (TREE_CODE (decl) == PARM_DECL)
4161 init = 0;
4163 if (init)
4164 store_init_value (init_loc, decl, init, origtype);
4166 if (c_dialect_objc () && (TREE_CODE (decl) == VAR_DECL
4167 || TREE_CODE (decl) == FUNCTION_DECL
4168 || TREE_CODE (decl) == FIELD_DECL))
4169 objc_check_decl (decl);
4171 type = TREE_TYPE (decl);
4173 /* Deduce size of array from initialization, if not already known. */
4174 if (TREE_CODE (type) == ARRAY_TYPE
4175 && TYPE_DOMAIN (type) == 0
4176 && TREE_CODE (decl) != TYPE_DECL)
4178 bool do_default
4179 = (TREE_STATIC (decl)
4180 /* Even if pedantic, an external linkage array
4181 may have incomplete type at first. */
4182 ? pedantic && !TREE_PUBLIC (decl)
4183 : !DECL_EXTERNAL (decl));
4184 int failure
4185 = complete_array_type (&TREE_TYPE (decl), DECL_INITIAL (decl),
4186 do_default);
4188 /* Get the completed type made by complete_array_type. */
4189 type = TREE_TYPE (decl);
4191 switch (failure)
4193 case 1:
4194 error ("initializer fails to determine size of %q+D", decl);
4195 break;
4197 case 2:
4198 if (do_default)
4199 error ("array size missing in %q+D", decl);
4200 /* If a `static' var's size isn't known,
4201 make it extern as well as static, so it does not get
4202 allocated.
4203 If it is not `static', then do not mark extern;
4204 finish_incomplete_decl will give it a default size
4205 and it will get allocated. */
4206 else if (!pedantic && TREE_STATIC (decl) && !TREE_PUBLIC (decl))
4207 DECL_EXTERNAL (decl) = 1;
4208 break;
4210 case 3:
4211 error ("zero or negative size array %q+D", decl);
4212 break;
4214 case 0:
4215 /* For global variables, update the copy of the type that
4216 exists in the binding. */
4217 if (TREE_PUBLIC (decl))
4219 struct c_binding *b_ext = I_SYMBOL_BINDING (DECL_NAME (decl));
4220 while (b_ext && !B_IN_EXTERNAL_SCOPE (b_ext))
4221 b_ext = b_ext->shadowed;
4222 if (b_ext)
4224 if (b_ext->u.type)
4225 b_ext->u.type = composite_type (b_ext->u.type, type);
4226 else
4227 b_ext->u.type = type;
4230 break;
4232 default:
4233 gcc_unreachable ();
4236 if (DECL_INITIAL (decl))
4237 TREE_TYPE (DECL_INITIAL (decl)) = type;
4239 layout_decl (decl, 0);
4242 if (TREE_CODE (decl) == VAR_DECL)
4244 if (init && TREE_CODE (init) == CONSTRUCTOR)
4245 add_flexible_array_elts_to_size (decl, init);
4247 if (DECL_SIZE (decl) == 0 && TREE_TYPE (decl) != error_mark_node
4248 && COMPLETE_TYPE_P (TREE_TYPE (decl)))
4249 layout_decl (decl, 0);
4251 if (DECL_SIZE (decl) == 0
4252 /* Don't give an error if we already gave one earlier. */
4253 && TREE_TYPE (decl) != error_mark_node
4254 && (TREE_STATIC (decl)
4255 /* A static variable with an incomplete type
4256 is an error if it is initialized.
4257 Also if it is not file scope.
4258 Otherwise, let it through, but if it is not `extern'
4259 then it may cause an error message later. */
4260 ? (DECL_INITIAL (decl) != 0
4261 || !DECL_FILE_SCOPE_P (decl))
4262 /* An automatic variable with an incomplete type
4263 is an error. */
4264 : !DECL_EXTERNAL (decl)))
4266 error ("storage size of %q+D isn%'t known", decl);
4267 TREE_TYPE (decl) = error_mark_node;
4270 if ((DECL_EXTERNAL (decl) || TREE_STATIC (decl))
4271 && DECL_SIZE (decl) != 0)
4273 if (TREE_CODE (DECL_SIZE (decl)) == INTEGER_CST)
4274 constant_expression_warning (DECL_SIZE (decl));
4275 else
4277 error ("storage size of %q+D isn%'t constant", decl);
4278 TREE_TYPE (decl) = error_mark_node;
4282 if (TREE_USED (type))
4284 TREE_USED (decl) = 1;
4285 DECL_READ_P (decl) = 1;
4289 /* If this is a function and an assembler name is specified, reset DECL_RTL
4290 so we can give it its new name. Also, update built_in_decls if it
4291 was a normal built-in. */
4292 if (TREE_CODE (decl) == FUNCTION_DECL && asmspec)
4294 if (DECL_BUILT_IN_CLASS (decl) == BUILT_IN_NORMAL)
4295 set_builtin_user_assembler_name (decl, asmspec);
4296 set_user_assembler_name (decl, asmspec);
4299 /* If #pragma weak was used, mark the decl weak now. */
4300 maybe_apply_pragma_weak (decl);
4302 /* Output the assembler code and/or RTL code for variables and functions,
4303 unless the type is an undefined structure or union.
4304 If not, it will get done when the type is completed. */
4306 if (TREE_CODE (decl) == VAR_DECL || TREE_CODE (decl) == FUNCTION_DECL)
4308 /* Determine the ELF visibility. */
4309 if (TREE_PUBLIC (decl))
4310 c_determine_visibility (decl);
4312 /* This is a no-op in c-lang.c or something real in objc-act.c. */
4313 if (c_dialect_objc ())
4314 objc_check_decl (decl);
4316 if (asmspec)
4318 /* If this is not a static variable, issue a warning.
4319 It doesn't make any sense to give an ASMSPEC for an
4320 ordinary, non-register local variable. Historically,
4321 GCC has accepted -- but ignored -- the ASMSPEC in
4322 this case. */
4323 if (!DECL_FILE_SCOPE_P (decl)
4324 && TREE_CODE (decl) == VAR_DECL
4325 && !C_DECL_REGISTER (decl)
4326 && !TREE_STATIC (decl))
4327 warning (0, "ignoring asm-specifier for non-static local "
4328 "variable %q+D", decl);
4329 else
4330 set_user_assembler_name (decl, asmspec);
4333 if (DECL_FILE_SCOPE_P (decl))
4335 if (DECL_INITIAL (decl) == NULL_TREE
4336 || DECL_INITIAL (decl) == error_mark_node)
4337 /* Don't output anything
4338 when a tentative file-scope definition is seen.
4339 But at end of compilation, do output code for them. */
4340 DECL_DEFER_OUTPUT (decl) = 1;
4341 rest_of_decl_compilation (decl, true, 0);
4343 else
4345 /* In conjunction with an ASMSPEC, the `register'
4346 keyword indicates that we should place the variable
4347 in a particular register. */
4348 if (asmspec && C_DECL_REGISTER (decl))
4350 DECL_HARD_REGISTER (decl) = 1;
4351 /* This cannot be done for a structure with volatile
4352 fields, on which DECL_REGISTER will have been
4353 reset. */
4354 if (!DECL_REGISTER (decl))
4355 error ("cannot put object with volatile field into register");
4358 if (TREE_CODE (decl) != FUNCTION_DECL)
4360 /* If we're building a variable sized type, and we might be
4361 reachable other than via the top of the current binding
4362 level, then create a new BIND_EXPR so that we deallocate
4363 the object at the right time. */
4364 /* Note that DECL_SIZE can be null due to errors. */
4365 if (DECL_SIZE (decl)
4366 && !TREE_CONSTANT (DECL_SIZE (decl))
4367 && STATEMENT_LIST_HAS_LABEL (cur_stmt_list))
4369 tree bind;
4370 bind = build3 (BIND_EXPR, void_type_node, NULL, NULL, NULL);
4371 TREE_SIDE_EFFECTS (bind) = 1;
4372 add_stmt (bind);
4373 BIND_EXPR_BODY (bind) = push_stmt_list ();
4375 add_stmt (build_stmt (DECL_SOURCE_LOCATION (decl),
4376 DECL_EXPR, decl));
4381 if (!DECL_FILE_SCOPE_P (decl))
4383 /* Recompute the RTL of a local array now
4384 if it used to be an incomplete type. */
4385 if (was_incomplete
4386 && !TREE_STATIC (decl) && !DECL_EXTERNAL (decl))
4388 /* If we used it already as memory, it must stay in memory. */
4389 TREE_ADDRESSABLE (decl) = TREE_USED (decl);
4390 /* If it's still incomplete now, no init will save it. */
4391 if (DECL_SIZE (decl) == 0)
4392 DECL_INITIAL (decl) = 0;
4397 if (TREE_CODE (decl) == TYPE_DECL)
4399 if (!DECL_FILE_SCOPE_P (decl)
4400 && variably_modified_type_p (TREE_TYPE (decl), NULL_TREE))
4401 add_stmt (build_stmt (DECL_SOURCE_LOCATION (decl), DECL_EXPR, decl));
4403 rest_of_decl_compilation (decl, DECL_FILE_SCOPE_P (decl), 0);
4406 /* At the end of a declaration, throw away any variable type sizes
4407 of types defined inside that declaration. There is no use
4408 computing them in the following function definition. */
4409 if (current_scope == file_scope)
4410 get_pending_sizes ();
4412 /* Install a cleanup (aka destructor) if one was given. */
4413 if (TREE_CODE (decl) == VAR_DECL && !TREE_STATIC (decl))
4415 tree attr = lookup_attribute ("cleanup", DECL_ATTRIBUTES (decl));
4416 if (attr)
4418 tree cleanup_id = TREE_VALUE (TREE_VALUE (attr));
4419 tree cleanup_decl = lookup_name (cleanup_id);
4420 tree cleanup;
4421 VEC(tree,gc) *vec;
4423 /* Build "cleanup(&decl)" for the destructor. */
4424 cleanup = build_unary_op (input_location, ADDR_EXPR, decl, 0);
4425 vec = VEC_alloc (tree, gc, 1);
4426 VEC_quick_push (tree, vec, cleanup);
4427 cleanup = build_function_call_vec (DECL_SOURCE_LOCATION (decl),
4428 cleanup_decl, vec, NULL);
4429 VEC_free (tree, gc, vec);
4431 /* Don't warn about decl unused; the cleanup uses it. */
4432 TREE_USED (decl) = 1;
4433 TREE_USED (cleanup_decl) = 1;
4434 DECL_READ_P (decl) = 1;
4436 push_cleanup (decl, cleanup, false);
4440 if (warn_cxx_compat
4441 && TREE_CODE (decl) == VAR_DECL
4442 && !DECL_EXTERNAL (decl)
4443 && DECL_INITIAL (decl) == NULL_TREE)
4445 type = strip_array_types (type);
4446 if (TREE_READONLY (decl))
4447 warning_at (DECL_SOURCE_LOCATION (decl), OPT_Wc___compat,
4448 "uninitialized const %qD is invalid in C++", decl);
4449 else if ((TREE_CODE (type) == RECORD_TYPE
4450 || TREE_CODE (type) == UNION_TYPE)
4451 && C_TYPE_FIELDS_READONLY (type))
4452 diagnose_uninitialized_cst_member (decl, type);
4456 /* Given a parsed parameter declaration, decode it into a PARM_DECL. */
4458 tree
4459 grokparm (const struct c_parm *parm)
4461 tree attrs = parm->attrs;
4462 tree decl = grokdeclarator (parm->declarator, parm->specs, PARM, false,
4463 NULL, &attrs, NULL, NULL, DEPRECATED_NORMAL);
4465 decl_attributes (&decl, attrs, 0);
4467 return decl;
4470 /* Given a parsed parameter declaration, decode it into a PARM_DECL
4471 and push that on the current scope. */
4473 void
4474 push_parm_decl (const struct c_parm *parm)
4476 tree attrs = parm->attrs;
4477 tree decl;
4479 decl = grokdeclarator (parm->declarator, parm->specs, PARM, false, NULL,
4480 &attrs, NULL, NULL, DEPRECATED_NORMAL);
4481 decl_attributes (&decl, attrs, 0);
4483 decl = pushdecl (decl);
4485 finish_decl (decl, input_location, NULL_TREE, NULL_TREE, NULL_TREE);
4488 /* Mark all the parameter declarations to date as forward decls.
4489 Also diagnose use of this extension. */
4491 void
4492 mark_forward_parm_decls (void)
4494 struct c_binding *b;
4496 if (pedantic && !current_scope->warned_forward_parm_decls)
4498 pedwarn (input_location, OPT_pedantic,
4499 "ISO C forbids forward parameter declarations");
4500 current_scope->warned_forward_parm_decls = true;
4503 for (b = current_scope->bindings; b; b = b->prev)
4504 if (TREE_CODE (b->decl) == PARM_DECL)
4505 TREE_ASM_WRITTEN (b->decl) = 1;
4508 /* Build a COMPOUND_LITERAL_EXPR. TYPE is the type given in the compound
4509 literal, which may be an incomplete array type completed by the
4510 initializer; INIT is a CONSTRUCTOR at LOC that initializes the compound
4511 literal. NON_CONST is true if the initializers contain something
4512 that cannot occur in a constant expression. */
4514 tree
4515 build_compound_literal (location_t loc, tree type, tree init, bool non_const)
4517 /* We do not use start_decl here because we have a type, not a declarator;
4518 and do not use finish_decl because the decl should be stored inside
4519 the COMPOUND_LITERAL_EXPR rather than added elsewhere as a DECL_EXPR. */
4520 tree decl;
4521 tree complit;
4522 tree stmt;
4524 if (type == error_mark_node
4525 || init == error_mark_node)
4526 return error_mark_node;
4528 decl = build_decl (loc, VAR_DECL, NULL_TREE, type);
4529 DECL_EXTERNAL (decl) = 0;
4530 TREE_PUBLIC (decl) = 0;
4531 TREE_STATIC (decl) = (current_scope == file_scope);
4532 DECL_CONTEXT (decl) = current_function_decl;
4533 TREE_USED (decl) = 1;
4534 DECL_READ_P (decl) = 1;
4535 TREE_TYPE (decl) = type;
4536 TREE_READONLY (decl) = TYPE_READONLY (type);
4537 store_init_value (loc, decl, init, NULL_TREE);
4539 if (TREE_CODE (type) == ARRAY_TYPE && !COMPLETE_TYPE_P (type))
4541 int failure = complete_array_type (&TREE_TYPE (decl),
4542 DECL_INITIAL (decl), true);
4543 gcc_assert (!failure);
4545 type = TREE_TYPE (decl);
4546 TREE_TYPE (DECL_INITIAL (decl)) = type;
4549 if (type == error_mark_node || !COMPLETE_TYPE_P (type))
4550 return error_mark_node;
4552 stmt = build_stmt (DECL_SOURCE_LOCATION (decl), DECL_EXPR, decl);
4553 complit = build1 (COMPOUND_LITERAL_EXPR, type, stmt);
4554 TREE_SIDE_EFFECTS (complit) = 1;
4556 layout_decl (decl, 0);
4558 if (TREE_STATIC (decl))
4560 /* This decl needs a name for the assembler output. */
4561 set_compound_literal_name (decl);
4562 DECL_DEFER_OUTPUT (decl) = 1;
4563 DECL_COMDAT (decl) = 1;
4564 DECL_ARTIFICIAL (decl) = 1;
4565 DECL_IGNORED_P (decl) = 1;
4566 pushdecl (decl);
4567 rest_of_decl_compilation (decl, 1, 0);
4570 if (non_const)
4572 complit = build2 (C_MAYBE_CONST_EXPR, type, NULL, complit);
4573 C_MAYBE_CONST_EXPR_NON_CONST (complit) = 1;
4576 return complit;
4579 /* Check the type of a compound literal. Here we just check that it
4580 is valid for C++. */
4582 void
4583 check_compound_literal_type (location_t loc, struct c_type_name *type_name)
4585 if (warn_cxx_compat
4586 && (type_name->specs->typespec_kind == ctsk_tagdef
4587 || type_name->specs->typespec_kind == ctsk_tagfirstref))
4588 warning_at (loc, OPT_Wc___compat,
4589 "defining a type in a compound literal is invalid in C++");
4592 /* Determine whether TYPE is a structure with a flexible array member,
4593 or a union containing such a structure (possibly recursively). */
4595 static bool
4596 flexible_array_type_p (tree type)
4598 tree x;
4599 switch (TREE_CODE (type))
4601 case RECORD_TYPE:
4602 x = TYPE_FIELDS (type);
4603 if (x == NULL_TREE)
4604 return false;
4605 while (DECL_CHAIN (x) != NULL_TREE)
4606 x = DECL_CHAIN (x);
4607 if (TREE_CODE (TREE_TYPE (x)) == ARRAY_TYPE
4608 && TYPE_SIZE (TREE_TYPE (x)) == NULL_TREE
4609 && TYPE_DOMAIN (TREE_TYPE (x)) != NULL_TREE
4610 && TYPE_MAX_VALUE (TYPE_DOMAIN (TREE_TYPE (x))) == NULL_TREE)
4611 return true;
4612 return false;
4613 case UNION_TYPE:
4614 for (x = TYPE_FIELDS (type); x != NULL_TREE; x = DECL_CHAIN (x))
4616 if (flexible_array_type_p (TREE_TYPE (x)))
4617 return true;
4619 return false;
4620 default:
4621 return false;
4625 /* Performs sanity checks on the TYPE and WIDTH of the bit-field NAME,
4626 replacing with appropriate values if they are invalid. */
4627 static void
4628 check_bitfield_type_and_width (tree *type, tree *width, tree orig_name)
4630 tree type_mv;
4631 unsigned int max_width;
4632 unsigned HOST_WIDE_INT w;
4633 const char *name = (orig_name
4634 ? identifier_to_locale (IDENTIFIER_POINTER (orig_name))
4635 : _("<anonymous>"));
4637 /* Detect and ignore out of range field width and process valid
4638 field widths. */
4639 if (!INTEGRAL_TYPE_P (TREE_TYPE (*width)))
4641 error ("bit-field %qs width not an integer constant", name);
4642 *width = integer_one_node;
4644 else
4646 if (TREE_CODE (*width) != INTEGER_CST)
4648 *width = c_fully_fold (*width, false, NULL);
4649 if (TREE_CODE (*width) == INTEGER_CST)
4650 pedwarn (input_location, OPT_pedantic,
4651 "bit-field %qs width not an integer constant expression",
4652 name);
4654 if (TREE_CODE (*width) != INTEGER_CST)
4656 error ("bit-field %qs width not an integer constant", name);
4657 *width = integer_one_node;
4659 constant_expression_warning (*width);
4660 if (tree_int_cst_sgn (*width) < 0)
4662 error ("negative width in bit-field %qs", name);
4663 *width = integer_one_node;
4665 else if (integer_zerop (*width) && orig_name)
4667 error ("zero width for bit-field %qs", name);
4668 *width = integer_one_node;
4672 /* Detect invalid bit-field type. */
4673 if (TREE_CODE (*type) != INTEGER_TYPE
4674 && TREE_CODE (*type) != BOOLEAN_TYPE
4675 && TREE_CODE (*type) != ENUMERAL_TYPE)
4677 error ("bit-field %qs has invalid type", name);
4678 *type = unsigned_type_node;
4681 type_mv = TYPE_MAIN_VARIANT (*type);
4682 if (!in_system_header
4683 && type_mv != integer_type_node
4684 && type_mv != unsigned_type_node
4685 && type_mv != boolean_type_node)
4686 pedwarn (input_location, OPT_pedantic,
4687 "type of bit-field %qs is a GCC extension", name);
4689 max_width = TYPE_PRECISION (*type);
4691 if (0 < compare_tree_int (*width, max_width))
4693 error ("width of %qs exceeds its type", name);
4694 w = max_width;
4695 *width = build_int_cst (NULL_TREE, w);
4697 else
4698 w = tree_low_cst (*width, 1);
4700 if (TREE_CODE (*type) == ENUMERAL_TYPE)
4702 struct lang_type *lt = TYPE_LANG_SPECIFIC (*type);
4703 if (!lt
4704 || w < tree_int_cst_min_precision (lt->enum_min, TYPE_UNSIGNED (*type))
4705 || w < tree_int_cst_min_precision (lt->enum_max, TYPE_UNSIGNED (*type)))
4706 warning (0, "%qs is narrower than values of its type", name);
4712 /* Print warning about variable length array if necessary. */
4714 static void
4715 warn_variable_length_array (tree name, tree size)
4717 int const_size = TREE_CONSTANT (size);
4719 if (!flag_isoc99 && pedantic && warn_vla != 0)
4721 if (const_size)
4723 if (name)
4724 pedwarn (input_location, OPT_Wvla,
4725 "ISO C90 forbids array %qE whose size "
4726 "can%'t be evaluated",
4727 name);
4728 else
4729 pedwarn (input_location, OPT_Wvla, "ISO C90 forbids array whose size "
4730 "can%'t be evaluated");
4732 else
4734 if (name)
4735 pedwarn (input_location, OPT_Wvla,
4736 "ISO C90 forbids variable length array %qE",
4737 name);
4738 else
4739 pedwarn (input_location, OPT_Wvla, "ISO C90 forbids variable length array");
4742 else if (warn_vla > 0)
4744 if (const_size)
4746 if (name)
4747 warning (OPT_Wvla,
4748 "the size of array %qE can"
4749 "%'t be evaluated", name);
4750 else
4751 warning (OPT_Wvla,
4752 "the size of array can %'t be evaluated");
4754 else
4756 if (name)
4757 warning (OPT_Wvla,
4758 "variable length array %qE is used",
4759 name);
4760 else
4761 warning (OPT_Wvla,
4762 "variable length array is used");
4767 /* Given a size SIZE that may not be a constant, return a SAVE_EXPR to
4768 serve as the actual size-expression for a type or decl. This is
4769 like variable_size in stor-layout.c, but we make global_bindings_p
4770 return negative to avoid calls to that function from outside the
4771 front end resulting in errors at file scope, then call this version
4772 instead from front-end code. */
4774 static tree
4775 c_variable_size (tree size)
4777 tree save;
4779 if (TREE_CONSTANT (size))
4780 return size;
4782 size = save_expr (size);
4784 save = skip_simple_arithmetic (size);
4786 if (cfun && cfun->dont_save_pending_sizes_p)
4787 return size;
4789 if (!global_bindings_p ())
4790 put_pending_size (save);
4792 return size;
4795 /* Given declspecs and a declarator,
4796 determine the name and type of the object declared
4797 and construct a ..._DECL node for it.
4798 (In one case we can return a ..._TYPE node instead.
4799 For invalid input we sometimes return 0.)
4801 DECLSPECS is a c_declspecs structure for the declaration specifiers.
4803 DECL_CONTEXT says which syntactic context this declaration is in:
4804 NORMAL for most contexts. Make a VAR_DECL or FUNCTION_DECL or TYPE_DECL.
4805 FUNCDEF for a function definition. Like NORMAL but a few different
4806 error messages in each case. Return value may be zero meaning
4807 this definition is too screwy to try to parse.
4808 PARM for a parameter declaration (either within a function prototype
4809 or before a function body). Make a PARM_DECL, or return void_type_node.
4810 TYPENAME if for a typename (in a cast or sizeof).
4811 Don't make a DECL node; just return the ..._TYPE node.
4812 FIELD for a struct or union field; make a FIELD_DECL.
4813 INITIALIZED is true if the decl has an initializer.
4814 WIDTH is non-NULL for bit-fields, and is a pointer to an INTEGER_CST node
4815 representing the width of the bit-field.
4816 DECL_ATTRS points to the list of attributes that should be added to this
4817 decl. Any nested attributes that belong on the decl itself will be
4818 added to this list.
4819 If EXPR is not NULL, any expressions that need to be evaluated as
4820 part of evaluating variably modified types will be stored in *EXPR.
4821 If EXPR_CONST_OPERANDS is not NULL, *EXPR_CONST_OPERANDS will be
4822 set to indicate whether operands in *EXPR can be used in constant
4823 expressions.
4824 DEPRECATED_STATE is a deprecated_states value indicating whether
4825 deprecation warnings should be suppressed.
4827 In the TYPENAME case, DECLARATOR is really an absolute declarator.
4828 It may also be so in the PARM case, for a prototype where the
4829 argument type is specified but not the name.
4831 This function is where the complicated C meanings of `static'
4832 and `extern' are interpreted. */
4834 static tree
4835 grokdeclarator (const struct c_declarator *declarator,
4836 struct c_declspecs *declspecs,
4837 enum decl_context decl_context, bool initialized, tree *width,
4838 tree *decl_attrs, tree *expr, bool *expr_const_operands,
4839 enum deprecated_states deprecated_state)
4841 tree type = declspecs->type;
4842 bool threadp = declspecs->thread_p;
4843 enum c_storage_class storage_class = declspecs->storage_class;
4844 int constp;
4845 int restrictp;
4846 int volatilep;
4847 int type_quals = TYPE_UNQUALIFIED;
4848 tree name = NULL_TREE;
4849 bool funcdef_flag = false;
4850 bool funcdef_syntax = false;
4851 bool size_varies = false;
4852 tree decl_attr = declspecs->decl_attr;
4853 int array_ptr_quals = TYPE_UNQUALIFIED;
4854 tree array_ptr_attrs = NULL_TREE;
4855 int array_parm_static = 0;
4856 bool array_parm_vla_unspec_p = false;
4857 tree returned_attrs = NULL_TREE;
4858 bool bitfield = width != NULL;
4859 tree element_type;
4860 struct c_arg_info *arg_info = 0;
4861 addr_space_t as1, as2, address_space;
4862 location_t loc = UNKNOWN_LOCATION;
4863 const char *errmsg;
4864 tree expr_dummy;
4865 bool expr_const_operands_dummy;
4867 if (expr == NULL)
4868 expr = &expr_dummy;
4869 if (expr_const_operands == NULL)
4870 expr_const_operands = &expr_const_operands_dummy;
4872 *expr = declspecs->expr;
4873 *expr_const_operands = declspecs->expr_const_operands;
4875 if (decl_context == FUNCDEF)
4876 funcdef_flag = true, decl_context = NORMAL;
4878 /* Look inside a declarator for the name being declared
4879 and get it as an IDENTIFIER_NODE, for an error message. */
4881 const struct c_declarator *decl = declarator;
4883 while (decl)
4884 switch (decl->kind)
4886 case cdk_array:
4887 loc = decl->id_loc;
4888 /* FALL THRU. */
4890 case cdk_function:
4891 case cdk_pointer:
4892 funcdef_syntax = (decl->kind == cdk_function);
4893 decl = decl->declarator;
4894 break;
4896 case cdk_attrs:
4897 decl = decl->declarator;
4898 break;
4900 case cdk_id:
4901 loc = decl->id_loc;
4902 if (decl->u.id)
4903 name = decl->u.id;
4904 decl = 0;
4905 break;
4907 default:
4908 gcc_unreachable ();
4910 if (name == 0)
4912 gcc_assert (decl_context == PARM
4913 || decl_context == TYPENAME
4914 || (decl_context == FIELD
4915 && declarator->kind == cdk_id));
4916 gcc_assert (!initialized);
4920 /* A function definition's declarator must have the form of
4921 a function declarator. */
4923 if (funcdef_flag && !funcdef_syntax)
4924 return 0;
4926 /* If this looks like a function definition, make it one,
4927 even if it occurs where parms are expected.
4928 Then store_parm_decls will reject it and not use it as a parm. */
4929 if (decl_context == NORMAL && !funcdef_flag && current_scope->parm_flag)
4930 decl_context = PARM;
4932 if (declspecs->deprecated_p && deprecated_state != DEPRECATED_SUPPRESS)
4933 warn_deprecated_use (declspecs->type, declspecs->decl_attr);
4935 if ((decl_context == NORMAL || decl_context == FIELD)
4936 && current_scope == file_scope
4937 && variably_modified_type_p (type, NULL_TREE))
4939 if (name)
4940 error_at (loc, "variably modified %qE at file scope", name);
4941 else
4942 error_at (loc, "variably modified field at file scope");
4943 type = integer_type_node;
4946 size_varies = C_TYPE_VARIABLE_SIZE (type) != 0;
4948 /* Diagnose defaulting to "int". */
4950 if (declspecs->default_int_p && !in_system_header)
4952 /* Issue a warning if this is an ISO C 99 program or if
4953 -Wreturn-type and this is a function, or if -Wimplicit;
4954 prefer the former warning since it is more explicit. */
4955 if ((warn_implicit_int || warn_return_type || flag_isoc99)
4956 && funcdef_flag)
4957 warn_about_return_type = 1;
4958 else
4960 if (name)
4961 pedwarn_c99 (loc, flag_isoc99 ? 0 : OPT_Wimplicit_int,
4962 "type defaults to %<int%> in declaration of %qE",
4963 name);
4964 else
4965 pedwarn_c99 (input_location, flag_isoc99 ? 0 : OPT_Wimplicit_int,
4966 "type defaults to %<int%> in type name");
4970 /* Adjust the type if a bit-field is being declared,
4971 -funsigned-bitfields applied and the type is not explicitly
4972 "signed". */
4973 if (bitfield && !flag_signed_bitfields && !declspecs->explicit_signed_p
4974 && TREE_CODE (type) == INTEGER_TYPE)
4975 type = unsigned_type_for (type);
4977 /* Figure out the type qualifiers for the declaration. There are
4978 two ways a declaration can become qualified. One is something
4979 like `const int i' where the `const' is explicit. Another is
4980 something like `typedef const int CI; CI i' where the type of the
4981 declaration contains the `const'. A third possibility is that
4982 there is a type qualifier on the element type of a typedefed
4983 array type, in which case we should extract that qualifier so
4984 that c_apply_type_quals_to_decl receives the full list of
4985 qualifiers to work with (C90 is not entirely clear about whether
4986 duplicate qualifiers should be diagnosed in this case, but it
4987 seems most appropriate to do so). */
4988 element_type = strip_array_types (type);
4989 constp = declspecs->const_p + TYPE_READONLY (element_type);
4990 restrictp = declspecs->restrict_p + TYPE_RESTRICT (element_type);
4991 volatilep = declspecs->volatile_p + TYPE_VOLATILE (element_type);
4992 as1 = declspecs->address_space;
4993 as2 = TYPE_ADDR_SPACE (element_type);
4994 address_space = ADDR_SPACE_GENERIC_P (as1)? as2 : as1;
4996 if (pedantic && !flag_isoc99)
4998 if (constp > 1)
4999 pedwarn (loc, OPT_pedantic, "duplicate %<const%>");
5000 if (restrictp > 1)
5001 pedwarn (loc, OPT_pedantic, "duplicate %<restrict%>");
5002 if (volatilep > 1)
5003 pedwarn (loc, OPT_pedantic, "duplicate %<volatile%>");
5006 if (!ADDR_SPACE_GENERIC_P (as1) && !ADDR_SPACE_GENERIC_P (as2) && as1 != as2)
5007 error_at (loc, "conflicting named address spaces (%s vs %s)",
5008 c_addr_space_name (as1), c_addr_space_name (as2));
5010 if (!flag_gen_aux_info && (TYPE_QUALS (element_type)))
5011 type = TYPE_MAIN_VARIANT (type);
5012 type_quals = ((constp ? TYPE_QUAL_CONST : 0)
5013 | (restrictp ? TYPE_QUAL_RESTRICT : 0)
5014 | (volatilep ? TYPE_QUAL_VOLATILE : 0)
5015 | ENCODE_QUAL_ADDR_SPACE (address_space));
5017 /* Warn about storage classes that are invalid for certain
5018 kinds of declarations (parameters, typenames, etc.). */
5020 if (funcdef_flag
5021 && (threadp
5022 || storage_class == csc_auto
5023 || storage_class == csc_register
5024 || storage_class == csc_typedef))
5026 if (storage_class == csc_auto)
5027 pedwarn (loc,
5028 (current_scope == file_scope) ? 0 : OPT_pedantic,
5029 "function definition declared %<auto%>");
5030 if (storage_class == csc_register)
5031 error_at (loc, "function definition declared %<register%>");
5032 if (storage_class == csc_typedef)
5033 error_at (loc, "function definition declared %<typedef%>");
5034 if (threadp)
5035 error_at (loc, "function definition declared %<__thread%>");
5036 threadp = false;
5037 if (storage_class == csc_auto
5038 || storage_class == csc_register
5039 || storage_class == csc_typedef)
5040 storage_class = csc_none;
5042 else if (decl_context != NORMAL && (storage_class != csc_none || threadp))
5044 if (decl_context == PARM && storage_class == csc_register)
5046 else
5048 switch (decl_context)
5050 case FIELD:
5051 if (name)
5052 error_at (loc, "storage class specified for structure "
5053 "field %qE", name);
5054 else
5055 error_at (loc, "storage class specified for structure field");
5056 break;
5057 case PARM:
5058 if (name)
5059 error_at (loc, "storage class specified for parameter %qE",
5060 name);
5061 else
5062 error_at (loc, "storage class specified for unnamed parameter");
5063 break;
5064 default:
5065 error_at (loc, "storage class specified for typename");
5066 break;
5068 storage_class = csc_none;
5069 threadp = false;
5072 else if (storage_class == csc_extern
5073 && initialized
5074 && !funcdef_flag)
5076 /* 'extern' with initialization is invalid if not at file scope. */
5077 if (current_scope == file_scope)
5079 /* It is fine to have 'extern const' when compiling at C
5080 and C++ intersection. */
5081 if (!(warn_cxx_compat && constp))
5082 warning_at (loc, 0, "%qE initialized and declared %<extern%>",
5083 name);
5085 else
5086 error_at (loc, "%qE has both %<extern%> and initializer", name);
5088 else if (current_scope == file_scope)
5090 if (storage_class == csc_auto)
5091 error_at (loc, "file-scope declaration of %qE specifies %<auto%>",
5092 name);
5093 if (pedantic && storage_class == csc_register)
5094 pedwarn (input_location, OPT_pedantic,
5095 "file-scope declaration of %qE specifies %<register%>", name);
5097 else
5099 if (storage_class == csc_extern && funcdef_flag)
5100 error_at (loc, "nested function %qE declared %<extern%>", name);
5101 else if (threadp && storage_class == csc_none)
5103 error_at (loc, "function-scope %qE implicitly auto and declared "
5104 "%<__thread%>",
5105 name);
5106 threadp = false;
5110 /* Now figure out the structure of the declarator proper.
5111 Descend through it, creating more complex types, until we reach
5112 the declared identifier (or NULL_TREE, in an absolute declarator).
5113 At each stage we maintain an unqualified version of the type
5114 together with any qualifiers that should be applied to it with
5115 c_build_qualified_type; this way, array types including
5116 multidimensional array types are first built up in unqualified
5117 form and then the qualified form is created with
5118 TYPE_MAIN_VARIANT pointing to the unqualified form. */
5120 while (declarator && declarator->kind != cdk_id)
5122 if (type == error_mark_node)
5124 declarator = declarator->declarator;
5125 continue;
5128 /* Each level of DECLARATOR is either a cdk_array (for ...[..]),
5129 a cdk_pointer (for *...),
5130 a cdk_function (for ...(...)),
5131 a cdk_attrs (for nested attributes),
5132 or a cdk_id (for the name being declared
5133 or the place in an absolute declarator
5134 where the name was omitted).
5135 For the last case, we have just exited the loop.
5137 At this point, TYPE is the type of elements of an array,
5138 or for a function to return, or for a pointer to point to.
5139 After this sequence of ifs, TYPE is the type of the
5140 array or function or pointer, and DECLARATOR has had its
5141 outermost layer removed. */
5143 if (array_ptr_quals != TYPE_UNQUALIFIED
5144 || array_ptr_attrs != NULL_TREE
5145 || array_parm_static)
5147 /* Only the innermost declarator (making a parameter be of
5148 array type which is converted to pointer type)
5149 may have static or type qualifiers. */
5150 error_at (loc, "static or type qualifiers in non-parameter array declarator");
5151 array_ptr_quals = TYPE_UNQUALIFIED;
5152 array_ptr_attrs = NULL_TREE;
5153 array_parm_static = 0;
5156 switch (declarator->kind)
5158 case cdk_attrs:
5160 /* A declarator with embedded attributes. */
5161 tree attrs = declarator->u.attrs;
5162 const struct c_declarator *inner_decl;
5163 int attr_flags = 0;
5164 declarator = declarator->declarator;
5165 inner_decl = declarator;
5166 while (inner_decl->kind == cdk_attrs)
5167 inner_decl = inner_decl->declarator;
5168 if (inner_decl->kind == cdk_id)
5169 attr_flags |= (int) ATTR_FLAG_DECL_NEXT;
5170 else if (inner_decl->kind == cdk_function)
5171 attr_flags |= (int) ATTR_FLAG_FUNCTION_NEXT;
5172 else if (inner_decl->kind == cdk_array)
5173 attr_flags |= (int) ATTR_FLAG_ARRAY_NEXT;
5174 returned_attrs = decl_attributes (&type,
5175 chainon (returned_attrs, attrs),
5176 attr_flags);
5177 break;
5179 case cdk_array:
5181 tree itype = NULL_TREE;
5182 tree size = declarator->u.array.dimen;
5183 /* The index is a signed object `sizetype' bits wide. */
5184 tree index_type = c_common_signed_type (sizetype);
5186 array_ptr_quals = declarator->u.array.quals;
5187 array_ptr_attrs = declarator->u.array.attrs;
5188 array_parm_static = declarator->u.array.static_p;
5189 array_parm_vla_unspec_p = declarator->u.array.vla_unspec_p;
5191 declarator = declarator->declarator;
5193 /* Check for some types that there cannot be arrays of. */
5195 if (VOID_TYPE_P (type))
5197 if (name)
5198 error_at (loc, "declaration of %qE as array of voids", name);
5199 else
5200 error_at (loc, "declaration of type name as array of voids");
5201 type = error_mark_node;
5204 if (TREE_CODE (type) == FUNCTION_TYPE)
5206 if (name)
5207 error_at (loc, "declaration of %qE as array of functions",
5208 name);
5209 else
5210 error_at (loc, "declaration of type name as array of "
5211 "functions");
5212 type = error_mark_node;
5215 if (pedantic && !in_system_header && flexible_array_type_p (type))
5216 pedwarn (loc, OPT_pedantic,
5217 "invalid use of structure with flexible array member");
5219 if (size == error_mark_node)
5220 type = error_mark_node;
5222 if (type == error_mark_node)
5223 continue;
5225 /* If size was specified, set ITYPE to a range-type for
5226 that size. Otherwise, ITYPE remains null. finish_decl
5227 may figure it out from an initial value. */
5229 if (size)
5231 bool size_maybe_const = true;
5232 bool size_int_const = (TREE_CODE (size) == INTEGER_CST
5233 && !TREE_OVERFLOW (size));
5234 bool this_size_varies = false;
5236 /* Strip NON_LVALUE_EXPRs since we aren't using as an
5237 lvalue. */
5238 STRIP_TYPE_NOPS (size);
5240 if (!INTEGRAL_TYPE_P (TREE_TYPE (size)))
5242 if (name)
5243 error_at (loc, "size of array %qE has non-integer type",
5244 name);
5245 else
5246 error_at (loc,
5247 "size of unnamed array has non-integer type");
5248 size = integer_one_node;
5251 size = c_fully_fold (size, false, &size_maybe_const);
5253 if (pedantic && size_maybe_const && integer_zerop (size))
5255 if (name)
5256 pedwarn (loc, OPT_pedantic,
5257 "ISO C forbids zero-size array %qE", name);
5258 else
5259 pedwarn (loc, OPT_pedantic,
5260 "ISO C forbids zero-size array");
5263 if (TREE_CODE (size) == INTEGER_CST && size_maybe_const)
5265 constant_expression_warning (size);
5266 if (tree_int_cst_sgn (size) < 0)
5268 if (name)
5269 error_at (loc, "size of array %qE is negative", name);
5270 else
5271 error_at (loc, "size of unnamed array is negative");
5272 size = integer_one_node;
5274 /* Handle a size folded to an integer constant but
5275 not an integer constant expression. */
5276 if (!size_int_const)
5278 /* If this is a file scope declaration of an
5279 ordinary identifier, this is invalid code;
5280 diagnosing it here and not subsequently
5281 treating the type as variable-length avoids
5282 more confusing diagnostics later. */
5283 if ((decl_context == NORMAL || decl_context == FIELD)
5284 && current_scope == file_scope)
5285 pedwarn (input_location, 0,
5286 "variably modified %qE at file scope",
5287 name);
5288 else
5289 this_size_varies = size_varies = true;
5290 warn_variable_length_array (name, size);
5293 else if ((decl_context == NORMAL || decl_context == FIELD)
5294 && current_scope == file_scope)
5296 error_at (loc, "variably modified %qE at file scope", name);
5297 size = integer_one_node;
5299 else
5301 /* Make sure the array size remains visibly
5302 nonconstant even if it is (eg) a const variable
5303 with known value. */
5304 this_size_varies = size_varies = true;
5305 warn_variable_length_array (name, size);
5308 if (integer_zerop (size) && !this_size_varies)
5310 /* A zero-length array cannot be represented with
5311 an unsigned index type, which is what we'll
5312 get with build_index_type. Create an
5313 open-ended range instead. */
5314 itype = build_range_type (sizetype, size, NULL_TREE);
5316 else
5318 /* Arrange for the SAVE_EXPR on the inside of the
5319 MINUS_EXPR, which allows the -1 to get folded
5320 with the +1 that happens when building TYPE_SIZE. */
5321 if (size_varies)
5322 size = c_variable_size (size);
5323 if (this_size_varies && TREE_CODE (size) == INTEGER_CST)
5324 size = build2 (COMPOUND_EXPR, TREE_TYPE (size),
5325 integer_zero_node, size);
5327 /* Compute the maximum valid index, that is, size
5328 - 1. Do the calculation in index_type, so that
5329 if it is a variable the computations will be
5330 done in the proper mode. */
5331 itype = fold_build2_loc (loc, MINUS_EXPR, index_type,
5332 convert (index_type, size),
5333 convert (index_type,
5334 size_one_node));
5336 /* If that overflowed, the array is too big. ???
5337 While a size of INT_MAX+1 technically shouldn't
5338 cause an overflow (because we subtract 1), the
5339 overflow is recorded during the conversion to
5340 index_type, before the subtraction. Handling
5341 this case seems like an unnecessary
5342 complication. */
5343 if (TREE_CODE (itype) == INTEGER_CST
5344 && TREE_OVERFLOW (itype))
5346 if (name)
5347 error_at (loc, "size of array %qE is too large",
5348 name);
5349 else
5350 error_at (loc, "size of unnamed array is too large");
5351 type = error_mark_node;
5352 continue;
5355 itype = build_index_type (itype);
5357 if (this_size_varies)
5359 if (*expr)
5360 *expr = build2 (COMPOUND_EXPR, TREE_TYPE (size),
5361 *expr, size);
5362 else
5363 *expr = size;
5364 *expr_const_operands &= size_maybe_const;
5367 else if (decl_context == FIELD)
5369 bool flexible_array_member = false;
5370 if (array_parm_vla_unspec_p)
5371 /* Field names can in fact have function prototype
5372 scope so [*] is disallowed here through making
5373 the field variably modified, not through being
5374 something other than a declaration with function
5375 prototype scope. */
5376 size_varies = true;
5377 else
5379 const struct c_declarator *t = declarator;
5380 while (t->kind == cdk_attrs)
5381 t = t->declarator;
5382 flexible_array_member = (t->kind == cdk_id);
5384 if (flexible_array_member
5385 && pedantic && !flag_isoc99 && !in_system_header)
5386 pedwarn (loc, OPT_pedantic,
5387 "ISO C90 does not support flexible array members");
5389 /* ISO C99 Flexible array members are effectively
5390 identical to GCC's zero-length array extension. */
5391 if (flexible_array_member || array_parm_vla_unspec_p)
5392 itype = build_range_type (sizetype, size_zero_node,
5393 NULL_TREE);
5395 else if (decl_context == PARM)
5397 if (array_parm_vla_unspec_p)
5399 itype = build_range_type (sizetype, size_zero_node, NULL_TREE);
5400 size_varies = true;
5403 else if (decl_context == TYPENAME)
5405 if (array_parm_vla_unspec_p)
5407 /* C99 6.7.5.2p4 */
5408 warning (0, "%<[*]%> not in a declaration");
5409 /* We use this to avoid messing up with incomplete
5410 array types of the same type, that would
5411 otherwise be modified below. */
5412 itype = build_range_type (sizetype, size_zero_node,
5413 NULL_TREE);
5414 size_varies = true;
5418 /* Complain about arrays of incomplete types. */
5419 if (!COMPLETE_TYPE_P (type))
5421 error_at (loc, "array type has incomplete element type");
5422 type = error_mark_node;
5424 else
5425 /* When itype is NULL, a shared incomplete array type is
5426 returned for all array of a given type. Elsewhere we
5427 make sure we don't complete that type before copying
5428 it, but here we want to make sure we don't ever
5429 modify the shared type, so we gcc_assert (itype)
5430 below. */
5432 addr_space_t as = DECODE_QUAL_ADDR_SPACE (type_quals);
5433 if (!ADDR_SPACE_GENERIC_P (as) && as != TYPE_ADDR_SPACE (type))
5434 type = build_qualified_type (type,
5435 ENCODE_QUAL_ADDR_SPACE (as));
5437 type = build_array_type (type, itype);
5440 if (type != error_mark_node)
5442 if (size_varies)
5444 /* It is ok to modify type here even if itype is
5445 NULL: if size_varies, we're in a
5446 multi-dimensional array and the inner type has
5447 variable size, so the enclosing shared array type
5448 must too. */
5449 if (size && TREE_CODE (size) == INTEGER_CST)
5450 type
5451 = build_distinct_type_copy (TYPE_MAIN_VARIANT (type));
5452 C_TYPE_VARIABLE_SIZE (type) = 1;
5455 /* The GCC extension for zero-length arrays differs from
5456 ISO flexible array members in that sizeof yields
5457 zero. */
5458 if (size && integer_zerop (size))
5460 gcc_assert (itype);
5461 type = build_distinct_type_copy (TYPE_MAIN_VARIANT (type));
5462 TYPE_SIZE (type) = bitsize_zero_node;
5463 TYPE_SIZE_UNIT (type) = size_zero_node;
5464 SET_TYPE_STRUCTURAL_EQUALITY (type);
5466 if (array_parm_vla_unspec_p)
5468 gcc_assert (itype);
5469 /* The type is complete. C99 6.7.5.2p4 */
5470 type = build_distinct_type_copy (TYPE_MAIN_VARIANT (type));
5471 TYPE_SIZE (type) = bitsize_zero_node;
5472 TYPE_SIZE_UNIT (type) = size_zero_node;
5473 SET_TYPE_STRUCTURAL_EQUALITY (type);
5477 if (decl_context != PARM
5478 && (array_ptr_quals != TYPE_UNQUALIFIED
5479 || array_ptr_attrs != NULL_TREE
5480 || array_parm_static))
5482 error_at (loc, "static or type qualifiers in non-parameter array declarator");
5483 array_ptr_quals = TYPE_UNQUALIFIED;
5484 array_ptr_attrs = NULL_TREE;
5485 array_parm_static = 0;
5487 break;
5489 case cdk_function:
5491 /* Say it's a definition only for the declarator closest
5492 to the identifier, apart possibly from some
5493 attributes. */
5494 bool really_funcdef = false;
5495 tree arg_types;
5496 if (funcdef_flag)
5498 const struct c_declarator *t = declarator->declarator;
5499 while (t->kind == cdk_attrs)
5500 t = t->declarator;
5501 really_funcdef = (t->kind == cdk_id);
5504 /* Declaring a function type. Make sure we have a valid
5505 type for the function to return. */
5506 if (type == error_mark_node)
5507 continue;
5509 size_varies = false;
5511 /* Warn about some types functions can't return. */
5512 if (TREE_CODE (type) == FUNCTION_TYPE)
5514 if (name)
5515 error_at (loc, "%qE declared as function returning a "
5516 "function", name);
5517 else
5518 error_at (loc, "type name declared as function "
5519 "returning a function");
5520 type = integer_type_node;
5522 if (TREE_CODE (type) == ARRAY_TYPE)
5524 if (name)
5525 error_at (loc, "%qE declared as function returning an array",
5526 name);
5527 else
5528 error_at (loc, "type name declared as function returning "
5529 "an array");
5530 type = integer_type_node;
5532 errmsg = targetm.invalid_return_type (type);
5533 if (errmsg)
5535 error (errmsg);
5536 type = integer_type_node;
5539 /* Construct the function type and go to the next
5540 inner layer of declarator. */
5541 arg_info = declarator->u.arg_info;
5542 arg_types = grokparms (arg_info, really_funcdef);
5543 if (really_funcdef)
5544 put_pending_sizes (arg_info->pending_sizes);
5546 /* Type qualifiers before the return type of the function
5547 qualify the return type, not the function type. */
5548 if (type_quals)
5550 /* Type qualifiers on a function return type are
5551 normally permitted by the standard but have no
5552 effect, so give a warning at -Wreturn-type.
5553 Qualifiers on a void return type are banned on
5554 function definitions in ISO C; GCC used to used
5555 them for noreturn functions. */
5556 if (VOID_TYPE_P (type) && really_funcdef)
5557 pedwarn (loc, 0,
5558 "function definition has qualified void return type");
5559 else
5560 warning_at (loc, OPT_Wignored_qualifiers,
5561 "type qualifiers ignored on function return type");
5563 type = c_build_qualified_type (type, type_quals);
5565 type_quals = TYPE_UNQUALIFIED;
5567 type = build_function_type (type, arg_types);
5568 declarator = declarator->declarator;
5570 /* Set the TYPE_CONTEXTs for each tagged type which is local to
5571 the formal parameter list of this FUNCTION_TYPE to point to
5572 the FUNCTION_TYPE node itself. */
5574 c_arg_tag *tag;
5575 unsigned ix;
5577 FOR_EACH_VEC_ELT_REVERSE (c_arg_tag, arg_info->tags, ix, tag)
5578 TYPE_CONTEXT (tag->type) = type;
5580 break;
5582 case cdk_pointer:
5584 /* Merge any constancy or volatility into the target type
5585 for the pointer. */
5587 if (pedantic && TREE_CODE (type) == FUNCTION_TYPE
5588 && type_quals)
5589 pedwarn (loc, OPT_pedantic,
5590 "ISO C forbids qualified function types");
5591 if (type_quals)
5592 type = c_build_qualified_type (type, type_quals);
5593 size_varies = false;
5595 /* When the pointed-to type involves components of variable size,
5596 care must be taken to ensure that the size evaluation code is
5597 emitted early enough to dominate all the possible later uses
5598 and late enough for the variables on which it depends to have
5599 been assigned.
5601 This is expected to happen automatically when the pointed-to
5602 type has a name/declaration of it's own, but special attention
5603 is required if the type is anonymous.
5605 We handle the NORMAL and FIELD contexts here by attaching an
5606 artificial TYPE_DECL to such pointed-to type. This forces the
5607 sizes evaluation at a safe point and ensures it is not deferred
5608 until e.g. within a deeper conditional context.
5610 We expect nothing to be needed here for PARM or TYPENAME.
5611 Pushing a TYPE_DECL at this point for TYPENAME would actually
5612 be incorrect, as we might be in the middle of an expression
5613 with side effects on the pointed-to type size "arguments" prior
5614 to the pointer declaration point and the fake TYPE_DECL in the
5615 enclosing context would force the size evaluation prior to the
5616 side effects. */
5618 if (!TYPE_NAME (type)
5619 && (decl_context == NORMAL || decl_context == FIELD)
5620 && variably_modified_type_p (type, NULL_TREE))
5622 tree decl = build_decl (loc, TYPE_DECL, NULL_TREE, type);
5623 DECL_ARTIFICIAL (decl) = 1;
5624 pushdecl (decl);
5625 finish_decl (decl, loc, NULL_TREE, NULL_TREE, NULL_TREE);
5626 TYPE_NAME (type) = decl;
5629 type = build_pointer_type (type);
5631 /* Process type qualifiers (such as const or volatile)
5632 that were given inside the `*'. */
5633 type_quals = declarator->u.pointer_quals;
5635 declarator = declarator->declarator;
5636 break;
5638 default:
5639 gcc_unreachable ();
5642 *decl_attrs = chainon (returned_attrs, *decl_attrs);
5644 /* Now TYPE has the actual type, apart from any qualifiers in
5645 TYPE_QUALS. */
5647 /* Warn about address space used for things other than static memory or
5648 pointers. */
5649 address_space = DECODE_QUAL_ADDR_SPACE (type_quals);
5650 if (!ADDR_SPACE_GENERIC_P (address_space))
5652 if (decl_context == NORMAL)
5654 switch (storage_class)
5656 case csc_auto:
5657 error ("%qs combined with %<auto%> qualifier for %qE",
5658 c_addr_space_name (address_space), name);
5659 break;
5660 case csc_register:
5661 error ("%qs combined with %<register%> qualifier for %qE",
5662 c_addr_space_name (address_space), name);
5663 break;
5664 case csc_none:
5665 if (current_function_scope)
5667 error ("%qs specified for auto variable %qE",
5668 c_addr_space_name (address_space), name);
5669 break;
5671 break;
5672 case csc_static:
5673 case csc_extern:
5674 case csc_typedef:
5675 break;
5676 default:
5677 gcc_unreachable ();
5680 else if (decl_context == PARM && TREE_CODE (type) != ARRAY_TYPE)
5682 if (name)
5683 error ("%qs specified for parameter %qE",
5684 c_addr_space_name (address_space), name);
5685 else
5686 error ("%qs specified for unnamed parameter",
5687 c_addr_space_name (address_space));
5689 else if (decl_context == FIELD)
5691 if (name)
5692 error ("%qs specified for structure field %qE",
5693 c_addr_space_name (address_space), name);
5694 else
5695 error ("%qs specified for structure field",
5696 c_addr_space_name (address_space));
5700 /* Check the type and width of a bit-field. */
5701 if (bitfield)
5702 check_bitfield_type_and_width (&type, width, name);
5704 /* Did array size calculations overflow? */
5706 if (TREE_CODE (type) == ARRAY_TYPE
5707 && COMPLETE_TYPE_P (type)
5708 && TREE_CODE (TYPE_SIZE_UNIT (type)) == INTEGER_CST
5709 && TREE_OVERFLOW (TYPE_SIZE_UNIT (type)))
5711 if (name)
5712 error_at (loc, "size of array %qE is too large", name);
5713 else
5714 error_at (loc, "size of unnamed array is too large");
5715 /* If we proceed with the array type as it is, we'll eventually
5716 crash in tree_low_cst(). */
5717 type = error_mark_node;
5720 /* If this is declaring a typedef name, return a TYPE_DECL. */
5722 if (storage_class == csc_typedef)
5724 tree decl;
5725 if (pedantic && TREE_CODE (type) == FUNCTION_TYPE
5726 && type_quals)
5727 pedwarn (loc, OPT_pedantic,
5728 "ISO C forbids qualified function types");
5729 if (type_quals)
5730 type = c_build_qualified_type (type, type_quals);
5731 decl = build_decl (declarator->id_loc,
5732 TYPE_DECL, declarator->u.id, type);
5733 if (declspecs->explicit_signed_p)
5734 C_TYPEDEF_EXPLICITLY_SIGNED (decl) = 1;
5735 if (declspecs->inline_p)
5736 pedwarn (loc, 0,"typedef %q+D declared %<inline%>", decl);
5738 if (warn_cxx_compat && declarator->u.id != NULL_TREE)
5740 struct c_binding *b = I_TAG_BINDING (declarator->u.id);
5742 if (b != NULL
5743 && b->decl != NULL_TREE
5744 && (B_IN_CURRENT_SCOPE (b)
5745 || (current_scope == file_scope && B_IN_EXTERNAL_SCOPE (b)))
5746 && TYPE_MAIN_VARIANT (b->decl) != TYPE_MAIN_VARIANT (type))
5748 warning_at (declarator->id_loc, OPT_Wc___compat,
5749 ("using %qD as both a typedef and a tag is "
5750 "invalid in C++"),
5751 decl);
5752 if (b->locus != UNKNOWN_LOCATION)
5753 inform (b->locus, "originally defined here");
5757 return decl;
5760 /* If this is a type name (such as, in a cast or sizeof),
5761 compute the type and return it now. */
5763 if (decl_context == TYPENAME)
5765 /* Note that the grammar rejects storage classes in typenames
5766 and fields. */
5767 gcc_assert (storage_class == csc_none && !threadp
5768 && !declspecs->inline_p);
5769 if (pedantic && TREE_CODE (type) == FUNCTION_TYPE
5770 && type_quals)
5771 pedwarn (loc, OPT_pedantic,
5772 "ISO C forbids const or volatile function types");
5773 if (type_quals)
5774 type = c_build_qualified_type (type, type_quals);
5775 return type;
5778 if (pedantic && decl_context == FIELD
5779 && variably_modified_type_p (type, NULL_TREE))
5781 /* C99 6.7.2.1p8 */
5782 pedwarn (loc, OPT_pedantic, "a member of a structure or union cannot "
5783 "have a variably modified type");
5786 /* Aside from typedefs and type names (handle above),
5787 `void' at top level (not within pointer)
5788 is allowed only in public variables.
5789 We don't complain about parms either, but that is because
5790 a better error message can be made later. */
5792 if (VOID_TYPE_P (type) && decl_context != PARM
5793 && !((decl_context != FIELD && TREE_CODE (type) != FUNCTION_TYPE)
5794 && (storage_class == csc_extern
5795 || (current_scope == file_scope
5796 && !(storage_class == csc_static
5797 || storage_class == csc_register)))))
5799 error_at (loc, "variable or field %qE declared void", name);
5800 type = integer_type_node;
5803 /* Now create the decl, which may be a VAR_DECL, a PARM_DECL
5804 or a FUNCTION_DECL, depending on DECL_CONTEXT and TYPE. */
5807 tree decl;
5809 if (decl_context == PARM)
5811 tree promoted_type;
5813 /* A parameter declared as an array of T is really a pointer to T.
5814 One declared as a function is really a pointer to a function. */
5816 if (TREE_CODE (type) == ARRAY_TYPE)
5818 /* Transfer const-ness of array into that of type pointed to. */
5819 type = TREE_TYPE (type);
5820 if (type_quals)
5821 type = c_build_qualified_type (type, type_quals);
5822 type = build_pointer_type (type);
5823 type_quals = array_ptr_quals;
5824 if (type_quals)
5825 type = c_build_qualified_type (type, type_quals);
5827 /* We don't yet implement attributes in this context. */
5828 if (array_ptr_attrs != NULL_TREE)
5829 warning_at (loc, OPT_Wattributes,
5830 "attributes in parameter array declarator ignored");
5832 size_varies = false;
5834 else if (TREE_CODE (type) == FUNCTION_TYPE)
5836 if (type_quals)
5837 pedwarn (loc, OPT_pedantic,
5838 "ISO C forbids qualified function types");
5839 if (type_quals)
5840 type = c_build_qualified_type (type, type_quals);
5841 type = build_pointer_type (type);
5842 type_quals = TYPE_UNQUALIFIED;
5844 else if (type_quals)
5845 type = c_build_qualified_type (type, type_quals);
5847 decl = build_decl (declarator->id_loc,
5848 PARM_DECL, declarator->u.id, type);
5849 if (size_varies)
5850 C_DECL_VARIABLE_SIZE (decl) = 1;
5852 /* Compute the type actually passed in the parmlist,
5853 for the case where there is no prototype.
5854 (For example, shorts and chars are passed as ints.)
5855 When there is a prototype, this is overridden later. */
5857 if (type == error_mark_node)
5858 promoted_type = type;
5859 else
5860 promoted_type = c_type_promotes_to (type);
5862 DECL_ARG_TYPE (decl) = promoted_type;
5863 if (declspecs->inline_p)
5864 pedwarn (loc, 0, "parameter %q+D declared %<inline%>", decl);
5866 else if (decl_context == FIELD)
5868 /* Note that the grammar rejects storage classes in typenames
5869 and fields. */
5870 gcc_assert (storage_class == csc_none && !threadp
5871 && !declspecs->inline_p);
5873 /* Structure field. It may not be a function. */
5875 if (TREE_CODE (type) == FUNCTION_TYPE)
5877 error_at (loc, "field %qE declared as a function", name);
5878 type = build_pointer_type (type);
5880 else if (TREE_CODE (type) != ERROR_MARK
5881 && !COMPLETE_OR_UNBOUND_ARRAY_TYPE_P (type))
5883 if (name)
5884 error_at (loc, "field %qE has incomplete type", name);
5885 else
5886 error_at (loc, "unnamed field has incomplete type");
5887 type = error_mark_node;
5889 type = c_build_qualified_type (type, type_quals);
5890 decl = build_decl (declarator->id_loc,
5891 FIELD_DECL, declarator->u.id, type);
5892 DECL_NONADDRESSABLE_P (decl) = bitfield;
5893 if (bitfield && !declarator->u.id)
5894 TREE_NO_WARNING (decl) = 1;
5896 if (size_varies)
5897 C_DECL_VARIABLE_SIZE (decl) = 1;
5899 else if (TREE_CODE (type) == FUNCTION_TYPE)
5901 if (storage_class == csc_register || threadp)
5903 error_at (loc, "invalid storage class for function %qE", name);
5905 else if (current_scope != file_scope)
5907 /* Function declaration not at file scope. Storage
5908 classes other than `extern' are not allowed, C99
5909 6.7.1p5, and `extern' makes no difference. However,
5910 GCC allows 'auto', perhaps with 'inline', to support
5911 nested functions. */
5912 if (storage_class == csc_auto)
5913 pedwarn (loc, OPT_pedantic,
5914 "invalid storage class for function %qE", name);
5915 else if (storage_class == csc_static)
5917 error_at (loc, "invalid storage class for function %qE", name);
5918 if (funcdef_flag)
5919 storage_class = declspecs->storage_class = csc_none;
5920 else
5921 return 0;
5925 decl = build_decl (declarator->id_loc,
5926 FUNCTION_DECL, declarator->u.id, type);
5927 decl = build_decl_attribute_variant (decl, decl_attr);
5929 if (pedantic && type_quals && !DECL_IN_SYSTEM_HEADER (decl))
5930 pedwarn (loc, OPT_pedantic,
5931 "ISO C forbids qualified function types");
5933 /* Every function declaration is an external reference
5934 (DECL_EXTERNAL) except for those which are not at file
5935 scope and are explicitly declared "auto". This is
5936 forbidden by standard C (C99 6.7.1p5) and is interpreted by
5937 GCC to signify a forward declaration of a nested function. */
5938 if (storage_class == csc_auto && current_scope != file_scope)
5939 DECL_EXTERNAL (decl) = 0;
5940 /* In C99, a function which is declared 'inline' with 'extern'
5941 is not an external reference (which is confusing). It
5942 means that the later definition of the function must be output
5943 in this file, C99 6.7.4p6. In GNU C89, a function declared
5944 'extern inline' is an external reference. */
5945 else if (declspecs->inline_p && storage_class != csc_static)
5946 DECL_EXTERNAL (decl) = ((storage_class == csc_extern)
5947 == flag_gnu89_inline);
5948 else
5949 DECL_EXTERNAL (decl) = !initialized;
5951 /* Record absence of global scope for `static' or `auto'. */
5952 TREE_PUBLIC (decl)
5953 = !(storage_class == csc_static || storage_class == csc_auto);
5955 /* For a function definition, record the argument information
5956 block where store_parm_decls will look for it. */
5957 if (funcdef_flag)
5958 current_function_arg_info = arg_info;
5960 if (declspecs->default_int_p)
5961 C_FUNCTION_IMPLICIT_INT (decl) = 1;
5963 /* Record presence of `inline', if it is reasonable. */
5964 if (flag_hosted && MAIN_NAME_P (declarator->u.id))
5966 if (declspecs->inline_p)
5967 pedwarn (loc, 0, "cannot inline function %<main%>");
5969 else if (declspecs->inline_p)
5970 /* Record that the function is declared `inline'. */
5971 DECL_DECLARED_INLINE_P (decl) = 1;
5973 else
5975 /* It's a variable. */
5976 /* An uninitialized decl with `extern' is a reference. */
5977 int extern_ref = !initialized && storage_class == csc_extern;
5979 type = c_build_qualified_type (type, type_quals);
5981 /* C99 6.2.2p7: It is invalid (compile-time undefined
5982 behavior) to create an 'extern' declaration for a
5983 variable if there is a global declaration that is
5984 'static' and the global declaration is not visible.
5985 (If the static declaration _is_ currently visible,
5986 the 'extern' declaration is taken to refer to that decl.) */
5987 if (extern_ref && current_scope != file_scope)
5989 tree global_decl = identifier_global_value (declarator->u.id);
5990 tree visible_decl = lookup_name (declarator->u.id);
5992 if (global_decl
5993 && global_decl != visible_decl
5994 && TREE_CODE (global_decl) == VAR_DECL
5995 && !TREE_PUBLIC (global_decl))
5996 error_at (loc, "variable previously declared %<static%> "
5997 "redeclared %<extern%>");
6000 decl = build_decl (declarator->id_loc,
6001 VAR_DECL, declarator->u.id, type);
6002 if (size_varies)
6003 C_DECL_VARIABLE_SIZE (decl) = 1;
6005 if (declspecs->inline_p)
6006 pedwarn (loc, 0, "variable %q+D declared %<inline%>", decl);
6008 /* At file scope, an initialized extern declaration may follow
6009 a static declaration. In that case, DECL_EXTERNAL will be
6010 reset later in start_decl. */
6011 DECL_EXTERNAL (decl) = (storage_class == csc_extern);
6013 /* At file scope, the presence of a `static' or `register' storage
6014 class specifier, or the absence of all storage class specifiers
6015 makes this declaration a definition (perhaps tentative). Also,
6016 the absence of `static' makes it public. */
6017 if (current_scope == file_scope)
6019 TREE_PUBLIC (decl) = storage_class != csc_static;
6020 TREE_STATIC (decl) = !extern_ref;
6022 /* Not at file scope, only `static' makes a static definition. */
6023 else
6025 TREE_STATIC (decl) = (storage_class == csc_static);
6026 TREE_PUBLIC (decl) = extern_ref;
6029 if (threadp)
6030 DECL_TLS_MODEL (decl) = decl_default_tls_model (decl);
6033 if ((storage_class == csc_extern
6034 || (storage_class == csc_none
6035 && TREE_CODE (type) == FUNCTION_TYPE
6036 && !funcdef_flag))
6037 && variably_modified_type_p (type, NULL_TREE))
6039 /* C99 6.7.5.2p2 */
6040 if (TREE_CODE (type) == FUNCTION_TYPE)
6041 error_at (loc, "non-nested function with variably modified type");
6042 else
6043 error_at (loc, "object with variably modified type must have "
6044 "no linkage");
6047 /* Record `register' declaration for warnings on &
6048 and in case doing stupid register allocation. */
6050 if (storage_class == csc_register)
6052 C_DECL_REGISTER (decl) = 1;
6053 DECL_REGISTER (decl) = 1;
6056 /* Record constancy and volatility. */
6057 c_apply_type_quals_to_decl (type_quals, decl);
6059 /* If a type has volatile components, it should be stored in memory.
6060 Otherwise, the fact that those components are volatile
6061 will be ignored, and would even crash the compiler.
6062 Of course, this only makes sense on VAR,PARM, and RESULT decl's. */
6063 if (C_TYPE_FIELDS_VOLATILE (TREE_TYPE (decl))
6064 && (TREE_CODE (decl) == VAR_DECL || TREE_CODE (decl) == PARM_DECL
6065 || TREE_CODE (decl) == RESULT_DECL))
6067 /* It is not an error for a structure with volatile fields to
6068 be declared register, but reset DECL_REGISTER since it
6069 cannot actually go in a register. */
6070 int was_reg = C_DECL_REGISTER (decl);
6071 C_DECL_REGISTER (decl) = 0;
6072 DECL_REGISTER (decl) = 0;
6073 c_mark_addressable (decl);
6074 C_DECL_REGISTER (decl) = was_reg;
6077 /* This is the earliest point at which we might know the assembler
6078 name of a variable. Thus, if it's known before this, die horribly. */
6079 gcc_assert (!DECL_ASSEMBLER_NAME_SET_P (decl));
6081 if (warn_cxx_compat
6082 && TREE_CODE (decl) == VAR_DECL
6083 && TREE_PUBLIC (decl)
6084 && TREE_STATIC (decl)
6085 && (TREE_CODE (TREE_TYPE (decl)) == RECORD_TYPE
6086 || TREE_CODE (TREE_TYPE (decl)) == UNION_TYPE
6087 || TREE_CODE (TREE_TYPE (decl)) == ENUMERAL_TYPE)
6088 && TYPE_NAME (TREE_TYPE (decl)) == NULL_TREE)
6089 warning_at (DECL_SOURCE_LOCATION (decl), OPT_Wc___compat,
6090 ("non-local variable %qD with anonymous type is "
6091 "questionable in C++"),
6092 decl);
6094 return decl;
6098 /* Decode the parameter-list info for a function type or function definition.
6099 The argument is the value returned by `get_parm_info' (or made in c-parse.c
6100 if there is an identifier list instead of a parameter decl list).
6101 These two functions are separate because when a function returns
6102 or receives functions then each is called multiple times but the order
6103 of calls is different. The last call to `grokparms' is always the one
6104 that contains the formal parameter names of a function definition.
6106 Return a list of arg types to use in the FUNCTION_TYPE for this function.
6108 FUNCDEF_FLAG is true for a function definition, false for
6109 a mere declaration. A nonempty identifier-list gets an error message
6110 when FUNCDEF_FLAG is false. */
6112 static tree
6113 grokparms (struct c_arg_info *arg_info, bool funcdef_flag)
6115 tree arg_types = arg_info->types;
6117 if (funcdef_flag && arg_info->had_vla_unspec)
6119 /* A function definition isn't function prototype scope C99 6.2.1p4. */
6120 /* C99 6.7.5.2p4 */
6121 error ("%<[*]%> not allowed in other than function prototype scope");
6124 if (arg_types == 0 && !funcdef_flag && !in_system_header)
6125 warning (OPT_Wstrict_prototypes,
6126 "function declaration isn%'t a prototype");
6128 if (arg_types == error_mark_node)
6129 return 0; /* don't set TYPE_ARG_TYPES in this case */
6131 else if (arg_types && TREE_CODE (TREE_VALUE (arg_types)) == IDENTIFIER_NODE)
6133 if (!funcdef_flag)
6134 pedwarn (input_location, 0, "parameter names (without types) in function declaration");
6136 arg_info->parms = arg_info->types;
6137 arg_info->types = 0;
6138 return 0;
6140 else
6142 tree parm, type, typelt;
6143 unsigned int parmno;
6144 const char *errmsg;
6146 /* If there is a parameter of incomplete type in a definition,
6147 this is an error. In a declaration this is valid, and a
6148 struct or union type may be completed later, before any calls
6149 or definition of the function. In the case where the tag was
6150 first declared within the parameter list, a warning has
6151 already been given. If a parameter has void type, then
6152 however the function cannot be defined or called, so
6153 warn. */
6155 for (parm = arg_info->parms, typelt = arg_types, parmno = 1;
6156 parm;
6157 parm = DECL_CHAIN (parm), typelt = TREE_CHAIN (typelt), parmno++)
6159 type = TREE_VALUE (typelt);
6160 if (type == error_mark_node)
6161 continue;
6163 if (!COMPLETE_TYPE_P (type))
6165 if (funcdef_flag)
6167 if (DECL_NAME (parm))
6168 error_at (input_location,
6169 "parameter %u (%q+D) has incomplete type",
6170 parmno, parm);
6171 else
6172 error_at (DECL_SOURCE_LOCATION (parm),
6173 "parameter %u has incomplete type",
6174 parmno);
6176 TREE_VALUE (typelt) = error_mark_node;
6177 TREE_TYPE (parm) = error_mark_node;
6178 arg_types = NULL_TREE;
6180 else if (VOID_TYPE_P (type))
6182 if (DECL_NAME (parm))
6183 warning_at (input_location, 0,
6184 "parameter %u (%q+D) has void type",
6185 parmno, parm);
6186 else
6187 warning_at (DECL_SOURCE_LOCATION (parm), 0,
6188 "parameter %u has void type",
6189 parmno);
6193 errmsg = targetm.invalid_parameter_type (type);
6194 if (errmsg)
6196 error (errmsg);
6197 TREE_VALUE (typelt) = error_mark_node;
6198 TREE_TYPE (parm) = error_mark_node;
6199 arg_types = NULL_TREE;
6202 if (DECL_NAME (parm) && TREE_USED (parm))
6203 warn_if_shadowing (parm);
6205 return arg_types;
6209 /* Allocate and initialize a c_arg_info structure from the parser's
6210 obstack. */
6212 struct c_arg_info *
6213 build_arg_info (void)
6215 struct c_arg_info *ret = XOBNEW (&parser_obstack, struct c_arg_info);
6216 ret->parms = NULL_TREE;
6217 ret->tags = NULL;
6218 ret->types = NULL_TREE;
6219 ret->others = NULL_TREE;
6220 ret->pending_sizes = NULL;
6221 ret->had_vla_unspec = 0;
6222 return ret;
6225 /* Take apart the current scope and return a c_arg_info structure with
6226 info on a parameter list just parsed.
6228 This structure is later fed to 'grokparms' and 'store_parm_decls'.
6230 ELLIPSIS being true means the argument list ended in '...' so don't
6231 append a sentinel (void_list_node) to the end of the type-list. */
6233 struct c_arg_info *
6234 get_parm_info (bool ellipsis)
6236 struct c_binding *b = current_scope->bindings;
6237 struct c_arg_info *arg_info = build_arg_info ();
6239 tree parms = 0;
6240 VEC(c_arg_tag,gc) *tags = NULL;
6241 tree types = 0;
6242 tree others = 0;
6244 static bool explained_incomplete_types = false;
6245 bool gave_void_only_once_err = false;
6247 arg_info->had_vla_unspec = current_scope->had_vla_unspec;
6249 /* The bindings in this scope must not get put into a block.
6250 We will take care of deleting the binding nodes. */
6251 current_scope->bindings = 0;
6253 /* This function is only called if there was *something* on the
6254 parameter list. */
6255 gcc_assert (b);
6257 /* A parameter list consisting solely of 'void' indicates that the
6258 function takes no arguments. But if the 'void' is qualified
6259 (by 'const' or 'volatile'), or has a storage class specifier
6260 ('register'), then the behavior is undefined; issue an error.
6261 Typedefs for 'void' are OK (see DR#157). */
6262 if (b->prev == 0 /* one binding */
6263 && TREE_CODE (b->decl) == PARM_DECL /* which is a parameter */
6264 && !DECL_NAME (b->decl) /* anonymous */
6265 && VOID_TYPE_P (TREE_TYPE (b->decl))) /* of void type */
6267 if (TREE_THIS_VOLATILE (b->decl)
6268 || TREE_READONLY (b->decl)
6269 || C_DECL_REGISTER (b->decl))
6270 error ("%<void%> as only parameter may not be qualified");
6272 /* There cannot be an ellipsis. */
6273 if (ellipsis)
6274 error ("%<void%> must be the only parameter");
6276 arg_info->types = void_list_node;
6277 return arg_info;
6280 if (!ellipsis)
6281 types = void_list_node;
6283 /* Break up the bindings list into parms, tags, types, and others;
6284 apply sanity checks; purge the name-to-decl bindings. */
6285 while (b)
6287 tree decl = b->decl;
6288 tree type = TREE_TYPE (decl);
6289 c_arg_tag *tag;
6290 const char *keyword;
6292 switch (TREE_CODE (decl))
6294 case PARM_DECL:
6295 if (b->id)
6297 gcc_assert (I_SYMBOL_BINDING (b->id) == b);
6298 I_SYMBOL_BINDING (b->id) = b->shadowed;
6301 /* Check for forward decls that never got their actual decl. */
6302 if (TREE_ASM_WRITTEN (decl))
6303 error ("parameter %q+D has just a forward declaration", decl);
6304 /* Check for (..., void, ...) and issue an error. */
6305 else if (VOID_TYPE_P (type) && !DECL_NAME (decl))
6307 if (!gave_void_only_once_err)
6309 error ("%<void%> must be the only parameter");
6310 gave_void_only_once_err = true;
6313 else
6315 /* Valid parameter, add it to the list. */
6316 DECL_CHAIN (decl) = parms;
6317 parms = decl;
6319 /* Since there is a prototype, args are passed in their
6320 declared types. The back end may override this later. */
6321 DECL_ARG_TYPE (decl) = type;
6322 types = tree_cons (0, type, types);
6324 break;
6326 case ENUMERAL_TYPE: keyword = "enum"; goto tag;
6327 case UNION_TYPE: keyword = "union"; goto tag;
6328 case RECORD_TYPE: keyword = "struct"; goto tag;
6329 tag:
6330 /* Types may not have tag-names, in which case the type
6331 appears in the bindings list with b->id NULL. */
6332 if (b->id)
6334 gcc_assert (I_TAG_BINDING (b->id) == b);
6335 I_TAG_BINDING (b->id) = b->shadowed;
6338 /* Warn about any struct, union or enum tags defined in a
6339 parameter list. The scope of such types is limited to
6340 the parameter list, which is rarely if ever desirable
6341 (it's impossible to call such a function with type-
6342 correct arguments). An anonymous union parm type is
6343 meaningful as a GNU extension, so don't warn for that. */
6344 if (TREE_CODE (decl) != UNION_TYPE || b->id != 0)
6346 if (b->id)
6347 /* The %s will be one of 'struct', 'union', or 'enum'. */
6348 warning (0, "%<%s %E%> declared inside parameter list",
6349 keyword, b->id);
6350 else
6351 /* The %s will be one of 'struct', 'union', or 'enum'. */
6352 warning (0, "anonymous %s declared inside parameter list",
6353 keyword);
6355 if (!explained_incomplete_types)
6357 warning (0, "its scope is only this definition or declaration,"
6358 " which is probably not what you want");
6359 explained_incomplete_types = true;
6363 tag = VEC_safe_push (c_arg_tag, gc, tags, NULL);
6364 tag->id = b->id;
6365 tag->type = decl;
6366 break;
6368 case CONST_DECL:
6369 case TYPE_DECL:
6370 case FUNCTION_DECL:
6371 /* CONST_DECLs appear here when we have an embedded enum,
6372 and TYPE_DECLs appear here when we have an embedded struct
6373 or union. No warnings for this - we already warned about the
6374 type itself. FUNCTION_DECLs appear when there is an implicit
6375 function declaration in the parameter list. */
6377 /* When we reinsert this decl in the function body, we need
6378 to reconstruct whether it was marked as nested. */
6379 gcc_assert (TREE_CODE (decl) == FUNCTION_DECL
6380 ? b->nested
6381 : !b->nested);
6382 DECL_CHAIN (decl) = others;
6383 others = decl;
6384 /* fall through */
6386 case ERROR_MARK:
6387 /* error_mark_node appears here when we have an undeclared
6388 variable. Just throw it away. */
6389 if (b->id)
6391 gcc_assert (I_SYMBOL_BINDING (b->id) == b);
6392 I_SYMBOL_BINDING (b->id) = b->shadowed;
6394 break;
6396 /* Other things that might be encountered. */
6397 case LABEL_DECL:
6398 case VAR_DECL:
6399 default:
6400 gcc_unreachable ();
6403 b = free_binding_and_advance (b);
6406 arg_info->parms = parms;
6407 arg_info->tags = tags;
6408 arg_info->types = types;
6409 arg_info->others = others;
6410 arg_info->pending_sizes = get_pending_sizes ();
6411 return arg_info;
6414 /* Get the struct, enum or union (CODE says which) with tag NAME.
6415 Define the tag as a forward-reference with location LOC if it is
6416 not defined. Return a c_typespec structure for the type
6417 specifier. */
6419 struct c_typespec
6420 parser_xref_tag (location_t loc, enum tree_code code, tree name)
6422 struct c_typespec ret;
6423 tree ref;
6424 location_t refloc;
6426 ret.expr = NULL_TREE;
6427 ret.expr_const_operands = true;
6429 /* If a cross reference is requested, look up the type
6430 already defined for this tag and return it. */
6432 ref = lookup_tag (code, name, 0, &refloc);
6433 /* If this is the right type of tag, return what we found.
6434 (This reference will be shadowed by shadow_tag later if appropriate.)
6435 If this is the wrong type of tag, do not return it. If it was the
6436 wrong type in the same scope, we will have had an error
6437 message already; if in a different scope and declaring
6438 a name, pending_xref_error will give an error message; but if in a
6439 different scope and not declaring a name, this tag should
6440 shadow the previous declaration of a different type of tag, and
6441 this would not work properly if we return the reference found.
6442 (For example, with "struct foo" in an outer scope, "union foo;"
6443 must shadow that tag with a new one of union type.) */
6444 ret.kind = (ref ? ctsk_tagref : ctsk_tagfirstref);
6445 if (ref && TREE_CODE (ref) == code)
6447 if (C_TYPE_DEFINED_IN_STRUCT (ref)
6448 && loc != UNKNOWN_LOCATION
6449 && warn_cxx_compat)
6451 switch (code)
6453 case ENUMERAL_TYPE:
6454 warning_at (loc, OPT_Wc___compat,
6455 ("enum type defined in struct or union "
6456 "is not visible in C++"));
6457 inform (refloc, "enum type defined here");
6458 break;
6459 case RECORD_TYPE:
6460 warning_at (loc, OPT_Wc___compat,
6461 ("struct defined in struct or union "
6462 "is not visible in C++"));
6463 inform (refloc, "struct defined here");
6464 break;
6465 case UNION_TYPE:
6466 warning_at (loc, OPT_Wc___compat,
6467 ("union defined in struct or union "
6468 "is not visible in C++"));
6469 inform (refloc, "union defined here");
6470 break;
6471 default:
6472 gcc_unreachable();
6476 ret.spec = ref;
6477 return ret;
6480 /* If no such tag is yet defined, create a forward-reference node
6481 and record it as the "definition".
6482 When a real declaration of this type is found,
6483 the forward-reference will be altered into a real type. */
6485 ref = make_node (code);
6486 if (code == ENUMERAL_TYPE)
6488 /* Give the type a default layout like unsigned int
6489 to avoid crashing if it does not get defined. */
6490 SET_TYPE_MODE (ref, TYPE_MODE (unsigned_type_node));
6491 TYPE_ALIGN (ref) = TYPE_ALIGN (unsigned_type_node);
6492 TYPE_USER_ALIGN (ref) = 0;
6493 TYPE_UNSIGNED (ref) = 1;
6494 TYPE_PRECISION (ref) = TYPE_PRECISION (unsigned_type_node);
6495 TYPE_MIN_VALUE (ref) = TYPE_MIN_VALUE (unsigned_type_node);
6496 TYPE_MAX_VALUE (ref) = TYPE_MAX_VALUE (unsigned_type_node);
6499 pushtag (loc, name, ref);
6501 ret.spec = ref;
6502 return ret;
6505 /* Get the struct, enum or union (CODE says which) with tag NAME.
6506 Define the tag as a forward-reference if it is not defined.
6507 Return a tree for the type. */
6509 tree
6510 xref_tag (enum tree_code code, tree name)
6512 return parser_xref_tag (input_location, code, name).spec;
6515 /* Make sure that the tag NAME is defined *in the current scope*
6516 at least as a forward reference.
6517 LOC is the location of the struct's definition.
6518 CODE says which kind of tag NAME ought to be.
6520 This stores the current value of the file static STRUCT_PARSE_INFO
6521 in *ENCLOSING_STRUCT_PARSE_INFO, and points STRUCT_PARSE_INFO at a
6522 new c_struct_parse_info structure. The old value of
6523 STRUCT_PARSE_INFO is restored in finish_struct. */
6525 tree
6526 start_struct (location_t loc, enum tree_code code, tree name,
6527 struct c_struct_parse_info **enclosing_struct_parse_info)
6529 /* If there is already a tag defined at this scope
6530 (as a forward reference), just return it. */
6532 tree ref = NULL_TREE;
6533 location_t refloc = UNKNOWN_LOCATION;
6535 if (name != NULL_TREE)
6536 ref = lookup_tag (code, name, 1, &refloc);
6537 if (ref && TREE_CODE (ref) == code)
6539 if (TYPE_SIZE (ref))
6541 if (code == UNION_TYPE)
6542 error_at (loc, "redefinition of %<union %E%>", name);
6543 else
6544 error_at (loc, "redefinition of %<struct %E%>", name);
6545 if (refloc != UNKNOWN_LOCATION)
6546 inform (refloc, "originally defined here");
6547 /* Don't create structures using a name already in use. */
6548 ref = NULL_TREE;
6550 else if (C_TYPE_BEING_DEFINED (ref))
6552 if (code == UNION_TYPE)
6553 error_at (loc, "nested redefinition of %<union %E%>", name);
6554 else
6555 error_at (loc, "nested redefinition of %<struct %E%>", name);
6556 /* Don't bother to report "originally defined here" for a
6557 nested redefinition; the original definition should be
6558 obvious. */
6559 /* Don't create structures that contain themselves. */
6560 ref = NULL_TREE;
6564 /* Otherwise create a forward-reference just so the tag is in scope. */
6566 if (ref == NULL_TREE || TREE_CODE (ref) != code)
6568 ref = make_node (code);
6569 pushtag (loc, name, ref);
6572 C_TYPE_BEING_DEFINED (ref) = 1;
6573 TYPE_PACKED (ref) = flag_pack_struct;
6575 *enclosing_struct_parse_info = struct_parse_info;
6576 struct_parse_info = XNEW (struct c_struct_parse_info);
6577 struct_parse_info->struct_types = VEC_alloc (tree, heap, 0);
6578 struct_parse_info->fields = VEC_alloc (c_binding_ptr, heap, 0);
6579 struct_parse_info->typedefs_seen = VEC_alloc (tree, heap, 0);
6581 /* FIXME: This will issue a warning for a use of a type defined
6582 within a statement expr used within sizeof, et. al. This is not
6583 terribly serious as C++ doesn't permit statement exprs within
6584 sizeof anyhow. */
6585 if (warn_cxx_compat && (in_sizeof || in_typeof || in_alignof))
6586 warning_at (loc, OPT_Wc___compat,
6587 "defining type in %qs expression is invalid in C++",
6588 (in_sizeof
6589 ? "sizeof"
6590 : (in_typeof ? "typeof" : "alignof")));
6592 return ref;
6595 /* Process the specs, declarator and width (NULL if omitted)
6596 of a structure component, returning a FIELD_DECL node.
6597 WIDTH is non-NULL for bit-fields only, and is an INTEGER_CST node.
6598 DECL_ATTRS is as for grokdeclarator.
6600 LOC is the location of the structure component.
6602 This is done during the parsing of the struct declaration.
6603 The FIELD_DECL nodes are chained together and the lot of them
6604 are ultimately passed to `build_struct' to make the RECORD_TYPE node. */
6606 tree
6607 grokfield (location_t loc,
6608 struct c_declarator *declarator, struct c_declspecs *declspecs,
6609 tree width, tree *decl_attrs)
6611 tree value;
6613 if (declarator->kind == cdk_id && declarator->u.id == NULL_TREE
6614 && width == NULL_TREE)
6616 /* This is an unnamed decl.
6618 If we have something of the form "union { list } ;" then this
6619 is the anonymous union extension. Similarly for struct.
6621 If this is something of the form "struct foo;", then
6622 If MS or Plan 9 extensions are enabled, this is handled as
6623 an anonymous struct.
6624 Otherwise this is a forward declaration of a structure tag.
6626 If this is something of the form "foo;" and foo is a TYPE_DECL, then
6627 If foo names a structure or union without a tag, then this
6628 is an anonymous struct (this is permitted by C1X).
6629 If MS or Plan 9 extensions are enabled and foo names a
6630 structure, then again this is an anonymous struct.
6631 Otherwise this is an error.
6633 Oh what a horrid tangled web we weave. I wonder if MS consciously
6634 took this from Plan 9 or if it was an accident of implementation
6635 that took root before someone noticed the bug... */
6637 tree type = declspecs->type;
6638 bool type_ok = (TREE_CODE (type) == RECORD_TYPE
6639 || TREE_CODE (type) == UNION_TYPE);
6640 bool ok = false;
6642 if (type_ok)
6644 if (flag_ms_extensions || flag_plan9_extensions)
6645 ok = true;
6646 else if (TYPE_NAME (TYPE_MAIN_VARIANT (type)) == NULL)
6647 ok = true;
6648 else
6649 ok = false;
6651 if (!ok)
6653 pedwarn (loc, 0, "declaration does not declare anything");
6654 return NULL_TREE;
6656 if (!flag_isoc1x)
6658 if (flag_isoc99)
6659 pedwarn (loc, OPT_pedantic,
6660 "ISO C99 doesn%'t support unnamed structs/unions");
6661 else
6662 pedwarn (loc, OPT_pedantic,
6663 "ISO C90 doesn%'t support unnamed structs/unions");
6667 value = grokdeclarator (declarator, declspecs, FIELD, false,
6668 width ? &width : NULL, decl_attrs, NULL, NULL,
6669 DEPRECATED_NORMAL);
6671 finish_decl (value, loc, NULL_TREE, NULL_TREE, NULL_TREE);
6672 DECL_INITIAL (value) = width;
6674 if (warn_cxx_compat && DECL_NAME (value) != NULL_TREE)
6676 /* If we currently have a binding for this field, set the
6677 in_struct field in the binding, so that we warn about lookups
6678 which find it. */
6679 struct c_binding *b = I_SYMBOL_BINDING (DECL_NAME (value));
6680 if (b != NULL)
6682 /* If the in_struct field is not yet set, push it on a list
6683 to be cleared when this struct is finished. */
6684 if (!b->in_struct)
6686 VEC_safe_push (c_binding_ptr, heap,
6687 struct_parse_info->fields, b);
6688 b->in_struct = 1;
6693 return value;
6696 /* Subroutine of detect_field_duplicates: return whether X and Y,
6697 which are both fields in the same struct, have duplicate field
6698 names. */
6700 static bool
6701 is_duplicate_field (tree x, tree y)
6703 if (DECL_NAME (x) != NULL_TREE && DECL_NAME (x) == DECL_NAME (y))
6704 return true;
6706 /* When using -fplan9-extensions, an anonymous field whose name is a
6707 typedef can duplicate a field name. */
6708 if (flag_plan9_extensions
6709 && (DECL_NAME (x) == NULL_TREE || DECL_NAME (y) == NULL_TREE))
6711 tree xt, xn, yt, yn;
6713 xt = TREE_TYPE (x);
6714 if (DECL_NAME (x) != NULL_TREE)
6715 xn = DECL_NAME (x);
6716 else if ((TREE_CODE (xt) == RECORD_TYPE || TREE_CODE (xt) == UNION_TYPE)
6717 && TYPE_NAME (xt) != NULL_TREE
6718 && TREE_CODE (TYPE_NAME (xt)) == TYPE_DECL)
6719 xn = DECL_NAME (TYPE_NAME (xt));
6720 else
6721 xn = NULL_TREE;
6723 yt = TREE_TYPE (y);
6724 if (DECL_NAME (y) != NULL_TREE)
6725 yn = DECL_NAME (y);
6726 else if ((TREE_CODE (yt) == RECORD_TYPE || TREE_CODE (yt) == UNION_TYPE)
6727 && TYPE_NAME (yt) != NULL_TREE
6728 && TREE_CODE (TYPE_NAME (yt)) == TYPE_DECL)
6729 yn = DECL_NAME (TYPE_NAME (yt));
6730 else
6731 yn = NULL_TREE;
6733 if (xn != NULL_TREE && xn == yn)
6734 return true;
6737 return false;
6740 /* Subroutine of detect_field_duplicates: add the fields of FIELDLIST
6741 to HTAB, giving errors for any duplicates. */
6743 static void
6744 detect_field_duplicates_hash (tree fieldlist, htab_t htab)
6746 tree x, y;
6747 void **slot;
6749 for (x = fieldlist; x ; x = DECL_CHAIN (x))
6750 if ((y = DECL_NAME (x)) != 0)
6752 slot = htab_find_slot (htab, y, INSERT);
6753 if (*slot)
6755 error ("duplicate member %q+D", x);
6756 DECL_NAME (x) = NULL_TREE;
6758 *slot = y;
6760 else if (TREE_CODE (TREE_TYPE (x)) == RECORD_TYPE
6761 || TREE_CODE (TREE_TYPE (x)) == UNION_TYPE)
6763 detect_field_duplicates_hash (TYPE_FIELDS (TREE_TYPE (x)), htab);
6765 /* When using -fplan9-extensions, an anonymous field whose
6766 name is a typedef can duplicate a field name. */
6767 if (flag_plan9_extensions
6768 && TYPE_NAME (TREE_TYPE (x)) != NULL_TREE
6769 && TREE_CODE (TYPE_NAME (TREE_TYPE (x))) == TYPE_DECL)
6771 tree xn = DECL_NAME (TYPE_NAME (TREE_TYPE (x)));
6772 slot = htab_find_slot (htab, xn, INSERT);
6773 if (*slot)
6774 error ("duplicate member %q+D", TYPE_NAME (TREE_TYPE (x)));
6775 *slot = xn;
6780 /* Generate an error for any duplicate field names in FIELDLIST. Munge
6781 the list such that this does not present a problem later. */
6783 static void
6784 detect_field_duplicates (tree fieldlist)
6786 tree x, y;
6787 int timeout = 10;
6789 /* If the struct is the list of instance variables of an Objective-C
6790 class, then we need to add all the instance variables of
6791 superclasses before checking for duplicates (since you can't have
6792 an instance variable in a subclass with the same name as an
6793 instance variable in a superclass). objc_get_interface_ivars()
6794 leaves fieldlist unchanged if we are not in this case, so in that
6795 case nothing changes compared to C.
6797 if (c_dialect_objc ())
6798 fieldlist = objc_get_interface_ivars (fieldlist);
6800 /* First, see if there are more than "a few" fields.
6801 This is trivially true if there are zero or one fields. */
6802 if (!fieldlist)
6803 return;
6804 x = DECL_CHAIN (fieldlist);
6805 if (!x)
6806 return;
6807 do {
6808 timeout--;
6809 if (DECL_NAME (x) == NULL_TREE
6810 && (TREE_CODE (TREE_TYPE (x)) == RECORD_TYPE
6811 || TREE_CODE (TREE_TYPE (x)) == UNION_TYPE))
6812 timeout = 0;
6813 x = DECL_CHAIN (x);
6814 } while (timeout > 0 && x);
6816 /* If there were "few" fields and no anonymous structures or unions,
6817 avoid the overhead of allocating a hash table. Instead just do
6818 the nested traversal thing. */
6819 if (timeout > 0)
6821 for (x = DECL_CHAIN (fieldlist); x; x = DECL_CHAIN (x))
6822 /* When using -fplan9-extensions, we can have duplicates
6823 between typedef names and fields. */
6824 if (DECL_NAME (x)
6825 || (flag_plan9_extensions
6826 && DECL_NAME (x) == NULL_TREE
6827 && (TREE_CODE (TREE_TYPE (x)) == RECORD_TYPE
6828 || TREE_CODE (TREE_TYPE (x)) == UNION_TYPE)
6829 && TYPE_NAME (TREE_TYPE (x)) != NULL_TREE
6830 && TREE_CODE (TYPE_NAME (TREE_TYPE (x))) == TYPE_DECL))
6832 for (y = fieldlist; y != x; y = TREE_CHAIN (y))
6833 if (is_duplicate_field (y, x))
6835 error ("duplicate member %q+D", x);
6836 DECL_NAME (x) = NULL_TREE;
6840 else
6842 htab_t htab = htab_create (37, htab_hash_pointer, htab_eq_pointer, NULL);
6844 detect_field_duplicates_hash (fieldlist, htab);
6845 htab_delete (htab);
6849 /* Finish up struct info used by -Wc++-compat. */
6851 static void
6852 warn_cxx_compat_finish_struct (tree fieldlist)
6854 unsigned int ix;
6855 tree x;
6856 struct c_binding *b;
6858 /* Set the C_TYPE_DEFINED_IN_STRUCT flag for each type defined in
6859 the current struct. We do this now at the end of the struct
6860 because the flag is used to issue visibility warnings, and we
6861 only want to issue those warnings if the type is referenced
6862 outside of the struct declaration. */
6863 FOR_EACH_VEC_ELT (tree, struct_parse_info->struct_types, ix, x)
6864 C_TYPE_DEFINED_IN_STRUCT (x) = 1;
6866 /* The TYPEDEFS_SEEN field of STRUCT_PARSE_INFO is a list of
6867 typedefs used when declaring fields in this struct. If the name
6868 of any of the fields is also a typedef name then the struct would
6869 not parse in C++, because the C++ lookup rules say that the
6870 typedef name would be looked up in the context of the struct, and
6871 would thus be the field rather than the typedef. */
6872 if (!VEC_empty (tree, struct_parse_info->typedefs_seen)
6873 && fieldlist != NULL_TREE)
6875 /* Use a pointer_set using the name of the typedef. We can use
6876 a pointer_set because identifiers are interned. */
6877 struct pointer_set_t *tset = pointer_set_create ();
6879 FOR_EACH_VEC_ELT (tree, struct_parse_info->typedefs_seen, ix, x)
6880 pointer_set_insert (tset, DECL_NAME (x));
6882 for (x = fieldlist; x != NULL_TREE; x = DECL_CHAIN (x))
6884 if (DECL_NAME (x) != NULL_TREE
6885 && pointer_set_contains (tset, DECL_NAME (x)))
6887 warning_at (DECL_SOURCE_LOCATION (x), OPT_Wc___compat,
6888 ("using %qD as both field and typedef name is "
6889 "invalid in C++"),
6891 /* FIXME: It would be nice to report the location where
6892 the typedef name is used. */
6896 pointer_set_destroy (tset);
6899 /* For each field which has a binding and which was not defined in
6900 an enclosing struct, clear the in_struct field. */
6901 FOR_EACH_VEC_ELT (c_binding_ptr, struct_parse_info->fields, ix, b)
6902 b->in_struct = 0;
6905 /* Fill in the fields of a RECORD_TYPE or UNION_TYPE node, T.
6906 LOC is the location of the RECORD_TYPE or UNION_TYPE's definition.
6907 FIELDLIST is a chain of FIELD_DECL nodes for the fields.
6908 ATTRIBUTES are attributes to be applied to the structure.
6910 ENCLOSING_STRUCT_PARSE_INFO is the value of STRUCT_PARSE_INFO when
6911 the struct was started. */
6913 tree
6914 finish_struct (location_t loc, tree t, tree fieldlist, tree attributes,
6915 struct c_struct_parse_info *enclosing_struct_parse_info)
6917 tree x;
6918 bool toplevel = file_scope == current_scope;
6919 int saw_named_field;
6921 /* If this type was previously laid out as a forward reference,
6922 make sure we lay it out again. */
6924 TYPE_SIZE (t) = 0;
6926 decl_attributes (&t, attributes, (int) ATTR_FLAG_TYPE_IN_PLACE);
6928 if (pedantic)
6930 for (x = fieldlist; x; x = DECL_CHAIN (x))
6932 if (DECL_NAME (x) != 0)
6933 break;
6934 if (flag_isoc1x
6935 && (TREE_CODE (TREE_TYPE (x)) == RECORD_TYPE
6936 || TREE_CODE (TREE_TYPE (x)) == UNION_TYPE))
6937 break;
6940 if (x == 0)
6942 if (TREE_CODE (t) == UNION_TYPE)
6944 if (fieldlist)
6945 pedwarn (loc, OPT_pedantic, "union has no named members");
6946 else
6947 pedwarn (loc, OPT_pedantic, "union has no members");
6949 else
6951 if (fieldlist)
6952 pedwarn (loc, OPT_pedantic, "struct has no named members");
6953 else
6954 pedwarn (loc, OPT_pedantic, "struct has no members");
6959 /* Install struct as DECL_CONTEXT of each field decl.
6960 Also process specified field sizes, found in the DECL_INITIAL,
6961 storing 0 there after the type has been changed to precision equal
6962 to its width, rather than the precision of the specified standard
6963 type. (Correct layout requires the original type to have been preserved
6964 until now.) */
6966 saw_named_field = 0;
6967 for (x = fieldlist; x; x = DECL_CHAIN (x))
6969 if (TREE_TYPE (x) == error_mark_node)
6970 continue;
6972 DECL_CONTEXT (x) = t;
6974 /* If any field is const, the structure type is pseudo-const. */
6975 if (TREE_READONLY (x))
6976 C_TYPE_FIELDS_READONLY (t) = 1;
6977 else
6979 /* A field that is pseudo-const makes the structure likewise. */
6980 tree t1 = strip_array_types (TREE_TYPE (x));
6981 if ((TREE_CODE (t1) == RECORD_TYPE || TREE_CODE (t1) == UNION_TYPE)
6982 && C_TYPE_FIELDS_READONLY (t1))
6983 C_TYPE_FIELDS_READONLY (t) = 1;
6986 /* Any field that is volatile means variables of this type must be
6987 treated in some ways as volatile. */
6988 if (TREE_THIS_VOLATILE (x))
6989 C_TYPE_FIELDS_VOLATILE (t) = 1;
6991 /* Any field of nominal variable size implies structure is too. */
6992 if (C_DECL_VARIABLE_SIZE (x))
6993 C_TYPE_VARIABLE_SIZE (t) = 1;
6995 if (DECL_INITIAL (x))
6997 unsigned HOST_WIDE_INT width = tree_low_cst (DECL_INITIAL (x), 1);
6998 DECL_SIZE (x) = bitsize_int (width);
6999 DECL_BIT_FIELD (x) = 1;
7000 SET_DECL_C_BIT_FIELD (x);
7003 if (TYPE_PACKED (t)
7004 && (DECL_BIT_FIELD (x)
7005 || TYPE_ALIGN (TREE_TYPE (x)) > BITS_PER_UNIT))
7006 DECL_PACKED (x) = 1;
7008 /* Detect flexible array member in an invalid context. */
7009 if (TREE_CODE (TREE_TYPE (x)) == ARRAY_TYPE
7010 && TYPE_SIZE (TREE_TYPE (x)) == NULL_TREE
7011 && TYPE_DOMAIN (TREE_TYPE (x)) != NULL_TREE
7012 && TYPE_MAX_VALUE (TYPE_DOMAIN (TREE_TYPE (x))) == NULL_TREE)
7014 if (TREE_CODE (t) == UNION_TYPE)
7016 error_at (DECL_SOURCE_LOCATION (x),
7017 "flexible array member in union");
7018 TREE_TYPE (x) = error_mark_node;
7020 else if (DECL_CHAIN (x) != NULL_TREE)
7022 error_at (DECL_SOURCE_LOCATION (x),
7023 "flexible array member not at end of struct");
7024 TREE_TYPE (x) = error_mark_node;
7026 else if (!saw_named_field)
7028 error_at (DECL_SOURCE_LOCATION (x),
7029 "flexible array member in otherwise empty struct");
7030 TREE_TYPE (x) = error_mark_node;
7034 if (pedantic && TREE_CODE (t) == RECORD_TYPE
7035 && flexible_array_type_p (TREE_TYPE (x)))
7036 pedwarn (DECL_SOURCE_LOCATION (x), OPT_pedantic,
7037 "invalid use of structure with flexible array member");
7039 if (DECL_NAME (x)
7040 || TREE_CODE (TREE_TYPE (x)) == RECORD_TYPE
7041 || TREE_CODE (TREE_TYPE (x)) == UNION_TYPE)
7042 saw_named_field = 1;
7045 detect_field_duplicates (fieldlist);
7047 /* Now we have the nearly final fieldlist. Record it,
7048 then lay out the structure or union (including the fields). */
7050 TYPE_FIELDS (t) = fieldlist;
7052 layout_type (t);
7054 /* Give bit-fields their proper types. */
7056 tree *fieldlistp = &fieldlist;
7057 while (*fieldlistp)
7058 if (TREE_CODE (*fieldlistp) == FIELD_DECL && DECL_INITIAL (*fieldlistp)
7059 && TREE_TYPE (*fieldlistp) != error_mark_node)
7061 unsigned HOST_WIDE_INT width
7062 = tree_low_cst (DECL_INITIAL (*fieldlistp), 1);
7063 tree type = TREE_TYPE (*fieldlistp);
7064 if (width != TYPE_PRECISION (type))
7066 TREE_TYPE (*fieldlistp)
7067 = c_build_bitfield_integer_type (width, TYPE_UNSIGNED (type));
7068 DECL_MODE (*fieldlistp) = TYPE_MODE (TREE_TYPE (*fieldlistp));
7070 DECL_INITIAL (*fieldlistp) = 0;
7072 else
7073 fieldlistp = &DECL_CHAIN (*fieldlistp);
7076 /* Now we have the truly final field list.
7077 Store it in this type and in the variants. */
7079 TYPE_FIELDS (t) = fieldlist;
7081 /* If there are lots of fields, sort so we can look through them fast.
7082 We arbitrarily consider 16 or more elts to be "a lot". */
7085 int len = 0;
7087 for (x = fieldlist; x; x = DECL_CHAIN (x))
7089 if (len > 15 || DECL_NAME (x) == NULL)
7090 break;
7091 len += 1;
7094 if (len > 15)
7096 tree *field_array;
7097 struct lang_type *space;
7098 struct sorted_fields_type *space2;
7100 len += list_length (x);
7102 /* Use the same allocation policy here that make_node uses, to
7103 ensure that this lives as long as the rest of the struct decl.
7104 All decls in an inline function need to be saved. */
7106 space = ggc_alloc_cleared_lang_type (sizeof (struct lang_type));
7107 space2 = ggc_alloc_sorted_fields_type
7108 (sizeof (struct sorted_fields_type) + len * sizeof (tree));
7110 len = 0;
7111 space->s = space2;
7112 field_array = &space2->elts[0];
7113 for (x = fieldlist; x; x = DECL_CHAIN (x))
7115 field_array[len++] = x;
7117 /* If there is anonymous struct or union, break out of the loop. */
7118 if (DECL_NAME (x) == NULL)
7119 break;
7121 /* Found no anonymous struct/union. Add the TYPE_LANG_SPECIFIC. */
7122 if (x == NULL)
7124 TYPE_LANG_SPECIFIC (t) = space;
7125 TYPE_LANG_SPECIFIC (t)->s->len = len;
7126 field_array = TYPE_LANG_SPECIFIC (t)->s->elts;
7127 qsort (field_array, len, sizeof (tree), field_decl_cmp);
7132 for (x = TYPE_MAIN_VARIANT (t); x; x = TYPE_NEXT_VARIANT (x))
7134 TYPE_FIELDS (x) = TYPE_FIELDS (t);
7135 TYPE_LANG_SPECIFIC (x) = TYPE_LANG_SPECIFIC (t);
7136 C_TYPE_FIELDS_READONLY (x) = C_TYPE_FIELDS_READONLY (t);
7137 C_TYPE_FIELDS_VOLATILE (x) = C_TYPE_FIELDS_VOLATILE (t);
7138 C_TYPE_VARIABLE_SIZE (x) = C_TYPE_VARIABLE_SIZE (t);
7141 /* If this was supposed to be a transparent union, but we can't
7142 make it one, warn and turn off the flag. */
7143 if (TREE_CODE (t) == UNION_TYPE
7144 && TYPE_TRANSPARENT_AGGR (t)
7145 && (!TYPE_FIELDS (t) || TYPE_MODE (t) != DECL_MODE (TYPE_FIELDS (t))))
7147 TYPE_TRANSPARENT_AGGR (t) = 0;
7148 warning_at (loc, 0, "union cannot be made transparent");
7151 /* If this structure or union completes the type of any previous
7152 variable declaration, lay it out and output its rtl. */
7153 for (x = C_TYPE_INCOMPLETE_VARS (TYPE_MAIN_VARIANT (t));
7155 x = TREE_CHAIN (x))
7157 tree decl = TREE_VALUE (x);
7158 if (TREE_CODE (TREE_TYPE (decl)) == ARRAY_TYPE)
7159 layout_array_type (TREE_TYPE (decl));
7160 if (TREE_CODE (decl) != TYPE_DECL)
7162 layout_decl (decl, 0);
7163 if (c_dialect_objc ())
7164 objc_check_decl (decl);
7165 rest_of_decl_compilation (decl, toplevel, 0);
7166 if (!toplevel)
7167 expand_decl (decl);
7170 C_TYPE_INCOMPLETE_VARS (TYPE_MAIN_VARIANT (t)) = 0;
7172 /* Update type location to the one of the definition, instead of e.g.
7173 a forward declaration. */
7174 if (TYPE_STUB_DECL (t))
7175 DECL_SOURCE_LOCATION (TYPE_STUB_DECL (t)) = loc;
7177 /* Finish debugging output for this type. */
7178 rest_of_type_compilation (t, toplevel);
7180 /* If we're inside a function proper, i.e. not file-scope and not still
7181 parsing parameters, then arrange for the size of a variable sized type
7182 to be bound now. */
7183 if (cur_stmt_list && variably_modified_type_p (t, NULL_TREE))
7184 add_stmt (build_stmt (loc,
7185 DECL_EXPR, build_decl (loc, TYPE_DECL, NULL, t)));
7187 if (warn_cxx_compat)
7188 warn_cxx_compat_finish_struct (fieldlist);
7190 VEC_free (tree, heap, struct_parse_info->struct_types);
7191 VEC_free (c_binding_ptr, heap, struct_parse_info->fields);
7192 VEC_free (tree, heap, struct_parse_info->typedefs_seen);
7193 XDELETE (struct_parse_info);
7195 struct_parse_info = enclosing_struct_parse_info;
7197 /* If this struct is defined inside a struct, add it to
7198 struct_types. */
7199 if (warn_cxx_compat
7200 && struct_parse_info != NULL
7201 && !in_sizeof && !in_typeof && !in_alignof)
7202 VEC_safe_push (tree, heap, struct_parse_info->struct_types, t);
7204 return t;
7207 /* Lay out the type T, and its element type, and so on. */
7209 static void
7210 layout_array_type (tree t)
7212 if (TREE_CODE (TREE_TYPE (t)) == ARRAY_TYPE)
7213 layout_array_type (TREE_TYPE (t));
7214 layout_type (t);
7217 /* Begin compiling the definition of an enumeration type.
7218 NAME is its name (or null if anonymous).
7219 LOC is the enum's location.
7220 Returns the type object, as yet incomplete.
7221 Also records info about it so that build_enumerator
7222 may be used to declare the individual values as they are read. */
7224 tree
7225 start_enum (location_t loc, struct c_enum_contents *the_enum, tree name)
7227 tree enumtype = NULL_TREE;
7228 location_t enumloc = UNKNOWN_LOCATION;
7230 /* If this is the real definition for a previous forward reference,
7231 fill in the contents in the same object that used to be the
7232 forward reference. */
7234 if (name != NULL_TREE)
7235 enumtype = lookup_tag (ENUMERAL_TYPE, name, 1, &enumloc);
7237 if (enumtype == 0 || TREE_CODE (enumtype) != ENUMERAL_TYPE)
7239 enumtype = make_node (ENUMERAL_TYPE);
7240 pushtag (loc, name, enumtype);
7243 if (C_TYPE_BEING_DEFINED (enumtype))
7244 error_at (loc, "nested redefinition of %<enum %E%>", name);
7246 C_TYPE_BEING_DEFINED (enumtype) = 1;
7248 if (TYPE_VALUES (enumtype) != 0)
7250 /* This enum is a named one that has been declared already. */
7251 error_at (loc, "redeclaration of %<enum %E%>", name);
7252 if (enumloc != UNKNOWN_LOCATION)
7253 inform (enumloc, "originally defined here");
7255 /* Completely replace its old definition.
7256 The old enumerators remain defined, however. */
7257 TYPE_VALUES (enumtype) = 0;
7260 the_enum->enum_next_value = integer_zero_node;
7261 the_enum->enum_overflow = 0;
7263 if (flag_short_enums)
7264 TYPE_PACKED (enumtype) = 1;
7266 /* FIXME: This will issue a warning for a use of a type defined
7267 within sizeof in a statement expr. This is not terribly serious
7268 as C++ doesn't permit statement exprs within sizeof anyhow. */
7269 if (warn_cxx_compat && (in_sizeof || in_typeof || in_alignof))
7270 warning_at (loc, OPT_Wc___compat,
7271 "defining type in %qs expression is invalid in C++",
7272 (in_sizeof
7273 ? "sizeof"
7274 : (in_typeof ? "typeof" : "alignof")));
7276 return enumtype;
7279 /* After processing and defining all the values of an enumeration type,
7280 install their decls in the enumeration type and finish it off.
7281 ENUMTYPE is the type object, VALUES a list of decl-value pairs,
7282 and ATTRIBUTES are the specified attributes.
7283 Returns ENUMTYPE. */
7285 tree
7286 finish_enum (tree enumtype, tree values, tree attributes)
7288 tree pair, tem;
7289 tree minnode = 0, maxnode = 0;
7290 int precision, unsign;
7291 bool toplevel = (file_scope == current_scope);
7292 struct lang_type *lt;
7294 decl_attributes (&enumtype, attributes, (int) ATTR_FLAG_TYPE_IN_PLACE);
7296 /* Calculate the maximum value of any enumerator in this type. */
7298 if (values == error_mark_node)
7299 minnode = maxnode = integer_zero_node;
7300 else
7302 minnode = maxnode = TREE_VALUE (values);
7303 for (pair = TREE_CHAIN (values); pair; pair = TREE_CHAIN (pair))
7305 tree value = TREE_VALUE (pair);
7306 if (tree_int_cst_lt (maxnode, value))
7307 maxnode = value;
7308 if (tree_int_cst_lt (value, minnode))
7309 minnode = value;
7313 /* Construct the final type of this enumeration. It is the same
7314 as one of the integral types - the narrowest one that fits, except
7315 that normally we only go as narrow as int - and signed iff any of
7316 the values are negative. */
7317 unsign = (tree_int_cst_sgn (minnode) >= 0);
7318 precision = MAX (tree_int_cst_min_precision (minnode, unsign),
7319 tree_int_cst_min_precision (maxnode, unsign));
7321 if (TYPE_PACKED (enumtype) || precision > TYPE_PRECISION (integer_type_node))
7323 tem = c_common_type_for_size (precision, unsign);
7324 if (tem == NULL)
7326 warning (0, "enumeration values exceed range of largest integer");
7327 tem = long_long_integer_type_node;
7330 else
7331 tem = unsign ? unsigned_type_node : integer_type_node;
7333 TYPE_MIN_VALUE (enumtype) = TYPE_MIN_VALUE (tem);
7334 TYPE_MAX_VALUE (enumtype) = TYPE_MAX_VALUE (tem);
7335 TYPE_UNSIGNED (enumtype) = TYPE_UNSIGNED (tem);
7336 TYPE_SIZE (enumtype) = 0;
7338 /* If the precision of the type was specific with an attribute and it
7339 was too small, give an error. Otherwise, use it. */
7340 if (TYPE_PRECISION (enumtype))
7342 if (precision > TYPE_PRECISION (enumtype))
7343 error ("specified mode too small for enumeral values");
7345 else
7346 TYPE_PRECISION (enumtype) = TYPE_PRECISION (tem);
7348 layout_type (enumtype);
7350 if (values != error_mark_node)
7352 /* Change the type of the enumerators to be the enum type. We
7353 need to do this irrespective of the size of the enum, for
7354 proper type checking. Replace the DECL_INITIALs of the
7355 enumerators, and the value slots of the list, with copies
7356 that have the enum type; they cannot be modified in place
7357 because they may be shared (e.g. integer_zero_node) Finally,
7358 change the purpose slots to point to the names of the decls. */
7359 for (pair = values; pair; pair = TREE_CHAIN (pair))
7361 tree enu = TREE_PURPOSE (pair);
7362 tree ini = DECL_INITIAL (enu);
7364 TREE_TYPE (enu) = enumtype;
7366 /* The ISO C Standard mandates enumerators to have type int,
7367 even though the underlying type of an enum type is
7368 unspecified. However, GCC allows enumerators of any
7369 integer type as an extensions. build_enumerator()
7370 converts any enumerators that fit in an int to type int,
7371 to avoid promotions to unsigned types when comparing
7372 integers with enumerators that fit in the int range.
7373 When -pedantic is given, build_enumerator() would have
7374 already warned about those that don't fit. Here we
7375 convert the rest to the enumerator type. */
7376 if (TREE_TYPE (ini) != integer_type_node)
7377 ini = convert (enumtype, ini);
7379 DECL_INITIAL (enu) = ini;
7380 TREE_PURPOSE (pair) = DECL_NAME (enu);
7381 TREE_VALUE (pair) = ini;
7384 TYPE_VALUES (enumtype) = values;
7387 /* Record the min/max values so that we can warn about bit-field
7388 enumerations that are too small for the values. */
7389 lt = ggc_alloc_cleared_lang_type (sizeof (struct lang_type));
7390 lt->enum_min = minnode;
7391 lt->enum_max = maxnode;
7392 TYPE_LANG_SPECIFIC (enumtype) = lt;
7394 /* Fix up all variant types of this enum type. */
7395 for (tem = TYPE_MAIN_VARIANT (enumtype); tem; tem = TYPE_NEXT_VARIANT (tem))
7397 if (tem == enumtype)
7398 continue;
7399 TYPE_VALUES (tem) = TYPE_VALUES (enumtype);
7400 TYPE_MIN_VALUE (tem) = TYPE_MIN_VALUE (enumtype);
7401 TYPE_MAX_VALUE (tem) = TYPE_MAX_VALUE (enumtype);
7402 TYPE_SIZE (tem) = TYPE_SIZE (enumtype);
7403 TYPE_SIZE_UNIT (tem) = TYPE_SIZE_UNIT (enumtype);
7404 SET_TYPE_MODE (tem, TYPE_MODE (enumtype));
7405 TYPE_PRECISION (tem) = TYPE_PRECISION (enumtype);
7406 TYPE_ALIGN (tem) = TYPE_ALIGN (enumtype);
7407 TYPE_USER_ALIGN (tem) = TYPE_USER_ALIGN (enumtype);
7408 TYPE_UNSIGNED (tem) = TYPE_UNSIGNED (enumtype);
7409 TYPE_LANG_SPECIFIC (tem) = TYPE_LANG_SPECIFIC (enumtype);
7412 /* Finish debugging output for this type. */
7413 rest_of_type_compilation (enumtype, toplevel);
7415 /* If this enum is defined inside a struct, add it to
7416 struct_types. */
7417 if (warn_cxx_compat
7418 && struct_parse_info != NULL
7419 && !in_sizeof && !in_typeof && !in_alignof)
7420 VEC_safe_push (tree, heap, struct_parse_info->struct_types, enumtype);
7422 return enumtype;
7425 /* Build and install a CONST_DECL for one value of the
7426 current enumeration type (one that was begun with start_enum).
7427 DECL_LOC is the location of the enumerator.
7428 LOC is the location of the '=' operator if any, DECL_LOC otherwise.
7429 Return a tree-list containing the CONST_DECL and its value.
7430 Assignment of sequential values by default is handled here. */
7432 tree
7433 build_enumerator (location_t decl_loc, location_t loc,
7434 struct c_enum_contents *the_enum, tree name, tree value)
7436 tree decl, type;
7438 /* Validate and default VALUE. */
7440 if (value != 0)
7442 /* Don't issue more errors for error_mark_node (i.e. an
7443 undeclared identifier) - just ignore the value expression. */
7444 if (value == error_mark_node)
7445 value = 0;
7446 else if (!INTEGRAL_TYPE_P (TREE_TYPE (value)))
7448 error_at (loc, "enumerator value for %qE is not an integer constant",
7449 name);
7450 value = 0;
7452 else
7454 if (TREE_CODE (value) != INTEGER_CST)
7456 value = c_fully_fold (value, false, NULL);
7457 if (TREE_CODE (value) == INTEGER_CST)
7458 pedwarn (loc, OPT_pedantic,
7459 "enumerator value for %qE is not an integer "
7460 "constant expression", name);
7462 if (TREE_CODE (value) != INTEGER_CST)
7464 error ("enumerator value for %qE is not an integer constant",
7465 name);
7466 value = 0;
7468 else
7470 value = default_conversion (value);
7471 constant_expression_warning (value);
7476 /* Default based on previous value. */
7477 /* It should no longer be possible to have NON_LVALUE_EXPR
7478 in the default. */
7479 if (value == 0)
7481 value = the_enum->enum_next_value;
7482 if (the_enum->enum_overflow)
7483 error_at (loc, "overflow in enumeration values");
7485 /* Even though the underlying type of an enum is unspecified, the
7486 type of enumeration constants is explicitly defined as int
7487 (6.4.4.3/2 in the C99 Standard). GCC allows any integer type as
7488 an extension. */
7489 else if (!int_fits_type_p (value, integer_type_node))
7490 pedwarn (loc, OPT_pedantic,
7491 "ISO C restricts enumerator values to range of %<int%>");
7493 /* The ISO C Standard mandates enumerators to have type int, even
7494 though the underlying type of an enum type is unspecified.
7495 However, GCC allows enumerators of any integer type as an
7496 extensions. Here we convert any enumerators that fit in an int
7497 to type int, to avoid promotions to unsigned types when comparing
7498 integers with enumerators that fit in the int range. When
7499 -pedantic is given, we would have already warned about those that
7500 don't fit. We have to do this here rather than in finish_enum
7501 because this value may be used to define more enumerators. */
7502 if (int_fits_type_p (value, integer_type_node))
7503 value = convert (integer_type_node, value);
7505 /* Set basis for default for next value. */
7506 the_enum->enum_next_value
7507 = build_binary_op (EXPR_LOC_OR_HERE (value),
7508 PLUS_EXPR, value, integer_one_node, 0);
7509 the_enum->enum_overflow = tree_int_cst_lt (the_enum->enum_next_value, value);
7511 /* Now create a declaration for the enum value name. */
7513 type = TREE_TYPE (value);
7514 type = c_common_type_for_size (MAX (TYPE_PRECISION (type),
7515 TYPE_PRECISION (integer_type_node)),
7516 (TYPE_PRECISION (type)
7517 >= TYPE_PRECISION (integer_type_node)
7518 && TYPE_UNSIGNED (type)));
7520 decl = build_decl (decl_loc, CONST_DECL, name, type);
7521 DECL_INITIAL (decl) = convert (type, value);
7522 pushdecl (decl);
7524 return tree_cons (decl, value, NULL_TREE);
7528 /* Create the FUNCTION_DECL for a function definition.
7529 DECLSPECS, DECLARATOR and ATTRIBUTES are the parts of
7530 the declaration; they describe the function's name and the type it returns,
7531 but twisted together in a fashion that parallels the syntax of C.
7533 This function creates a binding context for the function body
7534 as well as setting up the FUNCTION_DECL in current_function_decl.
7536 Returns 1 on success. If the DECLARATOR is not suitable for a function
7537 (it defines a datum instead), we return 0, which tells
7538 yyparse to report a parse error. */
7541 start_function (struct c_declspecs *declspecs, struct c_declarator *declarator,
7542 tree attributes)
7544 tree decl1, old_decl;
7545 tree restype, resdecl;
7546 location_t loc;
7548 current_function_returns_value = 0; /* Assume, until we see it does. */
7549 current_function_returns_null = 0;
7550 current_function_returns_abnormally = 0;
7551 warn_about_return_type = 0;
7552 c_switch_stack = NULL;
7554 /* Indicate no valid break/continue context by setting these variables
7555 to some non-null, non-label value. We'll notice and emit the proper
7556 error message in c_finish_bc_stmt. */
7557 c_break_label = c_cont_label = size_zero_node;
7559 decl1 = grokdeclarator (declarator, declspecs, FUNCDEF, true, NULL,
7560 &attributes, NULL, NULL, DEPRECATED_NORMAL);
7562 /* If the declarator is not suitable for a function definition,
7563 cause a syntax error. */
7564 if (decl1 == 0)
7565 return 0;
7567 loc = DECL_SOURCE_LOCATION (decl1);
7569 decl_attributes (&decl1, attributes, 0);
7571 if (DECL_DECLARED_INLINE_P (decl1)
7572 && DECL_UNINLINABLE (decl1)
7573 && lookup_attribute ("noinline", DECL_ATTRIBUTES (decl1)))
7574 warning_at (loc, OPT_Wattributes,
7575 "inline function %qD given attribute noinline",
7576 decl1);
7578 /* Handle gnu_inline attribute. */
7579 if (declspecs->inline_p
7580 && !flag_gnu89_inline
7581 && TREE_CODE (decl1) == FUNCTION_DECL
7582 && (lookup_attribute ("gnu_inline", DECL_ATTRIBUTES (decl1))
7583 || current_function_decl))
7585 if (declspecs->storage_class != csc_static)
7586 DECL_EXTERNAL (decl1) = !DECL_EXTERNAL (decl1);
7589 announce_function (decl1);
7591 if (!COMPLETE_OR_VOID_TYPE_P (TREE_TYPE (TREE_TYPE (decl1))))
7593 error_at (loc, "return type is an incomplete type");
7594 /* Make it return void instead. */
7595 TREE_TYPE (decl1)
7596 = build_function_type (void_type_node,
7597 TYPE_ARG_TYPES (TREE_TYPE (decl1)));
7600 if (warn_about_return_type)
7601 pedwarn_c99 (loc, flag_isoc99 ? 0
7602 : (warn_return_type ? OPT_Wreturn_type : OPT_Wimplicit_int),
7603 "return type defaults to %<int%>");
7605 /* Make the init_value nonzero so pushdecl knows this is not tentative.
7606 error_mark_node is replaced below (in pop_scope) with the BLOCK. */
7607 DECL_INITIAL (decl1) = error_mark_node;
7609 /* A nested function is not global. */
7610 if (current_function_decl != 0)
7611 TREE_PUBLIC (decl1) = 0;
7613 /* If this definition isn't a prototype and we had a prototype declaration
7614 before, copy the arg type info from that prototype. */
7615 old_decl = lookup_name_in_scope (DECL_NAME (decl1), current_scope);
7616 if (old_decl && TREE_CODE (old_decl) != FUNCTION_DECL)
7617 old_decl = 0;
7618 current_function_prototype_locus = UNKNOWN_LOCATION;
7619 current_function_prototype_built_in = false;
7620 current_function_prototype_arg_types = NULL_TREE;
7621 if (TYPE_ARG_TYPES (TREE_TYPE (decl1)) == 0)
7623 if (old_decl != 0 && TREE_CODE (TREE_TYPE (old_decl)) == FUNCTION_TYPE
7624 && comptypes (TREE_TYPE (TREE_TYPE (decl1)),
7625 TREE_TYPE (TREE_TYPE (old_decl))))
7627 TREE_TYPE (decl1) = composite_type (TREE_TYPE (old_decl),
7628 TREE_TYPE (decl1));
7629 current_function_prototype_locus = DECL_SOURCE_LOCATION (old_decl);
7630 current_function_prototype_built_in
7631 = C_DECL_BUILTIN_PROTOTYPE (old_decl);
7632 current_function_prototype_arg_types
7633 = TYPE_ARG_TYPES (TREE_TYPE (decl1));
7635 if (TREE_PUBLIC (decl1))
7637 /* If there is an external prototype declaration of this
7638 function, record its location but do not copy information
7639 to this decl. This may be an invisible declaration
7640 (built-in or in a scope which has finished) or simply
7641 have more refined argument types than any declaration
7642 found above. */
7643 struct c_binding *b;
7644 for (b = I_SYMBOL_BINDING (DECL_NAME (decl1)); b; b = b->shadowed)
7645 if (B_IN_SCOPE (b, external_scope))
7646 break;
7647 if (b)
7649 tree ext_decl, ext_type;
7650 ext_decl = b->decl;
7651 ext_type = b->u.type ? b->u.type : TREE_TYPE (ext_decl);
7652 if (TREE_CODE (ext_type) == FUNCTION_TYPE
7653 && comptypes (TREE_TYPE (TREE_TYPE (decl1)),
7654 TREE_TYPE (ext_type)))
7656 current_function_prototype_locus
7657 = DECL_SOURCE_LOCATION (ext_decl);
7658 current_function_prototype_built_in
7659 = C_DECL_BUILTIN_PROTOTYPE (ext_decl);
7660 current_function_prototype_arg_types
7661 = TYPE_ARG_TYPES (ext_type);
7667 /* Optionally warn of old-fashioned def with no previous prototype. */
7668 if (warn_strict_prototypes
7669 && old_decl != error_mark_node
7670 && TYPE_ARG_TYPES (TREE_TYPE (decl1)) == 0
7671 && C_DECL_ISNT_PROTOTYPE (old_decl))
7672 warning_at (loc, OPT_Wstrict_prototypes,
7673 "function declaration isn%'t a prototype");
7674 /* Optionally warn of any global def with no previous prototype. */
7675 else if (warn_missing_prototypes
7676 && old_decl != error_mark_node
7677 && TREE_PUBLIC (decl1)
7678 && !MAIN_NAME_P (DECL_NAME (decl1))
7679 && C_DECL_ISNT_PROTOTYPE (old_decl))
7680 warning_at (loc, OPT_Wmissing_prototypes,
7681 "no previous prototype for %qD", decl1);
7682 /* Optionally warn of any def with no previous prototype
7683 if the function has already been used. */
7684 else if (warn_missing_prototypes
7685 && old_decl != 0
7686 && old_decl != error_mark_node
7687 && TREE_USED (old_decl)
7688 && TYPE_ARG_TYPES (TREE_TYPE (old_decl)) == 0)
7689 warning_at (loc, OPT_Wmissing_prototypes,
7690 "%qD was used with no prototype before its definition", decl1);
7691 /* Optionally warn of any global def with no previous declaration. */
7692 else if (warn_missing_declarations
7693 && TREE_PUBLIC (decl1)
7694 && old_decl == 0
7695 && !MAIN_NAME_P (DECL_NAME (decl1)))
7696 warning_at (loc, OPT_Wmissing_declarations,
7697 "no previous declaration for %qD",
7698 decl1);
7699 /* Optionally warn of any def with no previous declaration
7700 if the function has already been used. */
7701 else if (warn_missing_declarations
7702 && old_decl != 0
7703 && old_decl != error_mark_node
7704 && TREE_USED (old_decl)
7705 && C_DECL_IMPLICIT (old_decl))
7706 warning_at (loc, OPT_Wmissing_declarations,
7707 "%qD was used with no declaration before its definition", decl1);
7709 /* This function exists in static storage.
7710 (This does not mean `static' in the C sense!) */
7711 TREE_STATIC (decl1) = 1;
7713 /* This is the earliest point at which we might know the assembler
7714 name of the function. Thus, if it's set before this, die horribly. */
7715 gcc_assert (!DECL_ASSEMBLER_NAME_SET_P (decl1));
7717 /* If #pragma weak was used, mark the decl weak now. */
7718 if (current_scope == file_scope)
7719 maybe_apply_pragma_weak (decl1);
7721 /* Warn for unlikely, improbable, or stupid declarations of `main'. */
7722 if (warn_main && MAIN_NAME_P (DECL_NAME (decl1)))
7724 if (TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (decl1)))
7725 != integer_type_node)
7726 pedwarn (loc, OPT_Wmain, "return type of %qD is not %<int%>", decl1);
7728 check_main_parameter_types (decl1);
7730 if (!TREE_PUBLIC (decl1))
7731 pedwarn (loc, OPT_Wmain,
7732 "%qD is normally a non-static function", decl1);
7735 /* Record the decl so that the function name is defined.
7736 If we already have a decl for this name, and it is a FUNCTION_DECL,
7737 use the old decl. */
7739 current_function_decl = pushdecl (decl1);
7741 push_scope ();
7742 declare_parm_level ();
7744 restype = TREE_TYPE (TREE_TYPE (current_function_decl));
7745 resdecl = build_decl (loc, RESULT_DECL, NULL_TREE, restype);
7746 DECL_ARTIFICIAL (resdecl) = 1;
7747 DECL_IGNORED_P (resdecl) = 1;
7748 DECL_RESULT (current_function_decl) = resdecl;
7750 start_fname_decls ();
7752 return 1;
7755 /* Subroutine of store_parm_decls which handles new-style function
7756 definitions (prototype format). The parms already have decls, so we
7757 need only record them as in effect and complain if any redundant
7758 old-style parm decls were written. */
7759 static void
7760 store_parm_decls_newstyle (tree fndecl, const struct c_arg_info *arg_info)
7762 tree decl;
7763 c_arg_tag *tag;
7764 unsigned ix;
7766 if (current_scope->bindings)
7768 error_at (DECL_SOURCE_LOCATION (fndecl),
7769 "old-style parameter declarations in prototyped "
7770 "function definition");
7772 /* Get rid of the old-style declarations. */
7773 pop_scope ();
7774 push_scope ();
7776 /* Don't issue this warning for nested functions, and don't issue this
7777 warning if we got here because ARG_INFO_TYPES was error_mark_node
7778 (this happens when a function definition has just an ellipsis in
7779 its parameter list). */
7780 else if (!in_system_header && !current_function_scope
7781 && arg_info->types != error_mark_node)
7782 warning_at (DECL_SOURCE_LOCATION (fndecl), OPT_Wtraditional,
7783 "traditional C rejects ISO C style function definitions");
7785 /* Now make all the parameter declarations visible in the function body.
7786 We can bypass most of the grunt work of pushdecl. */
7787 for (decl = arg_info->parms; decl; decl = DECL_CHAIN (decl))
7789 DECL_CONTEXT (decl) = current_function_decl;
7790 if (DECL_NAME (decl))
7792 bind (DECL_NAME (decl), decl, current_scope,
7793 /*invisible=*/false, /*nested=*/false,
7794 UNKNOWN_LOCATION);
7795 if (!TREE_USED (decl))
7796 warn_if_shadowing (decl);
7798 else
7799 error_at (DECL_SOURCE_LOCATION (decl), "parameter name omitted");
7802 /* Record the parameter list in the function declaration. */
7803 DECL_ARGUMENTS (fndecl) = arg_info->parms;
7805 /* Now make all the ancillary declarations visible, likewise. */
7806 for (decl = arg_info->others; decl; decl = DECL_CHAIN (decl))
7808 DECL_CONTEXT (decl) = current_function_decl;
7809 if (DECL_NAME (decl))
7810 bind (DECL_NAME (decl), decl, current_scope,
7811 /*invisible=*/false,
7812 /*nested=*/(TREE_CODE (decl) == FUNCTION_DECL),
7813 UNKNOWN_LOCATION);
7816 /* And all the tag declarations. */
7817 FOR_EACH_VEC_ELT_REVERSE (c_arg_tag, arg_info->tags, ix, tag)
7818 if (tag->id)
7819 bind (tag->id, tag->type, current_scope,
7820 /*invisible=*/false, /*nested=*/false, UNKNOWN_LOCATION);
7823 /* Subroutine of store_parm_decls which handles old-style function
7824 definitions (separate parameter list and declarations). */
7826 static void
7827 store_parm_decls_oldstyle (tree fndecl, const struct c_arg_info *arg_info)
7829 struct c_binding *b;
7830 tree parm, decl, last;
7831 tree parmids = arg_info->parms;
7832 struct pointer_set_t *seen_args = pointer_set_create ();
7834 if (!in_system_header)
7835 warning_at (DECL_SOURCE_LOCATION (fndecl),
7836 OPT_Wold_style_definition, "old-style function definition");
7838 /* Match each formal parameter name with its declaration. Save each
7839 decl in the appropriate TREE_PURPOSE slot of the parmids chain. */
7840 for (parm = parmids; parm; parm = TREE_CHAIN (parm))
7842 if (TREE_VALUE (parm) == 0)
7844 error_at (DECL_SOURCE_LOCATION (fndecl),
7845 "parameter name missing from parameter list");
7846 TREE_PURPOSE (parm) = 0;
7847 continue;
7850 b = I_SYMBOL_BINDING (TREE_VALUE (parm));
7851 if (b && B_IN_CURRENT_SCOPE (b))
7853 decl = b->decl;
7854 /* Skip erroneous parameters. */
7855 if (decl == error_mark_node)
7856 continue;
7857 /* If we got something other than a PARM_DECL it is an error. */
7858 if (TREE_CODE (decl) != PARM_DECL)
7859 error_at (DECL_SOURCE_LOCATION (decl),
7860 "%qD declared as a non-parameter", decl);
7861 /* If the declaration is already marked, we have a duplicate
7862 name. Complain and ignore the duplicate. */
7863 else if (pointer_set_contains (seen_args, decl))
7865 error_at (DECL_SOURCE_LOCATION (decl),
7866 "multiple parameters named %qD", decl);
7867 TREE_PURPOSE (parm) = 0;
7868 continue;
7870 /* If the declaration says "void", complain and turn it into
7871 an int. */
7872 else if (VOID_TYPE_P (TREE_TYPE (decl)))
7874 error_at (DECL_SOURCE_LOCATION (decl),
7875 "parameter %qD declared with void type", decl);
7876 TREE_TYPE (decl) = integer_type_node;
7877 DECL_ARG_TYPE (decl) = integer_type_node;
7878 layout_decl (decl, 0);
7880 warn_if_shadowing (decl);
7882 /* If no declaration found, default to int. */
7883 else
7885 /* FIXME diagnostics: This should be the location of the argument,
7886 not the FNDECL. E.g., for an old-style declaration
7888 int f10(v) { blah; }
7890 We should use the location of the V, not the F10.
7891 Unfortunately, the V is an IDENTIFIER_NODE which has no
7892 location. In the future we need locations for c_arg_info
7893 entries.
7895 See gcc.dg/Wshadow-3.c for an example of this problem. */
7896 decl = build_decl (DECL_SOURCE_LOCATION (fndecl),
7897 PARM_DECL, TREE_VALUE (parm), integer_type_node);
7898 DECL_ARG_TYPE (decl) = TREE_TYPE (decl);
7899 pushdecl (decl);
7900 warn_if_shadowing (decl);
7902 if (flag_isoc99)
7903 pedwarn (DECL_SOURCE_LOCATION (decl),
7904 0, "type of %qD defaults to %<int%>", decl);
7905 else
7906 warning_at (DECL_SOURCE_LOCATION (decl),
7907 OPT_Wmissing_parameter_type,
7908 "type of %qD defaults to %<int%>", decl);
7911 TREE_PURPOSE (parm) = decl;
7912 pointer_set_insert (seen_args, decl);
7915 /* Now examine the parms chain for incomplete declarations
7916 and declarations with no corresponding names. */
7918 for (b = current_scope->bindings; b; b = b->prev)
7920 parm = b->decl;
7921 if (TREE_CODE (parm) != PARM_DECL)
7922 continue;
7924 if (TREE_TYPE (parm) != error_mark_node
7925 && !COMPLETE_TYPE_P (TREE_TYPE (parm)))
7927 error_at (DECL_SOURCE_LOCATION (parm),
7928 "parameter %qD has incomplete type", parm);
7929 TREE_TYPE (parm) = error_mark_node;
7932 if (!pointer_set_contains (seen_args, parm))
7934 error_at (DECL_SOURCE_LOCATION (parm),
7935 "declaration for parameter %qD but no such parameter",
7936 parm);
7938 /* Pretend the parameter was not missing.
7939 This gets us to a standard state and minimizes
7940 further error messages. */
7941 parmids = chainon (parmids, tree_cons (parm, 0, 0));
7945 /* Chain the declarations together in the order of the list of
7946 names. Store that chain in the function decl, replacing the
7947 list of names. Update the current scope to match. */
7948 DECL_ARGUMENTS (fndecl) = 0;
7950 for (parm = parmids; parm; parm = TREE_CHAIN (parm))
7951 if (TREE_PURPOSE (parm))
7952 break;
7953 if (parm && TREE_PURPOSE (parm))
7955 last = TREE_PURPOSE (parm);
7956 DECL_ARGUMENTS (fndecl) = last;
7958 for (parm = TREE_CHAIN (parm); parm; parm = TREE_CHAIN (parm))
7959 if (TREE_PURPOSE (parm))
7961 DECL_CHAIN (last) = TREE_PURPOSE (parm);
7962 last = TREE_PURPOSE (parm);
7964 DECL_CHAIN (last) = 0;
7967 pointer_set_destroy (seen_args);
7969 /* If there was a previous prototype,
7970 set the DECL_ARG_TYPE of each argument according to
7971 the type previously specified, and report any mismatches. */
7973 if (current_function_prototype_arg_types)
7975 tree type;
7976 for (parm = DECL_ARGUMENTS (fndecl),
7977 type = current_function_prototype_arg_types;
7978 parm || (type && TREE_VALUE (type) != error_mark_node
7979 && (TYPE_MAIN_VARIANT (TREE_VALUE (type)) != void_type_node));
7980 parm = DECL_CHAIN (parm), type = TREE_CHAIN (type))
7982 if (parm == 0 || type == 0
7983 || TYPE_MAIN_VARIANT (TREE_VALUE (type)) == void_type_node)
7985 if (current_function_prototype_built_in)
7986 warning_at (DECL_SOURCE_LOCATION (fndecl),
7987 0, "number of arguments doesn%'t match "
7988 "built-in prototype");
7989 else
7991 /* FIXME diagnostics: This should be the location of
7992 FNDECL, but there is bug when a prototype is
7993 declared inside function context, but defined
7994 outside of it (e.g., gcc.dg/pr15698-2.c). In
7995 which case FNDECL gets the location of the
7996 prototype, not the definition. */
7997 error_at (input_location,
7998 "number of arguments doesn%'t match prototype");
8000 error_at (current_function_prototype_locus,
8001 "prototype declaration");
8003 break;
8005 /* Type for passing arg must be consistent with that
8006 declared for the arg. ISO C says we take the unqualified
8007 type for parameters declared with qualified type. */
8008 if (TREE_TYPE (parm) != error_mark_node
8009 && TREE_TYPE (type) != error_mark_node
8010 && !comptypes (TYPE_MAIN_VARIANT (DECL_ARG_TYPE (parm)),
8011 TYPE_MAIN_VARIANT (TREE_VALUE (type))))
8013 if (TYPE_MAIN_VARIANT (TREE_TYPE (parm))
8014 == TYPE_MAIN_VARIANT (TREE_VALUE (type)))
8016 /* Adjust argument to match prototype. E.g. a previous
8017 `int foo(float);' prototype causes
8018 `int foo(x) float x; {...}' to be treated like
8019 `int foo(float x) {...}'. This is particularly
8020 useful for argument types like uid_t. */
8021 DECL_ARG_TYPE (parm) = TREE_TYPE (parm);
8023 if (targetm.calls.promote_prototypes (TREE_TYPE (current_function_decl))
8024 && INTEGRAL_TYPE_P (TREE_TYPE (parm))
8025 && TYPE_PRECISION (TREE_TYPE (parm))
8026 < TYPE_PRECISION (integer_type_node))
8027 DECL_ARG_TYPE (parm) = integer_type_node;
8029 /* ??? Is it possible to get here with a
8030 built-in prototype or will it always have
8031 been diagnosed as conflicting with an
8032 old-style definition and discarded? */
8033 if (current_function_prototype_built_in)
8034 warning_at (DECL_SOURCE_LOCATION (parm),
8035 OPT_pedantic, "promoted argument %qD "
8036 "doesn%'t match built-in prototype", parm);
8037 else
8039 pedwarn (DECL_SOURCE_LOCATION (parm),
8040 OPT_pedantic, "promoted argument %qD "
8041 "doesn%'t match prototype", parm);
8042 pedwarn (current_function_prototype_locus, OPT_pedantic,
8043 "prototype declaration");
8046 else
8048 if (current_function_prototype_built_in)
8049 warning_at (DECL_SOURCE_LOCATION (parm),
8050 0, "argument %qD doesn%'t match "
8051 "built-in prototype", parm);
8052 else
8054 error_at (DECL_SOURCE_LOCATION (parm),
8055 "argument %qD doesn%'t match prototype", parm);
8056 error_at (current_function_prototype_locus,
8057 "prototype declaration");
8062 TYPE_ACTUAL_ARG_TYPES (TREE_TYPE (fndecl)) = 0;
8065 /* Otherwise, create a prototype that would match. */
8067 else
8069 tree actual = 0, last = 0, type;
8071 for (parm = DECL_ARGUMENTS (fndecl); parm; parm = DECL_CHAIN (parm))
8073 type = tree_cons (NULL_TREE, DECL_ARG_TYPE (parm), NULL_TREE);
8074 if (last)
8075 TREE_CHAIN (last) = type;
8076 else
8077 actual = type;
8078 last = type;
8080 type = tree_cons (NULL_TREE, void_type_node, NULL_TREE);
8081 if (last)
8082 TREE_CHAIN (last) = type;
8083 else
8084 actual = type;
8086 /* We are going to assign a new value for the TYPE_ACTUAL_ARG_TYPES
8087 of the type of this function, but we need to avoid having this
8088 affect the types of other similarly-typed functions, so we must
8089 first force the generation of an identical (but separate) type
8090 node for the relevant function type. The new node we create
8091 will be a variant of the main variant of the original function
8092 type. */
8094 TREE_TYPE (fndecl) = build_variant_type_copy (TREE_TYPE (fndecl));
8096 TYPE_ACTUAL_ARG_TYPES (TREE_TYPE (fndecl)) = actual;
8100 /* Store parameter declarations passed in ARG_INFO into the current
8101 function declaration. */
8103 void
8104 store_parm_decls_from (struct c_arg_info *arg_info)
8106 current_function_arg_info = arg_info;
8107 store_parm_decls ();
8110 /* Store the parameter declarations into the current function declaration.
8111 This is called after parsing the parameter declarations, before
8112 digesting the body of the function.
8114 For an old-style definition, construct a prototype out of the old-style
8115 parameter declarations and inject it into the function's type. */
8117 void
8118 store_parm_decls (void)
8120 tree fndecl = current_function_decl;
8121 bool proto;
8123 /* The argument information block for FNDECL. */
8124 struct c_arg_info *arg_info = current_function_arg_info;
8125 current_function_arg_info = 0;
8127 /* True if this definition is written with a prototype. Note:
8128 despite C99 6.7.5.3p14, we can *not* treat an empty argument
8129 list in a function definition as equivalent to (void) -- an
8130 empty argument list specifies the function has no parameters,
8131 but only (void) sets up a prototype for future calls. */
8132 proto = arg_info->types != 0;
8134 if (proto)
8135 store_parm_decls_newstyle (fndecl, arg_info);
8136 else
8137 store_parm_decls_oldstyle (fndecl, arg_info);
8139 /* The next call to push_scope will be a function body. */
8141 next_is_function_body = true;
8143 /* Write a record describing this function definition to the prototypes
8144 file (if requested). */
8146 gen_aux_info_record (fndecl, 1, 0, proto);
8148 /* Initialize the RTL code for the function. */
8149 allocate_struct_function (fndecl, false);
8151 /* Begin the statement tree for this function. */
8152 DECL_SAVED_TREE (fndecl) = push_stmt_list ();
8154 /* ??? Insert the contents of the pending sizes list into the function
8155 to be evaluated. The only reason left to have this is
8156 void foo(int n, int array[n++])
8157 because we throw away the array type in favor of a pointer type, and
8158 thus won't naturally see the SAVE_EXPR containing the increment. All
8159 other pending sizes would be handled by gimplify_parameters. */
8161 VEC(tree,gc) *pending_sizes = get_pending_sizes ();
8162 tree t;
8163 int i;
8165 FOR_EACH_VEC_ELT (tree, pending_sizes, i, t)
8166 add_stmt (t);
8169 /* Even though we're inside a function body, we still don't want to
8170 call expand_expr to calculate the size of a variable-sized array.
8171 We haven't necessarily assigned RTL to all variables yet, so it's
8172 not safe to try to expand expressions involving them. */
8173 cfun->dont_save_pending_sizes_p = 1;
8177 /* Finish up a function declaration and compile that function
8178 all the way to assembler language output. Then free the storage
8179 for the function definition.
8181 This is called after parsing the body of the function definition. */
8183 void
8184 finish_function (void)
8186 tree fndecl = current_function_decl;
8188 if (TREE_CODE (fndecl) == FUNCTION_DECL
8189 && targetm.calls.promote_prototypes (TREE_TYPE (fndecl)))
8191 tree args = DECL_ARGUMENTS (fndecl);
8192 for (; args; args = DECL_CHAIN (args))
8194 tree type = TREE_TYPE (args);
8195 if (INTEGRAL_TYPE_P (type)
8196 && TYPE_PRECISION (type) < TYPE_PRECISION (integer_type_node))
8197 DECL_ARG_TYPE (args) = integer_type_node;
8201 if (DECL_INITIAL (fndecl) && DECL_INITIAL (fndecl) != error_mark_node)
8202 BLOCK_SUPERCONTEXT (DECL_INITIAL (fndecl)) = fndecl;
8204 /* Must mark the RESULT_DECL as being in this function. */
8206 if (DECL_RESULT (fndecl) && DECL_RESULT (fndecl) != error_mark_node)
8207 DECL_CONTEXT (DECL_RESULT (fndecl)) = fndecl;
8209 if (MAIN_NAME_P (DECL_NAME (fndecl)) && flag_hosted
8210 && TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (fndecl)))
8211 == integer_type_node && flag_isoc99)
8213 /* Hack. We don't want the middle-end to warn that this return
8214 is unreachable, so we mark its location as special. Using
8215 UNKNOWN_LOCATION has the problem that it gets clobbered in
8216 annotate_one_with_locus. A cleaner solution might be to
8217 ensure ! should_carry_locus_p (stmt), but that needs a flag.
8219 c_finish_return (BUILTINS_LOCATION, integer_zero_node, NULL_TREE);
8222 /* Tie off the statement tree for this function. */
8223 DECL_SAVED_TREE (fndecl) = pop_stmt_list (DECL_SAVED_TREE (fndecl));
8225 finish_fname_decls ();
8227 /* Complain if there's just no return statement. */
8228 if (warn_return_type
8229 && TREE_CODE (TREE_TYPE (TREE_TYPE (fndecl))) != VOID_TYPE
8230 && !current_function_returns_value && !current_function_returns_null
8231 /* Don't complain if we are no-return. */
8232 && !current_function_returns_abnormally
8233 /* Don't complain if we are declared noreturn. */
8234 && !TREE_THIS_VOLATILE (fndecl)
8235 /* Don't warn for main(). */
8236 && !MAIN_NAME_P (DECL_NAME (fndecl))
8237 /* Or if they didn't actually specify a return type. */
8238 && !C_FUNCTION_IMPLICIT_INT (fndecl)
8239 /* Normally, with -Wreturn-type, flow will complain, but we might
8240 optimize out static functions. */
8241 && !TREE_PUBLIC (fndecl))
8243 warning (OPT_Wreturn_type,
8244 "no return statement in function returning non-void");
8245 TREE_NO_WARNING (fndecl) = 1;
8248 /* Complain about parameters that are only set, but never otherwise used. */
8249 if (warn_unused_but_set_parameter)
8251 tree decl;
8253 for (decl = DECL_ARGUMENTS (fndecl);
8254 decl;
8255 decl = DECL_CHAIN (decl))
8256 if (TREE_USED (decl)
8257 && TREE_CODE (decl) == PARM_DECL
8258 && !DECL_READ_P (decl)
8259 && DECL_NAME (decl)
8260 && !DECL_ARTIFICIAL (decl)
8261 && !TREE_NO_WARNING (decl))
8262 warning_at (DECL_SOURCE_LOCATION (decl),
8263 OPT_Wunused_but_set_parameter,
8264 "parameter %qD set but not used", decl);
8267 /* Store the end of the function, so that we get good line number
8268 info for the epilogue. */
8269 cfun->function_end_locus = input_location;
8271 /* Finalize the ELF visibility for the function. */
8272 c_determine_visibility (fndecl);
8274 /* For GNU C extern inline functions disregard inline limits. */
8275 if (DECL_EXTERNAL (fndecl)
8276 && DECL_DECLARED_INLINE_P (fndecl))
8277 DECL_DISREGARD_INLINE_LIMITS (fndecl) = 1;
8279 /* Genericize before inlining. Delay genericizing nested functions
8280 until their parent function is genericized. Since finalizing
8281 requires GENERIC, delay that as well. */
8283 if (DECL_INITIAL (fndecl) && DECL_INITIAL (fndecl) != error_mark_node
8284 && !undef_nested_function)
8286 if (!decl_function_context (fndecl))
8288 invoke_plugin_callbacks (PLUGIN_PRE_GENERICIZE, fndecl);
8289 c_genericize (fndecl);
8291 /* ??? Objc emits functions after finalizing the compilation unit.
8292 This should be cleaned up later and this conditional removed. */
8293 if (cgraph_global_info_ready)
8295 cgraph_add_new_function (fndecl, false);
8296 return;
8298 cgraph_finalize_function (fndecl, false);
8300 else
8302 /* Register this function with cgraph just far enough to get it
8303 added to our parent's nested function list. Handy, since the
8304 C front end doesn't have such a list. */
8305 (void) cgraph_node (fndecl);
8309 if (!decl_function_context (fndecl))
8310 undef_nested_function = false;
8312 /* We're leaving the context of this function, so zap cfun.
8313 It's still in DECL_STRUCT_FUNCTION, and we'll restore it in
8314 tree_rest_of_compilation. */
8315 set_cfun (NULL);
8316 current_function_decl = NULL;
8319 /* Check the declarations given in a for-loop for satisfying the C99
8320 constraints. If exactly one such decl is found, return it. LOC is
8321 the location of the opening parenthesis of the for loop. The last
8322 parameter allows you to control the "for loop initial declarations
8323 are only allowed in C99 mode". Normally, you should pass
8324 flag_isoc99 as that parameter. But in some cases (Objective-C
8325 foreach loop, for example) we want to run the checks in this
8326 function even if not in C99 mode, so we allow the caller to turn
8327 off the error about not being in C99 mode.
8330 tree
8331 check_for_loop_decls (location_t loc, bool turn_off_iso_c99_error)
8333 struct c_binding *b;
8334 tree one_decl = NULL_TREE;
8335 int n_decls = 0;
8337 if (!turn_off_iso_c99_error)
8339 static bool hint = true;
8340 /* If we get here, declarations have been used in a for loop without
8341 the C99 for loop scope. This doesn't make much sense, so don't
8342 allow it. */
8343 error_at (loc, "%<for%> loop initial declarations "
8344 "are only allowed in C99 mode");
8345 if (hint)
8347 inform (loc,
8348 "use option -std=c99 or -std=gnu99 to compile your code");
8349 hint = false;
8351 return NULL_TREE;
8353 /* C99 subclause 6.8.5 paragraph 3:
8355 [#3] The declaration part of a for statement shall only
8356 declare identifiers for objects having storage class auto or
8357 register.
8359 It isn't clear whether, in this sentence, "identifiers" binds to
8360 "shall only declare" or to "objects" - that is, whether all identifiers
8361 declared must be identifiers for objects, or whether the restriction
8362 only applies to those that are. (A question on this in comp.std.c
8363 in November 2000 received no answer.) We implement the strictest
8364 interpretation, to avoid creating an extension which later causes
8365 problems. */
8367 for (b = current_scope->bindings; b; b = b->prev)
8369 tree id = b->id;
8370 tree decl = b->decl;
8372 if (!id)
8373 continue;
8375 switch (TREE_CODE (decl))
8377 case VAR_DECL:
8379 location_t decl_loc = DECL_SOURCE_LOCATION (decl);
8380 if (TREE_STATIC (decl))
8381 error_at (decl_loc,
8382 "declaration of static variable %qD in %<for%> loop "
8383 "initial declaration", decl);
8384 else if (DECL_EXTERNAL (decl))
8385 error_at (decl_loc,
8386 "declaration of %<extern%> variable %qD in %<for%> loop "
8387 "initial declaration", decl);
8389 break;
8391 case RECORD_TYPE:
8392 error_at (loc,
8393 "%<struct %E%> declared in %<for%> loop initial "
8394 "declaration", id);
8395 break;
8396 case UNION_TYPE:
8397 error_at (loc,
8398 "%<union %E%> declared in %<for%> loop initial declaration",
8399 id);
8400 break;
8401 case ENUMERAL_TYPE:
8402 error_at (loc, "%<enum %E%> declared in %<for%> loop "
8403 "initial declaration", id);
8404 break;
8405 default:
8406 error_at (loc, "declaration of non-variable "
8407 "%qD in %<for%> loop initial declaration", decl);
8410 n_decls++;
8411 one_decl = decl;
8414 return n_decls == 1 ? one_decl : NULL_TREE;
8417 /* Save and reinitialize the variables
8418 used during compilation of a C function. */
8420 void
8421 c_push_function_context (void)
8423 struct language_function *p;
8424 p = ggc_alloc_language_function ();
8425 cfun->language = p;
8427 p->base.x_stmt_tree = c_stmt_tree;
8428 p->x_break_label = c_break_label;
8429 p->x_cont_label = c_cont_label;
8430 p->x_switch_stack = c_switch_stack;
8431 p->arg_info = current_function_arg_info;
8432 p->returns_value = current_function_returns_value;
8433 p->returns_null = current_function_returns_null;
8434 p->returns_abnormally = current_function_returns_abnormally;
8435 p->warn_about_return_type = warn_about_return_type;
8437 push_function_context ();
8440 /* Restore the variables used during compilation of a C function. */
8442 void
8443 c_pop_function_context (void)
8445 struct language_function *p;
8447 pop_function_context ();
8448 p = cfun->language;
8449 cfun->language = NULL;
8451 if (DECL_STRUCT_FUNCTION (current_function_decl) == 0
8452 && DECL_SAVED_TREE (current_function_decl) == NULL_TREE)
8454 /* Stop pointing to the local nodes about to be freed. */
8455 /* But DECL_INITIAL must remain nonzero so we know this
8456 was an actual function definition. */
8457 DECL_INITIAL (current_function_decl) = error_mark_node;
8458 DECL_ARGUMENTS (current_function_decl) = 0;
8461 c_stmt_tree = p->base.x_stmt_tree;
8462 c_break_label = p->x_break_label;
8463 c_cont_label = p->x_cont_label;
8464 c_switch_stack = p->x_switch_stack;
8465 current_function_arg_info = p->arg_info;
8466 current_function_returns_value = p->returns_value;
8467 current_function_returns_null = p->returns_null;
8468 current_function_returns_abnormally = p->returns_abnormally;
8469 warn_about_return_type = p->warn_about_return_type;
8472 /* The functions below are required for functionality of doing
8473 function at once processing in the C front end. Currently these
8474 functions are not called from anywhere in the C front end, but as
8475 these changes continue, that will change. */
8477 /* Returns the stmt_tree (if any) to which statements are currently
8478 being added. If there is no active statement-tree, NULL is
8479 returned. */
8481 stmt_tree
8482 current_stmt_tree (void)
8484 return &c_stmt_tree;
8487 /* Return the global value of T as a symbol. */
8489 tree
8490 identifier_global_value (tree t)
8492 struct c_binding *b;
8494 for (b = I_SYMBOL_BINDING (t); b; b = b->shadowed)
8495 if (B_IN_FILE_SCOPE (b) || B_IN_EXTERNAL_SCOPE (b))
8496 return b->decl;
8498 return 0;
8501 /* Record a builtin type for C. If NAME is non-NULL, it is the name used;
8502 otherwise the name is found in ridpointers from RID_INDEX. */
8504 void
8505 record_builtin_type (enum rid rid_index, const char *name, tree type)
8507 tree id, decl;
8508 if (name == 0)
8509 id = ridpointers[(int) rid_index];
8510 else
8511 id = get_identifier (name);
8512 decl = build_decl (UNKNOWN_LOCATION, TYPE_DECL, id, type);
8513 pushdecl (decl);
8514 if (debug_hooks->type_decl)
8515 debug_hooks->type_decl (decl, false);
8518 /* Build the void_list_node (void_type_node having been created). */
8519 tree
8520 build_void_list_node (void)
8522 tree t = build_tree_list (NULL_TREE, void_type_node);
8523 return t;
8526 /* Return a c_parm structure with the given SPECS, ATTRS and DECLARATOR. */
8528 struct c_parm *
8529 build_c_parm (struct c_declspecs *specs, tree attrs,
8530 struct c_declarator *declarator)
8532 struct c_parm *ret = XOBNEW (&parser_obstack, struct c_parm);
8533 ret->specs = specs;
8534 ret->attrs = attrs;
8535 ret->declarator = declarator;
8536 return ret;
8539 /* Return a declarator with nested attributes. TARGET is the inner
8540 declarator to which these attributes apply. ATTRS are the
8541 attributes. */
8543 struct c_declarator *
8544 build_attrs_declarator (tree attrs, struct c_declarator *target)
8546 struct c_declarator *ret = XOBNEW (&parser_obstack, struct c_declarator);
8547 ret->kind = cdk_attrs;
8548 ret->declarator = target;
8549 ret->u.attrs = attrs;
8550 return ret;
8553 /* Return a declarator for a function with arguments specified by ARGS
8554 and return type specified by TARGET. */
8556 struct c_declarator *
8557 build_function_declarator (struct c_arg_info *args,
8558 struct c_declarator *target)
8560 struct c_declarator *ret = XOBNEW (&parser_obstack, struct c_declarator);
8561 ret->kind = cdk_function;
8562 ret->declarator = target;
8563 ret->u.arg_info = args;
8564 return ret;
8567 /* Return a declarator for the identifier IDENT (which may be
8568 NULL_TREE for an abstract declarator). */
8570 struct c_declarator *
8571 build_id_declarator (tree ident)
8573 struct c_declarator *ret = XOBNEW (&parser_obstack, struct c_declarator);
8574 ret->kind = cdk_id;
8575 ret->declarator = 0;
8576 ret->u.id = ident;
8577 /* Default value - may get reset to a more precise location. */
8578 ret->id_loc = input_location;
8579 return ret;
8582 /* Return something to represent absolute declarators containing a *.
8583 TARGET is the absolute declarator that the * contains.
8584 TYPE_QUALS_ATTRS is a structure for type qualifiers and attributes
8585 to apply to the pointer type. */
8587 struct c_declarator *
8588 make_pointer_declarator (struct c_declspecs *type_quals_attrs,
8589 struct c_declarator *target)
8591 tree attrs;
8592 int quals = 0;
8593 struct c_declarator *itarget = target;
8594 struct c_declarator *ret = XOBNEW (&parser_obstack, struct c_declarator);
8595 if (type_quals_attrs)
8597 attrs = type_quals_attrs->attrs;
8598 quals = quals_from_declspecs (type_quals_attrs);
8599 if (attrs != NULL_TREE)
8600 itarget = build_attrs_declarator (attrs, target);
8602 ret->kind = cdk_pointer;
8603 ret->declarator = itarget;
8604 ret->u.pointer_quals = quals;
8605 return ret;
8608 /* Return a pointer to a structure for an empty list of declaration
8609 specifiers. */
8611 struct c_declspecs *
8612 build_null_declspecs (void)
8614 struct c_declspecs *ret = XOBNEW (&parser_obstack, struct c_declspecs);
8615 ret->type = 0;
8616 ret->expr = 0;
8617 ret->decl_attr = 0;
8618 ret->attrs = 0;
8619 ret->typespec_word = cts_none;
8620 ret->storage_class = csc_none;
8621 ret->expr_const_operands = true;
8622 ret->declspecs_seen_p = false;
8623 ret->typespec_kind = ctsk_none;
8624 ret->non_sc_seen_p = false;
8625 ret->typedef_p = false;
8626 ret->explicit_signed_p = false;
8627 ret->deprecated_p = false;
8628 ret->default_int_p = false;
8629 ret->long_p = false;
8630 ret->long_long_p = false;
8631 ret->short_p = false;
8632 ret->signed_p = false;
8633 ret->unsigned_p = false;
8634 ret->complex_p = false;
8635 ret->inline_p = false;
8636 ret->thread_p = false;
8637 ret->const_p = false;
8638 ret->volatile_p = false;
8639 ret->restrict_p = false;
8640 ret->saturating_p = false;
8641 ret->address_space = ADDR_SPACE_GENERIC;
8642 return ret;
8645 /* Add the address space ADDRSPACE to the declaration specifiers
8646 SPECS, returning SPECS. */
8648 struct c_declspecs *
8649 declspecs_add_addrspace (struct c_declspecs *specs, addr_space_t as)
8651 specs->non_sc_seen_p = true;
8652 specs->declspecs_seen_p = true;
8654 if (!ADDR_SPACE_GENERIC_P (specs->address_space)
8655 && specs->address_space != as)
8656 error ("incompatible address space qualifiers %qs and %qs",
8657 c_addr_space_name (as),
8658 c_addr_space_name (specs->address_space));
8659 else
8660 specs->address_space = as;
8661 return specs;
8664 /* Add the type qualifier QUAL to the declaration specifiers SPECS,
8665 returning SPECS. */
8667 struct c_declspecs *
8668 declspecs_add_qual (struct c_declspecs *specs, tree qual)
8670 enum rid i;
8671 bool dupe = false;
8672 specs->non_sc_seen_p = true;
8673 specs->declspecs_seen_p = true;
8674 gcc_assert (TREE_CODE (qual) == IDENTIFIER_NODE
8675 && C_IS_RESERVED_WORD (qual));
8676 i = C_RID_CODE (qual);
8677 switch (i)
8679 case RID_CONST:
8680 dupe = specs->const_p;
8681 specs->const_p = true;
8682 break;
8683 case RID_VOLATILE:
8684 dupe = specs->volatile_p;
8685 specs->volatile_p = true;
8686 break;
8687 case RID_RESTRICT:
8688 dupe = specs->restrict_p;
8689 specs->restrict_p = true;
8690 break;
8691 default:
8692 gcc_unreachable ();
8694 if (dupe && !flag_isoc99)
8695 pedwarn (input_location, OPT_pedantic, "duplicate %qE", qual);
8696 return specs;
8699 /* Add the type specifier TYPE to the declaration specifiers SPECS,
8700 returning SPECS. */
8702 struct c_declspecs *
8703 declspecs_add_type (location_t loc, struct c_declspecs *specs,
8704 struct c_typespec spec)
8706 tree type = spec.spec;
8707 specs->non_sc_seen_p = true;
8708 specs->declspecs_seen_p = true;
8709 specs->typespec_kind = spec.kind;
8710 if (TREE_DEPRECATED (type))
8711 specs->deprecated_p = true;
8713 /* Handle type specifier keywords. */
8714 if (TREE_CODE (type) == IDENTIFIER_NODE
8715 && C_IS_RESERVED_WORD (type)
8716 && C_RID_CODE (type) != RID_CXX_COMPAT_WARN)
8718 enum rid i = C_RID_CODE (type);
8719 if (specs->type)
8721 error_at (loc, "two or more data types in declaration specifiers");
8722 return specs;
8724 if ((int) i <= (int) RID_LAST_MODIFIER)
8726 /* "long", "short", "signed", "unsigned", "_Complex" or "_Sat". */
8727 bool dupe = false;
8728 switch (i)
8730 case RID_LONG:
8731 if (specs->long_long_p)
8733 error_at (loc, "%<long long long%> is too long for GCC");
8734 break;
8736 if (specs->long_p)
8738 if (specs->typespec_word == cts_double)
8740 error_at (loc,
8741 ("both %<long long%> and %<double%> in "
8742 "declaration specifiers"));
8743 break;
8745 pedwarn_c90 (loc, OPT_Wlong_long,
8746 "ISO C90 does not support %<long long%>");
8747 specs->long_long_p = 1;
8748 break;
8750 if (specs->short_p)
8751 error_at (loc,
8752 ("both %<long%> and %<short%> in "
8753 "declaration specifiers"));
8754 else if (specs->typespec_word == cts_void)
8755 error_at (loc,
8756 ("both %<long%> and %<void%> in "
8757 "declaration specifiers"));
8758 else if (specs->typespec_word == cts_int128)
8759 error_at (loc,
8760 ("both %<long%> and %<__int128%> in "
8761 "declaration specifiers"));
8762 else if (specs->typespec_word == cts_bool)
8763 error_at (loc,
8764 ("both %<long%> and %<_Bool%> in "
8765 "declaration specifiers"));
8766 else if (specs->typespec_word == cts_char)
8767 error_at (loc,
8768 ("both %<long%> and %<char%> in "
8769 "declaration specifiers"));
8770 else if (specs->typespec_word == cts_float)
8771 error_at (loc,
8772 ("both %<long%> and %<float%> in "
8773 "declaration specifiers"));
8774 else if (specs->typespec_word == cts_dfloat32)
8775 error_at (loc,
8776 ("both %<long%> and %<_Decimal32%> in "
8777 "declaration specifiers"));
8778 else if (specs->typespec_word == cts_dfloat64)
8779 error_at (loc,
8780 ("both %<long%> and %<_Decimal64%> in "
8781 "declaration specifiers"));
8782 else if (specs->typespec_word == cts_dfloat128)
8783 error_at (loc,
8784 ("both %<long%> and %<_Decimal128%> in "
8785 "declaration specifiers"));
8786 else
8787 specs->long_p = true;
8788 break;
8789 case RID_SHORT:
8790 dupe = specs->short_p;
8791 if (specs->long_p)
8792 error_at (loc,
8793 ("both %<long%> and %<short%> in "
8794 "declaration specifiers"));
8795 else if (specs->typespec_word == cts_void)
8796 error_at (loc,
8797 ("both %<short%> and %<void%> in "
8798 "declaration specifiers"));
8799 else if (specs->typespec_word == cts_int128)
8800 error_at (loc,
8801 ("both %<short%> and %<__int128%> in "
8802 "declaration specifiers"));
8803 else if (specs->typespec_word == cts_bool)
8804 error_at (loc,
8805 ("both %<short%> and %<_Bool%> in "
8806 "declaration specifiers"));
8807 else if (specs->typespec_word == cts_char)
8808 error_at (loc,
8809 ("both %<short%> and %<char%> in "
8810 "declaration specifiers"));
8811 else if (specs->typespec_word == cts_float)
8812 error_at (loc,
8813 ("both %<short%> and %<float%> in "
8814 "declaration specifiers"));
8815 else if (specs->typespec_word == cts_double)
8816 error_at (loc,
8817 ("both %<short%> and %<double%> in "
8818 "declaration specifiers"));
8819 else if (specs->typespec_word == cts_dfloat32)
8820 error_at (loc,
8821 ("both %<short%> and %<_Decimal32%> in "
8822 "declaration specifiers"));
8823 else if (specs->typespec_word == cts_dfloat64)
8824 error_at (loc,
8825 ("both %<short%> and %<_Decimal64%> in "
8826 "declaration specifiers"));
8827 else if (specs->typespec_word == cts_dfloat128)
8828 error_at (loc,
8829 ("both %<short%> and %<_Decimal128%> in "
8830 "declaration specifiers"));
8831 else
8832 specs->short_p = true;
8833 break;
8834 case RID_SIGNED:
8835 dupe = specs->signed_p;
8836 if (specs->unsigned_p)
8837 error_at (loc,
8838 ("both %<signed%> and %<unsigned%> in "
8839 "declaration specifiers"));
8840 else if (specs->typespec_word == cts_void)
8841 error_at (loc,
8842 ("both %<signed%> and %<void%> in "
8843 "declaration specifiers"));
8844 else if (specs->typespec_word == cts_bool)
8845 error_at (loc,
8846 ("both %<signed%> and %<_Bool%> in "
8847 "declaration specifiers"));
8848 else if (specs->typespec_word == cts_float)
8849 error_at (loc,
8850 ("both %<signed%> and %<float%> in "
8851 "declaration specifiers"));
8852 else if (specs->typespec_word == cts_double)
8853 error_at (loc,
8854 ("both %<signed%> and %<double%> in "
8855 "declaration specifiers"));
8856 else if (specs->typespec_word == cts_dfloat32)
8857 error_at (loc,
8858 ("both %<signed%> and %<_Decimal32%> in "
8859 "declaration specifiers"));
8860 else if (specs->typespec_word == cts_dfloat64)
8861 error_at (loc,
8862 ("both %<signed%> and %<_Decimal64%> in "
8863 "declaration specifiers"));
8864 else if (specs->typespec_word == cts_dfloat128)
8865 error_at (loc,
8866 ("both %<signed%> and %<_Decimal128%> in "
8867 "declaration specifiers"));
8868 else
8869 specs->signed_p = true;
8870 break;
8871 case RID_UNSIGNED:
8872 dupe = specs->unsigned_p;
8873 if (specs->signed_p)
8874 error_at (loc,
8875 ("both %<signed%> and %<unsigned%> in "
8876 "declaration specifiers"));
8877 else if (specs->typespec_word == cts_void)
8878 error_at (loc,
8879 ("both %<unsigned%> and %<void%> in "
8880 "declaration specifiers"));
8881 else if (specs->typespec_word == cts_bool)
8882 error_at (loc,
8883 ("both %<unsigned%> and %<_Bool%> in "
8884 "declaration specifiers"));
8885 else if (specs->typespec_word == cts_float)
8886 error_at (loc,
8887 ("both %<unsigned%> and %<float%> in "
8888 "declaration specifiers"));
8889 else if (specs->typespec_word == cts_double)
8890 error_at (loc,
8891 ("both %<unsigned%> and %<double%> in "
8892 "declaration specifiers"));
8893 else if (specs->typespec_word == cts_dfloat32)
8894 error_at (loc,
8895 ("both %<unsigned%> and %<_Decimal32%> in "
8896 "declaration specifiers"));
8897 else if (specs->typespec_word == cts_dfloat64)
8898 error_at (loc,
8899 ("both %<unsigned%> and %<_Decimal64%> in "
8900 "declaration specifiers"));
8901 else if (specs->typespec_word == cts_dfloat128)
8902 error_at (loc,
8903 ("both %<unsigned%> and %<_Decimal128%> in "
8904 "declaration specifiers"));
8905 else
8906 specs->unsigned_p = true;
8907 break;
8908 case RID_COMPLEX:
8909 dupe = specs->complex_p;
8910 if (!flag_isoc99 && !in_system_header)
8911 pedwarn (loc, OPT_pedantic,
8912 "ISO C90 does not support complex types");
8913 if (specs->typespec_word == cts_void)
8914 error_at (loc,
8915 ("both %<complex%> and %<void%> in "
8916 "declaration specifiers"));
8917 else if (specs->typespec_word == cts_bool)
8918 error_at (loc,
8919 ("both %<complex%> and %<_Bool%> in "
8920 "declaration specifiers"));
8921 else if (specs->typespec_word == cts_dfloat32)
8922 error_at (loc,
8923 ("both %<complex%> and %<_Decimal32%> in "
8924 "declaration specifiers"));
8925 else if (specs->typespec_word == cts_dfloat64)
8926 error_at (loc,
8927 ("both %<complex%> and %<_Decimal64%> in "
8928 "declaration specifiers"));
8929 else if (specs->typespec_word == cts_dfloat128)
8930 error_at (loc,
8931 ("both %<complex%> and %<_Decimal128%> in "
8932 "declaration specifiers"));
8933 else if (specs->typespec_word == cts_fract)
8934 error_at (loc,
8935 ("both %<complex%> and %<_Fract%> in "
8936 "declaration specifiers"));
8937 else if (specs->typespec_word == cts_accum)
8938 error_at (loc,
8939 ("both %<complex%> and %<_Accum%> in "
8940 "declaration specifiers"));
8941 else if (specs->saturating_p)
8942 error_at (loc,
8943 ("both %<complex%> and %<_Sat%> in "
8944 "declaration specifiers"));
8945 else
8946 specs->complex_p = true;
8947 break;
8948 case RID_SAT:
8949 dupe = specs->saturating_p;
8950 pedwarn (loc, OPT_pedantic,
8951 "ISO C does not support saturating types");
8952 if (specs->typespec_word == cts_int128)
8954 error_at (loc,
8955 ("both %<_Sat%> and %<__int128%> in "
8956 "declaration specifiers"));
8958 else if (specs->typespec_word == cts_void)
8959 error_at (loc,
8960 ("both %<_Sat%> and %<void%> in "
8961 "declaration specifiers"));
8962 else if (specs->typespec_word == cts_bool)
8963 error_at (loc,
8964 ("both %<_Sat%> and %<_Bool%> in "
8965 "declaration specifiers"));
8966 else if (specs->typespec_word == cts_char)
8967 error_at (loc,
8968 ("both %<_Sat%> and %<char%> in "
8969 "declaration specifiers"));
8970 else if (specs->typespec_word == cts_int)
8971 error_at (loc,
8972 ("both %<_Sat%> and %<int%> in "
8973 "declaration specifiers"));
8974 else if (specs->typespec_word == cts_float)
8975 error_at (loc,
8976 ("both %<_Sat%> and %<float%> in "
8977 "declaration specifiers"));
8978 else if (specs->typespec_word == cts_double)
8979 error_at (loc,
8980 ("both %<_Sat%> and %<double%> in "
8981 "declaration specifiers"));
8982 else if (specs->typespec_word == cts_dfloat32)
8983 error_at (loc,
8984 ("both %<_Sat%> and %<_Decimal32%> in "
8985 "declaration specifiers"));
8986 else if (specs->typespec_word == cts_dfloat64)
8987 error_at (loc,
8988 ("both %<_Sat%> and %<_Decimal64%> in "
8989 "declaration specifiers"));
8990 else if (specs->typespec_word == cts_dfloat128)
8991 error_at (loc,
8992 ("both %<_Sat%> and %<_Decimal128%> in "
8993 "declaration specifiers"));
8994 else if (specs->complex_p)
8995 error_at (loc,
8996 ("both %<_Sat%> and %<complex%> in "
8997 "declaration specifiers"));
8998 else
8999 specs->saturating_p = true;
9000 break;
9001 default:
9002 gcc_unreachable ();
9005 if (dupe)
9006 error_at (loc, "duplicate %qE", type);
9008 return specs;
9010 else
9012 /* "void", "_Bool", "char", "int", "float", "double", "_Decimal32",
9013 "__int128", "_Decimal64", "_Decimal128", "_Fract" or "_Accum". */
9014 if (specs->typespec_word != cts_none)
9016 error_at (loc,
9017 "two or more data types in declaration specifiers");
9018 return specs;
9020 switch (i)
9022 case RID_INT128:
9023 if (int128_integer_type_node == NULL_TREE)
9025 error_at (loc, "%<__int128%> is not supported for this target");
9026 return specs;
9028 if (!in_system_header)
9029 pedwarn (loc, OPT_pedantic,
9030 "ISO C does not support %<__int128%> type");
9032 if (specs->long_p)
9033 error_at (loc,
9034 ("both %<__int128%> and %<long%> in "
9035 "declaration specifiers"));
9036 else if (specs->saturating_p)
9037 error_at (loc,
9038 ("both %<_Sat%> and %<__int128%> in "
9039 "declaration specifiers"));
9040 else if (specs->short_p)
9041 error_at (loc,
9042 ("both %<__int128%> and %<short%> in "
9043 "declaration specifiers"));
9044 else
9045 specs->typespec_word = cts_int128;
9046 return specs;
9047 case RID_VOID:
9048 if (specs->long_p)
9049 error_at (loc,
9050 ("both %<long%> and %<void%> in "
9051 "declaration specifiers"));
9052 else if (specs->short_p)
9053 error_at (loc,
9054 ("both %<short%> and %<void%> in "
9055 "declaration specifiers"));
9056 else if (specs->signed_p)
9057 error_at (loc,
9058 ("both %<signed%> and %<void%> in "
9059 "declaration specifiers"));
9060 else if (specs->unsigned_p)
9061 error_at (loc,
9062 ("both %<unsigned%> and %<void%> in "
9063 "declaration specifiers"));
9064 else if (specs->complex_p)
9065 error_at (loc,
9066 ("both %<complex%> and %<void%> in "
9067 "declaration specifiers"));
9068 else if (specs->saturating_p)
9069 error_at (loc,
9070 ("both %<_Sat%> and %<void%> in "
9071 "declaration specifiers"));
9072 else
9073 specs->typespec_word = cts_void;
9074 return specs;
9075 case RID_BOOL:
9076 if (specs->long_p)
9077 error_at (loc,
9078 ("both %<long%> and %<_Bool%> in "
9079 "declaration specifiers"));
9080 else if (specs->short_p)
9081 error_at (loc,
9082 ("both %<short%> and %<_Bool%> in "
9083 "declaration specifiers"));
9084 else if (specs->signed_p)
9085 error_at (loc,
9086 ("both %<signed%> and %<_Bool%> in "
9087 "declaration specifiers"));
9088 else if (specs->unsigned_p)
9089 error_at (loc,
9090 ("both %<unsigned%> and %<_Bool%> in "
9091 "declaration specifiers"));
9092 else if (specs->complex_p)
9093 error_at (loc,
9094 ("both %<complex%> and %<_Bool%> in "
9095 "declaration specifiers"));
9096 else if (specs->saturating_p)
9097 error_at (loc,
9098 ("both %<_Sat%> and %<_Bool%> in "
9099 "declaration specifiers"));
9100 else
9101 specs->typespec_word = cts_bool;
9102 return specs;
9103 case RID_CHAR:
9104 if (specs->long_p)
9105 error_at (loc,
9106 ("both %<long%> and %<char%> in "
9107 "declaration specifiers"));
9108 else if (specs->short_p)
9109 error_at (loc,
9110 ("both %<short%> and %<char%> in "
9111 "declaration specifiers"));
9112 else if (specs->saturating_p)
9113 error_at (loc,
9114 ("both %<_Sat%> and %<char%> in "
9115 "declaration specifiers"));
9116 else
9117 specs->typespec_word = cts_char;
9118 return specs;
9119 case RID_INT:
9120 if (specs->saturating_p)
9121 error_at (loc,
9122 ("both %<_Sat%> and %<int%> in "
9123 "declaration specifiers"));
9124 else
9125 specs->typespec_word = cts_int;
9126 return specs;
9127 case RID_FLOAT:
9128 if (specs->long_p)
9129 error_at (loc,
9130 ("both %<long%> and %<float%> in "
9131 "declaration specifiers"));
9132 else if (specs->short_p)
9133 error_at (loc,
9134 ("both %<short%> and %<float%> in "
9135 "declaration specifiers"));
9136 else if (specs->signed_p)
9137 error_at (loc,
9138 ("both %<signed%> and %<float%> in "
9139 "declaration specifiers"));
9140 else if (specs->unsigned_p)
9141 error_at (loc,
9142 ("both %<unsigned%> and %<float%> in "
9143 "declaration specifiers"));
9144 else if (specs->saturating_p)
9145 error_at (loc,
9146 ("both %<_Sat%> and %<float%> in "
9147 "declaration specifiers"));
9148 else
9149 specs->typespec_word = cts_float;
9150 return specs;
9151 case RID_DOUBLE:
9152 if (specs->long_long_p)
9153 error_at (loc,
9154 ("both %<long long%> and %<double%> in "
9155 "declaration specifiers"));
9156 else if (specs->short_p)
9157 error_at (loc,
9158 ("both %<short%> and %<double%> in "
9159 "declaration specifiers"));
9160 else if (specs->signed_p)
9161 error_at (loc,
9162 ("both %<signed%> and %<double%> in "
9163 "declaration specifiers"));
9164 else if (specs->unsigned_p)
9165 error_at (loc,
9166 ("both %<unsigned%> and %<double%> in "
9167 "declaration specifiers"));
9168 else if (specs->saturating_p)
9169 error_at (loc,
9170 ("both %<_Sat%> and %<double%> in "
9171 "declaration specifiers"));
9172 else
9173 specs->typespec_word = cts_double;
9174 return specs;
9175 case RID_DFLOAT32:
9176 case RID_DFLOAT64:
9177 case RID_DFLOAT128:
9179 const char *str;
9180 if (i == RID_DFLOAT32)
9181 str = "_Decimal32";
9182 else if (i == RID_DFLOAT64)
9183 str = "_Decimal64";
9184 else
9185 str = "_Decimal128";
9186 if (specs->long_long_p)
9187 error_at (loc,
9188 ("both %<long long%> and %<%s%> in "
9189 "declaration specifiers"),
9190 str);
9191 if (specs->long_p)
9192 error_at (loc,
9193 ("both %<long%> and %<%s%> in "
9194 "declaration specifiers"),
9195 str);
9196 else if (specs->short_p)
9197 error_at (loc,
9198 ("both %<short%> and %<%s%> in "
9199 "declaration specifiers"),
9200 str);
9201 else if (specs->signed_p)
9202 error_at (loc,
9203 ("both %<signed%> and %<%s%> in "
9204 "declaration specifiers"),
9205 str);
9206 else if (specs->unsigned_p)
9207 error_at (loc,
9208 ("both %<unsigned%> and %<%s%> in "
9209 "declaration specifiers"),
9210 str);
9211 else if (specs->complex_p)
9212 error_at (loc,
9213 ("both %<complex%> and %<%s%> in "
9214 "declaration specifiers"),
9215 str);
9216 else if (specs->saturating_p)
9217 error_at (loc,
9218 ("both %<_Sat%> and %<%s%> in "
9219 "declaration specifiers"),
9220 str);
9221 else if (i == RID_DFLOAT32)
9222 specs->typespec_word = cts_dfloat32;
9223 else if (i == RID_DFLOAT64)
9224 specs->typespec_word = cts_dfloat64;
9225 else
9226 specs->typespec_word = cts_dfloat128;
9228 if (!targetm.decimal_float_supported_p ())
9229 error_at (loc,
9230 ("decimal floating point not supported "
9231 "for this target"));
9232 pedwarn (loc, OPT_pedantic,
9233 "ISO C does not support decimal floating point");
9234 return specs;
9235 case RID_FRACT:
9236 case RID_ACCUM:
9238 const char *str;
9239 if (i == RID_FRACT)
9240 str = "_Fract";
9241 else
9242 str = "_Accum";
9243 if (specs->complex_p)
9244 error_at (loc,
9245 ("both %<complex%> and %<%s%> in "
9246 "declaration specifiers"),
9247 str);
9248 else if (i == RID_FRACT)
9249 specs->typespec_word = cts_fract;
9250 else
9251 specs->typespec_word = cts_accum;
9253 if (!targetm.fixed_point_supported_p ())
9254 error_at (loc,
9255 "fixed-point types not supported for this target");
9256 pedwarn (loc, OPT_pedantic,
9257 "ISO C does not support fixed-point types");
9258 return specs;
9259 default:
9260 /* ObjC reserved word "id", handled below. */
9261 break;
9266 /* Now we have a typedef (a TYPE_DECL node), an identifier (some
9267 form of ObjC type, cases such as "int" and "long" being handled
9268 above), a TYPE (struct, union, enum and typeof specifiers) or an
9269 ERROR_MARK. In none of these cases may there have previously
9270 been any type specifiers. */
9271 if (specs->type || specs->typespec_word != cts_none
9272 || specs->long_p || specs->short_p || specs->signed_p
9273 || specs->unsigned_p || specs->complex_p)
9274 error_at (loc, "two or more data types in declaration specifiers");
9275 else if (TREE_CODE (type) == TYPE_DECL)
9277 if (TREE_TYPE (type) == error_mark_node)
9278 ; /* Allow the type to default to int to avoid cascading errors. */
9279 else
9281 specs->type = TREE_TYPE (type);
9282 specs->decl_attr = DECL_ATTRIBUTES (type);
9283 specs->typedef_p = true;
9284 specs->explicit_signed_p = C_TYPEDEF_EXPLICITLY_SIGNED (type);
9286 /* If this typedef name is defined in a struct, then a C++
9287 lookup would return a different value. */
9288 if (warn_cxx_compat
9289 && I_SYMBOL_BINDING (DECL_NAME (type))->in_struct)
9290 warning_at (loc, OPT_Wc___compat,
9291 "C++ lookup of %qD would return a field, not a type",
9292 type);
9294 /* If we are parsing a struct, record that a struct field
9295 used a typedef. */
9296 if (warn_cxx_compat && struct_parse_info != NULL)
9297 VEC_safe_push (tree, heap, struct_parse_info->typedefs_seen, type);
9300 else if (TREE_CODE (type) == IDENTIFIER_NODE)
9302 tree t = lookup_name (type);
9303 if (!t || TREE_CODE (t) != TYPE_DECL)
9304 error_at (loc, "%qE fails to be a typedef or built in type", type);
9305 else if (TREE_TYPE (t) == error_mark_node)
9307 else
9308 specs->type = TREE_TYPE (t);
9310 else if (TREE_CODE (type) != ERROR_MARK)
9312 if (spec.kind == ctsk_typeof)
9314 specs->typedef_p = true;
9315 if (spec.expr)
9317 if (specs->expr)
9318 specs->expr = build2 (COMPOUND_EXPR, TREE_TYPE (spec.expr),
9319 specs->expr, spec.expr);
9320 else
9321 specs->expr = spec.expr;
9322 specs->expr_const_operands &= spec.expr_const_operands;
9325 specs->type = type;
9327 else
9329 /* Set a dummy type here to avoid warning about implicit 'int'. */
9330 specs->type = integer_type_node;
9333 return specs;
9336 /* Add the storage class specifier or function specifier SCSPEC to the
9337 declaration specifiers SPECS, returning SPECS. */
9339 struct c_declspecs *
9340 declspecs_add_scspec (struct c_declspecs *specs, tree scspec)
9342 enum rid i;
9343 enum c_storage_class n = csc_none;
9344 bool dupe = false;
9345 specs->declspecs_seen_p = true;
9346 gcc_assert (TREE_CODE (scspec) == IDENTIFIER_NODE
9347 && C_IS_RESERVED_WORD (scspec));
9348 i = C_RID_CODE (scspec);
9349 if (specs->non_sc_seen_p)
9350 warning (OPT_Wold_style_declaration,
9351 "%qE is not at beginning of declaration", scspec);
9352 switch (i)
9354 case RID_INLINE:
9355 /* C99 permits duplicate inline. Although of doubtful utility,
9356 it seems simplest to permit it in gnu89 mode as well, as
9357 there is also little utility in maintaining this as a
9358 difference between gnu89 and C99 inline. */
9359 dupe = false;
9360 specs->inline_p = true;
9361 break;
9362 case RID_THREAD:
9363 dupe = specs->thread_p;
9364 if (specs->storage_class == csc_auto)
9365 error ("%<__thread%> used with %<auto%>");
9366 else if (specs->storage_class == csc_register)
9367 error ("%<__thread%> used with %<register%>");
9368 else if (specs->storage_class == csc_typedef)
9369 error ("%<__thread%> used with %<typedef%>");
9370 else
9371 specs->thread_p = true;
9372 break;
9373 case RID_AUTO:
9374 n = csc_auto;
9375 break;
9376 case RID_EXTERN:
9377 n = csc_extern;
9378 /* Diagnose "__thread extern". */
9379 if (specs->thread_p)
9380 error ("%<__thread%> before %<extern%>");
9381 break;
9382 case RID_REGISTER:
9383 n = csc_register;
9384 break;
9385 case RID_STATIC:
9386 n = csc_static;
9387 /* Diagnose "__thread static". */
9388 if (specs->thread_p)
9389 error ("%<__thread%> before %<static%>");
9390 break;
9391 case RID_TYPEDEF:
9392 n = csc_typedef;
9393 break;
9394 default:
9395 gcc_unreachable ();
9397 if (n != csc_none && n == specs->storage_class)
9398 dupe = true;
9399 if (dupe)
9400 error ("duplicate %qE", scspec);
9401 if (n != csc_none)
9403 if (specs->storage_class != csc_none && n != specs->storage_class)
9405 error ("multiple storage classes in declaration specifiers");
9407 else
9409 specs->storage_class = n;
9410 if (n != csc_extern && n != csc_static && specs->thread_p)
9412 error ("%<__thread%> used with %qE", scspec);
9413 specs->thread_p = false;
9417 return specs;
9420 /* Add the attributes ATTRS to the declaration specifiers SPECS,
9421 returning SPECS. */
9423 struct c_declspecs *
9424 declspecs_add_attrs (struct c_declspecs *specs, tree attrs)
9426 specs->attrs = chainon (attrs, specs->attrs);
9427 specs->declspecs_seen_p = true;
9428 return specs;
9431 /* Combine "long", "short", "signed", "unsigned" and "_Complex" type
9432 specifiers with any other type specifier to determine the resulting
9433 type. This is where ISO C checks on complex types are made, since
9434 "_Complex long" is a prefix of the valid ISO C type "_Complex long
9435 double". */
9437 struct c_declspecs *
9438 finish_declspecs (struct c_declspecs *specs)
9440 /* If a type was specified as a whole, we have no modifiers and are
9441 done. */
9442 if (specs->type != NULL_TREE)
9444 gcc_assert (!specs->long_p && !specs->long_long_p && !specs->short_p
9445 && !specs->signed_p && !specs->unsigned_p
9446 && !specs->complex_p);
9447 return specs;
9450 /* If none of "void", "_Bool", "char", "int", "float" or "double"
9451 has been specified, treat it as "int" unless "_Complex" is
9452 present and there are no other specifiers. If we just have
9453 "_Complex", it is equivalent to "_Complex double", but e.g.
9454 "_Complex short" is equivalent to "_Complex short int". */
9455 if (specs->typespec_word == cts_none)
9457 if (specs->saturating_p)
9459 error ("%<_Sat%> is used without %<_Fract%> or %<_Accum%>");
9460 if (!targetm.fixed_point_supported_p ())
9461 error ("fixed-point types not supported for this target");
9462 specs->typespec_word = cts_fract;
9464 else if (specs->long_p || specs->short_p
9465 || specs->signed_p || specs->unsigned_p)
9467 specs->typespec_word = cts_int;
9469 else if (specs->complex_p)
9471 specs->typespec_word = cts_double;
9472 pedwarn (input_location, OPT_pedantic,
9473 "ISO C does not support plain %<complex%> meaning "
9474 "%<double complex%>");
9476 else
9478 specs->typespec_word = cts_int;
9479 specs->default_int_p = true;
9480 /* We don't diagnose this here because grokdeclarator will
9481 give more specific diagnostics according to whether it is
9482 a function definition. */
9486 /* If "signed" was specified, record this to distinguish "int" and
9487 "signed int" in the case of a bit-field with
9488 -funsigned-bitfields. */
9489 specs->explicit_signed_p = specs->signed_p;
9491 /* Now compute the actual type. */
9492 switch (specs->typespec_word)
9494 case cts_void:
9495 gcc_assert (!specs->long_p && !specs->short_p
9496 && !specs->signed_p && !specs->unsigned_p
9497 && !specs->complex_p);
9498 specs->type = void_type_node;
9499 break;
9500 case cts_bool:
9501 gcc_assert (!specs->long_p && !specs->short_p
9502 && !specs->signed_p && !specs->unsigned_p
9503 && !specs->complex_p);
9504 specs->type = boolean_type_node;
9505 break;
9506 case cts_char:
9507 gcc_assert (!specs->long_p && !specs->short_p);
9508 gcc_assert (!(specs->signed_p && specs->unsigned_p));
9509 if (specs->signed_p)
9510 specs->type = signed_char_type_node;
9511 else if (specs->unsigned_p)
9512 specs->type = unsigned_char_type_node;
9513 else
9514 specs->type = char_type_node;
9515 if (specs->complex_p)
9517 pedwarn (input_location, OPT_pedantic,
9518 "ISO C does not support complex integer types");
9519 specs->type = build_complex_type (specs->type);
9521 break;
9522 case cts_int128:
9523 gcc_assert (!specs->long_p && !specs->short_p && !specs->long_long_p);
9524 gcc_assert (!(specs->signed_p && specs->unsigned_p));
9525 specs->type = (specs->unsigned_p
9526 ? int128_unsigned_type_node
9527 : int128_integer_type_node);
9528 if (specs->complex_p)
9530 pedwarn (input_location, OPT_pedantic,
9531 "ISO C does not support complex integer types");
9532 specs->type = build_complex_type (specs->type);
9534 break;
9535 case cts_int:
9536 gcc_assert (!(specs->long_p && specs->short_p));
9537 gcc_assert (!(specs->signed_p && specs->unsigned_p));
9538 if (specs->long_long_p)
9539 specs->type = (specs->unsigned_p
9540 ? long_long_unsigned_type_node
9541 : long_long_integer_type_node);
9542 else if (specs->long_p)
9543 specs->type = (specs->unsigned_p
9544 ? long_unsigned_type_node
9545 : long_integer_type_node);
9546 else if (specs->short_p)
9547 specs->type = (specs->unsigned_p
9548 ? short_unsigned_type_node
9549 : short_integer_type_node);
9550 else
9551 specs->type = (specs->unsigned_p
9552 ? unsigned_type_node
9553 : integer_type_node);
9554 if (specs->complex_p)
9556 pedwarn (input_location, OPT_pedantic,
9557 "ISO C does not support complex integer types");
9558 specs->type = build_complex_type (specs->type);
9560 break;
9561 case cts_float:
9562 gcc_assert (!specs->long_p && !specs->short_p
9563 && !specs->signed_p && !specs->unsigned_p);
9564 specs->type = (specs->complex_p
9565 ? complex_float_type_node
9566 : float_type_node);
9567 break;
9568 case cts_double:
9569 gcc_assert (!specs->long_long_p && !specs->short_p
9570 && !specs->signed_p && !specs->unsigned_p);
9571 if (specs->long_p)
9573 specs->type = (specs->complex_p
9574 ? complex_long_double_type_node
9575 : long_double_type_node);
9577 else
9579 specs->type = (specs->complex_p
9580 ? complex_double_type_node
9581 : double_type_node);
9583 break;
9584 case cts_dfloat32:
9585 case cts_dfloat64:
9586 case cts_dfloat128:
9587 gcc_assert (!specs->long_p && !specs->long_long_p && !specs->short_p
9588 && !specs->signed_p && !specs->unsigned_p && !specs->complex_p);
9589 if (specs->typespec_word == cts_dfloat32)
9590 specs->type = dfloat32_type_node;
9591 else if (specs->typespec_word == cts_dfloat64)
9592 specs->type = dfloat64_type_node;
9593 else
9594 specs->type = dfloat128_type_node;
9595 break;
9596 case cts_fract:
9597 gcc_assert (!specs->complex_p);
9598 if (!targetm.fixed_point_supported_p ())
9599 specs->type = integer_type_node;
9600 else if (specs->saturating_p)
9602 if (specs->long_long_p)
9603 specs->type = specs->unsigned_p
9604 ? sat_unsigned_long_long_fract_type_node
9605 : sat_long_long_fract_type_node;
9606 else if (specs->long_p)
9607 specs->type = specs->unsigned_p
9608 ? sat_unsigned_long_fract_type_node
9609 : sat_long_fract_type_node;
9610 else if (specs->short_p)
9611 specs->type = specs->unsigned_p
9612 ? sat_unsigned_short_fract_type_node
9613 : sat_short_fract_type_node;
9614 else
9615 specs->type = specs->unsigned_p
9616 ? sat_unsigned_fract_type_node
9617 : sat_fract_type_node;
9619 else
9621 if (specs->long_long_p)
9622 specs->type = specs->unsigned_p
9623 ? unsigned_long_long_fract_type_node
9624 : long_long_fract_type_node;
9625 else if (specs->long_p)
9626 specs->type = specs->unsigned_p
9627 ? unsigned_long_fract_type_node
9628 : long_fract_type_node;
9629 else if (specs->short_p)
9630 specs->type = specs->unsigned_p
9631 ? unsigned_short_fract_type_node
9632 : short_fract_type_node;
9633 else
9634 specs->type = specs->unsigned_p
9635 ? unsigned_fract_type_node
9636 : fract_type_node;
9638 break;
9639 case cts_accum:
9640 gcc_assert (!specs->complex_p);
9641 if (!targetm.fixed_point_supported_p ())
9642 specs->type = integer_type_node;
9643 else if (specs->saturating_p)
9645 if (specs->long_long_p)
9646 specs->type = specs->unsigned_p
9647 ? sat_unsigned_long_long_accum_type_node
9648 : sat_long_long_accum_type_node;
9649 else if (specs->long_p)
9650 specs->type = specs->unsigned_p
9651 ? sat_unsigned_long_accum_type_node
9652 : sat_long_accum_type_node;
9653 else if (specs->short_p)
9654 specs->type = specs->unsigned_p
9655 ? sat_unsigned_short_accum_type_node
9656 : sat_short_accum_type_node;
9657 else
9658 specs->type = specs->unsigned_p
9659 ? sat_unsigned_accum_type_node
9660 : sat_accum_type_node;
9662 else
9664 if (specs->long_long_p)
9665 specs->type = specs->unsigned_p
9666 ? unsigned_long_long_accum_type_node
9667 : long_long_accum_type_node;
9668 else if (specs->long_p)
9669 specs->type = specs->unsigned_p
9670 ? unsigned_long_accum_type_node
9671 : long_accum_type_node;
9672 else if (specs->short_p)
9673 specs->type = specs->unsigned_p
9674 ? unsigned_short_accum_type_node
9675 : short_accum_type_node;
9676 else
9677 specs->type = specs->unsigned_p
9678 ? unsigned_accum_type_node
9679 : accum_type_node;
9681 break;
9682 default:
9683 gcc_unreachable ();
9686 return specs;
9689 /* A subroutine of c_write_global_declarations. Perform final processing
9690 on one file scope's declarations (or the external scope's declarations),
9691 GLOBALS. */
9693 static void
9694 c_write_global_declarations_1 (tree globals)
9696 tree decl;
9697 bool reconsider;
9699 /* Process the decls in the order they were written. */
9700 for (decl = globals; decl; decl = DECL_CHAIN (decl))
9702 /* Check for used but undefined static functions using the C
9703 standard's definition of "used", and set TREE_NO_WARNING so
9704 that check_global_declarations doesn't repeat the check. */
9705 if (TREE_CODE (decl) == FUNCTION_DECL
9706 && DECL_INITIAL (decl) == 0
9707 && DECL_EXTERNAL (decl)
9708 && !TREE_PUBLIC (decl)
9709 && C_DECL_USED (decl))
9711 pedwarn (input_location, 0, "%q+F used but never defined", decl);
9712 TREE_NO_WARNING (decl) = 1;
9715 wrapup_global_declaration_1 (decl);
9720 reconsider = false;
9721 for (decl = globals; decl; decl = DECL_CHAIN (decl))
9722 reconsider |= wrapup_global_declaration_2 (decl);
9724 while (reconsider);
9726 for (decl = globals; decl; decl = DECL_CHAIN (decl))
9727 check_global_declaration_1 (decl);
9730 /* A subroutine of c_write_global_declarations Emit debug information for each
9731 of the declarations in GLOBALS. */
9733 static void
9734 c_write_global_declarations_2 (tree globals)
9736 tree decl;
9738 for (decl = globals; decl ; decl = DECL_CHAIN (decl))
9739 debug_hooks->global_decl (decl);
9742 /* Callback to collect a source_ref from a DECL. */
9744 static void
9745 collect_source_ref_cb (tree decl)
9747 if (!DECL_IS_BUILTIN (decl))
9748 collect_source_ref (LOCATION_FILE (decl_sloc (decl, false)));
9751 /* Collect all references relevant to SOURCE_FILE. */
9753 static void
9754 collect_all_refs (const char *source_file)
9756 tree t;
9757 unsigned i;
9759 FOR_EACH_VEC_ELT (tree, all_translation_units, i, t)
9760 collect_ada_nodes (BLOCK_VARS (DECL_INITIAL (t)), source_file);
9763 /* Iterate over all global declarations and call CALLBACK. */
9765 static void
9766 for_each_global_decl (void (*callback) (tree decl))
9768 tree t;
9769 tree decls;
9770 tree decl;
9771 unsigned i;
9773 FOR_EACH_VEC_ELT (tree, all_translation_units, i, t)
9775 decls = DECL_INITIAL (t);
9776 for (decl = BLOCK_VARS (decls); decl; decl = TREE_CHAIN (decl))
9777 callback (decl);
9781 /* Preserve the external declarations scope across a garbage collect. */
9782 static GTY(()) tree ext_block;
9784 void
9785 c_write_global_declarations (void)
9787 tree t;
9788 unsigned i;
9790 /* We don't want to do this if generating a PCH. */
9791 if (pch_file)
9792 return;
9794 /* Do the Objective-C stuff. This is where all the Objective-C
9795 module stuff gets generated (symtab, class/protocol/selector
9796 lists etc). */
9797 if (c_dialect_objc ())
9798 objc_write_global_declarations ();
9800 /* Close the external scope. */
9801 ext_block = pop_scope ();
9802 external_scope = 0;
9803 gcc_assert (!current_scope);
9805 /* Handle -fdump-ada-spec[-slim]. */
9806 if (dump_enabled_p (TDI_ada))
9808 /* Build a table of files to generate specs for */
9809 if (get_dump_file_info (TDI_ada)->flags & TDF_SLIM)
9810 collect_source_ref (main_input_filename);
9811 else
9812 for_each_global_decl (collect_source_ref_cb);
9814 dump_ada_specs (collect_all_refs, NULL);
9817 if (ext_block)
9819 tree tmp = BLOCK_VARS (ext_block);
9820 int flags;
9821 FILE * stream = dump_begin (TDI_tu, &flags);
9822 if (stream && tmp)
9824 dump_node (tmp, flags & ~TDF_SLIM, stream);
9825 dump_end (TDI_tu, stream);
9829 /* Process all file scopes in this compilation, and the external_scope,
9830 through wrapup_global_declarations and check_global_declarations. */
9831 FOR_EACH_VEC_ELT (tree, all_translation_units, i, t)
9832 c_write_global_declarations_1 (BLOCK_VARS (DECL_INITIAL (t)));
9833 c_write_global_declarations_1 (BLOCK_VARS (ext_block));
9835 /* We're done parsing; proceed to optimize and emit assembly.
9836 FIXME: shouldn't be the front end's responsibility to call this. */
9837 cgraph_finalize_compilation_unit ();
9839 /* After cgraph has had a chance to emit everything that's going to
9840 be emitted, output debug information for globals. */
9841 if (!seen_error ())
9843 timevar_push (TV_SYMOUT);
9844 FOR_EACH_VEC_ELT (tree, all_translation_units, i, t)
9845 c_write_global_declarations_2 (BLOCK_VARS (DECL_INITIAL (t)));
9846 c_write_global_declarations_2 (BLOCK_VARS (ext_block));
9847 timevar_pop (TV_SYMOUT);
9850 ext_block = NULL;
9853 /* Register reserved keyword WORD as qualifier for address space AS. */
9855 void
9856 c_register_addr_space (const char *word, addr_space_t as)
9858 int rid = RID_FIRST_ADDR_SPACE + as;
9859 tree id;
9861 /* Address space qualifiers are only supported
9862 in C with GNU extensions enabled. */
9863 if (c_dialect_objc () || flag_no_asm)
9864 return;
9866 id = get_identifier (word);
9867 C_SET_RID_CODE (id, rid);
9868 C_IS_RESERVED_WORD (id) = 1;
9869 ridpointers [rid] = id;
9872 #include "gt-c-decl.h"