* config/rs6000/aix61.h (PROCESSOR_DEFAULT): Change to
[official-gcc.git] / gcc / c-decl.c
blobb438b066c831c5247087f233a709137641c636c2
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-objc.h"
50 #include "c-family/c-pragma.h"
51 #include "c-lang.h"
52 #include "langhooks.h"
53 #include "tree-mudflap.h"
54 #include "tree-iterator.h"
55 #include "diagnostic-core.h"
56 #include "tree-dump.h"
57 #include "cgraph.h"
58 #include "hashtab.h"
59 #include "langhooks-def.h"
60 #include "pointer-set.h"
61 #include "plugin.h"
62 #include "c-family/c-ada-spec.h"
64 /* In grokdeclarator, distinguish syntactic contexts of declarators. */
65 enum decl_context
66 { NORMAL, /* Ordinary declaration */
67 FUNCDEF, /* Function definition */
68 PARM, /* Declaration of parm before function body */
69 FIELD, /* Declaration inside struct or union */
70 TYPENAME}; /* Typename (inside cast or sizeof) */
72 /* States indicating how grokdeclarator() should handle declspecs marked
73 with __attribute__((deprecated)). An object declared as
74 __attribute__((deprecated)) suppresses warnings of uses of other
75 deprecated items. */
77 enum deprecated_states {
78 DEPRECATED_NORMAL,
79 DEPRECATED_SUPPRESS
83 /* Nonzero if we have seen an invalid cross reference
84 to a struct, union, or enum, but not yet printed the message. */
85 tree pending_invalid_xref;
87 /* File and line to appear in the eventual error message. */
88 location_t pending_invalid_xref_location;
90 /* The file and line that the prototype came from if this is an
91 old-style definition; used for diagnostics in
92 store_parm_decls_oldstyle. */
94 static location_t current_function_prototype_locus;
96 /* Whether this prototype was built-in. */
98 static bool current_function_prototype_built_in;
100 /* The argument type information of this prototype. */
102 static tree current_function_prototype_arg_types;
104 /* The argument information structure for the function currently being
105 defined. */
107 static struct c_arg_info *current_function_arg_info;
109 /* The obstack on which parser and related data structures, which are
110 not live beyond their top-level declaration or definition, are
111 allocated. */
112 struct obstack parser_obstack;
114 /* The current statement tree. */
116 static GTY(()) struct stmt_tree_s c_stmt_tree;
118 /* State saving variables. */
119 tree c_break_label;
120 tree c_cont_label;
122 /* A list of decls to be made automatically visible in each file scope. */
123 static GTY(()) tree visible_builtins;
125 /* Set to 0 at beginning of a function definition, set to 1 if
126 a return statement that specifies a return value is seen. */
128 int current_function_returns_value;
130 /* Set to 0 at beginning of a function definition, set to 1 if
131 a return statement with no argument is seen. */
133 int current_function_returns_null;
135 /* Set to 0 at beginning of a function definition, set to 1 if
136 a call to a noreturn function is seen. */
138 int current_function_returns_abnormally;
140 /* Set to nonzero by `grokdeclarator' for a function
141 whose return type is defaulted, if warnings for this are desired. */
143 static int warn_about_return_type;
145 /* Nonzero when the current toplevel function contains a declaration
146 of a nested function which is never defined. */
148 static bool undef_nested_function;
150 /* True means global_bindings_p should return false even if the scope stack
151 says we are in file scope. */
152 bool c_override_global_bindings_to_false;
155 /* Each c_binding structure describes one binding of an identifier to
156 a decl. All the decls in a scope - irrespective of namespace - are
157 chained together by the ->prev field, which (as the name implies)
158 runs in reverse order. All the decls in a given namespace bound to
159 a given identifier are chained by the ->shadowed field, which runs
160 from inner to outer scopes.
162 The ->decl field usually points to a DECL node, but there are two
163 exceptions. In the namespace of type tags, the bound entity is a
164 RECORD_TYPE, UNION_TYPE, or ENUMERAL_TYPE node. If an undeclared
165 identifier is encountered, it is bound to error_mark_node to
166 suppress further errors about that identifier in the current
167 function.
169 The ->u.type field stores the type of the declaration in this scope;
170 if NULL, the type is the type of the ->decl field. This is only of
171 relevance for objects with external or internal linkage which may
172 be redeclared in inner scopes, forming composite types that only
173 persist for the duration of those scopes. In the external scope,
174 this stores the composite of all the types declared for this
175 object, visible or not. The ->inner_comp field (used only at file
176 scope) stores whether an incomplete array type at file scope was
177 completed at an inner scope to an array size other than 1.
179 The ->u.label field is used for labels. It points to a structure
180 which stores additional information used for warnings.
182 The depth field is copied from the scope structure that holds this
183 decl. It is used to preserve the proper ordering of the ->shadowed
184 field (see bind()) and also for a handful of special-case checks.
185 Finally, the invisible bit is true for a decl which should be
186 ignored for purposes of normal name lookup, and the nested bit is
187 true for a decl that's been bound a second time in an inner scope;
188 in all such cases, the binding in the outer scope will have its
189 invisible bit true. */
191 struct GTY((chain_next ("%h.prev"))) c_binding {
192 union GTY(()) { /* first so GTY desc can use decl */
193 tree GTY((tag ("0"))) type; /* the type in this scope */
194 struct c_label_vars * GTY((tag ("1"))) label; /* for warnings */
195 } GTY((desc ("TREE_CODE (%0.decl) == LABEL_DECL"))) u;
196 tree decl; /* the decl bound */
197 tree id; /* the identifier it's bound to */
198 struct c_binding *prev; /* the previous decl in this scope */
199 struct c_binding *shadowed; /* the innermost decl shadowed by this one */
200 unsigned int depth : 28; /* depth of this scope */
201 BOOL_BITFIELD invisible : 1; /* normal lookup should ignore this binding */
202 BOOL_BITFIELD nested : 1; /* do not set DECL_CONTEXT when popping */
203 BOOL_BITFIELD inner_comp : 1; /* incomplete array completed in inner scope */
204 BOOL_BITFIELD in_struct : 1; /* currently defined as struct field */
205 location_t locus; /* location for nested bindings */
207 #define B_IN_SCOPE(b1, b2) ((b1)->depth == (b2)->depth)
208 #define B_IN_CURRENT_SCOPE(b) ((b)->depth == current_scope->depth)
209 #define B_IN_FILE_SCOPE(b) ((b)->depth == 1 /*file_scope->depth*/)
210 #define B_IN_EXTERNAL_SCOPE(b) ((b)->depth == 0 /*external_scope->depth*/)
212 #define I_SYMBOL_BINDING(node) \
213 (((struct lang_identifier *) IDENTIFIER_NODE_CHECK(node))->symbol_binding)
214 #define I_SYMBOL_DECL(node) \
215 (I_SYMBOL_BINDING(node) ? I_SYMBOL_BINDING(node)->decl : 0)
217 #define I_TAG_BINDING(node) \
218 (((struct lang_identifier *) IDENTIFIER_NODE_CHECK(node))->tag_binding)
219 #define I_TAG_DECL(node) \
220 (I_TAG_BINDING(node) ? I_TAG_BINDING(node)->decl : 0)
222 #define I_LABEL_BINDING(node) \
223 (((struct lang_identifier *) IDENTIFIER_NODE_CHECK(node))->label_binding)
224 #define I_LABEL_DECL(node) \
225 (I_LABEL_BINDING(node) ? I_LABEL_BINDING(node)->decl : 0)
227 /* Each C symbol points to three linked lists of c_binding structures.
228 These describe the values of the identifier in the three different
229 namespaces defined by the language. */
231 struct GTY(()) lang_identifier {
232 struct c_common_identifier common_id;
233 struct c_binding *symbol_binding; /* vars, funcs, constants, typedefs */
234 struct c_binding *tag_binding; /* struct/union/enum tags */
235 struct c_binding *label_binding; /* labels */
238 /* Validate c-lang.c's assumptions. */
239 extern char C_SIZEOF_STRUCT_LANG_IDENTIFIER_isnt_accurate
240 [(sizeof(struct lang_identifier) == C_SIZEOF_STRUCT_LANG_IDENTIFIER) ? 1 : -1];
242 /* The resulting tree type. */
244 union GTY((desc ("TREE_CODE (&%h.generic) == IDENTIFIER_NODE"),
245 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
247 union tree_node GTY ((tag ("0"),
248 desc ("tree_node_structure (&%h)")))
249 generic;
250 struct lang_identifier GTY ((tag ("1"))) identifier;
253 /* Track bindings and other things that matter for goto warnings. For
254 efficiency, we do not gather all the decls at the point of
255 definition. Instead, we point into the bindings structure. As
256 scopes are popped, we update these structures and gather the decls
257 that matter at that time. */
259 struct GTY(()) c_spot_bindings {
260 /* The currently open scope which holds bindings defined when the
261 label was defined or the goto statement was found. */
262 struct c_scope *scope;
263 /* The bindings in the scope field which were defined at the point
264 of the label or goto. This lets us look at older or newer
265 bindings in the scope, as appropriate. */
266 struct c_binding *bindings_in_scope;
267 /* The number of statement expressions that have started since this
268 label or goto statement was defined. This is zero if we are at
269 the same statement expression level. It is positive if we are in
270 a statement expression started since this spot. It is negative
271 if this spot was in a statement expression and we have left
272 it. */
273 int stmt_exprs;
274 /* Whether we started in a statement expression but are no longer in
275 it. This is set to true if stmt_exprs ever goes negative. */
276 bool left_stmt_expr;
279 /* This structure is used to keep track of bindings seen when a goto
280 statement is defined. This is only used if we see the goto
281 statement before we see the label. */
283 struct GTY(()) c_goto_bindings {
284 /* The location of the goto statement. */
285 location_t loc;
286 /* The bindings of the goto statement. */
287 struct c_spot_bindings goto_bindings;
290 typedef struct c_goto_bindings *c_goto_bindings_p;
291 DEF_VEC_P(c_goto_bindings_p);
292 DEF_VEC_ALLOC_P(c_goto_bindings_p,gc);
294 /* The additional information we keep track of for a label binding.
295 These fields are updated as scopes are popped. */
297 struct GTY(()) c_label_vars {
298 /* The shadowed c_label_vars, when one label shadows another (which
299 can only happen using a __label__ declaration). */
300 struct c_label_vars *shadowed;
301 /* The bindings when the label was defined. */
302 struct c_spot_bindings label_bindings;
303 /* A list of decls that we care about: decls about which we should
304 warn if a goto branches to this label from later in the function.
305 Decls are added to this list as scopes are popped. We only add
306 the decls that matter. */
307 VEC(tree,gc) *decls_in_scope;
308 /* A list of goto statements to this label. This is only used for
309 goto statements seen before the label was defined, so that we can
310 issue appropriate warnings for them. */
311 VEC(c_goto_bindings_p,gc) *gotos;
314 /* Each c_scope structure describes the complete contents of one
315 scope. Four scopes are distinguished specially: the innermost or
316 current scope, the innermost function scope, the file scope (always
317 the second to outermost) and the outermost or external scope.
319 Most declarations are recorded in the current scope.
321 All normal label declarations are recorded in the innermost
322 function scope, as are bindings of undeclared identifiers to
323 error_mark_node. (GCC permits nested functions as an extension,
324 hence the 'innermost' qualifier.) Explicitly declared labels
325 (using the __label__ extension) appear in the current scope.
327 Being in the file scope (current_scope == file_scope) causes
328 special behavior in several places below. Also, under some
329 conditions the Objective-C front end records declarations in the
330 file scope even though that isn't the current scope.
332 All declarations with external linkage are recorded in the external
333 scope, even if they aren't visible there; this models the fact that
334 such declarations are visible to the entire program, and (with a
335 bit of cleverness, see pushdecl) allows diagnosis of some violations
336 of C99 6.2.2p7 and 6.2.7p2:
338 If, within the same translation unit, the same identifier appears
339 with both internal and external linkage, the behavior is
340 undefined.
342 All declarations that refer to the same object or function shall
343 have compatible type; otherwise, the behavior is undefined.
345 Initially only the built-in declarations, which describe compiler
346 intrinsic functions plus a subset of the standard library, are in
347 this scope.
349 The order of the blocks list matters, and it is frequently appended
350 to. To avoid having to walk all the way to the end of the list on
351 each insertion, or reverse the list later, we maintain a pointer to
352 the last list entry. (FIXME: It should be feasible to use a reversed
353 list here.)
355 The bindings list is strictly in reverse order of declarations;
356 pop_scope relies on this. */
359 struct GTY((chain_next ("%h.outer"))) c_scope {
360 /* The scope containing this one. */
361 struct c_scope *outer;
363 /* The next outermost function scope. */
364 struct c_scope *outer_function;
366 /* All bindings in this scope. */
367 struct c_binding *bindings;
369 /* For each scope (except the global one), a chain of BLOCK nodes
370 for all the scopes that were entered and exited one level down. */
371 tree blocks;
372 tree blocks_last;
374 /* The depth of this scope. Used to keep the ->shadowed chain of
375 bindings sorted innermost to outermost. */
376 unsigned int depth : 28;
378 /* True if we are currently filling this scope with parameter
379 declarations. */
380 BOOL_BITFIELD parm_flag : 1;
382 /* True if we saw [*] in this scope. Used to give an error messages
383 if these appears in a function definition. */
384 BOOL_BITFIELD had_vla_unspec : 1;
386 /* True if we already complained about forward parameter decls
387 in this scope. This prevents double warnings on
388 foo (int a; int b; ...) */
389 BOOL_BITFIELD warned_forward_parm_decls : 1;
391 /* True if this is the outermost block scope of a function body.
392 This scope contains the parameters, the local variables declared
393 in the outermost block, and all the labels (except those in
394 nested functions, or declared at block scope with __label__). */
395 BOOL_BITFIELD function_body : 1;
397 /* True means make a BLOCK for this scope no matter what. */
398 BOOL_BITFIELD keep : 1;
400 /* True means that an unsuffixed float constant is _Decimal64. */
401 BOOL_BITFIELD float_const_decimal64 : 1;
403 /* True if this scope has any label bindings. This is used to speed
404 up searching for labels when popping scopes, particularly since
405 labels are normally only found at function scope. */
406 BOOL_BITFIELD has_label_bindings : 1;
408 /* True if we should issue a warning if a goto statement crosses any
409 of the bindings. We still need to check the list of bindings to
410 find the specific ones we need to warn about. This is true if
411 decl_jump_unsafe would return true for any of the bindings. This
412 is used to avoid looping over all the bindings unnecessarily. */
413 BOOL_BITFIELD has_jump_unsafe_decl : 1;
416 /* The scope currently in effect. */
418 static GTY(()) struct c_scope *current_scope;
420 /* The innermost function scope. Ordinary (not explicitly declared)
421 labels, bindings to error_mark_node, and the lazily-created
422 bindings of __func__ and its friends get this scope. */
424 static GTY(()) struct c_scope *current_function_scope;
426 /* The C file scope. This is reset for each input translation unit. */
428 static GTY(()) struct c_scope *file_scope;
430 /* The outermost scope. This is used for all declarations with
431 external linkage, and only these, hence the name. */
433 static GTY(()) struct c_scope *external_scope;
435 /* A chain of c_scope structures awaiting reuse. */
437 static GTY((deletable)) struct c_scope *scope_freelist;
439 /* A chain of c_binding structures awaiting reuse. */
441 static GTY((deletable)) struct c_binding *binding_freelist;
443 /* Append VAR to LIST in scope SCOPE. */
444 #define SCOPE_LIST_APPEND(scope, list, decl) do { \
445 struct c_scope *s_ = (scope); \
446 tree d_ = (decl); \
447 if (s_->list##_last) \
448 BLOCK_CHAIN (s_->list##_last) = d_; \
449 else \
450 s_->list = d_; \
451 s_->list##_last = d_; \
452 } while (0)
454 /* Concatenate FROM in scope FSCOPE onto TO in scope TSCOPE. */
455 #define SCOPE_LIST_CONCAT(tscope, to, fscope, from) do { \
456 struct c_scope *t_ = (tscope); \
457 struct c_scope *f_ = (fscope); \
458 if (t_->to##_last) \
459 BLOCK_CHAIN (t_->to##_last) = f_->from; \
460 else \
461 t_->to = f_->from; \
462 t_->to##_last = f_->from##_last; \
463 } while (0)
465 /* A c_inline_static structure stores details of a static identifier
466 referenced in a definition of a function that may be an inline
467 definition if no subsequent declaration of that function uses
468 "extern" or does not use "inline". */
470 struct GTY((chain_next ("%h.next"))) c_inline_static {
471 /* The location for a diagnostic. */
472 location_t location;
474 /* The function that may be an inline definition. */
475 tree function;
477 /* The object or function referenced. */
478 tree static_decl;
480 /* What sort of reference this is. */
481 enum c_inline_static_type type;
483 /* The next such structure or NULL. */
484 struct c_inline_static *next;
487 /* List of static identifiers used or referenced in functions that may
488 be inline definitions. */
489 static GTY(()) struct c_inline_static *c_inline_statics;
491 /* True means unconditionally make a BLOCK for the next scope pushed. */
493 static bool keep_next_level_flag;
495 /* True means the next call to push_scope will be the outermost scope
496 of a function body, so do not push a new scope, merely cease
497 expecting parameter decls. */
499 static bool next_is_function_body;
501 /* A VEC of pointers to c_binding structures. */
503 typedef struct c_binding *c_binding_ptr;
504 DEF_VEC_P(c_binding_ptr);
505 DEF_VEC_ALLOC_P(c_binding_ptr,heap);
507 /* Information that we keep for a struct or union while it is being
508 parsed. */
510 struct c_struct_parse_info
512 /* If warn_cxx_compat, a list of types defined within this
513 struct. */
514 VEC(tree,heap) *struct_types;
515 /* If warn_cxx_compat, a list of field names which have bindings,
516 and which are defined in this struct, but which are not defined
517 in any enclosing struct. This is used to clear the in_struct
518 field of the c_bindings structure. */
519 VEC(c_binding_ptr,heap) *fields;
520 /* If warn_cxx_compat, a list of typedef names used when defining
521 fields in this struct. */
522 VEC(tree,heap) *typedefs_seen;
525 /* Information for the struct or union currently being parsed, or
526 NULL if not parsing a struct or union. */
527 static struct c_struct_parse_info *struct_parse_info;
529 /* Forward declarations. */
530 static tree lookup_name_in_scope (tree, struct c_scope *);
531 static tree c_make_fname_decl (location_t, tree, int);
532 static tree grokdeclarator (const struct c_declarator *,
533 struct c_declspecs *,
534 enum decl_context, bool, tree *, tree *, tree *,
535 bool *, enum deprecated_states);
536 static tree grokparms (struct c_arg_info *, bool);
537 static void layout_array_type (tree);
539 /* T is a statement. Add it to the statement-tree. This is the
540 C/ObjC version--C++ has a slightly different version of this
541 function. */
543 tree
544 add_stmt (tree t)
546 enum tree_code code = TREE_CODE (t);
548 if (CAN_HAVE_LOCATION_P (t) && code != LABEL_EXPR)
550 if (!EXPR_HAS_LOCATION (t))
551 SET_EXPR_LOCATION (t, input_location);
554 if (code == LABEL_EXPR || code == CASE_LABEL_EXPR)
555 STATEMENT_LIST_HAS_LABEL (cur_stmt_list) = 1;
557 /* Add T to the statement-tree. Non-side-effect statements need to be
558 recorded during statement expressions. */
559 append_to_statement_list_force (t, &cur_stmt_list);
561 return t;
564 /* Return true if we will want to say something if a goto statement
565 crosses DECL. */
567 static bool
568 decl_jump_unsafe (tree decl)
570 if (decl == error_mark_node || TREE_TYPE (decl) == error_mark_node)
571 return false;
573 /* Always warn about crossing variably modified types. */
574 if ((TREE_CODE (decl) == VAR_DECL || TREE_CODE (decl) == TYPE_DECL)
575 && variably_modified_type_p (TREE_TYPE (decl), NULL_TREE))
576 return true;
578 /* Otherwise, only warn if -Wgoto-misses-init and this is an
579 initialized automatic decl. */
580 if (warn_jump_misses_init
581 && TREE_CODE (decl) == VAR_DECL
582 && !TREE_STATIC (decl)
583 && DECL_INITIAL (decl) != NULL_TREE)
584 return true;
586 return false;
590 void
591 c_print_identifier (FILE *file, tree node, int indent)
593 print_node (file, "symbol", I_SYMBOL_DECL (node), indent + 4);
594 print_node (file, "tag", I_TAG_DECL (node), indent + 4);
595 print_node (file, "label", I_LABEL_DECL (node), indent + 4);
596 if (C_IS_RESERVED_WORD (node) && C_RID_CODE (node) != RID_CXX_COMPAT_WARN)
598 tree rid = ridpointers[C_RID_CODE (node)];
599 indent_to (file, indent + 4);
600 fprintf (file, "rid " HOST_PTR_PRINTF " \"%s\"",
601 (void *) rid, IDENTIFIER_POINTER (rid));
605 /* Establish a binding between NAME, an IDENTIFIER_NODE, and DECL,
606 which may be any of several kinds of DECL or TYPE or error_mark_node,
607 in the scope SCOPE. */
608 static void
609 bind (tree name, tree decl, struct c_scope *scope, bool invisible,
610 bool nested, location_t locus)
612 struct c_binding *b, **here;
614 if (binding_freelist)
616 b = binding_freelist;
617 binding_freelist = b->prev;
619 else
620 b = ggc_alloc_c_binding ();
622 b->shadowed = 0;
623 b->decl = decl;
624 b->id = name;
625 b->depth = scope->depth;
626 b->invisible = invisible;
627 b->nested = nested;
628 b->inner_comp = 0;
629 b->in_struct = 0;
630 b->locus = locus;
632 b->u.type = NULL;
634 b->prev = scope->bindings;
635 scope->bindings = b;
637 if (decl_jump_unsafe (decl))
638 scope->has_jump_unsafe_decl = 1;
640 if (!name)
641 return;
643 switch (TREE_CODE (decl))
645 case LABEL_DECL: here = &I_LABEL_BINDING (name); break;
646 case ENUMERAL_TYPE:
647 case UNION_TYPE:
648 case RECORD_TYPE: here = &I_TAG_BINDING (name); break;
649 case VAR_DECL:
650 case FUNCTION_DECL:
651 case TYPE_DECL:
652 case CONST_DECL:
653 case PARM_DECL:
654 case ERROR_MARK: here = &I_SYMBOL_BINDING (name); break;
656 default:
657 gcc_unreachable ();
660 /* Locate the appropriate place in the chain of shadowed decls
661 to insert this binding. Normally, scope == current_scope and
662 this does nothing. */
663 while (*here && (*here)->depth > scope->depth)
664 here = &(*here)->shadowed;
666 b->shadowed = *here;
667 *here = b;
670 /* Clear the binding structure B, stick it on the binding_freelist,
671 and return the former value of b->prev. This is used by pop_scope
672 and get_parm_info to iterate destructively over all the bindings
673 from a given scope. */
674 static struct c_binding *
675 free_binding_and_advance (struct c_binding *b)
677 struct c_binding *prev = b->prev;
679 memset (b, 0, sizeof (struct c_binding));
680 b->prev = binding_freelist;
681 binding_freelist = b;
683 return prev;
686 /* Bind a label. Like bind, but skip fields which aren't used for
687 labels, and add the LABEL_VARS value. */
688 static void
689 bind_label (tree name, tree label, struct c_scope *scope,
690 struct c_label_vars *label_vars)
692 struct c_binding *b;
694 bind (name, label, scope, /*invisible=*/false, /*nested=*/false,
695 UNKNOWN_LOCATION);
697 scope->has_label_bindings = true;
699 b = scope->bindings;
700 gcc_assert (b->decl == label);
701 label_vars->shadowed = b->u.label;
702 b->u.label = label_vars;
705 /* Hook called at end of compilation to assume 1 elt
706 for a file-scope tentative array defn that wasn't complete before. */
708 void
709 c_finish_incomplete_decl (tree decl)
711 if (TREE_CODE (decl) == VAR_DECL)
713 tree type = TREE_TYPE (decl);
714 if (type != error_mark_node
715 && TREE_CODE (type) == ARRAY_TYPE
716 && !DECL_EXTERNAL (decl)
717 && TYPE_DOMAIN (type) == 0)
719 warning_at (DECL_SOURCE_LOCATION (decl),
720 0, "array %q+D assumed to have one element", decl);
722 complete_array_type (&TREE_TYPE (decl), NULL_TREE, true);
724 layout_decl (decl, 0);
729 /* Record that inline function FUNC contains a reference (location
730 LOC) to static DECL (file-scope or function-local according to
731 TYPE). */
733 void
734 record_inline_static (location_t loc, tree func, tree decl,
735 enum c_inline_static_type type)
737 struct c_inline_static *csi = ggc_alloc_c_inline_static ();
738 csi->location = loc;
739 csi->function = func;
740 csi->static_decl = decl;
741 csi->type = type;
742 csi->next = c_inline_statics;
743 c_inline_statics = csi;
746 /* Check for references to static declarations in inline functions at
747 the end of the translation unit and diagnose them if the functions
748 are still inline definitions. */
750 static void
751 check_inline_statics (void)
753 struct c_inline_static *csi;
754 for (csi = c_inline_statics; csi; csi = csi->next)
756 if (DECL_EXTERNAL (csi->function))
757 switch (csi->type)
759 case csi_internal:
760 pedwarn (csi->location, 0,
761 "%qD is static but used in inline function %qD "
762 "which is not static", csi->static_decl, csi->function);
763 break;
764 case csi_modifiable:
765 pedwarn (csi->location, 0,
766 "%q+D is static but declared in inline function %qD "
767 "which is not static", csi->static_decl, csi->function);
768 break;
769 default:
770 gcc_unreachable ();
773 c_inline_statics = NULL;
776 /* Fill in a c_spot_bindings structure. If DEFINING is true, set it
777 for the current state, otherwise set it to uninitialized. */
779 static void
780 set_spot_bindings (struct c_spot_bindings *p, bool defining)
782 if (defining)
784 p->scope = current_scope;
785 p->bindings_in_scope = current_scope->bindings;
787 else
789 p->scope = NULL;
790 p->bindings_in_scope = NULL;
792 p->stmt_exprs = 0;
793 p->left_stmt_expr = false;
796 /* Update spot bindings P as we pop out of SCOPE. Return true if we
797 should push decls for a label. */
799 static bool
800 update_spot_bindings (struct c_scope *scope, struct c_spot_bindings *p)
802 if (p->scope != scope)
804 /* This label or goto is defined in some other scope, or it is a
805 label which is not yet defined. There is nothing to
806 update. */
807 return false;
810 /* Adjust the spot bindings to refer to the bindings already defined
811 in the enclosing scope. */
812 p->scope = scope->outer;
813 p->bindings_in_scope = p->scope->bindings;
815 return true;
818 /* The Objective-C front-end often needs to determine the current scope. */
820 void *
821 objc_get_current_scope (void)
823 return current_scope;
826 /* The following function is used only by Objective-C. It needs to live here
827 because it accesses the innards of c_scope. */
829 void
830 objc_mark_locals_volatile (void *enclosing_blk)
832 struct c_scope *scope;
833 struct c_binding *b;
835 for (scope = current_scope;
836 scope && scope != enclosing_blk;
837 scope = scope->outer)
839 for (b = scope->bindings; b; b = b->prev)
840 objc_volatilize_decl (b->decl);
842 /* Do not climb up past the current function. */
843 if (scope->function_body)
844 break;
848 /* Nonzero if we are currently in file scope. */
851 global_bindings_p (void)
853 return (current_scope == file_scope && !c_override_global_bindings_to_false
854 ? -1
855 : 0);
858 void
859 keep_next_level (void)
861 keep_next_level_flag = true;
864 /* Set the flag for the FLOAT_CONST_DECIMAL64 pragma being ON. */
866 void
867 set_float_const_decimal64 (void)
869 current_scope->float_const_decimal64 = true;
872 /* Clear the flag for the FLOAT_CONST_DECIMAL64 pragma. */
874 void
875 clear_float_const_decimal64 (void)
877 current_scope->float_const_decimal64 = false;
880 /* Return nonzero if an unsuffixed float constant is _Decimal64. */
882 bool
883 float_const_decimal64_p (void)
885 return current_scope->float_const_decimal64;
888 /* Identify this scope as currently being filled with parameters. */
890 void
891 declare_parm_level (void)
893 current_scope->parm_flag = true;
896 void
897 push_scope (void)
899 if (next_is_function_body)
901 /* This is the transition from the parameters to the top level
902 of the function body. These are the same scope
903 (C99 6.2.1p4,6) so we do not push another scope structure.
904 next_is_function_body is set only by store_parm_decls, which
905 in turn is called when and only when we are about to
906 encounter the opening curly brace for the function body.
908 The outermost block of a function always gets a BLOCK node,
909 because the debugging output routines expect that each
910 function has at least one BLOCK. */
911 current_scope->parm_flag = false;
912 current_scope->function_body = true;
913 current_scope->keep = true;
914 current_scope->outer_function = current_function_scope;
915 current_function_scope = current_scope;
917 keep_next_level_flag = false;
918 next_is_function_body = false;
920 /* The FLOAT_CONST_DECIMAL64 pragma applies to nested scopes. */
921 if (current_scope->outer)
922 current_scope->float_const_decimal64
923 = current_scope->outer->float_const_decimal64;
924 else
925 current_scope->float_const_decimal64 = false;
927 else
929 struct c_scope *scope;
930 if (scope_freelist)
932 scope = scope_freelist;
933 scope_freelist = scope->outer;
935 else
936 scope = ggc_alloc_cleared_c_scope ();
938 /* The FLOAT_CONST_DECIMAL64 pragma applies to nested scopes. */
939 if (current_scope)
940 scope->float_const_decimal64 = current_scope->float_const_decimal64;
941 else
942 scope->float_const_decimal64 = false;
944 scope->keep = keep_next_level_flag;
945 scope->outer = current_scope;
946 scope->depth = current_scope ? (current_scope->depth + 1) : 0;
948 /* Check for scope depth overflow. Unlikely (2^28 == 268,435,456) but
949 possible. */
950 if (current_scope && scope->depth == 0)
952 scope->depth--;
953 sorry ("GCC supports only %u nested scopes", scope->depth);
956 current_scope = scope;
957 keep_next_level_flag = false;
961 /* This is called when we are leaving SCOPE. For each label defined
962 in SCOPE, add any appropriate decls to its decls_in_scope fields.
963 These are the decls whose initialization will be skipped by a goto
964 later in the function. */
966 static void
967 update_label_decls (struct c_scope *scope)
969 struct c_scope *s;
971 s = scope;
972 while (s != NULL)
974 if (s->has_label_bindings)
976 struct c_binding *b;
978 for (b = s->bindings; b != NULL; b = b->prev)
980 struct c_label_vars *label_vars;
981 struct c_binding *b1;
982 bool hjud;
983 unsigned int ix;
984 struct c_goto_bindings *g;
986 if (TREE_CODE (b->decl) != LABEL_DECL)
987 continue;
988 label_vars = b->u.label;
990 b1 = label_vars->label_bindings.bindings_in_scope;
991 if (label_vars->label_bindings.scope == NULL)
992 hjud = false;
993 else
994 hjud = label_vars->label_bindings.scope->has_jump_unsafe_decl;
995 if (update_spot_bindings (scope, &label_vars->label_bindings))
997 /* This label is defined in this scope. */
998 if (hjud)
1000 for (; b1 != NULL; b1 = b1->prev)
1002 /* A goto from later in the function to this
1003 label will never see the initialization
1004 of B1, if any. Save it to issue a
1005 warning if needed. */
1006 if (decl_jump_unsafe (b1->decl))
1007 VEC_safe_push (tree, gc,
1008 label_vars->decls_in_scope,
1009 b1->decl);
1014 /* Update the bindings of any goto statements associated
1015 with this label. */
1016 FOR_EACH_VEC_ELT (c_goto_bindings_p, label_vars->gotos, ix, g)
1017 update_spot_bindings (scope, &g->goto_bindings);
1021 /* Don't search beyond the current function. */
1022 if (s == current_function_scope)
1023 break;
1025 s = s->outer;
1029 /* Set the TYPE_CONTEXT of all of TYPE's variants to CONTEXT. */
1031 static void
1032 set_type_context (tree type, tree context)
1034 for (type = TYPE_MAIN_VARIANT (type); type;
1035 type = TYPE_NEXT_VARIANT (type))
1036 TYPE_CONTEXT (type) = context;
1039 /* Exit a scope. Restore the state of the identifier-decl mappings
1040 that were in effect when this scope was entered. Return a BLOCK
1041 node containing all the DECLs in this scope that are of interest
1042 to debug info generation. */
1044 tree
1045 pop_scope (void)
1047 struct c_scope *scope = current_scope;
1048 tree block, context, p;
1049 struct c_binding *b;
1051 bool functionbody = scope->function_body;
1052 bool keep = functionbody || scope->keep || scope->bindings;
1054 update_label_decls (scope);
1056 /* If appropriate, create a BLOCK to record the decls for the life
1057 of this function. */
1058 block = 0;
1059 if (keep)
1061 block = make_node (BLOCK);
1062 BLOCK_SUBBLOCKS (block) = scope->blocks;
1063 TREE_USED (block) = 1;
1065 /* In each subblock, record that this is its superior. */
1066 for (p = scope->blocks; p; p = BLOCK_CHAIN (p))
1067 BLOCK_SUPERCONTEXT (p) = block;
1069 BLOCK_VARS (block) = 0;
1072 /* The TYPE_CONTEXTs for all of the tagged types belonging to this
1073 scope must be set so that they point to the appropriate
1074 construct, i.e. either to the current FUNCTION_DECL node, or
1075 else to the BLOCK node we just constructed.
1077 Note that for tagged types whose scope is just the formal
1078 parameter list for some function type specification, we can't
1079 properly set their TYPE_CONTEXTs here, because we don't have a
1080 pointer to the appropriate FUNCTION_TYPE node readily available
1081 to us. For those cases, the TYPE_CONTEXTs of the relevant tagged
1082 type nodes get set in `grokdeclarator' as soon as we have created
1083 the FUNCTION_TYPE node which will represent the "scope" for these
1084 "parameter list local" tagged types. */
1085 if (scope->function_body)
1086 context = current_function_decl;
1087 else if (scope == file_scope)
1089 tree file_decl = build_translation_unit_decl (NULL_TREE);
1090 context = file_decl;
1092 else
1093 context = block;
1095 /* Clear all bindings in this scope. */
1096 for (b = scope->bindings; b; b = free_binding_and_advance (b))
1098 p = b->decl;
1099 switch (TREE_CODE (p))
1101 case LABEL_DECL:
1102 /* Warnings for unused labels, errors for undefined labels. */
1103 if (TREE_USED (p) && !DECL_INITIAL (p))
1105 error ("label %q+D used but not defined", p);
1106 DECL_INITIAL (p) = error_mark_node;
1108 else
1109 warn_for_unused_label (p);
1111 /* Labels go in BLOCK_VARS. */
1112 DECL_CHAIN (p) = BLOCK_VARS (block);
1113 BLOCK_VARS (block) = p;
1114 gcc_assert (I_LABEL_BINDING (b->id) == b);
1115 I_LABEL_BINDING (b->id) = b->shadowed;
1117 /* Also pop back to the shadowed label_vars. */
1118 release_tree_vector (b->u.label->decls_in_scope);
1119 b->u.label = b->u.label->shadowed;
1120 break;
1122 case ENUMERAL_TYPE:
1123 case UNION_TYPE:
1124 case RECORD_TYPE:
1125 set_type_context (p, context);
1127 /* Types may not have tag-names, in which case the type
1128 appears in the bindings list with b->id NULL. */
1129 if (b->id)
1131 gcc_assert (I_TAG_BINDING (b->id) == b);
1132 I_TAG_BINDING (b->id) = b->shadowed;
1134 break;
1136 case FUNCTION_DECL:
1137 /* Propagate TREE_ADDRESSABLE from nested functions to their
1138 containing functions. */
1139 if (!TREE_ASM_WRITTEN (p)
1140 && DECL_INITIAL (p) != 0
1141 && TREE_ADDRESSABLE (p)
1142 && DECL_ABSTRACT_ORIGIN (p) != 0
1143 && DECL_ABSTRACT_ORIGIN (p) != p)
1144 TREE_ADDRESSABLE (DECL_ABSTRACT_ORIGIN (p)) = 1;
1145 if (!DECL_EXTERNAL (p)
1146 && !DECL_INITIAL (p)
1147 && scope != file_scope
1148 && scope != external_scope)
1150 error ("nested function %q+D declared but never defined", p);
1151 undef_nested_function = true;
1153 else if (DECL_DECLARED_INLINE_P (p)
1154 && TREE_PUBLIC (p)
1155 && !DECL_INITIAL (p))
1157 /* C99 6.7.4p6: "a function with external linkage... declared
1158 with an inline function specifier ... shall also be defined
1159 in the same translation unit." */
1160 if (!flag_gnu89_inline)
1161 pedwarn (input_location, 0,
1162 "inline function %q+D declared but never defined", p);
1163 DECL_EXTERNAL (p) = 1;
1166 goto common_symbol;
1168 case VAR_DECL:
1169 /* Warnings for unused variables. */
1170 if ((!TREE_USED (p) || !DECL_READ_P (p))
1171 && !TREE_NO_WARNING (p)
1172 && !DECL_IN_SYSTEM_HEADER (p)
1173 && DECL_NAME (p)
1174 && !DECL_ARTIFICIAL (p)
1175 && scope != file_scope
1176 && scope != external_scope)
1178 if (!TREE_USED (p))
1179 warning (OPT_Wunused_variable, "unused variable %q+D", p);
1180 else if (DECL_CONTEXT (p) == current_function_decl)
1181 warning_at (DECL_SOURCE_LOCATION (p),
1182 OPT_Wunused_but_set_variable,
1183 "variable %qD set but not used", p);
1186 if (b->inner_comp)
1188 error ("type of array %q+D completed incompatibly with"
1189 " implicit initialization", p);
1192 /* Fall through. */
1193 case TYPE_DECL:
1194 case CONST_DECL:
1195 common_symbol:
1196 /* All of these go in BLOCK_VARS, but only if this is the
1197 binding in the home scope. */
1198 if (!b->nested)
1200 DECL_CHAIN (p) = BLOCK_VARS (block);
1201 BLOCK_VARS (block) = p;
1203 else if (VAR_OR_FUNCTION_DECL_P (p))
1205 /* For block local externs add a special
1206 DECL_EXTERNAL decl for debug info generation. */
1207 tree extp = copy_node (p);
1209 DECL_EXTERNAL (extp) = 1;
1210 TREE_STATIC (extp) = 0;
1211 TREE_PUBLIC (extp) = 1;
1212 DECL_INITIAL (extp) = NULL_TREE;
1213 DECL_LANG_SPECIFIC (extp) = NULL;
1214 DECL_CONTEXT (extp) = current_function_decl;
1215 if (TREE_CODE (p) == FUNCTION_DECL)
1217 DECL_RESULT (extp) = NULL_TREE;
1218 DECL_SAVED_TREE (extp) = NULL_TREE;
1219 DECL_STRUCT_FUNCTION (extp) = NULL;
1221 if (b->locus != UNKNOWN_LOCATION)
1222 DECL_SOURCE_LOCATION (extp) = b->locus;
1223 DECL_CHAIN (extp) = BLOCK_VARS (block);
1224 BLOCK_VARS (block) = extp;
1226 /* If this is the file scope set DECL_CONTEXT of each decl to
1227 the TRANSLATION_UNIT_DECL. This makes same_translation_unit_p
1228 work. */
1229 if (scope == file_scope)
1231 DECL_CONTEXT (p) = context;
1232 if (TREE_CODE (p) == TYPE_DECL
1233 && TREE_TYPE (p) != error_mark_node)
1234 set_type_context (TREE_TYPE (p), context);
1237 /* Fall through. */
1238 /* Parameters go in DECL_ARGUMENTS, not BLOCK_VARS, and have
1239 already been put there by store_parm_decls. Unused-
1240 parameter warnings are handled by function.c.
1241 error_mark_node obviously does not go in BLOCK_VARS and
1242 does not get unused-variable warnings. */
1243 case PARM_DECL:
1244 case ERROR_MARK:
1245 /* It is possible for a decl not to have a name. We get
1246 here with b->id NULL in this case. */
1247 if (b->id)
1249 gcc_assert (I_SYMBOL_BINDING (b->id) == b);
1250 I_SYMBOL_BINDING (b->id) = b->shadowed;
1251 if (b->shadowed && b->shadowed->u.type)
1252 TREE_TYPE (b->shadowed->decl) = b->shadowed->u.type;
1254 break;
1256 default:
1257 gcc_unreachable ();
1262 /* Dispose of the block that we just made inside some higher level. */
1263 if ((scope->function_body || scope == file_scope) && context)
1265 DECL_INITIAL (context) = block;
1266 BLOCK_SUPERCONTEXT (block) = context;
1268 else if (scope->outer)
1270 if (block)
1271 SCOPE_LIST_APPEND (scope->outer, blocks, block);
1272 /* If we did not make a block for the scope just exited, any
1273 blocks made for inner scopes must be carried forward so they
1274 will later become subblocks of something else. */
1275 else if (scope->blocks)
1276 SCOPE_LIST_CONCAT (scope->outer, blocks, scope, blocks);
1279 /* Pop the current scope, and free the structure for reuse. */
1280 current_scope = scope->outer;
1281 if (scope->function_body)
1282 current_function_scope = scope->outer_function;
1284 memset (scope, 0, sizeof (struct c_scope));
1285 scope->outer = scope_freelist;
1286 scope_freelist = scope;
1288 return block;
1291 void
1292 push_file_scope (void)
1294 tree decl;
1296 if (file_scope)
1297 return;
1299 push_scope ();
1300 file_scope = current_scope;
1302 start_fname_decls ();
1304 for (decl = visible_builtins; decl; decl = DECL_CHAIN (decl))
1305 bind (DECL_NAME (decl), decl, file_scope,
1306 /*invisible=*/false, /*nested=*/true, DECL_SOURCE_LOCATION (decl));
1309 void
1310 pop_file_scope (void)
1312 /* In case there were missing closebraces, get us back to the global
1313 binding level. */
1314 while (current_scope != file_scope)
1315 pop_scope ();
1317 /* __FUNCTION__ is defined at file scope (""). This
1318 call may not be necessary as my tests indicate it
1319 still works without it. */
1320 finish_fname_decls ();
1322 check_inline_statics ();
1324 /* This is the point to write out a PCH if we're doing that.
1325 In that case we do not want to do anything else. */
1326 if (pch_file)
1328 c_common_write_pch ();
1329 return;
1332 /* Pop off the file scope and close this translation unit. */
1333 pop_scope ();
1334 file_scope = 0;
1336 maybe_apply_pending_pragma_weaks ();
1339 /* Adjust the bindings for the start of a statement expression. */
1341 void
1342 c_bindings_start_stmt_expr (struct c_spot_bindings* switch_bindings)
1344 struct c_scope *scope;
1346 for (scope = current_scope; scope != NULL; scope = scope->outer)
1348 struct c_binding *b;
1350 if (!scope->has_label_bindings)
1351 continue;
1353 for (b = scope->bindings; b != NULL; b = b->prev)
1355 struct c_label_vars *label_vars;
1356 unsigned int ix;
1357 struct c_goto_bindings *g;
1359 if (TREE_CODE (b->decl) != LABEL_DECL)
1360 continue;
1361 label_vars = b->u.label;
1362 ++label_vars->label_bindings.stmt_exprs;
1363 FOR_EACH_VEC_ELT (c_goto_bindings_p, label_vars->gotos, ix, g)
1364 ++g->goto_bindings.stmt_exprs;
1368 if (switch_bindings != NULL)
1369 ++switch_bindings->stmt_exprs;
1372 /* Adjust the bindings for the end of a statement expression. */
1374 void
1375 c_bindings_end_stmt_expr (struct c_spot_bindings *switch_bindings)
1377 struct c_scope *scope;
1379 for (scope = current_scope; scope != NULL; scope = scope->outer)
1381 struct c_binding *b;
1383 if (!scope->has_label_bindings)
1384 continue;
1386 for (b = scope->bindings; b != NULL; b = b->prev)
1388 struct c_label_vars *label_vars;
1389 unsigned int ix;
1390 struct c_goto_bindings *g;
1392 if (TREE_CODE (b->decl) != LABEL_DECL)
1393 continue;
1394 label_vars = b->u.label;
1395 --label_vars->label_bindings.stmt_exprs;
1396 if (label_vars->label_bindings.stmt_exprs < 0)
1398 label_vars->label_bindings.left_stmt_expr = true;
1399 label_vars->label_bindings.stmt_exprs = 0;
1401 FOR_EACH_VEC_ELT (c_goto_bindings_p, label_vars->gotos, ix, g)
1403 --g->goto_bindings.stmt_exprs;
1404 if (g->goto_bindings.stmt_exprs < 0)
1406 g->goto_bindings.left_stmt_expr = true;
1407 g->goto_bindings.stmt_exprs = 0;
1413 if (switch_bindings != NULL)
1415 --switch_bindings->stmt_exprs;
1416 gcc_assert (switch_bindings->stmt_exprs >= 0);
1420 /* Push a definition or a declaration of struct, union or enum tag "name".
1421 "type" should be the type node.
1422 We assume that the tag "name" is not already defined, and has a location
1423 of LOC.
1425 Note that the definition may really be just a forward reference.
1426 In that case, the TYPE_SIZE will be zero. */
1428 static void
1429 pushtag (location_t loc, tree name, tree type)
1431 /* Record the identifier as the type's name if it has none. */
1432 if (name && !TYPE_NAME (type))
1433 TYPE_NAME (type) = name;
1434 bind (name, type, current_scope, /*invisible=*/false, /*nested=*/false, loc);
1436 /* Create a fake NULL-named TYPE_DECL node whose TREE_TYPE will be the
1437 tagged type we just added to the current scope. This fake
1438 NULL-named TYPE_DECL node helps dwarfout.c to know when it needs
1439 to output a representation of a tagged type, and it also gives
1440 us a convenient place to record the "scope start" address for the
1441 tagged type. */
1443 TYPE_STUB_DECL (type) = pushdecl (build_decl (loc,
1444 TYPE_DECL, NULL_TREE, type));
1446 /* An approximation for now, so we can tell this is a function-scope tag.
1447 This will be updated in pop_scope. */
1448 TYPE_CONTEXT (type) = DECL_CONTEXT (TYPE_STUB_DECL (type));
1450 if (warn_cxx_compat && name != NULL_TREE)
1452 struct c_binding *b = I_SYMBOL_BINDING (name);
1454 if (b != NULL
1455 && b->decl != NULL_TREE
1456 && TREE_CODE (b->decl) == TYPE_DECL
1457 && (B_IN_CURRENT_SCOPE (b)
1458 || (current_scope == file_scope && B_IN_EXTERNAL_SCOPE (b)))
1459 && (TYPE_MAIN_VARIANT (TREE_TYPE (b->decl))
1460 != TYPE_MAIN_VARIANT (type)))
1462 warning_at (loc, OPT_Wc___compat,
1463 ("using %qD as both a typedef and a tag is "
1464 "invalid in C++"),
1465 b->decl);
1466 if (b->locus != UNKNOWN_LOCATION)
1467 inform (b->locus, "originally defined here");
1472 /* Subroutine of compare_decls. Allow harmless mismatches in return
1473 and argument types provided that the type modes match. This function
1474 return a unified type given a suitable match, and 0 otherwise. */
1476 static tree
1477 match_builtin_function_types (tree newtype, tree oldtype)
1479 tree newrettype, oldrettype;
1480 tree newargs, oldargs;
1481 tree trytype, tryargs;
1483 /* Accept the return type of the new declaration if same modes. */
1484 oldrettype = TREE_TYPE (oldtype);
1485 newrettype = TREE_TYPE (newtype);
1487 if (TYPE_MODE (oldrettype) != TYPE_MODE (newrettype))
1488 return 0;
1490 oldargs = TYPE_ARG_TYPES (oldtype);
1491 newargs = TYPE_ARG_TYPES (newtype);
1492 tryargs = newargs;
1494 while (oldargs || newargs)
1496 if (!oldargs
1497 || !newargs
1498 || !TREE_VALUE (oldargs)
1499 || !TREE_VALUE (newargs)
1500 || TYPE_MODE (TREE_VALUE (oldargs))
1501 != TYPE_MODE (TREE_VALUE (newargs)))
1502 return 0;
1504 oldargs = TREE_CHAIN (oldargs);
1505 newargs = TREE_CHAIN (newargs);
1508 trytype = build_function_type (newrettype, tryargs);
1509 return build_type_attribute_variant (trytype, TYPE_ATTRIBUTES (oldtype));
1512 /* Subroutine of diagnose_mismatched_decls. Check for function type
1513 mismatch involving an empty arglist vs a nonempty one and give clearer
1514 diagnostics. */
1515 static void
1516 diagnose_arglist_conflict (tree newdecl, tree olddecl,
1517 tree newtype, tree oldtype)
1519 tree t;
1521 if (TREE_CODE (olddecl) != FUNCTION_DECL
1522 || !comptypes (TREE_TYPE (oldtype), TREE_TYPE (newtype))
1523 || !((!prototype_p (oldtype) && DECL_INITIAL (olddecl) == 0)
1524 || (!prototype_p (newtype) && DECL_INITIAL (newdecl) == 0)))
1525 return;
1527 t = TYPE_ARG_TYPES (oldtype);
1528 if (t == 0)
1529 t = TYPE_ARG_TYPES (newtype);
1530 for (; t; t = TREE_CHAIN (t))
1532 tree type = TREE_VALUE (t);
1534 if (TREE_CHAIN (t) == 0
1535 && TYPE_MAIN_VARIANT (type) != void_type_node)
1537 inform (input_location, "a parameter list with an ellipsis can%'t match "
1538 "an empty parameter name list declaration");
1539 break;
1542 if (c_type_promotes_to (type) != type)
1544 inform (input_location, "an argument type that has a default promotion can%'t match "
1545 "an empty parameter name list declaration");
1546 break;
1551 /* Another subroutine of diagnose_mismatched_decls. OLDDECL is an
1552 old-style function definition, NEWDECL is a prototype declaration.
1553 Diagnose inconsistencies in the argument list. Returns TRUE if
1554 the prototype is compatible, FALSE if not. */
1555 static bool
1556 validate_proto_after_old_defn (tree newdecl, tree newtype, tree oldtype)
1558 tree newargs, oldargs;
1559 int i;
1561 #define END_OF_ARGLIST(t) ((t) == void_type_node)
1563 oldargs = TYPE_ACTUAL_ARG_TYPES (oldtype);
1564 newargs = TYPE_ARG_TYPES (newtype);
1565 i = 1;
1567 for (;;)
1569 tree oldargtype = TREE_VALUE (oldargs);
1570 tree newargtype = TREE_VALUE (newargs);
1572 if (oldargtype == error_mark_node || newargtype == error_mark_node)
1573 return false;
1575 oldargtype = TYPE_MAIN_VARIANT (oldargtype);
1576 newargtype = TYPE_MAIN_VARIANT (newargtype);
1578 if (END_OF_ARGLIST (oldargtype) && END_OF_ARGLIST (newargtype))
1579 break;
1581 /* Reaching the end of just one list means the two decls don't
1582 agree on the number of arguments. */
1583 if (END_OF_ARGLIST (oldargtype))
1585 error ("prototype for %q+D declares more arguments "
1586 "than previous old-style definition", newdecl);
1587 return false;
1589 else if (END_OF_ARGLIST (newargtype))
1591 error ("prototype for %q+D declares fewer arguments "
1592 "than previous old-style definition", newdecl);
1593 return false;
1596 /* Type for passing arg must be consistent with that declared
1597 for the arg. */
1598 else if (!comptypes (oldargtype, newargtype))
1600 error ("prototype for %q+D declares argument %d"
1601 " with incompatible type",
1602 newdecl, i);
1603 return false;
1606 oldargs = TREE_CHAIN (oldargs);
1607 newargs = TREE_CHAIN (newargs);
1608 i++;
1611 /* If we get here, no errors were found, but do issue a warning
1612 for this poor-style construct. */
1613 warning (0, "prototype for %q+D follows non-prototype definition",
1614 newdecl);
1615 return true;
1616 #undef END_OF_ARGLIST
1619 /* Subroutine of diagnose_mismatched_decls. Report the location of DECL,
1620 first in a pair of mismatched declarations, using the diagnostic
1621 function DIAG. */
1622 static void
1623 locate_old_decl (tree decl)
1625 if (TREE_CODE (decl) == FUNCTION_DECL && DECL_BUILT_IN (decl))
1627 else if (DECL_INITIAL (decl))
1628 inform (input_location, "previous definition of %q+D was here", decl);
1629 else if (C_DECL_IMPLICIT (decl))
1630 inform (input_location, "previous implicit declaration of %q+D was here", decl);
1631 else
1632 inform (input_location, "previous declaration of %q+D was here", decl);
1635 /* Subroutine of duplicate_decls. Compare NEWDECL to OLDDECL.
1636 Returns true if the caller should proceed to merge the two, false
1637 if OLDDECL should simply be discarded. As a side effect, issues
1638 all necessary diagnostics for invalid or poor-style combinations.
1639 If it returns true, writes the types of NEWDECL and OLDDECL to
1640 *NEWTYPEP and *OLDTYPEP - these may have been adjusted from
1641 TREE_TYPE (NEWDECL, OLDDECL) respectively. */
1643 static bool
1644 diagnose_mismatched_decls (tree newdecl, tree olddecl,
1645 tree *newtypep, tree *oldtypep)
1647 tree newtype, oldtype;
1648 bool pedwarned = false;
1649 bool warned = false;
1650 bool retval = true;
1652 #define DECL_EXTERN_INLINE(DECL) (DECL_DECLARED_INLINE_P (DECL) \
1653 && DECL_EXTERNAL (DECL))
1655 /* If we have error_mark_node for either decl or type, just discard
1656 the previous decl - we're in an error cascade already. */
1657 if (olddecl == error_mark_node || newdecl == error_mark_node)
1658 return false;
1659 *oldtypep = oldtype = TREE_TYPE (olddecl);
1660 *newtypep = newtype = TREE_TYPE (newdecl);
1661 if (oldtype == error_mark_node || newtype == error_mark_node)
1662 return false;
1664 /* Two different categories of symbol altogether. This is an error
1665 unless OLDDECL is a builtin. OLDDECL will be discarded in any case. */
1666 if (TREE_CODE (olddecl) != TREE_CODE (newdecl))
1668 if (!(TREE_CODE (olddecl) == FUNCTION_DECL
1669 && DECL_BUILT_IN (olddecl)
1670 && !C_DECL_DECLARED_BUILTIN (olddecl)))
1672 error ("%q+D redeclared as different kind of symbol", newdecl);
1673 locate_old_decl (olddecl);
1675 else if (TREE_PUBLIC (newdecl))
1676 warning (0, "built-in function %q+D declared as non-function",
1677 newdecl);
1678 else
1679 warning (OPT_Wshadow, "declaration of %q+D shadows "
1680 "a built-in function", newdecl);
1681 return false;
1684 /* Enumerators have no linkage, so may only be declared once in a
1685 given scope. */
1686 if (TREE_CODE (olddecl) == CONST_DECL)
1688 error ("redeclaration of enumerator %q+D", newdecl);
1689 locate_old_decl (olddecl);
1690 return false;
1693 if (!comptypes (oldtype, newtype))
1695 if (TREE_CODE (olddecl) == FUNCTION_DECL
1696 && DECL_BUILT_IN (olddecl) && !C_DECL_DECLARED_BUILTIN (olddecl))
1698 /* Accept harmless mismatch in function types.
1699 This is for the ffs and fprintf builtins. */
1700 tree trytype = match_builtin_function_types (newtype, oldtype);
1702 if (trytype && comptypes (newtype, trytype))
1703 *oldtypep = oldtype = trytype;
1704 else
1706 /* If types don't match for a built-in, throw away the
1707 built-in. No point in calling locate_old_decl here, it
1708 won't print anything. */
1709 warning (0, "conflicting types for built-in function %q+D",
1710 newdecl);
1711 return false;
1714 else if (TREE_CODE (olddecl) == FUNCTION_DECL
1715 && DECL_IS_BUILTIN (olddecl))
1717 /* A conflicting function declaration for a predeclared
1718 function that isn't actually built in. Objective C uses
1719 these. The new declaration silently overrides everything
1720 but the volatility (i.e. noreturn) indication. See also
1721 below. FIXME: Make Objective C use normal builtins. */
1722 TREE_THIS_VOLATILE (newdecl) |= TREE_THIS_VOLATILE (olddecl);
1723 return false;
1725 /* Permit void foo (...) to match int foo (...) if the latter is
1726 the definition and implicit int was used. See
1727 c-torture/compile/920625-2.c. */
1728 else if (TREE_CODE (newdecl) == FUNCTION_DECL && DECL_INITIAL (newdecl)
1729 && TYPE_MAIN_VARIANT (TREE_TYPE (oldtype)) == void_type_node
1730 && TYPE_MAIN_VARIANT (TREE_TYPE (newtype)) == integer_type_node
1731 && C_FUNCTION_IMPLICIT_INT (newdecl) && !DECL_INITIAL (olddecl))
1733 pedwarned = pedwarn (input_location, 0,
1734 "conflicting types for %q+D", newdecl);
1735 /* Make sure we keep void as the return type. */
1736 TREE_TYPE (newdecl) = *newtypep = newtype = oldtype;
1737 C_FUNCTION_IMPLICIT_INT (newdecl) = 0;
1739 /* Permit void foo (...) to match an earlier call to foo (...) with
1740 no declared type (thus, implicitly int). */
1741 else if (TREE_CODE (newdecl) == FUNCTION_DECL
1742 && TYPE_MAIN_VARIANT (TREE_TYPE (newtype)) == void_type_node
1743 && TYPE_MAIN_VARIANT (TREE_TYPE (oldtype)) == integer_type_node
1744 && C_DECL_IMPLICIT (olddecl) && !DECL_INITIAL (olddecl))
1746 pedwarned = pedwarn (input_location, 0,
1747 "conflicting types for %q+D", newdecl);
1748 /* Make sure we keep void as the return type. */
1749 TREE_TYPE (olddecl) = *oldtypep = oldtype = newtype;
1751 else
1753 int new_quals = TYPE_QUALS (newtype);
1754 int old_quals = TYPE_QUALS (oldtype);
1756 if (new_quals != old_quals)
1758 addr_space_t new_addr = DECODE_QUAL_ADDR_SPACE (new_quals);
1759 addr_space_t old_addr = DECODE_QUAL_ADDR_SPACE (old_quals);
1760 if (new_addr != old_addr)
1762 if (ADDR_SPACE_GENERIC_P (new_addr))
1763 error ("conflicting named address spaces (generic vs %s) "
1764 "for %q+D",
1765 c_addr_space_name (old_addr), newdecl);
1766 else if (ADDR_SPACE_GENERIC_P (old_addr))
1767 error ("conflicting named address spaces (%s vs generic) "
1768 "for %q+D",
1769 c_addr_space_name (new_addr), newdecl);
1770 else
1771 error ("conflicting named address spaces (%s vs %s) "
1772 "for %q+D",
1773 c_addr_space_name (new_addr),
1774 c_addr_space_name (old_addr),
1775 newdecl);
1778 if (CLEAR_QUAL_ADDR_SPACE (new_quals)
1779 != CLEAR_QUAL_ADDR_SPACE (old_quals))
1780 error ("conflicting type qualifiers for %q+D", newdecl);
1782 else
1783 error ("conflicting types for %q+D", newdecl);
1784 diagnose_arglist_conflict (newdecl, olddecl, newtype, oldtype);
1785 locate_old_decl (olddecl);
1786 return false;
1790 /* Redeclaration of a type is a constraint violation (6.7.2.3p1),
1791 but silently ignore the redeclaration if either is in a system
1792 header. (Conflicting redeclarations were handled above.) This
1793 is allowed for C1X if the types are the same, not just
1794 compatible. */
1795 if (TREE_CODE (newdecl) == TYPE_DECL)
1797 bool types_different = false;
1798 int comptypes_result;
1800 comptypes_result
1801 = comptypes_check_different_types (oldtype, newtype, &types_different);
1803 if (comptypes_result != 1 || types_different)
1805 error ("redefinition of typedef %q+D with different type", newdecl);
1806 locate_old_decl (olddecl);
1807 return false;
1810 if (DECL_IN_SYSTEM_HEADER (newdecl)
1811 || DECL_IN_SYSTEM_HEADER (olddecl)
1812 || TREE_NO_WARNING (newdecl)
1813 || TREE_NO_WARNING (olddecl))
1814 return true; /* Allow OLDDECL to continue in use. */
1816 if (pedantic && !flag_isoc1x)
1818 pedwarn (input_location, OPT_pedantic,
1819 "redefinition of typedef %q+D", newdecl);
1820 locate_old_decl (olddecl);
1822 else if (variably_modified_type_p (newtype, NULL))
1824 /* Whether there is a constraint violation for the types not
1825 being the same cannot be determined at compile time; a
1826 warning that there may be one at runtime is considered
1827 appropriate (WG14 reflector message 11743, 8 May 2009). */
1828 warning (0, "redefinition of typedef %q+D may be a constraint "
1829 "violation at runtime", newdecl);
1830 locate_old_decl (olddecl);
1833 return true;
1836 /* Function declarations can either be 'static' or 'extern' (no
1837 qualifier is equivalent to 'extern' - C99 6.2.2p5) and therefore
1838 can never conflict with each other on account of linkage
1839 (6.2.2p4). Multiple definitions are not allowed (6.9p3,5) but
1840 gnu89 mode permits two definitions if one is 'extern inline' and
1841 one is not. The non- extern-inline definition supersedes the
1842 extern-inline definition. */
1844 else if (TREE_CODE (newdecl) == FUNCTION_DECL)
1846 /* If you declare a built-in function name as static, or
1847 define the built-in with an old-style definition (so we
1848 can't validate the argument list) the built-in definition is
1849 overridden, but optionally warn this was a bad choice of name. */
1850 if (DECL_BUILT_IN (olddecl)
1851 && !C_DECL_DECLARED_BUILTIN (olddecl)
1852 && (!TREE_PUBLIC (newdecl)
1853 || (DECL_INITIAL (newdecl)
1854 && !prototype_p (TREE_TYPE (newdecl)))))
1856 warning (OPT_Wshadow, "declaration of %q+D shadows "
1857 "a built-in function", newdecl);
1858 /* Discard the old built-in function. */
1859 return false;
1862 if (DECL_INITIAL (newdecl))
1864 if (DECL_INITIAL (olddecl))
1866 /* If both decls are in the same TU and the new declaration
1867 isn't overriding an extern inline reject the new decl.
1868 In c99, no overriding is allowed in the same translation
1869 unit. */
1870 if ((!DECL_EXTERN_INLINE (olddecl)
1871 || DECL_EXTERN_INLINE (newdecl)
1872 || (!flag_gnu89_inline
1873 && (!DECL_DECLARED_INLINE_P (olddecl)
1874 || !lookup_attribute ("gnu_inline",
1875 DECL_ATTRIBUTES (olddecl)))
1876 && (!DECL_DECLARED_INLINE_P (newdecl)
1877 || !lookup_attribute ("gnu_inline",
1878 DECL_ATTRIBUTES (newdecl))))
1880 && same_translation_unit_p (newdecl, olddecl))
1882 error ("redefinition of %q+D", newdecl);
1883 locate_old_decl (olddecl);
1884 return false;
1888 /* If we have a prototype after an old-style function definition,
1889 the argument types must be checked specially. */
1890 else if (DECL_INITIAL (olddecl)
1891 && !prototype_p (oldtype) && prototype_p (newtype)
1892 && TYPE_ACTUAL_ARG_TYPES (oldtype)
1893 && !validate_proto_after_old_defn (newdecl, newtype, oldtype))
1895 locate_old_decl (olddecl);
1896 return false;
1898 /* A non-static declaration (even an "extern") followed by a
1899 static declaration is undefined behavior per C99 6.2.2p3-5,7.
1900 The same is true for a static forward declaration at block
1901 scope followed by a non-static declaration/definition at file
1902 scope. Static followed by non-static at the same scope is
1903 not undefined behavior, and is the most convenient way to get
1904 some effects (see e.g. what unwind-dw2-fde-glibc.c does to
1905 the definition of _Unwind_Find_FDE in unwind-dw2-fde.c), but
1906 we do diagnose it if -Wtraditional. */
1907 if (TREE_PUBLIC (olddecl) && !TREE_PUBLIC (newdecl))
1909 /* Two exceptions to the rule. If olddecl is an extern
1910 inline, or a predeclared function that isn't actually
1911 built in, newdecl silently overrides olddecl. The latter
1912 occur only in Objective C; see also above. (FIXME: Make
1913 Objective C use normal builtins.) */
1914 if (!DECL_IS_BUILTIN (olddecl)
1915 && !DECL_EXTERN_INLINE (olddecl))
1917 error ("static declaration of %q+D follows "
1918 "non-static declaration", newdecl);
1919 locate_old_decl (olddecl);
1921 return false;
1923 else if (TREE_PUBLIC (newdecl) && !TREE_PUBLIC (olddecl))
1925 if (DECL_CONTEXT (olddecl))
1927 error ("non-static declaration of %q+D follows "
1928 "static declaration", newdecl);
1929 locate_old_decl (olddecl);
1930 return false;
1932 else if (warn_traditional)
1934 warned |= warning (OPT_Wtraditional,
1935 "non-static declaration of %q+D "
1936 "follows static declaration", newdecl);
1940 /* Make sure gnu_inline attribute is either not present, or
1941 present on all inline decls. */
1942 if (DECL_DECLARED_INLINE_P (olddecl)
1943 && DECL_DECLARED_INLINE_P (newdecl))
1945 bool newa = lookup_attribute ("gnu_inline",
1946 DECL_ATTRIBUTES (newdecl)) != NULL;
1947 bool olda = lookup_attribute ("gnu_inline",
1948 DECL_ATTRIBUTES (olddecl)) != NULL;
1949 if (newa != olda)
1951 error_at (input_location, "%<gnu_inline%> attribute present on %q+D",
1952 newa ? newdecl : olddecl);
1953 error_at (DECL_SOURCE_LOCATION (newa ? olddecl : newdecl),
1954 "but not here");
1958 else if (TREE_CODE (newdecl) == VAR_DECL)
1960 /* Only variables can be thread-local, and all declarations must
1961 agree on this property. */
1962 if (C_DECL_THREADPRIVATE_P (olddecl) && !DECL_THREAD_LOCAL_P (newdecl))
1964 /* Nothing to check. Since OLDDECL is marked threadprivate
1965 and NEWDECL does not have a thread-local attribute, we
1966 will merge the threadprivate attribute into NEWDECL. */
1969 else if (DECL_THREAD_LOCAL_P (newdecl) != DECL_THREAD_LOCAL_P (olddecl))
1971 if (DECL_THREAD_LOCAL_P (newdecl))
1972 error ("thread-local declaration of %q+D follows "
1973 "non-thread-local declaration", newdecl);
1974 else
1975 error ("non-thread-local declaration of %q+D follows "
1976 "thread-local declaration", newdecl);
1978 locate_old_decl (olddecl);
1979 return false;
1982 /* Multiple initialized definitions are not allowed (6.9p3,5). */
1983 if (DECL_INITIAL (newdecl) && DECL_INITIAL (olddecl))
1985 error ("redefinition of %q+D", newdecl);
1986 locate_old_decl (olddecl);
1987 return false;
1990 /* Objects declared at file scope: if the first declaration had
1991 external linkage (even if it was an external reference) the
1992 second must have external linkage as well, or the behavior is
1993 undefined. If the first declaration had internal linkage, then
1994 the second must too, or else be an external reference (in which
1995 case the composite declaration still has internal linkage).
1996 As for function declarations, we warn about the static-then-
1997 extern case only for -Wtraditional. See generally 6.2.2p3-5,7. */
1998 if (DECL_FILE_SCOPE_P (newdecl)
1999 && TREE_PUBLIC (newdecl) != TREE_PUBLIC (olddecl))
2001 if (DECL_EXTERNAL (newdecl))
2003 if (!DECL_FILE_SCOPE_P (olddecl))
2005 error ("extern declaration of %q+D follows "
2006 "declaration with no linkage", newdecl);
2007 locate_old_decl (olddecl);
2008 return false;
2010 else if (warn_traditional)
2012 warned |= warning (OPT_Wtraditional,
2013 "non-static declaration of %q+D "
2014 "follows static declaration", newdecl);
2017 else
2019 if (TREE_PUBLIC (newdecl))
2020 error ("non-static declaration of %q+D follows "
2021 "static declaration", newdecl);
2022 else
2023 error ("static declaration of %q+D follows "
2024 "non-static declaration", newdecl);
2026 locate_old_decl (olddecl);
2027 return false;
2030 /* Two objects with the same name declared at the same block
2031 scope must both be external references (6.7p3). */
2032 else if (!DECL_FILE_SCOPE_P (newdecl))
2034 if (DECL_EXTERNAL (newdecl))
2036 /* Extern with initializer at block scope, which will
2037 already have received an error. */
2039 else if (DECL_EXTERNAL (olddecl))
2041 error ("declaration of %q+D with no linkage follows "
2042 "extern declaration", newdecl);
2043 locate_old_decl (olddecl);
2045 else
2047 error ("redeclaration of %q+D with no linkage", newdecl);
2048 locate_old_decl (olddecl);
2051 return false;
2054 /* C++ does not permit a decl to appear multiple times at file
2055 scope. */
2056 if (warn_cxx_compat
2057 && DECL_FILE_SCOPE_P (newdecl)
2058 && !DECL_EXTERNAL (newdecl)
2059 && !DECL_EXTERNAL (olddecl))
2060 warned |= warning_at (DECL_SOURCE_LOCATION (newdecl),
2061 OPT_Wc___compat,
2062 ("duplicate declaration of %qD is "
2063 "invalid in C++"),
2064 newdecl);
2067 /* warnings */
2068 /* All decls must agree on a visibility. */
2069 if (CODE_CONTAINS_STRUCT (TREE_CODE (newdecl), TS_DECL_WITH_VIS)
2070 && DECL_VISIBILITY_SPECIFIED (newdecl) && DECL_VISIBILITY_SPECIFIED (olddecl)
2071 && DECL_VISIBILITY (newdecl) != DECL_VISIBILITY (olddecl))
2073 warned |= warning (0, "redeclaration of %q+D with different visibility "
2074 "(old visibility preserved)", newdecl);
2077 if (TREE_CODE (newdecl) == FUNCTION_DECL)
2079 /* Diagnose inline __attribute__ ((noinline)) which is silly. */
2080 if (DECL_DECLARED_INLINE_P (newdecl)
2081 && lookup_attribute ("noinline", DECL_ATTRIBUTES (olddecl)))
2083 warned |= warning (OPT_Wattributes,
2084 "inline declaration of %qD follows "
2085 "declaration with attribute noinline", newdecl);
2087 else if (DECL_DECLARED_INLINE_P (olddecl)
2088 && lookup_attribute ("noinline", DECL_ATTRIBUTES (newdecl)))
2090 warned |= warning (OPT_Wattributes,
2091 "declaration of %q+D with attribute "
2092 "noinline follows inline declaration ", newdecl);
2095 else /* PARM_DECL, VAR_DECL */
2097 /* Redeclaration of a parameter is a constraint violation (this is
2098 not explicitly stated, but follows from C99 6.7p3 [no more than
2099 one declaration of the same identifier with no linkage in the
2100 same scope, except type tags] and 6.2.2p6 [parameters have no
2101 linkage]). We must check for a forward parameter declaration,
2102 indicated by TREE_ASM_WRITTEN on the old declaration - this is
2103 an extension, the mandatory diagnostic for which is handled by
2104 mark_forward_parm_decls. */
2106 if (TREE_CODE (newdecl) == PARM_DECL
2107 && (!TREE_ASM_WRITTEN (olddecl) || TREE_ASM_WRITTEN (newdecl)))
2109 error ("redefinition of parameter %q+D", newdecl);
2110 locate_old_decl (olddecl);
2111 return false;
2115 /* Optional warning for completely redundant decls. */
2116 if (!warned && !pedwarned
2117 && warn_redundant_decls
2118 /* Don't warn about a function declaration followed by a
2119 definition. */
2120 && !(TREE_CODE (newdecl) == FUNCTION_DECL
2121 && DECL_INITIAL (newdecl) && !DECL_INITIAL (olddecl))
2122 /* Don't warn about redundant redeclarations of builtins. */
2123 && !(TREE_CODE (newdecl) == FUNCTION_DECL
2124 && !DECL_BUILT_IN (newdecl)
2125 && DECL_BUILT_IN (olddecl)
2126 && !C_DECL_DECLARED_BUILTIN (olddecl))
2127 /* Don't warn about an extern followed by a definition. */
2128 && !(DECL_EXTERNAL (olddecl) && !DECL_EXTERNAL (newdecl))
2129 /* Don't warn about forward parameter decls. */
2130 && !(TREE_CODE (newdecl) == PARM_DECL
2131 && TREE_ASM_WRITTEN (olddecl) && !TREE_ASM_WRITTEN (newdecl))
2132 /* Don't warn about a variable definition following a declaration. */
2133 && !(TREE_CODE (newdecl) == VAR_DECL
2134 && DECL_INITIAL (newdecl) && !DECL_INITIAL (olddecl)))
2136 warned = warning (OPT_Wredundant_decls, "redundant redeclaration of %q+D",
2137 newdecl);
2140 /* Report location of previous decl/defn. */
2141 if (warned || pedwarned)
2142 locate_old_decl (olddecl);
2144 #undef DECL_EXTERN_INLINE
2146 return retval;
2149 /* Subroutine of duplicate_decls. NEWDECL has been found to be
2150 consistent with OLDDECL, but carries new information. Merge the
2151 new information into OLDDECL. This function issues no
2152 diagnostics. */
2154 static void
2155 merge_decls (tree newdecl, tree olddecl, tree newtype, tree oldtype)
2157 bool new_is_definition = (TREE_CODE (newdecl) == FUNCTION_DECL
2158 && DECL_INITIAL (newdecl) != 0);
2159 bool new_is_prototype = (TREE_CODE (newdecl) == FUNCTION_DECL
2160 && prototype_p (TREE_TYPE (newdecl)));
2161 bool old_is_prototype = (TREE_CODE (olddecl) == FUNCTION_DECL
2162 && prototype_p (TREE_TYPE (olddecl)));
2163 bool extern_changed = false;
2165 /* For real parm decl following a forward decl, rechain the old decl
2166 in its new location and clear TREE_ASM_WRITTEN (it's not a
2167 forward decl anymore). */
2168 if (TREE_CODE (newdecl) == PARM_DECL
2169 && TREE_ASM_WRITTEN (olddecl) && !TREE_ASM_WRITTEN (newdecl))
2171 struct c_binding *b, **here;
2173 for (here = &current_scope->bindings; *here; here = &(*here)->prev)
2174 if ((*here)->decl == olddecl)
2175 goto found;
2176 gcc_unreachable ();
2178 found:
2179 b = *here;
2180 *here = b->prev;
2181 b->prev = current_scope->bindings;
2182 current_scope->bindings = b;
2184 TREE_ASM_WRITTEN (olddecl) = 0;
2187 DECL_ATTRIBUTES (newdecl)
2188 = targetm.merge_decl_attributes (olddecl, newdecl);
2190 /* Merge the data types specified in the two decls. */
2191 TREE_TYPE (newdecl)
2192 = TREE_TYPE (olddecl)
2193 = composite_type (newtype, oldtype);
2195 /* Lay the type out, unless already done. */
2196 if (!comptypes (oldtype, TREE_TYPE (newdecl)))
2198 if (TREE_TYPE (newdecl) != error_mark_node)
2199 layout_type (TREE_TYPE (newdecl));
2200 if (TREE_CODE (newdecl) != FUNCTION_DECL
2201 && TREE_CODE (newdecl) != TYPE_DECL
2202 && TREE_CODE (newdecl) != CONST_DECL)
2203 layout_decl (newdecl, 0);
2205 else
2207 /* Since the type is OLDDECL's, make OLDDECL's size go with. */
2208 DECL_SIZE (newdecl) = DECL_SIZE (olddecl);
2209 DECL_SIZE_UNIT (newdecl) = DECL_SIZE_UNIT (olddecl);
2210 DECL_MODE (newdecl) = DECL_MODE (olddecl);
2211 if (DECL_ALIGN (olddecl) > DECL_ALIGN (newdecl))
2213 DECL_ALIGN (newdecl) = DECL_ALIGN (olddecl);
2214 DECL_USER_ALIGN (newdecl) |= DECL_USER_ALIGN (olddecl);
2218 /* Keep the old rtl since we can safely use it. */
2219 if (HAS_RTL_P (olddecl))
2220 COPY_DECL_RTL (olddecl, newdecl);
2222 /* Merge the type qualifiers. */
2223 if (TREE_READONLY (newdecl))
2224 TREE_READONLY (olddecl) = 1;
2226 if (TREE_THIS_VOLATILE (newdecl))
2227 TREE_THIS_VOLATILE (olddecl) = 1;
2229 /* Merge deprecatedness. */
2230 if (TREE_DEPRECATED (newdecl))
2231 TREE_DEPRECATED (olddecl) = 1;
2233 /* If a decl is in a system header and the other isn't, keep the one on the
2234 system header. Otherwise, keep source location of definition rather than
2235 declaration and of prototype rather than non-prototype unless that
2236 prototype is built-in. */
2237 if (CODE_CONTAINS_STRUCT (TREE_CODE (olddecl), TS_DECL_WITH_VIS)
2238 && DECL_IN_SYSTEM_HEADER (olddecl)
2239 && !DECL_IN_SYSTEM_HEADER (newdecl) )
2240 DECL_SOURCE_LOCATION (newdecl) = DECL_SOURCE_LOCATION (olddecl);
2241 else if (CODE_CONTAINS_STRUCT (TREE_CODE (olddecl), TS_DECL_WITH_VIS)
2242 && DECL_IN_SYSTEM_HEADER (newdecl)
2243 && !DECL_IN_SYSTEM_HEADER (olddecl))
2244 DECL_SOURCE_LOCATION (olddecl) = DECL_SOURCE_LOCATION (newdecl);
2245 else if ((DECL_INITIAL (newdecl) == 0 && DECL_INITIAL (olddecl) != 0)
2246 || (old_is_prototype && !new_is_prototype
2247 && !C_DECL_BUILTIN_PROTOTYPE (olddecl)))
2248 DECL_SOURCE_LOCATION (newdecl) = DECL_SOURCE_LOCATION (olddecl);
2250 /* Merge the initialization information. */
2251 if (DECL_INITIAL (newdecl) == 0)
2252 DECL_INITIAL (newdecl) = DECL_INITIAL (olddecl);
2254 /* Merge the threadprivate attribute. */
2255 if (TREE_CODE (olddecl) == VAR_DECL && C_DECL_THREADPRIVATE_P (olddecl))
2257 DECL_TLS_MODEL (newdecl) = DECL_TLS_MODEL (olddecl);
2258 C_DECL_THREADPRIVATE_P (newdecl) = 1;
2261 if (CODE_CONTAINS_STRUCT (TREE_CODE (olddecl), TS_DECL_WITH_VIS))
2263 /* Merge the section attribute.
2264 We want to issue an error if the sections conflict but that
2265 must be done later in decl_attributes since we are called
2266 before attributes are assigned. */
2267 if (DECL_SECTION_NAME (newdecl) == NULL_TREE)
2268 DECL_SECTION_NAME (newdecl) = DECL_SECTION_NAME (olddecl);
2270 /* Copy the assembler name.
2271 Currently, it can only be defined in the prototype. */
2272 COPY_DECL_ASSEMBLER_NAME (olddecl, newdecl);
2274 /* Use visibility of whichever declaration had it specified */
2275 if (DECL_VISIBILITY_SPECIFIED (olddecl))
2277 DECL_VISIBILITY (newdecl) = DECL_VISIBILITY (olddecl);
2278 DECL_VISIBILITY_SPECIFIED (newdecl) = 1;
2281 if (TREE_CODE (newdecl) == FUNCTION_DECL)
2283 DECL_STATIC_CONSTRUCTOR(newdecl) |= DECL_STATIC_CONSTRUCTOR(olddecl);
2284 DECL_STATIC_DESTRUCTOR (newdecl) |= DECL_STATIC_DESTRUCTOR (olddecl);
2285 DECL_NO_LIMIT_STACK (newdecl) |= DECL_NO_LIMIT_STACK (olddecl);
2286 DECL_NO_INSTRUMENT_FUNCTION_ENTRY_EXIT (newdecl)
2287 |= DECL_NO_INSTRUMENT_FUNCTION_ENTRY_EXIT (olddecl);
2288 TREE_THIS_VOLATILE (newdecl) |= TREE_THIS_VOLATILE (olddecl);
2289 DECL_IS_MALLOC (newdecl) |= DECL_IS_MALLOC (olddecl);
2290 DECL_IS_OPERATOR_NEW (newdecl) |= DECL_IS_OPERATOR_NEW (olddecl);
2291 TREE_READONLY (newdecl) |= TREE_READONLY (olddecl);
2292 DECL_PURE_P (newdecl) |= DECL_PURE_P (olddecl);
2293 DECL_IS_NOVOPS (newdecl) |= DECL_IS_NOVOPS (olddecl);
2296 /* Merge the storage class information. */
2297 merge_weak (newdecl, olddecl);
2299 /* For functions, static overrides non-static. */
2300 if (TREE_CODE (newdecl) == FUNCTION_DECL)
2302 TREE_PUBLIC (newdecl) &= TREE_PUBLIC (olddecl);
2303 /* This is since we don't automatically
2304 copy the attributes of NEWDECL into OLDDECL. */
2305 TREE_PUBLIC (olddecl) = TREE_PUBLIC (newdecl);
2306 /* If this clears `static', clear it in the identifier too. */
2307 if (!TREE_PUBLIC (olddecl))
2308 TREE_PUBLIC (DECL_NAME (olddecl)) = 0;
2312 /* In c99, 'extern' declaration before (or after) 'inline' means this
2313 function is not DECL_EXTERNAL, unless 'gnu_inline' attribute
2314 is present. */
2315 if (TREE_CODE (newdecl) == FUNCTION_DECL
2316 && !flag_gnu89_inline
2317 && (DECL_DECLARED_INLINE_P (newdecl)
2318 || DECL_DECLARED_INLINE_P (olddecl))
2319 && (!DECL_DECLARED_INLINE_P (newdecl)
2320 || !DECL_DECLARED_INLINE_P (olddecl)
2321 || !DECL_EXTERNAL (olddecl))
2322 && DECL_EXTERNAL (newdecl)
2323 && !lookup_attribute ("gnu_inline", DECL_ATTRIBUTES (newdecl))
2324 && !current_function_decl)
2325 DECL_EXTERNAL (newdecl) = 0;
2327 if (DECL_EXTERNAL (newdecl))
2329 TREE_STATIC (newdecl) = TREE_STATIC (olddecl);
2330 DECL_EXTERNAL (newdecl) = DECL_EXTERNAL (olddecl);
2332 /* An extern decl does not override previous storage class. */
2333 TREE_PUBLIC (newdecl) = TREE_PUBLIC (olddecl);
2334 if (!DECL_EXTERNAL (newdecl))
2336 DECL_CONTEXT (newdecl) = DECL_CONTEXT (olddecl);
2337 DECL_COMMON (newdecl) = DECL_COMMON (olddecl);
2340 else
2342 TREE_STATIC (olddecl) = TREE_STATIC (newdecl);
2343 TREE_PUBLIC (olddecl) = TREE_PUBLIC (newdecl);
2346 if (TREE_CODE (newdecl) == FUNCTION_DECL)
2348 /* If we're redefining a function previously defined as extern
2349 inline, make sure we emit debug info for the inline before we
2350 throw it away, in case it was inlined into a function that
2351 hasn't been written out yet. */
2352 if (new_is_definition && DECL_INITIAL (olddecl))
2353 /* The new defn must not be inline. */
2354 DECL_UNINLINABLE (newdecl) = 1;
2355 else
2357 /* If either decl says `inline', this fn is inline, unless
2358 its definition was passed already. */
2359 if (DECL_DECLARED_INLINE_P (newdecl)
2360 || DECL_DECLARED_INLINE_P (olddecl))
2361 DECL_DECLARED_INLINE_P (newdecl) = 1;
2363 DECL_UNINLINABLE (newdecl) = DECL_UNINLINABLE (olddecl)
2364 = (DECL_UNINLINABLE (newdecl) || DECL_UNINLINABLE (olddecl));
2366 DECL_DISREGARD_INLINE_LIMITS (newdecl)
2367 = DECL_DISREGARD_INLINE_LIMITS (olddecl)
2368 = (DECL_DISREGARD_INLINE_LIMITS (newdecl)
2369 || DECL_DISREGARD_INLINE_LIMITS (olddecl));
2372 if (DECL_BUILT_IN (olddecl))
2374 /* If redeclaring a builtin function, it stays built in.
2375 But it gets tagged as having been declared. */
2376 DECL_BUILT_IN_CLASS (newdecl) = DECL_BUILT_IN_CLASS (olddecl);
2377 DECL_FUNCTION_CODE (newdecl) = DECL_FUNCTION_CODE (olddecl);
2378 C_DECL_DECLARED_BUILTIN (newdecl) = 1;
2379 if (new_is_prototype)
2380 C_DECL_BUILTIN_PROTOTYPE (newdecl) = 0;
2381 else
2382 C_DECL_BUILTIN_PROTOTYPE (newdecl)
2383 = C_DECL_BUILTIN_PROTOTYPE (olddecl);
2386 /* Preserve function specific target and optimization options */
2387 if (DECL_FUNCTION_SPECIFIC_TARGET (olddecl)
2388 && !DECL_FUNCTION_SPECIFIC_TARGET (newdecl))
2389 DECL_FUNCTION_SPECIFIC_TARGET (newdecl)
2390 = DECL_FUNCTION_SPECIFIC_TARGET (olddecl);
2392 if (DECL_FUNCTION_SPECIFIC_OPTIMIZATION (olddecl)
2393 && !DECL_FUNCTION_SPECIFIC_OPTIMIZATION (newdecl))
2394 DECL_FUNCTION_SPECIFIC_OPTIMIZATION (newdecl)
2395 = DECL_FUNCTION_SPECIFIC_OPTIMIZATION (olddecl);
2397 /* Also preserve various other info from the definition. */
2398 if (!new_is_definition)
2400 tree t;
2401 DECL_RESULT (newdecl) = DECL_RESULT (olddecl);
2402 DECL_INITIAL (newdecl) = DECL_INITIAL (olddecl);
2403 DECL_STRUCT_FUNCTION (newdecl) = DECL_STRUCT_FUNCTION (olddecl);
2404 DECL_SAVED_TREE (newdecl) = DECL_SAVED_TREE (olddecl);
2405 DECL_ARGUMENTS (newdecl) = copy_list (DECL_ARGUMENTS (olddecl));
2406 for (t = DECL_ARGUMENTS (newdecl); t ; t = DECL_CHAIN (t))
2407 DECL_CONTEXT (t) = newdecl;
2409 /* See if we've got a function to instantiate from. */
2410 if (DECL_SAVED_TREE (olddecl))
2411 DECL_ABSTRACT_ORIGIN (newdecl)
2412 = DECL_ABSTRACT_ORIGIN (olddecl);
2416 extern_changed = DECL_EXTERNAL (olddecl) && !DECL_EXTERNAL (newdecl);
2418 /* Merge the USED information. */
2419 if (TREE_USED (olddecl))
2420 TREE_USED (newdecl) = 1;
2421 else if (TREE_USED (newdecl))
2422 TREE_USED (olddecl) = 1;
2423 if (TREE_CODE (olddecl) == VAR_DECL || TREE_CODE (olddecl) == PARM_DECL)
2424 DECL_READ_P (newdecl) |= DECL_READ_P (olddecl);
2425 if (DECL_PRESERVE_P (olddecl))
2426 DECL_PRESERVE_P (newdecl) = 1;
2427 else if (DECL_PRESERVE_P (newdecl))
2428 DECL_PRESERVE_P (olddecl) = 1;
2430 /* Copy most of the decl-specific fields of NEWDECL into OLDDECL.
2431 But preserve OLDDECL's DECL_UID, DECL_CONTEXT and
2432 DECL_ARGUMENTS (if appropriate). */
2434 unsigned olddecl_uid = DECL_UID (olddecl);
2435 tree olddecl_context = DECL_CONTEXT (olddecl);
2436 tree olddecl_arguments = NULL;
2437 if (TREE_CODE (olddecl) == FUNCTION_DECL)
2438 olddecl_arguments = DECL_ARGUMENTS (olddecl);
2440 memcpy ((char *) olddecl + sizeof (struct tree_common),
2441 (char *) newdecl + sizeof (struct tree_common),
2442 sizeof (struct tree_decl_common) - sizeof (struct tree_common));
2443 switch (TREE_CODE (olddecl))
2445 case FUNCTION_DECL:
2446 case FIELD_DECL:
2447 case VAR_DECL:
2448 case PARM_DECL:
2449 case LABEL_DECL:
2450 case RESULT_DECL:
2451 case CONST_DECL:
2452 case TYPE_DECL:
2453 memcpy ((char *) olddecl + sizeof (struct tree_decl_common),
2454 (char *) newdecl + sizeof (struct tree_decl_common),
2455 tree_code_size (TREE_CODE (olddecl)) - sizeof (struct tree_decl_common));
2456 break;
2458 default:
2460 memcpy ((char *) olddecl + sizeof (struct tree_decl_common),
2461 (char *) newdecl + sizeof (struct tree_decl_common),
2462 sizeof (struct tree_decl_non_common) - sizeof (struct tree_decl_common));
2464 DECL_UID (olddecl) = olddecl_uid;
2465 DECL_CONTEXT (olddecl) = olddecl_context;
2466 if (TREE_CODE (olddecl) == FUNCTION_DECL)
2467 DECL_ARGUMENTS (olddecl) = olddecl_arguments;
2470 /* If OLDDECL had its DECL_RTL instantiated, re-invoke make_decl_rtl
2471 so that encode_section_info has a chance to look at the new decl
2472 flags and attributes. */
2473 if (DECL_RTL_SET_P (olddecl)
2474 && (TREE_CODE (olddecl) == FUNCTION_DECL
2475 || (TREE_CODE (olddecl) == VAR_DECL
2476 && TREE_STATIC (olddecl))))
2477 make_decl_rtl (olddecl);
2479 /* If we changed a function from DECL_EXTERNAL to !DECL_EXTERNAL,
2480 and the definition is coming from the old version, cgraph needs
2481 to be called again. */
2482 if (extern_changed && !new_is_definition
2483 && TREE_CODE (olddecl) == FUNCTION_DECL && DECL_INITIAL (olddecl))
2484 cgraph_mark_if_needed (olddecl);
2487 /* Handle when a new declaration NEWDECL has the same name as an old
2488 one OLDDECL in the same binding contour. Prints an error message
2489 if appropriate.
2491 If safely possible, alter OLDDECL to look like NEWDECL, and return
2492 true. Otherwise, return false. */
2494 static bool
2495 duplicate_decls (tree newdecl, tree olddecl)
2497 tree newtype = NULL, oldtype = NULL;
2499 if (!diagnose_mismatched_decls (newdecl, olddecl, &newtype, &oldtype))
2501 /* Avoid `unused variable' and other warnings for OLDDECL. */
2502 TREE_NO_WARNING (olddecl) = 1;
2503 return false;
2506 merge_decls (newdecl, olddecl, newtype, oldtype);
2507 return true;
2511 /* Check whether decl-node NEW_DECL shadows an existing declaration. */
2512 static void
2513 warn_if_shadowing (tree new_decl)
2515 struct c_binding *b;
2517 /* Shadow warnings wanted? */
2518 if (!warn_shadow
2519 /* No shadow warnings for internally generated vars. */
2520 || DECL_IS_BUILTIN (new_decl)
2521 /* No shadow warnings for vars made for inlining. */
2522 || DECL_FROM_INLINE (new_decl))
2523 return;
2525 /* Is anything being shadowed? Invisible decls do not count. */
2526 for (b = I_SYMBOL_BINDING (DECL_NAME (new_decl)); b; b = b->shadowed)
2527 if (b->decl && b->decl != new_decl && !b->invisible)
2529 tree old_decl = b->decl;
2531 if (old_decl == error_mark_node)
2533 warning (OPT_Wshadow, "declaration of %q+D shadows previous "
2534 "non-variable", new_decl);
2535 break;
2537 else if (TREE_CODE (old_decl) == PARM_DECL)
2538 warning (OPT_Wshadow, "declaration of %q+D shadows a parameter",
2539 new_decl);
2540 else if (DECL_FILE_SCOPE_P (old_decl))
2541 warning (OPT_Wshadow, "declaration of %q+D shadows a global "
2542 "declaration", new_decl);
2543 else if (TREE_CODE (old_decl) == FUNCTION_DECL
2544 && DECL_BUILT_IN (old_decl))
2546 warning (OPT_Wshadow, "declaration of %q+D shadows "
2547 "a built-in function", new_decl);
2548 break;
2550 else
2551 warning (OPT_Wshadow, "declaration of %q+D shadows a previous local",
2552 new_decl);
2554 warning_at (DECL_SOURCE_LOCATION (old_decl), OPT_Wshadow,
2555 "shadowed declaration is here");
2557 break;
2561 /* Record a decl-node X as belonging to the current lexical scope.
2562 Check for errors (such as an incompatible declaration for the same
2563 name already seen in the same scope).
2565 Returns either X or an old decl for the same name.
2566 If an old decl is returned, it may have been smashed
2567 to agree with what X says. */
2569 tree
2570 pushdecl (tree x)
2572 tree name = DECL_NAME (x);
2573 struct c_scope *scope = current_scope;
2574 struct c_binding *b;
2575 bool nested = false;
2576 location_t locus = DECL_SOURCE_LOCATION (x);
2578 /* Must set DECL_CONTEXT for everything not at file scope or
2579 DECL_FILE_SCOPE_P won't work. Local externs don't count
2580 unless they have initializers (which generate code). */
2581 if (current_function_decl
2582 && ((TREE_CODE (x) != FUNCTION_DECL && TREE_CODE (x) != VAR_DECL)
2583 || DECL_INITIAL (x) || !DECL_EXTERNAL (x)))
2584 DECL_CONTEXT (x) = current_function_decl;
2586 /* Anonymous decls are just inserted in the scope. */
2587 if (!name)
2589 bind (name, x, scope, /*invisible=*/false, /*nested=*/false,
2590 locus);
2591 return x;
2594 /* First, see if there is another declaration with the same name in
2595 the current scope. If there is, duplicate_decls may do all the
2596 work for us. If duplicate_decls returns false, that indicates
2597 two incompatible decls in the same scope; we are to silently
2598 replace the old one (duplicate_decls has issued all appropriate
2599 diagnostics). In particular, we should not consider possible
2600 duplicates in the external scope, or shadowing. */
2601 b = I_SYMBOL_BINDING (name);
2602 if (b && B_IN_SCOPE (b, scope))
2604 struct c_binding *b_ext, *b_use;
2605 tree type = TREE_TYPE (x);
2606 tree visdecl = b->decl;
2607 tree vistype = TREE_TYPE (visdecl);
2608 if (TREE_CODE (TREE_TYPE (x)) == ARRAY_TYPE
2609 && COMPLETE_TYPE_P (TREE_TYPE (x)))
2610 b->inner_comp = false;
2611 b_use = b;
2612 b_ext = b;
2613 /* If this is an external linkage declaration, we should check
2614 for compatibility with the type in the external scope before
2615 setting the type at this scope based on the visible
2616 information only. */
2617 if (TREE_PUBLIC (x) && TREE_PUBLIC (visdecl))
2619 while (b_ext && !B_IN_EXTERNAL_SCOPE (b_ext))
2620 b_ext = b_ext->shadowed;
2621 if (b_ext)
2623 b_use = b_ext;
2624 if (b_use->u.type)
2625 TREE_TYPE (b_use->decl) = b_use->u.type;
2628 if (duplicate_decls (x, b_use->decl))
2630 if (b_use != b)
2632 /* Save the updated type in the external scope and
2633 restore the proper type for this scope. */
2634 tree thistype;
2635 if (comptypes (vistype, type))
2636 thistype = composite_type (vistype, type);
2637 else
2638 thistype = TREE_TYPE (b_use->decl);
2639 b_use->u.type = TREE_TYPE (b_use->decl);
2640 if (TREE_CODE (b_use->decl) == FUNCTION_DECL
2641 && DECL_BUILT_IN (b_use->decl))
2642 thistype
2643 = build_type_attribute_variant (thistype,
2644 TYPE_ATTRIBUTES
2645 (b_use->u.type));
2646 TREE_TYPE (b_use->decl) = thistype;
2648 return b_use->decl;
2650 else
2651 goto skip_external_and_shadow_checks;
2654 /* All declarations with external linkage, and all external
2655 references, go in the external scope, no matter what scope is
2656 current. However, the binding in that scope is ignored for
2657 purposes of normal name lookup. A separate binding structure is
2658 created in the requested scope; this governs the normal
2659 visibility of the symbol.
2661 The binding in the externals scope is used exclusively for
2662 detecting duplicate declarations of the same object, no matter
2663 what scope they are in; this is what we do here. (C99 6.2.7p2:
2664 All declarations that refer to the same object or function shall
2665 have compatible type; otherwise, the behavior is undefined.) */
2666 if (DECL_EXTERNAL (x) || scope == file_scope)
2668 tree type = TREE_TYPE (x);
2669 tree vistype = 0;
2670 tree visdecl = 0;
2671 bool type_saved = false;
2672 if (b && !B_IN_EXTERNAL_SCOPE (b)
2673 && (TREE_CODE (b->decl) == FUNCTION_DECL
2674 || TREE_CODE (b->decl) == VAR_DECL)
2675 && DECL_FILE_SCOPE_P (b->decl))
2677 visdecl = b->decl;
2678 vistype = TREE_TYPE (visdecl);
2680 if (scope != file_scope
2681 && !DECL_IN_SYSTEM_HEADER (x))
2682 warning (OPT_Wnested_externs, "nested extern declaration of %qD", x);
2684 while (b && !B_IN_EXTERNAL_SCOPE (b))
2686 /* If this decl might be modified, save its type. This is
2687 done here rather than when the decl is first bound
2688 because the type may change after first binding, through
2689 being completed or through attributes being added. If we
2690 encounter multiple such decls, only the first should have
2691 its type saved; the others will already have had their
2692 proper types saved and the types will not have changed as
2693 their scopes will not have been re-entered. */
2694 if (DECL_P (b->decl) && DECL_FILE_SCOPE_P (b->decl) && !type_saved)
2696 b->u.type = TREE_TYPE (b->decl);
2697 type_saved = true;
2699 if (B_IN_FILE_SCOPE (b)
2700 && TREE_CODE (b->decl) == VAR_DECL
2701 && TREE_STATIC (b->decl)
2702 && TREE_CODE (TREE_TYPE (b->decl)) == ARRAY_TYPE
2703 && !TYPE_DOMAIN (TREE_TYPE (b->decl))
2704 && TREE_CODE (type) == ARRAY_TYPE
2705 && TYPE_DOMAIN (type)
2706 && TYPE_MAX_VALUE (TYPE_DOMAIN (type))
2707 && !integer_zerop (TYPE_MAX_VALUE (TYPE_DOMAIN (type))))
2709 /* Array type completed in inner scope, which should be
2710 diagnosed if the completion does not have size 1 and
2711 it does not get completed in the file scope. */
2712 b->inner_comp = true;
2714 b = b->shadowed;
2717 /* If a matching external declaration has been found, set its
2718 type to the composite of all the types of that declaration.
2719 After the consistency checks, it will be reset to the
2720 composite of the visible types only. */
2721 if (b && (TREE_PUBLIC (x) || same_translation_unit_p (x, b->decl))
2722 && b->u.type)
2723 TREE_TYPE (b->decl) = b->u.type;
2725 /* The point of the same_translation_unit_p check here is,
2726 we want to detect a duplicate decl for a construct like
2727 foo() { extern bar(); } ... static bar(); but not if
2728 they are in different translation units. In any case,
2729 the static does not go in the externals scope. */
2730 if (b
2731 && (TREE_PUBLIC (x) || same_translation_unit_p (x, b->decl))
2732 && duplicate_decls (x, b->decl))
2734 tree thistype;
2735 if (vistype)
2737 if (comptypes (vistype, type))
2738 thistype = composite_type (vistype, type);
2739 else
2740 thistype = TREE_TYPE (b->decl);
2742 else
2743 thistype = type;
2744 b->u.type = TREE_TYPE (b->decl);
2745 if (TREE_CODE (b->decl) == FUNCTION_DECL && DECL_BUILT_IN (b->decl))
2746 thistype
2747 = build_type_attribute_variant (thistype,
2748 TYPE_ATTRIBUTES (b->u.type));
2749 TREE_TYPE (b->decl) = thistype;
2750 bind (name, b->decl, scope, /*invisible=*/false, /*nested=*/true,
2751 locus);
2752 return b->decl;
2754 else if (TREE_PUBLIC (x))
2756 if (visdecl && !b && duplicate_decls (x, visdecl))
2758 /* An external declaration at block scope referring to a
2759 visible entity with internal linkage. The composite
2760 type will already be correct for this scope, so we
2761 just need to fall through to make the declaration in
2762 this scope. */
2763 nested = true;
2764 x = visdecl;
2766 else
2768 bind (name, x, external_scope, /*invisible=*/true,
2769 /*nested=*/false, locus);
2770 nested = true;
2775 if (TREE_CODE (x) != PARM_DECL)
2776 warn_if_shadowing (x);
2778 skip_external_and_shadow_checks:
2779 if (TREE_CODE (x) == TYPE_DECL)
2780 set_underlying_type (x);
2782 bind (name, x, scope, /*invisible=*/false, nested, locus);
2784 /* If x's type is incomplete because it's based on a
2785 structure or union which has not yet been fully declared,
2786 attach it to that structure or union type, so we can go
2787 back and complete the variable declaration later, if the
2788 structure or union gets fully declared.
2790 If the input is erroneous, we can have error_mark in the type
2791 slot (e.g. "f(void a, ...)") - that doesn't count as an
2792 incomplete type. */
2793 if (TREE_TYPE (x) != error_mark_node
2794 && !COMPLETE_TYPE_P (TREE_TYPE (x)))
2796 tree element = TREE_TYPE (x);
2798 while (TREE_CODE (element) == ARRAY_TYPE)
2799 element = TREE_TYPE (element);
2800 element = TYPE_MAIN_VARIANT (element);
2802 if ((TREE_CODE (element) == RECORD_TYPE
2803 || TREE_CODE (element) == UNION_TYPE)
2804 && (TREE_CODE (x) != TYPE_DECL
2805 || TREE_CODE (TREE_TYPE (x)) == ARRAY_TYPE)
2806 && !COMPLETE_TYPE_P (element))
2807 C_TYPE_INCOMPLETE_VARS (element)
2808 = tree_cons (NULL_TREE, x, C_TYPE_INCOMPLETE_VARS (element));
2810 return x;
2813 /* Record X as belonging to file scope.
2814 This is used only internally by the Objective-C front end,
2815 and is limited to its needs. duplicate_decls is not called;
2816 if there is any preexisting decl for this identifier, it is an ICE. */
2818 tree
2819 pushdecl_top_level (tree x)
2821 tree name;
2822 bool nested = false;
2823 gcc_assert (TREE_CODE (x) == VAR_DECL || TREE_CODE (x) == CONST_DECL);
2825 name = DECL_NAME (x);
2827 gcc_assert (TREE_CODE (x) == CONST_DECL || !I_SYMBOL_BINDING (name));
2829 if (TREE_PUBLIC (x))
2831 bind (name, x, external_scope, /*invisible=*/true, /*nested=*/false,
2832 UNKNOWN_LOCATION);
2833 nested = true;
2835 if (file_scope)
2836 bind (name, x, file_scope, /*invisible=*/false, nested, UNKNOWN_LOCATION);
2838 return x;
2841 static void
2842 implicit_decl_warning (tree id, tree olddecl)
2844 if (warn_implicit_function_declaration)
2846 bool warned;
2848 if (flag_isoc99)
2849 warned = pedwarn (input_location, OPT_Wimplicit_function_declaration,
2850 "implicit declaration of function %qE", id);
2851 else
2852 warned = warning (OPT_Wimplicit_function_declaration,
2853 G_("implicit declaration of function %qE"), id);
2854 if (olddecl && warned)
2855 locate_old_decl (olddecl);
2859 /* Generate an implicit declaration for identifier FUNCTIONID at LOC as a
2860 function of type int (). */
2862 tree
2863 implicitly_declare (location_t loc, tree functionid)
2865 struct c_binding *b;
2866 tree decl = 0;
2867 tree asmspec_tree;
2869 for (b = I_SYMBOL_BINDING (functionid); b; b = b->shadowed)
2871 if (B_IN_SCOPE (b, external_scope))
2873 decl = b->decl;
2874 break;
2878 if (decl)
2880 if (decl == error_mark_node)
2881 return decl;
2883 /* FIXME: Objective-C has weird not-really-builtin functions
2884 which are supposed to be visible automatically. They wind up
2885 in the external scope because they're pushed before the file
2886 scope gets created. Catch this here and rebind them into the
2887 file scope. */
2888 if (!DECL_BUILT_IN (decl) && DECL_IS_BUILTIN (decl))
2890 bind (functionid, decl, file_scope,
2891 /*invisible=*/false, /*nested=*/true,
2892 DECL_SOURCE_LOCATION (decl));
2893 return decl;
2895 else
2897 tree newtype = default_function_type;
2898 if (b->u.type)
2899 TREE_TYPE (decl) = b->u.type;
2900 /* Implicit declaration of a function already declared
2901 (somehow) in a different scope, or as a built-in.
2902 If this is the first time this has happened, warn;
2903 then recycle the old declaration but with the new type. */
2904 if (!C_DECL_IMPLICIT (decl))
2906 implicit_decl_warning (functionid, decl);
2907 C_DECL_IMPLICIT (decl) = 1;
2909 if (DECL_BUILT_IN (decl))
2911 newtype = build_type_attribute_variant (newtype,
2912 TYPE_ATTRIBUTES
2913 (TREE_TYPE (decl)));
2914 if (!comptypes (newtype, TREE_TYPE (decl)))
2916 warning_at (loc, 0, "incompatible implicit declaration of "
2917 "built-in function %qD", decl);
2918 newtype = TREE_TYPE (decl);
2921 else
2923 if (!comptypes (newtype, TREE_TYPE (decl)))
2925 error_at (loc, "incompatible implicit declaration of function %qD", decl);
2926 locate_old_decl (decl);
2929 b->u.type = TREE_TYPE (decl);
2930 TREE_TYPE (decl) = newtype;
2931 bind (functionid, decl, current_scope,
2932 /*invisible=*/false, /*nested=*/true,
2933 DECL_SOURCE_LOCATION (decl));
2934 return decl;
2938 /* Not seen before. */
2939 decl = build_decl (loc, FUNCTION_DECL, functionid, default_function_type);
2940 DECL_EXTERNAL (decl) = 1;
2941 TREE_PUBLIC (decl) = 1;
2942 C_DECL_IMPLICIT (decl) = 1;
2943 implicit_decl_warning (functionid, 0);
2944 asmspec_tree = maybe_apply_renaming_pragma (decl, /*asmname=*/NULL);
2945 if (asmspec_tree)
2946 set_user_assembler_name (decl, TREE_STRING_POINTER (asmspec_tree));
2948 /* C89 says implicit declarations are in the innermost block.
2949 So we record the decl in the standard fashion. */
2950 decl = pushdecl (decl);
2952 /* No need to call objc_check_decl here - it's a function type. */
2953 rest_of_decl_compilation (decl, 0, 0);
2955 /* Write a record describing this implicit function declaration
2956 to the prototypes file (if requested). */
2957 gen_aux_info_record (decl, 0, 1, 0);
2959 /* Possibly apply some default attributes to this implicit declaration. */
2960 decl_attributes (&decl, NULL_TREE, 0);
2962 return decl;
2965 /* Issue an error message for a reference to an undeclared variable
2966 ID, including a reference to a builtin outside of function-call
2967 context. Establish a binding of the identifier to error_mark_node
2968 in an appropriate scope, which will suppress further errors for the
2969 same identifier. The error message should be given location LOC. */
2970 void
2971 undeclared_variable (location_t loc, tree id)
2973 static bool already = false;
2974 struct c_scope *scope;
2976 if (current_function_decl == 0)
2978 error_at (loc, "%qE undeclared here (not in a function)", id);
2979 scope = current_scope;
2981 else
2983 if (!objc_diagnose_private_ivar (id))
2984 error_at (loc, "%qE undeclared (first use in this function)", id);
2985 if (!already)
2987 inform (loc, "each undeclared identifier is reported only"
2988 " once for each function it appears in");
2989 already = true;
2992 /* If we are parsing old-style parameter decls, current_function_decl
2993 will be nonnull but current_function_scope will be null. */
2994 scope = current_function_scope ? current_function_scope : current_scope;
2996 bind (id, error_mark_node, scope, /*invisible=*/false, /*nested=*/false,
2997 UNKNOWN_LOCATION);
3000 /* Subroutine of lookup_label, declare_label, define_label: construct a
3001 LABEL_DECL with all the proper frills. Also create a struct
3002 c_label_vars initialized for the current scope. */
3004 static tree
3005 make_label (location_t location, tree name, bool defining,
3006 struct c_label_vars **p_label_vars)
3008 tree label = build_decl (location, LABEL_DECL, name, void_type_node);
3009 struct c_label_vars *label_vars;
3011 DECL_CONTEXT (label) = current_function_decl;
3012 DECL_MODE (label) = VOIDmode;
3014 label_vars = ggc_alloc_c_label_vars ();
3015 label_vars->shadowed = NULL;
3016 set_spot_bindings (&label_vars->label_bindings, defining);
3017 label_vars->decls_in_scope = make_tree_vector ();
3018 label_vars->gotos = VEC_alloc (c_goto_bindings_p, gc, 0);
3019 *p_label_vars = label_vars;
3021 return label;
3024 /* Get the LABEL_DECL corresponding to identifier NAME as a label.
3025 Create one if none exists so far for the current function.
3026 This is called when a label is used in a goto expression or
3027 has its address taken. */
3029 tree
3030 lookup_label (tree name)
3032 tree label;
3033 struct c_label_vars *label_vars;
3035 if (current_function_scope == 0)
3037 error ("label %qE referenced outside of any function", name);
3038 return 0;
3041 /* Use a label already defined or ref'd with this name, but not if
3042 it is inherited from a containing function and wasn't declared
3043 using __label__. */
3044 label = I_LABEL_DECL (name);
3045 if (label && (DECL_CONTEXT (label) == current_function_decl
3046 || C_DECLARED_LABEL_FLAG (label)))
3048 /* If the label has only been declared, update its apparent
3049 location to point here, for better diagnostics if it
3050 turns out not to have been defined. */
3051 if (DECL_INITIAL (label) == NULL_TREE)
3052 DECL_SOURCE_LOCATION (label) = input_location;
3053 return label;
3056 /* No label binding for that identifier; make one. */
3057 label = make_label (input_location, name, false, &label_vars);
3059 /* Ordinary labels go in the current function scope. */
3060 bind_label (name, label, current_function_scope, label_vars);
3062 return label;
3065 /* Issue a warning about DECL for a goto statement at GOTO_LOC going
3066 to LABEL. */
3068 static void
3069 warn_about_goto (location_t goto_loc, tree label, tree decl)
3071 if (variably_modified_type_p (TREE_TYPE (decl), NULL_TREE))
3072 error_at (goto_loc,
3073 "jump into scope of identifier with variably modified type");
3074 else
3075 warning_at (goto_loc, OPT_Wjump_misses_init,
3076 "jump skips variable initialization");
3077 inform (DECL_SOURCE_LOCATION (label), "label %qD defined here", label);
3078 inform (DECL_SOURCE_LOCATION (decl), "%qD declared here", decl);
3081 /* Look up a label because of a goto statement. This is like
3082 lookup_label, but also issues any appropriate warnings. */
3084 tree
3085 lookup_label_for_goto (location_t loc, tree name)
3087 tree label;
3088 struct c_label_vars *label_vars;
3089 unsigned int ix;
3090 tree decl;
3092 label = lookup_label (name);
3093 if (label == NULL_TREE)
3094 return NULL_TREE;
3096 /* If we are jumping to a different function, we can't issue any
3097 useful warnings. */
3098 if (DECL_CONTEXT (label) != current_function_decl)
3100 gcc_assert (C_DECLARED_LABEL_FLAG (label));
3101 return label;
3104 label_vars = I_LABEL_BINDING (name)->u.label;
3106 /* If the label has not yet been defined, then push this goto on a
3107 list for possible later warnings. */
3108 if (label_vars->label_bindings.scope == NULL)
3110 struct c_goto_bindings *g;
3112 g = ggc_alloc_c_goto_bindings ();
3113 g->loc = loc;
3114 set_spot_bindings (&g->goto_bindings, true);
3115 VEC_safe_push (c_goto_bindings_p, gc, label_vars->gotos, g);
3116 return label;
3119 /* If there are any decls in label_vars->decls_in_scope, then this
3120 goto has missed the declaration of the decl. This happens for a
3121 case like
3122 int i = 1;
3123 lab:
3125 goto lab;
3126 Issue a warning or error. */
3127 FOR_EACH_VEC_ELT (tree, label_vars->decls_in_scope, ix, decl)
3128 warn_about_goto (loc, label, decl);
3130 if (label_vars->label_bindings.left_stmt_expr)
3132 error_at (loc, "jump into statement expression");
3133 inform (DECL_SOURCE_LOCATION (label), "label %qD defined here", label);
3136 return label;
3139 /* Make a label named NAME in the current function, shadowing silently
3140 any that may be inherited from containing functions or containing
3141 scopes. This is called for __label__ declarations. */
3143 tree
3144 declare_label (tree name)
3146 struct c_binding *b = I_LABEL_BINDING (name);
3147 tree label;
3148 struct c_label_vars *label_vars;
3150 /* Check to make sure that the label hasn't already been declared
3151 at this scope */
3152 if (b && B_IN_CURRENT_SCOPE (b))
3154 error ("duplicate label declaration %qE", name);
3155 locate_old_decl (b->decl);
3157 /* Just use the previous declaration. */
3158 return b->decl;
3161 label = make_label (input_location, name, false, &label_vars);
3162 C_DECLARED_LABEL_FLAG (label) = 1;
3164 /* Declared labels go in the current scope. */
3165 bind_label (name, label, current_scope, label_vars);
3167 return label;
3170 /* When we define a label, issue any appropriate warnings if there are
3171 any gotos earlier in the function which jump to this label. */
3173 static void
3174 check_earlier_gotos (tree label, struct c_label_vars* label_vars)
3176 unsigned int ix;
3177 struct c_goto_bindings *g;
3179 FOR_EACH_VEC_ELT (c_goto_bindings_p, label_vars->gotos, ix, g)
3181 struct c_binding *b;
3182 struct c_scope *scope;
3184 /* We have a goto to this label. The goto is going forward. In
3185 g->scope, the goto is going to skip any binding which was
3186 defined after g->bindings_in_scope. */
3187 if (g->goto_bindings.scope->has_jump_unsafe_decl)
3189 for (b = g->goto_bindings.scope->bindings;
3190 b != g->goto_bindings.bindings_in_scope;
3191 b = b->prev)
3193 if (decl_jump_unsafe (b->decl))
3194 warn_about_goto (g->loc, label, b->decl);
3198 /* We also need to warn about decls defined in any scopes
3199 between the scope of the label and the scope of the goto. */
3200 for (scope = label_vars->label_bindings.scope;
3201 scope != g->goto_bindings.scope;
3202 scope = scope->outer)
3204 gcc_assert (scope != NULL);
3205 if (scope->has_jump_unsafe_decl)
3207 if (scope == label_vars->label_bindings.scope)
3208 b = label_vars->label_bindings.bindings_in_scope;
3209 else
3210 b = scope->bindings;
3211 for (; b != NULL; b = b->prev)
3213 if (decl_jump_unsafe (b->decl))
3214 warn_about_goto (g->loc, label, b->decl);
3219 if (g->goto_bindings.stmt_exprs > 0)
3221 error_at (g->loc, "jump into statement expression");
3222 inform (DECL_SOURCE_LOCATION (label), "label %qD defined here",
3223 label);
3227 /* Now that the label is defined, we will issue warnings about
3228 subsequent gotos to this label when we see them. */
3229 VEC_truncate (c_goto_bindings_p, label_vars->gotos, 0);
3230 label_vars->gotos = NULL;
3233 /* Define a label, specifying the location in the source file.
3234 Return the LABEL_DECL node for the label, if the definition is valid.
3235 Otherwise return 0. */
3237 tree
3238 define_label (location_t location, tree name)
3240 /* Find any preexisting label with this name. It is an error
3241 if that label has already been defined in this function, or
3242 if there is a containing function with a declared label with
3243 the same name. */
3244 tree label = I_LABEL_DECL (name);
3246 if (label
3247 && ((DECL_CONTEXT (label) == current_function_decl
3248 && DECL_INITIAL (label) != 0)
3249 || (DECL_CONTEXT (label) != current_function_decl
3250 && C_DECLARED_LABEL_FLAG (label))))
3252 error_at (location, "duplicate label %qD", label);
3253 locate_old_decl (label);
3254 return 0;
3256 else if (label && DECL_CONTEXT (label) == current_function_decl)
3258 struct c_label_vars *label_vars = I_LABEL_BINDING (name)->u.label;
3260 /* The label has been used or declared already in this function,
3261 but not defined. Update its location to point to this
3262 definition. */
3263 DECL_SOURCE_LOCATION (label) = location;
3264 set_spot_bindings (&label_vars->label_bindings, true);
3266 /* Issue warnings as required about any goto statements from
3267 earlier in the function. */
3268 check_earlier_gotos (label, label_vars);
3270 else
3272 struct c_label_vars *label_vars;
3274 /* No label binding for that identifier; make one. */
3275 label = make_label (location, name, true, &label_vars);
3277 /* Ordinary labels go in the current function scope. */
3278 bind_label (name, label, current_function_scope, label_vars);
3281 if (!in_system_header && lookup_name (name))
3282 warning_at (location, OPT_Wtraditional,
3283 "traditional C lacks a separate namespace "
3284 "for labels, identifier %qE conflicts", name);
3286 /* Mark label as having been defined. */
3287 DECL_INITIAL (label) = error_mark_node;
3288 return label;
3291 /* Get the bindings for a new switch statement. This is used to issue
3292 warnings as appropriate for jumps from the switch to case or
3293 default labels. */
3295 struct c_spot_bindings *
3296 c_get_switch_bindings (void)
3298 struct c_spot_bindings *switch_bindings;
3300 switch_bindings = XNEW (struct c_spot_bindings);
3301 set_spot_bindings (switch_bindings, true);
3302 return switch_bindings;
3305 void
3306 c_release_switch_bindings (struct c_spot_bindings *bindings)
3308 gcc_assert (bindings->stmt_exprs == 0 && !bindings->left_stmt_expr);
3309 XDELETE (bindings);
3312 /* This is called at the point of a case or default label to issue
3313 warnings about decls as needed. It returns true if it found an
3314 error, not just a warning. */
3316 bool
3317 c_check_switch_jump_warnings (struct c_spot_bindings *switch_bindings,
3318 location_t switch_loc, location_t case_loc)
3320 bool saw_error;
3321 struct c_scope *scope;
3323 saw_error = false;
3324 for (scope = current_scope;
3325 scope != switch_bindings->scope;
3326 scope = scope->outer)
3328 struct c_binding *b;
3330 gcc_assert (scope != NULL);
3332 if (!scope->has_jump_unsafe_decl)
3333 continue;
3335 for (b = scope->bindings; b != NULL; b = b->prev)
3337 if (decl_jump_unsafe (b->decl))
3339 if (variably_modified_type_p (TREE_TYPE (b->decl), NULL_TREE))
3341 saw_error = true;
3342 error_at (case_loc,
3343 ("switch jumps into scope of identifier with "
3344 "variably modified type"));
3346 else
3347 warning_at (case_loc, OPT_Wjump_misses_init,
3348 "switch jumps over variable initialization");
3349 inform (switch_loc, "switch starts here");
3350 inform (DECL_SOURCE_LOCATION (b->decl), "%qD declared here",
3351 b->decl);
3356 if (switch_bindings->stmt_exprs > 0)
3358 saw_error = true;
3359 error_at (case_loc, "switch jumps into statement expression");
3360 inform (switch_loc, "switch starts here");
3363 return saw_error;
3366 /* Given NAME, an IDENTIFIER_NODE,
3367 return the structure (or union or enum) definition for that name.
3368 If THISLEVEL_ONLY is nonzero, searches only the current_scope.
3369 CODE says which kind of type the caller wants;
3370 it is RECORD_TYPE or UNION_TYPE or ENUMERAL_TYPE.
3371 If PLOC is not NULL and this returns non-null, it sets *PLOC to the
3372 location where the tag was defined.
3373 If the wrong kind of type is found, an error is reported. */
3375 static tree
3376 lookup_tag (enum tree_code code, tree name, int thislevel_only,
3377 location_t *ploc)
3379 struct c_binding *b = I_TAG_BINDING (name);
3380 int thislevel = 0;
3382 if (!b || !b->decl)
3383 return 0;
3385 /* We only care about whether it's in this level if
3386 thislevel_only was set or it might be a type clash. */
3387 if (thislevel_only || TREE_CODE (b->decl) != code)
3389 /* For our purposes, a tag in the external scope is the same as
3390 a tag in the file scope. (Primarily relevant to Objective-C
3391 and its builtin structure tags, which get pushed before the
3392 file scope is created.) */
3393 if (B_IN_CURRENT_SCOPE (b)
3394 || (current_scope == file_scope && B_IN_EXTERNAL_SCOPE (b)))
3395 thislevel = 1;
3398 if (thislevel_only && !thislevel)
3399 return 0;
3401 if (TREE_CODE (b->decl) != code)
3403 /* Definition isn't the kind we were looking for. */
3404 pending_invalid_xref = name;
3405 pending_invalid_xref_location = input_location;
3407 /* If in the same binding level as a declaration as a tag
3408 of a different type, this must not be allowed to
3409 shadow that tag, so give the error immediately.
3410 (For example, "struct foo; union foo;" is invalid.) */
3411 if (thislevel)
3412 pending_xref_error ();
3415 if (ploc != NULL)
3416 *ploc = b->locus;
3418 return b->decl;
3421 /* Print an error message now
3422 for a recent invalid struct, union or enum cross reference.
3423 We don't print them immediately because they are not invalid
3424 when used in the `struct foo;' construct for shadowing. */
3426 void
3427 pending_xref_error (void)
3429 if (pending_invalid_xref != 0)
3430 error_at (pending_invalid_xref_location, "%qE defined as wrong kind of tag",
3431 pending_invalid_xref);
3432 pending_invalid_xref = 0;
3436 /* Look up NAME in the current scope and its superiors
3437 in the namespace of variables, functions and typedefs.
3438 Return a ..._DECL node of some kind representing its definition,
3439 or return 0 if it is undefined. */
3441 tree
3442 lookup_name (tree name)
3444 struct c_binding *b = I_SYMBOL_BINDING (name);
3445 if (b && !b->invisible)
3446 return b->decl;
3447 return 0;
3450 /* Similar to `lookup_name' but look only at the indicated scope. */
3452 static tree
3453 lookup_name_in_scope (tree name, struct c_scope *scope)
3455 struct c_binding *b;
3457 for (b = I_SYMBOL_BINDING (name); b; b = b->shadowed)
3458 if (B_IN_SCOPE (b, scope))
3459 return b->decl;
3460 return 0;
3463 /* Create the predefined scalar types of C,
3464 and some nodes representing standard constants (0, 1, (void *) 0).
3465 Initialize the global scope.
3466 Make definitions for built-in primitive functions. */
3468 void
3469 c_init_decl_processing (void)
3471 location_t save_loc = input_location;
3473 /* Initialize reserved words for parser. */
3474 c_parse_init ();
3476 current_function_decl = 0;
3478 gcc_obstack_init (&parser_obstack);
3480 /* Make the externals scope. */
3481 push_scope ();
3482 external_scope = current_scope;
3484 /* Declarations from c_common_nodes_and_builtins must not be associated
3485 with this input file, lest we get differences between using and not
3486 using preprocessed headers. */
3487 input_location = BUILTINS_LOCATION;
3489 build_common_tree_nodes (flag_signed_char);
3491 c_common_nodes_and_builtins ();
3493 /* In C, comparisons and TRUTH_* expressions have type int. */
3494 truthvalue_type_node = integer_type_node;
3495 truthvalue_true_node = integer_one_node;
3496 truthvalue_false_node = integer_zero_node;
3498 /* Even in C99, which has a real boolean type. */
3499 pushdecl (build_decl (UNKNOWN_LOCATION, TYPE_DECL, get_identifier ("_Bool"),
3500 boolean_type_node));
3502 input_location = save_loc;
3504 pedantic_lvalues = true;
3506 make_fname_decl = c_make_fname_decl;
3507 start_fname_decls ();
3510 /* Create the VAR_DECL at LOC for __FUNCTION__ etc. ID is the name to
3511 give the decl, NAME is the initialization string and TYPE_DEP
3512 indicates whether NAME depended on the type of the function. As we
3513 don't yet implement delayed emission of static data, we mark the
3514 decl as emitted so it is not placed in the output. Anything using
3515 it must therefore pull out the STRING_CST initializer directly.
3516 FIXME. */
3518 static tree
3519 c_make_fname_decl (location_t loc, tree id, int type_dep)
3521 const char *name = fname_as_string (type_dep);
3522 tree decl, type, init;
3523 size_t length = strlen (name);
3525 type = build_array_type (char_type_node,
3526 build_index_type (size_int (length)));
3527 type = c_build_qualified_type (type, TYPE_QUAL_CONST);
3529 decl = build_decl (loc, VAR_DECL, id, type);
3531 TREE_STATIC (decl) = 1;
3532 TREE_READONLY (decl) = 1;
3533 DECL_ARTIFICIAL (decl) = 1;
3535 init = build_string (length + 1, name);
3536 free (CONST_CAST (char *, name));
3537 TREE_TYPE (init) = type;
3538 DECL_INITIAL (decl) = init;
3540 TREE_USED (decl) = 1;
3542 if (current_function_decl
3543 /* For invalid programs like this:
3545 void foo()
3546 const char* p = __FUNCTION__;
3548 the __FUNCTION__ is believed to appear in K&R style function
3549 parameter declarator. In that case we still don't have
3550 function_scope. */
3551 && (!seen_error () || current_function_scope))
3553 DECL_CONTEXT (decl) = current_function_decl;
3554 bind (id, decl, current_function_scope,
3555 /*invisible=*/false, /*nested=*/false, UNKNOWN_LOCATION);
3558 finish_decl (decl, loc, init, NULL_TREE, NULL_TREE);
3560 return decl;
3563 tree
3564 c_builtin_function (tree decl)
3566 tree type = TREE_TYPE (decl);
3567 tree id = DECL_NAME (decl);
3569 const char *name = IDENTIFIER_POINTER (id);
3570 C_DECL_BUILTIN_PROTOTYPE (decl) = prototype_p (type);
3572 /* Should never be called on a symbol with a preexisting meaning. */
3573 gcc_assert (!I_SYMBOL_BINDING (id));
3575 bind (id, decl, external_scope, /*invisible=*/true, /*nested=*/false,
3576 UNKNOWN_LOCATION);
3578 /* Builtins in the implementation namespace are made visible without
3579 needing to be explicitly declared. See push_file_scope. */
3580 if (name[0] == '_' && (name[1] == '_' || ISUPPER (name[1])))
3582 DECL_CHAIN (decl) = visible_builtins;
3583 visible_builtins = decl;
3586 return decl;
3589 tree
3590 c_builtin_function_ext_scope (tree decl)
3592 tree type = TREE_TYPE (decl);
3593 tree id = DECL_NAME (decl);
3595 const char *name = IDENTIFIER_POINTER (id);
3596 C_DECL_BUILTIN_PROTOTYPE (decl) = prototype_p (type);
3598 /* Should never be called on a symbol with a preexisting meaning. */
3599 gcc_assert (!I_SYMBOL_BINDING (id));
3601 bind (id, decl, external_scope, /*invisible=*/false, /*nested=*/false,
3602 UNKNOWN_LOCATION);
3604 /* Builtins in the implementation namespace are made visible without
3605 needing to be explicitly declared. See push_file_scope. */
3606 if (name[0] == '_' && (name[1] == '_' || ISUPPER (name[1])))
3608 DECL_CHAIN (decl) = visible_builtins;
3609 visible_builtins = decl;
3612 return decl;
3615 /* Called when a declaration is seen that contains no names to declare.
3616 If its type is a reference to a structure, union or enum inherited
3617 from a containing scope, shadow that tag name for the current scope
3618 with a forward reference.
3619 If its type defines a new named structure or union
3620 or defines an enum, it is valid but we need not do anything here.
3621 Otherwise, it is an error. */
3623 void
3624 shadow_tag (const struct c_declspecs *declspecs)
3626 shadow_tag_warned (declspecs, 0);
3629 /* WARNED is 1 if we have done a pedwarn, 2 if we have done a warning,
3630 but no pedwarn. */
3631 void
3632 shadow_tag_warned (const struct c_declspecs *declspecs, int warned)
3634 bool found_tag = false;
3636 if (declspecs->type && !declspecs->default_int_p && !declspecs->typedef_p)
3638 tree value = declspecs->type;
3639 enum tree_code code = TREE_CODE (value);
3641 if (code == RECORD_TYPE || code == UNION_TYPE || code == ENUMERAL_TYPE)
3642 /* Used to test also that TYPE_SIZE (value) != 0.
3643 That caused warning for `struct foo;' at top level in the file. */
3645 tree name = TYPE_NAME (value);
3646 tree t;
3648 found_tag = true;
3650 if (declspecs->restrict_p)
3652 error ("invalid use of %<restrict%>");
3653 warned = 1;
3656 if (name == 0)
3658 if (warned != 1 && code != ENUMERAL_TYPE)
3659 /* Empty unnamed enum OK */
3661 pedwarn (input_location, 0,
3662 "unnamed struct/union that defines no instances");
3663 warned = 1;
3666 else if (declspecs->typespec_kind != ctsk_tagdef
3667 && declspecs->typespec_kind != ctsk_tagfirstref
3668 && declspecs->storage_class != csc_none)
3670 if (warned != 1)
3671 pedwarn (input_location, 0,
3672 "empty declaration with storage class specifier "
3673 "does not redeclare tag");
3674 warned = 1;
3675 pending_xref_error ();
3677 else if (declspecs->typespec_kind != ctsk_tagdef
3678 && declspecs->typespec_kind != ctsk_tagfirstref
3679 && (declspecs->const_p
3680 || declspecs->volatile_p
3681 || declspecs->restrict_p
3682 || declspecs->address_space))
3684 if (warned != 1)
3685 pedwarn (input_location, 0,
3686 "empty declaration with type qualifier "
3687 "does not redeclare tag");
3688 warned = 1;
3689 pending_xref_error ();
3691 else
3693 pending_invalid_xref = 0;
3694 t = lookup_tag (code, name, 1, NULL);
3696 if (t == 0)
3698 t = make_node (code);
3699 pushtag (input_location, name, t);
3703 else
3705 if (warned != 1 && !in_system_header)
3707 pedwarn (input_location, 0,
3708 "useless type name in empty declaration");
3709 warned = 1;
3713 else if (warned != 1 && !in_system_header && declspecs->typedef_p)
3715 pedwarn (input_location, 0, "useless type name in empty declaration");
3716 warned = 1;
3719 pending_invalid_xref = 0;
3721 if (declspecs->inline_p)
3723 error ("%<inline%> in empty declaration");
3724 warned = 1;
3727 if (current_scope == file_scope && declspecs->storage_class == csc_auto)
3729 error ("%<auto%> in file-scope empty declaration");
3730 warned = 1;
3733 if (current_scope == file_scope && declspecs->storage_class == csc_register)
3735 error ("%<register%> in file-scope empty declaration");
3736 warned = 1;
3739 if (!warned && !in_system_header && declspecs->storage_class != csc_none)
3741 warning (0, "useless storage class specifier in empty declaration");
3742 warned = 2;
3745 if (!warned && !in_system_header && declspecs->thread_p)
3747 warning (0, "useless %<__thread%> in empty declaration");
3748 warned = 2;
3751 if (!warned && !in_system_header && (declspecs->const_p
3752 || declspecs->volatile_p
3753 || declspecs->restrict_p
3754 || declspecs->address_space))
3756 warning (0, "useless type qualifier in empty declaration");
3757 warned = 2;
3760 if (warned != 1)
3762 if (!found_tag)
3763 pedwarn (input_location, 0, "empty declaration");
3768 /* Return the qualifiers from SPECS as a bitwise OR of TYPE_QUAL_*
3769 bits. SPECS represents declaration specifiers that the grammar
3770 only permits to contain type qualifiers and attributes. */
3773 quals_from_declspecs (const struct c_declspecs *specs)
3775 int quals = ((specs->const_p ? TYPE_QUAL_CONST : 0)
3776 | (specs->volatile_p ? TYPE_QUAL_VOLATILE : 0)
3777 | (specs->restrict_p ? TYPE_QUAL_RESTRICT : 0)
3778 | (ENCODE_QUAL_ADDR_SPACE (specs->address_space)));
3779 gcc_assert (!specs->type
3780 && !specs->decl_attr
3781 && specs->typespec_word == cts_none
3782 && specs->storage_class == csc_none
3783 && !specs->typedef_p
3784 && !specs->explicit_signed_p
3785 && !specs->deprecated_p
3786 && !specs->long_p
3787 && !specs->long_long_p
3788 && !specs->short_p
3789 && !specs->signed_p
3790 && !specs->unsigned_p
3791 && !specs->complex_p
3792 && !specs->inline_p
3793 && !specs->thread_p);
3794 return quals;
3797 /* Construct an array declarator. LOC is the location of the
3798 beginning of the array (usually the opening brace). EXPR is the
3799 expression inside [], or NULL_TREE. QUALS are the type qualifiers
3800 inside the [] (to be applied to the pointer to which a parameter
3801 array is converted). STATIC_P is true if "static" is inside the
3802 [], false otherwise. VLA_UNSPEC_P is true if the array is [*], a
3803 VLA of unspecified length which is nevertheless a complete type,
3804 false otherwise. The field for the contained declarator is left to
3805 be filled in by set_array_declarator_inner. */
3807 struct c_declarator *
3808 build_array_declarator (location_t loc,
3809 tree expr, struct c_declspecs *quals, bool static_p,
3810 bool vla_unspec_p)
3812 struct c_declarator *declarator = XOBNEW (&parser_obstack,
3813 struct c_declarator);
3814 declarator->id_loc = loc;
3815 declarator->kind = cdk_array;
3816 declarator->declarator = 0;
3817 declarator->u.array.dimen = expr;
3818 if (quals)
3820 declarator->u.array.attrs = quals->attrs;
3821 declarator->u.array.quals = quals_from_declspecs (quals);
3823 else
3825 declarator->u.array.attrs = NULL_TREE;
3826 declarator->u.array.quals = 0;
3828 declarator->u.array.static_p = static_p;
3829 declarator->u.array.vla_unspec_p = vla_unspec_p;
3830 if (!flag_isoc99)
3832 if (static_p || quals != NULL)
3833 pedwarn (loc, OPT_pedantic,
3834 "ISO C90 does not support %<static%> or type "
3835 "qualifiers in parameter array declarators");
3836 if (vla_unspec_p)
3837 pedwarn (loc, OPT_pedantic,
3838 "ISO C90 does not support %<[*]%> array declarators");
3840 if (vla_unspec_p)
3842 if (!current_scope->parm_flag)
3844 /* C99 6.7.5.2p4 */
3845 error_at (loc, "%<[*]%> not allowed in other than "
3846 "function prototype scope");
3847 declarator->u.array.vla_unspec_p = false;
3848 return NULL;
3850 current_scope->had_vla_unspec = true;
3852 return declarator;
3855 /* Set the contained declarator of an array declarator. DECL is the
3856 declarator, as constructed by build_array_declarator; INNER is what
3857 appears on the left of the []. */
3859 struct c_declarator *
3860 set_array_declarator_inner (struct c_declarator *decl,
3861 struct c_declarator *inner)
3863 decl->declarator = inner;
3864 return decl;
3867 /* INIT is a constructor that forms DECL's initializer. If the final
3868 element initializes a flexible array field, add the size of that
3869 initializer to DECL's size. */
3871 static void
3872 add_flexible_array_elts_to_size (tree decl, tree init)
3874 tree elt, type;
3876 if (VEC_empty (constructor_elt, CONSTRUCTOR_ELTS (init)))
3877 return;
3879 elt = VEC_last (constructor_elt, CONSTRUCTOR_ELTS (init))->value;
3880 type = TREE_TYPE (elt);
3881 if (TREE_CODE (type) == ARRAY_TYPE
3882 && TYPE_SIZE (type) == NULL_TREE
3883 && TYPE_DOMAIN (type) != NULL_TREE
3884 && TYPE_MAX_VALUE (TYPE_DOMAIN (type)) == NULL_TREE)
3886 complete_array_type (&type, elt, false);
3887 DECL_SIZE (decl)
3888 = size_binop (PLUS_EXPR, DECL_SIZE (decl), TYPE_SIZE (type));
3889 DECL_SIZE_UNIT (decl)
3890 = size_binop (PLUS_EXPR, DECL_SIZE_UNIT (decl), TYPE_SIZE_UNIT (type));
3894 /* Decode a "typename", such as "int **", returning a ..._TYPE node.
3895 Set *EXPR, if EXPR not NULL, to any expression to be evaluated
3896 before the type name, and set *EXPR_CONST_OPERANDS, if
3897 EXPR_CONST_OPERANDS not NULL, to indicate whether the type name may
3898 appear in a constant expression. */
3900 tree
3901 groktypename (struct c_type_name *type_name, tree *expr,
3902 bool *expr_const_operands)
3904 tree type;
3905 tree attrs = type_name->specs->attrs;
3907 type_name->specs->attrs = NULL_TREE;
3909 type = grokdeclarator (type_name->declarator, type_name->specs, TYPENAME,
3910 false, NULL, &attrs, expr, expr_const_operands,
3911 DEPRECATED_NORMAL);
3913 /* Apply attributes. */
3914 decl_attributes (&type, attrs, 0);
3916 return type;
3919 /* Decode a declarator in an ordinary declaration or data definition.
3920 This is called as soon as the type information and variable name
3921 have been parsed, before parsing the initializer if any.
3922 Here we create the ..._DECL node, fill in its type,
3923 and put it on the list of decls for the current context.
3924 The ..._DECL node is returned as the value.
3926 Exception: for arrays where the length is not specified,
3927 the type is left null, to be filled in by `finish_decl'.
3929 Function definitions do not come here; they go to start_function
3930 instead. However, external and forward declarations of functions
3931 do go through here. Structure field declarations are done by
3932 grokfield and not through here. */
3934 tree
3935 start_decl (struct c_declarator *declarator, struct c_declspecs *declspecs,
3936 bool initialized, tree attributes)
3938 tree decl;
3939 tree tem;
3940 tree expr = NULL_TREE;
3941 enum deprecated_states deprecated_state = DEPRECATED_NORMAL;
3943 /* An object declared as __attribute__((deprecated)) suppresses
3944 warnings of uses of other deprecated items. */
3945 if (lookup_attribute ("deprecated", attributes))
3946 deprecated_state = DEPRECATED_SUPPRESS;
3948 decl = grokdeclarator (declarator, declspecs,
3949 NORMAL, initialized, NULL, &attributes, &expr, NULL,
3950 deprecated_state);
3951 if (!decl)
3952 return 0;
3954 if (expr)
3955 add_stmt (expr);
3957 if (TREE_CODE (decl) != FUNCTION_DECL && MAIN_NAME_P (DECL_NAME (decl)))
3958 warning (OPT_Wmain, "%q+D is usually a function", decl);
3960 if (initialized)
3961 /* Is it valid for this decl to have an initializer at all?
3962 If not, set INITIALIZED to zero, which will indirectly
3963 tell 'finish_decl' to ignore the initializer once it is parsed. */
3964 switch (TREE_CODE (decl))
3966 case TYPE_DECL:
3967 error ("typedef %qD is initialized (use __typeof__ instead)", decl);
3968 initialized = 0;
3969 break;
3971 case FUNCTION_DECL:
3972 error ("function %qD is initialized like a variable", decl);
3973 initialized = 0;
3974 break;
3976 case PARM_DECL:
3977 /* DECL_INITIAL in a PARM_DECL is really DECL_ARG_TYPE. */
3978 error ("parameter %qD is initialized", decl);
3979 initialized = 0;
3980 break;
3982 default:
3983 /* Don't allow initializations for incomplete types except for
3984 arrays which might be completed by the initialization. */
3986 /* This can happen if the array size is an undefined macro.
3987 We already gave a warning, so we don't need another one. */
3988 if (TREE_TYPE (decl) == error_mark_node)
3989 initialized = 0;
3990 else if (COMPLETE_TYPE_P (TREE_TYPE (decl)))
3992 /* A complete type is ok if size is fixed. */
3994 if (TREE_CODE (TYPE_SIZE (TREE_TYPE (decl))) != INTEGER_CST
3995 || C_DECL_VARIABLE_SIZE (decl))
3997 error ("variable-sized object may not be initialized");
3998 initialized = 0;
4001 else if (TREE_CODE (TREE_TYPE (decl)) != ARRAY_TYPE)
4003 error ("variable %qD has initializer but incomplete type", decl);
4004 initialized = 0;
4006 else if (C_DECL_VARIABLE_SIZE (decl))
4008 /* Although C99 is unclear about whether incomplete arrays
4009 of VLAs themselves count as VLAs, it does not make
4010 sense to permit them to be initialized given that
4011 ordinary VLAs may not be initialized. */
4012 error ("variable-sized object may not be initialized");
4013 initialized = 0;
4017 if (initialized)
4019 if (current_scope == file_scope)
4020 TREE_STATIC (decl) = 1;
4022 /* Tell 'pushdecl' this is an initialized decl
4023 even though we don't yet have the initializer expression.
4024 Also tell 'finish_decl' it may store the real initializer. */
4025 DECL_INITIAL (decl) = error_mark_node;
4028 /* If this is a function declaration, write a record describing it to the
4029 prototypes file (if requested). */
4031 if (TREE_CODE (decl) == FUNCTION_DECL)
4032 gen_aux_info_record (decl, 0, 0, prototype_p (TREE_TYPE (decl)));
4034 /* ANSI specifies that a tentative definition which is not merged with
4035 a non-tentative definition behaves exactly like a definition with an
4036 initializer equal to zero. (Section 3.7.2)
4038 -fno-common gives strict ANSI behavior, though this tends to break
4039 a large body of code that grew up without this rule.
4041 Thread-local variables are never common, since there's no entrenched
4042 body of code to break, and it allows more efficient variable references
4043 in the presence of dynamic linking. */
4045 if (TREE_CODE (decl) == VAR_DECL
4046 && !initialized
4047 && TREE_PUBLIC (decl)
4048 && !DECL_THREAD_LOCAL_P (decl)
4049 && !flag_no_common)
4050 DECL_COMMON (decl) = 1;
4052 /* Set attributes here so if duplicate decl, will have proper attributes. */
4053 decl_attributes (&decl, attributes, 0);
4055 /* Handle gnu_inline attribute. */
4056 if (declspecs->inline_p
4057 && !flag_gnu89_inline
4058 && TREE_CODE (decl) == FUNCTION_DECL
4059 && (lookup_attribute ("gnu_inline", DECL_ATTRIBUTES (decl))
4060 || current_function_decl))
4062 if (declspecs->storage_class == csc_auto && current_scope != file_scope)
4064 else if (declspecs->storage_class != csc_static)
4065 DECL_EXTERNAL (decl) = !DECL_EXTERNAL (decl);
4068 if (TREE_CODE (decl) == FUNCTION_DECL
4069 && targetm.calls.promote_prototypes (TREE_TYPE (decl)))
4071 struct c_declarator *ce = declarator;
4073 if (ce->kind == cdk_pointer)
4074 ce = declarator->declarator;
4075 if (ce->kind == cdk_function)
4077 tree args = ce->u.arg_info->parms;
4078 for (; args; args = DECL_CHAIN (args))
4080 tree type = TREE_TYPE (args);
4081 if (type && INTEGRAL_TYPE_P (type)
4082 && TYPE_PRECISION (type) < TYPE_PRECISION (integer_type_node))
4083 DECL_ARG_TYPE (args) = integer_type_node;
4088 if (TREE_CODE (decl) == FUNCTION_DECL
4089 && DECL_DECLARED_INLINE_P (decl)
4090 && DECL_UNINLINABLE (decl)
4091 && lookup_attribute ("noinline", DECL_ATTRIBUTES (decl)))
4092 warning (OPT_Wattributes, "inline function %q+D given attribute noinline",
4093 decl);
4095 /* C99 6.7.4p3: An inline definition of a function with external
4096 linkage shall not contain a definition of a modifiable object
4097 with static storage duration... */
4098 if (TREE_CODE (decl) == VAR_DECL
4099 && current_scope != file_scope
4100 && TREE_STATIC (decl)
4101 && !TREE_READONLY (decl)
4102 && DECL_DECLARED_INLINE_P (current_function_decl)
4103 && DECL_EXTERNAL (current_function_decl))
4104 record_inline_static (input_location, current_function_decl,
4105 decl, csi_modifiable);
4107 if (c_dialect_objc ()
4108 && (TREE_CODE (decl) == VAR_DECL
4109 || TREE_CODE (decl) == FUNCTION_DECL))
4110 objc_check_global_decl (decl);
4112 /* Add this decl to the current scope.
4113 TEM may equal DECL or it may be a previous decl of the same name. */
4114 tem = pushdecl (decl);
4116 if (initialized && DECL_EXTERNAL (tem))
4118 DECL_EXTERNAL (tem) = 0;
4119 TREE_STATIC (tem) = 1;
4122 return tem;
4125 /* Subroutine of finish_decl. TYPE is the type of an uninitialized object
4126 DECL or the non-array element type if DECL is an uninitialized array.
4127 If that type has a const member, diagnose this. */
4129 static void
4130 diagnose_uninitialized_cst_member (tree decl, tree type)
4132 tree field;
4133 for (field = TYPE_FIELDS (type); field; field = TREE_CHAIN (field))
4135 tree field_type;
4136 if (TREE_CODE (field) != FIELD_DECL)
4137 continue;
4138 field_type = strip_array_types (TREE_TYPE (field));
4140 if (TYPE_QUALS (field_type) & TYPE_QUAL_CONST)
4142 warning_at (DECL_SOURCE_LOCATION (decl), OPT_Wc___compat,
4143 "uninitialized const member in %qT is invalid in C++",
4144 strip_array_types (TREE_TYPE (decl)));
4145 inform (DECL_SOURCE_LOCATION (field), "%qD should be initialized", field);
4148 if (TREE_CODE (field_type) == RECORD_TYPE
4149 || TREE_CODE (field_type) == UNION_TYPE)
4150 diagnose_uninitialized_cst_member (decl, field_type);
4154 /* Finish processing of a declaration;
4155 install its initial value.
4156 If ORIGTYPE is not NULL_TREE, it is the original type of INIT.
4157 If the length of an array type is not known before,
4158 it must be determined now, from the initial value, or it is an error.
4160 INIT_LOC is the location of the initial value. */
4162 void
4163 finish_decl (tree decl, location_t init_loc, tree init,
4164 tree origtype, tree asmspec_tree)
4166 tree type;
4167 bool was_incomplete = (DECL_SIZE (decl) == 0);
4168 const char *asmspec = 0;
4170 /* If a name was specified, get the string. */
4171 if ((TREE_CODE (decl) == FUNCTION_DECL || TREE_CODE (decl) == VAR_DECL)
4172 && DECL_FILE_SCOPE_P (decl))
4173 asmspec_tree = maybe_apply_renaming_pragma (decl, asmspec_tree);
4174 if (asmspec_tree)
4175 asmspec = TREE_STRING_POINTER (asmspec_tree);
4177 if (TREE_CODE (decl) == VAR_DECL
4178 && TREE_STATIC (decl)
4179 && global_bindings_p ())
4180 /* So decl is a global variable. Record the types it uses
4181 so that we can decide later to emit debug info for them. */
4182 record_types_used_by_current_var_decl (decl);
4184 /* If `start_decl' didn't like having an initialization, ignore it now. */
4185 if (init != 0 && DECL_INITIAL (decl) == 0)
4186 init = 0;
4188 /* Don't crash if parm is initialized. */
4189 if (TREE_CODE (decl) == PARM_DECL)
4190 init = 0;
4192 if (init)
4193 store_init_value (init_loc, decl, init, origtype);
4195 if (c_dialect_objc () && (TREE_CODE (decl) == VAR_DECL
4196 || TREE_CODE (decl) == FUNCTION_DECL
4197 || TREE_CODE (decl) == FIELD_DECL))
4198 objc_check_decl (decl);
4200 type = TREE_TYPE (decl);
4202 /* Deduce size of array from initialization, if not already known. */
4203 if (TREE_CODE (type) == ARRAY_TYPE
4204 && TYPE_DOMAIN (type) == 0
4205 && TREE_CODE (decl) != TYPE_DECL)
4207 bool do_default
4208 = (TREE_STATIC (decl)
4209 /* Even if pedantic, an external linkage array
4210 may have incomplete type at first. */
4211 ? pedantic && !TREE_PUBLIC (decl)
4212 : !DECL_EXTERNAL (decl));
4213 int failure
4214 = complete_array_type (&TREE_TYPE (decl), DECL_INITIAL (decl),
4215 do_default);
4217 /* Get the completed type made by complete_array_type. */
4218 type = TREE_TYPE (decl);
4220 switch (failure)
4222 case 1:
4223 error ("initializer fails to determine size of %q+D", decl);
4224 break;
4226 case 2:
4227 if (do_default)
4228 error ("array size missing in %q+D", decl);
4229 /* If a `static' var's size isn't known,
4230 make it extern as well as static, so it does not get
4231 allocated.
4232 If it is not `static', then do not mark extern;
4233 finish_incomplete_decl will give it a default size
4234 and it will get allocated. */
4235 else if (!pedantic && TREE_STATIC (decl) && !TREE_PUBLIC (decl))
4236 DECL_EXTERNAL (decl) = 1;
4237 break;
4239 case 3:
4240 error ("zero or negative size array %q+D", decl);
4241 break;
4243 case 0:
4244 /* For global variables, update the copy of the type that
4245 exists in the binding. */
4246 if (TREE_PUBLIC (decl))
4248 struct c_binding *b_ext = I_SYMBOL_BINDING (DECL_NAME (decl));
4249 while (b_ext && !B_IN_EXTERNAL_SCOPE (b_ext))
4250 b_ext = b_ext->shadowed;
4251 if (b_ext)
4253 if (b_ext->u.type)
4254 b_ext->u.type = composite_type (b_ext->u.type, type);
4255 else
4256 b_ext->u.type = type;
4259 break;
4261 default:
4262 gcc_unreachable ();
4265 if (DECL_INITIAL (decl))
4266 TREE_TYPE (DECL_INITIAL (decl)) = type;
4268 layout_decl (decl, 0);
4271 if (TREE_CODE (decl) == VAR_DECL)
4273 if (init && TREE_CODE (init) == CONSTRUCTOR)
4274 add_flexible_array_elts_to_size (decl, init);
4276 if (DECL_SIZE (decl) == 0 && TREE_TYPE (decl) != error_mark_node
4277 && COMPLETE_TYPE_P (TREE_TYPE (decl)))
4278 layout_decl (decl, 0);
4280 if (DECL_SIZE (decl) == 0
4281 /* Don't give an error if we already gave one earlier. */
4282 && TREE_TYPE (decl) != error_mark_node
4283 && (TREE_STATIC (decl)
4284 /* A static variable with an incomplete type
4285 is an error if it is initialized.
4286 Also if it is not file scope.
4287 Otherwise, let it through, but if it is not `extern'
4288 then it may cause an error message later. */
4289 ? (DECL_INITIAL (decl) != 0
4290 || !DECL_FILE_SCOPE_P (decl))
4291 /* An automatic variable with an incomplete type
4292 is an error. */
4293 : !DECL_EXTERNAL (decl)))
4295 error ("storage size of %q+D isn%'t known", decl);
4296 TREE_TYPE (decl) = error_mark_node;
4299 if ((DECL_EXTERNAL (decl) || TREE_STATIC (decl))
4300 && DECL_SIZE (decl) != 0)
4302 if (TREE_CODE (DECL_SIZE (decl)) == INTEGER_CST)
4303 constant_expression_warning (DECL_SIZE (decl));
4304 else
4306 error ("storage size of %q+D isn%'t constant", decl);
4307 TREE_TYPE (decl) = error_mark_node;
4311 if (TREE_USED (type))
4313 TREE_USED (decl) = 1;
4314 DECL_READ_P (decl) = 1;
4318 /* If this is a function and an assembler name is specified, reset DECL_RTL
4319 so we can give it its new name. Also, update built_in_decls if it
4320 was a normal built-in. */
4321 if (TREE_CODE (decl) == FUNCTION_DECL && asmspec)
4323 if (DECL_BUILT_IN_CLASS (decl) == BUILT_IN_NORMAL)
4324 set_builtin_user_assembler_name (decl, asmspec);
4325 set_user_assembler_name (decl, asmspec);
4328 /* If #pragma weak was used, mark the decl weak now. */
4329 maybe_apply_pragma_weak (decl);
4331 /* Output the assembler code and/or RTL code for variables and functions,
4332 unless the type is an undefined structure or union.
4333 If not, it will get done when the type is completed. */
4335 if (TREE_CODE (decl) == VAR_DECL || TREE_CODE (decl) == FUNCTION_DECL)
4337 /* Determine the ELF visibility. */
4338 if (TREE_PUBLIC (decl))
4339 c_determine_visibility (decl);
4341 /* This is a no-op in c-lang.c or something real in objc-act.c. */
4342 if (c_dialect_objc ())
4343 objc_check_decl (decl);
4345 if (asmspec)
4347 /* If this is not a static variable, issue a warning.
4348 It doesn't make any sense to give an ASMSPEC for an
4349 ordinary, non-register local variable. Historically,
4350 GCC has accepted -- but ignored -- the ASMSPEC in
4351 this case. */
4352 if (!DECL_FILE_SCOPE_P (decl)
4353 && TREE_CODE (decl) == VAR_DECL
4354 && !C_DECL_REGISTER (decl)
4355 && !TREE_STATIC (decl))
4356 warning (0, "ignoring asm-specifier for non-static local "
4357 "variable %q+D", decl);
4358 else
4359 set_user_assembler_name (decl, asmspec);
4362 if (DECL_FILE_SCOPE_P (decl))
4364 if (DECL_INITIAL (decl) == NULL_TREE
4365 || DECL_INITIAL (decl) == error_mark_node)
4366 /* Don't output anything
4367 when a tentative file-scope definition is seen.
4368 But at end of compilation, do output code for them. */
4369 DECL_DEFER_OUTPUT (decl) = 1;
4370 rest_of_decl_compilation (decl, true, 0);
4372 else
4374 /* In conjunction with an ASMSPEC, the `register'
4375 keyword indicates that we should place the variable
4376 in a particular register. */
4377 if (asmspec && C_DECL_REGISTER (decl))
4379 DECL_HARD_REGISTER (decl) = 1;
4380 /* This cannot be done for a structure with volatile
4381 fields, on which DECL_REGISTER will have been
4382 reset. */
4383 if (!DECL_REGISTER (decl))
4384 error ("cannot put object with volatile field into register");
4387 if (TREE_CODE (decl) != FUNCTION_DECL)
4389 /* If we're building a variable sized type, and we might be
4390 reachable other than via the top of the current binding
4391 level, then create a new BIND_EXPR so that we deallocate
4392 the object at the right time. */
4393 /* Note that DECL_SIZE can be null due to errors. */
4394 if (DECL_SIZE (decl)
4395 && !TREE_CONSTANT (DECL_SIZE (decl))
4396 && STATEMENT_LIST_HAS_LABEL (cur_stmt_list))
4398 tree bind;
4399 bind = build3 (BIND_EXPR, void_type_node, NULL, NULL, NULL);
4400 TREE_SIDE_EFFECTS (bind) = 1;
4401 add_stmt (bind);
4402 BIND_EXPR_BODY (bind) = push_stmt_list ();
4404 add_stmt (build_stmt (DECL_SOURCE_LOCATION (decl),
4405 DECL_EXPR, decl));
4410 if (!DECL_FILE_SCOPE_P (decl))
4412 /* Recompute the RTL of a local array now
4413 if it used to be an incomplete type. */
4414 if (was_incomplete
4415 && !TREE_STATIC (decl) && !DECL_EXTERNAL (decl))
4417 /* If we used it already as memory, it must stay in memory. */
4418 TREE_ADDRESSABLE (decl) = TREE_USED (decl);
4419 /* If it's still incomplete now, no init will save it. */
4420 if (DECL_SIZE (decl) == 0)
4421 DECL_INITIAL (decl) = 0;
4426 if (TREE_CODE (decl) == TYPE_DECL)
4428 if (!DECL_FILE_SCOPE_P (decl)
4429 && variably_modified_type_p (TREE_TYPE (decl), NULL_TREE))
4430 add_stmt (build_stmt (DECL_SOURCE_LOCATION (decl), DECL_EXPR, decl));
4432 rest_of_decl_compilation (decl, DECL_FILE_SCOPE_P (decl), 0);
4435 /* At the end of a declaration, throw away any variable type sizes
4436 of types defined inside that declaration. There is no use
4437 computing them in the following function definition. */
4438 if (current_scope == file_scope)
4439 get_pending_sizes ();
4441 /* Install a cleanup (aka destructor) if one was given. */
4442 if (TREE_CODE (decl) == VAR_DECL && !TREE_STATIC (decl))
4444 tree attr = lookup_attribute ("cleanup", DECL_ATTRIBUTES (decl));
4445 if (attr)
4447 tree cleanup_id = TREE_VALUE (TREE_VALUE (attr));
4448 tree cleanup_decl = lookup_name (cleanup_id);
4449 tree cleanup;
4450 VEC(tree,gc) *vec;
4452 /* Build "cleanup(&decl)" for the destructor. */
4453 cleanup = build_unary_op (input_location, ADDR_EXPR, decl, 0);
4454 vec = VEC_alloc (tree, gc, 1);
4455 VEC_quick_push (tree, vec, cleanup);
4456 cleanup = build_function_call_vec (DECL_SOURCE_LOCATION (decl),
4457 cleanup_decl, vec, NULL);
4458 VEC_free (tree, gc, vec);
4460 /* Don't warn about decl unused; the cleanup uses it. */
4461 TREE_USED (decl) = 1;
4462 TREE_USED (cleanup_decl) = 1;
4463 DECL_READ_P (decl) = 1;
4465 push_cleanup (decl, cleanup, false);
4469 if (warn_cxx_compat
4470 && TREE_CODE (decl) == VAR_DECL
4471 && !DECL_EXTERNAL (decl)
4472 && DECL_INITIAL (decl) == NULL_TREE)
4474 type = strip_array_types (type);
4475 if (TREE_READONLY (decl))
4476 warning_at (DECL_SOURCE_LOCATION (decl), OPT_Wc___compat,
4477 "uninitialized const %qD is invalid in C++", decl);
4478 else if ((TREE_CODE (type) == RECORD_TYPE
4479 || TREE_CODE (type) == UNION_TYPE)
4480 && C_TYPE_FIELDS_READONLY (type))
4481 diagnose_uninitialized_cst_member (decl, type);
4485 /* Given a parsed parameter declaration, decode it into a PARM_DECL. */
4487 tree
4488 grokparm (const struct c_parm *parm)
4490 tree attrs = parm->attrs;
4491 tree decl = grokdeclarator (parm->declarator, parm->specs, PARM, false,
4492 NULL, &attrs, NULL, NULL, DEPRECATED_NORMAL);
4494 decl_attributes (&decl, attrs, 0);
4496 return decl;
4499 /* Given a parsed parameter declaration, decode it into a PARM_DECL
4500 and push that on the current scope. */
4502 void
4503 push_parm_decl (const struct c_parm *parm)
4505 tree attrs = parm->attrs;
4506 tree decl;
4508 decl = grokdeclarator (parm->declarator, parm->specs, PARM, false, NULL,
4509 &attrs, NULL, NULL, DEPRECATED_NORMAL);
4510 decl_attributes (&decl, attrs, 0);
4512 decl = pushdecl (decl);
4514 finish_decl (decl, input_location, NULL_TREE, NULL_TREE, NULL_TREE);
4517 /* Mark all the parameter declarations to date as forward decls.
4518 Also diagnose use of this extension. */
4520 void
4521 mark_forward_parm_decls (void)
4523 struct c_binding *b;
4525 if (pedantic && !current_scope->warned_forward_parm_decls)
4527 pedwarn (input_location, OPT_pedantic,
4528 "ISO C forbids forward parameter declarations");
4529 current_scope->warned_forward_parm_decls = true;
4532 for (b = current_scope->bindings; b; b = b->prev)
4533 if (TREE_CODE (b->decl) == PARM_DECL)
4534 TREE_ASM_WRITTEN (b->decl) = 1;
4537 /* Build a COMPOUND_LITERAL_EXPR. TYPE is the type given in the compound
4538 literal, which may be an incomplete array type completed by the
4539 initializer; INIT is a CONSTRUCTOR at LOC that initializes the compound
4540 literal. NON_CONST is true if the initializers contain something
4541 that cannot occur in a constant expression. */
4543 tree
4544 build_compound_literal (location_t loc, tree type, tree init, bool non_const)
4546 /* We do not use start_decl here because we have a type, not a declarator;
4547 and do not use finish_decl because the decl should be stored inside
4548 the COMPOUND_LITERAL_EXPR rather than added elsewhere as a DECL_EXPR. */
4549 tree decl;
4550 tree complit;
4551 tree stmt;
4553 if (type == error_mark_node
4554 || init == error_mark_node)
4555 return error_mark_node;
4557 decl = build_decl (loc, VAR_DECL, NULL_TREE, type);
4558 DECL_EXTERNAL (decl) = 0;
4559 TREE_PUBLIC (decl) = 0;
4560 TREE_STATIC (decl) = (current_scope == file_scope);
4561 DECL_CONTEXT (decl) = current_function_decl;
4562 TREE_USED (decl) = 1;
4563 DECL_READ_P (decl) = 1;
4564 TREE_TYPE (decl) = type;
4565 TREE_READONLY (decl) = TYPE_READONLY (type);
4566 store_init_value (loc, decl, init, NULL_TREE);
4568 if (TREE_CODE (type) == ARRAY_TYPE && !COMPLETE_TYPE_P (type))
4570 int failure = complete_array_type (&TREE_TYPE (decl),
4571 DECL_INITIAL (decl), true);
4572 gcc_assert (!failure);
4574 type = TREE_TYPE (decl);
4575 TREE_TYPE (DECL_INITIAL (decl)) = type;
4578 if (type == error_mark_node || !COMPLETE_TYPE_P (type))
4579 return error_mark_node;
4581 stmt = build_stmt (DECL_SOURCE_LOCATION (decl), DECL_EXPR, decl);
4582 complit = build1 (COMPOUND_LITERAL_EXPR, type, stmt);
4583 TREE_SIDE_EFFECTS (complit) = 1;
4585 layout_decl (decl, 0);
4587 if (TREE_STATIC (decl))
4589 /* This decl needs a name for the assembler output. */
4590 set_compound_literal_name (decl);
4591 DECL_DEFER_OUTPUT (decl) = 1;
4592 DECL_COMDAT (decl) = 1;
4593 DECL_ARTIFICIAL (decl) = 1;
4594 DECL_IGNORED_P (decl) = 1;
4595 pushdecl (decl);
4596 rest_of_decl_compilation (decl, 1, 0);
4599 if (non_const)
4601 complit = build2 (C_MAYBE_CONST_EXPR, type, NULL, complit);
4602 C_MAYBE_CONST_EXPR_NON_CONST (complit) = 1;
4605 return complit;
4608 /* Check the type of a compound literal. Here we just check that it
4609 is valid for C++. */
4611 void
4612 check_compound_literal_type (location_t loc, struct c_type_name *type_name)
4614 if (warn_cxx_compat
4615 && (type_name->specs->typespec_kind == ctsk_tagdef
4616 || type_name->specs->typespec_kind == ctsk_tagfirstref))
4617 warning_at (loc, OPT_Wc___compat,
4618 "defining a type in a compound literal is invalid in C++");
4621 /* Determine whether TYPE is a structure with a flexible array member,
4622 or a union containing such a structure (possibly recursively). */
4624 static bool
4625 flexible_array_type_p (tree type)
4627 tree x;
4628 switch (TREE_CODE (type))
4630 case RECORD_TYPE:
4631 x = TYPE_FIELDS (type);
4632 if (x == NULL_TREE)
4633 return false;
4634 while (DECL_CHAIN (x) != NULL_TREE)
4635 x = DECL_CHAIN (x);
4636 if (TREE_CODE (TREE_TYPE (x)) == ARRAY_TYPE
4637 && TYPE_SIZE (TREE_TYPE (x)) == NULL_TREE
4638 && TYPE_DOMAIN (TREE_TYPE (x)) != NULL_TREE
4639 && TYPE_MAX_VALUE (TYPE_DOMAIN (TREE_TYPE (x))) == NULL_TREE)
4640 return true;
4641 return false;
4642 case UNION_TYPE:
4643 for (x = TYPE_FIELDS (type); x != NULL_TREE; x = DECL_CHAIN (x))
4645 if (flexible_array_type_p (TREE_TYPE (x)))
4646 return true;
4648 return false;
4649 default:
4650 return false;
4654 /* Performs sanity checks on the TYPE and WIDTH of the bit-field NAME,
4655 replacing with appropriate values if they are invalid. */
4656 static void
4657 check_bitfield_type_and_width (tree *type, tree *width, tree orig_name)
4659 tree type_mv;
4660 unsigned int max_width;
4661 unsigned HOST_WIDE_INT w;
4662 const char *name = (orig_name
4663 ? identifier_to_locale (IDENTIFIER_POINTER (orig_name))
4664 : _("<anonymous>"));
4666 /* Detect and ignore out of range field width and process valid
4667 field widths. */
4668 if (!INTEGRAL_TYPE_P (TREE_TYPE (*width)))
4670 error ("bit-field %qs width not an integer constant", name);
4671 *width = integer_one_node;
4673 else
4675 if (TREE_CODE (*width) != INTEGER_CST)
4677 *width = c_fully_fold (*width, false, NULL);
4678 if (TREE_CODE (*width) == INTEGER_CST)
4679 pedwarn (input_location, OPT_pedantic,
4680 "bit-field %qs width not an integer constant expression",
4681 name);
4683 if (TREE_CODE (*width) != INTEGER_CST)
4685 error ("bit-field %qs width not an integer constant", name);
4686 *width = integer_one_node;
4688 constant_expression_warning (*width);
4689 if (tree_int_cst_sgn (*width) < 0)
4691 error ("negative width in bit-field %qs", name);
4692 *width = integer_one_node;
4694 else if (integer_zerop (*width) && orig_name)
4696 error ("zero width for bit-field %qs", name);
4697 *width = integer_one_node;
4701 /* Detect invalid bit-field type. */
4702 if (TREE_CODE (*type) != INTEGER_TYPE
4703 && TREE_CODE (*type) != BOOLEAN_TYPE
4704 && TREE_CODE (*type) != ENUMERAL_TYPE)
4706 error ("bit-field %qs has invalid type", name);
4707 *type = unsigned_type_node;
4710 type_mv = TYPE_MAIN_VARIANT (*type);
4711 if (!in_system_header
4712 && type_mv != integer_type_node
4713 && type_mv != unsigned_type_node
4714 && type_mv != boolean_type_node)
4715 pedwarn (input_location, OPT_pedantic,
4716 "type of bit-field %qs is a GCC extension", name);
4718 max_width = TYPE_PRECISION (*type);
4720 if (0 < compare_tree_int (*width, max_width))
4722 error ("width of %qs exceeds its type", name);
4723 w = max_width;
4724 *width = build_int_cst (NULL_TREE, w);
4726 else
4727 w = tree_low_cst (*width, 1);
4729 if (TREE_CODE (*type) == ENUMERAL_TYPE)
4731 struct lang_type *lt = TYPE_LANG_SPECIFIC (*type);
4732 if (!lt
4733 || w < tree_int_cst_min_precision (lt->enum_min, TYPE_UNSIGNED (*type))
4734 || w < tree_int_cst_min_precision (lt->enum_max, TYPE_UNSIGNED (*type)))
4735 warning (0, "%qs is narrower than values of its type", name);
4741 /* Print warning about variable length array if necessary. */
4743 static void
4744 warn_variable_length_array (tree name, tree size)
4746 int const_size = TREE_CONSTANT (size);
4748 if (!flag_isoc99 && pedantic && warn_vla != 0)
4750 if (const_size)
4752 if (name)
4753 pedwarn (input_location, OPT_Wvla,
4754 "ISO C90 forbids array %qE whose size "
4755 "can%'t be evaluated",
4756 name);
4757 else
4758 pedwarn (input_location, OPT_Wvla, "ISO C90 forbids array whose size "
4759 "can%'t be evaluated");
4761 else
4763 if (name)
4764 pedwarn (input_location, OPT_Wvla,
4765 "ISO C90 forbids variable length array %qE",
4766 name);
4767 else
4768 pedwarn (input_location, OPT_Wvla, "ISO C90 forbids variable length array");
4771 else if (warn_vla > 0)
4773 if (const_size)
4775 if (name)
4776 warning (OPT_Wvla,
4777 "the size of array %qE can"
4778 "%'t be evaluated", name);
4779 else
4780 warning (OPT_Wvla,
4781 "the size of array can %'t be evaluated");
4783 else
4785 if (name)
4786 warning (OPT_Wvla,
4787 "variable length array %qE is used",
4788 name);
4789 else
4790 warning (OPT_Wvla,
4791 "variable length array is used");
4796 /* Given a size SIZE that may not be a constant, return a SAVE_EXPR to
4797 serve as the actual size-expression for a type or decl. This is
4798 like variable_size in stor-layout.c, but we make global_bindings_p
4799 return negative to avoid calls to that function from outside the
4800 front end resulting in errors at file scope, then call this version
4801 instead from front-end code. */
4803 static tree
4804 c_variable_size (tree size)
4806 tree save;
4808 if (TREE_CONSTANT (size))
4809 return size;
4811 size = save_expr (size);
4813 save = skip_simple_arithmetic (size);
4815 if (cfun && cfun->dont_save_pending_sizes_p)
4816 return size;
4818 if (!global_bindings_p ())
4819 put_pending_size (save);
4821 return size;
4824 /* Given declspecs and a declarator,
4825 determine the name and type of the object declared
4826 and construct a ..._DECL node for it.
4827 (In one case we can return a ..._TYPE node instead.
4828 For invalid input we sometimes return 0.)
4830 DECLSPECS is a c_declspecs structure for the declaration specifiers.
4832 DECL_CONTEXT says which syntactic context this declaration is in:
4833 NORMAL for most contexts. Make a VAR_DECL or FUNCTION_DECL or TYPE_DECL.
4834 FUNCDEF for a function definition. Like NORMAL but a few different
4835 error messages in each case. Return value may be zero meaning
4836 this definition is too screwy to try to parse.
4837 PARM for a parameter declaration (either within a function prototype
4838 or before a function body). Make a PARM_DECL, or return void_type_node.
4839 TYPENAME if for a typename (in a cast or sizeof).
4840 Don't make a DECL node; just return the ..._TYPE node.
4841 FIELD for a struct or union field; make a FIELD_DECL.
4842 INITIALIZED is true if the decl has an initializer.
4843 WIDTH is non-NULL for bit-fields, and is a pointer to an INTEGER_CST node
4844 representing the width of the bit-field.
4845 DECL_ATTRS points to the list of attributes that should be added to this
4846 decl. Any nested attributes that belong on the decl itself will be
4847 added to this list.
4848 If EXPR is not NULL, any expressions that need to be evaluated as
4849 part of evaluating variably modified types will be stored in *EXPR.
4850 If EXPR_CONST_OPERANDS is not NULL, *EXPR_CONST_OPERANDS will be
4851 set to indicate whether operands in *EXPR can be used in constant
4852 expressions.
4853 DEPRECATED_STATE is a deprecated_states value indicating whether
4854 deprecation warnings should be suppressed.
4856 In the TYPENAME case, DECLARATOR is really an absolute declarator.
4857 It may also be so in the PARM case, for a prototype where the
4858 argument type is specified but not the name.
4860 This function is where the complicated C meanings of `static'
4861 and `extern' are interpreted. */
4863 static tree
4864 grokdeclarator (const struct c_declarator *declarator,
4865 struct c_declspecs *declspecs,
4866 enum decl_context decl_context, bool initialized, tree *width,
4867 tree *decl_attrs, tree *expr, bool *expr_const_operands,
4868 enum deprecated_states deprecated_state)
4870 tree type = declspecs->type;
4871 bool threadp = declspecs->thread_p;
4872 enum c_storage_class storage_class = declspecs->storage_class;
4873 int constp;
4874 int restrictp;
4875 int volatilep;
4876 int type_quals = TYPE_UNQUALIFIED;
4877 tree name = NULL_TREE;
4878 bool funcdef_flag = false;
4879 bool funcdef_syntax = false;
4880 bool size_varies = false;
4881 tree decl_attr = declspecs->decl_attr;
4882 int array_ptr_quals = TYPE_UNQUALIFIED;
4883 tree array_ptr_attrs = NULL_TREE;
4884 int array_parm_static = 0;
4885 bool array_parm_vla_unspec_p = false;
4886 tree returned_attrs = NULL_TREE;
4887 bool bitfield = width != NULL;
4888 tree element_type;
4889 struct c_arg_info *arg_info = 0;
4890 addr_space_t as1, as2, address_space;
4891 location_t loc = UNKNOWN_LOCATION;
4892 const char *errmsg;
4893 tree expr_dummy;
4894 bool expr_const_operands_dummy;
4896 if (TREE_CODE (type) == ERROR_MARK)
4897 return error_mark_node;
4898 if (expr == NULL)
4899 expr = &expr_dummy;
4900 if (expr_const_operands == NULL)
4901 expr_const_operands = &expr_const_operands_dummy;
4903 *expr = declspecs->expr;
4904 *expr_const_operands = declspecs->expr_const_operands;
4906 if (decl_context == FUNCDEF)
4907 funcdef_flag = true, decl_context = NORMAL;
4909 /* Look inside a declarator for the name being declared
4910 and get it as an IDENTIFIER_NODE, for an error message. */
4912 const struct c_declarator *decl = declarator;
4914 while (decl)
4915 switch (decl->kind)
4917 case cdk_array:
4918 loc = decl->id_loc;
4919 /* FALL THRU. */
4921 case cdk_function:
4922 case cdk_pointer:
4923 funcdef_syntax = (decl->kind == cdk_function);
4924 decl = decl->declarator;
4925 break;
4927 case cdk_attrs:
4928 decl = decl->declarator;
4929 break;
4931 case cdk_id:
4932 loc = decl->id_loc;
4933 if (decl->u.id)
4934 name = decl->u.id;
4935 decl = 0;
4936 break;
4938 default:
4939 gcc_unreachable ();
4941 if (name == 0)
4943 gcc_assert (decl_context == PARM
4944 || decl_context == TYPENAME
4945 || (decl_context == FIELD
4946 && declarator->kind == cdk_id));
4947 gcc_assert (!initialized);
4951 /* A function definition's declarator must have the form of
4952 a function declarator. */
4954 if (funcdef_flag && !funcdef_syntax)
4955 return 0;
4957 /* If this looks like a function definition, make it one,
4958 even if it occurs where parms are expected.
4959 Then store_parm_decls will reject it and not use it as a parm. */
4960 if (decl_context == NORMAL && !funcdef_flag && current_scope->parm_flag)
4961 decl_context = PARM;
4963 if (declspecs->deprecated_p && deprecated_state != DEPRECATED_SUPPRESS)
4964 warn_deprecated_use (declspecs->type, declspecs->decl_attr);
4966 if ((decl_context == NORMAL || decl_context == FIELD)
4967 && current_scope == file_scope
4968 && variably_modified_type_p (type, NULL_TREE))
4970 if (name)
4971 error_at (loc, "variably modified %qE at file scope", name);
4972 else
4973 error_at (loc, "variably modified field at file scope");
4974 type = integer_type_node;
4977 size_varies = C_TYPE_VARIABLE_SIZE (type) != 0;
4979 /* Diagnose defaulting to "int". */
4981 if (declspecs->default_int_p && !in_system_header)
4983 /* Issue a warning if this is an ISO C 99 program or if
4984 -Wreturn-type and this is a function, or if -Wimplicit;
4985 prefer the former warning since it is more explicit. */
4986 if ((warn_implicit_int || warn_return_type || flag_isoc99)
4987 && funcdef_flag)
4988 warn_about_return_type = 1;
4989 else
4991 if (name)
4992 pedwarn_c99 (loc, flag_isoc99 ? 0 : OPT_Wimplicit_int,
4993 "type defaults to %<int%> in declaration of %qE",
4994 name);
4995 else
4996 pedwarn_c99 (input_location, flag_isoc99 ? 0 : OPT_Wimplicit_int,
4997 "type defaults to %<int%> in type name");
5001 /* Adjust the type if a bit-field is being declared,
5002 -funsigned-bitfields applied and the type is not explicitly
5003 "signed". */
5004 if (bitfield && !flag_signed_bitfields && !declspecs->explicit_signed_p
5005 && TREE_CODE (type) == INTEGER_TYPE)
5006 type = unsigned_type_for (type);
5008 /* Figure out the type qualifiers for the declaration. There are
5009 two ways a declaration can become qualified. One is something
5010 like `const int i' where the `const' is explicit. Another is
5011 something like `typedef const int CI; CI i' where the type of the
5012 declaration contains the `const'. A third possibility is that
5013 there is a type qualifier on the element type of a typedefed
5014 array type, in which case we should extract that qualifier so
5015 that c_apply_type_quals_to_decl receives the full list of
5016 qualifiers to work with (C90 is not entirely clear about whether
5017 duplicate qualifiers should be diagnosed in this case, but it
5018 seems most appropriate to do so). */
5019 element_type = strip_array_types (type);
5020 constp = declspecs->const_p + TYPE_READONLY (element_type);
5021 restrictp = declspecs->restrict_p + TYPE_RESTRICT (element_type);
5022 volatilep = declspecs->volatile_p + TYPE_VOLATILE (element_type);
5023 as1 = declspecs->address_space;
5024 as2 = TYPE_ADDR_SPACE (element_type);
5025 address_space = ADDR_SPACE_GENERIC_P (as1)? as2 : as1;
5027 if (pedantic && !flag_isoc99)
5029 if (constp > 1)
5030 pedwarn (loc, OPT_pedantic, "duplicate %<const%>");
5031 if (restrictp > 1)
5032 pedwarn (loc, OPT_pedantic, "duplicate %<restrict%>");
5033 if (volatilep > 1)
5034 pedwarn (loc, OPT_pedantic, "duplicate %<volatile%>");
5037 if (!ADDR_SPACE_GENERIC_P (as1) && !ADDR_SPACE_GENERIC_P (as2) && as1 != as2)
5038 error_at (loc, "conflicting named address spaces (%s vs %s)",
5039 c_addr_space_name (as1), c_addr_space_name (as2));
5041 if (!flag_gen_aux_info && (TYPE_QUALS (element_type)))
5042 type = TYPE_MAIN_VARIANT (type);
5043 type_quals = ((constp ? TYPE_QUAL_CONST : 0)
5044 | (restrictp ? TYPE_QUAL_RESTRICT : 0)
5045 | (volatilep ? TYPE_QUAL_VOLATILE : 0)
5046 | ENCODE_QUAL_ADDR_SPACE (address_space));
5048 /* Warn about storage classes that are invalid for certain
5049 kinds of declarations (parameters, typenames, etc.). */
5051 if (funcdef_flag
5052 && (threadp
5053 || storage_class == csc_auto
5054 || storage_class == csc_register
5055 || storage_class == csc_typedef))
5057 if (storage_class == csc_auto)
5058 pedwarn (loc,
5059 (current_scope == file_scope) ? 0 : OPT_pedantic,
5060 "function definition declared %<auto%>");
5061 if (storage_class == csc_register)
5062 error_at (loc, "function definition declared %<register%>");
5063 if (storage_class == csc_typedef)
5064 error_at (loc, "function definition declared %<typedef%>");
5065 if (threadp)
5066 error_at (loc, "function definition declared %<__thread%>");
5067 threadp = false;
5068 if (storage_class == csc_auto
5069 || storage_class == csc_register
5070 || storage_class == csc_typedef)
5071 storage_class = csc_none;
5073 else if (decl_context != NORMAL && (storage_class != csc_none || threadp))
5075 if (decl_context == PARM && storage_class == csc_register)
5077 else
5079 switch (decl_context)
5081 case FIELD:
5082 if (name)
5083 error_at (loc, "storage class specified for structure "
5084 "field %qE", name);
5085 else
5086 error_at (loc, "storage class specified for structure field");
5087 break;
5088 case PARM:
5089 if (name)
5090 error_at (loc, "storage class specified for parameter %qE",
5091 name);
5092 else
5093 error_at (loc, "storage class specified for unnamed parameter");
5094 break;
5095 default:
5096 error_at (loc, "storage class specified for typename");
5097 break;
5099 storage_class = csc_none;
5100 threadp = false;
5103 else if (storage_class == csc_extern
5104 && initialized
5105 && !funcdef_flag)
5107 /* 'extern' with initialization is invalid if not at file scope. */
5108 if (current_scope == file_scope)
5110 /* It is fine to have 'extern const' when compiling at C
5111 and C++ intersection. */
5112 if (!(warn_cxx_compat && constp))
5113 warning_at (loc, 0, "%qE initialized and declared %<extern%>",
5114 name);
5116 else
5117 error_at (loc, "%qE has both %<extern%> and initializer", name);
5119 else if (current_scope == file_scope)
5121 if (storage_class == csc_auto)
5122 error_at (loc, "file-scope declaration of %qE specifies %<auto%>",
5123 name);
5124 if (pedantic && storage_class == csc_register)
5125 pedwarn (input_location, OPT_pedantic,
5126 "file-scope declaration of %qE specifies %<register%>", name);
5128 else
5130 if (storage_class == csc_extern && funcdef_flag)
5131 error_at (loc, "nested function %qE declared %<extern%>", name);
5132 else if (threadp && storage_class == csc_none)
5134 error_at (loc, "function-scope %qE implicitly auto and declared "
5135 "%<__thread%>",
5136 name);
5137 threadp = false;
5141 /* Now figure out the structure of the declarator proper.
5142 Descend through it, creating more complex types, until we reach
5143 the declared identifier (or NULL_TREE, in an absolute declarator).
5144 At each stage we maintain an unqualified version of the type
5145 together with any qualifiers that should be applied to it with
5146 c_build_qualified_type; this way, array types including
5147 multidimensional array types are first built up in unqualified
5148 form and then the qualified form is created with
5149 TYPE_MAIN_VARIANT pointing to the unqualified form. */
5151 while (declarator && declarator->kind != cdk_id)
5153 if (type == error_mark_node)
5155 declarator = declarator->declarator;
5156 continue;
5159 /* Each level of DECLARATOR is either a cdk_array (for ...[..]),
5160 a cdk_pointer (for *...),
5161 a cdk_function (for ...(...)),
5162 a cdk_attrs (for nested attributes),
5163 or a cdk_id (for the name being declared
5164 or the place in an absolute declarator
5165 where the name was omitted).
5166 For the last case, we have just exited the loop.
5168 At this point, TYPE is the type of elements of an array,
5169 or for a function to return, or for a pointer to point to.
5170 After this sequence of ifs, TYPE is the type of the
5171 array or function or pointer, and DECLARATOR has had its
5172 outermost layer removed. */
5174 if (array_ptr_quals != TYPE_UNQUALIFIED
5175 || array_ptr_attrs != NULL_TREE
5176 || array_parm_static)
5178 /* Only the innermost declarator (making a parameter be of
5179 array type which is converted to pointer type)
5180 may have static or type qualifiers. */
5181 error_at (loc, "static or type qualifiers in non-parameter array declarator");
5182 array_ptr_quals = TYPE_UNQUALIFIED;
5183 array_ptr_attrs = NULL_TREE;
5184 array_parm_static = 0;
5187 switch (declarator->kind)
5189 case cdk_attrs:
5191 /* A declarator with embedded attributes. */
5192 tree attrs = declarator->u.attrs;
5193 const struct c_declarator *inner_decl;
5194 int attr_flags = 0;
5195 declarator = declarator->declarator;
5196 inner_decl = declarator;
5197 while (inner_decl->kind == cdk_attrs)
5198 inner_decl = inner_decl->declarator;
5199 if (inner_decl->kind == cdk_id)
5200 attr_flags |= (int) ATTR_FLAG_DECL_NEXT;
5201 else if (inner_decl->kind == cdk_function)
5202 attr_flags |= (int) ATTR_FLAG_FUNCTION_NEXT;
5203 else if (inner_decl->kind == cdk_array)
5204 attr_flags |= (int) ATTR_FLAG_ARRAY_NEXT;
5205 returned_attrs = decl_attributes (&type,
5206 chainon (returned_attrs, attrs),
5207 attr_flags);
5208 break;
5210 case cdk_array:
5212 tree itype = NULL_TREE;
5213 tree size = declarator->u.array.dimen;
5214 /* The index is a signed object `sizetype' bits wide. */
5215 tree index_type = c_common_signed_type (sizetype);
5217 array_ptr_quals = declarator->u.array.quals;
5218 array_ptr_attrs = declarator->u.array.attrs;
5219 array_parm_static = declarator->u.array.static_p;
5220 array_parm_vla_unspec_p = declarator->u.array.vla_unspec_p;
5222 declarator = declarator->declarator;
5224 /* Check for some types that there cannot be arrays of. */
5226 if (VOID_TYPE_P (type))
5228 if (name)
5229 error_at (loc, "declaration of %qE as array of voids", name);
5230 else
5231 error_at (loc, "declaration of type name as array of voids");
5232 type = error_mark_node;
5235 if (TREE_CODE (type) == FUNCTION_TYPE)
5237 if (name)
5238 error_at (loc, "declaration of %qE as array of functions",
5239 name);
5240 else
5241 error_at (loc, "declaration of type name as array of "
5242 "functions");
5243 type = error_mark_node;
5246 if (pedantic && !in_system_header && flexible_array_type_p (type))
5247 pedwarn (loc, OPT_pedantic,
5248 "invalid use of structure with flexible array member");
5250 if (size == error_mark_node)
5251 type = error_mark_node;
5253 if (type == error_mark_node)
5254 continue;
5256 /* If size was specified, set ITYPE to a range-type for
5257 that size. Otherwise, ITYPE remains null. finish_decl
5258 may figure it out from an initial value. */
5260 if (size)
5262 bool size_maybe_const = true;
5263 bool size_int_const = (TREE_CODE (size) == INTEGER_CST
5264 && !TREE_OVERFLOW (size));
5265 bool this_size_varies = false;
5267 /* Strip NON_LVALUE_EXPRs since we aren't using as an
5268 lvalue. */
5269 STRIP_TYPE_NOPS (size);
5271 if (!INTEGRAL_TYPE_P (TREE_TYPE (size)))
5273 if (name)
5274 error_at (loc, "size of array %qE has non-integer type",
5275 name);
5276 else
5277 error_at (loc,
5278 "size of unnamed array has non-integer type");
5279 size = integer_one_node;
5282 size = c_fully_fold (size, false, &size_maybe_const);
5284 if (pedantic && size_maybe_const && integer_zerop (size))
5286 if (name)
5287 pedwarn (loc, OPT_pedantic,
5288 "ISO C forbids zero-size array %qE", name);
5289 else
5290 pedwarn (loc, OPT_pedantic,
5291 "ISO C forbids zero-size array");
5294 if (TREE_CODE (size) == INTEGER_CST && size_maybe_const)
5296 constant_expression_warning (size);
5297 if (tree_int_cst_sgn (size) < 0)
5299 if (name)
5300 error_at (loc, "size of array %qE is negative", name);
5301 else
5302 error_at (loc, "size of unnamed array is negative");
5303 size = integer_one_node;
5305 /* Handle a size folded to an integer constant but
5306 not an integer constant expression. */
5307 if (!size_int_const)
5309 /* If this is a file scope declaration of an
5310 ordinary identifier, this is invalid code;
5311 diagnosing it here and not subsequently
5312 treating the type as variable-length avoids
5313 more confusing diagnostics later. */
5314 if ((decl_context == NORMAL || decl_context == FIELD)
5315 && current_scope == file_scope)
5316 pedwarn (input_location, 0,
5317 "variably modified %qE at file scope",
5318 name);
5319 else
5320 this_size_varies = size_varies = true;
5321 warn_variable_length_array (name, size);
5324 else if ((decl_context == NORMAL || decl_context == FIELD)
5325 && current_scope == file_scope)
5327 error_at (loc, "variably modified %qE at file scope", name);
5328 size = integer_one_node;
5330 else
5332 /* Make sure the array size remains visibly
5333 nonconstant even if it is (eg) a const variable
5334 with known value. */
5335 this_size_varies = size_varies = true;
5336 warn_variable_length_array (name, size);
5339 if (integer_zerop (size) && !this_size_varies)
5341 /* A zero-length array cannot be represented with
5342 an unsigned index type, which is what we'll
5343 get with build_index_type. Create an
5344 open-ended range instead. */
5345 itype = build_range_type (sizetype, size, NULL_TREE);
5347 else
5349 /* Arrange for the SAVE_EXPR on the inside of the
5350 MINUS_EXPR, which allows the -1 to get folded
5351 with the +1 that happens when building TYPE_SIZE. */
5352 if (size_varies)
5353 size = c_variable_size (size);
5354 if (this_size_varies && TREE_CODE (size) == INTEGER_CST)
5355 size = build2 (COMPOUND_EXPR, TREE_TYPE (size),
5356 integer_zero_node, size);
5358 /* Compute the maximum valid index, that is, size
5359 - 1. Do the calculation in index_type, so that
5360 if it is a variable the computations will be
5361 done in the proper mode. */
5362 itype = fold_build2_loc (loc, MINUS_EXPR, index_type,
5363 convert (index_type, size),
5364 convert (index_type,
5365 size_one_node));
5367 /* If that overflowed, the array is too big. ???
5368 While a size of INT_MAX+1 technically shouldn't
5369 cause an overflow (because we subtract 1), the
5370 overflow is recorded during the conversion to
5371 index_type, before the subtraction. Handling
5372 this case seems like an unnecessary
5373 complication. */
5374 if (TREE_CODE (itype) == INTEGER_CST
5375 && TREE_OVERFLOW (itype))
5377 if (name)
5378 error_at (loc, "size of array %qE is too large",
5379 name);
5380 else
5381 error_at (loc, "size of unnamed array is too large");
5382 type = error_mark_node;
5383 continue;
5386 itype = build_index_type (itype);
5388 if (this_size_varies)
5390 if (*expr)
5391 *expr = build2 (COMPOUND_EXPR, TREE_TYPE (size),
5392 *expr, size);
5393 else
5394 *expr = size;
5395 *expr_const_operands &= size_maybe_const;
5398 else if (decl_context == FIELD)
5400 bool flexible_array_member = false;
5401 if (array_parm_vla_unspec_p)
5402 /* Field names can in fact have function prototype
5403 scope so [*] is disallowed here through making
5404 the field variably modified, not through being
5405 something other than a declaration with function
5406 prototype scope. */
5407 size_varies = true;
5408 else
5410 const struct c_declarator *t = declarator;
5411 while (t->kind == cdk_attrs)
5412 t = t->declarator;
5413 flexible_array_member = (t->kind == cdk_id);
5415 if (flexible_array_member
5416 && pedantic && !flag_isoc99 && !in_system_header)
5417 pedwarn (loc, OPT_pedantic,
5418 "ISO C90 does not support flexible array members");
5420 /* ISO C99 Flexible array members are effectively
5421 identical to GCC's zero-length array extension. */
5422 if (flexible_array_member || array_parm_vla_unspec_p)
5423 itype = build_range_type (sizetype, size_zero_node,
5424 NULL_TREE);
5426 else if (decl_context == PARM)
5428 if (array_parm_vla_unspec_p)
5430 itype = build_range_type (sizetype, size_zero_node, NULL_TREE);
5431 size_varies = true;
5434 else if (decl_context == TYPENAME)
5436 if (array_parm_vla_unspec_p)
5438 /* C99 6.7.5.2p4 */
5439 warning (0, "%<[*]%> not in a declaration");
5440 /* We use this to avoid messing up with incomplete
5441 array types of the same type, that would
5442 otherwise be modified below. */
5443 itype = build_range_type (sizetype, size_zero_node,
5444 NULL_TREE);
5445 size_varies = true;
5449 /* Complain about arrays of incomplete types. */
5450 if (!COMPLETE_TYPE_P (type))
5452 error_at (loc, "array type has incomplete element type");
5453 type = error_mark_node;
5455 else
5456 /* When itype is NULL, a shared incomplete array type is
5457 returned for all array of a given type. Elsewhere we
5458 make sure we don't complete that type before copying
5459 it, but here we want to make sure we don't ever
5460 modify the shared type, so we gcc_assert (itype)
5461 below. */
5463 addr_space_t as = DECODE_QUAL_ADDR_SPACE (type_quals);
5464 if (!ADDR_SPACE_GENERIC_P (as) && as != TYPE_ADDR_SPACE (type))
5465 type = build_qualified_type (type,
5466 ENCODE_QUAL_ADDR_SPACE (as));
5468 type = build_array_type (type, itype);
5471 if (type != error_mark_node)
5473 if (size_varies)
5475 /* It is ok to modify type here even if itype is
5476 NULL: if size_varies, we're in a
5477 multi-dimensional array and the inner type has
5478 variable size, so the enclosing shared array type
5479 must too. */
5480 if (size && TREE_CODE (size) == INTEGER_CST)
5481 type
5482 = build_distinct_type_copy (TYPE_MAIN_VARIANT (type));
5483 C_TYPE_VARIABLE_SIZE (type) = 1;
5486 /* The GCC extension for zero-length arrays differs from
5487 ISO flexible array members in that sizeof yields
5488 zero. */
5489 if (size && integer_zerop (size))
5491 gcc_assert (itype);
5492 type = build_distinct_type_copy (TYPE_MAIN_VARIANT (type));
5493 TYPE_SIZE (type) = bitsize_zero_node;
5494 TYPE_SIZE_UNIT (type) = size_zero_node;
5495 SET_TYPE_STRUCTURAL_EQUALITY (type);
5497 if (array_parm_vla_unspec_p)
5499 gcc_assert (itype);
5500 /* The type is complete. C99 6.7.5.2p4 */
5501 type = build_distinct_type_copy (TYPE_MAIN_VARIANT (type));
5502 TYPE_SIZE (type) = bitsize_zero_node;
5503 TYPE_SIZE_UNIT (type) = size_zero_node;
5504 SET_TYPE_STRUCTURAL_EQUALITY (type);
5508 if (decl_context != PARM
5509 && (array_ptr_quals != TYPE_UNQUALIFIED
5510 || array_ptr_attrs != NULL_TREE
5511 || array_parm_static))
5513 error_at (loc, "static or type qualifiers in non-parameter array declarator");
5514 array_ptr_quals = TYPE_UNQUALIFIED;
5515 array_ptr_attrs = NULL_TREE;
5516 array_parm_static = 0;
5518 break;
5520 case cdk_function:
5522 /* Say it's a definition only for the declarator closest
5523 to the identifier, apart possibly from some
5524 attributes. */
5525 bool really_funcdef = false;
5526 tree arg_types;
5527 if (funcdef_flag)
5529 const struct c_declarator *t = declarator->declarator;
5530 while (t->kind == cdk_attrs)
5531 t = t->declarator;
5532 really_funcdef = (t->kind == cdk_id);
5535 /* Declaring a function type. Make sure we have a valid
5536 type for the function to return. */
5537 if (type == error_mark_node)
5538 continue;
5540 size_varies = false;
5542 /* Warn about some types functions can't return. */
5543 if (TREE_CODE (type) == FUNCTION_TYPE)
5545 if (name)
5546 error_at (loc, "%qE declared as function returning a "
5547 "function", name);
5548 else
5549 error_at (loc, "type name declared as function "
5550 "returning a function");
5551 type = integer_type_node;
5553 if (TREE_CODE (type) == ARRAY_TYPE)
5555 if (name)
5556 error_at (loc, "%qE declared as function returning an array",
5557 name);
5558 else
5559 error_at (loc, "type name declared as function returning "
5560 "an array");
5561 type = integer_type_node;
5563 errmsg = targetm.invalid_return_type (type);
5564 if (errmsg)
5566 error (errmsg);
5567 type = integer_type_node;
5570 /* Construct the function type and go to the next
5571 inner layer of declarator. */
5572 arg_info = declarator->u.arg_info;
5573 arg_types = grokparms (arg_info, really_funcdef);
5574 if (really_funcdef)
5575 put_pending_sizes (arg_info->pending_sizes);
5577 /* Type qualifiers before the return type of the function
5578 qualify the return type, not the function type. */
5579 if (type_quals)
5581 /* Type qualifiers on a function return type are
5582 normally permitted by the standard but have no
5583 effect, so give a warning at -Wreturn-type.
5584 Qualifiers on a void return type are banned on
5585 function definitions in ISO C; GCC used to used
5586 them for noreturn functions. */
5587 if (VOID_TYPE_P (type) && really_funcdef)
5588 pedwarn (loc, 0,
5589 "function definition has qualified void return type");
5590 else
5591 warning_at (loc, OPT_Wignored_qualifiers,
5592 "type qualifiers ignored on function return type");
5594 type = c_build_qualified_type (type, type_quals);
5596 type_quals = TYPE_UNQUALIFIED;
5598 type = build_function_type (type, arg_types);
5599 declarator = declarator->declarator;
5601 /* Set the TYPE_CONTEXTs for each tagged type which is local to
5602 the formal parameter list of this FUNCTION_TYPE to point to
5603 the FUNCTION_TYPE node itself. */
5605 c_arg_tag *tag;
5606 unsigned ix;
5608 FOR_EACH_VEC_ELT_REVERSE (c_arg_tag, arg_info->tags, ix, tag)
5609 TYPE_CONTEXT (tag->type) = type;
5611 break;
5613 case cdk_pointer:
5615 /* Merge any constancy or volatility into the target type
5616 for the pointer. */
5618 if (pedantic && TREE_CODE (type) == FUNCTION_TYPE
5619 && type_quals)
5620 pedwarn (loc, OPT_pedantic,
5621 "ISO C forbids qualified function types");
5622 if (type_quals)
5623 type = c_build_qualified_type (type, type_quals);
5624 size_varies = false;
5626 /* When the pointed-to type involves components of variable size,
5627 care must be taken to ensure that the size evaluation code is
5628 emitted early enough to dominate all the possible later uses
5629 and late enough for the variables on which it depends to have
5630 been assigned.
5632 This is expected to happen automatically when the pointed-to
5633 type has a name/declaration of it's own, but special attention
5634 is required if the type is anonymous.
5636 We handle the NORMAL and FIELD contexts here by attaching an
5637 artificial TYPE_DECL to such pointed-to type. This forces the
5638 sizes evaluation at a safe point and ensures it is not deferred
5639 until e.g. within a deeper conditional context.
5641 We expect nothing to be needed here for PARM or TYPENAME.
5642 Pushing a TYPE_DECL at this point for TYPENAME would actually
5643 be incorrect, as we might be in the middle of an expression
5644 with side effects on the pointed-to type size "arguments" prior
5645 to the pointer declaration point and the fake TYPE_DECL in the
5646 enclosing context would force the size evaluation prior to the
5647 side effects. */
5649 if (!TYPE_NAME (type)
5650 && (decl_context == NORMAL || decl_context == FIELD)
5651 && variably_modified_type_p (type, NULL_TREE))
5653 tree decl = build_decl (loc, TYPE_DECL, NULL_TREE, type);
5654 DECL_ARTIFICIAL (decl) = 1;
5655 pushdecl (decl);
5656 finish_decl (decl, loc, NULL_TREE, NULL_TREE, NULL_TREE);
5657 TYPE_NAME (type) = decl;
5660 type = build_pointer_type (type);
5662 /* Process type qualifiers (such as const or volatile)
5663 that were given inside the `*'. */
5664 type_quals = declarator->u.pointer_quals;
5666 declarator = declarator->declarator;
5667 break;
5669 default:
5670 gcc_unreachable ();
5673 *decl_attrs = chainon (returned_attrs, *decl_attrs);
5675 /* Now TYPE has the actual type, apart from any qualifiers in
5676 TYPE_QUALS. */
5678 /* Warn about address space used for things other than static memory or
5679 pointers. */
5680 address_space = DECODE_QUAL_ADDR_SPACE (type_quals);
5681 if (!ADDR_SPACE_GENERIC_P (address_space))
5683 if (decl_context == NORMAL)
5685 switch (storage_class)
5687 case csc_auto:
5688 error ("%qs combined with %<auto%> qualifier for %qE",
5689 c_addr_space_name (address_space), name);
5690 break;
5691 case csc_register:
5692 error ("%qs combined with %<register%> qualifier for %qE",
5693 c_addr_space_name (address_space), name);
5694 break;
5695 case csc_none:
5696 if (current_function_scope)
5698 error ("%qs specified for auto variable %qE",
5699 c_addr_space_name (address_space), name);
5700 break;
5702 break;
5703 case csc_static:
5704 case csc_extern:
5705 case csc_typedef:
5706 break;
5707 default:
5708 gcc_unreachable ();
5711 else if (decl_context == PARM && TREE_CODE (type) != ARRAY_TYPE)
5713 if (name)
5714 error ("%qs specified for parameter %qE",
5715 c_addr_space_name (address_space), name);
5716 else
5717 error ("%qs specified for unnamed parameter",
5718 c_addr_space_name (address_space));
5720 else if (decl_context == FIELD)
5722 if (name)
5723 error ("%qs specified for structure field %qE",
5724 c_addr_space_name (address_space), name);
5725 else
5726 error ("%qs specified for structure field",
5727 c_addr_space_name (address_space));
5731 /* Check the type and width of a bit-field. */
5732 if (bitfield)
5733 check_bitfield_type_and_width (&type, width, name);
5735 /* Did array size calculations overflow? */
5737 if (TREE_CODE (type) == ARRAY_TYPE
5738 && COMPLETE_TYPE_P (type)
5739 && TREE_CODE (TYPE_SIZE_UNIT (type)) == INTEGER_CST
5740 && TREE_OVERFLOW (TYPE_SIZE_UNIT (type)))
5742 if (name)
5743 error_at (loc, "size of array %qE is too large", name);
5744 else
5745 error_at (loc, "size of unnamed array is too large");
5746 /* If we proceed with the array type as it is, we'll eventually
5747 crash in tree_low_cst(). */
5748 type = error_mark_node;
5751 /* If this is declaring a typedef name, return a TYPE_DECL. */
5753 if (storage_class == csc_typedef)
5755 tree decl;
5756 if (pedantic && TREE_CODE (type) == FUNCTION_TYPE
5757 && type_quals)
5758 pedwarn (loc, OPT_pedantic,
5759 "ISO C forbids qualified function types");
5760 if (type_quals)
5761 type = c_build_qualified_type (type, type_quals);
5762 decl = build_decl (declarator->id_loc,
5763 TYPE_DECL, declarator->u.id, type);
5764 if (declspecs->explicit_signed_p)
5765 C_TYPEDEF_EXPLICITLY_SIGNED (decl) = 1;
5766 if (declspecs->inline_p)
5767 pedwarn (loc, 0,"typedef %q+D declared %<inline%>", decl);
5769 if (warn_cxx_compat && declarator->u.id != NULL_TREE)
5771 struct c_binding *b = I_TAG_BINDING (declarator->u.id);
5773 if (b != NULL
5774 && b->decl != NULL_TREE
5775 && (B_IN_CURRENT_SCOPE (b)
5776 || (current_scope == file_scope && B_IN_EXTERNAL_SCOPE (b)))
5777 && TYPE_MAIN_VARIANT (b->decl) != TYPE_MAIN_VARIANT (type))
5779 warning_at (declarator->id_loc, OPT_Wc___compat,
5780 ("using %qD as both a typedef and a tag is "
5781 "invalid in C++"),
5782 decl);
5783 if (b->locus != UNKNOWN_LOCATION)
5784 inform (b->locus, "originally defined here");
5788 return decl;
5791 /* If this is a type name (such as, in a cast or sizeof),
5792 compute the type and return it now. */
5794 if (decl_context == TYPENAME)
5796 /* Note that the grammar rejects storage classes in typenames
5797 and fields. */
5798 gcc_assert (storage_class == csc_none && !threadp
5799 && !declspecs->inline_p);
5800 if (pedantic && TREE_CODE (type) == FUNCTION_TYPE
5801 && type_quals)
5802 pedwarn (loc, OPT_pedantic,
5803 "ISO C forbids const or volatile function types");
5804 if (type_quals)
5805 type = c_build_qualified_type (type, type_quals);
5806 return type;
5809 if (pedantic && decl_context == FIELD
5810 && variably_modified_type_p (type, NULL_TREE))
5812 /* C99 6.7.2.1p8 */
5813 pedwarn (loc, OPT_pedantic, "a member of a structure or union cannot "
5814 "have a variably modified type");
5817 /* Aside from typedefs and type names (handle above),
5818 `void' at top level (not within pointer)
5819 is allowed only in public variables.
5820 We don't complain about parms either, but that is because
5821 a better error message can be made later. */
5823 if (VOID_TYPE_P (type) && decl_context != PARM
5824 && !((decl_context != FIELD && TREE_CODE (type) != FUNCTION_TYPE)
5825 && (storage_class == csc_extern
5826 || (current_scope == file_scope
5827 && !(storage_class == csc_static
5828 || storage_class == csc_register)))))
5830 error_at (loc, "variable or field %qE declared void", name);
5831 type = integer_type_node;
5834 /* Now create the decl, which may be a VAR_DECL, a PARM_DECL
5835 or a FUNCTION_DECL, depending on DECL_CONTEXT and TYPE. */
5838 tree decl;
5840 if (decl_context == PARM)
5842 tree promoted_type;
5844 /* A parameter declared as an array of T is really a pointer to T.
5845 One declared as a function is really a pointer to a function. */
5847 if (TREE_CODE (type) == ARRAY_TYPE)
5849 /* Transfer const-ness of array into that of type pointed to. */
5850 type = TREE_TYPE (type);
5851 if (type_quals)
5852 type = c_build_qualified_type (type, type_quals);
5853 type = build_pointer_type (type);
5854 type_quals = array_ptr_quals;
5855 if (type_quals)
5856 type = c_build_qualified_type (type, type_quals);
5858 /* We don't yet implement attributes in this context. */
5859 if (array_ptr_attrs != NULL_TREE)
5860 warning_at (loc, OPT_Wattributes,
5861 "attributes in parameter array declarator ignored");
5863 size_varies = false;
5865 else if (TREE_CODE (type) == FUNCTION_TYPE)
5867 if (type_quals)
5868 pedwarn (loc, OPT_pedantic,
5869 "ISO C forbids qualified function types");
5870 if (type_quals)
5871 type = c_build_qualified_type (type, type_quals);
5872 type = build_pointer_type (type);
5873 type_quals = TYPE_UNQUALIFIED;
5875 else if (type_quals)
5876 type = c_build_qualified_type (type, type_quals);
5878 decl = build_decl (declarator->id_loc,
5879 PARM_DECL, declarator->u.id, type);
5880 if (size_varies)
5881 C_DECL_VARIABLE_SIZE (decl) = 1;
5883 /* Compute the type actually passed in the parmlist,
5884 for the case where there is no prototype.
5885 (For example, shorts and chars are passed as ints.)
5886 When there is a prototype, this is overridden later. */
5888 if (type == error_mark_node)
5889 promoted_type = type;
5890 else
5891 promoted_type = c_type_promotes_to (type);
5893 DECL_ARG_TYPE (decl) = promoted_type;
5894 if (declspecs->inline_p)
5895 pedwarn (loc, 0, "parameter %q+D declared %<inline%>", decl);
5897 else if (decl_context == FIELD)
5899 /* Note that the grammar rejects storage classes in typenames
5900 and fields. */
5901 gcc_assert (storage_class == csc_none && !threadp
5902 && !declspecs->inline_p);
5904 /* Structure field. It may not be a function. */
5906 if (TREE_CODE (type) == FUNCTION_TYPE)
5908 error_at (loc, "field %qE declared as a function", name);
5909 type = build_pointer_type (type);
5911 else if (TREE_CODE (type) != ERROR_MARK
5912 && !COMPLETE_OR_UNBOUND_ARRAY_TYPE_P (type))
5914 if (name)
5915 error_at (loc, "field %qE has incomplete type", name);
5916 else
5917 error_at (loc, "unnamed field has incomplete type");
5918 type = error_mark_node;
5920 type = c_build_qualified_type (type, type_quals);
5921 decl = build_decl (declarator->id_loc,
5922 FIELD_DECL, declarator->u.id, type);
5923 DECL_NONADDRESSABLE_P (decl) = bitfield;
5924 if (bitfield && !declarator->u.id)
5925 TREE_NO_WARNING (decl) = 1;
5927 if (size_varies)
5928 C_DECL_VARIABLE_SIZE (decl) = 1;
5930 else if (TREE_CODE (type) == FUNCTION_TYPE)
5932 if (storage_class == csc_register || threadp)
5934 error_at (loc, "invalid storage class for function %qE", name);
5936 else if (current_scope != file_scope)
5938 /* Function declaration not at file scope. Storage
5939 classes other than `extern' are not allowed, C99
5940 6.7.1p5, and `extern' makes no difference. However,
5941 GCC allows 'auto', perhaps with 'inline', to support
5942 nested functions. */
5943 if (storage_class == csc_auto)
5944 pedwarn (loc, OPT_pedantic,
5945 "invalid storage class for function %qE", name);
5946 else if (storage_class == csc_static)
5948 error_at (loc, "invalid storage class for function %qE", name);
5949 if (funcdef_flag)
5950 storage_class = declspecs->storage_class = csc_none;
5951 else
5952 return 0;
5956 decl = build_decl (declarator->id_loc,
5957 FUNCTION_DECL, declarator->u.id, type);
5958 decl = build_decl_attribute_variant (decl, decl_attr);
5960 if (pedantic && type_quals && !DECL_IN_SYSTEM_HEADER (decl))
5961 pedwarn (loc, OPT_pedantic,
5962 "ISO C forbids qualified function types");
5964 /* Every function declaration is an external reference
5965 (DECL_EXTERNAL) except for those which are not at file
5966 scope and are explicitly declared "auto". This is
5967 forbidden by standard C (C99 6.7.1p5) and is interpreted by
5968 GCC to signify a forward declaration of a nested function. */
5969 if (storage_class == csc_auto && current_scope != file_scope)
5970 DECL_EXTERNAL (decl) = 0;
5971 /* In C99, a function which is declared 'inline' with 'extern'
5972 is not an external reference (which is confusing). It
5973 means that the later definition of the function must be output
5974 in this file, C99 6.7.4p6. In GNU C89, a function declared
5975 'extern inline' is an external reference. */
5976 else if (declspecs->inline_p && storage_class != csc_static)
5977 DECL_EXTERNAL (decl) = ((storage_class == csc_extern)
5978 == flag_gnu89_inline);
5979 else
5980 DECL_EXTERNAL (decl) = !initialized;
5982 /* Record absence of global scope for `static' or `auto'. */
5983 TREE_PUBLIC (decl)
5984 = !(storage_class == csc_static || storage_class == csc_auto);
5986 /* For a function definition, record the argument information
5987 block where store_parm_decls will look for it. */
5988 if (funcdef_flag)
5989 current_function_arg_info = arg_info;
5991 if (declspecs->default_int_p)
5992 C_FUNCTION_IMPLICIT_INT (decl) = 1;
5994 /* Record presence of `inline', if it is reasonable. */
5995 if (flag_hosted && MAIN_NAME_P (declarator->u.id))
5997 if (declspecs->inline_p)
5998 pedwarn (loc, 0, "cannot inline function %<main%>");
6000 else if (declspecs->inline_p)
6001 /* Record that the function is declared `inline'. */
6002 DECL_DECLARED_INLINE_P (decl) = 1;
6004 else
6006 /* It's a variable. */
6007 /* An uninitialized decl with `extern' is a reference. */
6008 int extern_ref = !initialized && storage_class == csc_extern;
6010 type = c_build_qualified_type (type, type_quals);
6012 /* C99 6.2.2p7: It is invalid (compile-time undefined
6013 behavior) to create an 'extern' declaration for a
6014 variable if there is a global declaration that is
6015 'static' and the global declaration is not visible.
6016 (If the static declaration _is_ currently visible,
6017 the 'extern' declaration is taken to refer to that decl.) */
6018 if (extern_ref && current_scope != file_scope)
6020 tree global_decl = identifier_global_value (declarator->u.id);
6021 tree visible_decl = lookup_name (declarator->u.id);
6023 if (global_decl
6024 && global_decl != visible_decl
6025 && TREE_CODE (global_decl) == VAR_DECL
6026 && !TREE_PUBLIC (global_decl))
6027 error_at (loc, "variable previously declared %<static%> "
6028 "redeclared %<extern%>");
6031 decl = build_decl (declarator->id_loc,
6032 VAR_DECL, declarator->u.id, type);
6033 if (size_varies)
6034 C_DECL_VARIABLE_SIZE (decl) = 1;
6036 if (declspecs->inline_p)
6037 pedwarn (loc, 0, "variable %q+D declared %<inline%>", decl);
6039 /* At file scope, an initialized extern declaration may follow
6040 a static declaration. In that case, DECL_EXTERNAL will be
6041 reset later in start_decl. */
6042 DECL_EXTERNAL (decl) = (storage_class == csc_extern);
6044 /* At file scope, the presence of a `static' or `register' storage
6045 class specifier, or the absence of all storage class specifiers
6046 makes this declaration a definition (perhaps tentative). Also,
6047 the absence of `static' makes it public. */
6048 if (current_scope == file_scope)
6050 TREE_PUBLIC (decl) = storage_class != csc_static;
6051 TREE_STATIC (decl) = !extern_ref;
6053 /* Not at file scope, only `static' makes a static definition. */
6054 else
6056 TREE_STATIC (decl) = (storage_class == csc_static);
6057 TREE_PUBLIC (decl) = extern_ref;
6060 if (threadp)
6061 DECL_TLS_MODEL (decl) = decl_default_tls_model (decl);
6064 if ((storage_class == csc_extern
6065 || (storage_class == csc_none
6066 && TREE_CODE (type) == FUNCTION_TYPE
6067 && !funcdef_flag))
6068 && variably_modified_type_p (type, NULL_TREE))
6070 /* C99 6.7.5.2p2 */
6071 if (TREE_CODE (type) == FUNCTION_TYPE)
6072 error_at (loc, "non-nested function with variably modified type");
6073 else
6074 error_at (loc, "object with variably modified type must have "
6075 "no linkage");
6078 /* Record `register' declaration for warnings on &
6079 and in case doing stupid register allocation. */
6081 if (storage_class == csc_register)
6083 C_DECL_REGISTER (decl) = 1;
6084 DECL_REGISTER (decl) = 1;
6087 /* Record constancy and volatility. */
6088 c_apply_type_quals_to_decl (type_quals, decl);
6090 /* If a type has volatile components, it should be stored in memory.
6091 Otherwise, the fact that those components are volatile
6092 will be ignored, and would even crash the compiler.
6093 Of course, this only makes sense on VAR,PARM, and RESULT decl's. */
6094 if (C_TYPE_FIELDS_VOLATILE (TREE_TYPE (decl))
6095 && (TREE_CODE (decl) == VAR_DECL || TREE_CODE (decl) == PARM_DECL
6096 || TREE_CODE (decl) == RESULT_DECL))
6098 /* It is not an error for a structure with volatile fields to
6099 be declared register, but reset DECL_REGISTER since it
6100 cannot actually go in a register. */
6101 int was_reg = C_DECL_REGISTER (decl);
6102 C_DECL_REGISTER (decl) = 0;
6103 DECL_REGISTER (decl) = 0;
6104 c_mark_addressable (decl);
6105 C_DECL_REGISTER (decl) = was_reg;
6108 /* This is the earliest point at which we might know the assembler
6109 name of a variable. Thus, if it's known before this, die horribly. */
6110 gcc_assert (!DECL_ASSEMBLER_NAME_SET_P (decl));
6112 if (warn_cxx_compat
6113 && TREE_CODE (decl) == VAR_DECL
6114 && TREE_PUBLIC (decl)
6115 && TREE_STATIC (decl)
6116 && (TREE_CODE (TREE_TYPE (decl)) == RECORD_TYPE
6117 || TREE_CODE (TREE_TYPE (decl)) == UNION_TYPE
6118 || TREE_CODE (TREE_TYPE (decl)) == ENUMERAL_TYPE)
6119 && TYPE_NAME (TREE_TYPE (decl)) == NULL_TREE)
6120 warning_at (DECL_SOURCE_LOCATION (decl), OPT_Wc___compat,
6121 ("non-local variable %qD with anonymous type is "
6122 "questionable in C++"),
6123 decl);
6125 return decl;
6129 /* Decode the parameter-list info for a function type or function definition.
6130 The argument is the value returned by `get_parm_info' (or made in c-parse.c
6131 if there is an identifier list instead of a parameter decl list).
6132 These two functions are separate because when a function returns
6133 or receives functions then each is called multiple times but the order
6134 of calls is different. The last call to `grokparms' is always the one
6135 that contains the formal parameter names of a function definition.
6137 Return a list of arg types to use in the FUNCTION_TYPE for this function.
6139 FUNCDEF_FLAG is true for a function definition, false for
6140 a mere declaration. A nonempty identifier-list gets an error message
6141 when FUNCDEF_FLAG is false. */
6143 static tree
6144 grokparms (struct c_arg_info *arg_info, bool funcdef_flag)
6146 tree arg_types = arg_info->types;
6148 if (funcdef_flag && arg_info->had_vla_unspec)
6150 /* A function definition isn't function prototype scope C99 6.2.1p4. */
6151 /* C99 6.7.5.2p4 */
6152 error ("%<[*]%> not allowed in other than function prototype scope");
6155 if (arg_types == 0 && !funcdef_flag && !in_system_header)
6156 warning (OPT_Wstrict_prototypes,
6157 "function declaration isn%'t a prototype");
6159 if (arg_types == error_mark_node)
6160 return 0; /* don't set TYPE_ARG_TYPES in this case */
6162 else if (arg_types && TREE_CODE (TREE_VALUE (arg_types)) == IDENTIFIER_NODE)
6164 if (!funcdef_flag)
6166 pedwarn (input_location, 0, "parameter names (without types) in function declaration");
6167 arg_info->parms = NULL_TREE;
6169 else
6170 arg_info->parms = arg_info->types;
6172 arg_info->types = 0;
6173 return 0;
6175 else
6177 tree parm, type, typelt;
6178 unsigned int parmno;
6179 const char *errmsg;
6181 /* If there is a parameter of incomplete type in a definition,
6182 this is an error. In a declaration this is valid, and a
6183 struct or union type may be completed later, before any calls
6184 or definition of the function. In the case where the tag was
6185 first declared within the parameter list, a warning has
6186 already been given. If a parameter has void type, then
6187 however the function cannot be defined or called, so
6188 warn. */
6190 for (parm = arg_info->parms, typelt = arg_types, parmno = 1;
6191 parm;
6192 parm = DECL_CHAIN (parm), typelt = TREE_CHAIN (typelt), parmno++)
6194 type = TREE_VALUE (typelt);
6195 if (type == error_mark_node)
6196 continue;
6198 if (!COMPLETE_TYPE_P (type))
6200 if (funcdef_flag)
6202 if (DECL_NAME (parm))
6203 error_at (input_location,
6204 "parameter %u (%q+D) has incomplete type",
6205 parmno, parm);
6206 else
6207 error_at (DECL_SOURCE_LOCATION (parm),
6208 "parameter %u has incomplete type",
6209 parmno);
6211 TREE_VALUE (typelt) = error_mark_node;
6212 TREE_TYPE (parm) = error_mark_node;
6213 arg_types = NULL_TREE;
6215 else if (VOID_TYPE_P (type))
6217 if (DECL_NAME (parm))
6218 warning_at (input_location, 0,
6219 "parameter %u (%q+D) has void type",
6220 parmno, parm);
6221 else
6222 warning_at (DECL_SOURCE_LOCATION (parm), 0,
6223 "parameter %u has void type",
6224 parmno);
6228 errmsg = targetm.invalid_parameter_type (type);
6229 if (errmsg)
6231 error (errmsg);
6232 TREE_VALUE (typelt) = error_mark_node;
6233 TREE_TYPE (parm) = error_mark_node;
6234 arg_types = NULL_TREE;
6237 if (DECL_NAME (parm) && TREE_USED (parm))
6238 warn_if_shadowing (parm);
6240 return arg_types;
6244 /* Allocate and initialize a c_arg_info structure from the parser's
6245 obstack. */
6247 struct c_arg_info *
6248 build_arg_info (void)
6250 struct c_arg_info *ret = XOBNEW (&parser_obstack, struct c_arg_info);
6251 ret->parms = NULL_TREE;
6252 ret->tags = NULL;
6253 ret->types = NULL_TREE;
6254 ret->others = NULL_TREE;
6255 ret->pending_sizes = NULL;
6256 ret->had_vla_unspec = 0;
6257 return ret;
6260 /* Take apart the current scope and return a c_arg_info structure with
6261 info on a parameter list just parsed.
6263 This structure is later fed to 'grokparms' and 'store_parm_decls'.
6265 ELLIPSIS being true means the argument list ended in '...' so don't
6266 append a sentinel (void_list_node) to the end of the type-list. */
6268 struct c_arg_info *
6269 get_parm_info (bool ellipsis)
6271 struct c_binding *b = current_scope->bindings;
6272 struct c_arg_info *arg_info = build_arg_info ();
6274 tree parms = 0;
6275 VEC(c_arg_tag,gc) *tags = NULL;
6276 tree types = 0;
6277 tree others = 0;
6279 static bool explained_incomplete_types = false;
6280 bool gave_void_only_once_err = false;
6282 arg_info->had_vla_unspec = current_scope->had_vla_unspec;
6284 /* The bindings in this scope must not get put into a block.
6285 We will take care of deleting the binding nodes. */
6286 current_scope->bindings = 0;
6288 /* This function is only called if there was *something* on the
6289 parameter list. */
6290 gcc_assert (b);
6292 /* A parameter list consisting solely of 'void' indicates that the
6293 function takes no arguments. But if the 'void' is qualified
6294 (by 'const' or 'volatile'), or has a storage class specifier
6295 ('register'), then the behavior is undefined; issue an error.
6296 Typedefs for 'void' are OK (see DR#157). */
6297 if (b->prev == 0 /* one binding */
6298 && TREE_CODE (b->decl) == PARM_DECL /* which is a parameter */
6299 && !DECL_NAME (b->decl) /* anonymous */
6300 && VOID_TYPE_P (TREE_TYPE (b->decl))) /* of void type */
6302 if (TREE_THIS_VOLATILE (b->decl)
6303 || TREE_READONLY (b->decl)
6304 || C_DECL_REGISTER (b->decl))
6305 error ("%<void%> as only parameter may not be qualified");
6307 /* There cannot be an ellipsis. */
6308 if (ellipsis)
6309 error ("%<void%> must be the only parameter");
6311 arg_info->types = void_list_node;
6312 return arg_info;
6315 if (!ellipsis)
6316 types = void_list_node;
6318 /* Break up the bindings list into parms, tags, types, and others;
6319 apply sanity checks; purge the name-to-decl bindings. */
6320 while (b)
6322 tree decl = b->decl;
6323 tree type = TREE_TYPE (decl);
6324 c_arg_tag *tag;
6325 const char *keyword;
6327 switch (TREE_CODE (decl))
6329 case PARM_DECL:
6330 if (b->id)
6332 gcc_assert (I_SYMBOL_BINDING (b->id) == b);
6333 I_SYMBOL_BINDING (b->id) = b->shadowed;
6336 /* Check for forward decls that never got their actual decl. */
6337 if (TREE_ASM_WRITTEN (decl))
6338 error ("parameter %q+D has just a forward declaration", decl);
6339 /* Check for (..., void, ...) and issue an error. */
6340 else if (VOID_TYPE_P (type) && !DECL_NAME (decl))
6342 if (!gave_void_only_once_err)
6344 error ("%<void%> must be the only parameter");
6345 gave_void_only_once_err = true;
6348 else
6350 /* Valid parameter, add it to the list. */
6351 DECL_CHAIN (decl) = parms;
6352 parms = decl;
6354 /* Since there is a prototype, args are passed in their
6355 declared types. The back end may override this later. */
6356 DECL_ARG_TYPE (decl) = type;
6357 types = tree_cons (0, type, types);
6359 break;
6361 case ENUMERAL_TYPE: keyword = "enum"; goto tag;
6362 case UNION_TYPE: keyword = "union"; goto tag;
6363 case RECORD_TYPE: keyword = "struct"; goto tag;
6364 tag:
6365 /* Types may not have tag-names, in which case the type
6366 appears in the bindings list with b->id NULL. */
6367 if (b->id)
6369 gcc_assert (I_TAG_BINDING (b->id) == b);
6370 I_TAG_BINDING (b->id) = b->shadowed;
6373 /* Warn about any struct, union or enum tags defined in a
6374 parameter list. The scope of such types is limited to
6375 the parameter list, which is rarely if ever desirable
6376 (it's impossible to call such a function with type-
6377 correct arguments). An anonymous union parm type is
6378 meaningful as a GNU extension, so don't warn for that. */
6379 if (TREE_CODE (decl) != UNION_TYPE || b->id != 0)
6381 if (b->id)
6382 /* The %s will be one of 'struct', 'union', or 'enum'. */
6383 warning (0, "%<%s %E%> declared inside parameter list",
6384 keyword, b->id);
6385 else
6386 /* The %s will be one of 'struct', 'union', or 'enum'. */
6387 warning (0, "anonymous %s declared inside parameter list",
6388 keyword);
6390 if (!explained_incomplete_types)
6392 warning (0, "its scope is only this definition or declaration,"
6393 " which is probably not what you want");
6394 explained_incomplete_types = true;
6398 tag = VEC_safe_push (c_arg_tag, gc, tags, NULL);
6399 tag->id = b->id;
6400 tag->type = decl;
6401 break;
6403 case CONST_DECL:
6404 case TYPE_DECL:
6405 case FUNCTION_DECL:
6406 /* CONST_DECLs appear here when we have an embedded enum,
6407 and TYPE_DECLs appear here when we have an embedded struct
6408 or union. No warnings for this - we already warned about the
6409 type itself. FUNCTION_DECLs appear when there is an implicit
6410 function declaration in the parameter list. */
6412 /* When we reinsert this decl in the function body, we need
6413 to reconstruct whether it was marked as nested. */
6414 gcc_assert (TREE_CODE (decl) == FUNCTION_DECL
6415 ? b->nested
6416 : !b->nested);
6417 DECL_CHAIN (decl) = others;
6418 others = decl;
6419 /* fall through */
6421 case ERROR_MARK:
6422 /* error_mark_node appears here when we have an undeclared
6423 variable. Just throw it away. */
6424 if (b->id)
6426 gcc_assert (I_SYMBOL_BINDING (b->id) == b);
6427 I_SYMBOL_BINDING (b->id) = b->shadowed;
6429 break;
6431 /* Other things that might be encountered. */
6432 case LABEL_DECL:
6433 case VAR_DECL:
6434 default:
6435 gcc_unreachable ();
6438 b = free_binding_and_advance (b);
6441 arg_info->parms = parms;
6442 arg_info->tags = tags;
6443 arg_info->types = types;
6444 arg_info->others = others;
6445 arg_info->pending_sizes = get_pending_sizes ();
6446 return arg_info;
6449 /* Get the struct, enum or union (CODE says which) with tag NAME.
6450 Define the tag as a forward-reference with location LOC if it is
6451 not defined. Return a c_typespec structure for the type
6452 specifier. */
6454 struct c_typespec
6455 parser_xref_tag (location_t loc, enum tree_code code, tree name)
6457 struct c_typespec ret;
6458 tree ref;
6459 location_t refloc;
6461 ret.expr = NULL_TREE;
6462 ret.expr_const_operands = true;
6464 /* If a cross reference is requested, look up the type
6465 already defined for this tag and return it. */
6467 ref = lookup_tag (code, name, 0, &refloc);
6468 /* If this is the right type of tag, return what we found.
6469 (This reference will be shadowed by shadow_tag later if appropriate.)
6470 If this is the wrong type of tag, do not return it. If it was the
6471 wrong type in the same scope, we will have had an error
6472 message already; if in a different scope and declaring
6473 a name, pending_xref_error will give an error message; but if in a
6474 different scope and not declaring a name, this tag should
6475 shadow the previous declaration of a different type of tag, and
6476 this would not work properly if we return the reference found.
6477 (For example, with "struct foo" in an outer scope, "union foo;"
6478 must shadow that tag with a new one of union type.) */
6479 ret.kind = (ref ? ctsk_tagref : ctsk_tagfirstref);
6480 if (ref && TREE_CODE (ref) == code)
6482 if (C_TYPE_DEFINED_IN_STRUCT (ref)
6483 && loc != UNKNOWN_LOCATION
6484 && warn_cxx_compat)
6486 switch (code)
6488 case ENUMERAL_TYPE:
6489 warning_at (loc, OPT_Wc___compat,
6490 ("enum type defined in struct or union "
6491 "is not visible in C++"));
6492 inform (refloc, "enum type defined here");
6493 break;
6494 case RECORD_TYPE:
6495 warning_at (loc, OPT_Wc___compat,
6496 ("struct defined in struct or union "
6497 "is not visible in C++"));
6498 inform (refloc, "struct defined here");
6499 break;
6500 case UNION_TYPE:
6501 warning_at (loc, OPT_Wc___compat,
6502 ("union defined in struct or union "
6503 "is not visible in C++"));
6504 inform (refloc, "union defined here");
6505 break;
6506 default:
6507 gcc_unreachable();
6511 ret.spec = ref;
6512 return ret;
6515 /* If no such tag is yet defined, create a forward-reference node
6516 and record it as the "definition".
6517 When a real declaration of this type is found,
6518 the forward-reference will be altered into a real type. */
6520 ref = make_node (code);
6521 if (code == ENUMERAL_TYPE)
6523 /* Give the type a default layout like unsigned int
6524 to avoid crashing if it does not get defined. */
6525 SET_TYPE_MODE (ref, TYPE_MODE (unsigned_type_node));
6526 TYPE_ALIGN (ref) = TYPE_ALIGN (unsigned_type_node);
6527 TYPE_USER_ALIGN (ref) = 0;
6528 TYPE_UNSIGNED (ref) = 1;
6529 TYPE_PRECISION (ref) = TYPE_PRECISION (unsigned_type_node);
6530 TYPE_MIN_VALUE (ref) = TYPE_MIN_VALUE (unsigned_type_node);
6531 TYPE_MAX_VALUE (ref) = TYPE_MAX_VALUE (unsigned_type_node);
6534 pushtag (loc, name, ref);
6536 ret.spec = ref;
6537 return ret;
6540 /* Get the struct, enum or union (CODE says which) with tag NAME.
6541 Define the tag as a forward-reference if it is not defined.
6542 Return a tree for the type. */
6544 tree
6545 xref_tag (enum tree_code code, tree name)
6547 return parser_xref_tag (input_location, code, name).spec;
6550 /* Make sure that the tag NAME is defined *in the current scope*
6551 at least as a forward reference.
6552 LOC is the location of the struct's definition.
6553 CODE says which kind of tag NAME ought to be.
6555 This stores the current value of the file static STRUCT_PARSE_INFO
6556 in *ENCLOSING_STRUCT_PARSE_INFO, and points STRUCT_PARSE_INFO at a
6557 new c_struct_parse_info structure. The old value of
6558 STRUCT_PARSE_INFO is restored in finish_struct. */
6560 tree
6561 start_struct (location_t loc, enum tree_code code, tree name,
6562 struct c_struct_parse_info **enclosing_struct_parse_info)
6564 /* If there is already a tag defined at this scope
6565 (as a forward reference), just return it. */
6567 tree ref = NULL_TREE;
6568 location_t refloc = UNKNOWN_LOCATION;
6570 if (name != NULL_TREE)
6571 ref = lookup_tag (code, name, 1, &refloc);
6572 if (ref && TREE_CODE (ref) == code)
6574 if (TYPE_SIZE (ref))
6576 if (code == UNION_TYPE)
6577 error_at (loc, "redefinition of %<union %E%>", name);
6578 else
6579 error_at (loc, "redefinition of %<struct %E%>", name);
6580 if (refloc != UNKNOWN_LOCATION)
6581 inform (refloc, "originally defined here");
6582 /* Don't create structures using a name already in use. */
6583 ref = NULL_TREE;
6585 else if (C_TYPE_BEING_DEFINED (ref))
6587 if (code == UNION_TYPE)
6588 error_at (loc, "nested redefinition of %<union %E%>", name);
6589 else
6590 error_at (loc, "nested redefinition of %<struct %E%>", name);
6591 /* Don't bother to report "originally defined here" for a
6592 nested redefinition; the original definition should be
6593 obvious. */
6594 /* Don't create structures that contain themselves. */
6595 ref = NULL_TREE;
6599 /* Otherwise create a forward-reference just so the tag is in scope. */
6601 if (ref == NULL_TREE || TREE_CODE (ref) != code)
6603 ref = make_node (code);
6604 pushtag (loc, name, ref);
6607 C_TYPE_BEING_DEFINED (ref) = 1;
6608 TYPE_PACKED (ref) = flag_pack_struct;
6610 *enclosing_struct_parse_info = struct_parse_info;
6611 struct_parse_info = XNEW (struct c_struct_parse_info);
6612 struct_parse_info->struct_types = VEC_alloc (tree, heap, 0);
6613 struct_parse_info->fields = VEC_alloc (c_binding_ptr, heap, 0);
6614 struct_parse_info->typedefs_seen = VEC_alloc (tree, heap, 0);
6616 /* FIXME: This will issue a warning for a use of a type defined
6617 within a statement expr used within sizeof, et. al. This is not
6618 terribly serious as C++ doesn't permit statement exprs within
6619 sizeof anyhow. */
6620 if (warn_cxx_compat && (in_sizeof || in_typeof || in_alignof))
6621 warning_at (loc, OPT_Wc___compat,
6622 "defining type in %qs expression is invalid in C++",
6623 (in_sizeof
6624 ? "sizeof"
6625 : (in_typeof ? "typeof" : "alignof")));
6627 return ref;
6630 /* Process the specs, declarator and width (NULL if omitted)
6631 of a structure component, returning a FIELD_DECL node.
6632 WIDTH is non-NULL for bit-fields only, and is an INTEGER_CST node.
6633 DECL_ATTRS is as for grokdeclarator.
6635 LOC is the location of the structure component.
6637 This is done during the parsing of the struct declaration.
6638 The FIELD_DECL nodes are chained together and the lot of them
6639 are ultimately passed to `build_struct' to make the RECORD_TYPE node. */
6641 tree
6642 grokfield (location_t loc,
6643 struct c_declarator *declarator, struct c_declspecs *declspecs,
6644 tree width, tree *decl_attrs)
6646 tree value;
6648 if (declarator->kind == cdk_id && declarator->u.id == NULL_TREE
6649 && width == NULL_TREE)
6651 /* This is an unnamed decl.
6653 If we have something of the form "union { list } ;" then this
6654 is the anonymous union extension. Similarly for struct.
6656 If this is something of the form "struct foo;", then
6657 If MS or Plan 9 extensions are enabled, this is handled as
6658 an anonymous struct.
6659 Otherwise this is a forward declaration of a structure tag.
6661 If this is something of the form "foo;" and foo is a TYPE_DECL, then
6662 If foo names a structure or union without a tag, then this
6663 is an anonymous struct (this is permitted by C1X).
6664 If MS or Plan 9 extensions are enabled and foo names a
6665 structure, then again this is an anonymous struct.
6666 Otherwise this is an error.
6668 Oh what a horrid tangled web we weave. I wonder if MS consciously
6669 took this from Plan 9 or if it was an accident of implementation
6670 that took root before someone noticed the bug... */
6672 tree type = declspecs->type;
6673 bool type_ok = (TREE_CODE (type) == RECORD_TYPE
6674 || TREE_CODE (type) == UNION_TYPE);
6675 bool ok = false;
6677 if (type_ok)
6679 if (flag_ms_extensions || flag_plan9_extensions)
6680 ok = true;
6681 else if (TYPE_NAME (TYPE_MAIN_VARIANT (type)) == NULL)
6682 ok = true;
6683 else
6684 ok = false;
6686 if (!ok)
6688 pedwarn (loc, 0, "declaration does not declare anything");
6689 return NULL_TREE;
6691 if (!flag_isoc1x)
6693 if (flag_isoc99)
6694 pedwarn (loc, OPT_pedantic,
6695 "ISO C99 doesn%'t support unnamed structs/unions");
6696 else
6697 pedwarn (loc, OPT_pedantic,
6698 "ISO C90 doesn%'t support unnamed structs/unions");
6702 value = grokdeclarator (declarator, declspecs, FIELD, false,
6703 width ? &width : NULL, decl_attrs, NULL, NULL,
6704 DEPRECATED_NORMAL);
6706 finish_decl (value, loc, NULL_TREE, NULL_TREE, NULL_TREE);
6707 DECL_INITIAL (value) = width;
6709 if (warn_cxx_compat && DECL_NAME (value) != NULL_TREE)
6711 /* If we currently have a binding for this field, set the
6712 in_struct field in the binding, so that we warn about lookups
6713 which find it. */
6714 struct c_binding *b = I_SYMBOL_BINDING (DECL_NAME (value));
6715 if (b != NULL)
6717 /* If the in_struct field is not yet set, push it on a list
6718 to be cleared when this struct is finished. */
6719 if (!b->in_struct)
6721 VEC_safe_push (c_binding_ptr, heap,
6722 struct_parse_info->fields, b);
6723 b->in_struct = 1;
6728 return value;
6731 /* Subroutine of detect_field_duplicates: return whether X and Y,
6732 which are both fields in the same struct, have duplicate field
6733 names. */
6735 static bool
6736 is_duplicate_field (tree x, tree y)
6738 if (DECL_NAME (x) != NULL_TREE && DECL_NAME (x) == DECL_NAME (y))
6739 return true;
6741 /* When using -fplan9-extensions, an anonymous field whose name is a
6742 typedef can duplicate a field name. */
6743 if (flag_plan9_extensions
6744 && (DECL_NAME (x) == NULL_TREE || DECL_NAME (y) == NULL_TREE))
6746 tree xt, xn, yt, yn;
6748 xt = TREE_TYPE (x);
6749 if (DECL_NAME (x) != NULL_TREE)
6750 xn = DECL_NAME (x);
6751 else if ((TREE_CODE (xt) == RECORD_TYPE || TREE_CODE (xt) == UNION_TYPE)
6752 && TYPE_NAME (xt) != NULL_TREE
6753 && TREE_CODE (TYPE_NAME (xt)) == TYPE_DECL)
6754 xn = DECL_NAME (TYPE_NAME (xt));
6755 else
6756 xn = NULL_TREE;
6758 yt = TREE_TYPE (y);
6759 if (DECL_NAME (y) != NULL_TREE)
6760 yn = DECL_NAME (y);
6761 else if ((TREE_CODE (yt) == RECORD_TYPE || TREE_CODE (yt) == UNION_TYPE)
6762 && TYPE_NAME (yt) != NULL_TREE
6763 && TREE_CODE (TYPE_NAME (yt)) == TYPE_DECL)
6764 yn = DECL_NAME (TYPE_NAME (yt));
6765 else
6766 yn = NULL_TREE;
6768 if (xn != NULL_TREE && xn == yn)
6769 return true;
6772 return false;
6775 /* Subroutine of detect_field_duplicates: add the fields of FIELDLIST
6776 to HTAB, giving errors for any duplicates. */
6778 static void
6779 detect_field_duplicates_hash (tree fieldlist, htab_t htab)
6781 tree x, y;
6782 void **slot;
6784 for (x = fieldlist; x ; x = DECL_CHAIN (x))
6785 if ((y = DECL_NAME (x)) != 0)
6787 slot = htab_find_slot (htab, y, INSERT);
6788 if (*slot)
6790 error ("duplicate member %q+D", x);
6791 DECL_NAME (x) = NULL_TREE;
6793 *slot = y;
6795 else if (TREE_CODE (TREE_TYPE (x)) == RECORD_TYPE
6796 || TREE_CODE (TREE_TYPE (x)) == UNION_TYPE)
6798 detect_field_duplicates_hash (TYPE_FIELDS (TREE_TYPE (x)), htab);
6800 /* When using -fplan9-extensions, an anonymous field whose
6801 name is a typedef can duplicate a field name. */
6802 if (flag_plan9_extensions
6803 && TYPE_NAME (TREE_TYPE (x)) != NULL_TREE
6804 && TREE_CODE (TYPE_NAME (TREE_TYPE (x))) == TYPE_DECL)
6806 tree xn = DECL_NAME (TYPE_NAME (TREE_TYPE (x)));
6807 slot = htab_find_slot (htab, xn, INSERT);
6808 if (*slot)
6809 error ("duplicate member %q+D", TYPE_NAME (TREE_TYPE (x)));
6810 *slot = xn;
6815 /* Generate an error for any duplicate field names in FIELDLIST. Munge
6816 the list such that this does not present a problem later. */
6818 static void
6819 detect_field_duplicates (tree fieldlist)
6821 tree x, y;
6822 int timeout = 10;
6824 /* If the struct is the list of instance variables of an Objective-C
6825 class, then we need to add all the instance variables of
6826 superclasses before checking for duplicates (since you can't have
6827 an instance variable in a subclass with the same name as an
6828 instance variable in a superclass). objc_get_interface_ivars()
6829 leaves fieldlist unchanged if we are not in this case, so in that
6830 case nothing changes compared to C.
6832 if (c_dialect_objc ())
6833 fieldlist = objc_get_interface_ivars (fieldlist);
6835 /* First, see if there are more than "a few" fields.
6836 This is trivially true if there are zero or one fields. */
6837 if (!fieldlist || !DECL_CHAIN (fieldlist))
6838 return;
6839 x = fieldlist;
6840 do {
6841 timeout--;
6842 if (DECL_NAME (x) == NULL_TREE
6843 && (TREE_CODE (TREE_TYPE (x)) == RECORD_TYPE
6844 || TREE_CODE (TREE_TYPE (x)) == UNION_TYPE))
6845 timeout = 0;
6846 x = DECL_CHAIN (x);
6847 } while (timeout > 0 && x);
6849 /* If there were "few" fields and no anonymous structures or unions,
6850 avoid the overhead of allocating a hash table. Instead just do
6851 the nested traversal thing. */
6852 if (timeout > 0)
6854 for (x = DECL_CHAIN (fieldlist); x; x = DECL_CHAIN (x))
6855 /* When using -fplan9-extensions, we can have duplicates
6856 between typedef names and fields. */
6857 if (DECL_NAME (x)
6858 || (flag_plan9_extensions
6859 && DECL_NAME (x) == NULL_TREE
6860 && (TREE_CODE (TREE_TYPE (x)) == RECORD_TYPE
6861 || TREE_CODE (TREE_TYPE (x)) == UNION_TYPE)
6862 && TYPE_NAME (TREE_TYPE (x)) != NULL_TREE
6863 && TREE_CODE (TYPE_NAME (TREE_TYPE (x))) == TYPE_DECL))
6865 for (y = fieldlist; y != x; y = TREE_CHAIN (y))
6866 if (is_duplicate_field (y, x))
6868 error ("duplicate member %q+D", x);
6869 DECL_NAME (x) = NULL_TREE;
6873 else
6875 htab_t htab = htab_create (37, htab_hash_pointer, htab_eq_pointer, NULL);
6877 detect_field_duplicates_hash (fieldlist, htab);
6878 htab_delete (htab);
6882 /* Finish up struct info used by -Wc++-compat. */
6884 static void
6885 warn_cxx_compat_finish_struct (tree fieldlist)
6887 unsigned int ix;
6888 tree x;
6889 struct c_binding *b;
6891 /* Set the C_TYPE_DEFINED_IN_STRUCT flag for each type defined in
6892 the current struct. We do this now at the end of the struct
6893 because the flag is used to issue visibility warnings, and we
6894 only want to issue those warnings if the type is referenced
6895 outside of the struct declaration. */
6896 FOR_EACH_VEC_ELT (tree, struct_parse_info->struct_types, ix, x)
6897 C_TYPE_DEFINED_IN_STRUCT (x) = 1;
6899 /* The TYPEDEFS_SEEN field of STRUCT_PARSE_INFO is a list of
6900 typedefs used when declaring fields in this struct. If the name
6901 of any of the fields is also a typedef name then the struct would
6902 not parse in C++, because the C++ lookup rules say that the
6903 typedef name would be looked up in the context of the struct, and
6904 would thus be the field rather than the typedef. */
6905 if (!VEC_empty (tree, struct_parse_info->typedefs_seen)
6906 && fieldlist != NULL_TREE)
6908 /* Use a pointer_set using the name of the typedef. We can use
6909 a pointer_set because identifiers are interned. */
6910 struct pointer_set_t *tset = pointer_set_create ();
6912 FOR_EACH_VEC_ELT (tree, struct_parse_info->typedefs_seen, ix, x)
6913 pointer_set_insert (tset, DECL_NAME (x));
6915 for (x = fieldlist; x != NULL_TREE; x = DECL_CHAIN (x))
6917 if (DECL_NAME (x) != NULL_TREE
6918 && pointer_set_contains (tset, DECL_NAME (x)))
6920 warning_at (DECL_SOURCE_LOCATION (x), OPT_Wc___compat,
6921 ("using %qD as both field and typedef name is "
6922 "invalid in C++"),
6924 /* FIXME: It would be nice to report the location where
6925 the typedef name is used. */
6929 pointer_set_destroy (tset);
6932 /* For each field which has a binding and which was not defined in
6933 an enclosing struct, clear the in_struct field. */
6934 FOR_EACH_VEC_ELT (c_binding_ptr, struct_parse_info->fields, ix, b)
6935 b->in_struct = 0;
6938 /* Fill in the fields of a RECORD_TYPE or UNION_TYPE node, T.
6939 LOC is the location of the RECORD_TYPE or UNION_TYPE's definition.
6940 FIELDLIST is a chain of FIELD_DECL nodes for the fields.
6941 ATTRIBUTES are attributes to be applied to the structure.
6943 ENCLOSING_STRUCT_PARSE_INFO is the value of STRUCT_PARSE_INFO when
6944 the struct was started. */
6946 tree
6947 finish_struct (location_t loc, tree t, tree fieldlist, tree attributes,
6948 struct c_struct_parse_info *enclosing_struct_parse_info)
6950 tree x;
6951 bool toplevel = file_scope == current_scope;
6952 int saw_named_field;
6954 /* If this type was previously laid out as a forward reference,
6955 make sure we lay it out again. */
6957 TYPE_SIZE (t) = 0;
6959 decl_attributes (&t, attributes, (int) ATTR_FLAG_TYPE_IN_PLACE);
6961 if (pedantic)
6963 for (x = fieldlist; x; x = DECL_CHAIN (x))
6965 if (DECL_NAME (x) != 0)
6966 break;
6967 if (flag_isoc1x
6968 && (TREE_CODE (TREE_TYPE (x)) == RECORD_TYPE
6969 || TREE_CODE (TREE_TYPE (x)) == UNION_TYPE))
6970 break;
6973 if (x == 0)
6975 if (TREE_CODE (t) == UNION_TYPE)
6977 if (fieldlist)
6978 pedwarn (loc, OPT_pedantic, "union has no named members");
6979 else
6980 pedwarn (loc, OPT_pedantic, "union has no members");
6982 else
6984 if (fieldlist)
6985 pedwarn (loc, OPT_pedantic, "struct has no named members");
6986 else
6987 pedwarn (loc, OPT_pedantic, "struct has no members");
6992 /* Install struct as DECL_CONTEXT of each field decl.
6993 Also process specified field sizes, found in the DECL_INITIAL,
6994 storing 0 there after the type has been changed to precision equal
6995 to its width, rather than the precision of the specified standard
6996 type. (Correct layout requires the original type to have been preserved
6997 until now.) */
6999 saw_named_field = 0;
7000 for (x = fieldlist; x; x = DECL_CHAIN (x))
7002 if (TREE_TYPE (x) == error_mark_node)
7003 continue;
7005 DECL_CONTEXT (x) = t;
7007 /* If any field is const, the structure type is pseudo-const. */
7008 if (TREE_READONLY (x))
7009 C_TYPE_FIELDS_READONLY (t) = 1;
7010 else
7012 /* A field that is pseudo-const makes the structure likewise. */
7013 tree t1 = strip_array_types (TREE_TYPE (x));
7014 if ((TREE_CODE (t1) == RECORD_TYPE || TREE_CODE (t1) == UNION_TYPE)
7015 && C_TYPE_FIELDS_READONLY (t1))
7016 C_TYPE_FIELDS_READONLY (t) = 1;
7019 /* Any field that is volatile means variables of this type must be
7020 treated in some ways as volatile. */
7021 if (TREE_THIS_VOLATILE (x))
7022 C_TYPE_FIELDS_VOLATILE (t) = 1;
7024 /* Any field of nominal variable size implies structure is too. */
7025 if (C_DECL_VARIABLE_SIZE (x))
7026 C_TYPE_VARIABLE_SIZE (t) = 1;
7028 if (DECL_INITIAL (x))
7030 unsigned HOST_WIDE_INT width = tree_low_cst (DECL_INITIAL (x), 1);
7031 DECL_SIZE (x) = bitsize_int (width);
7032 DECL_BIT_FIELD (x) = 1;
7033 SET_DECL_C_BIT_FIELD (x);
7036 if (TYPE_PACKED (t)
7037 && (DECL_BIT_FIELD (x)
7038 || TYPE_ALIGN (TREE_TYPE (x)) > BITS_PER_UNIT))
7039 DECL_PACKED (x) = 1;
7041 /* Detect flexible array member in an invalid context. */
7042 if (TREE_CODE (TREE_TYPE (x)) == ARRAY_TYPE
7043 && TYPE_SIZE (TREE_TYPE (x)) == NULL_TREE
7044 && TYPE_DOMAIN (TREE_TYPE (x)) != NULL_TREE
7045 && TYPE_MAX_VALUE (TYPE_DOMAIN (TREE_TYPE (x))) == NULL_TREE)
7047 if (TREE_CODE (t) == UNION_TYPE)
7049 error_at (DECL_SOURCE_LOCATION (x),
7050 "flexible array member in union");
7051 TREE_TYPE (x) = error_mark_node;
7053 else if (DECL_CHAIN (x) != NULL_TREE)
7055 error_at (DECL_SOURCE_LOCATION (x),
7056 "flexible array member not at end of struct");
7057 TREE_TYPE (x) = error_mark_node;
7059 else if (!saw_named_field)
7061 error_at (DECL_SOURCE_LOCATION (x),
7062 "flexible array member in otherwise empty struct");
7063 TREE_TYPE (x) = error_mark_node;
7067 if (pedantic && TREE_CODE (t) == RECORD_TYPE
7068 && flexible_array_type_p (TREE_TYPE (x)))
7069 pedwarn (DECL_SOURCE_LOCATION (x), OPT_pedantic,
7070 "invalid use of structure with flexible array member");
7072 if (DECL_NAME (x)
7073 || TREE_CODE (TREE_TYPE (x)) == RECORD_TYPE
7074 || TREE_CODE (TREE_TYPE (x)) == UNION_TYPE)
7075 saw_named_field = 1;
7078 detect_field_duplicates (fieldlist);
7080 /* Now we have the nearly final fieldlist. Record it,
7081 then lay out the structure or union (including the fields). */
7083 TYPE_FIELDS (t) = fieldlist;
7085 layout_type (t);
7087 /* Give bit-fields their proper types. */
7089 tree *fieldlistp = &fieldlist;
7090 while (*fieldlistp)
7091 if (TREE_CODE (*fieldlistp) == FIELD_DECL && DECL_INITIAL (*fieldlistp)
7092 && TREE_TYPE (*fieldlistp) != error_mark_node)
7094 unsigned HOST_WIDE_INT width
7095 = tree_low_cst (DECL_INITIAL (*fieldlistp), 1);
7096 tree type = TREE_TYPE (*fieldlistp);
7097 if (width != TYPE_PRECISION (type))
7099 TREE_TYPE (*fieldlistp)
7100 = c_build_bitfield_integer_type (width, TYPE_UNSIGNED (type));
7101 DECL_MODE (*fieldlistp) = TYPE_MODE (TREE_TYPE (*fieldlistp));
7103 DECL_INITIAL (*fieldlistp) = 0;
7105 else
7106 fieldlistp = &DECL_CHAIN (*fieldlistp);
7109 /* Now we have the truly final field list.
7110 Store it in this type and in the variants. */
7112 TYPE_FIELDS (t) = fieldlist;
7114 /* If there are lots of fields, sort so we can look through them fast.
7115 We arbitrarily consider 16 or more elts to be "a lot". */
7118 int len = 0;
7120 for (x = fieldlist; x; x = DECL_CHAIN (x))
7122 if (len > 15 || DECL_NAME (x) == NULL)
7123 break;
7124 len += 1;
7127 if (len > 15)
7129 tree *field_array;
7130 struct lang_type *space;
7131 struct sorted_fields_type *space2;
7133 len += list_length (x);
7135 /* Use the same allocation policy here that make_node uses, to
7136 ensure that this lives as long as the rest of the struct decl.
7137 All decls in an inline function need to be saved. */
7139 space = ggc_alloc_cleared_lang_type (sizeof (struct lang_type));
7140 space2 = ggc_alloc_sorted_fields_type
7141 (sizeof (struct sorted_fields_type) + len * sizeof (tree));
7143 len = 0;
7144 space->s = space2;
7145 field_array = &space2->elts[0];
7146 for (x = fieldlist; x; x = DECL_CHAIN (x))
7148 field_array[len++] = x;
7150 /* If there is anonymous struct or union, break out of the loop. */
7151 if (DECL_NAME (x) == NULL)
7152 break;
7154 /* Found no anonymous struct/union. Add the TYPE_LANG_SPECIFIC. */
7155 if (x == NULL)
7157 TYPE_LANG_SPECIFIC (t) = space;
7158 TYPE_LANG_SPECIFIC (t)->s->len = len;
7159 field_array = TYPE_LANG_SPECIFIC (t)->s->elts;
7160 qsort (field_array, len, sizeof (tree), field_decl_cmp);
7165 for (x = TYPE_MAIN_VARIANT (t); x; x = TYPE_NEXT_VARIANT (x))
7167 TYPE_FIELDS (x) = TYPE_FIELDS (t);
7168 TYPE_LANG_SPECIFIC (x) = TYPE_LANG_SPECIFIC (t);
7169 C_TYPE_FIELDS_READONLY (x) = C_TYPE_FIELDS_READONLY (t);
7170 C_TYPE_FIELDS_VOLATILE (x) = C_TYPE_FIELDS_VOLATILE (t);
7171 C_TYPE_VARIABLE_SIZE (x) = C_TYPE_VARIABLE_SIZE (t);
7174 /* If this was supposed to be a transparent union, but we can't
7175 make it one, warn and turn off the flag. */
7176 if (TREE_CODE (t) == UNION_TYPE
7177 && TYPE_TRANSPARENT_AGGR (t)
7178 && (!TYPE_FIELDS (t) || TYPE_MODE (t) != DECL_MODE (TYPE_FIELDS (t))))
7180 TYPE_TRANSPARENT_AGGR (t) = 0;
7181 warning_at (loc, 0, "union cannot be made transparent");
7184 /* If this structure or union completes the type of any previous
7185 variable declaration, lay it out and output its rtl. */
7186 for (x = C_TYPE_INCOMPLETE_VARS (TYPE_MAIN_VARIANT (t));
7188 x = TREE_CHAIN (x))
7190 tree decl = TREE_VALUE (x);
7191 if (TREE_CODE (TREE_TYPE (decl)) == ARRAY_TYPE)
7192 layout_array_type (TREE_TYPE (decl));
7193 if (TREE_CODE (decl) != TYPE_DECL)
7195 layout_decl (decl, 0);
7196 if (c_dialect_objc ())
7197 objc_check_decl (decl);
7198 rest_of_decl_compilation (decl, toplevel, 0);
7199 if (!toplevel)
7200 expand_decl (decl);
7203 C_TYPE_INCOMPLETE_VARS (TYPE_MAIN_VARIANT (t)) = 0;
7205 /* Update type location to the one of the definition, instead of e.g.
7206 a forward declaration. */
7207 if (TYPE_STUB_DECL (t))
7208 DECL_SOURCE_LOCATION (TYPE_STUB_DECL (t)) = loc;
7210 /* Finish debugging output for this type. */
7211 rest_of_type_compilation (t, toplevel);
7213 /* If we're inside a function proper, i.e. not file-scope and not still
7214 parsing parameters, then arrange for the size of a variable sized type
7215 to be bound now. */
7216 if (cur_stmt_list && variably_modified_type_p (t, NULL_TREE))
7217 add_stmt (build_stmt (loc,
7218 DECL_EXPR, build_decl (loc, TYPE_DECL, NULL, t)));
7220 if (warn_cxx_compat)
7221 warn_cxx_compat_finish_struct (fieldlist);
7223 VEC_free (tree, heap, struct_parse_info->struct_types);
7224 VEC_free (c_binding_ptr, heap, struct_parse_info->fields);
7225 VEC_free (tree, heap, struct_parse_info->typedefs_seen);
7226 XDELETE (struct_parse_info);
7228 struct_parse_info = enclosing_struct_parse_info;
7230 /* If this struct is defined inside a struct, add it to
7231 struct_types. */
7232 if (warn_cxx_compat
7233 && struct_parse_info != NULL
7234 && !in_sizeof && !in_typeof && !in_alignof)
7235 VEC_safe_push (tree, heap, struct_parse_info->struct_types, t);
7237 return t;
7240 /* Lay out the type T, and its element type, and so on. */
7242 static void
7243 layout_array_type (tree t)
7245 if (TREE_CODE (TREE_TYPE (t)) == ARRAY_TYPE)
7246 layout_array_type (TREE_TYPE (t));
7247 layout_type (t);
7250 /* Begin compiling the definition of an enumeration type.
7251 NAME is its name (or null if anonymous).
7252 LOC is the enum's location.
7253 Returns the type object, as yet incomplete.
7254 Also records info about it so that build_enumerator
7255 may be used to declare the individual values as they are read. */
7257 tree
7258 start_enum (location_t loc, struct c_enum_contents *the_enum, tree name)
7260 tree enumtype = NULL_TREE;
7261 location_t enumloc = UNKNOWN_LOCATION;
7263 /* If this is the real definition for a previous forward reference,
7264 fill in the contents in the same object that used to be the
7265 forward reference. */
7267 if (name != NULL_TREE)
7268 enumtype = lookup_tag (ENUMERAL_TYPE, name, 1, &enumloc);
7270 if (enumtype == 0 || TREE_CODE (enumtype) != ENUMERAL_TYPE)
7272 enumtype = make_node (ENUMERAL_TYPE);
7273 pushtag (loc, name, enumtype);
7276 if (C_TYPE_BEING_DEFINED (enumtype))
7277 error_at (loc, "nested redefinition of %<enum %E%>", name);
7279 C_TYPE_BEING_DEFINED (enumtype) = 1;
7281 if (TYPE_VALUES (enumtype) != 0)
7283 /* This enum is a named one that has been declared already. */
7284 error_at (loc, "redeclaration of %<enum %E%>", name);
7285 if (enumloc != UNKNOWN_LOCATION)
7286 inform (enumloc, "originally defined here");
7288 /* Completely replace its old definition.
7289 The old enumerators remain defined, however. */
7290 TYPE_VALUES (enumtype) = 0;
7293 the_enum->enum_next_value = integer_zero_node;
7294 the_enum->enum_overflow = 0;
7296 if (flag_short_enums)
7297 TYPE_PACKED (enumtype) = 1;
7299 /* FIXME: This will issue a warning for a use of a type defined
7300 within sizeof in a statement expr. This is not terribly serious
7301 as C++ doesn't permit statement exprs within sizeof anyhow. */
7302 if (warn_cxx_compat && (in_sizeof || in_typeof || in_alignof))
7303 warning_at (loc, OPT_Wc___compat,
7304 "defining type in %qs expression is invalid in C++",
7305 (in_sizeof
7306 ? "sizeof"
7307 : (in_typeof ? "typeof" : "alignof")));
7309 return enumtype;
7312 /* After processing and defining all the values of an enumeration type,
7313 install their decls in the enumeration type and finish it off.
7314 ENUMTYPE is the type object, VALUES a list of decl-value pairs,
7315 and ATTRIBUTES are the specified attributes.
7316 Returns ENUMTYPE. */
7318 tree
7319 finish_enum (tree enumtype, tree values, tree attributes)
7321 tree pair, tem;
7322 tree minnode = 0, maxnode = 0;
7323 int precision, unsign;
7324 bool toplevel = (file_scope == current_scope);
7325 struct lang_type *lt;
7327 decl_attributes (&enumtype, attributes, (int) ATTR_FLAG_TYPE_IN_PLACE);
7329 /* Calculate the maximum value of any enumerator in this type. */
7331 if (values == error_mark_node)
7332 minnode = maxnode = integer_zero_node;
7333 else
7335 minnode = maxnode = TREE_VALUE (values);
7336 for (pair = TREE_CHAIN (values); pair; pair = TREE_CHAIN (pair))
7338 tree value = TREE_VALUE (pair);
7339 if (tree_int_cst_lt (maxnode, value))
7340 maxnode = value;
7341 if (tree_int_cst_lt (value, minnode))
7342 minnode = value;
7346 /* Construct the final type of this enumeration. It is the same
7347 as one of the integral types - the narrowest one that fits, except
7348 that normally we only go as narrow as int - and signed iff any of
7349 the values are negative. */
7350 unsign = (tree_int_cst_sgn (minnode) >= 0);
7351 precision = MAX (tree_int_cst_min_precision (minnode, unsign),
7352 tree_int_cst_min_precision (maxnode, unsign));
7354 if (TYPE_PACKED (enumtype) || precision > TYPE_PRECISION (integer_type_node))
7356 tem = c_common_type_for_size (precision, unsign);
7357 if (tem == NULL)
7359 warning (0, "enumeration values exceed range of largest integer");
7360 tem = long_long_integer_type_node;
7363 else
7364 tem = unsign ? unsigned_type_node : integer_type_node;
7366 TYPE_MIN_VALUE (enumtype) = TYPE_MIN_VALUE (tem);
7367 TYPE_MAX_VALUE (enumtype) = TYPE_MAX_VALUE (tem);
7368 TYPE_UNSIGNED (enumtype) = TYPE_UNSIGNED (tem);
7369 TYPE_SIZE (enumtype) = 0;
7371 /* If the precision of the type was specific with an attribute and it
7372 was too small, give an error. Otherwise, use it. */
7373 if (TYPE_PRECISION (enumtype))
7375 if (precision > TYPE_PRECISION (enumtype))
7376 error ("specified mode too small for enumeral values");
7378 else
7379 TYPE_PRECISION (enumtype) = TYPE_PRECISION (tem);
7381 layout_type (enumtype);
7383 if (values != error_mark_node)
7385 /* Change the type of the enumerators to be the enum type. We
7386 need to do this irrespective of the size of the enum, for
7387 proper type checking. Replace the DECL_INITIALs of the
7388 enumerators, and the value slots of the list, with copies
7389 that have the enum type; they cannot be modified in place
7390 because they may be shared (e.g. integer_zero_node) Finally,
7391 change the purpose slots to point to the names of the decls. */
7392 for (pair = values; pair; pair = TREE_CHAIN (pair))
7394 tree enu = TREE_PURPOSE (pair);
7395 tree ini = DECL_INITIAL (enu);
7397 TREE_TYPE (enu) = enumtype;
7399 /* The ISO C Standard mandates enumerators to have type int,
7400 even though the underlying type of an enum type is
7401 unspecified. However, GCC allows enumerators of any
7402 integer type as an extensions. build_enumerator()
7403 converts any enumerators that fit in an int to type int,
7404 to avoid promotions to unsigned types when comparing
7405 integers with enumerators that fit in the int range.
7406 When -pedantic is given, build_enumerator() would have
7407 already warned about those that don't fit. Here we
7408 convert the rest to the enumerator type. */
7409 if (TREE_TYPE (ini) != integer_type_node)
7410 ini = convert (enumtype, ini);
7412 DECL_INITIAL (enu) = ini;
7413 TREE_PURPOSE (pair) = DECL_NAME (enu);
7414 TREE_VALUE (pair) = ini;
7417 TYPE_VALUES (enumtype) = values;
7420 /* Record the min/max values so that we can warn about bit-field
7421 enumerations that are too small for the values. */
7422 lt = ggc_alloc_cleared_lang_type (sizeof (struct lang_type));
7423 lt->enum_min = minnode;
7424 lt->enum_max = maxnode;
7425 TYPE_LANG_SPECIFIC (enumtype) = lt;
7427 /* Fix up all variant types of this enum type. */
7428 for (tem = TYPE_MAIN_VARIANT (enumtype); tem; tem = TYPE_NEXT_VARIANT (tem))
7430 if (tem == enumtype)
7431 continue;
7432 TYPE_VALUES (tem) = TYPE_VALUES (enumtype);
7433 TYPE_MIN_VALUE (tem) = TYPE_MIN_VALUE (enumtype);
7434 TYPE_MAX_VALUE (tem) = TYPE_MAX_VALUE (enumtype);
7435 TYPE_SIZE (tem) = TYPE_SIZE (enumtype);
7436 TYPE_SIZE_UNIT (tem) = TYPE_SIZE_UNIT (enumtype);
7437 SET_TYPE_MODE (tem, TYPE_MODE (enumtype));
7438 TYPE_PRECISION (tem) = TYPE_PRECISION (enumtype);
7439 TYPE_ALIGN (tem) = TYPE_ALIGN (enumtype);
7440 TYPE_USER_ALIGN (tem) = TYPE_USER_ALIGN (enumtype);
7441 TYPE_UNSIGNED (tem) = TYPE_UNSIGNED (enumtype);
7442 TYPE_LANG_SPECIFIC (tem) = TYPE_LANG_SPECIFIC (enumtype);
7445 /* Finish debugging output for this type. */
7446 rest_of_type_compilation (enumtype, toplevel);
7448 /* If this enum is defined inside a struct, add it to
7449 struct_types. */
7450 if (warn_cxx_compat
7451 && struct_parse_info != NULL
7452 && !in_sizeof && !in_typeof && !in_alignof)
7453 VEC_safe_push (tree, heap, struct_parse_info->struct_types, enumtype);
7455 return enumtype;
7458 /* Build and install a CONST_DECL for one value of the
7459 current enumeration type (one that was begun with start_enum).
7460 DECL_LOC is the location of the enumerator.
7461 LOC is the location of the '=' operator if any, DECL_LOC otherwise.
7462 Return a tree-list containing the CONST_DECL and its value.
7463 Assignment of sequential values by default is handled here. */
7465 tree
7466 build_enumerator (location_t decl_loc, location_t loc,
7467 struct c_enum_contents *the_enum, tree name, tree value)
7469 tree decl, type;
7471 /* Validate and default VALUE. */
7473 if (value != 0)
7475 /* Don't issue more errors for error_mark_node (i.e. an
7476 undeclared identifier) - just ignore the value expression. */
7477 if (value == error_mark_node)
7478 value = 0;
7479 else if (!INTEGRAL_TYPE_P (TREE_TYPE (value)))
7481 error_at (loc, "enumerator value for %qE is not an integer constant",
7482 name);
7483 value = 0;
7485 else
7487 if (TREE_CODE (value) != INTEGER_CST)
7489 value = c_fully_fold (value, false, NULL);
7490 if (TREE_CODE (value) == INTEGER_CST)
7491 pedwarn (loc, OPT_pedantic,
7492 "enumerator value for %qE is not an integer "
7493 "constant expression", name);
7495 if (TREE_CODE (value) != INTEGER_CST)
7497 error ("enumerator value for %qE is not an integer constant",
7498 name);
7499 value = 0;
7501 else
7503 value = default_conversion (value);
7504 constant_expression_warning (value);
7509 /* Default based on previous value. */
7510 /* It should no longer be possible to have NON_LVALUE_EXPR
7511 in the default. */
7512 if (value == 0)
7514 value = the_enum->enum_next_value;
7515 if (the_enum->enum_overflow)
7516 error_at (loc, "overflow in enumeration values");
7518 /* Even though the underlying type of an enum is unspecified, the
7519 type of enumeration constants is explicitly defined as int
7520 (6.4.4.3/2 in the C99 Standard). GCC allows any integer type as
7521 an extension. */
7522 else if (!int_fits_type_p (value, integer_type_node))
7523 pedwarn (loc, OPT_pedantic,
7524 "ISO C restricts enumerator values to range of %<int%>");
7526 /* The ISO C Standard mandates enumerators to have type int, even
7527 though the underlying type of an enum type is unspecified.
7528 However, GCC allows enumerators of any integer type as an
7529 extensions. Here we convert any enumerators that fit in an int
7530 to type int, to avoid promotions to unsigned types when comparing
7531 integers with enumerators that fit in the int range. When
7532 -pedantic is given, we would have already warned about those that
7533 don't fit. We have to do this here rather than in finish_enum
7534 because this value may be used to define more enumerators. */
7535 if (int_fits_type_p (value, integer_type_node))
7536 value = convert (integer_type_node, value);
7538 /* Set basis for default for next value. */
7539 the_enum->enum_next_value
7540 = build_binary_op (EXPR_LOC_OR_HERE (value),
7541 PLUS_EXPR, value, integer_one_node, 0);
7542 the_enum->enum_overflow = tree_int_cst_lt (the_enum->enum_next_value, value);
7544 /* Now create a declaration for the enum value name. */
7546 type = TREE_TYPE (value);
7547 type = c_common_type_for_size (MAX (TYPE_PRECISION (type),
7548 TYPE_PRECISION (integer_type_node)),
7549 (TYPE_PRECISION (type)
7550 >= TYPE_PRECISION (integer_type_node)
7551 && TYPE_UNSIGNED (type)));
7553 decl = build_decl (decl_loc, CONST_DECL, name, type);
7554 DECL_INITIAL (decl) = convert (type, value);
7555 pushdecl (decl);
7557 return tree_cons (decl, value, NULL_TREE);
7561 /* Create the FUNCTION_DECL for a function definition.
7562 DECLSPECS, DECLARATOR and ATTRIBUTES are the parts of
7563 the declaration; they describe the function's name and the type it returns,
7564 but twisted together in a fashion that parallels the syntax of C.
7566 This function creates a binding context for the function body
7567 as well as setting up the FUNCTION_DECL in current_function_decl.
7569 Returns 1 on success. If the DECLARATOR is not suitable for a function
7570 (it defines a datum instead), we return 0, which tells
7571 yyparse to report a parse error. */
7574 start_function (struct c_declspecs *declspecs, struct c_declarator *declarator,
7575 tree attributes)
7577 tree decl1, old_decl;
7578 tree restype, resdecl;
7579 location_t loc;
7581 current_function_returns_value = 0; /* Assume, until we see it does. */
7582 current_function_returns_null = 0;
7583 current_function_returns_abnormally = 0;
7584 warn_about_return_type = 0;
7585 c_switch_stack = NULL;
7587 /* Indicate no valid break/continue context by setting these variables
7588 to some non-null, non-label value. We'll notice and emit the proper
7589 error message in c_finish_bc_stmt. */
7590 c_break_label = c_cont_label = size_zero_node;
7592 decl1 = grokdeclarator (declarator, declspecs, FUNCDEF, true, NULL,
7593 &attributes, NULL, NULL, DEPRECATED_NORMAL);
7595 /* If the declarator is not suitable for a function definition,
7596 cause a syntax error. */
7597 if (decl1 == 0)
7598 return 0;
7600 loc = DECL_SOURCE_LOCATION (decl1);
7602 decl_attributes (&decl1, attributes, 0);
7604 if (DECL_DECLARED_INLINE_P (decl1)
7605 && DECL_UNINLINABLE (decl1)
7606 && lookup_attribute ("noinline", DECL_ATTRIBUTES (decl1)))
7607 warning_at (loc, OPT_Wattributes,
7608 "inline function %qD given attribute noinline",
7609 decl1);
7611 /* Handle gnu_inline attribute. */
7612 if (declspecs->inline_p
7613 && !flag_gnu89_inline
7614 && TREE_CODE (decl1) == FUNCTION_DECL
7615 && (lookup_attribute ("gnu_inline", DECL_ATTRIBUTES (decl1))
7616 || current_function_decl))
7618 if (declspecs->storage_class != csc_static)
7619 DECL_EXTERNAL (decl1) = !DECL_EXTERNAL (decl1);
7622 announce_function (decl1);
7624 if (!COMPLETE_OR_VOID_TYPE_P (TREE_TYPE (TREE_TYPE (decl1))))
7626 error_at (loc, "return type is an incomplete type");
7627 /* Make it return void instead. */
7628 TREE_TYPE (decl1)
7629 = build_function_type (void_type_node,
7630 TYPE_ARG_TYPES (TREE_TYPE (decl1)));
7633 if (warn_about_return_type)
7634 pedwarn_c99 (loc, flag_isoc99 ? 0
7635 : (warn_return_type ? OPT_Wreturn_type : OPT_Wimplicit_int),
7636 "return type defaults to %<int%>");
7638 /* Make the init_value nonzero so pushdecl knows this is not tentative.
7639 error_mark_node is replaced below (in pop_scope) with the BLOCK. */
7640 DECL_INITIAL (decl1) = error_mark_node;
7642 /* A nested function is not global. */
7643 if (current_function_decl != 0)
7644 TREE_PUBLIC (decl1) = 0;
7646 /* If this definition isn't a prototype and we had a prototype declaration
7647 before, copy the arg type info from that prototype. */
7648 old_decl = lookup_name_in_scope (DECL_NAME (decl1), current_scope);
7649 if (old_decl && TREE_CODE (old_decl) != FUNCTION_DECL)
7650 old_decl = 0;
7651 current_function_prototype_locus = UNKNOWN_LOCATION;
7652 current_function_prototype_built_in = false;
7653 current_function_prototype_arg_types = NULL_TREE;
7654 if (!prototype_p (TREE_TYPE (decl1)))
7656 if (old_decl != 0 && TREE_CODE (TREE_TYPE (old_decl)) == FUNCTION_TYPE
7657 && comptypes (TREE_TYPE (TREE_TYPE (decl1)),
7658 TREE_TYPE (TREE_TYPE (old_decl))))
7660 TREE_TYPE (decl1) = composite_type (TREE_TYPE (old_decl),
7661 TREE_TYPE (decl1));
7662 current_function_prototype_locus = DECL_SOURCE_LOCATION (old_decl);
7663 current_function_prototype_built_in
7664 = C_DECL_BUILTIN_PROTOTYPE (old_decl);
7665 current_function_prototype_arg_types
7666 = TYPE_ARG_TYPES (TREE_TYPE (decl1));
7668 if (TREE_PUBLIC (decl1))
7670 /* If there is an external prototype declaration of this
7671 function, record its location but do not copy information
7672 to this decl. This may be an invisible declaration
7673 (built-in or in a scope which has finished) or simply
7674 have more refined argument types than any declaration
7675 found above. */
7676 struct c_binding *b;
7677 for (b = I_SYMBOL_BINDING (DECL_NAME (decl1)); b; b = b->shadowed)
7678 if (B_IN_SCOPE (b, external_scope))
7679 break;
7680 if (b)
7682 tree ext_decl, ext_type;
7683 ext_decl = b->decl;
7684 ext_type = b->u.type ? b->u.type : TREE_TYPE (ext_decl);
7685 if (TREE_CODE (ext_type) == FUNCTION_TYPE
7686 && comptypes (TREE_TYPE (TREE_TYPE (decl1)),
7687 TREE_TYPE (ext_type)))
7689 current_function_prototype_locus
7690 = DECL_SOURCE_LOCATION (ext_decl);
7691 current_function_prototype_built_in
7692 = C_DECL_BUILTIN_PROTOTYPE (ext_decl);
7693 current_function_prototype_arg_types
7694 = TYPE_ARG_TYPES (ext_type);
7700 /* Optionally warn of old-fashioned def with no previous prototype. */
7701 if (warn_strict_prototypes
7702 && old_decl != error_mark_node
7703 && !prototype_p (TREE_TYPE (decl1))
7704 && C_DECL_ISNT_PROTOTYPE (old_decl))
7705 warning_at (loc, OPT_Wstrict_prototypes,
7706 "function declaration isn%'t a prototype");
7707 /* Optionally warn of any global def with no previous prototype. */
7708 else if (warn_missing_prototypes
7709 && old_decl != error_mark_node
7710 && TREE_PUBLIC (decl1)
7711 && !MAIN_NAME_P (DECL_NAME (decl1))
7712 && C_DECL_ISNT_PROTOTYPE (old_decl))
7713 warning_at (loc, OPT_Wmissing_prototypes,
7714 "no previous prototype for %qD", decl1);
7715 /* Optionally warn of any def with no previous prototype
7716 if the function has already been used. */
7717 else if (warn_missing_prototypes
7718 && old_decl != 0
7719 && old_decl != error_mark_node
7720 && TREE_USED (old_decl)
7721 && !prototype_p (TREE_TYPE (old_decl)))
7722 warning_at (loc, OPT_Wmissing_prototypes,
7723 "%qD was used with no prototype before its definition", decl1);
7724 /* Optionally warn of any global def with no previous declaration. */
7725 else if (warn_missing_declarations
7726 && TREE_PUBLIC (decl1)
7727 && old_decl == 0
7728 && !MAIN_NAME_P (DECL_NAME (decl1)))
7729 warning_at (loc, OPT_Wmissing_declarations,
7730 "no previous declaration for %qD",
7731 decl1);
7732 /* Optionally warn of any def with no previous declaration
7733 if the function has already been used. */
7734 else if (warn_missing_declarations
7735 && old_decl != 0
7736 && old_decl != error_mark_node
7737 && TREE_USED (old_decl)
7738 && C_DECL_IMPLICIT (old_decl))
7739 warning_at (loc, OPT_Wmissing_declarations,
7740 "%qD was used with no declaration before its definition", decl1);
7742 /* This function exists in static storage.
7743 (This does not mean `static' in the C sense!) */
7744 TREE_STATIC (decl1) = 1;
7746 /* This is the earliest point at which we might know the assembler
7747 name of the function. Thus, if it's set before this, die horribly. */
7748 gcc_assert (!DECL_ASSEMBLER_NAME_SET_P (decl1));
7750 /* If #pragma weak was used, mark the decl weak now. */
7751 if (current_scope == file_scope)
7752 maybe_apply_pragma_weak (decl1);
7754 /* Warn for unlikely, improbable, or stupid declarations of `main'. */
7755 if (warn_main && MAIN_NAME_P (DECL_NAME (decl1)))
7757 if (TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (decl1)))
7758 != integer_type_node)
7759 pedwarn (loc, OPT_Wmain, "return type of %qD is not %<int%>", decl1);
7761 check_main_parameter_types (decl1);
7763 if (!TREE_PUBLIC (decl1))
7764 pedwarn (loc, OPT_Wmain,
7765 "%qD is normally a non-static function", decl1);
7768 /* Record the decl so that the function name is defined.
7769 If we already have a decl for this name, and it is a FUNCTION_DECL,
7770 use the old decl. */
7772 current_function_decl = pushdecl (decl1);
7774 push_scope ();
7775 declare_parm_level ();
7777 restype = TREE_TYPE (TREE_TYPE (current_function_decl));
7778 resdecl = build_decl (loc, RESULT_DECL, NULL_TREE, restype);
7779 DECL_ARTIFICIAL (resdecl) = 1;
7780 DECL_IGNORED_P (resdecl) = 1;
7781 DECL_RESULT (current_function_decl) = resdecl;
7783 start_fname_decls ();
7785 return 1;
7788 /* Subroutine of store_parm_decls which handles new-style function
7789 definitions (prototype format). The parms already have decls, so we
7790 need only record them as in effect and complain if any redundant
7791 old-style parm decls were written. */
7792 static void
7793 store_parm_decls_newstyle (tree fndecl, const struct c_arg_info *arg_info)
7795 tree decl;
7796 c_arg_tag *tag;
7797 unsigned ix;
7799 if (current_scope->bindings)
7801 error_at (DECL_SOURCE_LOCATION (fndecl),
7802 "old-style parameter declarations in prototyped "
7803 "function definition");
7805 /* Get rid of the old-style declarations. */
7806 pop_scope ();
7807 push_scope ();
7809 /* Don't issue this warning for nested functions, and don't issue this
7810 warning if we got here because ARG_INFO_TYPES was error_mark_node
7811 (this happens when a function definition has just an ellipsis in
7812 its parameter list). */
7813 else if (!in_system_header && !current_function_scope
7814 && arg_info->types != error_mark_node)
7815 warning_at (DECL_SOURCE_LOCATION (fndecl), OPT_Wtraditional,
7816 "traditional C rejects ISO C style function definitions");
7818 /* Now make all the parameter declarations visible in the function body.
7819 We can bypass most of the grunt work of pushdecl. */
7820 for (decl = arg_info->parms; decl; decl = DECL_CHAIN (decl))
7822 DECL_CONTEXT (decl) = current_function_decl;
7823 if (DECL_NAME (decl))
7825 bind (DECL_NAME (decl), decl, current_scope,
7826 /*invisible=*/false, /*nested=*/false,
7827 UNKNOWN_LOCATION);
7828 if (!TREE_USED (decl))
7829 warn_if_shadowing (decl);
7831 else
7832 error_at (DECL_SOURCE_LOCATION (decl), "parameter name omitted");
7835 /* Record the parameter list in the function declaration. */
7836 DECL_ARGUMENTS (fndecl) = arg_info->parms;
7838 /* Now make all the ancillary declarations visible, likewise. */
7839 for (decl = arg_info->others; decl; decl = DECL_CHAIN (decl))
7841 DECL_CONTEXT (decl) = current_function_decl;
7842 if (DECL_NAME (decl))
7843 bind (DECL_NAME (decl), decl, current_scope,
7844 /*invisible=*/false,
7845 /*nested=*/(TREE_CODE (decl) == FUNCTION_DECL),
7846 UNKNOWN_LOCATION);
7849 /* And all the tag declarations. */
7850 FOR_EACH_VEC_ELT_REVERSE (c_arg_tag, arg_info->tags, ix, tag)
7851 if (tag->id)
7852 bind (tag->id, tag->type, current_scope,
7853 /*invisible=*/false, /*nested=*/false, UNKNOWN_LOCATION);
7856 /* Subroutine of store_parm_decls which handles old-style function
7857 definitions (separate parameter list and declarations). */
7859 static void
7860 store_parm_decls_oldstyle (tree fndecl, const struct c_arg_info *arg_info)
7862 struct c_binding *b;
7863 tree parm, decl, last;
7864 tree parmids = arg_info->parms;
7865 struct pointer_set_t *seen_args = pointer_set_create ();
7867 if (!in_system_header)
7868 warning_at (DECL_SOURCE_LOCATION (fndecl),
7869 OPT_Wold_style_definition, "old-style function definition");
7871 /* Match each formal parameter name with its declaration. Save each
7872 decl in the appropriate TREE_PURPOSE slot of the parmids chain. */
7873 for (parm = parmids; parm; parm = TREE_CHAIN (parm))
7875 if (TREE_VALUE (parm) == 0)
7877 error_at (DECL_SOURCE_LOCATION (fndecl),
7878 "parameter name missing from parameter list");
7879 TREE_PURPOSE (parm) = 0;
7880 continue;
7883 b = I_SYMBOL_BINDING (TREE_VALUE (parm));
7884 if (b && B_IN_CURRENT_SCOPE (b))
7886 decl = b->decl;
7887 /* Skip erroneous parameters. */
7888 if (decl == error_mark_node)
7889 continue;
7890 /* If we got something other than a PARM_DECL it is an error. */
7891 if (TREE_CODE (decl) != PARM_DECL)
7892 error_at (DECL_SOURCE_LOCATION (decl),
7893 "%qD declared as a non-parameter", decl);
7894 /* If the declaration is already marked, we have a duplicate
7895 name. Complain and ignore the duplicate. */
7896 else if (pointer_set_contains (seen_args, decl))
7898 error_at (DECL_SOURCE_LOCATION (decl),
7899 "multiple parameters named %qD", decl);
7900 TREE_PURPOSE (parm) = 0;
7901 continue;
7903 /* If the declaration says "void", complain and turn it into
7904 an int. */
7905 else if (VOID_TYPE_P (TREE_TYPE (decl)))
7907 error_at (DECL_SOURCE_LOCATION (decl),
7908 "parameter %qD declared with void type", decl);
7909 TREE_TYPE (decl) = integer_type_node;
7910 DECL_ARG_TYPE (decl) = integer_type_node;
7911 layout_decl (decl, 0);
7913 warn_if_shadowing (decl);
7915 /* If no declaration found, default to int. */
7916 else
7918 /* FIXME diagnostics: This should be the location of the argument,
7919 not the FNDECL. E.g., for an old-style declaration
7921 int f10(v) { blah; }
7923 We should use the location of the V, not the F10.
7924 Unfortunately, the V is an IDENTIFIER_NODE which has no
7925 location. In the future we need locations for c_arg_info
7926 entries.
7928 See gcc.dg/Wshadow-3.c for an example of this problem. */
7929 decl = build_decl (DECL_SOURCE_LOCATION (fndecl),
7930 PARM_DECL, TREE_VALUE (parm), integer_type_node);
7931 DECL_ARG_TYPE (decl) = TREE_TYPE (decl);
7932 pushdecl (decl);
7933 warn_if_shadowing (decl);
7935 if (flag_isoc99)
7936 pedwarn (DECL_SOURCE_LOCATION (decl),
7937 0, "type of %qD defaults to %<int%>", decl);
7938 else
7939 warning_at (DECL_SOURCE_LOCATION (decl),
7940 OPT_Wmissing_parameter_type,
7941 "type of %qD defaults to %<int%>", decl);
7944 TREE_PURPOSE (parm) = decl;
7945 pointer_set_insert (seen_args, decl);
7948 /* Now examine the parms chain for incomplete declarations
7949 and declarations with no corresponding names. */
7951 for (b = current_scope->bindings; b; b = b->prev)
7953 parm = b->decl;
7954 if (TREE_CODE (parm) != PARM_DECL)
7955 continue;
7957 if (TREE_TYPE (parm) != error_mark_node
7958 && !COMPLETE_TYPE_P (TREE_TYPE (parm)))
7960 error_at (DECL_SOURCE_LOCATION (parm),
7961 "parameter %qD has incomplete type", parm);
7962 TREE_TYPE (parm) = error_mark_node;
7965 if (!pointer_set_contains (seen_args, parm))
7967 error_at (DECL_SOURCE_LOCATION (parm),
7968 "declaration for parameter %qD but no such parameter",
7969 parm);
7971 /* Pretend the parameter was not missing.
7972 This gets us to a standard state and minimizes
7973 further error messages. */
7974 parmids = chainon (parmids, tree_cons (parm, 0, 0));
7978 /* Chain the declarations together in the order of the list of
7979 names. Store that chain in the function decl, replacing the
7980 list of names. Update the current scope to match. */
7981 DECL_ARGUMENTS (fndecl) = 0;
7983 for (parm = parmids; parm; parm = TREE_CHAIN (parm))
7984 if (TREE_PURPOSE (parm))
7985 break;
7986 if (parm && TREE_PURPOSE (parm))
7988 last = TREE_PURPOSE (parm);
7989 DECL_ARGUMENTS (fndecl) = last;
7991 for (parm = TREE_CHAIN (parm); parm; parm = TREE_CHAIN (parm))
7992 if (TREE_PURPOSE (parm))
7994 DECL_CHAIN (last) = TREE_PURPOSE (parm);
7995 last = TREE_PURPOSE (parm);
7997 DECL_CHAIN (last) = 0;
8000 pointer_set_destroy (seen_args);
8002 /* If there was a previous prototype,
8003 set the DECL_ARG_TYPE of each argument according to
8004 the type previously specified, and report any mismatches. */
8006 if (current_function_prototype_arg_types)
8008 tree type;
8009 for (parm = DECL_ARGUMENTS (fndecl),
8010 type = current_function_prototype_arg_types;
8011 parm || (type && TREE_VALUE (type) != error_mark_node
8012 && (TYPE_MAIN_VARIANT (TREE_VALUE (type)) != void_type_node));
8013 parm = DECL_CHAIN (parm), type = TREE_CHAIN (type))
8015 if (parm == 0 || type == 0
8016 || TYPE_MAIN_VARIANT (TREE_VALUE (type)) == void_type_node)
8018 if (current_function_prototype_built_in)
8019 warning_at (DECL_SOURCE_LOCATION (fndecl),
8020 0, "number of arguments doesn%'t match "
8021 "built-in prototype");
8022 else
8024 /* FIXME diagnostics: This should be the location of
8025 FNDECL, but there is bug when a prototype is
8026 declared inside function context, but defined
8027 outside of it (e.g., gcc.dg/pr15698-2.c). In
8028 which case FNDECL gets the location of the
8029 prototype, not the definition. */
8030 error_at (input_location,
8031 "number of arguments doesn%'t match prototype");
8033 error_at (current_function_prototype_locus,
8034 "prototype declaration");
8036 break;
8038 /* Type for passing arg must be consistent with that
8039 declared for the arg. ISO C says we take the unqualified
8040 type for parameters declared with qualified type. */
8041 if (TREE_TYPE (parm) != error_mark_node
8042 && TREE_TYPE (type) != error_mark_node
8043 && !comptypes (TYPE_MAIN_VARIANT (DECL_ARG_TYPE (parm)),
8044 TYPE_MAIN_VARIANT (TREE_VALUE (type))))
8046 if (TYPE_MAIN_VARIANT (TREE_TYPE (parm))
8047 == TYPE_MAIN_VARIANT (TREE_VALUE (type)))
8049 /* Adjust argument to match prototype. E.g. a previous
8050 `int foo(float);' prototype causes
8051 `int foo(x) float x; {...}' to be treated like
8052 `int foo(float x) {...}'. This is particularly
8053 useful for argument types like uid_t. */
8054 DECL_ARG_TYPE (parm) = TREE_TYPE (parm);
8056 if (targetm.calls.promote_prototypes (TREE_TYPE (current_function_decl))
8057 && INTEGRAL_TYPE_P (TREE_TYPE (parm))
8058 && TYPE_PRECISION (TREE_TYPE (parm))
8059 < TYPE_PRECISION (integer_type_node))
8060 DECL_ARG_TYPE (parm) = integer_type_node;
8062 /* ??? Is it possible to get here with a
8063 built-in prototype or will it always have
8064 been diagnosed as conflicting with an
8065 old-style definition and discarded? */
8066 if (current_function_prototype_built_in)
8067 warning_at (DECL_SOURCE_LOCATION (parm),
8068 OPT_pedantic, "promoted argument %qD "
8069 "doesn%'t match built-in prototype", parm);
8070 else
8072 pedwarn (DECL_SOURCE_LOCATION (parm),
8073 OPT_pedantic, "promoted argument %qD "
8074 "doesn%'t match prototype", parm);
8075 pedwarn (current_function_prototype_locus, OPT_pedantic,
8076 "prototype declaration");
8079 else
8081 if (current_function_prototype_built_in)
8082 warning_at (DECL_SOURCE_LOCATION (parm),
8083 0, "argument %qD doesn%'t match "
8084 "built-in prototype", parm);
8085 else
8087 error_at (DECL_SOURCE_LOCATION (parm),
8088 "argument %qD doesn%'t match prototype", parm);
8089 error_at (current_function_prototype_locus,
8090 "prototype declaration");
8095 TYPE_ACTUAL_ARG_TYPES (TREE_TYPE (fndecl)) = 0;
8098 /* Otherwise, create a prototype that would match. */
8100 else
8102 tree actual = 0, last = 0, type;
8104 for (parm = DECL_ARGUMENTS (fndecl); parm; parm = DECL_CHAIN (parm))
8106 type = tree_cons (NULL_TREE, DECL_ARG_TYPE (parm), NULL_TREE);
8107 if (last)
8108 TREE_CHAIN (last) = type;
8109 else
8110 actual = type;
8111 last = type;
8113 type = tree_cons (NULL_TREE, void_type_node, NULL_TREE);
8114 if (last)
8115 TREE_CHAIN (last) = type;
8116 else
8117 actual = type;
8119 /* We are going to assign a new value for the TYPE_ACTUAL_ARG_TYPES
8120 of the type of this function, but we need to avoid having this
8121 affect the types of other similarly-typed functions, so we must
8122 first force the generation of an identical (but separate) type
8123 node for the relevant function type. The new node we create
8124 will be a variant of the main variant of the original function
8125 type. */
8127 TREE_TYPE (fndecl) = build_variant_type_copy (TREE_TYPE (fndecl));
8129 TYPE_ACTUAL_ARG_TYPES (TREE_TYPE (fndecl)) = actual;
8133 /* Store parameter declarations passed in ARG_INFO into the current
8134 function declaration. */
8136 void
8137 store_parm_decls_from (struct c_arg_info *arg_info)
8139 current_function_arg_info = arg_info;
8140 store_parm_decls ();
8143 /* Store the parameter declarations into the current function declaration.
8144 This is called after parsing the parameter declarations, before
8145 digesting the body of the function.
8147 For an old-style definition, construct a prototype out of the old-style
8148 parameter declarations and inject it into the function's type. */
8150 void
8151 store_parm_decls (void)
8153 tree fndecl = current_function_decl;
8154 bool proto;
8156 /* The argument information block for FNDECL. */
8157 struct c_arg_info *arg_info = current_function_arg_info;
8158 current_function_arg_info = 0;
8160 /* True if this definition is written with a prototype. Note:
8161 despite C99 6.7.5.3p14, we can *not* treat an empty argument
8162 list in a function definition as equivalent to (void) -- an
8163 empty argument list specifies the function has no parameters,
8164 but only (void) sets up a prototype for future calls. */
8165 proto = arg_info->types != 0;
8167 if (proto)
8168 store_parm_decls_newstyle (fndecl, arg_info);
8169 else
8170 store_parm_decls_oldstyle (fndecl, arg_info);
8172 /* The next call to push_scope will be a function body. */
8174 next_is_function_body = true;
8176 /* Write a record describing this function definition to the prototypes
8177 file (if requested). */
8179 gen_aux_info_record (fndecl, 1, 0, proto);
8181 /* Initialize the RTL code for the function. */
8182 allocate_struct_function (fndecl, false);
8184 /* Begin the statement tree for this function. */
8185 DECL_SAVED_TREE (fndecl) = push_stmt_list ();
8187 /* ??? Insert the contents of the pending sizes list into the function
8188 to be evaluated. The only reason left to have this is
8189 void foo(int n, int array[n++])
8190 because we throw away the array type in favor of a pointer type, and
8191 thus won't naturally see the SAVE_EXPR containing the increment. All
8192 other pending sizes would be handled by gimplify_parameters. */
8194 VEC(tree,gc) *pending_sizes = get_pending_sizes ();
8195 tree t;
8196 int i;
8198 FOR_EACH_VEC_ELT (tree, pending_sizes, i, t)
8199 add_stmt (t);
8202 /* Even though we're inside a function body, we still don't want to
8203 call expand_expr to calculate the size of a variable-sized array.
8204 We haven't necessarily assigned RTL to all variables yet, so it's
8205 not safe to try to expand expressions involving them. */
8206 cfun->dont_save_pending_sizes_p = 1;
8210 /* Finish up a function declaration and compile that function
8211 all the way to assembler language output. Then free the storage
8212 for the function definition.
8214 This is called after parsing the body of the function definition. */
8216 void
8217 finish_function (void)
8219 tree fndecl = current_function_decl;
8221 if (c_dialect_objc ())
8222 objc_finish_function ();
8224 if (TREE_CODE (fndecl) == FUNCTION_DECL
8225 && targetm.calls.promote_prototypes (TREE_TYPE (fndecl)))
8227 tree args = DECL_ARGUMENTS (fndecl);
8228 for (; args; args = DECL_CHAIN (args))
8230 tree type = TREE_TYPE (args);
8231 if (INTEGRAL_TYPE_P (type)
8232 && TYPE_PRECISION (type) < TYPE_PRECISION (integer_type_node))
8233 DECL_ARG_TYPE (args) = integer_type_node;
8237 if (DECL_INITIAL (fndecl) && DECL_INITIAL (fndecl) != error_mark_node)
8238 BLOCK_SUPERCONTEXT (DECL_INITIAL (fndecl)) = fndecl;
8240 /* Must mark the RESULT_DECL as being in this function. */
8242 if (DECL_RESULT (fndecl) && DECL_RESULT (fndecl) != error_mark_node)
8243 DECL_CONTEXT (DECL_RESULT (fndecl)) = fndecl;
8245 if (MAIN_NAME_P (DECL_NAME (fndecl)) && flag_hosted
8246 && TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (fndecl)))
8247 == integer_type_node && flag_isoc99)
8249 /* Hack. We don't want the middle-end to warn that this return
8250 is unreachable, so we mark its location as special. Using
8251 UNKNOWN_LOCATION has the problem that it gets clobbered in
8252 annotate_one_with_locus. A cleaner solution might be to
8253 ensure ! should_carry_locus_p (stmt), but that needs a flag.
8255 c_finish_return (BUILTINS_LOCATION, integer_zero_node, NULL_TREE);
8258 /* Tie off the statement tree for this function. */
8259 DECL_SAVED_TREE (fndecl) = pop_stmt_list (DECL_SAVED_TREE (fndecl));
8261 finish_fname_decls ();
8263 /* Complain if there's just no return statement. */
8264 if (warn_return_type
8265 && TREE_CODE (TREE_TYPE (TREE_TYPE (fndecl))) != VOID_TYPE
8266 && !current_function_returns_value && !current_function_returns_null
8267 /* Don't complain if we are no-return. */
8268 && !current_function_returns_abnormally
8269 /* Don't complain if we are declared noreturn. */
8270 && !TREE_THIS_VOLATILE (fndecl)
8271 /* Don't warn for main(). */
8272 && !MAIN_NAME_P (DECL_NAME (fndecl))
8273 /* Or if they didn't actually specify a return type. */
8274 && !C_FUNCTION_IMPLICIT_INT (fndecl)
8275 /* Normally, with -Wreturn-type, flow will complain, but we might
8276 optimize out static functions. */
8277 && !TREE_PUBLIC (fndecl))
8279 warning (OPT_Wreturn_type,
8280 "no return statement in function returning non-void");
8281 TREE_NO_WARNING (fndecl) = 1;
8284 /* Complain about parameters that are only set, but never otherwise used. */
8285 if (warn_unused_but_set_parameter)
8287 tree decl;
8289 for (decl = DECL_ARGUMENTS (fndecl);
8290 decl;
8291 decl = DECL_CHAIN (decl))
8292 if (TREE_USED (decl)
8293 && TREE_CODE (decl) == PARM_DECL
8294 && !DECL_READ_P (decl)
8295 && DECL_NAME (decl)
8296 && !DECL_ARTIFICIAL (decl)
8297 && !TREE_NO_WARNING (decl))
8298 warning_at (DECL_SOURCE_LOCATION (decl),
8299 OPT_Wunused_but_set_parameter,
8300 "parameter %qD set but not used", decl);
8303 /* Store the end of the function, so that we get good line number
8304 info for the epilogue. */
8305 cfun->function_end_locus = input_location;
8307 /* Finalize the ELF visibility for the function. */
8308 c_determine_visibility (fndecl);
8310 /* For GNU C extern inline functions disregard inline limits. */
8311 if (DECL_EXTERNAL (fndecl)
8312 && DECL_DECLARED_INLINE_P (fndecl))
8313 DECL_DISREGARD_INLINE_LIMITS (fndecl) = 1;
8315 /* Genericize before inlining. Delay genericizing nested functions
8316 until their parent function is genericized. Since finalizing
8317 requires GENERIC, delay that as well. */
8319 if (DECL_INITIAL (fndecl) && DECL_INITIAL (fndecl) != error_mark_node
8320 && !undef_nested_function)
8322 if (!decl_function_context (fndecl))
8324 invoke_plugin_callbacks (PLUGIN_PRE_GENERICIZE, fndecl);
8325 c_genericize (fndecl);
8327 /* ??? Objc emits functions after finalizing the compilation unit.
8328 This should be cleaned up later and this conditional removed. */
8329 if (cgraph_global_info_ready)
8331 cgraph_add_new_function (fndecl, false);
8332 return;
8334 cgraph_finalize_function (fndecl, false);
8336 else
8338 /* Register this function with cgraph just far enough to get it
8339 added to our parent's nested function list. Handy, since the
8340 C front end doesn't have such a list. */
8341 (void) cgraph_node (fndecl);
8345 if (!decl_function_context (fndecl))
8346 undef_nested_function = false;
8348 /* We're leaving the context of this function, so zap cfun.
8349 It's still in DECL_STRUCT_FUNCTION, and we'll restore it in
8350 tree_rest_of_compilation. */
8351 set_cfun (NULL);
8352 current_function_decl = NULL;
8355 /* Check the declarations given in a for-loop for satisfying the C99
8356 constraints. If exactly one such decl is found, return it. LOC is
8357 the location of the opening parenthesis of the for loop. The last
8358 parameter allows you to control the "for loop initial declarations
8359 are only allowed in C99 mode". Normally, you should pass
8360 flag_isoc99 as that parameter. But in some cases (Objective-C
8361 foreach loop, for example) we want to run the checks in this
8362 function even if not in C99 mode, so we allow the caller to turn
8363 off the error about not being in C99 mode.
8366 tree
8367 check_for_loop_decls (location_t loc, bool turn_off_iso_c99_error)
8369 struct c_binding *b;
8370 tree one_decl = NULL_TREE;
8371 int n_decls = 0;
8373 if (!turn_off_iso_c99_error)
8375 static bool hint = true;
8376 /* If we get here, declarations have been used in a for loop without
8377 the C99 for loop scope. This doesn't make much sense, so don't
8378 allow it. */
8379 error_at (loc, "%<for%> loop initial declarations "
8380 "are only allowed in C99 mode");
8381 if (hint)
8383 inform (loc,
8384 "use option -std=c99 or -std=gnu99 to compile your code");
8385 hint = false;
8387 return NULL_TREE;
8389 /* C99 subclause 6.8.5 paragraph 3:
8391 [#3] The declaration part of a for statement shall only
8392 declare identifiers for objects having storage class auto or
8393 register.
8395 It isn't clear whether, in this sentence, "identifiers" binds to
8396 "shall only declare" or to "objects" - that is, whether all identifiers
8397 declared must be identifiers for objects, or whether the restriction
8398 only applies to those that are. (A question on this in comp.std.c
8399 in November 2000 received no answer.) We implement the strictest
8400 interpretation, to avoid creating an extension which later causes
8401 problems. */
8403 for (b = current_scope->bindings; b; b = b->prev)
8405 tree id = b->id;
8406 tree decl = b->decl;
8408 if (!id)
8409 continue;
8411 switch (TREE_CODE (decl))
8413 case VAR_DECL:
8415 location_t decl_loc = DECL_SOURCE_LOCATION (decl);
8416 if (TREE_STATIC (decl))
8417 error_at (decl_loc,
8418 "declaration of static variable %qD in %<for%> loop "
8419 "initial declaration", decl);
8420 else if (DECL_EXTERNAL (decl))
8421 error_at (decl_loc,
8422 "declaration of %<extern%> variable %qD in %<for%> loop "
8423 "initial declaration", decl);
8425 break;
8427 case RECORD_TYPE:
8428 error_at (loc,
8429 "%<struct %E%> declared in %<for%> loop initial "
8430 "declaration", id);
8431 break;
8432 case UNION_TYPE:
8433 error_at (loc,
8434 "%<union %E%> declared in %<for%> loop initial declaration",
8435 id);
8436 break;
8437 case ENUMERAL_TYPE:
8438 error_at (loc, "%<enum %E%> declared in %<for%> loop "
8439 "initial declaration", id);
8440 break;
8441 default:
8442 error_at (loc, "declaration of non-variable "
8443 "%qD in %<for%> loop initial declaration", decl);
8446 n_decls++;
8447 one_decl = decl;
8450 return n_decls == 1 ? one_decl : NULL_TREE;
8453 /* Save and reinitialize the variables
8454 used during compilation of a C function. */
8456 void
8457 c_push_function_context (void)
8459 struct language_function *p;
8460 p = ggc_alloc_language_function ();
8461 cfun->language = p;
8463 p->base.x_stmt_tree = c_stmt_tree;
8464 p->x_break_label = c_break_label;
8465 p->x_cont_label = c_cont_label;
8466 p->x_switch_stack = c_switch_stack;
8467 p->arg_info = current_function_arg_info;
8468 p->returns_value = current_function_returns_value;
8469 p->returns_null = current_function_returns_null;
8470 p->returns_abnormally = current_function_returns_abnormally;
8471 p->warn_about_return_type = warn_about_return_type;
8473 push_function_context ();
8476 /* Restore the variables used during compilation of a C function. */
8478 void
8479 c_pop_function_context (void)
8481 struct language_function *p;
8483 pop_function_context ();
8484 p = cfun->language;
8485 cfun->language = NULL;
8487 if (DECL_STRUCT_FUNCTION (current_function_decl) == 0
8488 && DECL_SAVED_TREE (current_function_decl) == NULL_TREE)
8490 /* Stop pointing to the local nodes about to be freed. */
8491 /* But DECL_INITIAL must remain nonzero so we know this
8492 was an actual function definition. */
8493 DECL_INITIAL (current_function_decl) = error_mark_node;
8494 DECL_ARGUMENTS (current_function_decl) = 0;
8497 c_stmt_tree = p->base.x_stmt_tree;
8498 c_break_label = p->x_break_label;
8499 c_cont_label = p->x_cont_label;
8500 c_switch_stack = p->x_switch_stack;
8501 current_function_arg_info = p->arg_info;
8502 current_function_returns_value = p->returns_value;
8503 current_function_returns_null = p->returns_null;
8504 current_function_returns_abnormally = p->returns_abnormally;
8505 warn_about_return_type = p->warn_about_return_type;
8508 /* The functions below are required for functionality of doing
8509 function at once processing in the C front end. Currently these
8510 functions are not called from anywhere in the C front end, but as
8511 these changes continue, that will change. */
8513 /* Returns the stmt_tree (if any) to which statements are currently
8514 being added. If there is no active statement-tree, NULL is
8515 returned. */
8517 stmt_tree
8518 current_stmt_tree (void)
8520 return &c_stmt_tree;
8523 /* Return the global value of T as a symbol. */
8525 tree
8526 identifier_global_value (tree t)
8528 struct c_binding *b;
8530 for (b = I_SYMBOL_BINDING (t); b; b = b->shadowed)
8531 if (B_IN_FILE_SCOPE (b) || B_IN_EXTERNAL_SCOPE (b))
8532 return b->decl;
8534 return 0;
8537 /* Record a builtin type for C. If NAME is non-NULL, it is the name used;
8538 otherwise the name is found in ridpointers from RID_INDEX. */
8540 void
8541 record_builtin_type (enum rid rid_index, const char *name, tree type)
8543 tree id, decl;
8544 if (name == 0)
8545 id = ridpointers[(int) rid_index];
8546 else
8547 id = get_identifier (name);
8548 decl = build_decl (UNKNOWN_LOCATION, TYPE_DECL, id, type);
8549 pushdecl (decl);
8550 if (debug_hooks->type_decl)
8551 debug_hooks->type_decl (decl, false);
8554 /* Build the void_list_node (void_type_node having been created). */
8555 tree
8556 build_void_list_node (void)
8558 tree t = build_tree_list (NULL_TREE, void_type_node);
8559 return t;
8562 /* Return a c_parm structure with the given SPECS, ATTRS and DECLARATOR. */
8564 struct c_parm *
8565 build_c_parm (struct c_declspecs *specs, tree attrs,
8566 struct c_declarator *declarator)
8568 struct c_parm *ret = XOBNEW (&parser_obstack, struct c_parm);
8569 ret->specs = specs;
8570 ret->attrs = attrs;
8571 ret->declarator = declarator;
8572 return ret;
8575 /* Return a declarator with nested attributes. TARGET is the inner
8576 declarator to which these attributes apply. ATTRS are the
8577 attributes. */
8579 struct c_declarator *
8580 build_attrs_declarator (tree attrs, struct c_declarator *target)
8582 struct c_declarator *ret = XOBNEW (&parser_obstack, struct c_declarator);
8583 ret->kind = cdk_attrs;
8584 ret->declarator = target;
8585 ret->u.attrs = attrs;
8586 return ret;
8589 /* Return a declarator for a function with arguments specified by ARGS
8590 and return type specified by TARGET. */
8592 struct c_declarator *
8593 build_function_declarator (struct c_arg_info *args,
8594 struct c_declarator *target)
8596 struct c_declarator *ret = XOBNEW (&parser_obstack, struct c_declarator);
8597 ret->kind = cdk_function;
8598 ret->declarator = target;
8599 ret->u.arg_info = args;
8600 return ret;
8603 /* Return a declarator for the identifier IDENT (which may be
8604 NULL_TREE for an abstract declarator). */
8606 struct c_declarator *
8607 build_id_declarator (tree ident)
8609 struct c_declarator *ret = XOBNEW (&parser_obstack, struct c_declarator);
8610 ret->kind = cdk_id;
8611 ret->declarator = 0;
8612 ret->u.id = ident;
8613 /* Default value - may get reset to a more precise location. */
8614 ret->id_loc = input_location;
8615 return ret;
8618 /* Return something to represent absolute declarators containing a *.
8619 TARGET is the absolute declarator that the * contains.
8620 TYPE_QUALS_ATTRS is a structure for type qualifiers and attributes
8621 to apply to the pointer type. */
8623 struct c_declarator *
8624 make_pointer_declarator (struct c_declspecs *type_quals_attrs,
8625 struct c_declarator *target)
8627 tree attrs;
8628 int quals = 0;
8629 struct c_declarator *itarget = target;
8630 struct c_declarator *ret = XOBNEW (&parser_obstack, struct c_declarator);
8631 if (type_quals_attrs)
8633 attrs = type_quals_attrs->attrs;
8634 quals = quals_from_declspecs (type_quals_attrs);
8635 if (attrs != NULL_TREE)
8636 itarget = build_attrs_declarator (attrs, target);
8638 ret->kind = cdk_pointer;
8639 ret->declarator = itarget;
8640 ret->u.pointer_quals = quals;
8641 return ret;
8644 /* Return a pointer to a structure for an empty list of declaration
8645 specifiers. */
8647 struct c_declspecs *
8648 build_null_declspecs (void)
8650 struct c_declspecs *ret = XOBNEW (&parser_obstack, struct c_declspecs);
8651 ret->type = 0;
8652 ret->expr = 0;
8653 ret->decl_attr = 0;
8654 ret->attrs = 0;
8655 ret->typespec_word = cts_none;
8656 ret->storage_class = csc_none;
8657 ret->expr_const_operands = true;
8658 ret->declspecs_seen_p = false;
8659 ret->typespec_kind = ctsk_none;
8660 ret->non_sc_seen_p = false;
8661 ret->typedef_p = false;
8662 ret->explicit_signed_p = false;
8663 ret->deprecated_p = false;
8664 ret->default_int_p = false;
8665 ret->long_p = false;
8666 ret->long_long_p = false;
8667 ret->short_p = false;
8668 ret->signed_p = false;
8669 ret->unsigned_p = false;
8670 ret->complex_p = false;
8671 ret->inline_p = false;
8672 ret->thread_p = false;
8673 ret->const_p = false;
8674 ret->volatile_p = false;
8675 ret->restrict_p = false;
8676 ret->saturating_p = false;
8677 ret->address_space = ADDR_SPACE_GENERIC;
8678 return ret;
8681 /* Add the address space ADDRSPACE to the declaration specifiers
8682 SPECS, returning SPECS. */
8684 struct c_declspecs *
8685 declspecs_add_addrspace (struct c_declspecs *specs, addr_space_t as)
8687 specs->non_sc_seen_p = true;
8688 specs->declspecs_seen_p = true;
8690 if (!ADDR_SPACE_GENERIC_P (specs->address_space)
8691 && specs->address_space != as)
8692 error ("incompatible address space qualifiers %qs and %qs",
8693 c_addr_space_name (as),
8694 c_addr_space_name (specs->address_space));
8695 else
8696 specs->address_space = as;
8697 return specs;
8700 /* Add the type qualifier QUAL to the declaration specifiers SPECS,
8701 returning SPECS. */
8703 struct c_declspecs *
8704 declspecs_add_qual (struct c_declspecs *specs, tree qual)
8706 enum rid i;
8707 bool dupe = false;
8708 specs->non_sc_seen_p = true;
8709 specs->declspecs_seen_p = true;
8710 gcc_assert (TREE_CODE (qual) == IDENTIFIER_NODE
8711 && C_IS_RESERVED_WORD (qual));
8712 i = C_RID_CODE (qual);
8713 switch (i)
8715 case RID_CONST:
8716 dupe = specs->const_p;
8717 specs->const_p = true;
8718 break;
8719 case RID_VOLATILE:
8720 dupe = specs->volatile_p;
8721 specs->volatile_p = true;
8722 break;
8723 case RID_RESTRICT:
8724 dupe = specs->restrict_p;
8725 specs->restrict_p = true;
8726 break;
8727 default:
8728 gcc_unreachable ();
8730 if (dupe && !flag_isoc99)
8731 pedwarn (input_location, OPT_pedantic, "duplicate %qE", qual);
8732 return specs;
8735 /* Add the type specifier TYPE to the declaration specifiers SPECS,
8736 returning SPECS. */
8738 struct c_declspecs *
8739 declspecs_add_type (location_t loc, struct c_declspecs *specs,
8740 struct c_typespec spec)
8742 tree type = spec.spec;
8743 specs->non_sc_seen_p = true;
8744 specs->declspecs_seen_p = true;
8745 specs->typespec_kind = spec.kind;
8746 if (TREE_DEPRECATED (type))
8747 specs->deprecated_p = true;
8749 /* Handle type specifier keywords. */
8750 if (TREE_CODE (type) == IDENTIFIER_NODE
8751 && C_IS_RESERVED_WORD (type)
8752 && C_RID_CODE (type) != RID_CXX_COMPAT_WARN)
8754 enum rid i = C_RID_CODE (type);
8755 if (specs->type)
8757 error_at (loc, "two or more data types in declaration specifiers");
8758 return specs;
8760 if ((int) i <= (int) RID_LAST_MODIFIER)
8762 /* "long", "short", "signed", "unsigned", "_Complex" or "_Sat". */
8763 bool dupe = false;
8764 switch (i)
8766 case RID_LONG:
8767 if (specs->long_long_p)
8769 error_at (loc, "%<long long long%> is too long for GCC");
8770 break;
8772 if (specs->long_p)
8774 if (specs->typespec_word == cts_double)
8776 error_at (loc,
8777 ("both %<long long%> and %<double%> in "
8778 "declaration specifiers"));
8779 break;
8781 pedwarn_c90 (loc, OPT_Wlong_long,
8782 "ISO C90 does not support %<long long%>");
8783 specs->long_long_p = 1;
8784 break;
8786 if (specs->short_p)
8787 error_at (loc,
8788 ("both %<long%> and %<short%> in "
8789 "declaration specifiers"));
8790 else if (specs->typespec_word == cts_void)
8791 error_at (loc,
8792 ("both %<long%> and %<void%> in "
8793 "declaration specifiers"));
8794 else if (specs->typespec_word == cts_int128)
8795 error_at (loc,
8796 ("both %<long%> and %<__int128%> in "
8797 "declaration specifiers"));
8798 else if (specs->typespec_word == cts_bool)
8799 error_at (loc,
8800 ("both %<long%> and %<_Bool%> in "
8801 "declaration specifiers"));
8802 else if (specs->typespec_word == cts_char)
8803 error_at (loc,
8804 ("both %<long%> and %<char%> in "
8805 "declaration specifiers"));
8806 else if (specs->typespec_word == cts_float)
8807 error_at (loc,
8808 ("both %<long%> and %<float%> in "
8809 "declaration specifiers"));
8810 else if (specs->typespec_word == cts_dfloat32)
8811 error_at (loc,
8812 ("both %<long%> and %<_Decimal32%> in "
8813 "declaration specifiers"));
8814 else if (specs->typespec_word == cts_dfloat64)
8815 error_at (loc,
8816 ("both %<long%> and %<_Decimal64%> in "
8817 "declaration specifiers"));
8818 else if (specs->typespec_word == cts_dfloat128)
8819 error_at (loc,
8820 ("both %<long%> and %<_Decimal128%> in "
8821 "declaration specifiers"));
8822 else
8823 specs->long_p = true;
8824 break;
8825 case RID_SHORT:
8826 dupe = specs->short_p;
8827 if (specs->long_p)
8828 error_at (loc,
8829 ("both %<long%> and %<short%> in "
8830 "declaration specifiers"));
8831 else if (specs->typespec_word == cts_void)
8832 error_at (loc,
8833 ("both %<short%> and %<void%> in "
8834 "declaration specifiers"));
8835 else if (specs->typespec_word == cts_int128)
8836 error_at (loc,
8837 ("both %<short%> and %<__int128%> in "
8838 "declaration specifiers"));
8839 else if (specs->typespec_word == cts_bool)
8840 error_at (loc,
8841 ("both %<short%> and %<_Bool%> in "
8842 "declaration specifiers"));
8843 else if (specs->typespec_word == cts_char)
8844 error_at (loc,
8845 ("both %<short%> and %<char%> in "
8846 "declaration specifiers"));
8847 else if (specs->typespec_word == cts_float)
8848 error_at (loc,
8849 ("both %<short%> and %<float%> in "
8850 "declaration specifiers"));
8851 else if (specs->typespec_word == cts_double)
8852 error_at (loc,
8853 ("both %<short%> and %<double%> in "
8854 "declaration specifiers"));
8855 else if (specs->typespec_word == cts_dfloat32)
8856 error_at (loc,
8857 ("both %<short%> and %<_Decimal32%> in "
8858 "declaration specifiers"));
8859 else if (specs->typespec_word == cts_dfloat64)
8860 error_at (loc,
8861 ("both %<short%> and %<_Decimal64%> in "
8862 "declaration specifiers"));
8863 else if (specs->typespec_word == cts_dfloat128)
8864 error_at (loc,
8865 ("both %<short%> and %<_Decimal128%> in "
8866 "declaration specifiers"));
8867 else
8868 specs->short_p = true;
8869 break;
8870 case RID_SIGNED:
8871 dupe = specs->signed_p;
8872 if (specs->unsigned_p)
8873 error_at (loc,
8874 ("both %<signed%> and %<unsigned%> in "
8875 "declaration specifiers"));
8876 else if (specs->typespec_word == cts_void)
8877 error_at (loc,
8878 ("both %<signed%> and %<void%> in "
8879 "declaration specifiers"));
8880 else if (specs->typespec_word == cts_bool)
8881 error_at (loc,
8882 ("both %<signed%> and %<_Bool%> in "
8883 "declaration specifiers"));
8884 else if (specs->typespec_word == cts_float)
8885 error_at (loc,
8886 ("both %<signed%> and %<float%> in "
8887 "declaration specifiers"));
8888 else if (specs->typespec_word == cts_double)
8889 error_at (loc,
8890 ("both %<signed%> and %<double%> in "
8891 "declaration specifiers"));
8892 else if (specs->typespec_word == cts_dfloat32)
8893 error_at (loc,
8894 ("both %<signed%> and %<_Decimal32%> in "
8895 "declaration specifiers"));
8896 else if (specs->typespec_word == cts_dfloat64)
8897 error_at (loc,
8898 ("both %<signed%> and %<_Decimal64%> in "
8899 "declaration specifiers"));
8900 else if (specs->typespec_word == cts_dfloat128)
8901 error_at (loc,
8902 ("both %<signed%> and %<_Decimal128%> in "
8903 "declaration specifiers"));
8904 else
8905 specs->signed_p = true;
8906 break;
8907 case RID_UNSIGNED:
8908 dupe = specs->unsigned_p;
8909 if (specs->signed_p)
8910 error_at (loc,
8911 ("both %<signed%> and %<unsigned%> in "
8912 "declaration specifiers"));
8913 else if (specs->typespec_word == cts_void)
8914 error_at (loc,
8915 ("both %<unsigned%> and %<void%> in "
8916 "declaration specifiers"));
8917 else if (specs->typespec_word == cts_bool)
8918 error_at (loc,
8919 ("both %<unsigned%> and %<_Bool%> in "
8920 "declaration specifiers"));
8921 else if (specs->typespec_word == cts_float)
8922 error_at (loc,
8923 ("both %<unsigned%> and %<float%> in "
8924 "declaration specifiers"));
8925 else if (specs->typespec_word == cts_double)
8926 error_at (loc,
8927 ("both %<unsigned%> and %<double%> in "
8928 "declaration specifiers"));
8929 else if (specs->typespec_word == cts_dfloat32)
8930 error_at (loc,
8931 ("both %<unsigned%> and %<_Decimal32%> in "
8932 "declaration specifiers"));
8933 else if (specs->typespec_word == cts_dfloat64)
8934 error_at (loc,
8935 ("both %<unsigned%> and %<_Decimal64%> in "
8936 "declaration specifiers"));
8937 else if (specs->typespec_word == cts_dfloat128)
8938 error_at (loc,
8939 ("both %<unsigned%> and %<_Decimal128%> in "
8940 "declaration specifiers"));
8941 else
8942 specs->unsigned_p = true;
8943 break;
8944 case RID_COMPLEX:
8945 dupe = specs->complex_p;
8946 if (!flag_isoc99 && !in_system_header)
8947 pedwarn (loc, OPT_pedantic,
8948 "ISO C90 does not support complex types");
8949 if (specs->typespec_word == cts_void)
8950 error_at (loc,
8951 ("both %<complex%> and %<void%> in "
8952 "declaration specifiers"));
8953 else if (specs->typespec_word == cts_bool)
8954 error_at (loc,
8955 ("both %<complex%> and %<_Bool%> in "
8956 "declaration specifiers"));
8957 else if (specs->typespec_word == cts_dfloat32)
8958 error_at (loc,
8959 ("both %<complex%> and %<_Decimal32%> in "
8960 "declaration specifiers"));
8961 else if (specs->typespec_word == cts_dfloat64)
8962 error_at (loc,
8963 ("both %<complex%> and %<_Decimal64%> in "
8964 "declaration specifiers"));
8965 else if (specs->typespec_word == cts_dfloat128)
8966 error_at (loc,
8967 ("both %<complex%> and %<_Decimal128%> in "
8968 "declaration specifiers"));
8969 else if (specs->typespec_word == cts_fract)
8970 error_at (loc,
8971 ("both %<complex%> and %<_Fract%> in "
8972 "declaration specifiers"));
8973 else if (specs->typespec_word == cts_accum)
8974 error_at (loc,
8975 ("both %<complex%> and %<_Accum%> in "
8976 "declaration specifiers"));
8977 else if (specs->saturating_p)
8978 error_at (loc,
8979 ("both %<complex%> and %<_Sat%> in "
8980 "declaration specifiers"));
8981 else
8982 specs->complex_p = true;
8983 break;
8984 case RID_SAT:
8985 dupe = specs->saturating_p;
8986 pedwarn (loc, OPT_pedantic,
8987 "ISO C does not support saturating types");
8988 if (specs->typespec_word == cts_int128)
8990 error_at (loc,
8991 ("both %<_Sat%> and %<__int128%> in "
8992 "declaration specifiers"));
8994 else if (specs->typespec_word == cts_void)
8995 error_at (loc,
8996 ("both %<_Sat%> and %<void%> in "
8997 "declaration specifiers"));
8998 else if (specs->typespec_word == cts_bool)
8999 error_at (loc,
9000 ("both %<_Sat%> and %<_Bool%> in "
9001 "declaration specifiers"));
9002 else if (specs->typespec_word == cts_char)
9003 error_at (loc,
9004 ("both %<_Sat%> and %<char%> in "
9005 "declaration specifiers"));
9006 else if (specs->typespec_word == cts_int)
9007 error_at (loc,
9008 ("both %<_Sat%> and %<int%> in "
9009 "declaration specifiers"));
9010 else if (specs->typespec_word == cts_float)
9011 error_at (loc,
9012 ("both %<_Sat%> and %<float%> in "
9013 "declaration specifiers"));
9014 else if (specs->typespec_word == cts_double)
9015 error_at (loc,
9016 ("both %<_Sat%> and %<double%> in "
9017 "declaration specifiers"));
9018 else if (specs->typespec_word == cts_dfloat32)
9019 error_at (loc,
9020 ("both %<_Sat%> and %<_Decimal32%> in "
9021 "declaration specifiers"));
9022 else if (specs->typespec_word == cts_dfloat64)
9023 error_at (loc,
9024 ("both %<_Sat%> and %<_Decimal64%> in "
9025 "declaration specifiers"));
9026 else if (specs->typespec_word == cts_dfloat128)
9027 error_at (loc,
9028 ("both %<_Sat%> and %<_Decimal128%> in "
9029 "declaration specifiers"));
9030 else if (specs->complex_p)
9031 error_at (loc,
9032 ("both %<_Sat%> and %<complex%> in "
9033 "declaration specifiers"));
9034 else
9035 specs->saturating_p = true;
9036 break;
9037 default:
9038 gcc_unreachable ();
9041 if (dupe)
9042 error_at (loc, "duplicate %qE", type);
9044 return specs;
9046 else
9048 /* "void", "_Bool", "char", "int", "float", "double", "_Decimal32",
9049 "__int128", "_Decimal64", "_Decimal128", "_Fract" or "_Accum". */
9050 if (specs->typespec_word != cts_none)
9052 error_at (loc,
9053 "two or more data types in declaration specifiers");
9054 return specs;
9056 switch (i)
9058 case RID_INT128:
9059 if (int128_integer_type_node == NULL_TREE)
9061 error_at (loc, "%<__int128%> is not supported for this target");
9062 return specs;
9064 if (!in_system_header)
9065 pedwarn (loc, OPT_pedantic,
9066 "ISO C does not support %<__int128%> type");
9068 if (specs->long_p)
9069 error_at (loc,
9070 ("both %<__int128%> and %<long%> in "
9071 "declaration specifiers"));
9072 else if (specs->saturating_p)
9073 error_at (loc,
9074 ("both %<_Sat%> and %<__int128%> in "
9075 "declaration specifiers"));
9076 else if (specs->short_p)
9077 error_at (loc,
9078 ("both %<__int128%> and %<short%> in "
9079 "declaration specifiers"));
9080 else
9081 specs->typespec_word = cts_int128;
9082 return specs;
9083 case RID_VOID:
9084 if (specs->long_p)
9085 error_at (loc,
9086 ("both %<long%> and %<void%> in "
9087 "declaration specifiers"));
9088 else if (specs->short_p)
9089 error_at (loc,
9090 ("both %<short%> and %<void%> in "
9091 "declaration specifiers"));
9092 else if (specs->signed_p)
9093 error_at (loc,
9094 ("both %<signed%> and %<void%> in "
9095 "declaration specifiers"));
9096 else if (specs->unsigned_p)
9097 error_at (loc,
9098 ("both %<unsigned%> and %<void%> in "
9099 "declaration specifiers"));
9100 else if (specs->complex_p)
9101 error_at (loc,
9102 ("both %<complex%> and %<void%> in "
9103 "declaration specifiers"));
9104 else if (specs->saturating_p)
9105 error_at (loc,
9106 ("both %<_Sat%> and %<void%> in "
9107 "declaration specifiers"));
9108 else
9109 specs->typespec_word = cts_void;
9110 return specs;
9111 case RID_BOOL:
9112 if (specs->long_p)
9113 error_at (loc,
9114 ("both %<long%> and %<_Bool%> in "
9115 "declaration specifiers"));
9116 else if (specs->short_p)
9117 error_at (loc,
9118 ("both %<short%> and %<_Bool%> in "
9119 "declaration specifiers"));
9120 else if (specs->signed_p)
9121 error_at (loc,
9122 ("both %<signed%> and %<_Bool%> in "
9123 "declaration specifiers"));
9124 else if (specs->unsigned_p)
9125 error_at (loc,
9126 ("both %<unsigned%> and %<_Bool%> in "
9127 "declaration specifiers"));
9128 else if (specs->complex_p)
9129 error_at (loc,
9130 ("both %<complex%> and %<_Bool%> in "
9131 "declaration specifiers"));
9132 else if (specs->saturating_p)
9133 error_at (loc,
9134 ("both %<_Sat%> and %<_Bool%> in "
9135 "declaration specifiers"));
9136 else
9137 specs->typespec_word = cts_bool;
9138 return specs;
9139 case RID_CHAR:
9140 if (specs->long_p)
9141 error_at (loc,
9142 ("both %<long%> and %<char%> in "
9143 "declaration specifiers"));
9144 else if (specs->short_p)
9145 error_at (loc,
9146 ("both %<short%> and %<char%> in "
9147 "declaration specifiers"));
9148 else if (specs->saturating_p)
9149 error_at (loc,
9150 ("both %<_Sat%> and %<char%> in "
9151 "declaration specifiers"));
9152 else
9153 specs->typespec_word = cts_char;
9154 return specs;
9155 case RID_INT:
9156 if (specs->saturating_p)
9157 error_at (loc,
9158 ("both %<_Sat%> and %<int%> in "
9159 "declaration specifiers"));
9160 else
9161 specs->typespec_word = cts_int;
9162 return specs;
9163 case RID_FLOAT:
9164 if (specs->long_p)
9165 error_at (loc,
9166 ("both %<long%> and %<float%> in "
9167 "declaration specifiers"));
9168 else if (specs->short_p)
9169 error_at (loc,
9170 ("both %<short%> and %<float%> in "
9171 "declaration specifiers"));
9172 else if (specs->signed_p)
9173 error_at (loc,
9174 ("both %<signed%> and %<float%> in "
9175 "declaration specifiers"));
9176 else if (specs->unsigned_p)
9177 error_at (loc,
9178 ("both %<unsigned%> and %<float%> in "
9179 "declaration specifiers"));
9180 else if (specs->saturating_p)
9181 error_at (loc,
9182 ("both %<_Sat%> and %<float%> in "
9183 "declaration specifiers"));
9184 else
9185 specs->typespec_word = cts_float;
9186 return specs;
9187 case RID_DOUBLE:
9188 if (specs->long_long_p)
9189 error_at (loc,
9190 ("both %<long long%> and %<double%> in "
9191 "declaration specifiers"));
9192 else if (specs->short_p)
9193 error_at (loc,
9194 ("both %<short%> and %<double%> in "
9195 "declaration specifiers"));
9196 else if (specs->signed_p)
9197 error_at (loc,
9198 ("both %<signed%> and %<double%> in "
9199 "declaration specifiers"));
9200 else if (specs->unsigned_p)
9201 error_at (loc,
9202 ("both %<unsigned%> and %<double%> in "
9203 "declaration specifiers"));
9204 else if (specs->saturating_p)
9205 error_at (loc,
9206 ("both %<_Sat%> and %<double%> in "
9207 "declaration specifiers"));
9208 else
9209 specs->typespec_word = cts_double;
9210 return specs;
9211 case RID_DFLOAT32:
9212 case RID_DFLOAT64:
9213 case RID_DFLOAT128:
9215 const char *str;
9216 if (i == RID_DFLOAT32)
9217 str = "_Decimal32";
9218 else if (i == RID_DFLOAT64)
9219 str = "_Decimal64";
9220 else
9221 str = "_Decimal128";
9222 if (specs->long_long_p)
9223 error_at (loc,
9224 ("both %<long long%> and %<%s%> in "
9225 "declaration specifiers"),
9226 str);
9227 if (specs->long_p)
9228 error_at (loc,
9229 ("both %<long%> and %<%s%> in "
9230 "declaration specifiers"),
9231 str);
9232 else if (specs->short_p)
9233 error_at (loc,
9234 ("both %<short%> and %<%s%> in "
9235 "declaration specifiers"),
9236 str);
9237 else if (specs->signed_p)
9238 error_at (loc,
9239 ("both %<signed%> and %<%s%> in "
9240 "declaration specifiers"),
9241 str);
9242 else if (specs->unsigned_p)
9243 error_at (loc,
9244 ("both %<unsigned%> and %<%s%> in "
9245 "declaration specifiers"),
9246 str);
9247 else if (specs->complex_p)
9248 error_at (loc,
9249 ("both %<complex%> and %<%s%> in "
9250 "declaration specifiers"),
9251 str);
9252 else if (specs->saturating_p)
9253 error_at (loc,
9254 ("both %<_Sat%> and %<%s%> in "
9255 "declaration specifiers"),
9256 str);
9257 else if (i == RID_DFLOAT32)
9258 specs->typespec_word = cts_dfloat32;
9259 else if (i == RID_DFLOAT64)
9260 specs->typespec_word = cts_dfloat64;
9261 else
9262 specs->typespec_word = cts_dfloat128;
9264 if (!targetm.decimal_float_supported_p ())
9265 error_at (loc,
9266 ("decimal floating point not supported "
9267 "for this target"));
9268 pedwarn (loc, OPT_pedantic,
9269 "ISO C does not support decimal floating point");
9270 return specs;
9271 case RID_FRACT:
9272 case RID_ACCUM:
9274 const char *str;
9275 if (i == RID_FRACT)
9276 str = "_Fract";
9277 else
9278 str = "_Accum";
9279 if (specs->complex_p)
9280 error_at (loc,
9281 ("both %<complex%> and %<%s%> in "
9282 "declaration specifiers"),
9283 str);
9284 else if (i == RID_FRACT)
9285 specs->typespec_word = cts_fract;
9286 else
9287 specs->typespec_word = cts_accum;
9289 if (!targetm.fixed_point_supported_p ())
9290 error_at (loc,
9291 "fixed-point types not supported for this target");
9292 pedwarn (loc, OPT_pedantic,
9293 "ISO C does not support fixed-point types");
9294 return specs;
9295 default:
9296 /* ObjC reserved word "id", handled below. */
9297 break;
9302 /* Now we have a typedef (a TYPE_DECL node), an identifier (some
9303 form of ObjC type, cases such as "int" and "long" being handled
9304 above), a TYPE (struct, union, enum and typeof specifiers) or an
9305 ERROR_MARK. In none of these cases may there have previously
9306 been any type specifiers. */
9307 if (specs->type || specs->typespec_word != cts_none
9308 || specs->long_p || specs->short_p || specs->signed_p
9309 || specs->unsigned_p || specs->complex_p)
9310 error_at (loc, "two or more data types in declaration specifiers");
9311 else if (TREE_CODE (type) == TYPE_DECL)
9313 if (TREE_TYPE (type) == error_mark_node)
9314 ; /* Allow the type to default to int to avoid cascading errors. */
9315 else
9317 specs->type = TREE_TYPE (type);
9318 specs->decl_attr = DECL_ATTRIBUTES (type);
9319 specs->typedef_p = true;
9320 specs->explicit_signed_p = C_TYPEDEF_EXPLICITLY_SIGNED (type);
9322 /* If this typedef name is defined in a struct, then a C++
9323 lookup would return a different value. */
9324 if (warn_cxx_compat
9325 && I_SYMBOL_BINDING (DECL_NAME (type))->in_struct)
9326 warning_at (loc, OPT_Wc___compat,
9327 "C++ lookup of %qD would return a field, not a type",
9328 type);
9330 /* If we are parsing a struct, record that a struct field
9331 used a typedef. */
9332 if (warn_cxx_compat && struct_parse_info != NULL)
9333 VEC_safe_push (tree, heap, struct_parse_info->typedefs_seen, type);
9336 else if (TREE_CODE (type) == IDENTIFIER_NODE)
9338 tree t = lookup_name (type);
9339 if (!t || TREE_CODE (t) != TYPE_DECL)
9340 error_at (loc, "%qE fails to be a typedef or built in type", type);
9341 else if (TREE_TYPE (t) == error_mark_node)
9343 else
9344 specs->type = TREE_TYPE (t);
9346 else
9348 if (TREE_CODE (type) != ERROR_MARK && spec.kind == ctsk_typeof)
9350 specs->typedef_p = true;
9351 if (spec.expr)
9353 if (specs->expr)
9354 specs->expr = build2 (COMPOUND_EXPR, TREE_TYPE (spec.expr),
9355 specs->expr, spec.expr);
9356 else
9357 specs->expr = spec.expr;
9358 specs->expr_const_operands &= spec.expr_const_operands;
9361 specs->type = type;
9364 return specs;
9367 /* Add the storage class specifier or function specifier SCSPEC to the
9368 declaration specifiers SPECS, returning SPECS. */
9370 struct c_declspecs *
9371 declspecs_add_scspec (struct c_declspecs *specs, tree scspec)
9373 enum rid i;
9374 enum c_storage_class n = csc_none;
9375 bool dupe = false;
9376 specs->declspecs_seen_p = true;
9377 gcc_assert (TREE_CODE (scspec) == IDENTIFIER_NODE
9378 && C_IS_RESERVED_WORD (scspec));
9379 i = C_RID_CODE (scspec);
9380 if (specs->non_sc_seen_p)
9381 warning (OPT_Wold_style_declaration,
9382 "%qE is not at beginning of declaration", scspec);
9383 switch (i)
9385 case RID_INLINE:
9386 /* C99 permits duplicate inline. Although of doubtful utility,
9387 it seems simplest to permit it in gnu89 mode as well, as
9388 there is also little utility in maintaining this as a
9389 difference between gnu89 and C99 inline. */
9390 dupe = false;
9391 specs->inline_p = true;
9392 break;
9393 case RID_THREAD:
9394 dupe = specs->thread_p;
9395 if (specs->storage_class == csc_auto)
9396 error ("%<__thread%> used with %<auto%>");
9397 else if (specs->storage_class == csc_register)
9398 error ("%<__thread%> used with %<register%>");
9399 else if (specs->storage_class == csc_typedef)
9400 error ("%<__thread%> used with %<typedef%>");
9401 else
9402 specs->thread_p = true;
9403 break;
9404 case RID_AUTO:
9405 n = csc_auto;
9406 break;
9407 case RID_EXTERN:
9408 n = csc_extern;
9409 /* Diagnose "__thread extern". */
9410 if (specs->thread_p)
9411 error ("%<__thread%> before %<extern%>");
9412 break;
9413 case RID_REGISTER:
9414 n = csc_register;
9415 break;
9416 case RID_STATIC:
9417 n = csc_static;
9418 /* Diagnose "__thread static". */
9419 if (specs->thread_p)
9420 error ("%<__thread%> before %<static%>");
9421 break;
9422 case RID_TYPEDEF:
9423 n = csc_typedef;
9424 break;
9425 default:
9426 gcc_unreachable ();
9428 if (n != csc_none && n == specs->storage_class)
9429 dupe = true;
9430 if (dupe)
9431 error ("duplicate %qE", scspec);
9432 if (n != csc_none)
9434 if (specs->storage_class != csc_none && n != specs->storage_class)
9436 error ("multiple storage classes in declaration specifiers");
9438 else
9440 specs->storage_class = n;
9441 if (n != csc_extern && n != csc_static && specs->thread_p)
9443 error ("%<__thread%> used with %qE", scspec);
9444 specs->thread_p = false;
9448 return specs;
9451 /* Add the attributes ATTRS to the declaration specifiers SPECS,
9452 returning SPECS. */
9454 struct c_declspecs *
9455 declspecs_add_attrs (struct c_declspecs *specs, tree attrs)
9457 specs->attrs = chainon (attrs, specs->attrs);
9458 specs->declspecs_seen_p = true;
9459 return specs;
9462 /* Combine "long", "short", "signed", "unsigned" and "_Complex" type
9463 specifiers with any other type specifier to determine the resulting
9464 type. This is where ISO C checks on complex types are made, since
9465 "_Complex long" is a prefix of the valid ISO C type "_Complex long
9466 double". */
9468 struct c_declspecs *
9469 finish_declspecs (struct c_declspecs *specs)
9471 /* If a type was specified as a whole, we have no modifiers and are
9472 done. */
9473 if (specs->type != NULL_TREE)
9475 gcc_assert (!specs->long_p && !specs->long_long_p && !specs->short_p
9476 && !specs->signed_p && !specs->unsigned_p
9477 && !specs->complex_p);
9479 /* Set a dummy type. */
9480 if (TREE_CODE (specs->type) == ERROR_MARK)
9481 specs->type = integer_type_node;
9482 return specs;
9485 /* If none of "void", "_Bool", "char", "int", "float" or "double"
9486 has been specified, treat it as "int" unless "_Complex" is
9487 present and there are no other specifiers. If we just have
9488 "_Complex", it is equivalent to "_Complex double", but e.g.
9489 "_Complex short" is equivalent to "_Complex short int". */
9490 if (specs->typespec_word == cts_none)
9492 if (specs->saturating_p)
9494 error ("%<_Sat%> is used without %<_Fract%> or %<_Accum%>");
9495 if (!targetm.fixed_point_supported_p ())
9496 error ("fixed-point types not supported for this target");
9497 specs->typespec_word = cts_fract;
9499 else if (specs->long_p || specs->short_p
9500 || specs->signed_p || specs->unsigned_p)
9502 specs->typespec_word = cts_int;
9504 else if (specs->complex_p)
9506 specs->typespec_word = cts_double;
9507 pedwarn (input_location, OPT_pedantic,
9508 "ISO C does not support plain %<complex%> meaning "
9509 "%<double complex%>");
9511 else
9513 specs->typespec_word = cts_int;
9514 specs->default_int_p = true;
9515 /* We don't diagnose this here because grokdeclarator will
9516 give more specific diagnostics according to whether it is
9517 a function definition. */
9521 /* If "signed" was specified, record this to distinguish "int" and
9522 "signed int" in the case of a bit-field with
9523 -funsigned-bitfields. */
9524 specs->explicit_signed_p = specs->signed_p;
9526 /* Now compute the actual type. */
9527 switch (specs->typespec_word)
9529 case cts_void:
9530 gcc_assert (!specs->long_p && !specs->short_p
9531 && !specs->signed_p && !specs->unsigned_p
9532 && !specs->complex_p);
9533 specs->type = void_type_node;
9534 break;
9535 case cts_bool:
9536 gcc_assert (!specs->long_p && !specs->short_p
9537 && !specs->signed_p && !specs->unsigned_p
9538 && !specs->complex_p);
9539 specs->type = boolean_type_node;
9540 break;
9541 case cts_char:
9542 gcc_assert (!specs->long_p && !specs->short_p);
9543 gcc_assert (!(specs->signed_p && specs->unsigned_p));
9544 if (specs->signed_p)
9545 specs->type = signed_char_type_node;
9546 else if (specs->unsigned_p)
9547 specs->type = unsigned_char_type_node;
9548 else
9549 specs->type = char_type_node;
9550 if (specs->complex_p)
9552 pedwarn (input_location, OPT_pedantic,
9553 "ISO C does not support complex integer types");
9554 specs->type = build_complex_type (specs->type);
9556 break;
9557 case cts_int128:
9558 gcc_assert (!specs->long_p && !specs->short_p && !specs->long_long_p);
9559 gcc_assert (!(specs->signed_p && specs->unsigned_p));
9560 specs->type = (specs->unsigned_p
9561 ? int128_unsigned_type_node
9562 : int128_integer_type_node);
9563 if (specs->complex_p)
9565 pedwarn (input_location, OPT_pedantic,
9566 "ISO C does not support complex integer types");
9567 specs->type = build_complex_type (specs->type);
9569 break;
9570 case cts_int:
9571 gcc_assert (!(specs->long_p && specs->short_p));
9572 gcc_assert (!(specs->signed_p && specs->unsigned_p));
9573 if (specs->long_long_p)
9574 specs->type = (specs->unsigned_p
9575 ? long_long_unsigned_type_node
9576 : long_long_integer_type_node);
9577 else if (specs->long_p)
9578 specs->type = (specs->unsigned_p
9579 ? long_unsigned_type_node
9580 : long_integer_type_node);
9581 else if (specs->short_p)
9582 specs->type = (specs->unsigned_p
9583 ? short_unsigned_type_node
9584 : short_integer_type_node);
9585 else
9586 specs->type = (specs->unsigned_p
9587 ? unsigned_type_node
9588 : integer_type_node);
9589 if (specs->complex_p)
9591 pedwarn (input_location, OPT_pedantic,
9592 "ISO C does not support complex integer types");
9593 specs->type = build_complex_type (specs->type);
9595 break;
9596 case cts_float:
9597 gcc_assert (!specs->long_p && !specs->short_p
9598 && !specs->signed_p && !specs->unsigned_p);
9599 specs->type = (specs->complex_p
9600 ? complex_float_type_node
9601 : float_type_node);
9602 break;
9603 case cts_double:
9604 gcc_assert (!specs->long_long_p && !specs->short_p
9605 && !specs->signed_p && !specs->unsigned_p);
9606 if (specs->long_p)
9608 specs->type = (specs->complex_p
9609 ? complex_long_double_type_node
9610 : long_double_type_node);
9612 else
9614 specs->type = (specs->complex_p
9615 ? complex_double_type_node
9616 : double_type_node);
9618 break;
9619 case cts_dfloat32:
9620 case cts_dfloat64:
9621 case cts_dfloat128:
9622 gcc_assert (!specs->long_p && !specs->long_long_p && !specs->short_p
9623 && !specs->signed_p && !specs->unsigned_p && !specs->complex_p);
9624 if (specs->typespec_word == cts_dfloat32)
9625 specs->type = dfloat32_type_node;
9626 else if (specs->typespec_word == cts_dfloat64)
9627 specs->type = dfloat64_type_node;
9628 else
9629 specs->type = dfloat128_type_node;
9630 break;
9631 case cts_fract:
9632 gcc_assert (!specs->complex_p);
9633 if (!targetm.fixed_point_supported_p ())
9634 specs->type = integer_type_node;
9635 else if (specs->saturating_p)
9637 if (specs->long_long_p)
9638 specs->type = specs->unsigned_p
9639 ? sat_unsigned_long_long_fract_type_node
9640 : sat_long_long_fract_type_node;
9641 else if (specs->long_p)
9642 specs->type = specs->unsigned_p
9643 ? sat_unsigned_long_fract_type_node
9644 : sat_long_fract_type_node;
9645 else if (specs->short_p)
9646 specs->type = specs->unsigned_p
9647 ? sat_unsigned_short_fract_type_node
9648 : sat_short_fract_type_node;
9649 else
9650 specs->type = specs->unsigned_p
9651 ? sat_unsigned_fract_type_node
9652 : sat_fract_type_node;
9654 else
9656 if (specs->long_long_p)
9657 specs->type = specs->unsigned_p
9658 ? unsigned_long_long_fract_type_node
9659 : long_long_fract_type_node;
9660 else if (specs->long_p)
9661 specs->type = specs->unsigned_p
9662 ? unsigned_long_fract_type_node
9663 : long_fract_type_node;
9664 else if (specs->short_p)
9665 specs->type = specs->unsigned_p
9666 ? unsigned_short_fract_type_node
9667 : short_fract_type_node;
9668 else
9669 specs->type = specs->unsigned_p
9670 ? unsigned_fract_type_node
9671 : fract_type_node;
9673 break;
9674 case cts_accum:
9675 gcc_assert (!specs->complex_p);
9676 if (!targetm.fixed_point_supported_p ())
9677 specs->type = integer_type_node;
9678 else if (specs->saturating_p)
9680 if (specs->long_long_p)
9681 specs->type = specs->unsigned_p
9682 ? sat_unsigned_long_long_accum_type_node
9683 : sat_long_long_accum_type_node;
9684 else if (specs->long_p)
9685 specs->type = specs->unsigned_p
9686 ? sat_unsigned_long_accum_type_node
9687 : sat_long_accum_type_node;
9688 else if (specs->short_p)
9689 specs->type = specs->unsigned_p
9690 ? sat_unsigned_short_accum_type_node
9691 : sat_short_accum_type_node;
9692 else
9693 specs->type = specs->unsigned_p
9694 ? sat_unsigned_accum_type_node
9695 : sat_accum_type_node;
9697 else
9699 if (specs->long_long_p)
9700 specs->type = specs->unsigned_p
9701 ? unsigned_long_long_accum_type_node
9702 : long_long_accum_type_node;
9703 else if (specs->long_p)
9704 specs->type = specs->unsigned_p
9705 ? unsigned_long_accum_type_node
9706 : long_accum_type_node;
9707 else if (specs->short_p)
9708 specs->type = specs->unsigned_p
9709 ? unsigned_short_accum_type_node
9710 : short_accum_type_node;
9711 else
9712 specs->type = specs->unsigned_p
9713 ? unsigned_accum_type_node
9714 : accum_type_node;
9716 break;
9717 default:
9718 gcc_unreachable ();
9721 return specs;
9724 /* A subroutine of c_write_global_declarations. Perform final processing
9725 on one file scope's declarations (or the external scope's declarations),
9726 GLOBALS. */
9728 static void
9729 c_write_global_declarations_1 (tree globals)
9731 tree decl;
9732 bool reconsider;
9734 /* Process the decls in the order they were written. */
9735 for (decl = globals; decl; decl = DECL_CHAIN (decl))
9737 /* Check for used but undefined static functions using the C
9738 standard's definition of "used", and set TREE_NO_WARNING so
9739 that check_global_declarations doesn't repeat the check. */
9740 if (TREE_CODE (decl) == FUNCTION_DECL
9741 && DECL_INITIAL (decl) == 0
9742 && DECL_EXTERNAL (decl)
9743 && !TREE_PUBLIC (decl)
9744 && C_DECL_USED (decl))
9746 pedwarn (input_location, 0, "%q+F used but never defined", decl);
9747 TREE_NO_WARNING (decl) = 1;
9750 wrapup_global_declaration_1 (decl);
9755 reconsider = false;
9756 for (decl = globals; decl; decl = DECL_CHAIN (decl))
9757 reconsider |= wrapup_global_declaration_2 (decl);
9759 while (reconsider);
9761 for (decl = globals; decl; decl = DECL_CHAIN (decl))
9762 check_global_declaration_1 (decl);
9765 /* A subroutine of c_write_global_declarations Emit debug information for each
9766 of the declarations in GLOBALS. */
9768 static void
9769 c_write_global_declarations_2 (tree globals)
9771 tree decl;
9773 for (decl = globals; decl ; decl = DECL_CHAIN (decl))
9774 debug_hooks->global_decl (decl);
9777 /* Callback to collect a source_ref from a DECL. */
9779 static void
9780 collect_source_ref_cb (tree decl)
9782 if (!DECL_IS_BUILTIN (decl))
9783 collect_source_ref (LOCATION_FILE (decl_sloc (decl, false)));
9786 /* Collect all references relevant to SOURCE_FILE. */
9788 static void
9789 collect_all_refs (const char *source_file)
9791 tree t;
9792 unsigned i;
9794 FOR_EACH_VEC_ELT (tree, all_translation_units, i, t)
9795 collect_ada_nodes (BLOCK_VARS (DECL_INITIAL (t)), source_file);
9798 /* Iterate over all global declarations and call CALLBACK. */
9800 static void
9801 for_each_global_decl (void (*callback) (tree decl))
9803 tree t;
9804 tree decls;
9805 tree decl;
9806 unsigned i;
9808 FOR_EACH_VEC_ELT (tree, all_translation_units, i, t)
9810 decls = DECL_INITIAL (t);
9811 for (decl = BLOCK_VARS (decls); decl; decl = TREE_CHAIN (decl))
9812 callback (decl);
9816 /* Preserve the external declarations scope across a garbage collect. */
9817 static GTY(()) tree ext_block;
9819 void
9820 c_write_global_declarations (void)
9822 tree t;
9823 unsigned i;
9825 /* We don't want to do this if generating a PCH. */
9826 if (pch_file)
9827 return;
9829 /* Do the Objective-C stuff. This is where all the Objective-C
9830 module stuff gets generated (symtab, class/protocol/selector
9831 lists etc). */
9832 if (c_dialect_objc ())
9833 objc_write_global_declarations ();
9835 /* Close the external scope. */
9836 ext_block = pop_scope ();
9837 external_scope = 0;
9838 gcc_assert (!current_scope);
9840 /* Handle -fdump-ada-spec[-slim]. */
9841 if (dump_enabled_p (TDI_ada))
9843 /* Build a table of files to generate specs for */
9844 if (get_dump_file_info (TDI_ada)->flags & TDF_SLIM)
9845 collect_source_ref (main_input_filename);
9846 else
9847 for_each_global_decl (collect_source_ref_cb);
9849 dump_ada_specs (collect_all_refs, NULL);
9852 if (ext_block)
9854 tree tmp = BLOCK_VARS (ext_block);
9855 int flags;
9856 FILE * stream = dump_begin (TDI_tu, &flags);
9857 if (stream && tmp)
9859 dump_node (tmp, flags & ~TDF_SLIM, stream);
9860 dump_end (TDI_tu, stream);
9864 /* Process all file scopes in this compilation, and the external_scope,
9865 through wrapup_global_declarations and check_global_declarations. */
9866 FOR_EACH_VEC_ELT (tree, all_translation_units, i, t)
9867 c_write_global_declarations_1 (BLOCK_VARS (DECL_INITIAL (t)));
9868 c_write_global_declarations_1 (BLOCK_VARS (ext_block));
9870 /* We're done parsing; proceed to optimize and emit assembly.
9871 FIXME: shouldn't be the front end's responsibility to call this. */
9872 cgraph_finalize_compilation_unit ();
9874 /* After cgraph has had a chance to emit everything that's going to
9875 be emitted, output debug information for globals. */
9876 if (!seen_error ())
9878 timevar_push (TV_SYMOUT);
9879 FOR_EACH_VEC_ELT (tree, all_translation_units, i, t)
9880 c_write_global_declarations_2 (BLOCK_VARS (DECL_INITIAL (t)));
9881 c_write_global_declarations_2 (BLOCK_VARS (ext_block));
9882 timevar_pop (TV_SYMOUT);
9885 ext_block = NULL;
9888 /* Register reserved keyword WORD as qualifier for address space AS. */
9890 void
9891 c_register_addr_space (const char *word, addr_space_t as)
9893 int rid = RID_FIRST_ADDR_SPACE + as;
9894 tree id;
9896 /* Address space qualifiers are only supported
9897 in C with GNU extensions enabled. */
9898 if (c_dialect_objc () || flag_no_asm)
9899 return;
9901 id = get_identifier (word);
9902 C_SET_RID_CODE (id, rid);
9903 C_IS_RESERVED_WORD (id) = 1;
9904 ridpointers [rid] = id;
9907 #include "gt-c-decl.h"