2011-08-15 Richard Guenther <rguenther@suse.de>
[official-gcc.git] / gcc / c-decl.c
blob927beb0a33de1c3f51a5bb6ac198fcdb1d988897
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, 2011
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;
151 /* Each c_binding structure describes one binding of an identifier to
152 a decl. All the decls in a scope - irrespective of namespace - are
153 chained together by the ->prev field, which (as the name implies)
154 runs in reverse order. All the decls in a given namespace bound to
155 a given identifier are chained by the ->shadowed field, which runs
156 from inner to outer scopes.
158 The ->decl field usually points to a DECL node, but there are two
159 exceptions. In the namespace of type tags, the bound entity is a
160 RECORD_TYPE, UNION_TYPE, or ENUMERAL_TYPE node. If an undeclared
161 identifier is encountered, it is bound to error_mark_node to
162 suppress further errors about that identifier in the current
163 function.
165 The ->u.type field stores the type of the declaration in this scope;
166 if NULL, the type is the type of the ->decl field. This is only of
167 relevance for objects with external or internal linkage which may
168 be redeclared in inner scopes, forming composite types that only
169 persist for the duration of those scopes. In the external scope,
170 this stores the composite of all the types declared for this
171 object, visible or not. The ->inner_comp field (used only at file
172 scope) stores whether an incomplete array type at file scope was
173 completed at an inner scope to an array size other than 1.
175 The ->u.label field is used for labels. It points to a structure
176 which stores additional information used for warnings.
178 The depth field is copied from the scope structure that holds this
179 decl. It is used to preserve the proper ordering of the ->shadowed
180 field (see bind()) and also for a handful of special-case checks.
181 Finally, the invisible bit is true for a decl which should be
182 ignored for purposes of normal name lookup, and the nested bit is
183 true for a decl that's been bound a second time in an inner scope;
184 in all such cases, the binding in the outer scope will have its
185 invisible bit true. */
187 struct GTY((chain_next ("%h.prev"))) c_binding {
188 union GTY(()) { /* first so GTY desc can use decl */
189 tree GTY((tag ("0"))) type; /* the type in this scope */
190 struct c_label_vars * GTY((tag ("1"))) label; /* for warnings */
191 } GTY((desc ("TREE_CODE (%0.decl) == LABEL_DECL"))) u;
192 tree decl; /* the decl bound */
193 tree id; /* the identifier it's bound to */
194 struct c_binding *prev; /* the previous decl in this scope */
195 struct c_binding *shadowed; /* the innermost decl shadowed by this one */
196 unsigned int depth : 28; /* depth of this scope */
197 BOOL_BITFIELD invisible : 1; /* normal lookup should ignore this binding */
198 BOOL_BITFIELD nested : 1; /* do not set DECL_CONTEXT when popping */
199 BOOL_BITFIELD inner_comp : 1; /* incomplete array completed in inner scope */
200 BOOL_BITFIELD in_struct : 1; /* currently defined as struct field */
201 location_t locus; /* location for nested bindings */
203 #define B_IN_SCOPE(b1, b2) ((b1)->depth == (b2)->depth)
204 #define B_IN_CURRENT_SCOPE(b) ((b)->depth == current_scope->depth)
205 #define B_IN_FILE_SCOPE(b) ((b)->depth == 1 /*file_scope->depth*/)
206 #define B_IN_EXTERNAL_SCOPE(b) ((b)->depth == 0 /*external_scope->depth*/)
208 #define I_SYMBOL_BINDING(node) \
209 (((struct lang_identifier *) IDENTIFIER_NODE_CHECK(node))->symbol_binding)
210 #define I_SYMBOL_DECL(node) \
211 (I_SYMBOL_BINDING(node) ? I_SYMBOL_BINDING(node)->decl : 0)
213 #define I_TAG_BINDING(node) \
214 (((struct lang_identifier *) IDENTIFIER_NODE_CHECK(node))->tag_binding)
215 #define I_TAG_DECL(node) \
216 (I_TAG_BINDING(node) ? I_TAG_BINDING(node)->decl : 0)
218 #define I_LABEL_BINDING(node) \
219 (((struct lang_identifier *) IDENTIFIER_NODE_CHECK(node))->label_binding)
220 #define I_LABEL_DECL(node) \
221 (I_LABEL_BINDING(node) ? I_LABEL_BINDING(node)->decl : 0)
223 /* Each C symbol points to three linked lists of c_binding structures.
224 These describe the values of the identifier in the three different
225 namespaces defined by the language. */
227 struct GTY(()) lang_identifier {
228 struct c_common_identifier common_id;
229 struct c_binding *symbol_binding; /* vars, funcs, constants, typedefs */
230 struct c_binding *tag_binding; /* struct/union/enum tags */
231 struct c_binding *label_binding; /* labels */
234 /* Validate c-lang.c's assumptions. */
235 extern char C_SIZEOF_STRUCT_LANG_IDENTIFIER_isnt_accurate
236 [(sizeof(struct lang_identifier) == C_SIZEOF_STRUCT_LANG_IDENTIFIER) ? 1 : -1];
238 /* The resulting tree type. */
240 union GTY((desc ("TREE_CODE (&%h.generic) == IDENTIFIER_NODE"),
241 chain_next ("(union lang_tree_node *) c_tree_chain_next (&%h.generic)"))) lang_tree_node
243 union tree_node GTY ((tag ("0"),
244 desc ("tree_node_structure (&%h)")))
245 generic;
246 struct lang_identifier GTY ((tag ("1"))) identifier;
249 /* Track bindings and other things that matter for goto warnings. For
250 efficiency, we do not gather all the decls at the point of
251 definition. Instead, we point into the bindings structure. As
252 scopes are popped, we update these structures and gather the decls
253 that matter at that time. */
255 struct GTY(()) c_spot_bindings {
256 /* The currently open scope which holds bindings defined when the
257 label was defined or the goto statement was found. */
258 struct c_scope *scope;
259 /* The bindings in the scope field which were defined at the point
260 of the label or goto. This lets us look at older or newer
261 bindings in the scope, as appropriate. */
262 struct c_binding *bindings_in_scope;
263 /* The number of statement expressions that have started since this
264 label or goto statement was defined. This is zero if we are at
265 the same statement expression level. It is positive if we are in
266 a statement expression started since this spot. It is negative
267 if this spot was in a statement expression and we have left
268 it. */
269 int stmt_exprs;
270 /* Whether we started in a statement expression but are no longer in
271 it. This is set to true if stmt_exprs ever goes negative. */
272 bool left_stmt_expr;
275 /* This structure is used to keep track of bindings seen when a goto
276 statement is defined. This is only used if we see the goto
277 statement before we see the label. */
279 struct GTY(()) c_goto_bindings {
280 /* The location of the goto statement. */
281 location_t loc;
282 /* The bindings of the goto statement. */
283 struct c_spot_bindings goto_bindings;
286 typedef struct c_goto_bindings *c_goto_bindings_p;
287 DEF_VEC_P(c_goto_bindings_p);
288 DEF_VEC_ALLOC_P(c_goto_bindings_p,gc);
290 /* The additional information we keep track of for a label binding.
291 These fields are updated as scopes are popped. */
293 struct GTY(()) c_label_vars {
294 /* The shadowed c_label_vars, when one label shadows another (which
295 can only happen using a __label__ declaration). */
296 struct c_label_vars *shadowed;
297 /* The bindings when the label was defined. */
298 struct c_spot_bindings label_bindings;
299 /* A list of decls that we care about: decls about which we should
300 warn if a goto branches to this label from later in the function.
301 Decls are added to this list as scopes are popped. We only add
302 the decls that matter. */
303 VEC(tree,gc) *decls_in_scope;
304 /* A list of goto statements to this label. This is only used for
305 goto statements seen before the label was defined, so that we can
306 issue appropriate warnings for them. */
307 VEC(c_goto_bindings_p,gc) *gotos;
310 /* Each c_scope structure describes the complete contents of one
311 scope. Four scopes are distinguished specially: the innermost or
312 current scope, the innermost function scope, the file scope (always
313 the second to outermost) and the outermost or external scope.
315 Most declarations are recorded in the current scope.
317 All normal label declarations are recorded in the innermost
318 function scope, as are bindings of undeclared identifiers to
319 error_mark_node. (GCC permits nested functions as an extension,
320 hence the 'innermost' qualifier.) Explicitly declared labels
321 (using the __label__ extension) appear in the current scope.
323 Being in the file scope (current_scope == file_scope) causes
324 special behavior in several places below. Also, under some
325 conditions the Objective-C front end records declarations in the
326 file scope even though that isn't the current scope.
328 All declarations with external linkage are recorded in the external
329 scope, even if they aren't visible there; this models the fact that
330 such declarations are visible to the entire program, and (with a
331 bit of cleverness, see pushdecl) allows diagnosis of some violations
332 of C99 6.2.2p7 and 6.2.7p2:
334 If, within the same translation unit, the same identifier appears
335 with both internal and external linkage, the behavior is
336 undefined.
338 All declarations that refer to the same object or function shall
339 have compatible type; otherwise, the behavior is undefined.
341 Initially only the built-in declarations, which describe compiler
342 intrinsic functions plus a subset of the standard library, are in
343 this scope.
345 The order of the blocks list matters, and it is frequently appended
346 to. To avoid having to walk all the way to the end of the list on
347 each insertion, or reverse the list later, we maintain a pointer to
348 the last list entry. (FIXME: It should be feasible to use a reversed
349 list here.)
351 The bindings list is strictly in reverse order of declarations;
352 pop_scope relies on this. */
355 struct GTY((chain_next ("%h.outer"))) c_scope {
356 /* The scope containing this one. */
357 struct c_scope *outer;
359 /* The next outermost function scope. */
360 struct c_scope *outer_function;
362 /* All bindings in this scope. */
363 struct c_binding *bindings;
365 /* For each scope (except the global one), a chain of BLOCK nodes
366 for all the scopes that were entered and exited one level down. */
367 tree blocks;
368 tree blocks_last;
370 /* The depth of this scope. Used to keep the ->shadowed chain of
371 bindings sorted innermost to outermost. */
372 unsigned int depth : 28;
374 /* True if we are currently filling this scope with parameter
375 declarations. */
376 BOOL_BITFIELD parm_flag : 1;
378 /* True if we saw [*] in this scope. Used to give an error messages
379 if these appears in a function definition. */
380 BOOL_BITFIELD had_vla_unspec : 1;
382 /* True if we already complained about forward parameter decls
383 in this scope. This prevents double warnings on
384 foo (int a; int b; ...) */
385 BOOL_BITFIELD warned_forward_parm_decls : 1;
387 /* True if this is the outermost block scope of a function body.
388 This scope contains the parameters, the local variables declared
389 in the outermost block, and all the labels (except those in
390 nested functions, or declared at block scope with __label__). */
391 BOOL_BITFIELD function_body : 1;
393 /* True means make a BLOCK for this scope no matter what. */
394 BOOL_BITFIELD keep : 1;
396 /* True means that an unsuffixed float constant is _Decimal64. */
397 BOOL_BITFIELD float_const_decimal64 : 1;
399 /* True if this scope has any label bindings. This is used to speed
400 up searching for labels when popping scopes, particularly since
401 labels are normally only found at function scope. */
402 BOOL_BITFIELD has_label_bindings : 1;
404 /* True if we should issue a warning if a goto statement crosses any
405 of the bindings. We still need to check the list of bindings to
406 find the specific ones we need to warn about. This is true if
407 decl_jump_unsafe would return true for any of the bindings. This
408 is used to avoid looping over all the bindings unnecessarily. */
409 BOOL_BITFIELD has_jump_unsafe_decl : 1;
412 /* The scope currently in effect. */
414 static GTY(()) struct c_scope *current_scope;
416 /* The innermost function scope. Ordinary (not explicitly declared)
417 labels, bindings to error_mark_node, and the lazily-created
418 bindings of __func__ and its friends get this scope. */
420 static GTY(()) struct c_scope *current_function_scope;
422 /* The C file scope. This is reset for each input translation unit. */
424 static GTY(()) struct c_scope *file_scope;
426 /* The outermost scope. This is used for all declarations with
427 external linkage, and only these, hence the name. */
429 static GTY(()) struct c_scope *external_scope;
431 /* A chain of c_scope structures awaiting reuse. */
433 static GTY((deletable)) struct c_scope *scope_freelist;
435 /* A chain of c_binding structures awaiting reuse. */
437 static GTY((deletable)) struct c_binding *binding_freelist;
439 /* Append VAR to LIST in scope SCOPE. */
440 #define SCOPE_LIST_APPEND(scope, list, decl) do { \
441 struct c_scope *s_ = (scope); \
442 tree d_ = (decl); \
443 if (s_->list##_last) \
444 BLOCK_CHAIN (s_->list##_last) = d_; \
445 else \
446 s_->list = d_; \
447 s_->list##_last = d_; \
448 } while (0)
450 /* Concatenate FROM in scope FSCOPE onto TO in scope TSCOPE. */
451 #define SCOPE_LIST_CONCAT(tscope, to, fscope, from) do { \
452 struct c_scope *t_ = (tscope); \
453 struct c_scope *f_ = (fscope); \
454 if (t_->to##_last) \
455 BLOCK_CHAIN (t_->to##_last) = f_->from; \
456 else \
457 t_->to = f_->from; \
458 t_->to##_last = f_->from##_last; \
459 } while (0)
461 /* A c_inline_static structure stores details of a static identifier
462 referenced in a definition of a function that may be an inline
463 definition if no subsequent declaration of that function uses
464 "extern" or does not use "inline". */
466 struct GTY((chain_next ("%h.next"))) c_inline_static {
467 /* The location for a diagnostic. */
468 location_t location;
470 /* The function that may be an inline definition. */
471 tree function;
473 /* The object or function referenced. */
474 tree static_decl;
476 /* What sort of reference this is. */
477 enum c_inline_static_type type;
479 /* The next such structure or NULL. */
480 struct c_inline_static *next;
483 /* List of static identifiers used or referenced in functions that may
484 be inline definitions. */
485 static GTY(()) struct c_inline_static *c_inline_statics;
487 /* True means unconditionally make a BLOCK for the next scope pushed. */
489 static bool keep_next_level_flag;
491 /* True means the next call to push_scope will be the outermost scope
492 of a function body, so do not push a new scope, merely cease
493 expecting parameter decls. */
495 static bool next_is_function_body;
497 /* A VEC of pointers to c_binding structures. */
499 typedef struct c_binding *c_binding_ptr;
500 DEF_VEC_P(c_binding_ptr);
501 DEF_VEC_ALLOC_P(c_binding_ptr,heap);
503 /* Information that we keep for a struct or union while it is being
504 parsed. */
506 struct c_struct_parse_info
508 /* If warn_cxx_compat, a list of types defined within this
509 struct. */
510 VEC(tree,heap) *struct_types;
511 /* If warn_cxx_compat, a list of field names which have bindings,
512 and which are defined in this struct, but which are not defined
513 in any enclosing struct. This is used to clear the in_struct
514 field of the c_bindings structure. */
515 VEC(c_binding_ptr,heap) *fields;
516 /* If warn_cxx_compat, a list of typedef names used when defining
517 fields in this struct. */
518 VEC(tree,heap) *typedefs_seen;
521 /* Information for the struct or union currently being parsed, or
522 NULL if not parsing a struct or union. */
523 static struct c_struct_parse_info *struct_parse_info;
525 /* Forward declarations. */
526 static tree lookup_name_in_scope (tree, struct c_scope *);
527 static tree c_make_fname_decl (location_t, tree, int);
528 static tree grokdeclarator (const struct c_declarator *,
529 struct c_declspecs *,
530 enum decl_context, bool, tree *, tree *, tree *,
531 bool *, enum deprecated_states);
532 static tree grokparms (struct c_arg_info *, bool);
533 static void layout_array_type (tree);
535 /* T is a statement. Add it to the statement-tree. This is the
536 C/ObjC version--C++ has a slightly different version of this
537 function. */
539 tree
540 add_stmt (tree t)
542 enum tree_code code = TREE_CODE (t);
544 if (CAN_HAVE_LOCATION_P (t) && code != LABEL_EXPR)
546 if (!EXPR_HAS_LOCATION (t))
547 SET_EXPR_LOCATION (t, input_location);
550 if (code == LABEL_EXPR || code == CASE_LABEL_EXPR)
551 STATEMENT_LIST_HAS_LABEL (cur_stmt_list) = 1;
553 /* Add T to the statement-tree. Non-side-effect statements need to be
554 recorded during statement expressions. */
555 if (!building_stmt_list_p ())
556 push_stmt_list ();
557 append_to_statement_list_force (t, &cur_stmt_list);
559 return t;
562 /* Return true if we will want to say something if a goto statement
563 crosses DECL. */
565 static bool
566 decl_jump_unsafe (tree decl)
568 if (error_operand_p (decl))
569 return false;
571 /* Always warn about crossing variably modified types. */
572 if ((TREE_CODE (decl) == VAR_DECL || TREE_CODE (decl) == TYPE_DECL)
573 && variably_modified_type_p (TREE_TYPE (decl), NULL_TREE))
574 return true;
576 /* Otherwise, only warn if -Wgoto-misses-init and this is an
577 initialized automatic decl. */
578 if (warn_jump_misses_init
579 && TREE_CODE (decl) == VAR_DECL
580 && !TREE_STATIC (decl)
581 && DECL_INITIAL (decl) != NULL_TREE)
582 return true;
584 return false;
588 void
589 c_print_identifier (FILE *file, tree node, int indent)
591 print_node (file, "symbol", I_SYMBOL_DECL (node), indent + 4);
592 print_node (file, "tag", I_TAG_DECL (node), indent + 4);
593 print_node (file, "label", I_LABEL_DECL (node), indent + 4);
594 if (C_IS_RESERVED_WORD (node) && C_RID_CODE (node) != RID_CXX_COMPAT_WARN)
596 tree rid = ridpointers[C_RID_CODE (node)];
597 indent_to (file, indent + 4);
598 fprintf (file, "rid " HOST_PTR_PRINTF " \"%s\"",
599 (void *) rid, IDENTIFIER_POINTER (rid));
603 /* Establish a binding between NAME, an IDENTIFIER_NODE, and DECL,
604 which may be any of several kinds of DECL or TYPE or error_mark_node,
605 in the scope SCOPE. */
606 static void
607 bind (tree name, tree decl, struct c_scope *scope, bool invisible,
608 bool nested, location_t locus)
610 struct c_binding *b, **here;
612 if (binding_freelist)
614 b = binding_freelist;
615 binding_freelist = b->prev;
617 else
618 b = ggc_alloc_c_binding ();
620 b->shadowed = 0;
621 b->decl = decl;
622 b->id = name;
623 b->depth = scope->depth;
624 b->invisible = invisible;
625 b->nested = nested;
626 b->inner_comp = 0;
627 b->in_struct = 0;
628 b->locus = locus;
630 b->u.type = NULL;
632 b->prev = scope->bindings;
633 scope->bindings = b;
635 if (decl_jump_unsafe (decl))
636 scope->has_jump_unsafe_decl = 1;
638 if (!name)
639 return;
641 switch (TREE_CODE (decl))
643 case LABEL_DECL: here = &I_LABEL_BINDING (name); break;
644 case ENUMERAL_TYPE:
645 case UNION_TYPE:
646 case RECORD_TYPE: here = &I_TAG_BINDING (name); break;
647 case VAR_DECL:
648 case FUNCTION_DECL:
649 case TYPE_DECL:
650 case CONST_DECL:
651 case PARM_DECL:
652 case ERROR_MARK: here = &I_SYMBOL_BINDING (name); break;
654 default:
655 gcc_unreachable ();
658 /* Locate the appropriate place in the chain of shadowed decls
659 to insert this binding. Normally, scope == current_scope and
660 this does nothing. */
661 while (*here && (*here)->depth > scope->depth)
662 here = &(*here)->shadowed;
664 b->shadowed = *here;
665 *here = b;
668 /* Clear the binding structure B, stick it on the binding_freelist,
669 and return the former value of b->prev. This is used by pop_scope
670 and get_parm_info to iterate destructively over all the bindings
671 from a given scope. */
672 static struct c_binding *
673 free_binding_and_advance (struct c_binding *b)
675 struct c_binding *prev = b->prev;
677 memset (b, 0, sizeof (struct c_binding));
678 b->prev = binding_freelist;
679 binding_freelist = b;
681 return prev;
684 /* Bind a label. Like bind, but skip fields which aren't used for
685 labels, and add the LABEL_VARS value. */
686 static void
687 bind_label (tree name, tree label, struct c_scope *scope,
688 struct c_label_vars *label_vars)
690 struct c_binding *b;
692 bind (name, label, scope, /*invisible=*/false, /*nested=*/false,
693 UNKNOWN_LOCATION);
695 scope->has_label_bindings = true;
697 b = scope->bindings;
698 gcc_assert (b->decl == label);
699 label_vars->shadowed = b->u.label;
700 b->u.label = label_vars;
703 /* Hook called at end of compilation to assume 1 elt
704 for a file-scope tentative array defn that wasn't complete before. */
706 void
707 c_finish_incomplete_decl (tree decl)
709 if (TREE_CODE (decl) == VAR_DECL)
711 tree type = TREE_TYPE (decl);
712 if (type != error_mark_node
713 && TREE_CODE (type) == ARRAY_TYPE
714 && !DECL_EXTERNAL (decl)
715 && TYPE_DOMAIN (type) == 0)
717 warning_at (DECL_SOURCE_LOCATION (decl),
718 0, "array %q+D assumed to have one element", decl);
720 complete_array_type (&TREE_TYPE (decl), NULL_TREE, true);
722 layout_decl (decl, 0);
727 /* Record that inline function FUNC contains a reference (location
728 LOC) to static DECL (file-scope or function-local according to
729 TYPE). */
731 void
732 record_inline_static (location_t loc, tree func, tree decl,
733 enum c_inline_static_type type)
735 struct c_inline_static *csi = ggc_alloc_c_inline_static ();
736 csi->location = loc;
737 csi->function = func;
738 csi->static_decl = decl;
739 csi->type = type;
740 csi->next = c_inline_statics;
741 c_inline_statics = csi;
744 /* Check for references to static declarations in inline functions at
745 the end of the translation unit and diagnose them if the functions
746 are still inline definitions. */
748 static void
749 check_inline_statics (void)
751 struct c_inline_static *csi;
752 for (csi = c_inline_statics; csi; csi = csi->next)
754 if (DECL_EXTERNAL (csi->function))
755 switch (csi->type)
757 case csi_internal:
758 pedwarn (csi->location, 0,
759 "%qD is static but used in inline function %qD "
760 "which is not static", csi->static_decl, csi->function);
761 break;
762 case csi_modifiable:
763 pedwarn (csi->location, 0,
764 "%q+D is static but declared in inline function %qD "
765 "which is not static", csi->static_decl, csi->function);
766 break;
767 default:
768 gcc_unreachable ();
771 c_inline_statics = NULL;
774 /* Fill in a c_spot_bindings structure. If DEFINING is true, set it
775 for the current state, otherwise set it to uninitialized. */
777 static void
778 set_spot_bindings (struct c_spot_bindings *p, bool defining)
780 if (defining)
782 p->scope = current_scope;
783 p->bindings_in_scope = current_scope->bindings;
785 else
787 p->scope = NULL;
788 p->bindings_in_scope = NULL;
790 p->stmt_exprs = 0;
791 p->left_stmt_expr = false;
794 /* Update spot bindings P as we pop out of SCOPE. Return true if we
795 should push decls for a label. */
797 static bool
798 update_spot_bindings (struct c_scope *scope, struct c_spot_bindings *p)
800 if (p->scope != scope)
802 /* This label or goto is defined in some other scope, or it is a
803 label which is not yet defined. There is nothing to
804 update. */
805 return false;
808 /* Adjust the spot bindings to refer to the bindings already defined
809 in the enclosing scope. */
810 p->scope = scope->outer;
811 p->bindings_in_scope = p->scope->bindings;
813 return true;
816 /* The Objective-C front-end often needs to determine the current scope. */
818 void *
819 objc_get_current_scope (void)
821 return current_scope;
824 /* The following function is used only by Objective-C. It needs to live here
825 because it accesses the innards of c_scope. */
827 void
828 objc_mark_locals_volatile (void *enclosing_blk)
830 struct c_scope *scope;
831 struct c_binding *b;
833 for (scope = current_scope;
834 scope && scope != enclosing_blk;
835 scope = scope->outer)
837 for (b = scope->bindings; b; b = b->prev)
838 objc_volatilize_decl (b->decl);
840 /* Do not climb up past the current function. */
841 if (scope->function_body)
842 break;
846 /* Return true if we are in the global binding level. */
848 bool
849 global_bindings_p (void)
851 return current_scope == file_scope;
854 void
855 keep_next_level (void)
857 keep_next_level_flag = true;
860 /* Set the flag for the FLOAT_CONST_DECIMAL64 pragma being ON. */
862 void
863 set_float_const_decimal64 (void)
865 current_scope->float_const_decimal64 = true;
868 /* Clear the flag for the FLOAT_CONST_DECIMAL64 pragma. */
870 void
871 clear_float_const_decimal64 (void)
873 current_scope->float_const_decimal64 = false;
876 /* Return nonzero if an unsuffixed float constant is _Decimal64. */
878 bool
879 float_const_decimal64_p (void)
881 return current_scope->float_const_decimal64;
884 /* Identify this scope as currently being filled with parameters. */
886 void
887 declare_parm_level (void)
889 current_scope->parm_flag = true;
892 void
893 push_scope (void)
895 if (next_is_function_body)
897 /* This is the transition from the parameters to the top level
898 of the function body. These are the same scope
899 (C99 6.2.1p4,6) so we do not push another scope structure.
900 next_is_function_body is set only by store_parm_decls, which
901 in turn is called when and only when we are about to
902 encounter the opening curly brace for the function body.
904 The outermost block of a function always gets a BLOCK node,
905 because the debugging output routines expect that each
906 function has at least one BLOCK. */
907 current_scope->parm_flag = false;
908 current_scope->function_body = true;
909 current_scope->keep = true;
910 current_scope->outer_function = current_function_scope;
911 current_function_scope = current_scope;
913 keep_next_level_flag = false;
914 next_is_function_body = false;
916 /* The FLOAT_CONST_DECIMAL64 pragma applies to nested scopes. */
917 if (current_scope->outer)
918 current_scope->float_const_decimal64
919 = current_scope->outer->float_const_decimal64;
920 else
921 current_scope->float_const_decimal64 = false;
923 else
925 struct c_scope *scope;
926 if (scope_freelist)
928 scope = scope_freelist;
929 scope_freelist = scope->outer;
931 else
932 scope = ggc_alloc_cleared_c_scope ();
934 /* The FLOAT_CONST_DECIMAL64 pragma applies to nested scopes. */
935 if (current_scope)
936 scope->float_const_decimal64 = current_scope->float_const_decimal64;
937 else
938 scope->float_const_decimal64 = false;
940 scope->keep = keep_next_level_flag;
941 scope->outer = current_scope;
942 scope->depth = current_scope ? (current_scope->depth + 1) : 0;
944 /* Check for scope depth overflow. Unlikely (2^28 == 268,435,456) but
945 possible. */
946 if (current_scope && scope->depth == 0)
948 scope->depth--;
949 sorry ("GCC supports only %u nested scopes", scope->depth);
952 current_scope = scope;
953 keep_next_level_flag = false;
957 /* This is called when we are leaving SCOPE. For each label defined
958 in SCOPE, add any appropriate decls to its decls_in_scope fields.
959 These are the decls whose initialization will be skipped by a goto
960 later in the function. */
962 static void
963 update_label_decls (struct c_scope *scope)
965 struct c_scope *s;
967 s = scope;
968 while (s != NULL)
970 if (s->has_label_bindings)
972 struct c_binding *b;
974 for (b = s->bindings; b != NULL; b = b->prev)
976 struct c_label_vars *label_vars;
977 struct c_binding *b1;
978 bool hjud;
979 unsigned int ix;
980 struct c_goto_bindings *g;
982 if (TREE_CODE (b->decl) != LABEL_DECL)
983 continue;
984 label_vars = b->u.label;
986 b1 = label_vars->label_bindings.bindings_in_scope;
987 if (label_vars->label_bindings.scope == NULL)
988 hjud = false;
989 else
990 hjud = label_vars->label_bindings.scope->has_jump_unsafe_decl;
991 if (update_spot_bindings (scope, &label_vars->label_bindings))
993 /* This label is defined in this scope. */
994 if (hjud)
996 for (; b1 != NULL; b1 = b1->prev)
998 /* A goto from later in the function to this
999 label will never see the initialization
1000 of B1, if any. Save it to issue a
1001 warning if needed. */
1002 if (decl_jump_unsafe (b1->decl))
1003 VEC_safe_push (tree, gc,
1004 label_vars->decls_in_scope,
1005 b1->decl);
1010 /* Update the bindings of any goto statements associated
1011 with this label. */
1012 FOR_EACH_VEC_ELT (c_goto_bindings_p, label_vars->gotos, ix, g)
1013 update_spot_bindings (scope, &g->goto_bindings);
1017 /* Don't search beyond the current function. */
1018 if (s == current_function_scope)
1019 break;
1021 s = s->outer;
1025 /* Set the TYPE_CONTEXT of all of TYPE's variants to CONTEXT. */
1027 static void
1028 set_type_context (tree type, tree context)
1030 for (type = TYPE_MAIN_VARIANT (type); type;
1031 type = TYPE_NEXT_VARIANT (type))
1032 TYPE_CONTEXT (type) = context;
1035 /* Exit a scope. Restore the state of the identifier-decl mappings
1036 that were in effect when this scope was entered. Return a BLOCK
1037 node containing all the DECLs in this scope that are of interest
1038 to debug info generation. */
1040 tree
1041 pop_scope (void)
1043 struct c_scope *scope = current_scope;
1044 tree block, context, p;
1045 struct c_binding *b;
1047 bool functionbody = scope->function_body;
1048 bool keep = functionbody || scope->keep || scope->bindings;
1050 update_label_decls (scope);
1052 /* If appropriate, create a BLOCK to record the decls for the life
1053 of this function. */
1054 block = 0;
1055 if (keep)
1057 block = make_node (BLOCK);
1058 BLOCK_SUBBLOCKS (block) = scope->blocks;
1059 TREE_USED (block) = 1;
1061 /* In each subblock, record that this is its superior. */
1062 for (p = scope->blocks; p; p = BLOCK_CHAIN (p))
1063 BLOCK_SUPERCONTEXT (p) = block;
1065 BLOCK_VARS (block) = 0;
1068 /* The TYPE_CONTEXTs for all of the tagged types belonging to this
1069 scope must be set so that they point to the appropriate
1070 construct, i.e. either to the current FUNCTION_DECL node, or
1071 else to the BLOCK node we just constructed.
1073 Note that for tagged types whose scope is just the formal
1074 parameter list for some function type specification, we can't
1075 properly set their TYPE_CONTEXTs here, because we don't have a
1076 pointer to the appropriate FUNCTION_TYPE node readily available
1077 to us. For those cases, the TYPE_CONTEXTs of the relevant tagged
1078 type nodes get set in `grokdeclarator' as soon as we have created
1079 the FUNCTION_TYPE node which will represent the "scope" for these
1080 "parameter list local" tagged types. */
1081 if (scope->function_body)
1082 context = current_function_decl;
1083 else if (scope == file_scope)
1085 tree file_decl = build_translation_unit_decl (NULL_TREE);
1086 context = file_decl;
1088 else
1089 context = block;
1091 /* Clear all bindings in this scope. */
1092 for (b = scope->bindings; b; b = free_binding_and_advance (b))
1094 p = b->decl;
1095 switch (TREE_CODE (p))
1097 case LABEL_DECL:
1098 /* Warnings for unused labels, errors for undefined labels. */
1099 if (TREE_USED (p) && !DECL_INITIAL (p))
1101 error ("label %q+D used but not defined", p);
1102 DECL_INITIAL (p) = error_mark_node;
1104 else
1105 warn_for_unused_label (p);
1107 /* Labels go in BLOCK_VARS. */
1108 DECL_CHAIN (p) = BLOCK_VARS (block);
1109 BLOCK_VARS (block) = p;
1110 gcc_assert (I_LABEL_BINDING (b->id) == b);
1111 I_LABEL_BINDING (b->id) = b->shadowed;
1113 /* Also pop back to the shadowed label_vars. */
1114 release_tree_vector (b->u.label->decls_in_scope);
1115 b->u.label = b->u.label->shadowed;
1116 break;
1118 case ENUMERAL_TYPE:
1119 case UNION_TYPE:
1120 case RECORD_TYPE:
1121 set_type_context (p, context);
1123 /* Types may not have tag-names, in which case the type
1124 appears in the bindings list with b->id NULL. */
1125 if (b->id)
1127 gcc_assert (I_TAG_BINDING (b->id) == b);
1128 I_TAG_BINDING (b->id) = b->shadowed;
1130 break;
1132 case FUNCTION_DECL:
1133 /* Propagate TREE_ADDRESSABLE from nested functions to their
1134 containing functions. */
1135 if (!TREE_ASM_WRITTEN (p)
1136 && DECL_INITIAL (p) != 0
1137 && TREE_ADDRESSABLE (p)
1138 && DECL_ABSTRACT_ORIGIN (p) != 0
1139 && DECL_ABSTRACT_ORIGIN (p) != p)
1140 TREE_ADDRESSABLE (DECL_ABSTRACT_ORIGIN (p)) = 1;
1141 if (!DECL_EXTERNAL (p)
1142 && !DECL_INITIAL (p)
1143 && scope != file_scope
1144 && scope != external_scope)
1146 error ("nested function %q+D declared but never defined", p);
1147 undef_nested_function = true;
1149 else if (DECL_DECLARED_INLINE_P (p)
1150 && TREE_PUBLIC (p)
1151 && !DECL_INITIAL (p))
1153 /* C99 6.7.4p6: "a function with external linkage... declared
1154 with an inline function specifier ... shall also be defined
1155 in the same translation unit." */
1156 if (!flag_gnu89_inline)
1157 pedwarn (input_location, 0,
1158 "inline function %q+D declared but never defined", p);
1159 DECL_EXTERNAL (p) = 1;
1162 goto common_symbol;
1164 case VAR_DECL:
1165 /* Warnings for unused variables. */
1166 if ((!TREE_USED (p) || !DECL_READ_P (p))
1167 && !TREE_NO_WARNING (p)
1168 && !DECL_IN_SYSTEM_HEADER (p)
1169 && DECL_NAME (p)
1170 && !DECL_ARTIFICIAL (p)
1171 && scope != file_scope
1172 && scope != external_scope)
1174 if (!TREE_USED (p))
1175 warning (OPT_Wunused_variable, "unused variable %q+D", p);
1176 else if (DECL_CONTEXT (p) == current_function_decl)
1177 warning_at (DECL_SOURCE_LOCATION (p),
1178 OPT_Wunused_but_set_variable,
1179 "variable %qD set but not used", p);
1182 if (b->inner_comp)
1184 error ("type of array %q+D completed incompatibly with"
1185 " implicit initialization", p);
1188 /* Fall through. */
1189 case TYPE_DECL:
1190 case CONST_DECL:
1191 common_symbol:
1192 /* All of these go in BLOCK_VARS, but only if this is the
1193 binding in the home scope. */
1194 if (!b->nested)
1196 DECL_CHAIN (p) = BLOCK_VARS (block);
1197 BLOCK_VARS (block) = p;
1199 else if (VAR_OR_FUNCTION_DECL_P (p))
1201 /* For block local externs add a special
1202 DECL_EXTERNAL decl for debug info generation. */
1203 tree extp = copy_node (p);
1205 DECL_EXTERNAL (extp) = 1;
1206 TREE_STATIC (extp) = 0;
1207 TREE_PUBLIC (extp) = 1;
1208 DECL_INITIAL (extp) = NULL_TREE;
1209 DECL_LANG_SPECIFIC (extp) = NULL;
1210 DECL_CONTEXT (extp) = current_function_decl;
1211 if (TREE_CODE (p) == FUNCTION_DECL)
1213 DECL_RESULT (extp) = NULL_TREE;
1214 DECL_SAVED_TREE (extp) = NULL_TREE;
1215 DECL_STRUCT_FUNCTION (extp) = NULL;
1217 if (b->locus != UNKNOWN_LOCATION)
1218 DECL_SOURCE_LOCATION (extp) = b->locus;
1219 DECL_CHAIN (extp) = BLOCK_VARS (block);
1220 BLOCK_VARS (block) = extp;
1222 /* If this is the file scope set DECL_CONTEXT of each decl to
1223 the TRANSLATION_UNIT_DECL. This makes same_translation_unit_p
1224 work. */
1225 if (scope == file_scope)
1227 DECL_CONTEXT (p) = context;
1228 if (TREE_CODE (p) == TYPE_DECL
1229 && TREE_TYPE (p) != error_mark_node)
1230 set_type_context (TREE_TYPE (p), context);
1233 /* Fall through. */
1234 /* Parameters go in DECL_ARGUMENTS, not BLOCK_VARS, and have
1235 already been put there by store_parm_decls. Unused-
1236 parameter warnings are handled by function.c.
1237 error_mark_node obviously does not go in BLOCK_VARS and
1238 does not get unused-variable warnings. */
1239 case PARM_DECL:
1240 case ERROR_MARK:
1241 /* It is possible for a decl not to have a name. We get
1242 here with b->id NULL in this case. */
1243 if (b->id)
1245 gcc_assert (I_SYMBOL_BINDING (b->id) == b);
1246 I_SYMBOL_BINDING (b->id) = b->shadowed;
1247 if (b->shadowed && b->shadowed->u.type)
1248 TREE_TYPE (b->shadowed->decl) = b->shadowed->u.type;
1250 break;
1252 default:
1253 gcc_unreachable ();
1258 /* Dispose of the block that we just made inside some higher level. */
1259 if ((scope->function_body || scope == file_scope) && context)
1261 DECL_INITIAL (context) = block;
1262 BLOCK_SUPERCONTEXT (block) = context;
1264 else if (scope->outer)
1266 if (block)
1267 SCOPE_LIST_APPEND (scope->outer, blocks, block);
1268 /* If we did not make a block for the scope just exited, any
1269 blocks made for inner scopes must be carried forward so they
1270 will later become subblocks of something else. */
1271 else if (scope->blocks)
1272 SCOPE_LIST_CONCAT (scope->outer, blocks, scope, blocks);
1275 /* Pop the current scope, and free the structure for reuse. */
1276 current_scope = scope->outer;
1277 if (scope->function_body)
1278 current_function_scope = scope->outer_function;
1280 memset (scope, 0, sizeof (struct c_scope));
1281 scope->outer = scope_freelist;
1282 scope_freelist = scope;
1284 return block;
1287 void
1288 push_file_scope (void)
1290 tree decl;
1292 if (file_scope)
1293 return;
1295 push_scope ();
1296 file_scope = current_scope;
1298 start_fname_decls ();
1300 for (decl = visible_builtins; decl; decl = DECL_CHAIN (decl))
1301 bind (DECL_NAME (decl), decl, file_scope,
1302 /*invisible=*/false, /*nested=*/true, DECL_SOURCE_LOCATION (decl));
1305 void
1306 pop_file_scope (void)
1308 /* In case there were missing closebraces, get us back to the global
1309 binding level. */
1310 while (current_scope != file_scope)
1311 pop_scope ();
1313 /* __FUNCTION__ is defined at file scope (""). This
1314 call may not be necessary as my tests indicate it
1315 still works without it. */
1316 finish_fname_decls ();
1318 check_inline_statics ();
1320 /* This is the point to write out a PCH if we're doing that.
1321 In that case we do not want to do anything else. */
1322 if (pch_file)
1324 c_common_write_pch ();
1325 return;
1328 /* Pop off the file scope and close this translation unit. */
1329 pop_scope ();
1330 file_scope = 0;
1332 maybe_apply_pending_pragma_weaks ();
1335 /* Adjust the bindings for the start of a statement expression. */
1337 void
1338 c_bindings_start_stmt_expr (struct c_spot_bindings* switch_bindings)
1340 struct c_scope *scope;
1342 for (scope = current_scope; scope != NULL; scope = scope->outer)
1344 struct c_binding *b;
1346 if (!scope->has_label_bindings)
1347 continue;
1349 for (b = scope->bindings; b != NULL; b = b->prev)
1351 struct c_label_vars *label_vars;
1352 unsigned int ix;
1353 struct c_goto_bindings *g;
1355 if (TREE_CODE (b->decl) != LABEL_DECL)
1356 continue;
1357 label_vars = b->u.label;
1358 ++label_vars->label_bindings.stmt_exprs;
1359 FOR_EACH_VEC_ELT (c_goto_bindings_p, label_vars->gotos, ix, g)
1360 ++g->goto_bindings.stmt_exprs;
1364 if (switch_bindings != NULL)
1365 ++switch_bindings->stmt_exprs;
1368 /* Adjust the bindings for the end of a statement expression. */
1370 void
1371 c_bindings_end_stmt_expr (struct c_spot_bindings *switch_bindings)
1373 struct c_scope *scope;
1375 for (scope = current_scope; scope != NULL; scope = scope->outer)
1377 struct c_binding *b;
1379 if (!scope->has_label_bindings)
1380 continue;
1382 for (b = scope->bindings; b != NULL; b = b->prev)
1384 struct c_label_vars *label_vars;
1385 unsigned int ix;
1386 struct c_goto_bindings *g;
1388 if (TREE_CODE (b->decl) != LABEL_DECL)
1389 continue;
1390 label_vars = b->u.label;
1391 --label_vars->label_bindings.stmt_exprs;
1392 if (label_vars->label_bindings.stmt_exprs < 0)
1394 label_vars->label_bindings.left_stmt_expr = true;
1395 label_vars->label_bindings.stmt_exprs = 0;
1397 FOR_EACH_VEC_ELT (c_goto_bindings_p, label_vars->gotos, ix, g)
1399 --g->goto_bindings.stmt_exprs;
1400 if (g->goto_bindings.stmt_exprs < 0)
1402 g->goto_bindings.left_stmt_expr = true;
1403 g->goto_bindings.stmt_exprs = 0;
1409 if (switch_bindings != NULL)
1411 --switch_bindings->stmt_exprs;
1412 gcc_assert (switch_bindings->stmt_exprs >= 0);
1416 /* Push a definition or a declaration of struct, union or enum tag "name".
1417 "type" should be the type node.
1418 We assume that the tag "name" is not already defined, and has a location
1419 of LOC.
1421 Note that the definition may really be just a forward reference.
1422 In that case, the TYPE_SIZE will be zero. */
1424 static void
1425 pushtag (location_t loc, tree name, tree type)
1427 /* Record the identifier as the type's name if it has none. */
1428 if (name && !TYPE_NAME (type))
1429 TYPE_NAME (type) = name;
1430 bind (name, type, current_scope, /*invisible=*/false, /*nested=*/false, loc);
1432 /* Create a fake NULL-named TYPE_DECL node whose TREE_TYPE will be the
1433 tagged type we just added to the current scope. This fake
1434 NULL-named TYPE_DECL node helps dwarfout.c to know when it needs
1435 to output a representation of a tagged type, and it also gives
1436 us a convenient place to record the "scope start" address for the
1437 tagged type. */
1439 TYPE_STUB_DECL (type) = pushdecl (build_decl (loc,
1440 TYPE_DECL, NULL_TREE, type));
1442 /* An approximation for now, so we can tell this is a function-scope tag.
1443 This will be updated in pop_scope. */
1444 TYPE_CONTEXT (type) = DECL_CONTEXT (TYPE_STUB_DECL (type));
1446 if (warn_cxx_compat && name != NULL_TREE)
1448 struct c_binding *b = I_SYMBOL_BINDING (name);
1450 if (b != NULL
1451 && b->decl != NULL_TREE
1452 && TREE_CODE (b->decl) == TYPE_DECL
1453 && (B_IN_CURRENT_SCOPE (b)
1454 || (current_scope == file_scope && B_IN_EXTERNAL_SCOPE (b)))
1455 && (TYPE_MAIN_VARIANT (TREE_TYPE (b->decl))
1456 != TYPE_MAIN_VARIANT (type)))
1458 warning_at (loc, OPT_Wc___compat,
1459 ("using %qD as both a typedef and a tag is "
1460 "invalid in C++"),
1461 b->decl);
1462 if (b->locus != UNKNOWN_LOCATION)
1463 inform (b->locus, "originally defined here");
1468 /* Subroutine of compare_decls. Allow harmless mismatches in return
1469 and argument types provided that the type modes match. This function
1470 return a unified type given a suitable match, and 0 otherwise. */
1472 static tree
1473 match_builtin_function_types (tree newtype, tree oldtype)
1475 tree newrettype, oldrettype;
1476 tree newargs, oldargs;
1477 tree trytype, tryargs;
1479 /* Accept the return type of the new declaration if same modes. */
1480 oldrettype = TREE_TYPE (oldtype);
1481 newrettype = TREE_TYPE (newtype);
1483 if (TYPE_MODE (oldrettype) != TYPE_MODE (newrettype))
1484 return 0;
1486 oldargs = TYPE_ARG_TYPES (oldtype);
1487 newargs = TYPE_ARG_TYPES (newtype);
1488 tryargs = newargs;
1490 while (oldargs || newargs)
1492 if (!oldargs
1493 || !newargs
1494 || !TREE_VALUE (oldargs)
1495 || !TREE_VALUE (newargs)
1496 || TYPE_MODE (TREE_VALUE (oldargs))
1497 != TYPE_MODE (TREE_VALUE (newargs)))
1498 return 0;
1500 oldargs = TREE_CHAIN (oldargs);
1501 newargs = TREE_CHAIN (newargs);
1504 trytype = build_function_type (newrettype, tryargs);
1505 return build_type_attribute_variant (trytype, TYPE_ATTRIBUTES (oldtype));
1508 /* Subroutine of diagnose_mismatched_decls. Check for function type
1509 mismatch involving an empty arglist vs a nonempty one and give clearer
1510 diagnostics. */
1511 static void
1512 diagnose_arglist_conflict (tree newdecl, tree olddecl,
1513 tree newtype, tree oldtype)
1515 tree t;
1517 if (TREE_CODE (olddecl) != FUNCTION_DECL
1518 || !comptypes (TREE_TYPE (oldtype), TREE_TYPE (newtype))
1519 || !((!prototype_p (oldtype) && DECL_INITIAL (olddecl) == 0)
1520 || (!prototype_p (newtype) && DECL_INITIAL (newdecl) == 0)))
1521 return;
1523 t = TYPE_ARG_TYPES (oldtype);
1524 if (t == 0)
1525 t = TYPE_ARG_TYPES (newtype);
1526 for (; t; t = TREE_CHAIN (t))
1528 tree type = TREE_VALUE (t);
1530 if (TREE_CHAIN (t) == 0
1531 && TYPE_MAIN_VARIANT (type) != void_type_node)
1533 inform (input_location, "a parameter list with an ellipsis can%'t match "
1534 "an empty parameter name list declaration");
1535 break;
1538 if (c_type_promotes_to (type) != type)
1540 inform (input_location, "an argument type that has a default promotion can%'t match "
1541 "an empty parameter name list declaration");
1542 break;
1547 /* Another subroutine of diagnose_mismatched_decls. OLDDECL is an
1548 old-style function definition, NEWDECL is a prototype declaration.
1549 Diagnose inconsistencies in the argument list. Returns TRUE if
1550 the prototype is compatible, FALSE if not. */
1551 static bool
1552 validate_proto_after_old_defn (tree newdecl, tree newtype, tree oldtype)
1554 tree newargs, oldargs;
1555 int i;
1557 #define END_OF_ARGLIST(t) ((t) == void_type_node)
1559 oldargs = TYPE_ACTUAL_ARG_TYPES (oldtype);
1560 newargs = TYPE_ARG_TYPES (newtype);
1561 i = 1;
1563 for (;;)
1565 tree oldargtype = TREE_VALUE (oldargs);
1566 tree newargtype = TREE_VALUE (newargs);
1568 if (oldargtype == error_mark_node || newargtype == error_mark_node)
1569 return false;
1571 oldargtype = TYPE_MAIN_VARIANT (oldargtype);
1572 newargtype = TYPE_MAIN_VARIANT (newargtype);
1574 if (END_OF_ARGLIST (oldargtype) && END_OF_ARGLIST (newargtype))
1575 break;
1577 /* Reaching the end of just one list means the two decls don't
1578 agree on the number of arguments. */
1579 if (END_OF_ARGLIST (oldargtype))
1581 error ("prototype for %q+D declares more arguments "
1582 "than previous old-style definition", newdecl);
1583 return false;
1585 else if (END_OF_ARGLIST (newargtype))
1587 error ("prototype for %q+D declares fewer arguments "
1588 "than previous old-style definition", newdecl);
1589 return false;
1592 /* Type for passing arg must be consistent with that declared
1593 for the arg. */
1594 else if (!comptypes (oldargtype, newargtype))
1596 error ("prototype for %q+D declares argument %d"
1597 " with incompatible type",
1598 newdecl, i);
1599 return false;
1602 oldargs = TREE_CHAIN (oldargs);
1603 newargs = TREE_CHAIN (newargs);
1604 i++;
1607 /* If we get here, no errors were found, but do issue a warning
1608 for this poor-style construct. */
1609 warning (0, "prototype for %q+D follows non-prototype definition",
1610 newdecl);
1611 return true;
1612 #undef END_OF_ARGLIST
1615 /* Subroutine of diagnose_mismatched_decls. Report the location of DECL,
1616 first in a pair of mismatched declarations, using the diagnostic
1617 function DIAG. */
1618 static void
1619 locate_old_decl (tree decl)
1621 if (TREE_CODE (decl) == FUNCTION_DECL && DECL_BUILT_IN (decl))
1623 else if (DECL_INITIAL (decl))
1624 inform (input_location, "previous definition of %q+D was here", decl);
1625 else if (C_DECL_IMPLICIT (decl))
1626 inform (input_location, "previous implicit declaration of %q+D was here", decl);
1627 else
1628 inform (input_location, "previous declaration of %q+D was here", decl);
1631 /* Subroutine of duplicate_decls. Compare NEWDECL to OLDDECL.
1632 Returns true if the caller should proceed to merge the two, false
1633 if OLDDECL should simply be discarded. As a side effect, issues
1634 all necessary diagnostics for invalid or poor-style combinations.
1635 If it returns true, writes the types of NEWDECL and OLDDECL to
1636 *NEWTYPEP and *OLDTYPEP - these may have been adjusted from
1637 TREE_TYPE (NEWDECL, OLDDECL) respectively. */
1639 static bool
1640 diagnose_mismatched_decls (tree newdecl, tree olddecl,
1641 tree *newtypep, tree *oldtypep)
1643 tree newtype, oldtype;
1644 bool pedwarned = false;
1645 bool warned = false;
1646 bool retval = true;
1648 #define DECL_EXTERN_INLINE(DECL) (DECL_DECLARED_INLINE_P (DECL) \
1649 && DECL_EXTERNAL (DECL))
1651 /* If we have error_mark_node for either decl or type, just discard
1652 the previous decl - we're in an error cascade already. */
1653 if (olddecl == error_mark_node || newdecl == error_mark_node)
1654 return false;
1655 *oldtypep = oldtype = TREE_TYPE (olddecl);
1656 *newtypep = newtype = TREE_TYPE (newdecl);
1657 if (oldtype == error_mark_node || newtype == error_mark_node)
1658 return false;
1660 /* Two different categories of symbol altogether. This is an error
1661 unless OLDDECL is a builtin. OLDDECL will be discarded in any case. */
1662 if (TREE_CODE (olddecl) != TREE_CODE (newdecl))
1664 if (!(TREE_CODE (olddecl) == FUNCTION_DECL
1665 && DECL_BUILT_IN (olddecl)
1666 && !C_DECL_DECLARED_BUILTIN (olddecl)))
1668 error ("%q+D redeclared as different kind of symbol", newdecl);
1669 locate_old_decl (olddecl);
1671 else if (TREE_PUBLIC (newdecl))
1672 warning (0, "built-in function %q+D declared as non-function",
1673 newdecl);
1674 else
1675 warning (OPT_Wshadow, "declaration of %q+D shadows "
1676 "a built-in function", newdecl);
1677 return false;
1680 /* Enumerators have no linkage, so may only be declared once in a
1681 given scope. */
1682 if (TREE_CODE (olddecl) == CONST_DECL)
1684 error ("redeclaration of enumerator %q+D", newdecl);
1685 locate_old_decl (olddecl);
1686 return false;
1689 if (!comptypes (oldtype, newtype))
1691 if (TREE_CODE (olddecl) == FUNCTION_DECL
1692 && DECL_BUILT_IN (olddecl) && !C_DECL_DECLARED_BUILTIN (olddecl))
1694 /* Accept harmless mismatch in function types.
1695 This is for the ffs and fprintf builtins. */
1696 tree trytype = match_builtin_function_types (newtype, oldtype);
1698 if (trytype && comptypes (newtype, trytype))
1699 *oldtypep = oldtype = trytype;
1700 else
1702 /* If types don't match for a built-in, throw away the
1703 built-in. No point in calling locate_old_decl here, it
1704 won't print anything. */
1705 warning (0, "conflicting types for built-in function %q+D",
1706 newdecl);
1707 return false;
1710 else if (TREE_CODE (olddecl) == FUNCTION_DECL
1711 && DECL_IS_BUILTIN (olddecl))
1713 /* A conflicting function declaration for a predeclared
1714 function that isn't actually built in. Objective C uses
1715 these. The new declaration silently overrides everything
1716 but the volatility (i.e. noreturn) indication. See also
1717 below. FIXME: Make Objective C use normal builtins. */
1718 TREE_THIS_VOLATILE (newdecl) |= TREE_THIS_VOLATILE (olddecl);
1719 return false;
1721 /* Permit void foo (...) to match int foo (...) if the latter is
1722 the definition and implicit int was used. See
1723 c-torture/compile/920625-2.c. */
1724 else if (TREE_CODE (newdecl) == FUNCTION_DECL && DECL_INITIAL (newdecl)
1725 && TYPE_MAIN_VARIANT (TREE_TYPE (oldtype)) == void_type_node
1726 && TYPE_MAIN_VARIANT (TREE_TYPE (newtype)) == integer_type_node
1727 && C_FUNCTION_IMPLICIT_INT (newdecl) && !DECL_INITIAL (olddecl))
1729 pedwarned = pedwarn (input_location, 0,
1730 "conflicting types for %q+D", newdecl);
1731 /* Make sure we keep void as the return type. */
1732 TREE_TYPE (newdecl) = *newtypep = newtype = oldtype;
1733 C_FUNCTION_IMPLICIT_INT (newdecl) = 0;
1735 /* Permit void foo (...) to match an earlier call to foo (...) with
1736 no declared type (thus, implicitly int). */
1737 else if (TREE_CODE (newdecl) == FUNCTION_DECL
1738 && TYPE_MAIN_VARIANT (TREE_TYPE (newtype)) == void_type_node
1739 && TYPE_MAIN_VARIANT (TREE_TYPE (oldtype)) == integer_type_node
1740 && C_DECL_IMPLICIT (olddecl) && !DECL_INITIAL (olddecl))
1742 pedwarned = pedwarn (input_location, 0,
1743 "conflicting types for %q+D", newdecl);
1744 /* Make sure we keep void as the return type. */
1745 TREE_TYPE (olddecl) = *oldtypep = oldtype = newtype;
1747 else
1749 int new_quals = TYPE_QUALS (newtype);
1750 int old_quals = TYPE_QUALS (oldtype);
1752 if (new_quals != old_quals)
1754 addr_space_t new_addr = DECODE_QUAL_ADDR_SPACE (new_quals);
1755 addr_space_t old_addr = DECODE_QUAL_ADDR_SPACE (old_quals);
1756 if (new_addr != old_addr)
1758 if (ADDR_SPACE_GENERIC_P (new_addr))
1759 error ("conflicting named address spaces (generic vs %s) "
1760 "for %q+D",
1761 c_addr_space_name (old_addr), newdecl);
1762 else if (ADDR_SPACE_GENERIC_P (old_addr))
1763 error ("conflicting named address spaces (%s vs generic) "
1764 "for %q+D",
1765 c_addr_space_name (new_addr), newdecl);
1766 else
1767 error ("conflicting named address spaces (%s vs %s) "
1768 "for %q+D",
1769 c_addr_space_name (new_addr),
1770 c_addr_space_name (old_addr),
1771 newdecl);
1774 if (CLEAR_QUAL_ADDR_SPACE (new_quals)
1775 != CLEAR_QUAL_ADDR_SPACE (old_quals))
1776 error ("conflicting type qualifiers for %q+D", newdecl);
1778 else
1779 error ("conflicting types for %q+D", newdecl);
1780 diagnose_arglist_conflict (newdecl, olddecl, newtype, oldtype);
1781 locate_old_decl (olddecl);
1782 return false;
1786 /* Redeclaration of a type is a constraint violation (6.7.2.3p1),
1787 but silently ignore the redeclaration if either is in a system
1788 header. (Conflicting redeclarations were handled above.) This
1789 is allowed for C1X if the types are the same, not just
1790 compatible. */
1791 if (TREE_CODE (newdecl) == TYPE_DECL)
1793 bool types_different = false;
1794 int comptypes_result;
1796 comptypes_result
1797 = comptypes_check_different_types (oldtype, newtype, &types_different);
1799 if (comptypes_result != 1 || types_different)
1801 error ("redefinition of typedef %q+D with different type", newdecl);
1802 locate_old_decl (olddecl);
1803 return false;
1806 if (DECL_IN_SYSTEM_HEADER (newdecl)
1807 || DECL_IN_SYSTEM_HEADER (olddecl)
1808 || TREE_NO_WARNING (newdecl)
1809 || TREE_NO_WARNING (olddecl))
1810 return true; /* Allow OLDDECL to continue in use. */
1812 if (variably_modified_type_p (newtype, NULL))
1814 error ("redefinition of typedef %q+D with variably modified type",
1815 newdecl);
1816 locate_old_decl (olddecl);
1818 else if (pedantic && !flag_isoc1x)
1820 pedwarn (input_location, OPT_pedantic,
1821 "redefinition of typedef %q+D", newdecl);
1822 locate_old_decl (olddecl);
1825 return true;
1828 /* Function declarations can either be 'static' or 'extern' (no
1829 qualifier is equivalent to 'extern' - C99 6.2.2p5) and therefore
1830 can never conflict with each other on account of linkage
1831 (6.2.2p4). Multiple definitions are not allowed (6.9p3,5) but
1832 gnu89 mode permits two definitions if one is 'extern inline' and
1833 one is not. The non- extern-inline definition supersedes the
1834 extern-inline definition. */
1836 else if (TREE_CODE (newdecl) == FUNCTION_DECL)
1838 /* If you declare a built-in function name as static, or
1839 define the built-in with an old-style definition (so we
1840 can't validate the argument list) the built-in definition is
1841 overridden, but optionally warn this was a bad choice of name. */
1842 if (DECL_BUILT_IN (olddecl)
1843 && !C_DECL_DECLARED_BUILTIN (olddecl)
1844 && (!TREE_PUBLIC (newdecl)
1845 || (DECL_INITIAL (newdecl)
1846 && !prototype_p (TREE_TYPE (newdecl)))))
1848 warning (OPT_Wshadow, "declaration of %q+D shadows "
1849 "a built-in function", newdecl);
1850 /* Discard the old built-in function. */
1851 return false;
1854 if (DECL_INITIAL (newdecl))
1856 if (DECL_INITIAL (olddecl))
1858 /* If both decls are in the same TU and the new declaration
1859 isn't overriding an extern inline reject the new decl.
1860 In c99, no overriding is allowed in the same translation
1861 unit. */
1862 if ((!DECL_EXTERN_INLINE (olddecl)
1863 || DECL_EXTERN_INLINE (newdecl)
1864 || (!flag_gnu89_inline
1865 && (!DECL_DECLARED_INLINE_P (olddecl)
1866 || !lookup_attribute ("gnu_inline",
1867 DECL_ATTRIBUTES (olddecl)))
1868 && (!DECL_DECLARED_INLINE_P (newdecl)
1869 || !lookup_attribute ("gnu_inline",
1870 DECL_ATTRIBUTES (newdecl))))
1872 && same_translation_unit_p (newdecl, olddecl))
1874 error ("redefinition of %q+D", newdecl);
1875 locate_old_decl (olddecl);
1876 return false;
1880 /* If we have a prototype after an old-style function definition,
1881 the argument types must be checked specially. */
1882 else if (DECL_INITIAL (olddecl)
1883 && !prototype_p (oldtype) && prototype_p (newtype)
1884 && TYPE_ACTUAL_ARG_TYPES (oldtype)
1885 && !validate_proto_after_old_defn (newdecl, newtype, oldtype))
1887 locate_old_decl (olddecl);
1888 return false;
1890 /* A non-static declaration (even an "extern") followed by a
1891 static declaration is undefined behavior per C99 6.2.2p3-5,7.
1892 The same is true for a static forward declaration at block
1893 scope followed by a non-static declaration/definition at file
1894 scope. Static followed by non-static at the same scope is
1895 not undefined behavior, and is the most convenient way to get
1896 some effects (see e.g. what unwind-dw2-fde-glibc.c does to
1897 the definition of _Unwind_Find_FDE in unwind-dw2-fde.c), but
1898 we do diagnose it if -Wtraditional. */
1899 if (TREE_PUBLIC (olddecl) && !TREE_PUBLIC (newdecl))
1901 /* Two exceptions to the rule. If olddecl is an extern
1902 inline, or a predeclared function that isn't actually
1903 built in, newdecl silently overrides olddecl. The latter
1904 occur only in Objective C; see also above. (FIXME: Make
1905 Objective C use normal builtins.) */
1906 if (!DECL_IS_BUILTIN (olddecl)
1907 && !DECL_EXTERN_INLINE (olddecl))
1909 error ("static declaration of %q+D follows "
1910 "non-static declaration", newdecl);
1911 locate_old_decl (olddecl);
1913 return false;
1915 else if (TREE_PUBLIC (newdecl) && !TREE_PUBLIC (olddecl))
1917 if (DECL_CONTEXT (olddecl))
1919 error ("non-static declaration of %q+D follows "
1920 "static declaration", newdecl);
1921 locate_old_decl (olddecl);
1922 return false;
1924 else if (warn_traditional)
1926 warned |= warning (OPT_Wtraditional,
1927 "non-static declaration of %q+D "
1928 "follows static declaration", newdecl);
1932 /* Make sure gnu_inline attribute is either not present, or
1933 present on all inline decls. */
1934 if (DECL_DECLARED_INLINE_P (olddecl)
1935 && DECL_DECLARED_INLINE_P (newdecl))
1937 bool newa = lookup_attribute ("gnu_inline",
1938 DECL_ATTRIBUTES (newdecl)) != NULL;
1939 bool olda = lookup_attribute ("gnu_inline",
1940 DECL_ATTRIBUTES (olddecl)) != NULL;
1941 if (newa != olda)
1943 error_at (input_location, "%<gnu_inline%> attribute present on %q+D",
1944 newa ? newdecl : olddecl);
1945 error_at (DECL_SOURCE_LOCATION (newa ? olddecl : newdecl),
1946 "but not here");
1950 else if (TREE_CODE (newdecl) == VAR_DECL)
1952 /* Only variables can be thread-local, and all declarations must
1953 agree on this property. */
1954 if (C_DECL_THREADPRIVATE_P (olddecl) && !DECL_THREAD_LOCAL_P (newdecl))
1956 /* Nothing to check. Since OLDDECL is marked threadprivate
1957 and NEWDECL does not have a thread-local attribute, we
1958 will merge the threadprivate attribute into NEWDECL. */
1961 else if (DECL_THREAD_LOCAL_P (newdecl) != DECL_THREAD_LOCAL_P (olddecl))
1963 if (DECL_THREAD_LOCAL_P (newdecl))
1964 error ("thread-local declaration of %q+D follows "
1965 "non-thread-local declaration", newdecl);
1966 else
1967 error ("non-thread-local declaration of %q+D follows "
1968 "thread-local declaration", newdecl);
1970 locate_old_decl (olddecl);
1971 return false;
1974 /* Multiple initialized definitions are not allowed (6.9p3,5). */
1975 if (DECL_INITIAL (newdecl) && DECL_INITIAL (olddecl))
1977 error ("redefinition of %q+D", newdecl);
1978 locate_old_decl (olddecl);
1979 return false;
1982 /* Objects declared at file scope: if the first declaration had
1983 external linkage (even if it was an external reference) the
1984 second must have external linkage as well, or the behavior is
1985 undefined. If the first declaration had internal linkage, then
1986 the second must too, or else be an external reference (in which
1987 case the composite declaration still has internal linkage).
1988 As for function declarations, we warn about the static-then-
1989 extern case only for -Wtraditional. See generally 6.2.2p3-5,7. */
1990 if (DECL_FILE_SCOPE_P (newdecl)
1991 && TREE_PUBLIC (newdecl) != TREE_PUBLIC (olddecl))
1993 if (DECL_EXTERNAL (newdecl))
1995 if (!DECL_FILE_SCOPE_P (olddecl))
1997 error ("extern declaration of %q+D follows "
1998 "declaration with no linkage", newdecl);
1999 locate_old_decl (olddecl);
2000 return false;
2002 else if (warn_traditional)
2004 warned |= warning (OPT_Wtraditional,
2005 "non-static declaration of %q+D "
2006 "follows static declaration", newdecl);
2009 else
2011 if (TREE_PUBLIC (newdecl))
2012 error ("non-static declaration of %q+D follows "
2013 "static declaration", newdecl);
2014 else
2015 error ("static declaration of %q+D follows "
2016 "non-static declaration", newdecl);
2018 locate_old_decl (olddecl);
2019 return false;
2022 /* Two objects with the same name declared at the same block
2023 scope must both be external references (6.7p3). */
2024 else if (!DECL_FILE_SCOPE_P (newdecl))
2026 if (DECL_EXTERNAL (newdecl))
2028 /* Extern with initializer at block scope, which will
2029 already have received an error. */
2031 else if (DECL_EXTERNAL (olddecl))
2033 error ("declaration of %q+D with no linkage follows "
2034 "extern declaration", newdecl);
2035 locate_old_decl (olddecl);
2037 else
2039 error ("redeclaration of %q+D with no linkage", newdecl);
2040 locate_old_decl (olddecl);
2043 return false;
2046 /* C++ does not permit a decl to appear multiple times at file
2047 scope. */
2048 if (warn_cxx_compat
2049 && DECL_FILE_SCOPE_P (newdecl)
2050 && !DECL_EXTERNAL (newdecl)
2051 && !DECL_EXTERNAL (olddecl))
2052 warned |= warning_at (DECL_SOURCE_LOCATION (newdecl),
2053 OPT_Wc___compat,
2054 ("duplicate declaration of %qD is "
2055 "invalid in C++"),
2056 newdecl);
2059 /* warnings */
2060 /* All decls must agree on a visibility. */
2061 if (CODE_CONTAINS_STRUCT (TREE_CODE (newdecl), TS_DECL_WITH_VIS)
2062 && DECL_VISIBILITY_SPECIFIED (newdecl) && DECL_VISIBILITY_SPECIFIED (olddecl)
2063 && DECL_VISIBILITY (newdecl) != DECL_VISIBILITY (olddecl))
2065 warned |= warning (0, "redeclaration of %q+D with different visibility "
2066 "(old visibility preserved)", newdecl);
2069 if (TREE_CODE (newdecl) == FUNCTION_DECL)
2071 /* Diagnose inline __attribute__ ((noinline)) which is silly. */
2072 if (DECL_DECLARED_INLINE_P (newdecl)
2073 && lookup_attribute ("noinline", DECL_ATTRIBUTES (olddecl)))
2075 warned |= warning (OPT_Wattributes,
2076 "inline declaration of %qD follows "
2077 "declaration with attribute noinline", newdecl);
2079 else if (DECL_DECLARED_INLINE_P (olddecl)
2080 && lookup_attribute ("noinline", DECL_ATTRIBUTES (newdecl)))
2082 warned |= warning (OPT_Wattributes,
2083 "declaration of %q+D with attribute "
2084 "noinline follows inline declaration ", newdecl);
2087 else /* PARM_DECL, VAR_DECL */
2089 /* Redeclaration of a parameter is a constraint violation (this is
2090 not explicitly stated, but follows from C99 6.7p3 [no more than
2091 one declaration of the same identifier with no linkage in the
2092 same scope, except type tags] and 6.2.2p6 [parameters have no
2093 linkage]). We must check for a forward parameter declaration,
2094 indicated by TREE_ASM_WRITTEN on the old declaration - this is
2095 an extension, the mandatory diagnostic for which is handled by
2096 mark_forward_parm_decls. */
2098 if (TREE_CODE (newdecl) == PARM_DECL
2099 && (!TREE_ASM_WRITTEN (olddecl) || TREE_ASM_WRITTEN (newdecl)))
2101 error ("redefinition of parameter %q+D", newdecl);
2102 locate_old_decl (olddecl);
2103 return false;
2107 /* Optional warning for completely redundant decls. */
2108 if (!warned && !pedwarned
2109 && warn_redundant_decls
2110 /* Don't warn about a function declaration followed by a
2111 definition. */
2112 && !(TREE_CODE (newdecl) == FUNCTION_DECL
2113 && DECL_INITIAL (newdecl) && !DECL_INITIAL (olddecl))
2114 /* Don't warn about redundant redeclarations of builtins. */
2115 && !(TREE_CODE (newdecl) == FUNCTION_DECL
2116 && !DECL_BUILT_IN (newdecl)
2117 && DECL_BUILT_IN (olddecl)
2118 && !C_DECL_DECLARED_BUILTIN (olddecl))
2119 /* Don't warn about an extern followed by a definition. */
2120 && !(DECL_EXTERNAL (olddecl) && !DECL_EXTERNAL (newdecl))
2121 /* Don't warn about forward parameter decls. */
2122 && !(TREE_CODE (newdecl) == PARM_DECL
2123 && TREE_ASM_WRITTEN (olddecl) && !TREE_ASM_WRITTEN (newdecl))
2124 /* Don't warn about a variable definition following a declaration. */
2125 && !(TREE_CODE (newdecl) == VAR_DECL
2126 && DECL_INITIAL (newdecl) && !DECL_INITIAL (olddecl)))
2128 warned = warning (OPT_Wredundant_decls, "redundant redeclaration of %q+D",
2129 newdecl);
2132 /* Report location of previous decl/defn. */
2133 if (warned || pedwarned)
2134 locate_old_decl (olddecl);
2136 #undef DECL_EXTERN_INLINE
2138 return retval;
2141 /* Subroutine of duplicate_decls. NEWDECL has been found to be
2142 consistent with OLDDECL, but carries new information. Merge the
2143 new information into OLDDECL. This function issues no
2144 diagnostics. */
2146 static void
2147 merge_decls (tree newdecl, tree olddecl, tree newtype, tree oldtype)
2149 bool new_is_definition = (TREE_CODE (newdecl) == FUNCTION_DECL
2150 && DECL_INITIAL (newdecl) != 0);
2151 bool new_is_prototype = (TREE_CODE (newdecl) == FUNCTION_DECL
2152 && prototype_p (TREE_TYPE (newdecl)));
2153 bool old_is_prototype = (TREE_CODE (olddecl) == FUNCTION_DECL
2154 && prototype_p (TREE_TYPE (olddecl)));
2155 bool extern_changed = false;
2157 /* For real parm decl following a forward decl, rechain the old decl
2158 in its new location and clear TREE_ASM_WRITTEN (it's not a
2159 forward decl anymore). */
2160 if (TREE_CODE (newdecl) == PARM_DECL
2161 && TREE_ASM_WRITTEN (olddecl) && !TREE_ASM_WRITTEN (newdecl))
2163 struct c_binding *b, **here;
2165 for (here = &current_scope->bindings; *here; here = &(*here)->prev)
2166 if ((*here)->decl == olddecl)
2167 goto found;
2168 gcc_unreachable ();
2170 found:
2171 b = *here;
2172 *here = b->prev;
2173 b->prev = current_scope->bindings;
2174 current_scope->bindings = b;
2176 TREE_ASM_WRITTEN (olddecl) = 0;
2179 DECL_ATTRIBUTES (newdecl)
2180 = targetm.merge_decl_attributes (olddecl, newdecl);
2182 /* Merge the data types specified in the two decls. */
2183 TREE_TYPE (newdecl)
2184 = TREE_TYPE (olddecl)
2185 = composite_type (newtype, oldtype);
2187 /* Lay the type out, unless already done. */
2188 if (!comptypes (oldtype, TREE_TYPE (newdecl)))
2190 if (TREE_TYPE (newdecl) != error_mark_node)
2191 layout_type (TREE_TYPE (newdecl));
2192 if (TREE_CODE (newdecl) != FUNCTION_DECL
2193 && TREE_CODE (newdecl) != TYPE_DECL
2194 && TREE_CODE (newdecl) != CONST_DECL)
2195 layout_decl (newdecl, 0);
2197 else
2199 /* Since the type is OLDDECL's, make OLDDECL's size go with. */
2200 DECL_SIZE (newdecl) = DECL_SIZE (olddecl);
2201 DECL_SIZE_UNIT (newdecl) = DECL_SIZE_UNIT (olddecl);
2202 DECL_MODE (newdecl) = DECL_MODE (olddecl);
2203 if (DECL_ALIGN (olddecl) > DECL_ALIGN (newdecl))
2205 DECL_ALIGN (newdecl) = DECL_ALIGN (olddecl);
2206 DECL_USER_ALIGN (newdecl) |= DECL_USER_ALIGN (olddecl);
2210 /* Keep the old rtl since we can safely use it. */
2211 if (HAS_RTL_P (olddecl))
2212 COPY_DECL_RTL (olddecl, newdecl);
2214 /* Merge the type qualifiers. */
2215 if (TREE_READONLY (newdecl))
2216 TREE_READONLY (olddecl) = 1;
2218 if (TREE_THIS_VOLATILE (newdecl))
2219 TREE_THIS_VOLATILE (olddecl) = 1;
2221 /* Merge deprecatedness. */
2222 if (TREE_DEPRECATED (newdecl))
2223 TREE_DEPRECATED (olddecl) = 1;
2225 /* If a decl is in a system header and the other isn't, keep the one on the
2226 system header. Otherwise, keep source location of definition rather than
2227 declaration and of prototype rather than non-prototype unless that
2228 prototype is built-in. */
2229 if (CODE_CONTAINS_STRUCT (TREE_CODE (olddecl), TS_DECL_WITH_VIS)
2230 && DECL_IN_SYSTEM_HEADER (olddecl)
2231 && !DECL_IN_SYSTEM_HEADER (newdecl) )
2232 DECL_SOURCE_LOCATION (newdecl) = DECL_SOURCE_LOCATION (olddecl);
2233 else if (CODE_CONTAINS_STRUCT (TREE_CODE (olddecl), TS_DECL_WITH_VIS)
2234 && DECL_IN_SYSTEM_HEADER (newdecl)
2235 && !DECL_IN_SYSTEM_HEADER (olddecl))
2236 DECL_SOURCE_LOCATION (olddecl) = DECL_SOURCE_LOCATION (newdecl);
2237 else if ((DECL_INITIAL (newdecl) == 0 && DECL_INITIAL (olddecl) != 0)
2238 || (old_is_prototype && !new_is_prototype
2239 && !C_DECL_BUILTIN_PROTOTYPE (olddecl)))
2240 DECL_SOURCE_LOCATION (newdecl) = DECL_SOURCE_LOCATION (olddecl);
2242 /* Merge the initialization information. */
2243 if (DECL_INITIAL (newdecl) == 0)
2244 DECL_INITIAL (newdecl) = DECL_INITIAL (olddecl);
2246 /* Merge the threadprivate attribute. */
2247 if (TREE_CODE (olddecl) == VAR_DECL && C_DECL_THREADPRIVATE_P (olddecl))
2249 DECL_TLS_MODEL (newdecl) = DECL_TLS_MODEL (olddecl);
2250 C_DECL_THREADPRIVATE_P (newdecl) = 1;
2253 if (CODE_CONTAINS_STRUCT (TREE_CODE (olddecl), TS_DECL_WITH_VIS))
2255 /* Merge the section attribute.
2256 We want to issue an error if the sections conflict but that
2257 must be done later in decl_attributes since we are called
2258 before attributes are assigned. */
2259 if (DECL_SECTION_NAME (newdecl) == NULL_TREE)
2260 DECL_SECTION_NAME (newdecl) = DECL_SECTION_NAME (olddecl);
2262 /* Copy the assembler name.
2263 Currently, it can only be defined in the prototype. */
2264 COPY_DECL_ASSEMBLER_NAME (olddecl, newdecl);
2266 /* Use visibility of whichever declaration had it specified */
2267 if (DECL_VISIBILITY_SPECIFIED (olddecl))
2269 DECL_VISIBILITY (newdecl) = DECL_VISIBILITY (olddecl);
2270 DECL_VISIBILITY_SPECIFIED (newdecl) = 1;
2273 if (TREE_CODE (newdecl) == FUNCTION_DECL)
2275 DECL_STATIC_CONSTRUCTOR(newdecl) |= DECL_STATIC_CONSTRUCTOR(olddecl);
2276 DECL_STATIC_DESTRUCTOR (newdecl) |= DECL_STATIC_DESTRUCTOR (olddecl);
2277 DECL_NO_LIMIT_STACK (newdecl) |= DECL_NO_LIMIT_STACK (olddecl);
2278 DECL_NO_INSTRUMENT_FUNCTION_ENTRY_EXIT (newdecl)
2279 |= DECL_NO_INSTRUMENT_FUNCTION_ENTRY_EXIT (olddecl);
2280 TREE_THIS_VOLATILE (newdecl) |= TREE_THIS_VOLATILE (olddecl);
2281 DECL_IS_MALLOC (newdecl) |= DECL_IS_MALLOC (olddecl);
2282 DECL_IS_OPERATOR_NEW (newdecl) |= DECL_IS_OPERATOR_NEW (olddecl);
2283 TREE_READONLY (newdecl) |= TREE_READONLY (olddecl);
2284 DECL_PURE_P (newdecl) |= DECL_PURE_P (olddecl);
2285 DECL_IS_NOVOPS (newdecl) |= DECL_IS_NOVOPS (olddecl);
2288 /* Merge the storage class information. */
2289 merge_weak (newdecl, olddecl);
2291 /* For functions, static overrides non-static. */
2292 if (TREE_CODE (newdecl) == FUNCTION_DECL)
2294 TREE_PUBLIC (newdecl) &= TREE_PUBLIC (olddecl);
2295 /* This is since we don't automatically
2296 copy the attributes of NEWDECL into OLDDECL. */
2297 TREE_PUBLIC (olddecl) = TREE_PUBLIC (newdecl);
2298 /* If this clears `static', clear it in the identifier too. */
2299 if (!TREE_PUBLIC (olddecl))
2300 TREE_PUBLIC (DECL_NAME (olddecl)) = 0;
2304 /* In c99, 'extern' declaration before (or after) 'inline' means this
2305 function is not DECL_EXTERNAL, unless 'gnu_inline' attribute
2306 is present. */
2307 if (TREE_CODE (newdecl) == FUNCTION_DECL
2308 && !flag_gnu89_inline
2309 && (DECL_DECLARED_INLINE_P (newdecl)
2310 || DECL_DECLARED_INLINE_P (olddecl))
2311 && (!DECL_DECLARED_INLINE_P (newdecl)
2312 || !DECL_DECLARED_INLINE_P (olddecl)
2313 || !DECL_EXTERNAL (olddecl))
2314 && DECL_EXTERNAL (newdecl)
2315 && !lookup_attribute ("gnu_inline", DECL_ATTRIBUTES (newdecl))
2316 && !current_function_decl)
2317 DECL_EXTERNAL (newdecl) = 0;
2319 if (DECL_EXTERNAL (newdecl))
2321 TREE_STATIC (newdecl) = TREE_STATIC (olddecl);
2322 DECL_EXTERNAL (newdecl) = DECL_EXTERNAL (olddecl);
2324 /* An extern decl does not override previous storage class. */
2325 TREE_PUBLIC (newdecl) = TREE_PUBLIC (olddecl);
2326 if (!DECL_EXTERNAL (newdecl))
2328 DECL_CONTEXT (newdecl) = DECL_CONTEXT (olddecl);
2329 DECL_COMMON (newdecl) = DECL_COMMON (olddecl);
2332 else
2334 TREE_STATIC (olddecl) = TREE_STATIC (newdecl);
2335 TREE_PUBLIC (olddecl) = TREE_PUBLIC (newdecl);
2338 if (TREE_CODE (newdecl) == FUNCTION_DECL)
2340 /* If we're redefining a function previously defined as extern
2341 inline, make sure we emit debug info for the inline before we
2342 throw it away, in case it was inlined into a function that
2343 hasn't been written out yet. */
2344 if (new_is_definition && DECL_INITIAL (olddecl))
2345 /* The new defn must not be inline. */
2346 DECL_UNINLINABLE (newdecl) = 1;
2347 else
2349 /* If either decl says `inline', this fn is inline, unless
2350 its definition was passed already. */
2351 if (DECL_DECLARED_INLINE_P (newdecl)
2352 || DECL_DECLARED_INLINE_P (olddecl))
2353 DECL_DECLARED_INLINE_P (newdecl) = 1;
2355 DECL_UNINLINABLE (newdecl) = DECL_UNINLINABLE (olddecl)
2356 = (DECL_UNINLINABLE (newdecl) || DECL_UNINLINABLE (olddecl));
2358 DECL_DISREGARD_INLINE_LIMITS (newdecl)
2359 = DECL_DISREGARD_INLINE_LIMITS (olddecl)
2360 = (DECL_DISREGARD_INLINE_LIMITS (newdecl)
2361 || DECL_DISREGARD_INLINE_LIMITS (olddecl));
2364 if (DECL_BUILT_IN (olddecl))
2366 /* If redeclaring a builtin function, it stays built in.
2367 But it gets tagged as having been declared. */
2368 DECL_BUILT_IN_CLASS (newdecl) = DECL_BUILT_IN_CLASS (olddecl);
2369 DECL_FUNCTION_CODE (newdecl) = DECL_FUNCTION_CODE (olddecl);
2370 C_DECL_DECLARED_BUILTIN (newdecl) = 1;
2371 if (new_is_prototype)
2372 C_DECL_BUILTIN_PROTOTYPE (newdecl) = 0;
2373 else
2374 C_DECL_BUILTIN_PROTOTYPE (newdecl)
2375 = C_DECL_BUILTIN_PROTOTYPE (olddecl);
2378 /* Preserve function specific target and optimization options */
2379 if (DECL_FUNCTION_SPECIFIC_TARGET (olddecl)
2380 && !DECL_FUNCTION_SPECIFIC_TARGET (newdecl))
2381 DECL_FUNCTION_SPECIFIC_TARGET (newdecl)
2382 = DECL_FUNCTION_SPECIFIC_TARGET (olddecl);
2384 if (DECL_FUNCTION_SPECIFIC_OPTIMIZATION (olddecl)
2385 && !DECL_FUNCTION_SPECIFIC_OPTIMIZATION (newdecl))
2386 DECL_FUNCTION_SPECIFIC_OPTIMIZATION (newdecl)
2387 = DECL_FUNCTION_SPECIFIC_OPTIMIZATION (olddecl);
2389 /* Also preserve various other info from the definition. */
2390 if (!new_is_definition)
2392 tree t;
2393 DECL_RESULT (newdecl) = DECL_RESULT (olddecl);
2394 DECL_INITIAL (newdecl) = DECL_INITIAL (olddecl);
2395 DECL_STRUCT_FUNCTION (newdecl) = DECL_STRUCT_FUNCTION (olddecl);
2396 DECL_SAVED_TREE (newdecl) = DECL_SAVED_TREE (olddecl);
2397 DECL_ARGUMENTS (newdecl) = copy_list (DECL_ARGUMENTS (olddecl));
2398 for (t = DECL_ARGUMENTS (newdecl); t ; t = DECL_CHAIN (t))
2399 DECL_CONTEXT (t) = newdecl;
2401 /* See if we've got a function to instantiate from. */
2402 if (DECL_SAVED_TREE (olddecl))
2403 DECL_ABSTRACT_ORIGIN (newdecl)
2404 = DECL_ABSTRACT_ORIGIN (olddecl);
2408 extern_changed = DECL_EXTERNAL (olddecl) && !DECL_EXTERNAL (newdecl);
2410 /* Merge the USED information. */
2411 if (TREE_USED (olddecl))
2412 TREE_USED (newdecl) = 1;
2413 else if (TREE_USED (newdecl))
2414 TREE_USED (olddecl) = 1;
2415 if (TREE_CODE (olddecl) == VAR_DECL || TREE_CODE (olddecl) == PARM_DECL)
2416 DECL_READ_P (newdecl) |= DECL_READ_P (olddecl);
2417 if (DECL_PRESERVE_P (olddecl))
2418 DECL_PRESERVE_P (newdecl) = 1;
2419 else if (DECL_PRESERVE_P (newdecl))
2420 DECL_PRESERVE_P (olddecl) = 1;
2422 /* Copy most of the decl-specific fields of NEWDECL into OLDDECL.
2423 But preserve OLDDECL's DECL_UID, DECL_CONTEXT and
2424 DECL_ARGUMENTS (if appropriate). */
2426 unsigned olddecl_uid = DECL_UID (olddecl);
2427 tree olddecl_context = DECL_CONTEXT (olddecl);
2428 tree olddecl_arguments = NULL;
2429 if (TREE_CODE (olddecl) == FUNCTION_DECL)
2430 olddecl_arguments = DECL_ARGUMENTS (olddecl);
2432 memcpy ((char *) olddecl + sizeof (struct tree_common),
2433 (char *) newdecl + sizeof (struct tree_common),
2434 sizeof (struct tree_decl_common) - sizeof (struct tree_common));
2435 switch (TREE_CODE (olddecl))
2437 case FUNCTION_DECL:
2438 case FIELD_DECL:
2439 case VAR_DECL:
2440 case PARM_DECL:
2441 case LABEL_DECL:
2442 case RESULT_DECL:
2443 case CONST_DECL:
2444 case TYPE_DECL:
2445 memcpy ((char *) olddecl + sizeof (struct tree_decl_common),
2446 (char *) newdecl + sizeof (struct tree_decl_common),
2447 tree_code_size (TREE_CODE (olddecl)) - sizeof (struct tree_decl_common));
2448 break;
2450 default:
2452 memcpy ((char *) olddecl + sizeof (struct tree_decl_common),
2453 (char *) newdecl + sizeof (struct tree_decl_common),
2454 sizeof (struct tree_decl_non_common) - sizeof (struct tree_decl_common));
2456 DECL_UID (olddecl) = olddecl_uid;
2457 DECL_CONTEXT (olddecl) = olddecl_context;
2458 if (TREE_CODE (olddecl) == FUNCTION_DECL)
2459 DECL_ARGUMENTS (olddecl) = olddecl_arguments;
2462 /* If OLDDECL had its DECL_RTL instantiated, re-invoke make_decl_rtl
2463 so that encode_section_info has a chance to look at the new decl
2464 flags and attributes. */
2465 if (DECL_RTL_SET_P (olddecl)
2466 && (TREE_CODE (olddecl) == FUNCTION_DECL
2467 || (TREE_CODE (olddecl) == VAR_DECL
2468 && TREE_STATIC (olddecl))))
2469 make_decl_rtl (olddecl);
2471 /* If we changed a function from DECL_EXTERNAL to !DECL_EXTERNAL,
2472 and the definition is coming from the old version, cgraph needs
2473 to be called again. */
2474 if (extern_changed && !new_is_definition
2475 && TREE_CODE (olddecl) == FUNCTION_DECL && DECL_INITIAL (olddecl))
2476 cgraph_mark_if_needed (olddecl);
2479 /* Handle when a new declaration NEWDECL has the same name as an old
2480 one OLDDECL in the same binding contour. Prints an error message
2481 if appropriate.
2483 If safely possible, alter OLDDECL to look like NEWDECL, and return
2484 true. Otherwise, return false. */
2486 static bool
2487 duplicate_decls (tree newdecl, tree olddecl)
2489 tree newtype = NULL, oldtype = NULL;
2491 if (!diagnose_mismatched_decls (newdecl, olddecl, &newtype, &oldtype))
2493 /* Avoid `unused variable' and other warnings for OLDDECL. */
2494 TREE_NO_WARNING (olddecl) = 1;
2495 return false;
2498 merge_decls (newdecl, olddecl, newtype, oldtype);
2499 return true;
2503 /* Check whether decl-node NEW_DECL shadows an existing declaration. */
2504 static void
2505 warn_if_shadowing (tree new_decl)
2507 struct c_binding *b;
2509 /* Shadow warnings wanted? */
2510 if (!warn_shadow
2511 /* No shadow warnings for internally generated vars. */
2512 || DECL_IS_BUILTIN (new_decl)
2513 /* No shadow warnings for vars made for inlining. */
2514 || DECL_FROM_INLINE (new_decl))
2515 return;
2517 /* Is anything being shadowed? Invisible decls do not count. */
2518 for (b = I_SYMBOL_BINDING (DECL_NAME (new_decl)); b; b = b->shadowed)
2519 if (b->decl && b->decl != new_decl && !b->invisible)
2521 tree old_decl = b->decl;
2523 if (old_decl == error_mark_node)
2525 warning (OPT_Wshadow, "declaration of %q+D shadows previous "
2526 "non-variable", new_decl);
2527 break;
2529 else if (TREE_CODE (old_decl) == PARM_DECL)
2530 warning (OPT_Wshadow, "declaration of %q+D shadows a parameter",
2531 new_decl);
2532 else if (DECL_FILE_SCOPE_P (old_decl))
2533 warning (OPT_Wshadow, "declaration of %q+D shadows a global "
2534 "declaration", new_decl);
2535 else if (TREE_CODE (old_decl) == FUNCTION_DECL
2536 && DECL_BUILT_IN (old_decl))
2538 warning (OPT_Wshadow, "declaration of %q+D shadows "
2539 "a built-in function", new_decl);
2540 break;
2542 else
2543 warning (OPT_Wshadow, "declaration of %q+D shadows a previous local",
2544 new_decl);
2546 warning_at (DECL_SOURCE_LOCATION (old_decl), OPT_Wshadow,
2547 "shadowed declaration is here");
2549 break;
2553 /* Record a decl-node X as belonging to the current lexical scope.
2554 Check for errors (such as an incompatible declaration for the same
2555 name already seen in the same scope).
2557 Returns either X or an old decl for the same name.
2558 If an old decl is returned, it may have been smashed
2559 to agree with what X says. */
2561 tree
2562 pushdecl (tree x)
2564 tree name = DECL_NAME (x);
2565 struct c_scope *scope = current_scope;
2566 struct c_binding *b;
2567 bool nested = false;
2568 location_t locus = DECL_SOURCE_LOCATION (x);
2570 /* Must set DECL_CONTEXT for everything not at file scope or
2571 DECL_FILE_SCOPE_P won't work. Local externs don't count
2572 unless they have initializers (which generate code). */
2573 if (current_function_decl
2574 && ((TREE_CODE (x) != FUNCTION_DECL && TREE_CODE (x) != VAR_DECL)
2575 || DECL_INITIAL (x) || !DECL_EXTERNAL (x)))
2576 DECL_CONTEXT (x) = current_function_decl;
2578 /* Anonymous decls are just inserted in the scope. */
2579 if (!name)
2581 bind (name, x, scope, /*invisible=*/false, /*nested=*/false,
2582 locus);
2583 return x;
2586 /* First, see if there is another declaration with the same name in
2587 the current scope. If there is, duplicate_decls may do all the
2588 work for us. If duplicate_decls returns false, that indicates
2589 two incompatible decls in the same scope; we are to silently
2590 replace the old one (duplicate_decls has issued all appropriate
2591 diagnostics). In particular, we should not consider possible
2592 duplicates in the external scope, or shadowing. */
2593 b = I_SYMBOL_BINDING (name);
2594 if (b && B_IN_SCOPE (b, scope))
2596 struct c_binding *b_ext, *b_use;
2597 tree type = TREE_TYPE (x);
2598 tree visdecl = b->decl;
2599 tree vistype = TREE_TYPE (visdecl);
2600 if (TREE_CODE (TREE_TYPE (x)) == ARRAY_TYPE
2601 && COMPLETE_TYPE_P (TREE_TYPE (x)))
2602 b->inner_comp = false;
2603 b_use = b;
2604 b_ext = b;
2605 /* If this is an external linkage declaration, we should check
2606 for compatibility with the type in the external scope before
2607 setting the type at this scope based on the visible
2608 information only. */
2609 if (TREE_PUBLIC (x) && TREE_PUBLIC (visdecl))
2611 while (b_ext && !B_IN_EXTERNAL_SCOPE (b_ext))
2612 b_ext = b_ext->shadowed;
2613 if (b_ext)
2615 b_use = b_ext;
2616 if (b_use->u.type)
2617 TREE_TYPE (b_use->decl) = b_use->u.type;
2620 if (duplicate_decls (x, b_use->decl))
2622 if (b_use != b)
2624 /* Save the updated type in the external scope and
2625 restore the proper type for this scope. */
2626 tree thistype;
2627 if (comptypes (vistype, type))
2628 thistype = composite_type (vistype, type);
2629 else
2630 thistype = TREE_TYPE (b_use->decl);
2631 b_use->u.type = TREE_TYPE (b_use->decl);
2632 if (TREE_CODE (b_use->decl) == FUNCTION_DECL
2633 && DECL_BUILT_IN (b_use->decl))
2634 thistype
2635 = build_type_attribute_variant (thistype,
2636 TYPE_ATTRIBUTES
2637 (b_use->u.type));
2638 TREE_TYPE (b_use->decl) = thistype;
2640 return b_use->decl;
2642 else
2643 goto skip_external_and_shadow_checks;
2646 /* All declarations with external linkage, and all external
2647 references, go in the external scope, no matter what scope is
2648 current. However, the binding in that scope is ignored for
2649 purposes of normal name lookup. A separate binding structure is
2650 created in the requested scope; this governs the normal
2651 visibility of the symbol.
2653 The binding in the externals scope is used exclusively for
2654 detecting duplicate declarations of the same object, no matter
2655 what scope they are in; this is what we do here. (C99 6.2.7p2:
2656 All declarations that refer to the same object or function shall
2657 have compatible type; otherwise, the behavior is undefined.) */
2658 if (DECL_EXTERNAL (x) || scope == file_scope)
2660 tree type = TREE_TYPE (x);
2661 tree vistype = 0;
2662 tree visdecl = 0;
2663 bool type_saved = false;
2664 if (b && !B_IN_EXTERNAL_SCOPE (b)
2665 && (TREE_CODE (b->decl) == FUNCTION_DECL
2666 || TREE_CODE (b->decl) == VAR_DECL)
2667 && DECL_FILE_SCOPE_P (b->decl))
2669 visdecl = b->decl;
2670 vistype = TREE_TYPE (visdecl);
2672 if (scope != file_scope
2673 && !DECL_IN_SYSTEM_HEADER (x))
2674 warning (OPT_Wnested_externs, "nested extern declaration of %qD", x);
2676 while (b && !B_IN_EXTERNAL_SCOPE (b))
2678 /* If this decl might be modified, save its type. This is
2679 done here rather than when the decl is first bound
2680 because the type may change after first binding, through
2681 being completed or through attributes being added. If we
2682 encounter multiple such decls, only the first should have
2683 its type saved; the others will already have had their
2684 proper types saved and the types will not have changed as
2685 their scopes will not have been re-entered. */
2686 if (DECL_P (b->decl) && DECL_FILE_SCOPE_P (b->decl) && !type_saved)
2688 b->u.type = TREE_TYPE (b->decl);
2689 type_saved = true;
2691 if (B_IN_FILE_SCOPE (b)
2692 && TREE_CODE (b->decl) == VAR_DECL
2693 && TREE_STATIC (b->decl)
2694 && TREE_CODE (TREE_TYPE (b->decl)) == ARRAY_TYPE
2695 && !TYPE_DOMAIN (TREE_TYPE (b->decl))
2696 && TREE_CODE (type) == ARRAY_TYPE
2697 && TYPE_DOMAIN (type)
2698 && TYPE_MAX_VALUE (TYPE_DOMAIN (type))
2699 && !integer_zerop (TYPE_MAX_VALUE (TYPE_DOMAIN (type))))
2701 /* Array type completed in inner scope, which should be
2702 diagnosed if the completion does not have size 1 and
2703 it does not get completed in the file scope. */
2704 b->inner_comp = true;
2706 b = b->shadowed;
2709 /* If a matching external declaration has been found, set its
2710 type to the composite of all the types of that declaration.
2711 After the consistency checks, it will be reset to the
2712 composite of the visible types only. */
2713 if (b && (TREE_PUBLIC (x) || same_translation_unit_p (x, b->decl))
2714 && b->u.type)
2715 TREE_TYPE (b->decl) = b->u.type;
2717 /* The point of the same_translation_unit_p check here is,
2718 we want to detect a duplicate decl for a construct like
2719 foo() { extern bar(); } ... static bar(); but not if
2720 they are in different translation units. In any case,
2721 the static does not go in the externals scope. */
2722 if (b
2723 && (TREE_PUBLIC (x) || same_translation_unit_p (x, b->decl))
2724 && duplicate_decls (x, b->decl))
2726 tree thistype;
2727 if (vistype)
2729 if (comptypes (vistype, type))
2730 thistype = composite_type (vistype, type);
2731 else
2732 thistype = TREE_TYPE (b->decl);
2734 else
2735 thistype = type;
2736 b->u.type = TREE_TYPE (b->decl);
2737 if (TREE_CODE (b->decl) == FUNCTION_DECL && DECL_BUILT_IN (b->decl))
2738 thistype
2739 = build_type_attribute_variant (thistype,
2740 TYPE_ATTRIBUTES (b->u.type));
2741 TREE_TYPE (b->decl) = thistype;
2742 bind (name, b->decl, scope, /*invisible=*/false, /*nested=*/true,
2743 locus);
2744 return b->decl;
2746 else if (TREE_PUBLIC (x))
2748 if (visdecl && !b && duplicate_decls (x, visdecl))
2750 /* An external declaration at block scope referring to a
2751 visible entity with internal linkage. The composite
2752 type will already be correct for this scope, so we
2753 just need to fall through to make the declaration in
2754 this scope. */
2755 nested = true;
2756 x = visdecl;
2758 else
2760 bind (name, x, external_scope, /*invisible=*/true,
2761 /*nested=*/false, locus);
2762 nested = true;
2767 if (TREE_CODE (x) != PARM_DECL)
2768 warn_if_shadowing (x);
2770 skip_external_and_shadow_checks:
2771 if (TREE_CODE (x) == TYPE_DECL)
2772 set_underlying_type (x);
2774 bind (name, x, scope, /*invisible=*/false, nested, locus);
2776 /* If x's type is incomplete because it's based on a
2777 structure or union which has not yet been fully declared,
2778 attach it to that structure or union type, so we can go
2779 back and complete the variable declaration later, if the
2780 structure or union gets fully declared.
2782 If the input is erroneous, we can have error_mark in the type
2783 slot (e.g. "f(void a, ...)") - that doesn't count as an
2784 incomplete type. */
2785 if (TREE_TYPE (x) != error_mark_node
2786 && !COMPLETE_TYPE_P (TREE_TYPE (x)))
2788 tree element = TREE_TYPE (x);
2790 while (TREE_CODE (element) == ARRAY_TYPE)
2791 element = TREE_TYPE (element);
2792 element = TYPE_MAIN_VARIANT (element);
2794 if ((TREE_CODE (element) == RECORD_TYPE
2795 || TREE_CODE (element) == UNION_TYPE)
2796 && (TREE_CODE (x) != TYPE_DECL
2797 || TREE_CODE (TREE_TYPE (x)) == ARRAY_TYPE)
2798 && !COMPLETE_TYPE_P (element))
2799 C_TYPE_INCOMPLETE_VARS (element)
2800 = tree_cons (NULL_TREE, x, C_TYPE_INCOMPLETE_VARS (element));
2802 return x;
2805 /* Record X as belonging to file scope.
2806 This is used only internally by the Objective-C front end,
2807 and is limited to its needs. duplicate_decls is not called;
2808 if there is any preexisting decl for this identifier, it is an ICE. */
2810 tree
2811 pushdecl_top_level (tree x)
2813 tree name;
2814 bool nested = false;
2815 gcc_assert (TREE_CODE (x) == VAR_DECL || TREE_CODE (x) == CONST_DECL);
2817 name = DECL_NAME (x);
2819 gcc_assert (TREE_CODE (x) == CONST_DECL || !I_SYMBOL_BINDING (name));
2821 if (TREE_PUBLIC (x))
2823 bind (name, x, external_scope, /*invisible=*/true, /*nested=*/false,
2824 UNKNOWN_LOCATION);
2825 nested = true;
2827 if (file_scope)
2828 bind (name, x, file_scope, /*invisible=*/false, nested, UNKNOWN_LOCATION);
2830 return x;
2833 static void
2834 implicit_decl_warning (tree id, tree olddecl)
2836 if (warn_implicit_function_declaration)
2838 bool warned;
2840 if (flag_isoc99)
2841 warned = pedwarn (input_location, OPT_Wimplicit_function_declaration,
2842 "implicit declaration of function %qE", id);
2843 else
2844 warned = warning (OPT_Wimplicit_function_declaration,
2845 G_("implicit declaration of function %qE"), id);
2846 if (olddecl && warned)
2847 locate_old_decl (olddecl);
2851 /* Generate an implicit declaration for identifier FUNCTIONID at LOC as a
2852 function of type int (). */
2854 tree
2855 implicitly_declare (location_t loc, tree functionid)
2857 struct c_binding *b;
2858 tree decl = 0;
2859 tree asmspec_tree;
2861 for (b = I_SYMBOL_BINDING (functionid); b; b = b->shadowed)
2863 if (B_IN_SCOPE (b, external_scope))
2865 decl = b->decl;
2866 break;
2870 if (decl)
2872 if (decl == error_mark_node)
2873 return decl;
2875 /* FIXME: Objective-C has weird not-really-builtin functions
2876 which are supposed to be visible automatically. They wind up
2877 in the external scope because they're pushed before the file
2878 scope gets created. Catch this here and rebind them into the
2879 file scope. */
2880 if (!DECL_BUILT_IN (decl) && DECL_IS_BUILTIN (decl))
2882 bind (functionid, decl, file_scope,
2883 /*invisible=*/false, /*nested=*/true,
2884 DECL_SOURCE_LOCATION (decl));
2885 return decl;
2887 else
2889 tree newtype = default_function_type;
2890 if (b->u.type)
2891 TREE_TYPE (decl) = b->u.type;
2892 /* Implicit declaration of a function already declared
2893 (somehow) in a different scope, or as a built-in.
2894 If this is the first time this has happened, warn;
2895 then recycle the old declaration but with the new type. */
2896 if (!C_DECL_IMPLICIT (decl))
2898 implicit_decl_warning (functionid, decl);
2899 C_DECL_IMPLICIT (decl) = 1;
2901 if (DECL_BUILT_IN (decl))
2903 newtype = build_type_attribute_variant (newtype,
2904 TYPE_ATTRIBUTES
2905 (TREE_TYPE (decl)));
2906 if (!comptypes (newtype, TREE_TYPE (decl)))
2908 warning_at (loc, 0, "incompatible implicit declaration of "
2909 "built-in function %qD", decl);
2910 newtype = TREE_TYPE (decl);
2913 else
2915 if (!comptypes (newtype, TREE_TYPE (decl)))
2917 error_at (loc, "incompatible implicit declaration of function %qD", decl);
2918 locate_old_decl (decl);
2921 b->u.type = TREE_TYPE (decl);
2922 TREE_TYPE (decl) = newtype;
2923 bind (functionid, decl, current_scope,
2924 /*invisible=*/false, /*nested=*/true,
2925 DECL_SOURCE_LOCATION (decl));
2926 return decl;
2930 /* Not seen before. */
2931 decl = build_decl (loc, FUNCTION_DECL, functionid, default_function_type);
2932 DECL_EXTERNAL (decl) = 1;
2933 TREE_PUBLIC (decl) = 1;
2934 C_DECL_IMPLICIT (decl) = 1;
2935 implicit_decl_warning (functionid, 0);
2936 asmspec_tree = maybe_apply_renaming_pragma (decl, /*asmname=*/NULL);
2937 if (asmspec_tree)
2938 set_user_assembler_name (decl, TREE_STRING_POINTER (asmspec_tree));
2940 /* C89 says implicit declarations are in the innermost block.
2941 So we record the decl in the standard fashion. */
2942 decl = pushdecl (decl);
2944 /* No need to call objc_check_decl here - it's a function type. */
2945 rest_of_decl_compilation (decl, 0, 0);
2947 /* Write a record describing this implicit function declaration
2948 to the prototypes file (if requested). */
2949 gen_aux_info_record (decl, 0, 1, 0);
2951 /* Possibly apply some default attributes to this implicit declaration. */
2952 decl_attributes (&decl, NULL_TREE, 0);
2954 return decl;
2957 /* Issue an error message for a reference to an undeclared variable
2958 ID, including a reference to a builtin outside of function-call
2959 context. Establish a binding of the identifier to error_mark_node
2960 in an appropriate scope, which will suppress further errors for the
2961 same identifier. The error message should be given location LOC. */
2962 void
2963 undeclared_variable (location_t loc, tree id)
2965 static bool already = false;
2966 struct c_scope *scope;
2968 if (current_function_decl == 0)
2970 error_at (loc, "%qE undeclared here (not in a function)", id);
2971 scope = current_scope;
2973 else
2975 if (!objc_diagnose_private_ivar (id))
2976 error_at (loc, "%qE undeclared (first use in this function)", id);
2977 if (!already)
2979 inform (loc, "each undeclared identifier is reported only"
2980 " once for each function it appears in");
2981 already = true;
2984 /* If we are parsing old-style parameter decls, current_function_decl
2985 will be nonnull but current_function_scope will be null. */
2986 scope = current_function_scope ? current_function_scope : current_scope;
2988 bind (id, error_mark_node, scope, /*invisible=*/false, /*nested=*/false,
2989 UNKNOWN_LOCATION);
2992 /* Subroutine of lookup_label, declare_label, define_label: construct a
2993 LABEL_DECL with all the proper frills. Also create a struct
2994 c_label_vars initialized for the current scope. */
2996 static tree
2997 make_label (location_t location, tree name, bool defining,
2998 struct c_label_vars **p_label_vars)
3000 tree label = build_decl (location, LABEL_DECL, name, void_type_node);
3001 struct c_label_vars *label_vars;
3003 DECL_CONTEXT (label) = current_function_decl;
3004 DECL_MODE (label) = VOIDmode;
3006 label_vars = ggc_alloc_c_label_vars ();
3007 label_vars->shadowed = NULL;
3008 set_spot_bindings (&label_vars->label_bindings, defining);
3009 label_vars->decls_in_scope = make_tree_vector ();
3010 label_vars->gotos = VEC_alloc (c_goto_bindings_p, gc, 0);
3011 *p_label_vars = label_vars;
3013 return label;
3016 /* Get the LABEL_DECL corresponding to identifier NAME as a label.
3017 Create one if none exists so far for the current function.
3018 This is called when a label is used in a goto expression or
3019 has its address taken. */
3021 tree
3022 lookup_label (tree name)
3024 tree label;
3025 struct c_label_vars *label_vars;
3027 if (current_function_scope == 0)
3029 error ("label %qE referenced outside of any function", name);
3030 return 0;
3033 /* Use a label already defined or ref'd with this name, but not if
3034 it is inherited from a containing function and wasn't declared
3035 using __label__. */
3036 label = I_LABEL_DECL (name);
3037 if (label && (DECL_CONTEXT (label) == current_function_decl
3038 || C_DECLARED_LABEL_FLAG (label)))
3040 /* If the label has only been declared, update its apparent
3041 location to point here, for better diagnostics if it
3042 turns out not to have been defined. */
3043 if (DECL_INITIAL (label) == NULL_TREE)
3044 DECL_SOURCE_LOCATION (label) = input_location;
3045 return label;
3048 /* No label binding for that identifier; make one. */
3049 label = make_label (input_location, name, false, &label_vars);
3051 /* Ordinary labels go in the current function scope. */
3052 bind_label (name, label, current_function_scope, label_vars);
3054 return label;
3057 /* Issue a warning about DECL for a goto statement at GOTO_LOC going
3058 to LABEL. */
3060 static void
3061 warn_about_goto (location_t goto_loc, tree label, tree decl)
3063 if (variably_modified_type_p (TREE_TYPE (decl), NULL_TREE))
3064 error_at (goto_loc,
3065 "jump into scope of identifier with variably modified type");
3066 else
3067 warning_at (goto_loc, OPT_Wjump_misses_init,
3068 "jump skips variable initialization");
3069 inform (DECL_SOURCE_LOCATION (label), "label %qD defined here", label);
3070 inform (DECL_SOURCE_LOCATION (decl), "%qD declared here", decl);
3073 /* Look up a label because of a goto statement. This is like
3074 lookup_label, but also issues any appropriate warnings. */
3076 tree
3077 lookup_label_for_goto (location_t loc, tree name)
3079 tree label;
3080 struct c_label_vars *label_vars;
3081 unsigned int ix;
3082 tree decl;
3084 label = lookup_label (name);
3085 if (label == NULL_TREE)
3086 return NULL_TREE;
3088 /* If we are jumping to a different function, we can't issue any
3089 useful warnings. */
3090 if (DECL_CONTEXT (label) != current_function_decl)
3092 gcc_assert (C_DECLARED_LABEL_FLAG (label));
3093 return label;
3096 label_vars = I_LABEL_BINDING (name)->u.label;
3098 /* If the label has not yet been defined, then push this goto on a
3099 list for possible later warnings. */
3100 if (label_vars->label_bindings.scope == NULL)
3102 struct c_goto_bindings *g;
3104 g = ggc_alloc_c_goto_bindings ();
3105 g->loc = loc;
3106 set_spot_bindings (&g->goto_bindings, true);
3107 VEC_safe_push (c_goto_bindings_p, gc, label_vars->gotos, g);
3108 return label;
3111 /* If there are any decls in label_vars->decls_in_scope, then this
3112 goto has missed the declaration of the decl. This happens for a
3113 case like
3114 int i = 1;
3115 lab:
3117 goto lab;
3118 Issue a warning or error. */
3119 FOR_EACH_VEC_ELT (tree, label_vars->decls_in_scope, ix, decl)
3120 warn_about_goto (loc, label, decl);
3122 if (label_vars->label_bindings.left_stmt_expr)
3124 error_at (loc, "jump into statement expression");
3125 inform (DECL_SOURCE_LOCATION (label), "label %qD defined here", label);
3128 return label;
3131 /* Make a label named NAME in the current function, shadowing silently
3132 any that may be inherited from containing functions or containing
3133 scopes. This is called for __label__ declarations. */
3135 tree
3136 declare_label (tree name)
3138 struct c_binding *b = I_LABEL_BINDING (name);
3139 tree label;
3140 struct c_label_vars *label_vars;
3142 /* Check to make sure that the label hasn't already been declared
3143 at this scope */
3144 if (b && B_IN_CURRENT_SCOPE (b))
3146 error ("duplicate label declaration %qE", name);
3147 locate_old_decl (b->decl);
3149 /* Just use the previous declaration. */
3150 return b->decl;
3153 label = make_label (input_location, name, false, &label_vars);
3154 C_DECLARED_LABEL_FLAG (label) = 1;
3156 /* Declared labels go in the current scope. */
3157 bind_label (name, label, current_scope, label_vars);
3159 return label;
3162 /* When we define a label, issue any appropriate warnings if there are
3163 any gotos earlier in the function which jump to this label. */
3165 static void
3166 check_earlier_gotos (tree label, struct c_label_vars* label_vars)
3168 unsigned int ix;
3169 struct c_goto_bindings *g;
3171 FOR_EACH_VEC_ELT (c_goto_bindings_p, label_vars->gotos, ix, g)
3173 struct c_binding *b;
3174 struct c_scope *scope;
3176 /* We have a goto to this label. The goto is going forward. In
3177 g->scope, the goto is going to skip any binding which was
3178 defined after g->bindings_in_scope. */
3179 if (g->goto_bindings.scope->has_jump_unsafe_decl)
3181 for (b = g->goto_bindings.scope->bindings;
3182 b != g->goto_bindings.bindings_in_scope;
3183 b = b->prev)
3185 if (decl_jump_unsafe (b->decl))
3186 warn_about_goto (g->loc, label, b->decl);
3190 /* We also need to warn about decls defined in any scopes
3191 between the scope of the label and the scope of the goto. */
3192 for (scope = label_vars->label_bindings.scope;
3193 scope != g->goto_bindings.scope;
3194 scope = scope->outer)
3196 gcc_assert (scope != NULL);
3197 if (scope->has_jump_unsafe_decl)
3199 if (scope == label_vars->label_bindings.scope)
3200 b = label_vars->label_bindings.bindings_in_scope;
3201 else
3202 b = scope->bindings;
3203 for (; b != NULL; b = b->prev)
3205 if (decl_jump_unsafe (b->decl))
3206 warn_about_goto (g->loc, label, b->decl);
3211 if (g->goto_bindings.stmt_exprs > 0)
3213 error_at (g->loc, "jump into statement expression");
3214 inform (DECL_SOURCE_LOCATION (label), "label %qD defined here",
3215 label);
3219 /* Now that the label is defined, we will issue warnings about
3220 subsequent gotos to this label when we see them. */
3221 VEC_truncate (c_goto_bindings_p, label_vars->gotos, 0);
3222 label_vars->gotos = NULL;
3225 /* Define a label, specifying the location in the source file.
3226 Return the LABEL_DECL node for the label, if the definition is valid.
3227 Otherwise return 0. */
3229 tree
3230 define_label (location_t location, tree name)
3232 /* Find any preexisting label with this name. It is an error
3233 if that label has already been defined in this function, or
3234 if there is a containing function with a declared label with
3235 the same name. */
3236 tree label = I_LABEL_DECL (name);
3238 if (label
3239 && ((DECL_CONTEXT (label) == current_function_decl
3240 && DECL_INITIAL (label) != 0)
3241 || (DECL_CONTEXT (label) != current_function_decl
3242 && C_DECLARED_LABEL_FLAG (label))))
3244 error_at (location, "duplicate label %qD", label);
3245 locate_old_decl (label);
3246 return 0;
3248 else if (label && DECL_CONTEXT (label) == current_function_decl)
3250 struct c_label_vars *label_vars = I_LABEL_BINDING (name)->u.label;
3252 /* The label has been used or declared already in this function,
3253 but not defined. Update its location to point to this
3254 definition. */
3255 DECL_SOURCE_LOCATION (label) = location;
3256 set_spot_bindings (&label_vars->label_bindings, true);
3258 /* Issue warnings as required about any goto statements from
3259 earlier in the function. */
3260 check_earlier_gotos (label, label_vars);
3262 else
3264 struct c_label_vars *label_vars;
3266 /* No label binding for that identifier; make one. */
3267 label = make_label (location, name, true, &label_vars);
3269 /* Ordinary labels go in the current function scope. */
3270 bind_label (name, label, current_function_scope, label_vars);
3273 if (!in_system_header && lookup_name (name))
3274 warning_at (location, OPT_Wtraditional,
3275 "traditional C lacks a separate namespace "
3276 "for labels, identifier %qE conflicts", name);
3278 /* Mark label as having been defined. */
3279 DECL_INITIAL (label) = error_mark_node;
3280 return label;
3283 /* Get the bindings for a new switch statement. This is used to issue
3284 warnings as appropriate for jumps from the switch to case or
3285 default labels. */
3287 struct c_spot_bindings *
3288 c_get_switch_bindings (void)
3290 struct c_spot_bindings *switch_bindings;
3292 switch_bindings = XNEW (struct c_spot_bindings);
3293 set_spot_bindings (switch_bindings, true);
3294 return switch_bindings;
3297 void
3298 c_release_switch_bindings (struct c_spot_bindings *bindings)
3300 gcc_assert (bindings->stmt_exprs == 0 && !bindings->left_stmt_expr);
3301 XDELETE (bindings);
3304 /* This is called at the point of a case or default label to issue
3305 warnings about decls as needed. It returns true if it found an
3306 error, not just a warning. */
3308 bool
3309 c_check_switch_jump_warnings (struct c_spot_bindings *switch_bindings,
3310 location_t switch_loc, location_t case_loc)
3312 bool saw_error;
3313 struct c_scope *scope;
3315 saw_error = false;
3316 for (scope = current_scope;
3317 scope != switch_bindings->scope;
3318 scope = scope->outer)
3320 struct c_binding *b;
3322 gcc_assert (scope != NULL);
3324 if (!scope->has_jump_unsafe_decl)
3325 continue;
3327 for (b = scope->bindings; b != NULL; b = b->prev)
3329 if (decl_jump_unsafe (b->decl))
3331 if (variably_modified_type_p (TREE_TYPE (b->decl), NULL_TREE))
3333 saw_error = true;
3334 error_at (case_loc,
3335 ("switch jumps into scope of identifier with "
3336 "variably modified type"));
3338 else
3339 warning_at (case_loc, OPT_Wjump_misses_init,
3340 "switch jumps over variable initialization");
3341 inform (switch_loc, "switch starts here");
3342 inform (DECL_SOURCE_LOCATION (b->decl), "%qD declared here",
3343 b->decl);
3348 if (switch_bindings->stmt_exprs > 0)
3350 saw_error = true;
3351 error_at (case_loc, "switch jumps into statement expression");
3352 inform (switch_loc, "switch starts here");
3355 return saw_error;
3358 /* Given NAME, an IDENTIFIER_NODE,
3359 return the structure (or union or enum) definition for that name.
3360 If THISLEVEL_ONLY is nonzero, searches only the current_scope.
3361 CODE says which kind of type the caller wants;
3362 it is RECORD_TYPE or UNION_TYPE or ENUMERAL_TYPE.
3363 If PLOC is not NULL and this returns non-null, it sets *PLOC to the
3364 location where the tag was defined.
3365 If the wrong kind of type is found, an error is reported. */
3367 static tree
3368 lookup_tag (enum tree_code code, tree name, int thislevel_only,
3369 location_t *ploc)
3371 struct c_binding *b = I_TAG_BINDING (name);
3372 int thislevel = 0;
3374 if (!b || !b->decl)
3375 return 0;
3377 /* We only care about whether it's in this level if
3378 thislevel_only was set or it might be a type clash. */
3379 if (thislevel_only || TREE_CODE (b->decl) != code)
3381 /* For our purposes, a tag in the external scope is the same as
3382 a tag in the file scope. (Primarily relevant to Objective-C
3383 and its builtin structure tags, which get pushed before the
3384 file scope is created.) */
3385 if (B_IN_CURRENT_SCOPE (b)
3386 || (current_scope == file_scope && B_IN_EXTERNAL_SCOPE (b)))
3387 thislevel = 1;
3390 if (thislevel_only && !thislevel)
3391 return 0;
3393 if (TREE_CODE (b->decl) != code)
3395 /* Definition isn't the kind we were looking for. */
3396 pending_invalid_xref = name;
3397 pending_invalid_xref_location = input_location;
3399 /* If in the same binding level as a declaration as a tag
3400 of a different type, this must not be allowed to
3401 shadow that tag, so give the error immediately.
3402 (For example, "struct foo; union foo;" is invalid.) */
3403 if (thislevel)
3404 pending_xref_error ();
3407 if (ploc != NULL)
3408 *ploc = b->locus;
3410 return b->decl;
3413 /* Print an error message now
3414 for a recent invalid struct, union or enum cross reference.
3415 We don't print them immediately because they are not invalid
3416 when used in the `struct foo;' construct for shadowing. */
3418 void
3419 pending_xref_error (void)
3421 if (pending_invalid_xref != 0)
3422 error_at (pending_invalid_xref_location, "%qE defined as wrong kind of tag",
3423 pending_invalid_xref);
3424 pending_invalid_xref = 0;
3428 /* Look up NAME in the current scope and its superiors
3429 in the namespace of variables, functions and typedefs.
3430 Return a ..._DECL node of some kind representing its definition,
3431 or return 0 if it is undefined. */
3433 tree
3434 lookup_name (tree name)
3436 struct c_binding *b = I_SYMBOL_BINDING (name);
3437 if (b && !b->invisible)
3438 return b->decl;
3439 return 0;
3442 /* Similar to `lookup_name' but look only at the indicated scope. */
3444 static tree
3445 lookup_name_in_scope (tree name, struct c_scope *scope)
3447 struct c_binding *b;
3449 for (b = I_SYMBOL_BINDING (name); b; b = b->shadowed)
3450 if (B_IN_SCOPE (b, scope))
3451 return b->decl;
3452 return 0;
3455 /* Create the predefined scalar types of C,
3456 and some nodes representing standard constants (0, 1, (void *) 0).
3457 Initialize the global scope.
3458 Make definitions for built-in primitive functions. */
3460 void
3461 c_init_decl_processing (void)
3463 location_t save_loc = input_location;
3465 /* Initialize reserved words for parser. */
3466 c_parse_init ();
3468 current_function_decl = 0;
3470 gcc_obstack_init (&parser_obstack);
3472 /* Make the externals scope. */
3473 push_scope ();
3474 external_scope = current_scope;
3476 /* Declarations from c_common_nodes_and_builtins must not be associated
3477 with this input file, lest we get differences between using and not
3478 using preprocessed headers. */
3479 input_location = BUILTINS_LOCATION;
3481 c_common_nodes_and_builtins ();
3483 /* In C, comparisons and TRUTH_* expressions have type int. */
3484 truthvalue_type_node = integer_type_node;
3485 truthvalue_true_node = integer_one_node;
3486 truthvalue_false_node = integer_zero_node;
3488 /* Even in C99, which has a real boolean type. */
3489 pushdecl (build_decl (UNKNOWN_LOCATION, TYPE_DECL, get_identifier ("_Bool"),
3490 boolean_type_node));
3492 input_location = save_loc;
3494 pedantic_lvalues = true;
3496 make_fname_decl = c_make_fname_decl;
3497 start_fname_decls ();
3500 /* Create the VAR_DECL at LOC for __FUNCTION__ etc. ID is the name to
3501 give the decl, NAME is the initialization string and TYPE_DEP
3502 indicates whether NAME depended on the type of the function. As we
3503 don't yet implement delayed emission of static data, we mark the
3504 decl as emitted so it is not placed in the output. Anything using
3505 it must therefore pull out the STRING_CST initializer directly.
3506 FIXME. */
3508 static tree
3509 c_make_fname_decl (location_t loc, tree id, int type_dep)
3511 const char *name = fname_as_string (type_dep);
3512 tree decl, type, init;
3513 size_t length = strlen (name);
3515 type = build_array_type (char_type_node,
3516 build_index_type (size_int (length)));
3517 type = c_build_qualified_type (type, TYPE_QUAL_CONST);
3519 decl = build_decl (loc, VAR_DECL, id, type);
3521 TREE_STATIC (decl) = 1;
3522 TREE_READONLY (decl) = 1;
3523 DECL_ARTIFICIAL (decl) = 1;
3525 init = build_string (length + 1, name);
3526 free (CONST_CAST (char *, name));
3527 TREE_TYPE (init) = type;
3528 DECL_INITIAL (decl) = init;
3530 TREE_USED (decl) = 1;
3532 if (current_function_decl
3533 /* For invalid programs like this:
3535 void foo()
3536 const char* p = __FUNCTION__;
3538 the __FUNCTION__ is believed to appear in K&R style function
3539 parameter declarator. In that case we still don't have
3540 function_scope. */
3541 && (!seen_error () || current_function_scope))
3543 DECL_CONTEXT (decl) = current_function_decl;
3544 bind (id, decl, current_function_scope,
3545 /*invisible=*/false, /*nested=*/false, UNKNOWN_LOCATION);
3548 finish_decl (decl, loc, init, NULL_TREE, NULL_TREE);
3550 return decl;
3553 tree
3554 c_builtin_function (tree decl)
3556 tree type = TREE_TYPE (decl);
3557 tree id = DECL_NAME (decl);
3559 const char *name = IDENTIFIER_POINTER (id);
3560 C_DECL_BUILTIN_PROTOTYPE (decl) = prototype_p (type);
3562 /* Should never be called on a symbol with a preexisting meaning. */
3563 gcc_assert (!I_SYMBOL_BINDING (id));
3565 bind (id, decl, external_scope, /*invisible=*/true, /*nested=*/false,
3566 UNKNOWN_LOCATION);
3568 /* Builtins in the implementation namespace are made visible without
3569 needing to be explicitly declared. See push_file_scope. */
3570 if (name[0] == '_' && (name[1] == '_' || ISUPPER (name[1])))
3572 DECL_CHAIN (decl) = visible_builtins;
3573 visible_builtins = decl;
3576 return decl;
3579 tree
3580 c_builtin_function_ext_scope (tree decl)
3582 tree type = TREE_TYPE (decl);
3583 tree id = DECL_NAME (decl);
3585 const char *name = IDENTIFIER_POINTER (id);
3586 C_DECL_BUILTIN_PROTOTYPE (decl) = prototype_p (type);
3588 /* Should never be called on a symbol with a preexisting meaning. */
3589 gcc_assert (!I_SYMBOL_BINDING (id));
3591 bind (id, decl, external_scope, /*invisible=*/false, /*nested=*/false,
3592 UNKNOWN_LOCATION);
3594 /* Builtins in the implementation namespace are made visible without
3595 needing to be explicitly declared. See push_file_scope. */
3596 if (name[0] == '_' && (name[1] == '_' || ISUPPER (name[1])))
3598 DECL_CHAIN (decl) = visible_builtins;
3599 visible_builtins = decl;
3602 return decl;
3605 /* Called when a declaration is seen that contains no names to declare.
3606 If its type is a reference to a structure, union or enum inherited
3607 from a containing scope, shadow that tag name for the current scope
3608 with a forward reference.
3609 If its type defines a new named structure or union
3610 or defines an enum, it is valid but we need not do anything here.
3611 Otherwise, it is an error. */
3613 void
3614 shadow_tag (const struct c_declspecs *declspecs)
3616 shadow_tag_warned (declspecs, 0);
3619 /* WARNED is 1 if we have done a pedwarn, 2 if we have done a warning,
3620 but no pedwarn. */
3621 void
3622 shadow_tag_warned (const struct c_declspecs *declspecs, int warned)
3624 bool found_tag = false;
3626 if (declspecs->type && !declspecs->default_int_p && !declspecs->typedef_p)
3628 tree value = declspecs->type;
3629 enum tree_code code = TREE_CODE (value);
3631 if (code == RECORD_TYPE || code == UNION_TYPE || code == ENUMERAL_TYPE)
3632 /* Used to test also that TYPE_SIZE (value) != 0.
3633 That caused warning for `struct foo;' at top level in the file. */
3635 tree name = TYPE_NAME (value);
3636 tree t;
3638 found_tag = true;
3640 if (declspecs->restrict_p)
3642 error ("invalid use of %<restrict%>");
3643 warned = 1;
3646 if (name == 0)
3648 if (warned != 1 && code != ENUMERAL_TYPE)
3649 /* Empty unnamed enum OK */
3651 pedwarn (input_location, 0,
3652 "unnamed struct/union that defines no instances");
3653 warned = 1;
3656 else if (declspecs->typespec_kind != ctsk_tagdef
3657 && declspecs->typespec_kind != ctsk_tagfirstref
3658 && declspecs->storage_class != csc_none)
3660 if (warned != 1)
3661 pedwarn (input_location, 0,
3662 "empty declaration with storage class specifier "
3663 "does not redeclare tag");
3664 warned = 1;
3665 pending_xref_error ();
3667 else if (declspecs->typespec_kind != ctsk_tagdef
3668 && declspecs->typespec_kind != ctsk_tagfirstref
3669 && (declspecs->const_p
3670 || declspecs->volatile_p
3671 || declspecs->restrict_p
3672 || declspecs->address_space))
3674 if (warned != 1)
3675 pedwarn (input_location, 0,
3676 "empty declaration with type qualifier "
3677 "does not redeclare tag");
3678 warned = 1;
3679 pending_xref_error ();
3681 else
3683 pending_invalid_xref = 0;
3684 t = lookup_tag (code, name, 1, NULL);
3686 if (t == 0)
3688 t = make_node (code);
3689 pushtag (input_location, name, t);
3693 else
3695 if (warned != 1 && !in_system_header)
3697 pedwarn (input_location, 0,
3698 "useless type name in empty declaration");
3699 warned = 1;
3703 else if (warned != 1 && !in_system_header && declspecs->typedef_p)
3705 pedwarn (input_location, 0, "useless type name in empty declaration");
3706 warned = 1;
3709 pending_invalid_xref = 0;
3711 if (declspecs->inline_p)
3713 error ("%<inline%> in empty declaration");
3714 warned = 1;
3717 if (current_scope == file_scope && declspecs->storage_class == csc_auto)
3719 error ("%<auto%> in file-scope empty declaration");
3720 warned = 1;
3723 if (current_scope == file_scope && declspecs->storage_class == csc_register)
3725 error ("%<register%> in file-scope empty declaration");
3726 warned = 1;
3729 if (!warned && !in_system_header && declspecs->storage_class != csc_none)
3731 warning (0, "useless storage class specifier in empty declaration");
3732 warned = 2;
3735 if (!warned && !in_system_header && declspecs->thread_p)
3737 warning (0, "useless %<__thread%> in empty declaration");
3738 warned = 2;
3741 if (!warned && !in_system_header && (declspecs->const_p
3742 || declspecs->volatile_p
3743 || declspecs->restrict_p
3744 || declspecs->address_space))
3746 warning (0, "useless type qualifier in empty declaration");
3747 warned = 2;
3750 if (warned != 1)
3752 if (!found_tag)
3753 pedwarn (input_location, 0, "empty declaration");
3758 /* Return the qualifiers from SPECS as a bitwise OR of TYPE_QUAL_*
3759 bits. SPECS represents declaration specifiers that the grammar
3760 only permits to contain type qualifiers and attributes. */
3763 quals_from_declspecs (const struct c_declspecs *specs)
3765 int quals = ((specs->const_p ? TYPE_QUAL_CONST : 0)
3766 | (specs->volatile_p ? TYPE_QUAL_VOLATILE : 0)
3767 | (specs->restrict_p ? TYPE_QUAL_RESTRICT : 0)
3768 | (ENCODE_QUAL_ADDR_SPACE (specs->address_space)));
3769 gcc_assert (!specs->type
3770 && !specs->decl_attr
3771 && specs->typespec_word == cts_none
3772 && specs->storage_class == csc_none
3773 && !specs->typedef_p
3774 && !specs->explicit_signed_p
3775 && !specs->deprecated_p
3776 && !specs->long_p
3777 && !specs->long_long_p
3778 && !specs->short_p
3779 && !specs->signed_p
3780 && !specs->unsigned_p
3781 && !specs->complex_p
3782 && !specs->inline_p
3783 && !specs->thread_p);
3784 return quals;
3787 /* Construct an array declarator. LOC is the location of the
3788 beginning of the array (usually the opening brace). EXPR is the
3789 expression inside [], or NULL_TREE. QUALS are the type qualifiers
3790 inside the [] (to be applied to the pointer to which a parameter
3791 array is converted). STATIC_P is true if "static" is inside the
3792 [], false otherwise. VLA_UNSPEC_P is true if the array is [*], a
3793 VLA of unspecified length which is nevertheless a complete type,
3794 false otherwise. The field for the contained declarator is left to
3795 be filled in by set_array_declarator_inner. */
3797 struct c_declarator *
3798 build_array_declarator (location_t loc,
3799 tree expr, struct c_declspecs *quals, bool static_p,
3800 bool vla_unspec_p)
3802 struct c_declarator *declarator = XOBNEW (&parser_obstack,
3803 struct c_declarator);
3804 declarator->id_loc = loc;
3805 declarator->kind = cdk_array;
3806 declarator->declarator = 0;
3807 declarator->u.array.dimen = expr;
3808 if (quals)
3810 declarator->u.array.attrs = quals->attrs;
3811 declarator->u.array.quals = quals_from_declspecs (quals);
3813 else
3815 declarator->u.array.attrs = NULL_TREE;
3816 declarator->u.array.quals = 0;
3818 declarator->u.array.static_p = static_p;
3819 declarator->u.array.vla_unspec_p = vla_unspec_p;
3820 if (!flag_isoc99)
3822 if (static_p || quals != NULL)
3823 pedwarn (loc, OPT_pedantic,
3824 "ISO C90 does not support %<static%> or type "
3825 "qualifiers in parameter array declarators");
3826 if (vla_unspec_p)
3827 pedwarn (loc, OPT_pedantic,
3828 "ISO C90 does not support %<[*]%> array declarators");
3830 if (vla_unspec_p)
3832 if (!current_scope->parm_flag)
3834 /* C99 6.7.5.2p4 */
3835 error_at (loc, "%<[*]%> not allowed in other than "
3836 "function prototype scope");
3837 declarator->u.array.vla_unspec_p = false;
3838 return NULL;
3840 current_scope->had_vla_unspec = true;
3842 return declarator;
3845 /* Set the contained declarator of an array declarator. DECL is the
3846 declarator, as constructed by build_array_declarator; INNER is what
3847 appears on the left of the []. */
3849 struct c_declarator *
3850 set_array_declarator_inner (struct c_declarator *decl,
3851 struct c_declarator *inner)
3853 decl->declarator = inner;
3854 return decl;
3857 /* INIT is a constructor that forms DECL's initializer. If the final
3858 element initializes a flexible array field, add the size of that
3859 initializer to DECL's size. */
3861 static void
3862 add_flexible_array_elts_to_size (tree decl, tree init)
3864 tree elt, type;
3866 if (VEC_empty (constructor_elt, CONSTRUCTOR_ELTS (init)))
3867 return;
3869 elt = VEC_last (constructor_elt, CONSTRUCTOR_ELTS (init))->value;
3870 type = TREE_TYPE (elt);
3871 if (TREE_CODE (type) == ARRAY_TYPE
3872 && TYPE_SIZE (type) == NULL_TREE
3873 && TYPE_DOMAIN (type) != NULL_TREE
3874 && TYPE_MAX_VALUE (TYPE_DOMAIN (type)) == NULL_TREE)
3876 complete_array_type (&type, elt, false);
3877 DECL_SIZE (decl)
3878 = size_binop (PLUS_EXPR, DECL_SIZE (decl), TYPE_SIZE (type));
3879 DECL_SIZE_UNIT (decl)
3880 = size_binop (PLUS_EXPR, DECL_SIZE_UNIT (decl), TYPE_SIZE_UNIT (type));
3884 /* Decode a "typename", such as "int **", returning a ..._TYPE node.
3885 Set *EXPR, if EXPR not NULL, to any expression to be evaluated
3886 before the type name, and set *EXPR_CONST_OPERANDS, if
3887 EXPR_CONST_OPERANDS not NULL, to indicate whether the type name may
3888 appear in a constant expression. */
3890 tree
3891 groktypename (struct c_type_name *type_name, tree *expr,
3892 bool *expr_const_operands)
3894 tree type;
3895 tree attrs = type_name->specs->attrs;
3897 type_name->specs->attrs = NULL_TREE;
3899 type = grokdeclarator (type_name->declarator, type_name->specs, TYPENAME,
3900 false, NULL, &attrs, expr, expr_const_operands,
3901 DEPRECATED_NORMAL);
3903 /* Apply attributes. */
3904 decl_attributes (&type, attrs, 0);
3906 return type;
3909 /* Decode a declarator in an ordinary declaration or data definition.
3910 This is called as soon as the type information and variable name
3911 have been parsed, before parsing the initializer if any.
3912 Here we create the ..._DECL node, fill in its type,
3913 and put it on the list of decls for the current context.
3914 The ..._DECL node is returned as the value.
3916 Exception: for arrays where the length is not specified,
3917 the type is left null, to be filled in by `finish_decl'.
3919 Function definitions do not come here; they go to start_function
3920 instead. However, external and forward declarations of functions
3921 do go through here. Structure field declarations are done by
3922 grokfield and not through here. */
3924 tree
3925 start_decl (struct c_declarator *declarator, struct c_declspecs *declspecs,
3926 bool initialized, tree attributes)
3928 tree decl;
3929 tree tem;
3930 tree expr = NULL_TREE;
3931 enum deprecated_states deprecated_state = DEPRECATED_NORMAL;
3933 /* An object declared as __attribute__((deprecated)) suppresses
3934 warnings of uses of other deprecated items. */
3935 if (lookup_attribute ("deprecated", attributes))
3936 deprecated_state = DEPRECATED_SUPPRESS;
3938 decl = grokdeclarator (declarator, declspecs,
3939 NORMAL, initialized, NULL, &attributes, &expr, NULL,
3940 deprecated_state);
3941 if (!decl)
3942 return 0;
3944 if (expr)
3945 add_stmt (fold_convert (void_type_node, expr));
3947 if (TREE_CODE (decl) != FUNCTION_DECL && MAIN_NAME_P (DECL_NAME (decl)))
3948 warning (OPT_Wmain, "%q+D is usually a function", decl);
3950 if (initialized)
3951 /* Is it valid for this decl to have an initializer at all?
3952 If not, set INITIALIZED to zero, which will indirectly
3953 tell 'finish_decl' to ignore the initializer once it is parsed. */
3954 switch (TREE_CODE (decl))
3956 case TYPE_DECL:
3957 error ("typedef %qD is initialized (use __typeof__ instead)", decl);
3958 initialized = 0;
3959 break;
3961 case FUNCTION_DECL:
3962 error ("function %qD is initialized like a variable", decl);
3963 initialized = 0;
3964 break;
3966 case PARM_DECL:
3967 /* DECL_INITIAL in a PARM_DECL is really DECL_ARG_TYPE. */
3968 error ("parameter %qD is initialized", decl);
3969 initialized = 0;
3970 break;
3972 default:
3973 /* Don't allow initializations for incomplete types except for
3974 arrays which might be completed by the initialization. */
3976 /* This can happen if the array size is an undefined macro.
3977 We already gave a warning, so we don't need another one. */
3978 if (TREE_TYPE (decl) == error_mark_node)
3979 initialized = 0;
3980 else if (COMPLETE_TYPE_P (TREE_TYPE (decl)))
3982 /* A complete type is ok if size is fixed. */
3984 if (TREE_CODE (TYPE_SIZE (TREE_TYPE (decl))) != INTEGER_CST
3985 || C_DECL_VARIABLE_SIZE (decl))
3987 error ("variable-sized object may not be initialized");
3988 initialized = 0;
3991 else if (TREE_CODE (TREE_TYPE (decl)) != ARRAY_TYPE)
3993 error ("variable %qD has initializer but incomplete type", decl);
3994 initialized = 0;
3996 else if (C_DECL_VARIABLE_SIZE (decl))
3998 /* Although C99 is unclear about whether incomplete arrays
3999 of VLAs themselves count as VLAs, it does not make
4000 sense to permit them to be initialized given that
4001 ordinary VLAs may not be initialized. */
4002 error ("variable-sized object may not be initialized");
4003 initialized = 0;
4007 if (initialized)
4009 if (current_scope == file_scope)
4010 TREE_STATIC (decl) = 1;
4012 /* Tell 'pushdecl' this is an initialized decl
4013 even though we don't yet have the initializer expression.
4014 Also tell 'finish_decl' it may store the real initializer. */
4015 DECL_INITIAL (decl) = error_mark_node;
4018 /* If this is a function declaration, write a record describing it to the
4019 prototypes file (if requested). */
4021 if (TREE_CODE (decl) == FUNCTION_DECL)
4022 gen_aux_info_record (decl, 0, 0, prototype_p (TREE_TYPE (decl)));
4024 /* ANSI specifies that a tentative definition which is not merged with
4025 a non-tentative definition behaves exactly like a definition with an
4026 initializer equal to zero. (Section 3.7.2)
4028 -fno-common gives strict ANSI behavior, though this tends to break
4029 a large body of code that grew up without this rule.
4031 Thread-local variables are never common, since there's no entrenched
4032 body of code to break, and it allows more efficient variable references
4033 in the presence of dynamic linking. */
4035 if (TREE_CODE (decl) == VAR_DECL
4036 && !initialized
4037 && TREE_PUBLIC (decl)
4038 && !DECL_THREAD_LOCAL_P (decl)
4039 && !flag_no_common)
4040 DECL_COMMON (decl) = 1;
4042 /* Set attributes here so if duplicate decl, will have proper attributes. */
4043 decl_attributes (&decl, attributes, 0);
4045 /* Handle gnu_inline attribute. */
4046 if (declspecs->inline_p
4047 && !flag_gnu89_inline
4048 && TREE_CODE (decl) == FUNCTION_DECL
4049 && (lookup_attribute ("gnu_inline", DECL_ATTRIBUTES (decl))
4050 || current_function_decl))
4052 if (declspecs->storage_class == csc_auto && current_scope != file_scope)
4054 else if (declspecs->storage_class != csc_static)
4055 DECL_EXTERNAL (decl) = !DECL_EXTERNAL (decl);
4058 if (TREE_CODE (decl) == FUNCTION_DECL
4059 && targetm.calls.promote_prototypes (TREE_TYPE (decl)))
4061 struct c_declarator *ce = declarator;
4063 if (ce->kind == cdk_pointer)
4064 ce = declarator->declarator;
4065 if (ce->kind == cdk_function)
4067 tree args = ce->u.arg_info->parms;
4068 for (; args; args = DECL_CHAIN (args))
4070 tree type = TREE_TYPE (args);
4071 if (type && INTEGRAL_TYPE_P (type)
4072 && TYPE_PRECISION (type) < TYPE_PRECISION (integer_type_node))
4073 DECL_ARG_TYPE (args) = integer_type_node;
4078 if (TREE_CODE (decl) == FUNCTION_DECL
4079 && DECL_DECLARED_INLINE_P (decl)
4080 && DECL_UNINLINABLE (decl)
4081 && lookup_attribute ("noinline", DECL_ATTRIBUTES (decl)))
4082 warning (OPT_Wattributes, "inline function %q+D given attribute noinline",
4083 decl);
4085 /* C99 6.7.4p3: An inline definition of a function with external
4086 linkage shall not contain a definition of a modifiable object
4087 with static storage duration... */
4088 if (TREE_CODE (decl) == VAR_DECL
4089 && current_scope != file_scope
4090 && TREE_STATIC (decl)
4091 && !TREE_READONLY (decl)
4092 && DECL_DECLARED_INLINE_P (current_function_decl)
4093 && DECL_EXTERNAL (current_function_decl))
4094 record_inline_static (input_location, current_function_decl,
4095 decl, csi_modifiable);
4097 if (c_dialect_objc ()
4098 && (TREE_CODE (decl) == VAR_DECL
4099 || TREE_CODE (decl) == FUNCTION_DECL))
4100 objc_check_global_decl (decl);
4102 /* Add this decl to the current scope.
4103 TEM may equal DECL or it may be a previous decl of the same name. */
4104 tem = pushdecl (decl);
4106 if (initialized && DECL_EXTERNAL (tem))
4108 DECL_EXTERNAL (tem) = 0;
4109 TREE_STATIC (tem) = 1;
4112 return tem;
4115 /* Subroutine of finish_decl. TYPE is the type of an uninitialized object
4116 DECL or the non-array element type if DECL is an uninitialized array.
4117 If that type has a const member, diagnose this. */
4119 static void
4120 diagnose_uninitialized_cst_member (tree decl, tree type)
4122 tree field;
4123 for (field = TYPE_FIELDS (type); field; field = TREE_CHAIN (field))
4125 tree field_type;
4126 if (TREE_CODE (field) != FIELD_DECL)
4127 continue;
4128 field_type = strip_array_types (TREE_TYPE (field));
4130 if (TYPE_QUALS (field_type) & TYPE_QUAL_CONST)
4132 warning_at (DECL_SOURCE_LOCATION (decl), OPT_Wc___compat,
4133 "uninitialized const member in %qT is invalid in C++",
4134 strip_array_types (TREE_TYPE (decl)));
4135 inform (DECL_SOURCE_LOCATION (field), "%qD should be initialized", field);
4138 if (TREE_CODE (field_type) == RECORD_TYPE
4139 || TREE_CODE (field_type) == UNION_TYPE)
4140 diagnose_uninitialized_cst_member (decl, field_type);
4144 /* Finish processing of a declaration;
4145 install its initial value.
4146 If ORIGTYPE is not NULL_TREE, it is the original type of INIT.
4147 If the length of an array type is not known before,
4148 it must be determined now, from the initial value, or it is an error.
4150 INIT_LOC is the location of the initial value. */
4152 void
4153 finish_decl (tree decl, location_t init_loc, tree init,
4154 tree origtype, tree asmspec_tree)
4156 tree type;
4157 bool was_incomplete = (DECL_SIZE (decl) == 0);
4158 const char *asmspec = 0;
4160 /* If a name was specified, get the string. */
4161 if ((TREE_CODE (decl) == FUNCTION_DECL || TREE_CODE (decl) == VAR_DECL)
4162 && DECL_FILE_SCOPE_P (decl))
4163 asmspec_tree = maybe_apply_renaming_pragma (decl, asmspec_tree);
4164 if (asmspec_tree)
4165 asmspec = TREE_STRING_POINTER (asmspec_tree);
4167 if (TREE_CODE (decl) == VAR_DECL
4168 && TREE_STATIC (decl)
4169 && global_bindings_p ())
4170 /* So decl is a global variable. Record the types it uses
4171 so that we can decide later to emit debug info for them. */
4172 record_types_used_by_current_var_decl (decl);
4174 /* If `start_decl' didn't like having an initialization, ignore it now. */
4175 if (init != 0 && DECL_INITIAL (decl) == 0)
4176 init = 0;
4178 /* Don't crash if parm is initialized. */
4179 if (TREE_CODE (decl) == PARM_DECL)
4180 init = 0;
4182 if (init)
4183 store_init_value (init_loc, decl, init, origtype);
4185 if (c_dialect_objc () && (TREE_CODE (decl) == VAR_DECL
4186 || TREE_CODE (decl) == FUNCTION_DECL
4187 || TREE_CODE (decl) == FIELD_DECL))
4188 objc_check_decl (decl);
4190 type = TREE_TYPE (decl);
4192 /* Deduce size of array from initialization, if not already known. */
4193 if (TREE_CODE (type) == ARRAY_TYPE
4194 && TYPE_DOMAIN (type) == 0
4195 && TREE_CODE (decl) != TYPE_DECL)
4197 bool do_default
4198 = (TREE_STATIC (decl)
4199 /* Even if pedantic, an external linkage array
4200 may have incomplete type at first. */
4201 ? pedantic && !TREE_PUBLIC (decl)
4202 : !DECL_EXTERNAL (decl));
4203 int failure
4204 = complete_array_type (&TREE_TYPE (decl), DECL_INITIAL (decl),
4205 do_default);
4207 /* Get the completed type made by complete_array_type. */
4208 type = TREE_TYPE (decl);
4210 switch (failure)
4212 case 1:
4213 error ("initializer fails to determine size of %q+D", decl);
4214 break;
4216 case 2:
4217 if (do_default)
4218 error ("array size missing in %q+D", decl);
4219 /* If a `static' var's size isn't known,
4220 make it extern as well as static, so it does not get
4221 allocated.
4222 If it is not `static', then do not mark extern;
4223 finish_incomplete_decl will give it a default size
4224 and it will get allocated. */
4225 else if (!pedantic && TREE_STATIC (decl) && !TREE_PUBLIC (decl))
4226 DECL_EXTERNAL (decl) = 1;
4227 break;
4229 case 3:
4230 error ("zero or negative size array %q+D", decl);
4231 break;
4233 case 0:
4234 /* For global variables, update the copy of the type that
4235 exists in the binding. */
4236 if (TREE_PUBLIC (decl))
4238 struct c_binding *b_ext = I_SYMBOL_BINDING (DECL_NAME (decl));
4239 while (b_ext && !B_IN_EXTERNAL_SCOPE (b_ext))
4240 b_ext = b_ext->shadowed;
4241 if (b_ext)
4243 if (b_ext->u.type && comptypes (b_ext->u.type, type))
4244 b_ext->u.type = composite_type (b_ext->u.type, type);
4245 else
4246 b_ext->u.type = type;
4249 break;
4251 default:
4252 gcc_unreachable ();
4255 if (DECL_INITIAL (decl))
4256 TREE_TYPE (DECL_INITIAL (decl)) = type;
4258 layout_decl (decl, 0);
4261 if (TREE_CODE (decl) == VAR_DECL)
4263 if (init && TREE_CODE (init) == CONSTRUCTOR)
4264 add_flexible_array_elts_to_size (decl, init);
4266 if (DECL_SIZE (decl) == 0 && TREE_TYPE (decl) != error_mark_node
4267 && COMPLETE_TYPE_P (TREE_TYPE (decl)))
4268 layout_decl (decl, 0);
4270 if (DECL_SIZE (decl) == 0
4271 /* Don't give an error if we already gave one earlier. */
4272 && TREE_TYPE (decl) != error_mark_node
4273 && (TREE_STATIC (decl)
4274 /* A static variable with an incomplete type
4275 is an error if it is initialized.
4276 Also if it is not file scope.
4277 Otherwise, let it through, but if it is not `extern'
4278 then it may cause an error message later. */
4279 ? (DECL_INITIAL (decl) != 0
4280 || !DECL_FILE_SCOPE_P (decl))
4281 /* An automatic variable with an incomplete type
4282 is an error. */
4283 : !DECL_EXTERNAL (decl)))
4285 error ("storage size of %q+D isn%'t known", decl);
4286 TREE_TYPE (decl) = error_mark_node;
4289 if ((DECL_EXTERNAL (decl) || TREE_STATIC (decl))
4290 && DECL_SIZE (decl) != 0)
4292 if (TREE_CODE (DECL_SIZE (decl)) == INTEGER_CST)
4293 constant_expression_warning (DECL_SIZE (decl));
4294 else
4296 error ("storage size of %q+D isn%'t constant", decl);
4297 TREE_TYPE (decl) = error_mark_node;
4301 if (TREE_USED (type))
4303 TREE_USED (decl) = 1;
4304 DECL_READ_P (decl) = 1;
4308 /* If this is a function and an assembler name is specified, reset DECL_RTL
4309 so we can give it its new name. Also, update built_in_decls if it
4310 was a normal built-in. */
4311 if (TREE_CODE (decl) == FUNCTION_DECL && asmspec)
4313 if (DECL_BUILT_IN_CLASS (decl) == BUILT_IN_NORMAL)
4314 set_builtin_user_assembler_name (decl, asmspec);
4315 set_user_assembler_name (decl, asmspec);
4318 /* If #pragma weak was used, mark the decl weak now. */
4319 maybe_apply_pragma_weak (decl);
4321 /* Output the assembler code and/or RTL code for variables and functions,
4322 unless the type is an undefined structure or union.
4323 If not, it will get done when the type is completed. */
4325 if (TREE_CODE (decl) == VAR_DECL || TREE_CODE (decl) == FUNCTION_DECL)
4327 /* Determine the ELF visibility. */
4328 if (TREE_PUBLIC (decl))
4329 c_determine_visibility (decl);
4331 /* This is a no-op in c-lang.c or something real in objc-act.c. */
4332 if (c_dialect_objc ())
4333 objc_check_decl (decl);
4335 if (asmspec)
4337 /* If this is not a static variable, issue a warning.
4338 It doesn't make any sense to give an ASMSPEC for an
4339 ordinary, non-register local variable. Historically,
4340 GCC has accepted -- but ignored -- the ASMSPEC in
4341 this case. */
4342 if (!DECL_FILE_SCOPE_P (decl)
4343 && TREE_CODE (decl) == VAR_DECL
4344 && !C_DECL_REGISTER (decl)
4345 && !TREE_STATIC (decl))
4346 warning (0, "ignoring asm-specifier for non-static local "
4347 "variable %q+D", decl);
4348 else
4349 set_user_assembler_name (decl, asmspec);
4352 if (DECL_FILE_SCOPE_P (decl))
4354 if (DECL_INITIAL (decl) == NULL_TREE
4355 || DECL_INITIAL (decl) == error_mark_node)
4356 /* Don't output anything
4357 when a tentative file-scope definition is seen.
4358 But at end of compilation, do output code for them. */
4359 DECL_DEFER_OUTPUT (decl) = 1;
4360 if (asmspec && C_DECL_REGISTER (decl))
4361 DECL_HARD_REGISTER (decl) = 1;
4362 rest_of_decl_compilation (decl, true, 0);
4364 else
4366 /* In conjunction with an ASMSPEC, the `register'
4367 keyword indicates that we should place the variable
4368 in a particular register. */
4369 if (asmspec && C_DECL_REGISTER (decl))
4371 DECL_HARD_REGISTER (decl) = 1;
4372 /* This cannot be done for a structure with volatile
4373 fields, on which DECL_REGISTER will have been
4374 reset. */
4375 if (!DECL_REGISTER (decl))
4376 error ("cannot put object with volatile field into register");
4379 if (TREE_CODE (decl) != FUNCTION_DECL)
4381 /* If we're building a variable sized type, and we might be
4382 reachable other than via the top of the current binding
4383 level, then create a new BIND_EXPR so that we deallocate
4384 the object at the right time. */
4385 /* Note that DECL_SIZE can be null due to errors. */
4386 if (DECL_SIZE (decl)
4387 && !TREE_CONSTANT (DECL_SIZE (decl))
4388 && STATEMENT_LIST_HAS_LABEL (cur_stmt_list))
4390 tree bind;
4391 bind = build3 (BIND_EXPR, void_type_node, NULL, NULL, NULL);
4392 TREE_SIDE_EFFECTS (bind) = 1;
4393 add_stmt (bind);
4394 BIND_EXPR_BODY (bind) = push_stmt_list ();
4396 add_stmt (build_stmt (DECL_SOURCE_LOCATION (decl),
4397 DECL_EXPR, decl));
4402 if (!DECL_FILE_SCOPE_P (decl))
4404 /* Recompute the RTL of a local array now
4405 if it used to be an incomplete type. */
4406 if (was_incomplete
4407 && !TREE_STATIC (decl) && !DECL_EXTERNAL (decl))
4409 /* If we used it already as memory, it must stay in memory. */
4410 TREE_ADDRESSABLE (decl) = TREE_USED (decl);
4411 /* If it's still incomplete now, no init will save it. */
4412 if (DECL_SIZE (decl) == 0)
4413 DECL_INITIAL (decl) = 0;
4418 if (TREE_CODE (decl) == TYPE_DECL)
4420 if (!DECL_FILE_SCOPE_P (decl)
4421 && variably_modified_type_p (TREE_TYPE (decl), NULL_TREE))
4422 add_stmt (build_stmt (DECL_SOURCE_LOCATION (decl), DECL_EXPR, decl));
4424 rest_of_decl_compilation (decl, DECL_FILE_SCOPE_P (decl), 0);
4427 /* Install a cleanup (aka destructor) if one was given. */
4428 if (TREE_CODE (decl) == VAR_DECL && !TREE_STATIC (decl))
4430 tree attr = lookup_attribute ("cleanup", DECL_ATTRIBUTES (decl));
4431 if (attr)
4433 tree cleanup_id = TREE_VALUE (TREE_VALUE (attr));
4434 tree cleanup_decl = lookup_name (cleanup_id);
4435 tree cleanup;
4436 VEC(tree,gc) *vec;
4438 /* Build "cleanup(&decl)" for the destructor. */
4439 cleanup = build_unary_op (input_location, ADDR_EXPR, decl, 0);
4440 vec = VEC_alloc (tree, gc, 1);
4441 VEC_quick_push (tree, vec, cleanup);
4442 cleanup = build_function_call_vec (DECL_SOURCE_LOCATION (decl),
4443 cleanup_decl, vec, NULL);
4444 VEC_free (tree, gc, vec);
4446 /* Don't warn about decl unused; the cleanup uses it. */
4447 TREE_USED (decl) = 1;
4448 TREE_USED (cleanup_decl) = 1;
4449 DECL_READ_P (decl) = 1;
4451 push_cleanup (decl, cleanup, false);
4455 if (warn_cxx_compat
4456 && TREE_CODE (decl) == VAR_DECL
4457 && !DECL_EXTERNAL (decl)
4458 && DECL_INITIAL (decl) == NULL_TREE)
4460 type = strip_array_types (type);
4461 if (TREE_READONLY (decl))
4462 warning_at (DECL_SOURCE_LOCATION (decl), OPT_Wc___compat,
4463 "uninitialized const %qD is invalid in C++", decl);
4464 else if ((TREE_CODE (type) == RECORD_TYPE
4465 || TREE_CODE (type) == UNION_TYPE)
4466 && C_TYPE_FIELDS_READONLY (type))
4467 diagnose_uninitialized_cst_member (decl, type);
4470 invoke_plugin_callbacks (PLUGIN_FINISH_DECL, decl);
4473 /* Given a parsed parameter declaration, decode it into a PARM_DECL.
4474 EXPR is NULL or a pointer to an expression that needs to be
4475 evaluated for the side effects of array size expressions in the
4476 parameters. */
4478 tree
4479 grokparm (const struct c_parm *parm, tree *expr)
4481 tree attrs = parm->attrs;
4482 tree decl = grokdeclarator (parm->declarator, parm->specs, PARM, false,
4483 NULL, &attrs, expr, NULL, DEPRECATED_NORMAL);
4485 decl_attributes (&decl, attrs, 0);
4487 return decl;
4490 /* Given a parsed parameter declaration, decode it into a PARM_DECL
4491 and push that on the current scope. EXPR is a pointer to an
4492 expression that needs to be evaluated for the side effects of array
4493 size expressions in the parameters. */
4495 void
4496 push_parm_decl (const struct c_parm *parm, tree *expr)
4498 tree attrs = parm->attrs;
4499 tree decl;
4501 decl = grokdeclarator (parm->declarator, parm->specs, PARM, false, NULL,
4502 &attrs, expr, NULL, DEPRECATED_NORMAL);
4503 decl_attributes (&decl, attrs, 0);
4505 decl = pushdecl (decl);
4507 finish_decl (decl, input_location, NULL_TREE, NULL_TREE, NULL_TREE);
4510 /* Mark all the parameter declarations to date as forward decls.
4511 Also diagnose use of this extension. */
4513 void
4514 mark_forward_parm_decls (void)
4516 struct c_binding *b;
4518 if (pedantic && !current_scope->warned_forward_parm_decls)
4520 pedwarn (input_location, OPT_pedantic,
4521 "ISO C forbids forward parameter declarations");
4522 current_scope->warned_forward_parm_decls = true;
4525 for (b = current_scope->bindings; b; b = b->prev)
4526 if (TREE_CODE (b->decl) == PARM_DECL)
4527 TREE_ASM_WRITTEN (b->decl) = 1;
4530 /* Build a COMPOUND_LITERAL_EXPR. TYPE is the type given in the compound
4531 literal, which may be an incomplete array type completed by the
4532 initializer; INIT is a CONSTRUCTOR at LOC that initializes the compound
4533 literal. NON_CONST is true if the initializers contain something
4534 that cannot occur in a constant expression. */
4536 tree
4537 build_compound_literal (location_t loc, tree type, tree init, bool non_const)
4539 /* We do not use start_decl here because we have a type, not a declarator;
4540 and do not use finish_decl because the decl should be stored inside
4541 the COMPOUND_LITERAL_EXPR rather than added elsewhere as a DECL_EXPR. */
4542 tree decl;
4543 tree complit;
4544 tree stmt;
4546 if (type == error_mark_node
4547 || init == error_mark_node)
4548 return error_mark_node;
4550 decl = build_decl (loc, VAR_DECL, NULL_TREE, type);
4551 DECL_EXTERNAL (decl) = 0;
4552 TREE_PUBLIC (decl) = 0;
4553 TREE_STATIC (decl) = (current_scope == file_scope);
4554 DECL_CONTEXT (decl) = current_function_decl;
4555 TREE_USED (decl) = 1;
4556 DECL_READ_P (decl) = 1;
4557 TREE_TYPE (decl) = type;
4558 TREE_READONLY (decl) = TYPE_READONLY (type);
4559 store_init_value (loc, decl, init, NULL_TREE);
4561 if (TREE_CODE (type) == ARRAY_TYPE && !COMPLETE_TYPE_P (type))
4563 int failure = complete_array_type (&TREE_TYPE (decl),
4564 DECL_INITIAL (decl), true);
4565 gcc_assert (!failure);
4567 type = TREE_TYPE (decl);
4568 TREE_TYPE (DECL_INITIAL (decl)) = type;
4571 if (type == error_mark_node || !COMPLETE_TYPE_P (type))
4572 return error_mark_node;
4574 stmt = build_stmt (DECL_SOURCE_LOCATION (decl), DECL_EXPR, decl);
4575 complit = build1 (COMPOUND_LITERAL_EXPR, type, stmt);
4576 TREE_SIDE_EFFECTS (complit) = 1;
4578 layout_decl (decl, 0);
4580 if (TREE_STATIC (decl))
4582 /* This decl needs a name for the assembler output. */
4583 set_compound_literal_name (decl);
4584 DECL_DEFER_OUTPUT (decl) = 1;
4585 DECL_COMDAT (decl) = 1;
4586 DECL_ARTIFICIAL (decl) = 1;
4587 DECL_IGNORED_P (decl) = 1;
4588 pushdecl (decl);
4589 rest_of_decl_compilation (decl, 1, 0);
4592 if (non_const)
4594 complit = build2 (C_MAYBE_CONST_EXPR, type, NULL, complit);
4595 C_MAYBE_CONST_EXPR_NON_CONST (complit) = 1;
4598 return complit;
4601 /* Check the type of a compound literal. Here we just check that it
4602 is valid for C++. */
4604 void
4605 check_compound_literal_type (location_t loc, struct c_type_name *type_name)
4607 if (warn_cxx_compat
4608 && (type_name->specs->typespec_kind == ctsk_tagdef
4609 || type_name->specs->typespec_kind == ctsk_tagfirstref))
4610 warning_at (loc, OPT_Wc___compat,
4611 "defining a type in a compound literal is invalid in C++");
4614 /* Determine whether TYPE is a structure with a flexible array member,
4615 or a union containing such a structure (possibly recursively). */
4617 static bool
4618 flexible_array_type_p (tree type)
4620 tree x;
4621 switch (TREE_CODE (type))
4623 case RECORD_TYPE:
4624 x = TYPE_FIELDS (type);
4625 if (x == NULL_TREE)
4626 return false;
4627 while (DECL_CHAIN (x) != NULL_TREE)
4628 x = DECL_CHAIN (x);
4629 if (TREE_CODE (TREE_TYPE (x)) == ARRAY_TYPE
4630 && TYPE_SIZE (TREE_TYPE (x)) == NULL_TREE
4631 && TYPE_DOMAIN (TREE_TYPE (x)) != NULL_TREE
4632 && TYPE_MAX_VALUE (TYPE_DOMAIN (TREE_TYPE (x))) == NULL_TREE)
4633 return true;
4634 return false;
4635 case UNION_TYPE:
4636 for (x = TYPE_FIELDS (type); x != NULL_TREE; x = DECL_CHAIN (x))
4638 if (flexible_array_type_p (TREE_TYPE (x)))
4639 return true;
4641 return false;
4642 default:
4643 return false;
4647 /* Performs sanity checks on the TYPE and WIDTH of the bit-field NAME,
4648 replacing with appropriate values if they are invalid. */
4649 static void
4650 check_bitfield_type_and_width (tree *type, tree *width, tree orig_name)
4652 tree type_mv;
4653 unsigned int max_width;
4654 unsigned HOST_WIDE_INT w;
4655 const char *name = (orig_name
4656 ? identifier_to_locale (IDENTIFIER_POINTER (orig_name))
4657 : _("<anonymous>"));
4659 /* Detect and ignore out of range field width and process valid
4660 field widths. */
4661 if (!INTEGRAL_TYPE_P (TREE_TYPE (*width)))
4663 error ("bit-field %qs width not an integer constant", name);
4664 *width = integer_one_node;
4666 else
4668 if (TREE_CODE (*width) != INTEGER_CST)
4670 *width = c_fully_fold (*width, false, NULL);
4671 if (TREE_CODE (*width) == INTEGER_CST)
4672 pedwarn (input_location, OPT_pedantic,
4673 "bit-field %qs width not an integer constant expression",
4674 name);
4676 if (TREE_CODE (*width) != INTEGER_CST)
4678 error ("bit-field %qs width not an integer constant", name);
4679 *width = integer_one_node;
4681 constant_expression_warning (*width);
4682 if (tree_int_cst_sgn (*width) < 0)
4684 error ("negative width in bit-field %qs", name);
4685 *width = integer_one_node;
4687 else if (integer_zerop (*width) && orig_name)
4689 error ("zero width for bit-field %qs", name);
4690 *width = integer_one_node;
4694 /* Detect invalid bit-field type. */
4695 if (TREE_CODE (*type) != INTEGER_TYPE
4696 && TREE_CODE (*type) != BOOLEAN_TYPE
4697 && TREE_CODE (*type) != ENUMERAL_TYPE)
4699 error ("bit-field %qs has invalid type", name);
4700 *type = unsigned_type_node;
4703 type_mv = TYPE_MAIN_VARIANT (*type);
4704 if (!in_system_header
4705 && type_mv != integer_type_node
4706 && type_mv != unsigned_type_node
4707 && type_mv != boolean_type_node)
4708 pedwarn (input_location, OPT_pedantic,
4709 "type of bit-field %qs is a GCC extension", name);
4711 max_width = TYPE_PRECISION (*type);
4713 if (0 < compare_tree_int (*width, max_width))
4715 error ("width of %qs exceeds its type", name);
4716 w = max_width;
4717 *width = build_int_cst (integer_type_node, w);
4719 else
4720 w = tree_low_cst (*width, 1);
4722 if (TREE_CODE (*type) == ENUMERAL_TYPE)
4724 struct lang_type *lt = TYPE_LANG_SPECIFIC (*type);
4725 if (!lt
4726 || w < tree_int_cst_min_precision (lt->enum_min, TYPE_UNSIGNED (*type))
4727 || w < tree_int_cst_min_precision (lt->enum_max, TYPE_UNSIGNED (*type)))
4728 warning (0, "%qs is narrower than values of its type", name);
4734 /* Print warning about variable length array if necessary. */
4736 static void
4737 warn_variable_length_array (tree name, tree size)
4739 int const_size = TREE_CONSTANT (size);
4741 if (!flag_isoc99 && pedantic && warn_vla != 0)
4743 if (const_size)
4745 if (name)
4746 pedwarn (input_location, OPT_Wvla,
4747 "ISO C90 forbids array %qE whose size "
4748 "can%'t be evaluated",
4749 name);
4750 else
4751 pedwarn (input_location, OPT_Wvla, "ISO C90 forbids array whose size "
4752 "can%'t be evaluated");
4754 else
4756 if (name)
4757 pedwarn (input_location, OPT_Wvla,
4758 "ISO C90 forbids variable length array %qE",
4759 name);
4760 else
4761 pedwarn (input_location, OPT_Wvla, "ISO C90 forbids variable length array");
4764 else if (warn_vla > 0)
4766 if (const_size)
4768 if (name)
4769 warning (OPT_Wvla,
4770 "the size of array %qE can"
4771 "%'t be evaluated", name);
4772 else
4773 warning (OPT_Wvla,
4774 "the size of array can %'t be evaluated");
4776 else
4778 if (name)
4779 warning (OPT_Wvla,
4780 "variable length array %qE is used",
4781 name);
4782 else
4783 warning (OPT_Wvla,
4784 "variable length array is used");
4789 /* Given declspecs and a declarator,
4790 determine the name and type of the object declared
4791 and construct a ..._DECL node for it.
4792 (In one case we can return a ..._TYPE node instead.
4793 For invalid input we sometimes return 0.)
4795 DECLSPECS is a c_declspecs structure for the declaration specifiers.
4797 DECL_CONTEXT says which syntactic context this declaration is in:
4798 NORMAL for most contexts. Make a VAR_DECL or FUNCTION_DECL or TYPE_DECL.
4799 FUNCDEF for a function definition. Like NORMAL but a few different
4800 error messages in each case. Return value may be zero meaning
4801 this definition is too screwy to try to parse.
4802 PARM for a parameter declaration (either within a function prototype
4803 or before a function body). Make a PARM_DECL, or return void_type_node.
4804 TYPENAME if for a typename (in a cast or sizeof).
4805 Don't make a DECL node; just return the ..._TYPE node.
4806 FIELD for a struct or union field; make a FIELD_DECL.
4807 INITIALIZED is true if the decl has an initializer.
4808 WIDTH is non-NULL for bit-fields, and is a pointer to an INTEGER_CST node
4809 representing the width of the bit-field.
4810 DECL_ATTRS points to the list of attributes that should be added to this
4811 decl. Any nested attributes that belong on the decl itself will be
4812 added to this list.
4813 If EXPR is not NULL, any expressions that need to be evaluated as
4814 part of evaluating variably modified types will be stored in *EXPR.
4815 If EXPR_CONST_OPERANDS is not NULL, *EXPR_CONST_OPERANDS will be
4816 set to indicate whether operands in *EXPR can be used in constant
4817 expressions.
4818 DEPRECATED_STATE is a deprecated_states value indicating whether
4819 deprecation warnings should be suppressed.
4821 In the TYPENAME case, DECLARATOR is really an absolute declarator.
4822 It may also be so in the PARM case, for a prototype where the
4823 argument type is specified but not the name.
4825 This function is where the complicated C meanings of `static'
4826 and `extern' are interpreted. */
4828 static tree
4829 grokdeclarator (const struct c_declarator *declarator,
4830 struct c_declspecs *declspecs,
4831 enum decl_context decl_context, bool initialized, tree *width,
4832 tree *decl_attrs, tree *expr, bool *expr_const_operands,
4833 enum deprecated_states deprecated_state)
4835 tree type = declspecs->type;
4836 bool threadp = declspecs->thread_p;
4837 enum c_storage_class storage_class = declspecs->storage_class;
4838 int constp;
4839 int restrictp;
4840 int volatilep;
4841 int type_quals = TYPE_UNQUALIFIED;
4842 tree name = NULL_TREE;
4843 bool funcdef_flag = false;
4844 bool funcdef_syntax = false;
4845 bool size_varies = false;
4846 tree decl_attr = declspecs->decl_attr;
4847 int array_ptr_quals = TYPE_UNQUALIFIED;
4848 tree array_ptr_attrs = NULL_TREE;
4849 int array_parm_static = 0;
4850 bool array_parm_vla_unspec_p = false;
4851 tree returned_attrs = NULL_TREE;
4852 bool bitfield = width != NULL;
4853 tree element_type;
4854 struct c_arg_info *arg_info = 0;
4855 addr_space_t as1, as2, address_space;
4856 location_t loc = UNKNOWN_LOCATION;
4857 const char *errmsg;
4858 tree expr_dummy;
4859 bool expr_const_operands_dummy;
4860 enum c_declarator_kind first_non_attr_kind;
4862 if (TREE_CODE (type) == ERROR_MARK)
4863 return error_mark_node;
4864 if (expr == NULL)
4865 expr = &expr_dummy;
4866 if (expr_const_operands == NULL)
4867 expr_const_operands = &expr_const_operands_dummy;
4869 *expr = declspecs->expr;
4870 *expr_const_operands = declspecs->expr_const_operands;
4872 if (decl_context == FUNCDEF)
4873 funcdef_flag = true, decl_context = NORMAL;
4875 /* Look inside a declarator for the name being declared
4876 and get it as an IDENTIFIER_NODE, for an error message. */
4878 const struct c_declarator *decl = declarator;
4880 first_non_attr_kind = cdk_attrs;
4881 while (decl)
4882 switch (decl->kind)
4884 case cdk_array:
4885 loc = decl->id_loc;
4886 /* FALL THRU. */
4888 case cdk_function:
4889 case cdk_pointer:
4890 funcdef_syntax = (decl->kind == cdk_function);
4891 decl = decl->declarator;
4892 if (first_non_attr_kind == cdk_attrs)
4893 first_non_attr_kind = decl->kind;
4894 break;
4896 case cdk_attrs:
4897 decl = decl->declarator;
4898 break;
4900 case cdk_id:
4901 loc = decl->id_loc;
4902 if (decl->u.id)
4903 name = decl->u.id;
4904 if (first_non_attr_kind == cdk_attrs)
4905 first_non_attr_kind = decl->kind;
4906 decl = 0;
4907 break;
4909 default:
4910 gcc_unreachable ();
4912 if (name == 0)
4914 gcc_assert (decl_context == PARM
4915 || decl_context == TYPENAME
4916 || (decl_context == FIELD
4917 && declarator->kind == cdk_id));
4918 gcc_assert (!initialized);
4922 /* A function definition's declarator must have the form of
4923 a function declarator. */
4925 if (funcdef_flag && !funcdef_syntax)
4926 return 0;
4928 /* If this looks like a function definition, make it one,
4929 even if it occurs where parms are expected.
4930 Then store_parm_decls will reject it and not use it as a parm. */
4931 if (decl_context == NORMAL && !funcdef_flag && current_scope->parm_flag)
4932 decl_context = PARM;
4934 if (declspecs->deprecated_p && deprecated_state != DEPRECATED_SUPPRESS)
4935 warn_deprecated_use (declspecs->type, declspecs->decl_attr);
4937 if ((decl_context == NORMAL || decl_context == FIELD)
4938 && current_scope == file_scope
4939 && variably_modified_type_p (type, NULL_TREE))
4941 if (name)
4942 error_at (loc, "variably modified %qE at file scope", name);
4943 else
4944 error_at (loc, "variably modified field at file scope");
4945 type = integer_type_node;
4948 size_varies = C_TYPE_VARIABLE_SIZE (type) != 0;
4950 /* Diagnose defaulting to "int". */
4952 if (declspecs->default_int_p && !in_system_header)
4954 /* Issue a warning if this is an ISO C 99 program or if
4955 -Wreturn-type and this is a function, or if -Wimplicit;
4956 prefer the former warning since it is more explicit. */
4957 if ((warn_implicit_int || warn_return_type || flag_isoc99)
4958 && funcdef_flag)
4959 warn_about_return_type = 1;
4960 else
4962 if (name)
4963 pedwarn_c99 (loc, flag_isoc99 ? 0 : OPT_Wimplicit_int,
4964 "type defaults to %<int%> in declaration of %qE",
4965 name);
4966 else
4967 pedwarn_c99 (input_location, flag_isoc99 ? 0 : OPT_Wimplicit_int,
4968 "type defaults to %<int%> in type name");
4972 /* Adjust the type if a bit-field is being declared,
4973 -funsigned-bitfields applied and the type is not explicitly
4974 "signed". */
4975 if (bitfield && !flag_signed_bitfields && !declspecs->explicit_signed_p
4976 && TREE_CODE (type) == INTEGER_TYPE)
4977 type = unsigned_type_for (type);
4979 /* Figure out the type qualifiers for the declaration. There are
4980 two ways a declaration can become qualified. One is something
4981 like `const int i' where the `const' is explicit. Another is
4982 something like `typedef const int CI; CI i' where the type of the
4983 declaration contains the `const'. A third possibility is that
4984 there is a type qualifier on the element type of a typedefed
4985 array type, in which case we should extract that qualifier so
4986 that c_apply_type_quals_to_decl receives the full list of
4987 qualifiers to work with (C90 is not entirely clear about whether
4988 duplicate qualifiers should be diagnosed in this case, but it
4989 seems most appropriate to do so). */
4990 element_type = strip_array_types (type);
4991 constp = declspecs->const_p + TYPE_READONLY (element_type);
4992 restrictp = declspecs->restrict_p + TYPE_RESTRICT (element_type);
4993 volatilep = declspecs->volatile_p + TYPE_VOLATILE (element_type);
4994 as1 = declspecs->address_space;
4995 as2 = TYPE_ADDR_SPACE (element_type);
4996 address_space = ADDR_SPACE_GENERIC_P (as1)? as2 : as1;
4998 if (pedantic && !flag_isoc99)
5000 if (constp > 1)
5001 pedwarn (loc, OPT_pedantic, "duplicate %<const%>");
5002 if (restrictp > 1)
5003 pedwarn (loc, OPT_pedantic, "duplicate %<restrict%>");
5004 if (volatilep > 1)
5005 pedwarn (loc, OPT_pedantic, "duplicate %<volatile%>");
5008 if (!ADDR_SPACE_GENERIC_P (as1) && !ADDR_SPACE_GENERIC_P (as2) && as1 != as2)
5009 error_at (loc, "conflicting named address spaces (%s vs %s)",
5010 c_addr_space_name (as1), c_addr_space_name (as2));
5012 if ((TREE_CODE (type) == ARRAY_TYPE
5013 || first_non_attr_kind == cdk_array)
5014 && TYPE_QUALS (element_type))
5015 type = TYPE_MAIN_VARIANT (type);
5016 type_quals = ((constp ? TYPE_QUAL_CONST : 0)
5017 | (restrictp ? TYPE_QUAL_RESTRICT : 0)
5018 | (volatilep ? TYPE_QUAL_VOLATILE : 0)
5019 | ENCODE_QUAL_ADDR_SPACE (address_space));
5021 /* Warn about storage classes that are invalid for certain
5022 kinds of declarations (parameters, typenames, etc.). */
5024 if (funcdef_flag
5025 && (threadp
5026 || storage_class == csc_auto
5027 || storage_class == csc_register
5028 || storage_class == csc_typedef))
5030 if (storage_class == csc_auto)
5031 pedwarn (loc,
5032 (current_scope == file_scope) ? 0 : OPT_pedantic,
5033 "function definition declared %<auto%>");
5034 if (storage_class == csc_register)
5035 error_at (loc, "function definition declared %<register%>");
5036 if (storage_class == csc_typedef)
5037 error_at (loc, "function definition declared %<typedef%>");
5038 if (threadp)
5039 error_at (loc, "function definition declared %<__thread%>");
5040 threadp = false;
5041 if (storage_class == csc_auto
5042 || storage_class == csc_register
5043 || storage_class == csc_typedef)
5044 storage_class = csc_none;
5046 else if (decl_context != NORMAL && (storage_class != csc_none || threadp))
5048 if (decl_context == PARM && storage_class == csc_register)
5050 else
5052 switch (decl_context)
5054 case FIELD:
5055 if (name)
5056 error_at (loc, "storage class specified for structure "
5057 "field %qE", name);
5058 else
5059 error_at (loc, "storage class specified for structure field");
5060 break;
5061 case PARM:
5062 if (name)
5063 error_at (loc, "storage class specified for parameter %qE",
5064 name);
5065 else
5066 error_at (loc, "storage class specified for unnamed parameter");
5067 break;
5068 default:
5069 error_at (loc, "storage class specified for typename");
5070 break;
5072 storage_class = csc_none;
5073 threadp = false;
5076 else if (storage_class == csc_extern
5077 && initialized
5078 && !funcdef_flag)
5080 /* 'extern' with initialization is invalid if not at file scope. */
5081 if (current_scope == file_scope)
5083 /* It is fine to have 'extern const' when compiling at C
5084 and C++ intersection. */
5085 if (!(warn_cxx_compat && constp))
5086 warning_at (loc, 0, "%qE initialized and declared %<extern%>",
5087 name);
5089 else
5090 error_at (loc, "%qE has both %<extern%> and initializer", name);
5092 else if (current_scope == file_scope)
5094 if (storage_class == csc_auto)
5095 error_at (loc, "file-scope declaration of %qE specifies %<auto%>",
5096 name);
5097 if (pedantic && storage_class == csc_register)
5098 pedwarn (input_location, OPT_pedantic,
5099 "file-scope declaration of %qE specifies %<register%>", name);
5101 else
5103 if (storage_class == csc_extern && funcdef_flag)
5104 error_at (loc, "nested function %qE declared %<extern%>", name);
5105 else if (threadp && storage_class == csc_none)
5107 error_at (loc, "function-scope %qE implicitly auto and declared "
5108 "%<__thread%>",
5109 name);
5110 threadp = false;
5114 /* Now figure out the structure of the declarator proper.
5115 Descend through it, creating more complex types, until we reach
5116 the declared identifier (or NULL_TREE, in an absolute declarator).
5117 At each stage we maintain an unqualified version of the type
5118 together with any qualifiers that should be applied to it with
5119 c_build_qualified_type; this way, array types including
5120 multidimensional array types are first built up in unqualified
5121 form and then the qualified form is created with
5122 TYPE_MAIN_VARIANT pointing to the unqualified form. */
5124 while (declarator && declarator->kind != cdk_id)
5126 if (type == error_mark_node)
5128 declarator = declarator->declarator;
5129 continue;
5132 /* Each level of DECLARATOR is either a cdk_array (for ...[..]),
5133 a cdk_pointer (for *...),
5134 a cdk_function (for ...(...)),
5135 a cdk_attrs (for nested attributes),
5136 or a cdk_id (for the name being declared
5137 or the place in an absolute declarator
5138 where the name was omitted).
5139 For the last case, we have just exited the loop.
5141 At this point, TYPE is the type of elements of an array,
5142 or for a function to return, or for a pointer to point to.
5143 After this sequence of ifs, TYPE is the type of the
5144 array or function or pointer, and DECLARATOR has had its
5145 outermost layer removed. */
5147 if (array_ptr_quals != TYPE_UNQUALIFIED
5148 || array_ptr_attrs != NULL_TREE
5149 || array_parm_static)
5151 /* Only the innermost declarator (making a parameter be of
5152 array type which is converted to pointer type)
5153 may have static or type qualifiers. */
5154 error_at (loc, "static or type qualifiers in non-parameter array declarator");
5155 array_ptr_quals = TYPE_UNQUALIFIED;
5156 array_ptr_attrs = NULL_TREE;
5157 array_parm_static = 0;
5160 switch (declarator->kind)
5162 case cdk_attrs:
5164 /* A declarator with embedded attributes. */
5165 tree attrs = declarator->u.attrs;
5166 const struct c_declarator *inner_decl;
5167 int attr_flags = 0;
5168 declarator = declarator->declarator;
5169 inner_decl = declarator;
5170 while (inner_decl->kind == cdk_attrs)
5171 inner_decl = inner_decl->declarator;
5172 if (inner_decl->kind == cdk_id)
5173 attr_flags |= (int) ATTR_FLAG_DECL_NEXT;
5174 else if (inner_decl->kind == cdk_function)
5175 attr_flags |= (int) ATTR_FLAG_FUNCTION_NEXT;
5176 else if (inner_decl->kind == cdk_array)
5177 attr_flags |= (int) ATTR_FLAG_ARRAY_NEXT;
5178 returned_attrs = decl_attributes (&type,
5179 chainon (returned_attrs, attrs),
5180 attr_flags);
5181 break;
5183 case cdk_array:
5185 tree itype = NULL_TREE;
5186 tree size = declarator->u.array.dimen;
5187 /* The index is a signed object `sizetype' bits wide. */
5188 tree index_type = c_common_signed_type (sizetype);
5190 array_ptr_quals = declarator->u.array.quals;
5191 array_ptr_attrs = declarator->u.array.attrs;
5192 array_parm_static = declarator->u.array.static_p;
5193 array_parm_vla_unspec_p = declarator->u.array.vla_unspec_p;
5195 declarator = declarator->declarator;
5197 /* Check for some types that there cannot be arrays of. */
5199 if (VOID_TYPE_P (type))
5201 if (name)
5202 error_at (loc, "declaration of %qE as array of voids", name);
5203 else
5204 error_at (loc, "declaration of type name as array of voids");
5205 type = error_mark_node;
5208 if (TREE_CODE (type) == FUNCTION_TYPE)
5210 if (name)
5211 error_at (loc, "declaration of %qE as array of functions",
5212 name);
5213 else
5214 error_at (loc, "declaration of type name as array of "
5215 "functions");
5216 type = error_mark_node;
5219 if (pedantic && !in_system_header && flexible_array_type_p (type))
5220 pedwarn (loc, OPT_pedantic,
5221 "invalid use of structure with flexible array member");
5223 if (size == error_mark_node)
5224 type = error_mark_node;
5226 if (type == error_mark_node)
5227 continue;
5229 /* If size was specified, set ITYPE to a range-type for
5230 that size. Otherwise, ITYPE remains null. finish_decl
5231 may figure it out from an initial value. */
5233 if (size)
5235 bool size_maybe_const = true;
5236 bool size_int_const = (TREE_CODE (size) == INTEGER_CST
5237 && !TREE_OVERFLOW (size));
5238 bool this_size_varies = false;
5240 /* Strip NON_LVALUE_EXPRs since we aren't using as an
5241 lvalue. */
5242 STRIP_TYPE_NOPS (size);
5244 if (!INTEGRAL_TYPE_P (TREE_TYPE (size)))
5246 if (name)
5247 error_at (loc, "size of array %qE has non-integer type",
5248 name);
5249 else
5250 error_at (loc,
5251 "size of unnamed array has non-integer type");
5252 size = integer_one_node;
5255 size = c_fully_fold (size, false, &size_maybe_const);
5257 if (pedantic && size_maybe_const && integer_zerop (size))
5259 if (name)
5260 pedwarn (loc, OPT_pedantic,
5261 "ISO C forbids zero-size array %qE", name);
5262 else
5263 pedwarn (loc, OPT_pedantic,
5264 "ISO C forbids zero-size array");
5267 if (TREE_CODE (size) == INTEGER_CST && size_maybe_const)
5269 constant_expression_warning (size);
5270 if (tree_int_cst_sgn (size) < 0)
5272 if (name)
5273 error_at (loc, "size of array %qE is negative", name);
5274 else
5275 error_at (loc, "size of unnamed array is negative");
5276 size = integer_one_node;
5278 /* Handle a size folded to an integer constant but
5279 not an integer constant expression. */
5280 if (!size_int_const)
5282 /* If this is a file scope declaration of an
5283 ordinary identifier, this is invalid code;
5284 diagnosing it here and not subsequently
5285 treating the type as variable-length avoids
5286 more confusing diagnostics later. */
5287 if ((decl_context == NORMAL || decl_context == FIELD)
5288 && current_scope == file_scope)
5289 pedwarn (input_location, 0,
5290 "variably modified %qE at file scope",
5291 name);
5292 else
5293 this_size_varies = size_varies = true;
5294 warn_variable_length_array (name, size);
5297 else if ((decl_context == NORMAL || decl_context == FIELD)
5298 && current_scope == file_scope)
5300 error_at (loc, "variably modified %qE at file scope", name);
5301 size = integer_one_node;
5303 else
5305 /* Make sure the array size remains visibly
5306 nonconstant even if it is (eg) a const variable
5307 with known value. */
5308 this_size_varies = size_varies = true;
5309 warn_variable_length_array (name, size);
5312 if (integer_zerop (size) && !this_size_varies)
5314 /* A zero-length array cannot be represented with
5315 an unsigned index type, which is what we'll
5316 get with build_index_type. Create an
5317 open-ended range instead. */
5318 itype = build_range_type (sizetype, size, NULL_TREE);
5320 else
5322 /* Arrange for the SAVE_EXPR on the inside of the
5323 MINUS_EXPR, which allows the -1 to get folded
5324 with the +1 that happens when building TYPE_SIZE. */
5325 if (size_varies)
5326 size = save_expr (size);
5327 if (this_size_varies && TREE_CODE (size) == INTEGER_CST)
5328 size = build2 (COMPOUND_EXPR, TREE_TYPE (size),
5329 integer_zero_node, size);
5331 /* Compute the maximum valid index, that is, size
5332 - 1. Do the calculation in index_type, so that
5333 if it is a variable the computations will be
5334 done in the proper mode. */
5335 itype = fold_build2_loc (loc, MINUS_EXPR, index_type,
5336 convert (index_type, size),
5337 convert (index_type,
5338 size_one_node));
5340 /* The above overflows when size does not fit
5341 in index_type.
5342 ??? While a size of INT_MAX+1 technically shouldn't
5343 cause an overflow (because we subtract 1), handling
5344 this case seems like an unnecessary complication. */
5345 if (TREE_CODE (size) == INTEGER_CST
5346 && !int_fits_type_p (size, index_type))
5348 if (name)
5349 error_at (loc, "size of array %qE is too large",
5350 name);
5351 else
5352 error_at (loc, "size of unnamed array is too large");
5353 type = error_mark_node;
5354 continue;
5357 itype = build_index_type (itype);
5359 if (this_size_varies)
5361 if (*expr)
5362 *expr = build2 (COMPOUND_EXPR, TREE_TYPE (size),
5363 *expr, size);
5364 else
5365 *expr = size;
5366 *expr_const_operands &= size_maybe_const;
5369 else if (decl_context == FIELD)
5371 bool flexible_array_member = false;
5372 if (array_parm_vla_unspec_p)
5373 /* Field names can in fact have function prototype
5374 scope so [*] is disallowed here through making
5375 the field variably modified, not through being
5376 something other than a declaration with function
5377 prototype scope. */
5378 size_varies = true;
5379 else
5381 const struct c_declarator *t = declarator;
5382 while (t->kind == cdk_attrs)
5383 t = t->declarator;
5384 flexible_array_member = (t->kind == cdk_id);
5386 if (flexible_array_member
5387 && pedantic && !flag_isoc99 && !in_system_header)
5388 pedwarn (loc, OPT_pedantic,
5389 "ISO C90 does not support flexible array members");
5391 /* ISO C99 Flexible array members are effectively
5392 identical to GCC's zero-length array extension. */
5393 if (flexible_array_member || array_parm_vla_unspec_p)
5394 itype = build_range_type (sizetype, size_zero_node,
5395 NULL_TREE);
5397 else if (decl_context == PARM)
5399 if (array_parm_vla_unspec_p)
5401 itype = build_range_type (sizetype, size_zero_node, NULL_TREE);
5402 size_varies = true;
5405 else if (decl_context == TYPENAME)
5407 if (array_parm_vla_unspec_p)
5409 /* C99 6.7.5.2p4 */
5410 warning (0, "%<[*]%> not in a declaration");
5411 /* We use this to avoid messing up with incomplete
5412 array types of the same type, that would
5413 otherwise be modified below. */
5414 itype = build_range_type (sizetype, size_zero_node,
5415 NULL_TREE);
5416 size_varies = true;
5420 /* Complain about arrays of incomplete types. */
5421 if (!COMPLETE_TYPE_P (type))
5423 error_at (loc, "array type has incomplete element type");
5424 type = error_mark_node;
5426 else
5427 /* When itype is NULL, a shared incomplete array type is
5428 returned for all array of a given type. Elsewhere we
5429 make sure we don't complete that type before copying
5430 it, but here we want to make sure we don't ever
5431 modify the shared type, so we gcc_assert (itype)
5432 below. */
5434 addr_space_t as = DECODE_QUAL_ADDR_SPACE (type_quals);
5435 if (!ADDR_SPACE_GENERIC_P (as) && as != TYPE_ADDR_SPACE (type))
5436 type = build_qualified_type (type,
5437 ENCODE_QUAL_ADDR_SPACE (as));
5439 type = build_array_type (type, itype);
5442 if (type != error_mark_node)
5444 if (size_varies)
5446 /* It is ok to modify type here even if itype is
5447 NULL: if size_varies, we're in a
5448 multi-dimensional array and the inner type has
5449 variable size, so the enclosing shared array type
5450 must too. */
5451 if (size && TREE_CODE (size) == INTEGER_CST)
5452 type
5453 = build_distinct_type_copy (TYPE_MAIN_VARIANT (type));
5454 C_TYPE_VARIABLE_SIZE (type) = 1;
5457 /* The GCC extension for zero-length arrays differs from
5458 ISO flexible array members in that sizeof yields
5459 zero. */
5460 if (size && integer_zerop (size))
5462 gcc_assert (itype);
5463 type = build_distinct_type_copy (TYPE_MAIN_VARIANT (type));
5464 TYPE_SIZE (type) = bitsize_zero_node;
5465 TYPE_SIZE_UNIT (type) = size_zero_node;
5466 SET_TYPE_STRUCTURAL_EQUALITY (type);
5468 if (array_parm_vla_unspec_p)
5470 gcc_assert (itype);
5471 /* The type is complete. C99 6.7.5.2p4 */
5472 type = build_distinct_type_copy (TYPE_MAIN_VARIANT (type));
5473 TYPE_SIZE (type) = bitsize_zero_node;
5474 TYPE_SIZE_UNIT (type) = size_zero_node;
5475 SET_TYPE_STRUCTURAL_EQUALITY (type);
5479 if (decl_context != PARM
5480 && (array_ptr_quals != TYPE_UNQUALIFIED
5481 || array_ptr_attrs != NULL_TREE
5482 || array_parm_static))
5484 error_at (loc, "static or type qualifiers in non-parameter array declarator");
5485 array_ptr_quals = TYPE_UNQUALIFIED;
5486 array_ptr_attrs = NULL_TREE;
5487 array_parm_static = 0;
5489 break;
5491 case cdk_function:
5493 /* Say it's a definition only for the declarator closest
5494 to the identifier, apart possibly from some
5495 attributes. */
5496 bool really_funcdef = false;
5497 tree arg_types;
5498 if (funcdef_flag)
5500 const struct c_declarator *t = declarator->declarator;
5501 while (t->kind == cdk_attrs)
5502 t = t->declarator;
5503 really_funcdef = (t->kind == cdk_id);
5506 /* Declaring a function type. Make sure we have a valid
5507 type for the function to return. */
5508 if (type == error_mark_node)
5509 continue;
5511 size_varies = false;
5513 /* Warn about some types functions can't return. */
5514 if (TREE_CODE (type) == FUNCTION_TYPE)
5516 if (name)
5517 error_at (loc, "%qE declared as function returning a "
5518 "function", name);
5519 else
5520 error_at (loc, "type name declared as function "
5521 "returning a function");
5522 type = integer_type_node;
5524 if (TREE_CODE (type) == ARRAY_TYPE)
5526 if (name)
5527 error_at (loc, "%qE declared as function returning an array",
5528 name);
5529 else
5530 error_at (loc, "type name declared as function returning "
5531 "an array");
5532 type = integer_type_node;
5534 errmsg = targetm.invalid_return_type (type);
5535 if (errmsg)
5537 error (errmsg);
5538 type = integer_type_node;
5541 /* Construct the function type and go to the next
5542 inner layer of declarator. */
5543 arg_info = declarator->u.arg_info;
5544 arg_types = grokparms (arg_info, really_funcdef);
5546 /* Type qualifiers before the return type of the function
5547 qualify the return type, not the function type. */
5548 if (type_quals)
5550 /* Type qualifiers on a function return type are
5551 normally permitted by the standard but have no
5552 effect, so give a warning at -Wreturn-type.
5553 Qualifiers on a void return type are banned on
5554 function definitions in ISO C; GCC used to used
5555 them for noreturn functions. */
5556 if (VOID_TYPE_P (type) && really_funcdef)
5557 pedwarn (loc, 0,
5558 "function definition has qualified void return type");
5559 else
5560 warning_at (loc, OPT_Wignored_qualifiers,
5561 "type qualifiers ignored on function return type");
5563 type = c_build_qualified_type (type, type_quals);
5565 type_quals = TYPE_UNQUALIFIED;
5567 type = build_function_type (type, arg_types);
5568 declarator = declarator->declarator;
5570 /* Set the TYPE_CONTEXTs for each tagged type which is local to
5571 the formal parameter list of this FUNCTION_TYPE to point to
5572 the FUNCTION_TYPE node itself. */
5574 c_arg_tag *tag;
5575 unsigned ix;
5577 FOR_EACH_VEC_ELT_REVERSE (c_arg_tag, arg_info->tags, ix, tag)
5578 TYPE_CONTEXT (tag->type) = type;
5580 break;
5582 case cdk_pointer:
5584 /* Merge any constancy or volatility into the target type
5585 for the pointer. */
5587 if (pedantic && TREE_CODE (type) == FUNCTION_TYPE
5588 && type_quals)
5589 pedwarn (loc, OPT_pedantic,
5590 "ISO C forbids qualified function types");
5591 if (type_quals)
5592 type = c_build_qualified_type (type, type_quals);
5593 size_varies = false;
5595 /* When the pointed-to type involves components of variable size,
5596 care must be taken to ensure that the size evaluation code is
5597 emitted early enough to dominate all the possible later uses
5598 and late enough for the variables on which it depends to have
5599 been assigned.
5601 This is expected to happen automatically when the pointed-to
5602 type has a name/declaration of it's own, but special attention
5603 is required if the type is anonymous.
5605 We handle the NORMAL and FIELD contexts here by attaching an
5606 artificial TYPE_DECL to such pointed-to type. This forces the
5607 sizes evaluation at a safe point and ensures it is not deferred
5608 until e.g. within a deeper conditional context.
5610 We expect nothing to be needed here for PARM or TYPENAME.
5611 Pushing a TYPE_DECL at this point for TYPENAME would actually
5612 be incorrect, as we might be in the middle of an expression
5613 with side effects on the pointed-to type size "arguments" prior
5614 to the pointer declaration point and the fake TYPE_DECL in the
5615 enclosing context would force the size evaluation prior to the
5616 side effects. */
5618 if (!TYPE_NAME (type)
5619 && (decl_context == NORMAL || decl_context == FIELD)
5620 && variably_modified_type_p (type, NULL_TREE))
5622 tree decl = build_decl (loc, TYPE_DECL, NULL_TREE, type);
5623 DECL_ARTIFICIAL (decl) = 1;
5624 pushdecl (decl);
5625 finish_decl (decl, loc, NULL_TREE, NULL_TREE, NULL_TREE);
5626 TYPE_NAME (type) = decl;
5629 type = build_pointer_type (type);
5631 /* Process type qualifiers (such as const or volatile)
5632 that were given inside the `*'. */
5633 type_quals = declarator->u.pointer_quals;
5635 declarator = declarator->declarator;
5636 break;
5638 default:
5639 gcc_unreachable ();
5642 *decl_attrs = chainon (returned_attrs, *decl_attrs);
5644 /* Now TYPE has the actual type, apart from any qualifiers in
5645 TYPE_QUALS. */
5647 /* Warn about address space used for things other than static memory or
5648 pointers. */
5649 address_space = DECODE_QUAL_ADDR_SPACE (type_quals);
5650 if (!ADDR_SPACE_GENERIC_P (address_space))
5652 if (decl_context == NORMAL)
5654 switch (storage_class)
5656 case csc_auto:
5657 error ("%qs combined with %<auto%> qualifier for %qE",
5658 c_addr_space_name (address_space), name);
5659 break;
5660 case csc_register:
5661 error ("%qs combined with %<register%> qualifier for %qE",
5662 c_addr_space_name (address_space), name);
5663 break;
5664 case csc_none:
5665 if (current_function_scope)
5667 error ("%qs specified for auto variable %qE",
5668 c_addr_space_name (address_space), name);
5669 break;
5671 break;
5672 case csc_static:
5673 case csc_extern:
5674 case csc_typedef:
5675 break;
5676 default:
5677 gcc_unreachable ();
5680 else if (decl_context == PARM && TREE_CODE (type) != ARRAY_TYPE)
5682 if (name)
5683 error ("%qs specified for parameter %qE",
5684 c_addr_space_name (address_space), name);
5685 else
5686 error ("%qs specified for unnamed parameter",
5687 c_addr_space_name (address_space));
5689 else if (decl_context == FIELD)
5691 if (name)
5692 error ("%qs specified for structure field %qE",
5693 c_addr_space_name (address_space), name);
5694 else
5695 error ("%qs specified for structure field",
5696 c_addr_space_name (address_space));
5700 /* Check the type and width of a bit-field. */
5701 if (bitfield)
5702 check_bitfield_type_and_width (&type, width, name);
5704 /* Did array size calculations overflow? */
5706 if (TREE_CODE (type) == ARRAY_TYPE
5707 && COMPLETE_TYPE_P (type)
5708 && TREE_CODE (TYPE_SIZE_UNIT (type)) == INTEGER_CST
5709 && TREE_OVERFLOW (TYPE_SIZE_UNIT (type)))
5711 if (name)
5712 error_at (loc, "size of array %qE is too large", name);
5713 else
5714 error_at (loc, "size of unnamed array is too large");
5715 /* If we proceed with the array type as it is, we'll eventually
5716 crash in tree_low_cst(). */
5717 type = error_mark_node;
5720 /* If this is declaring a typedef name, return a TYPE_DECL. */
5722 if (storage_class == csc_typedef)
5724 tree decl;
5725 if (pedantic && TREE_CODE (type) == FUNCTION_TYPE
5726 && type_quals)
5727 pedwarn (loc, OPT_pedantic,
5728 "ISO C forbids qualified function types");
5729 if (type_quals)
5730 type = c_build_qualified_type (type, type_quals);
5731 decl = build_decl (declarator->id_loc,
5732 TYPE_DECL, declarator->u.id, type);
5733 if (declspecs->explicit_signed_p)
5734 C_TYPEDEF_EXPLICITLY_SIGNED (decl) = 1;
5735 if (declspecs->inline_p)
5736 pedwarn (loc, 0,"typedef %q+D declared %<inline%>", decl);
5738 if (warn_cxx_compat && declarator->u.id != NULL_TREE)
5740 struct c_binding *b = I_TAG_BINDING (declarator->u.id);
5742 if (b != NULL
5743 && b->decl != NULL_TREE
5744 && (B_IN_CURRENT_SCOPE (b)
5745 || (current_scope == file_scope && B_IN_EXTERNAL_SCOPE (b)))
5746 && TYPE_MAIN_VARIANT (b->decl) != TYPE_MAIN_VARIANT (type))
5748 warning_at (declarator->id_loc, OPT_Wc___compat,
5749 ("using %qD as both a typedef and a tag is "
5750 "invalid in C++"),
5751 decl);
5752 if (b->locus != UNKNOWN_LOCATION)
5753 inform (b->locus, "originally defined here");
5757 return decl;
5760 /* If this is a type name (such as, in a cast or sizeof),
5761 compute the type and return it now. */
5763 if (decl_context == TYPENAME)
5765 /* Note that the grammar rejects storage classes in typenames
5766 and fields. */
5767 gcc_assert (storage_class == csc_none && !threadp
5768 && !declspecs->inline_p);
5769 if (pedantic && TREE_CODE (type) == FUNCTION_TYPE
5770 && type_quals)
5771 pedwarn (loc, OPT_pedantic,
5772 "ISO C forbids const or volatile function types");
5773 if (type_quals)
5774 type = c_build_qualified_type (type, type_quals);
5775 return type;
5778 if (pedantic && decl_context == FIELD
5779 && variably_modified_type_p (type, NULL_TREE))
5781 /* C99 6.7.2.1p8 */
5782 pedwarn (loc, OPT_pedantic, "a member of a structure or union cannot "
5783 "have a variably modified type");
5786 /* Aside from typedefs and type names (handle above),
5787 `void' at top level (not within pointer)
5788 is allowed only in public variables.
5789 We don't complain about parms either, but that is because
5790 a better error message can be made later. */
5792 if (VOID_TYPE_P (type) && decl_context != PARM
5793 && !((decl_context != FIELD && TREE_CODE (type) != FUNCTION_TYPE)
5794 && (storage_class == csc_extern
5795 || (current_scope == file_scope
5796 && !(storage_class == csc_static
5797 || storage_class == csc_register)))))
5799 error_at (loc, "variable or field %qE declared void", name);
5800 type = integer_type_node;
5803 /* Now create the decl, which may be a VAR_DECL, a PARM_DECL
5804 or a FUNCTION_DECL, depending on DECL_CONTEXT and TYPE. */
5807 tree decl;
5809 if (decl_context == PARM)
5811 tree promoted_type;
5813 /* A parameter declared as an array of T is really a pointer to T.
5814 One declared as a function is really a pointer to a function. */
5816 if (TREE_CODE (type) == ARRAY_TYPE)
5818 /* Transfer const-ness of array into that of type pointed to. */
5819 type = TREE_TYPE (type);
5820 if (type_quals)
5821 type = c_build_qualified_type (type, type_quals);
5822 type = build_pointer_type (type);
5823 type_quals = array_ptr_quals;
5824 if (type_quals)
5825 type = c_build_qualified_type (type, type_quals);
5827 /* We don't yet implement attributes in this context. */
5828 if (array_ptr_attrs != NULL_TREE)
5829 warning_at (loc, OPT_Wattributes,
5830 "attributes in parameter array declarator ignored");
5832 size_varies = false;
5834 else if (TREE_CODE (type) == FUNCTION_TYPE)
5836 if (type_quals)
5837 pedwarn (loc, OPT_pedantic,
5838 "ISO C forbids qualified function types");
5839 if (type_quals)
5840 type = c_build_qualified_type (type, type_quals);
5841 type = build_pointer_type (type);
5842 type_quals = TYPE_UNQUALIFIED;
5844 else if (type_quals)
5845 type = c_build_qualified_type (type, type_quals);
5847 decl = build_decl (declarator->id_loc,
5848 PARM_DECL, declarator->u.id, type);
5849 if (size_varies)
5850 C_DECL_VARIABLE_SIZE (decl) = 1;
5852 /* Compute the type actually passed in the parmlist,
5853 for the case where there is no prototype.
5854 (For example, shorts and chars are passed as ints.)
5855 When there is a prototype, this is overridden later. */
5857 if (type == error_mark_node)
5858 promoted_type = type;
5859 else
5860 promoted_type = c_type_promotes_to (type);
5862 DECL_ARG_TYPE (decl) = promoted_type;
5863 if (declspecs->inline_p)
5864 pedwarn (loc, 0, "parameter %q+D declared %<inline%>", decl);
5866 else if (decl_context == FIELD)
5868 /* Note that the grammar rejects storage classes in typenames
5869 and fields. */
5870 gcc_assert (storage_class == csc_none && !threadp
5871 && !declspecs->inline_p);
5873 /* Structure field. It may not be a function. */
5875 if (TREE_CODE (type) == FUNCTION_TYPE)
5877 error_at (loc, "field %qE declared as a function", name);
5878 type = build_pointer_type (type);
5880 else if (TREE_CODE (type) != ERROR_MARK
5881 && !COMPLETE_OR_UNBOUND_ARRAY_TYPE_P (type))
5883 if (name)
5884 error_at (loc, "field %qE has incomplete type", name);
5885 else
5886 error_at (loc, "unnamed field has incomplete type");
5887 type = error_mark_node;
5889 type = c_build_qualified_type (type, type_quals);
5890 decl = build_decl (declarator->id_loc,
5891 FIELD_DECL, declarator->u.id, type);
5892 DECL_NONADDRESSABLE_P (decl) = bitfield;
5893 if (bitfield && !declarator->u.id)
5894 TREE_NO_WARNING (decl) = 1;
5896 if (size_varies)
5897 C_DECL_VARIABLE_SIZE (decl) = 1;
5899 else if (TREE_CODE (type) == FUNCTION_TYPE)
5901 if (storage_class == csc_register || threadp)
5903 error_at (loc, "invalid storage class for function %qE", name);
5905 else if (current_scope != file_scope)
5907 /* Function declaration not at file scope. Storage
5908 classes other than `extern' are not allowed, C99
5909 6.7.1p5, and `extern' makes no difference. However,
5910 GCC allows 'auto', perhaps with 'inline', to support
5911 nested functions. */
5912 if (storage_class == csc_auto)
5913 pedwarn (loc, OPT_pedantic,
5914 "invalid storage class for function %qE", name);
5915 else if (storage_class == csc_static)
5917 error_at (loc, "invalid storage class for function %qE", name);
5918 if (funcdef_flag)
5919 storage_class = declspecs->storage_class = csc_none;
5920 else
5921 return 0;
5925 decl = build_decl (declarator->id_loc,
5926 FUNCTION_DECL, declarator->u.id, type);
5927 decl = build_decl_attribute_variant (decl, decl_attr);
5929 if (pedantic && type_quals && !DECL_IN_SYSTEM_HEADER (decl))
5930 pedwarn (loc, OPT_pedantic,
5931 "ISO C forbids qualified function types");
5933 /* Every function declaration is an external reference
5934 (DECL_EXTERNAL) except for those which are not at file
5935 scope and are explicitly declared "auto". This is
5936 forbidden by standard C (C99 6.7.1p5) and is interpreted by
5937 GCC to signify a forward declaration of a nested function. */
5938 if (storage_class == csc_auto && current_scope != file_scope)
5939 DECL_EXTERNAL (decl) = 0;
5940 /* In C99, a function which is declared 'inline' with 'extern'
5941 is not an external reference (which is confusing). It
5942 means that the later definition of the function must be output
5943 in this file, C99 6.7.4p6. In GNU C89, a function declared
5944 'extern inline' is an external reference. */
5945 else if (declspecs->inline_p && storage_class != csc_static)
5946 DECL_EXTERNAL (decl) = ((storage_class == csc_extern)
5947 == flag_gnu89_inline);
5948 else
5949 DECL_EXTERNAL (decl) = !initialized;
5951 /* Record absence of global scope for `static' or `auto'. */
5952 TREE_PUBLIC (decl)
5953 = !(storage_class == csc_static || storage_class == csc_auto);
5955 /* For a function definition, record the argument information
5956 block where store_parm_decls will look for it. */
5957 if (funcdef_flag)
5958 current_function_arg_info = arg_info;
5960 if (declspecs->default_int_p)
5961 C_FUNCTION_IMPLICIT_INT (decl) = 1;
5963 /* Record presence of `inline', if it is reasonable. */
5964 if (flag_hosted && MAIN_NAME_P (declarator->u.id))
5966 if (declspecs->inline_p)
5967 pedwarn (loc, 0, "cannot inline function %<main%>");
5969 else if (declspecs->inline_p)
5970 /* Record that the function is declared `inline'. */
5971 DECL_DECLARED_INLINE_P (decl) = 1;
5973 else
5975 /* It's a variable. */
5976 /* An uninitialized decl with `extern' is a reference. */
5977 int extern_ref = !initialized && storage_class == csc_extern;
5979 type = c_build_qualified_type (type, type_quals);
5981 /* C99 6.2.2p7: It is invalid (compile-time undefined
5982 behavior) to create an 'extern' declaration for a
5983 variable if there is a global declaration that is
5984 'static' and the global declaration is not visible.
5985 (If the static declaration _is_ currently visible,
5986 the 'extern' declaration is taken to refer to that decl.) */
5987 if (extern_ref && current_scope != file_scope)
5989 tree global_decl = identifier_global_value (declarator->u.id);
5990 tree visible_decl = lookup_name (declarator->u.id);
5992 if (global_decl
5993 && global_decl != visible_decl
5994 && TREE_CODE (global_decl) == VAR_DECL
5995 && !TREE_PUBLIC (global_decl))
5996 error_at (loc, "variable previously declared %<static%> "
5997 "redeclared %<extern%>");
6000 decl = build_decl (declarator->id_loc,
6001 VAR_DECL, declarator->u.id, type);
6002 if (size_varies)
6003 C_DECL_VARIABLE_SIZE (decl) = 1;
6005 if (declspecs->inline_p)
6006 pedwarn (loc, 0, "variable %q+D declared %<inline%>", decl);
6008 /* At file scope, an initialized extern declaration may follow
6009 a static declaration. In that case, DECL_EXTERNAL will be
6010 reset later in start_decl. */
6011 DECL_EXTERNAL (decl) = (storage_class == csc_extern);
6013 /* At file scope, the presence of a `static' or `register' storage
6014 class specifier, or the absence of all storage class specifiers
6015 makes this declaration a definition (perhaps tentative). Also,
6016 the absence of `static' makes it public. */
6017 if (current_scope == file_scope)
6019 TREE_PUBLIC (decl) = storage_class != csc_static;
6020 TREE_STATIC (decl) = !extern_ref;
6022 /* Not at file scope, only `static' makes a static definition. */
6023 else
6025 TREE_STATIC (decl) = (storage_class == csc_static);
6026 TREE_PUBLIC (decl) = extern_ref;
6029 if (threadp)
6030 DECL_TLS_MODEL (decl) = decl_default_tls_model (decl);
6033 if ((storage_class == csc_extern
6034 || (storage_class == csc_none
6035 && TREE_CODE (type) == FUNCTION_TYPE
6036 && !funcdef_flag))
6037 && variably_modified_type_p (type, NULL_TREE))
6039 /* C99 6.7.5.2p2 */
6040 if (TREE_CODE (type) == FUNCTION_TYPE)
6041 error_at (loc, "non-nested function with variably modified type");
6042 else
6043 error_at (loc, "object with variably modified type must have "
6044 "no linkage");
6047 /* Record `register' declaration for warnings on &
6048 and in case doing stupid register allocation. */
6050 if (storage_class == csc_register)
6052 C_DECL_REGISTER (decl) = 1;
6053 DECL_REGISTER (decl) = 1;
6056 /* Record constancy and volatility. */
6057 c_apply_type_quals_to_decl (type_quals, decl);
6059 /* If a type has volatile components, it should be stored in memory.
6060 Otherwise, the fact that those components are volatile
6061 will be ignored, and would even crash the compiler.
6062 Of course, this only makes sense on VAR,PARM, and RESULT decl's. */
6063 if (C_TYPE_FIELDS_VOLATILE (TREE_TYPE (decl))
6064 && (TREE_CODE (decl) == VAR_DECL || TREE_CODE (decl) == PARM_DECL
6065 || TREE_CODE (decl) == RESULT_DECL))
6067 /* It is not an error for a structure with volatile fields to
6068 be declared register, but reset DECL_REGISTER since it
6069 cannot actually go in a register. */
6070 int was_reg = C_DECL_REGISTER (decl);
6071 C_DECL_REGISTER (decl) = 0;
6072 DECL_REGISTER (decl) = 0;
6073 c_mark_addressable (decl);
6074 C_DECL_REGISTER (decl) = was_reg;
6077 /* This is the earliest point at which we might know the assembler
6078 name of a variable. Thus, if it's known before this, die horribly. */
6079 gcc_assert (!DECL_ASSEMBLER_NAME_SET_P (decl));
6081 if (warn_cxx_compat
6082 && TREE_CODE (decl) == VAR_DECL
6083 && TREE_PUBLIC (decl)
6084 && TREE_STATIC (decl)
6085 && (TREE_CODE (TREE_TYPE (decl)) == RECORD_TYPE
6086 || TREE_CODE (TREE_TYPE (decl)) == UNION_TYPE
6087 || TREE_CODE (TREE_TYPE (decl)) == ENUMERAL_TYPE)
6088 && TYPE_NAME (TREE_TYPE (decl)) == NULL_TREE)
6089 warning_at (DECL_SOURCE_LOCATION (decl), OPT_Wc___compat,
6090 ("non-local variable %qD with anonymous type is "
6091 "questionable in C++"),
6092 decl);
6094 return decl;
6098 /* Decode the parameter-list info for a function type or function definition.
6099 The argument is the value returned by `get_parm_info' (or made in c-parse.c
6100 if there is an identifier list instead of a parameter decl list).
6101 These two functions are separate because when a function returns
6102 or receives functions then each is called multiple times but the order
6103 of calls is different. The last call to `grokparms' is always the one
6104 that contains the formal parameter names of a function definition.
6106 Return a list of arg types to use in the FUNCTION_TYPE for this function.
6108 FUNCDEF_FLAG is true for a function definition, false for
6109 a mere declaration. A nonempty identifier-list gets an error message
6110 when FUNCDEF_FLAG is false. */
6112 static tree
6113 grokparms (struct c_arg_info *arg_info, bool funcdef_flag)
6115 tree arg_types = arg_info->types;
6117 if (funcdef_flag && arg_info->had_vla_unspec)
6119 /* A function definition isn't function prototype scope C99 6.2.1p4. */
6120 /* C99 6.7.5.2p4 */
6121 error ("%<[*]%> not allowed in other than function prototype scope");
6124 if (arg_types == 0 && !funcdef_flag && !in_system_header)
6125 warning (OPT_Wstrict_prototypes,
6126 "function declaration isn%'t a prototype");
6128 if (arg_types == error_mark_node)
6129 return 0; /* don't set TYPE_ARG_TYPES in this case */
6131 else if (arg_types && TREE_CODE (TREE_VALUE (arg_types)) == IDENTIFIER_NODE)
6133 if (!funcdef_flag)
6135 pedwarn (input_location, 0, "parameter names (without types) in function declaration");
6136 arg_info->parms = NULL_TREE;
6138 else
6139 arg_info->parms = arg_info->types;
6141 arg_info->types = 0;
6142 return 0;
6144 else
6146 tree parm, type, typelt;
6147 unsigned int parmno;
6148 const char *errmsg;
6150 /* If there is a parameter of incomplete type in a definition,
6151 this is an error. In a declaration this is valid, and a
6152 struct or union type may be completed later, before any calls
6153 or definition of the function. In the case where the tag was
6154 first declared within the parameter list, a warning has
6155 already been given. If a parameter has void type, then
6156 however the function cannot be defined or called, so
6157 warn. */
6159 for (parm = arg_info->parms, typelt = arg_types, parmno = 1;
6160 parm;
6161 parm = DECL_CHAIN (parm), typelt = TREE_CHAIN (typelt), parmno++)
6163 type = TREE_VALUE (typelt);
6164 if (type == error_mark_node)
6165 continue;
6167 if (!COMPLETE_TYPE_P (type))
6169 if (funcdef_flag)
6171 if (DECL_NAME (parm))
6172 error_at (input_location,
6173 "parameter %u (%q+D) has incomplete type",
6174 parmno, parm);
6175 else
6176 error_at (DECL_SOURCE_LOCATION (parm),
6177 "parameter %u has incomplete type",
6178 parmno);
6180 TREE_VALUE (typelt) = error_mark_node;
6181 TREE_TYPE (parm) = error_mark_node;
6182 arg_types = NULL_TREE;
6184 else if (VOID_TYPE_P (type))
6186 if (DECL_NAME (parm))
6187 warning_at (input_location, 0,
6188 "parameter %u (%q+D) has void type",
6189 parmno, parm);
6190 else
6191 warning_at (DECL_SOURCE_LOCATION (parm), 0,
6192 "parameter %u has void type",
6193 parmno);
6197 errmsg = targetm.invalid_parameter_type (type);
6198 if (errmsg)
6200 error (errmsg);
6201 TREE_VALUE (typelt) = error_mark_node;
6202 TREE_TYPE (parm) = error_mark_node;
6203 arg_types = NULL_TREE;
6206 if (DECL_NAME (parm) && TREE_USED (parm))
6207 warn_if_shadowing (parm);
6209 return arg_types;
6213 /* Allocate and initialize a c_arg_info structure from the parser's
6214 obstack. */
6216 struct c_arg_info *
6217 build_arg_info (void)
6219 struct c_arg_info *ret = XOBNEW (&parser_obstack, struct c_arg_info);
6220 ret->parms = NULL_TREE;
6221 ret->tags = NULL;
6222 ret->types = NULL_TREE;
6223 ret->others = NULL_TREE;
6224 ret->pending_sizes = NULL;
6225 ret->had_vla_unspec = 0;
6226 return ret;
6229 /* Take apart the current scope and return a c_arg_info structure with
6230 info on a parameter list just parsed.
6232 This structure is later fed to 'grokparms' and 'store_parm_decls'.
6234 ELLIPSIS being true means the argument list ended in '...' so don't
6235 append a sentinel (void_list_node) to the end of the type-list.
6237 EXPR is NULL or an expression that needs to be evaluated for the
6238 side effects of array size expressions in the parameters. */
6240 struct c_arg_info *
6241 get_parm_info (bool ellipsis, tree expr)
6243 struct c_binding *b = current_scope->bindings;
6244 struct c_arg_info *arg_info = build_arg_info ();
6246 tree parms = 0;
6247 VEC(c_arg_tag,gc) *tags = NULL;
6248 tree types = 0;
6249 tree others = 0;
6251 static bool explained_incomplete_types = false;
6252 bool gave_void_only_once_err = false;
6254 arg_info->had_vla_unspec = current_scope->had_vla_unspec;
6256 /* The bindings in this scope must not get put into a block.
6257 We will take care of deleting the binding nodes. */
6258 current_scope->bindings = 0;
6260 /* This function is only called if there was *something* on the
6261 parameter list. */
6262 gcc_assert (b);
6264 /* A parameter list consisting solely of 'void' indicates that the
6265 function takes no arguments. But if the 'void' is qualified
6266 (by 'const' or 'volatile'), or has a storage class specifier
6267 ('register'), then the behavior is undefined; issue an error.
6268 Typedefs for 'void' are OK (see DR#157). */
6269 if (b->prev == 0 /* one binding */
6270 && TREE_CODE (b->decl) == PARM_DECL /* which is a parameter */
6271 && !DECL_NAME (b->decl) /* anonymous */
6272 && VOID_TYPE_P (TREE_TYPE (b->decl))) /* of void type */
6274 if (TREE_THIS_VOLATILE (b->decl)
6275 || TREE_READONLY (b->decl)
6276 || C_DECL_REGISTER (b->decl))
6277 error ("%<void%> as only parameter may not be qualified");
6279 /* There cannot be an ellipsis. */
6280 if (ellipsis)
6281 error ("%<void%> must be the only parameter");
6283 arg_info->types = void_list_node;
6284 return arg_info;
6287 if (!ellipsis)
6288 types = void_list_node;
6290 /* Break up the bindings list into parms, tags, types, and others;
6291 apply sanity checks; purge the name-to-decl bindings. */
6292 while (b)
6294 tree decl = b->decl;
6295 tree type = TREE_TYPE (decl);
6296 c_arg_tag *tag;
6297 const char *keyword;
6299 switch (TREE_CODE (decl))
6301 case PARM_DECL:
6302 if (b->id)
6304 gcc_assert (I_SYMBOL_BINDING (b->id) == b);
6305 I_SYMBOL_BINDING (b->id) = b->shadowed;
6308 /* Check for forward decls that never got their actual decl. */
6309 if (TREE_ASM_WRITTEN (decl))
6310 error ("parameter %q+D has just a forward declaration", decl);
6311 /* Check for (..., void, ...) and issue an error. */
6312 else if (VOID_TYPE_P (type) && !DECL_NAME (decl))
6314 if (!gave_void_only_once_err)
6316 error ("%<void%> must be the only parameter");
6317 gave_void_only_once_err = true;
6320 else
6322 /* Valid parameter, add it to the list. */
6323 DECL_CHAIN (decl) = parms;
6324 parms = decl;
6326 /* Since there is a prototype, args are passed in their
6327 declared types. The back end may override this later. */
6328 DECL_ARG_TYPE (decl) = type;
6329 types = tree_cons (0, type, types);
6331 break;
6333 case ENUMERAL_TYPE: keyword = "enum"; goto tag;
6334 case UNION_TYPE: keyword = "union"; goto tag;
6335 case RECORD_TYPE: keyword = "struct"; goto tag;
6336 tag:
6337 /* Types may not have tag-names, in which case the type
6338 appears in the bindings list with b->id NULL. */
6339 if (b->id)
6341 gcc_assert (I_TAG_BINDING (b->id) == b);
6342 I_TAG_BINDING (b->id) = b->shadowed;
6345 /* Warn about any struct, union or enum tags defined in a
6346 parameter list. The scope of such types is limited to
6347 the parameter list, which is rarely if ever desirable
6348 (it's impossible to call such a function with type-
6349 correct arguments). An anonymous union parm type is
6350 meaningful as a GNU extension, so don't warn for that. */
6351 if (TREE_CODE (decl) != UNION_TYPE || b->id != 0)
6353 if (b->id)
6354 /* The %s will be one of 'struct', 'union', or 'enum'. */
6355 warning (0, "%<%s %E%> declared inside parameter list",
6356 keyword, b->id);
6357 else
6358 /* The %s will be one of 'struct', 'union', or 'enum'. */
6359 warning (0, "anonymous %s declared inside parameter list",
6360 keyword);
6362 if (!explained_incomplete_types)
6364 warning (0, "its scope is only this definition or declaration,"
6365 " which is probably not what you want");
6366 explained_incomplete_types = true;
6370 tag = VEC_safe_push (c_arg_tag, gc, tags, NULL);
6371 tag->id = b->id;
6372 tag->type = decl;
6373 break;
6375 case CONST_DECL:
6376 case TYPE_DECL:
6377 case FUNCTION_DECL:
6378 /* CONST_DECLs appear here when we have an embedded enum,
6379 and TYPE_DECLs appear here when we have an embedded struct
6380 or union. No warnings for this - we already warned about the
6381 type itself. FUNCTION_DECLs appear when there is an implicit
6382 function declaration in the parameter list. */
6384 /* When we reinsert this decl in the function body, we need
6385 to reconstruct whether it was marked as nested. */
6386 gcc_assert (TREE_CODE (decl) == FUNCTION_DECL
6387 ? b->nested
6388 : !b->nested);
6389 DECL_CHAIN (decl) = others;
6390 others = decl;
6391 /* fall through */
6393 case ERROR_MARK:
6394 /* error_mark_node appears here when we have an undeclared
6395 variable. Just throw it away. */
6396 if (b->id)
6398 gcc_assert (I_SYMBOL_BINDING (b->id) == b);
6399 I_SYMBOL_BINDING (b->id) = b->shadowed;
6401 break;
6403 /* Other things that might be encountered. */
6404 case LABEL_DECL:
6405 case VAR_DECL:
6406 default:
6407 gcc_unreachable ();
6410 b = free_binding_and_advance (b);
6413 arg_info->parms = parms;
6414 arg_info->tags = tags;
6415 arg_info->types = types;
6416 arg_info->others = others;
6417 arg_info->pending_sizes = expr;
6418 return arg_info;
6421 /* Get the struct, enum or union (CODE says which) with tag NAME.
6422 Define the tag as a forward-reference with location LOC if it is
6423 not defined. Return a c_typespec structure for the type
6424 specifier. */
6426 struct c_typespec
6427 parser_xref_tag (location_t loc, enum tree_code code, tree name)
6429 struct c_typespec ret;
6430 tree ref;
6431 location_t refloc;
6433 ret.expr = NULL_TREE;
6434 ret.expr_const_operands = true;
6436 /* If a cross reference is requested, look up the type
6437 already defined for this tag and return it. */
6439 ref = lookup_tag (code, name, 0, &refloc);
6440 /* If this is the right type of tag, return what we found.
6441 (This reference will be shadowed by shadow_tag later if appropriate.)
6442 If this is the wrong type of tag, do not return it. If it was the
6443 wrong type in the same scope, we will have had an error
6444 message already; if in a different scope and declaring
6445 a name, pending_xref_error will give an error message; but if in a
6446 different scope and not declaring a name, this tag should
6447 shadow the previous declaration of a different type of tag, and
6448 this would not work properly if we return the reference found.
6449 (For example, with "struct foo" in an outer scope, "union foo;"
6450 must shadow that tag with a new one of union type.) */
6451 ret.kind = (ref ? ctsk_tagref : ctsk_tagfirstref);
6452 if (ref && TREE_CODE (ref) == code)
6454 if (C_TYPE_DEFINED_IN_STRUCT (ref)
6455 && loc != UNKNOWN_LOCATION
6456 && warn_cxx_compat)
6458 switch (code)
6460 case ENUMERAL_TYPE:
6461 warning_at (loc, OPT_Wc___compat,
6462 ("enum type defined in struct or union "
6463 "is not visible in C++"));
6464 inform (refloc, "enum type defined here");
6465 break;
6466 case RECORD_TYPE:
6467 warning_at (loc, OPT_Wc___compat,
6468 ("struct defined in struct or union "
6469 "is not visible in C++"));
6470 inform (refloc, "struct defined here");
6471 break;
6472 case UNION_TYPE:
6473 warning_at (loc, OPT_Wc___compat,
6474 ("union defined in struct or union "
6475 "is not visible in C++"));
6476 inform (refloc, "union defined here");
6477 break;
6478 default:
6479 gcc_unreachable();
6483 ret.spec = ref;
6484 return ret;
6487 /* If no such tag is yet defined, create a forward-reference node
6488 and record it as the "definition".
6489 When a real declaration of this type is found,
6490 the forward-reference will be altered into a real type. */
6492 ref = make_node (code);
6493 if (code == ENUMERAL_TYPE)
6495 /* Give the type a default layout like unsigned int
6496 to avoid crashing if it does not get defined. */
6497 SET_TYPE_MODE (ref, TYPE_MODE (unsigned_type_node));
6498 TYPE_ALIGN (ref) = TYPE_ALIGN (unsigned_type_node);
6499 TYPE_USER_ALIGN (ref) = 0;
6500 TYPE_UNSIGNED (ref) = 1;
6501 TYPE_PRECISION (ref) = TYPE_PRECISION (unsigned_type_node);
6502 TYPE_MIN_VALUE (ref) = TYPE_MIN_VALUE (unsigned_type_node);
6503 TYPE_MAX_VALUE (ref) = TYPE_MAX_VALUE (unsigned_type_node);
6506 pushtag (loc, name, ref);
6508 ret.spec = ref;
6509 return ret;
6512 /* Get the struct, enum or union (CODE says which) with tag NAME.
6513 Define the tag as a forward-reference if it is not defined.
6514 Return a tree for the type. */
6516 tree
6517 xref_tag (enum tree_code code, tree name)
6519 return parser_xref_tag (input_location, code, name).spec;
6522 /* Make sure that the tag NAME is defined *in the current scope*
6523 at least as a forward reference.
6524 LOC is the location of the struct's definition.
6525 CODE says which kind of tag NAME ought to be.
6527 This stores the current value of the file static STRUCT_PARSE_INFO
6528 in *ENCLOSING_STRUCT_PARSE_INFO, and points STRUCT_PARSE_INFO at a
6529 new c_struct_parse_info structure. The old value of
6530 STRUCT_PARSE_INFO is restored in finish_struct. */
6532 tree
6533 start_struct (location_t loc, enum tree_code code, tree name,
6534 struct c_struct_parse_info **enclosing_struct_parse_info)
6536 /* If there is already a tag defined at this scope
6537 (as a forward reference), just return it. */
6539 tree ref = NULL_TREE;
6540 location_t refloc = UNKNOWN_LOCATION;
6542 if (name != NULL_TREE)
6543 ref = lookup_tag (code, name, 1, &refloc);
6544 if (ref && TREE_CODE (ref) == code)
6546 if (TYPE_SIZE (ref))
6548 if (code == UNION_TYPE)
6549 error_at (loc, "redefinition of %<union %E%>", name);
6550 else
6551 error_at (loc, "redefinition of %<struct %E%>", name);
6552 if (refloc != UNKNOWN_LOCATION)
6553 inform (refloc, "originally defined here");
6554 /* Don't create structures using a name already in use. */
6555 ref = NULL_TREE;
6557 else if (C_TYPE_BEING_DEFINED (ref))
6559 if (code == UNION_TYPE)
6560 error_at (loc, "nested redefinition of %<union %E%>", name);
6561 else
6562 error_at (loc, "nested redefinition of %<struct %E%>", name);
6563 /* Don't bother to report "originally defined here" for a
6564 nested redefinition; the original definition should be
6565 obvious. */
6566 /* Don't create structures that contain themselves. */
6567 ref = NULL_TREE;
6571 /* Otherwise create a forward-reference just so the tag is in scope. */
6573 if (ref == NULL_TREE || TREE_CODE (ref) != code)
6575 ref = make_node (code);
6576 pushtag (loc, name, ref);
6579 C_TYPE_BEING_DEFINED (ref) = 1;
6580 TYPE_PACKED (ref) = flag_pack_struct;
6582 *enclosing_struct_parse_info = struct_parse_info;
6583 struct_parse_info = XNEW (struct c_struct_parse_info);
6584 struct_parse_info->struct_types = VEC_alloc (tree, heap, 0);
6585 struct_parse_info->fields = VEC_alloc (c_binding_ptr, heap, 0);
6586 struct_parse_info->typedefs_seen = VEC_alloc (tree, heap, 0);
6588 /* FIXME: This will issue a warning for a use of a type defined
6589 within a statement expr used within sizeof, et. al. This is not
6590 terribly serious as C++ doesn't permit statement exprs within
6591 sizeof anyhow. */
6592 if (warn_cxx_compat && (in_sizeof || in_typeof || in_alignof))
6593 warning_at (loc, OPT_Wc___compat,
6594 "defining type in %qs expression is invalid in C++",
6595 (in_sizeof
6596 ? "sizeof"
6597 : (in_typeof ? "typeof" : "alignof")));
6599 return ref;
6602 /* Process the specs, declarator and width (NULL if omitted)
6603 of a structure component, returning a FIELD_DECL node.
6604 WIDTH is non-NULL for bit-fields only, and is an INTEGER_CST node.
6605 DECL_ATTRS is as for grokdeclarator.
6607 LOC is the location of the structure component.
6609 This is done during the parsing of the struct declaration.
6610 The FIELD_DECL nodes are chained together and the lot of them
6611 are ultimately passed to `build_struct' to make the RECORD_TYPE node. */
6613 tree
6614 grokfield (location_t loc,
6615 struct c_declarator *declarator, struct c_declspecs *declspecs,
6616 tree width, tree *decl_attrs)
6618 tree value;
6620 if (declarator->kind == cdk_id && declarator->u.id == NULL_TREE
6621 && width == NULL_TREE)
6623 /* This is an unnamed decl.
6625 If we have something of the form "union { list } ;" then this
6626 is the anonymous union extension. Similarly for struct.
6628 If this is something of the form "struct foo;", then
6629 If MS or Plan 9 extensions are enabled, this is handled as
6630 an anonymous struct.
6631 Otherwise this is a forward declaration of a structure tag.
6633 If this is something of the form "foo;" and foo is a TYPE_DECL, then
6634 If foo names a structure or union without a tag, then this
6635 is an anonymous struct (this is permitted by C1X).
6636 If MS or Plan 9 extensions are enabled and foo names a
6637 structure, then again this is an anonymous struct.
6638 Otherwise this is an error.
6640 Oh what a horrid tangled web we weave. I wonder if MS consciously
6641 took this from Plan 9 or if it was an accident of implementation
6642 that took root before someone noticed the bug... */
6644 tree type = declspecs->type;
6645 bool type_ok = (TREE_CODE (type) == RECORD_TYPE
6646 || TREE_CODE (type) == UNION_TYPE);
6647 bool ok = false;
6649 if (type_ok
6650 && (flag_ms_extensions
6651 || flag_plan9_extensions
6652 || !declspecs->typedef_p))
6654 if (flag_ms_extensions || flag_plan9_extensions)
6655 ok = true;
6656 else if (TYPE_NAME (type) == NULL)
6657 ok = true;
6658 else
6659 ok = false;
6661 if (!ok)
6663 pedwarn (loc, 0, "declaration does not declare anything");
6664 return NULL_TREE;
6666 if (!flag_isoc1x)
6668 if (flag_isoc99)
6669 pedwarn (loc, OPT_pedantic,
6670 "ISO C99 doesn%'t support unnamed structs/unions");
6671 else
6672 pedwarn (loc, OPT_pedantic,
6673 "ISO C90 doesn%'t support unnamed structs/unions");
6677 value = grokdeclarator (declarator, declspecs, FIELD, false,
6678 width ? &width : NULL, decl_attrs, NULL, NULL,
6679 DEPRECATED_NORMAL);
6681 finish_decl (value, loc, NULL_TREE, NULL_TREE, NULL_TREE);
6682 DECL_INITIAL (value) = width;
6684 if (warn_cxx_compat && DECL_NAME (value) != NULL_TREE)
6686 /* If we currently have a binding for this field, set the
6687 in_struct field in the binding, so that we warn about lookups
6688 which find it. */
6689 struct c_binding *b = I_SYMBOL_BINDING (DECL_NAME (value));
6690 if (b != NULL)
6692 /* If the in_struct field is not yet set, push it on a list
6693 to be cleared when this struct is finished. */
6694 if (!b->in_struct)
6696 VEC_safe_push (c_binding_ptr, heap,
6697 struct_parse_info->fields, b);
6698 b->in_struct = 1;
6703 return value;
6706 /* Subroutine of detect_field_duplicates: return whether X and Y,
6707 which are both fields in the same struct, have duplicate field
6708 names. */
6710 static bool
6711 is_duplicate_field (tree x, tree y)
6713 if (DECL_NAME (x) != NULL_TREE && DECL_NAME (x) == DECL_NAME (y))
6714 return true;
6716 /* When using -fplan9-extensions, an anonymous field whose name is a
6717 typedef can duplicate a field name. */
6718 if (flag_plan9_extensions
6719 && (DECL_NAME (x) == NULL_TREE || DECL_NAME (y) == NULL_TREE))
6721 tree xt, xn, yt, yn;
6723 xt = TREE_TYPE (x);
6724 if (DECL_NAME (x) != NULL_TREE)
6725 xn = DECL_NAME (x);
6726 else if ((TREE_CODE (xt) == RECORD_TYPE || TREE_CODE (xt) == UNION_TYPE)
6727 && TYPE_NAME (xt) != NULL_TREE
6728 && TREE_CODE (TYPE_NAME (xt)) == TYPE_DECL)
6729 xn = DECL_NAME (TYPE_NAME (xt));
6730 else
6731 xn = NULL_TREE;
6733 yt = TREE_TYPE (y);
6734 if (DECL_NAME (y) != NULL_TREE)
6735 yn = DECL_NAME (y);
6736 else if ((TREE_CODE (yt) == RECORD_TYPE || TREE_CODE (yt) == UNION_TYPE)
6737 && TYPE_NAME (yt) != NULL_TREE
6738 && TREE_CODE (TYPE_NAME (yt)) == TYPE_DECL)
6739 yn = DECL_NAME (TYPE_NAME (yt));
6740 else
6741 yn = NULL_TREE;
6743 if (xn != NULL_TREE && xn == yn)
6744 return true;
6747 return false;
6750 /* Subroutine of detect_field_duplicates: add the fields of FIELDLIST
6751 to HTAB, giving errors for any duplicates. */
6753 static void
6754 detect_field_duplicates_hash (tree fieldlist, htab_t htab)
6756 tree x, y;
6757 void **slot;
6759 for (x = fieldlist; x ; x = DECL_CHAIN (x))
6760 if ((y = DECL_NAME (x)) != 0)
6762 slot = htab_find_slot (htab, y, INSERT);
6763 if (*slot)
6765 error ("duplicate member %q+D", x);
6766 DECL_NAME (x) = NULL_TREE;
6768 *slot = y;
6770 else if (TREE_CODE (TREE_TYPE (x)) == RECORD_TYPE
6771 || TREE_CODE (TREE_TYPE (x)) == UNION_TYPE)
6773 detect_field_duplicates_hash (TYPE_FIELDS (TREE_TYPE (x)), htab);
6775 /* When using -fplan9-extensions, an anonymous field whose
6776 name is a typedef can duplicate a field name. */
6777 if (flag_plan9_extensions
6778 && TYPE_NAME (TREE_TYPE (x)) != NULL_TREE
6779 && TREE_CODE (TYPE_NAME (TREE_TYPE (x))) == TYPE_DECL)
6781 tree xn = DECL_NAME (TYPE_NAME (TREE_TYPE (x)));
6782 slot = htab_find_slot (htab, xn, INSERT);
6783 if (*slot)
6784 error ("duplicate member %q+D", TYPE_NAME (TREE_TYPE (x)));
6785 *slot = xn;
6790 /* Generate an error for any duplicate field names in FIELDLIST. Munge
6791 the list such that this does not present a problem later. */
6793 static void
6794 detect_field_duplicates (tree fieldlist)
6796 tree x, y;
6797 int timeout = 10;
6799 /* If the struct is the list of instance variables of an Objective-C
6800 class, then we need to check all the instance variables of
6801 superclasses when checking for duplicates (since you can't have
6802 an instance variable in a subclass with the same name as an
6803 instance variable in a superclass). We pass on this job to the
6804 Objective-C compiler. objc_detect_field_duplicates() will return
6805 false if we are not checking the list of instance variables and
6806 the C frontend should proceed with the standard field duplicate
6807 checks. If we are checking the list of instance variables, the
6808 ObjC frontend will do the check, emit the errors if needed, and
6809 then return true. */
6810 if (c_dialect_objc ())
6811 if (objc_detect_field_duplicates (false))
6812 return;
6814 /* First, see if there are more than "a few" fields.
6815 This is trivially true if there are zero or one fields. */
6816 if (!fieldlist || !DECL_CHAIN (fieldlist))
6817 return;
6818 x = fieldlist;
6819 do {
6820 timeout--;
6821 if (DECL_NAME (x) == NULL_TREE
6822 && (TREE_CODE (TREE_TYPE (x)) == RECORD_TYPE
6823 || TREE_CODE (TREE_TYPE (x)) == UNION_TYPE))
6824 timeout = 0;
6825 x = DECL_CHAIN (x);
6826 } while (timeout > 0 && x);
6828 /* If there were "few" fields and no anonymous structures or unions,
6829 avoid the overhead of allocating a hash table. Instead just do
6830 the nested traversal thing. */
6831 if (timeout > 0)
6833 for (x = DECL_CHAIN (fieldlist); x; x = DECL_CHAIN (x))
6834 /* When using -fplan9-extensions, we can have duplicates
6835 between typedef names and fields. */
6836 if (DECL_NAME (x)
6837 || (flag_plan9_extensions
6838 && DECL_NAME (x) == NULL_TREE
6839 && (TREE_CODE (TREE_TYPE (x)) == RECORD_TYPE
6840 || TREE_CODE (TREE_TYPE (x)) == UNION_TYPE)
6841 && TYPE_NAME (TREE_TYPE (x)) != NULL_TREE
6842 && TREE_CODE (TYPE_NAME (TREE_TYPE (x))) == TYPE_DECL))
6844 for (y = fieldlist; y != x; y = TREE_CHAIN (y))
6845 if (is_duplicate_field (y, x))
6847 error ("duplicate member %q+D", x);
6848 DECL_NAME (x) = NULL_TREE;
6852 else
6854 htab_t htab = htab_create (37, htab_hash_pointer, htab_eq_pointer, NULL);
6856 detect_field_duplicates_hash (fieldlist, htab);
6857 htab_delete (htab);
6861 /* Finish up struct info used by -Wc++-compat. */
6863 static void
6864 warn_cxx_compat_finish_struct (tree fieldlist)
6866 unsigned int ix;
6867 tree x;
6868 struct c_binding *b;
6870 /* Set the C_TYPE_DEFINED_IN_STRUCT flag for each type defined in
6871 the current struct. We do this now at the end of the struct
6872 because the flag is used to issue visibility warnings, and we
6873 only want to issue those warnings if the type is referenced
6874 outside of the struct declaration. */
6875 FOR_EACH_VEC_ELT (tree, struct_parse_info->struct_types, ix, x)
6876 C_TYPE_DEFINED_IN_STRUCT (x) = 1;
6878 /* The TYPEDEFS_SEEN field of STRUCT_PARSE_INFO is a list of
6879 typedefs used when declaring fields in this struct. If the name
6880 of any of the fields is also a typedef name then the struct would
6881 not parse in C++, because the C++ lookup rules say that the
6882 typedef name would be looked up in the context of the struct, and
6883 would thus be the field rather than the typedef. */
6884 if (!VEC_empty (tree, struct_parse_info->typedefs_seen)
6885 && fieldlist != NULL_TREE)
6887 /* Use a pointer_set using the name of the typedef. We can use
6888 a pointer_set because identifiers are interned. */
6889 struct pointer_set_t *tset = pointer_set_create ();
6891 FOR_EACH_VEC_ELT (tree, struct_parse_info->typedefs_seen, ix, x)
6892 pointer_set_insert (tset, DECL_NAME (x));
6894 for (x = fieldlist; x != NULL_TREE; x = DECL_CHAIN (x))
6896 if (DECL_NAME (x) != NULL_TREE
6897 && pointer_set_contains (tset, DECL_NAME (x)))
6899 warning_at (DECL_SOURCE_LOCATION (x), OPT_Wc___compat,
6900 ("using %qD as both field and typedef name is "
6901 "invalid in C++"),
6903 /* FIXME: It would be nice to report the location where
6904 the typedef name is used. */
6908 pointer_set_destroy (tset);
6911 /* For each field which has a binding and which was not defined in
6912 an enclosing struct, clear the in_struct field. */
6913 FOR_EACH_VEC_ELT (c_binding_ptr, struct_parse_info->fields, ix, b)
6914 b->in_struct = 0;
6917 /* Fill in the fields of a RECORD_TYPE or UNION_TYPE node, T.
6918 LOC is the location of the RECORD_TYPE or UNION_TYPE's definition.
6919 FIELDLIST is a chain of FIELD_DECL nodes for the fields.
6920 ATTRIBUTES are attributes to be applied to the structure.
6922 ENCLOSING_STRUCT_PARSE_INFO is the value of STRUCT_PARSE_INFO when
6923 the struct was started. */
6925 tree
6926 finish_struct (location_t loc, tree t, tree fieldlist, tree attributes,
6927 struct c_struct_parse_info *enclosing_struct_parse_info)
6929 tree x;
6930 bool toplevel = file_scope == current_scope;
6931 int saw_named_field;
6933 /* If this type was previously laid out as a forward reference,
6934 make sure we lay it out again. */
6936 TYPE_SIZE (t) = 0;
6938 decl_attributes (&t, attributes, (int) ATTR_FLAG_TYPE_IN_PLACE);
6940 if (pedantic)
6942 for (x = fieldlist; x; x = DECL_CHAIN (x))
6944 if (DECL_NAME (x) != 0)
6945 break;
6946 if (flag_isoc1x
6947 && (TREE_CODE (TREE_TYPE (x)) == RECORD_TYPE
6948 || TREE_CODE (TREE_TYPE (x)) == UNION_TYPE))
6949 break;
6952 if (x == 0)
6954 if (TREE_CODE (t) == UNION_TYPE)
6956 if (fieldlist)
6957 pedwarn (loc, OPT_pedantic, "union has no named members");
6958 else
6959 pedwarn (loc, OPT_pedantic, "union has no members");
6961 else
6963 if (fieldlist)
6964 pedwarn (loc, OPT_pedantic, "struct has no named members");
6965 else
6966 pedwarn (loc, OPT_pedantic, "struct has no members");
6971 /* Install struct as DECL_CONTEXT of each field decl.
6972 Also process specified field sizes, found in the DECL_INITIAL,
6973 storing 0 there after the type has been changed to precision equal
6974 to its width, rather than the precision of the specified standard
6975 type. (Correct layout requires the original type to have been preserved
6976 until now.) */
6978 saw_named_field = 0;
6979 for (x = fieldlist; x; x = DECL_CHAIN (x))
6981 if (TREE_TYPE (x) == error_mark_node)
6982 continue;
6984 DECL_CONTEXT (x) = t;
6986 /* If any field is const, the structure type is pseudo-const. */
6987 if (TREE_READONLY (x))
6988 C_TYPE_FIELDS_READONLY (t) = 1;
6989 else
6991 /* A field that is pseudo-const makes the structure likewise. */
6992 tree t1 = strip_array_types (TREE_TYPE (x));
6993 if ((TREE_CODE (t1) == RECORD_TYPE || TREE_CODE (t1) == UNION_TYPE)
6994 && C_TYPE_FIELDS_READONLY (t1))
6995 C_TYPE_FIELDS_READONLY (t) = 1;
6998 /* Any field that is volatile means variables of this type must be
6999 treated in some ways as volatile. */
7000 if (TREE_THIS_VOLATILE (x))
7001 C_TYPE_FIELDS_VOLATILE (t) = 1;
7003 /* Any field of nominal variable size implies structure is too. */
7004 if (C_DECL_VARIABLE_SIZE (x))
7005 C_TYPE_VARIABLE_SIZE (t) = 1;
7007 if (DECL_INITIAL (x))
7009 unsigned HOST_WIDE_INT width = tree_low_cst (DECL_INITIAL (x), 1);
7010 DECL_SIZE (x) = bitsize_int (width);
7011 DECL_BIT_FIELD (x) = 1;
7012 SET_DECL_C_BIT_FIELD (x);
7015 if (TYPE_PACKED (t)
7016 && (DECL_BIT_FIELD (x)
7017 || TYPE_ALIGN (TREE_TYPE (x)) > BITS_PER_UNIT))
7018 DECL_PACKED (x) = 1;
7020 /* Detect flexible array member in an invalid context. */
7021 if (TREE_CODE (TREE_TYPE (x)) == ARRAY_TYPE
7022 && TYPE_SIZE (TREE_TYPE (x)) == NULL_TREE
7023 && TYPE_DOMAIN (TREE_TYPE (x)) != NULL_TREE
7024 && TYPE_MAX_VALUE (TYPE_DOMAIN (TREE_TYPE (x))) == NULL_TREE)
7026 if (TREE_CODE (t) == UNION_TYPE)
7028 error_at (DECL_SOURCE_LOCATION (x),
7029 "flexible array member in union");
7030 TREE_TYPE (x) = error_mark_node;
7032 else if (DECL_CHAIN (x) != NULL_TREE)
7034 error_at (DECL_SOURCE_LOCATION (x),
7035 "flexible array member not at end of struct");
7036 TREE_TYPE (x) = error_mark_node;
7038 else if (!saw_named_field)
7040 error_at (DECL_SOURCE_LOCATION (x),
7041 "flexible array member in otherwise empty struct");
7042 TREE_TYPE (x) = error_mark_node;
7046 if (pedantic && TREE_CODE (t) == RECORD_TYPE
7047 && flexible_array_type_p (TREE_TYPE (x)))
7048 pedwarn (DECL_SOURCE_LOCATION (x), OPT_pedantic,
7049 "invalid use of structure with flexible array member");
7051 if (DECL_NAME (x)
7052 || TREE_CODE (TREE_TYPE (x)) == RECORD_TYPE
7053 || TREE_CODE (TREE_TYPE (x)) == UNION_TYPE)
7054 saw_named_field = 1;
7057 detect_field_duplicates (fieldlist);
7059 /* Now we have the nearly final fieldlist. Record it,
7060 then lay out the structure or union (including the fields). */
7062 TYPE_FIELDS (t) = fieldlist;
7064 layout_type (t);
7066 /* Give bit-fields their proper types. */
7068 tree *fieldlistp = &fieldlist;
7069 while (*fieldlistp)
7070 if (TREE_CODE (*fieldlistp) == FIELD_DECL && DECL_INITIAL (*fieldlistp)
7071 && TREE_TYPE (*fieldlistp) != error_mark_node)
7073 unsigned HOST_WIDE_INT width
7074 = tree_low_cst (DECL_INITIAL (*fieldlistp), 1);
7075 tree type = TREE_TYPE (*fieldlistp);
7076 if (width != TYPE_PRECISION (type))
7078 TREE_TYPE (*fieldlistp)
7079 = c_build_bitfield_integer_type (width, TYPE_UNSIGNED (type));
7080 DECL_MODE (*fieldlistp) = TYPE_MODE (TREE_TYPE (*fieldlistp));
7082 DECL_INITIAL (*fieldlistp) = 0;
7084 else
7085 fieldlistp = &DECL_CHAIN (*fieldlistp);
7088 /* Now we have the truly final field list.
7089 Store it in this type and in the variants. */
7091 TYPE_FIELDS (t) = fieldlist;
7093 /* If there are lots of fields, sort so we can look through them fast.
7094 We arbitrarily consider 16 or more elts to be "a lot". */
7097 int len = 0;
7099 for (x = fieldlist; x; x = DECL_CHAIN (x))
7101 if (len > 15 || DECL_NAME (x) == NULL)
7102 break;
7103 len += 1;
7106 if (len > 15)
7108 tree *field_array;
7109 struct lang_type *space;
7110 struct sorted_fields_type *space2;
7112 len += list_length (x);
7114 /* Use the same allocation policy here that make_node uses, to
7115 ensure that this lives as long as the rest of the struct decl.
7116 All decls in an inline function need to be saved. */
7118 space = ggc_alloc_cleared_lang_type (sizeof (struct lang_type));
7119 space2 = ggc_alloc_sorted_fields_type
7120 (sizeof (struct sorted_fields_type) + len * sizeof (tree));
7122 len = 0;
7123 space->s = space2;
7124 field_array = &space2->elts[0];
7125 for (x = fieldlist; x; x = DECL_CHAIN (x))
7127 field_array[len++] = x;
7129 /* If there is anonymous struct or union, break out of the loop. */
7130 if (DECL_NAME (x) == NULL)
7131 break;
7133 /* Found no anonymous struct/union. Add the TYPE_LANG_SPECIFIC. */
7134 if (x == NULL)
7136 TYPE_LANG_SPECIFIC (t) = space;
7137 TYPE_LANG_SPECIFIC (t)->s->len = len;
7138 field_array = TYPE_LANG_SPECIFIC (t)->s->elts;
7139 qsort (field_array, len, sizeof (tree), field_decl_cmp);
7144 for (x = TYPE_MAIN_VARIANT (t); x; x = TYPE_NEXT_VARIANT (x))
7146 TYPE_FIELDS (x) = TYPE_FIELDS (t);
7147 TYPE_LANG_SPECIFIC (x) = TYPE_LANG_SPECIFIC (t);
7148 C_TYPE_FIELDS_READONLY (x) = C_TYPE_FIELDS_READONLY (t);
7149 C_TYPE_FIELDS_VOLATILE (x) = C_TYPE_FIELDS_VOLATILE (t);
7150 C_TYPE_VARIABLE_SIZE (x) = C_TYPE_VARIABLE_SIZE (t);
7153 /* If this was supposed to be a transparent union, but we can't
7154 make it one, warn and turn off the flag. */
7155 if (TREE_CODE (t) == UNION_TYPE
7156 && TYPE_TRANSPARENT_AGGR (t)
7157 && (!TYPE_FIELDS (t) || TYPE_MODE (t) != DECL_MODE (TYPE_FIELDS (t))))
7159 TYPE_TRANSPARENT_AGGR (t) = 0;
7160 warning_at (loc, 0, "union cannot be made transparent");
7163 /* If this structure or union completes the type of any previous
7164 variable declaration, lay it out and output its rtl. */
7165 for (x = C_TYPE_INCOMPLETE_VARS (TYPE_MAIN_VARIANT (t));
7167 x = TREE_CHAIN (x))
7169 tree decl = TREE_VALUE (x);
7170 if (TREE_CODE (TREE_TYPE (decl)) == ARRAY_TYPE)
7171 layout_array_type (TREE_TYPE (decl));
7172 if (TREE_CODE (decl) != TYPE_DECL)
7174 layout_decl (decl, 0);
7175 if (c_dialect_objc ())
7176 objc_check_decl (decl);
7177 rest_of_decl_compilation (decl, toplevel, 0);
7178 if (!toplevel)
7179 expand_decl (decl);
7182 C_TYPE_INCOMPLETE_VARS (TYPE_MAIN_VARIANT (t)) = 0;
7184 /* Update type location to the one of the definition, instead of e.g.
7185 a forward declaration. */
7186 if (TYPE_STUB_DECL (t))
7187 DECL_SOURCE_LOCATION (TYPE_STUB_DECL (t)) = loc;
7189 /* Finish debugging output for this type. */
7190 rest_of_type_compilation (t, toplevel);
7192 /* If we're inside a function proper, i.e. not file-scope and not still
7193 parsing parameters, then arrange for the size of a variable sized type
7194 to be bound now. */
7195 if (building_stmt_list_p () && variably_modified_type_p (t, NULL_TREE))
7196 add_stmt (build_stmt (loc,
7197 DECL_EXPR, build_decl (loc, TYPE_DECL, NULL, t)));
7199 if (warn_cxx_compat)
7200 warn_cxx_compat_finish_struct (fieldlist);
7202 VEC_free (tree, heap, struct_parse_info->struct_types);
7203 VEC_free (c_binding_ptr, heap, struct_parse_info->fields);
7204 VEC_free (tree, heap, struct_parse_info->typedefs_seen);
7205 XDELETE (struct_parse_info);
7207 struct_parse_info = enclosing_struct_parse_info;
7209 /* If this struct is defined inside a struct, add it to
7210 struct_types. */
7211 if (warn_cxx_compat
7212 && struct_parse_info != NULL
7213 && !in_sizeof && !in_typeof && !in_alignof)
7214 VEC_safe_push (tree, heap, struct_parse_info->struct_types, t);
7216 return t;
7219 /* Lay out the type T, and its element type, and so on. */
7221 static void
7222 layout_array_type (tree t)
7224 if (TREE_CODE (TREE_TYPE (t)) == ARRAY_TYPE)
7225 layout_array_type (TREE_TYPE (t));
7226 layout_type (t);
7229 /* Begin compiling the definition of an enumeration type.
7230 NAME is its name (or null if anonymous).
7231 LOC is the enum's location.
7232 Returns the type object, as yet incomplete.
7233 Also records info about it so that build_enumerator
7234 may be used to declare the individual values as they are read. */
7236 tree
7237 start_enum (location_t loc, struct c_enum_contents *the_enum, tree name)
7239 tree enumtype = NULL_TREE;
7240 location_t enumloc = UNKNOWN_LOCATION;
7242 /* If this is the real definition for a previous forward reference,
7243 fill in the contents in the same object that used to be the
7244 forward reference. */
7246 if (name != NULL_TREE)
7247 enumtype = lookup_tag (ENUMERAL_TYPE, name, 1, &enumloc);
7249 if (enumtype == 0 || TREE_CODE (enumtype) != ENUMERAL_TYPE)
7251 enumtype = make_node (ENUMERAL_TYPE);
7252 pushtag (loc, name, enumtype);
7255 if (C_TYPE_BEING_DEFINED (enumtype))
7256 error_at (loc, "nested redefinition of %<enum %E%>", name);
7258 C_TYPE_BEING_DEFINED (enumtype) = 1;
7260 if (TYPE_VALUES (enumtype) != 0)
7262 /* This enum is a named one that has been declared already. */
7263 error_at (loc, "redeclaration of %<enum %E%>", name);
7264 if (enumloc != UNKNOWN_LOCATION)
7265 inform (enumloc, "originally defined here");
7267 /* Completely replace its old definition.
7268 The old enumerators remain defined, however. */
7269 TYPE_VALUES (enumtype) = 0;
7272 the_enum->enum_next_value = integer_zero_node;
7273 the_enum->enum_overflow = 0;
7275 if (flag_short_enums)
7276 TYPE_PACKED (enumtype) = 1;
7278 /* FIXME: This will issue a warning for a use of a type defined
7279 within sizeof in a statement expr. This is not terribly serious
7280 as C++ doesn't permit statement exprs within sizeof anyhow. */
7281 if (warn_cxx_compat && (in_sizeof || in_typeof || in_alignof))
7282 warning_at (loc, OPT_Wc___compat,
7283 "defining type in %qs expression is invalid in C++",
7284 (in_sizeof
7285 ? "sizeof"
7286 : (in_typeof ? "typeof" : "alignof")));
7288 return enumtype;
7291 /* After processing and defining all the values of an enumeration type,
7292 install their decls in the enumeration type and finish it off.
7293 ENUMTYPE is the type object, VALUES a list of decl-value pairs,
7294 and ATTRIBUTES are the specified attributes.
7295 Returns ENUMTYPE. */
7297 tree
7298 finish_enum (tree enumtype, tree values, tree attributes)
7300 tree pair, tem;
7301 tree minnode = 0, maxnode = 0;
7302 int precision, unsign;
7303 bool toplevel = (file_scope == current_scope);
7304 struct lang_type *lt;
7306 decl_attributes (&enumtype, attributes, (int) ATTR_FLAG_TYPE_IN_PLACE);
7308 /* Calculate the maximum value of any enumerator in this type. */
7310 if (values == error_mark_node)
7311 minnode = maxnode = integer_zero_node;
7312 else
7314 minnode = maxnode = TREE_VALUE (values);
7315 for (pair = TREE_CHAIN (values); pair; pair = TREE_CHAIN (pair))
7317 tree value = TREE_VALUE (pair);
7318 if (tree_int_cst_lt (maxnode, value))
7319 maxnode = value;
7320 if (tree_int_cst_lt (value, minnode))
7321 minnode = value;
7325 /* Construct the final type of this enumeration. It is the same
7326 as one of the integral types - the narrowest one that fits, except
7327 that normally we only go as narrow as int - and signed iff any of
7328 the values are negative. */
7329 unsign = (tree_int_cst_sgn (minnode) >= 0);
7330 precision = MAX (tree_int_cst_min_precision (minnode, unsign),
7331 tree_int_cst_min_precision (maxnode, unsign));
7333 if (TYPE_PACKED (enumtype) || precision > TYPE_PRECISION (integer_type_node))
7335 tem = c_common_type_for_size (precision, unsign);
7336 if (tem == NULL)
7338 warning (0, "enumeration values exceed range of largest integer");
7339 tem = long_long_integer_type_node;
7342 else
7343 tem = unsign ? unsigned_type_node : integer_type_node;
7345 TYPE_MIN_VALUE (enumtype) = TYPE_MIN_VALUE (tem);
7346 TYPE_MAX_VALUE (enumtype) = TYPE_MAX_VALUE (tem);
7347 TYPE_UNSIGNED (enumtype) = TYPE_UNSIGNED (tem);
7348 TYPE_SIZE (enumtype) = 0;
7350 /* If the precision of the type was specific with an attribute and it
7351 was too small, give an error. Otherwise, use it. */
7352 if (TYPE_PRECISION (enumtype))
7354 if (precision > TYPE_PRECISION (enumtype))
7355 error ("specified mode too small for enumeral values");
7357 else
7358 TYPE_PRECISION (enumtype) = TYPE_PRECISION (tem);
7360 layout_type (enumtype);
7362 if (values != error_mark_node)
7364 /* Change the type of the enumerators to be the enum type. We
7365 need to do this irrespective of the size of the enum, for
7366 proper type checking. Replace the DECL_INITIALs of the
7367 enumerators, and the value slots of the list, with copies
7368 that have the enum type; they cannot be modified in place
7369 because they may be shared (e.g. integer_zero_node) Finally,
7370 change the purpose slots to point to the names of the decls. */
7371 for (pair = values; pair; pair = TREE_CHAIN (pair))
7373 tree enu = TREE_PURPOSE (pair);
7374 tree ini = DECL_INITIAL (enu);
7376 TREE_TYPE (enu) = enumtype;
7378 /* The ISO C Standard mandates enumerators to have type int,
7379 even though the underlying type of an enum type is
7380 unspecified. However, GCC allows enumerators of any
7381 integer type as an extensions. build_enumerator()
7382 converts any enumerators that fit in an int to type int,
7383 to avoid promotions to unsigned types when comparing
7384 integers with enumerators that fit in the int range.
7385 When -pedantic is given, build_enumerator() would have
7386 already warned about those that don't fit. Here we
7387 convert the rest to the enumerator type. */
7388 if (TREE_TYPE (ini) != integer_type_node)
7389 ini = convert (enumtype, ini);
7391 DECL_INITIAL (enu) = ini;
7392 TREE_PURPOSE (pair) = DECL_NAME (enu);
7393 TREE_VALUE (pair) = ini;
7396 TYPE_VALUES (enumtype) = values;
7399 /* Record the min/max values so that we can warn about bit-field
7400 enumerations that are too small for the values. */
7401 lt = ggc_alloc_cleared_lang_type (sizeof (struct lang_type));
7402 lt->enum_min = minnode;
7403 lt->enum_max = maxnode;
7404 TYPE_LANG_SPECIFIC (enumtype) = lt;
7406 /* Fix up all variant types of this enum type. */
7407 for (tem = TYPE_MAIN_VARIANT (enumtype); tem; tem = TYPE_NEXT_VARIANT (tem))
7409 if (tem == enumtype)
7410 continue;
7411 TYPE_VALUES (tem) = TYPE_VALUES (enumtype);
7412 TYPE_MIN_VALUE (tem) = TYPE_MIN_VALUE (enumtype);
7413 TYPE_MAX_VALUE (tem) = TYPE_MAX_VALUE (enumtype);
7414 TYPE_SIZE (tem) = TYPE_SIZE (enumtype);
7415 TYPE_SIZE_UNIT (tem) = TYPE_SIZE_UNIT (enumtype);
7416 SET_TYPE_MODE (tem, TYPE_MODE (enumtype));
7417 TYPE_PRECISION (tem) = TYPE_PRECISION (enumtype);
7418 TYPE_ALIGN (tem) = TYPE_ALIGN (enumtype);
7419 TYPE_USER_ALIGN (tem) = TYPE_USER_ALIGN (enumtype);
7420 TYPE_UNSIGNED (tem) = TYPE_UNSIGNED (enumtype);
7421 TYPE_LANG_SPECIFIC (tem) = TYPE_LANG_SPECIFIC (enumtype);
7424 /* Finish debugging output for this type. */
7425 rest_of_type_compilation (enumtype, toplevel);
7427 /* If this enum is defined inside a struct, add it to
7428 struct_types. */
7429 if (warn_cxx_compat
7430 && struct_parse_info != NULL
7431 && !in_sizeof && !in_typeof && !in_alignof)
7432 VEC_safe_push (tree, heap, struct_parse_info->struct_types, enumtype);
7434 return enumtype;
7437 /* Build and install a CONST_DECL for one value of the
7438 current enumeration type (one that was begun with start_enum).
7439 DECL_LOC is the location of the enumerator.
7440 LOC is the location of the '=' operator if any, DECL_LOC otherwise.
7441 Return a tree-list containing the CONST_DECL and its value.
7442 Assignment of sequential values by default is handled here. */
7444 tree
7445 build_enumerator (location_t decl_loc, location_t loc,
7446 struct c_enum_contents *the_enum, tree name, tree value)
7448 tree decl, type;
7450 /* Validate and default VALUE. */
7452 if (value != 0)
7454 /* Don't issue more errors for error_mark_node (i.e. an
7455 undeclared identifier) - just ignore the value expression. */
7456 if (value == error_mark_node)
7457 value = 0;
7458 else if (!INTEGRAL_TYPE_P (TREE_TYPE (value)))
7460 error_at (loc, "enumerator value for %qE is not an integer constant",
7461 name);
7462 value = 0;
7464 else
7466 if (TREE_CODE (value) != INTEGER_CST)
7468 value = c_fully_fold (value, false, NULL);
7469 if (TREE_CODE (value) == INTEGER_CST)
7470 pedwarn (loc, OPT_pedantic,
7471 "enumerator value for %qE is not an integer "
7472 "constant expression", name);
7474 if (TREE_CODE (value) != INTEGER_CST)
7476 error ("enumerator value for %qE is not an integer constant",
7477 name);
7478 value = 0;
7480 else
7482 value = default_conversion (value);
7483 constant_expression_warning (value);
7488 /* Default based on previous value. */
7489 /* It should no longer be possible to have NON_LVALUE_EXPR
7490 in the default. */
7491 if (value == 0)
7493 value = the_enum->enum_next_value;
7494 if (the_enum->enum_overflow)
7495 error_at (loc, "overflow in enumeration values");
7497 /* Even though the underlying type of an enum is unspecified, the
7498 type of enumeration constants is explicitly defined as int
7499 (6.4.4.3/2 in the C99 Standard). GCC allows any integer type as
7500 an extension. */
7501 else if (!int_fits_type_p (value, integer_type_node))
7502 pedwarn (loc, OPT_pedantic,
7503 "ISO C restricts enumerator values to range of %<int%>");
7505 /* The ISO C Standard mandates enumerators to have type int, even
7506 though the underlying type of an enum type is unspecified.
7507 However, GCC allows enumerators of any integer type as an
7508 extensions. Here we convert any enumerators that fit in an int
7509 to type int, to avoid promotions to unsigned types when comparing
7510 integers with enumerators that fit in the int range. When
7511 -pedantic is given, we would have already warned about those that
7512 don't fit. We have to do this here rather than in finish_enum
7513 because this value may be used to define more enumerators. */
7514 if (int_fits_type_p (value, integer_type_node))
7515 value = convert (integer_type_node, value);
7517 /* Set basis for default for next value. */
7518 the_enum->enum_next_value
7519 = build_binary_op (EXPR_LOC_OR_HERE (value),
7520 PLUS_EXPR, value, integer_one_node, 0);
7521 the_enum->enum_overflow = tree_int_cst_lt (the_enum->enum_next_value, value);
7523 /* Now create a declaration for the enum value name. */
7525 type = TREE_TYPE (value);
7526 type = c_common_type_for_size (MAX (TYPE_PRECISION (type),
7527 TYPE_PRECISION (integer_type_node)),
7528 (TYPE_PRECISION (type)
7529 >= TYPE_PRECISION (integer_type_node)
7530 && TYPE_UNSIGNED (type)));
7532 decl = build_decl (decl_loc, CONST_DECL, name, type);
7533 DECL_INITIAL (decl) = convert (type, value);
7534 pushdecl (decl);
7536 return tree_cons (decl, value, NULL_TREE);
7540 /* Create the FUNCTION_DECL for a function definition.
7541 DECLSPECS, DECLARATOR and ATTRIBUTES are the parts of
7542 the declaration; they describe the function's name and the type it returns,
7543 but twisted together in a fashion that parallels the syntax of C.
7545 This function creates a binding context for the function body
7546 as well as setting up the FUNCTION_DECL in current_function_decl.
7548 Returns 1 on success. If the DECLARATOR is not suitable for a function
7549 (it defines a datum instead), we return 0, which tells
7550 yyparse to report a parse error. */
7553 start_function (struct c_declspecs *declspecs, struct c_declarator *declarator,
7554 tree attributes)
7556 tree decl1, old_decl;
7557 tree restype, resdecl;
7558 location_t loc;
7560 current_function_returns_value = 0; /* Assume, until we see it does. */
7561 current_function_returns_null = 0;
7562 current_function_returns_abnormally = 0;
7563 warn_about_return_type = 0;
7564 c_switch_stack = NULL;
7566 /* Indicate no valid break/continue context by setting these variables
7567 to some non-null, non-label value. We'll notice and emit the proper
7568 error message in c_finish_bc_stmt. */
7569 c_break_label = c_cont_label = size_zero_node;
7571 decl1 = grokdeclarator (declarator, declspecs, FUNCDEF, true, NULL,
7572 &attributes, NULL, NULL, DEPRECATED_NORMAL);
7574 /* If the declarator is not suitable for a function definition,
7575 cause a syntax error. */
7576 if (decl1 == 0)
7577 return 0;
7579 loc = DECL_SOURCE_LOCATION (decl1);
7581 decl_attributes (&decl1, attributes, 0);
7583 if (DECL_DECLARED_INLINE_P (decl1)
7584 && DECL_UNINLINABLE (decl1)
7585 && lookup_attribute ("noinline", DECL_ATTRIBUTES (decl1)))
7586 warning_at (loc, OPT_Wattributes,
7587 "inline function %qD given attribute noinline",
7588 decl1);
7590 /* Handle gnu_inline attribute. */
7591 if (declspecs->inline_p
7592 && !flag_gnu89_inline
7593 && TREE_CODE (decl1) == FUNCTION_DECL
7594 && (lookup_attribute ("gnu_inline", DECL_ATTRIBUTES (decl1))
7595 || current_function_decl))
7597 if (declspecs->storage_class != csc_static)
7598 DECL_EXTERNAL (decl1) = !DECL_EXTERNAL (decl1);
7601 announce_function (decl1);
7603 if (!COMPLETE_OR_VOID_TYPE_P (TREE_TYPE (TREE_TYPE (decl1))))
7605 error_at (loc, "return type is an incomplete type");
7606 /* Make it return void instead. */
7607 TREE_TYPE (decl1)
7608 = build_function_type (void_type_node,
7609 TYPE_ARG_TYPES (TREE_TYPE (decl1)));
7612 if (warn_about_return_type)
7613 pedwarn_c99 (loc, flag_isoc99 ? 0
7614 : (warn_return_type ? OPT_Wreturn_type : OPT_Wimplicit_int),
7615 "return type defaults to %<int%>");
7617 /* Make the init_value nonzero so pushdecl knows this is not tentative.
7618 error_mark_node is replaced below (in pop_scope) with the BLOCK. */
7619 DECL_INITIAL (decl1) = error_mark_node;
7621 /* A nested function is not global. */
7622 if (current_function_decl != 0)
7623 TREE_PUBLIC (decl1) = 0;
7625 /* If this definition isn't a prototype and we had a prototype declaration
7626 before, copy the arg type info from that prototype. */
7627 old_decl = lookup_name_in_scope (DECL_NAME (decl1), current_scope);
7628 if (old_decl && TREE_CODE (old_decl) != FUNCTION_DECL)
7629 old_decl = 0;
7630 current_function_prototype_locus = UNKNOWN_LOCATION;
7631 current_function_prototype_built_in = false;
7632 current_function_prototype_arg_types = NULL_TREE;
7633 if (!prototype_p (TREE_TYPE (decl1)))
7635 if (old_decl != 0 && TREE_CODE (TREE_TYPE (old_decl)) == FUNCTION_TYPE
7636 && comptypes (TREE_TYPE (TREE_TYPE (decl1)),
7637 TREE_TYPE (TREE_TYPE (old_decl))))
7639 TREE_TYPE (decl1) = composite_type (TREE_TYPE (old_decl),
7640 TREE_TYPE (decl1));
7641 current_function_prototype_locus = DECL_SOURCE_LOCATION (old_decl);
7642 current_function_prototype_built_in
7643 = C_DECL_BUILTIN_PROTOTYPE (old_decl);
7644 current_function_prototype_arg_types
7645 = TYPE_ARG_TYPES (TREE_TYPE (decl1));
7647 if (TREE_PUBLIC (decl1))
7649 /* If there is an external prototype declaration of this
7650 function, record its location but do not copy information
7651 to this decl. This may be an invisible declaration
7652 (built-in or in a scope which has finished) or simply
7653 have more refined argument types than any declaration
7654 found above. */
7655 struct c_binding *b;
7656 for (b = I_SYMBOL_BINDING (DECL_NAME (decl1)); b; b = b->shadowed)
7657 if (B_IN_SCOPE (b, external_scope))
7658 break;
7659 if (b)
7661 tree ext_decl, ext_type;
7662 ext_decl = b->decl;
7663 ext_type = b->u.type ? b->u.type : TREE_TYPE (ext_decl);
7664 if (TREE_CODE (ext_type) == FUNCTION_TYPE
7665 && comptypes (TREE_TYPE (TREE_TYPE (decl1)),
7666 TREE_TYPE (ext_type)))
7668 current_function_prototype_locus
7669 = DECL_SOURCE_LOCATION (ext_decl);
7670 current_function_prototype_built_in
7671 = C_DECL_BUILTIN_PROTOTYPE (ext_decl);
7672 current_function_prototype_arg_types
7673 = TYPE_ARG_TYPES (ext_type);
7679 /* Optionally warn of old-fashioned def with no previous prototype. */
7680 if (warn_strict_prototypes
7681 && old_decl != error_mark_node
7682 && !prototype_p (TREE_TYPE (decl1))
7683 && C_DECL_ISNT_PROTOTYPE (old_decl))
7684 warning_at (loc, OPT_Wstrict_prototypes,
7685 "function declaration isn%'t a prototype");
7686 /* Optionally warn of any global def with no previous prototype. */
7687 else if (warn_missing_prototypes
7688 && old_decl != error_mark_node
7689 && TREE_PUBLIC (decl1)
7690 && !MAIN_NAME_P (DECL_NAME (decl1))
7691 && C_DECL_ISNT_PROTOTYPE (old_decl))
7692 warning_at (loc, OPT_Wmissing_prototypes,
7693 "no previous prototype for %qD", decl1);
7694 /* Optionally warn of any def with no previous prototype
7695 if the function has already been used. */
7696 else if (warn_missing_prototypes
7697 && old_decl != 0
7698 && old_decl != error_mark_node
7699 && TREE_USED (old_decl)
7700 && !prototype_p (TREE_TYPE (old_decl)))
7701 warning_at (loc, OPT_Wmissing_prototypes,
7702 "%qD was used with no prototype before its definition", decl1);
7703 /* Optionally warn of any global def with no previous declaration. */
7704 else if (warn_missing_declarations
7705 && TREE_PUBLIC (decl1)
7706 && old_decl == 0
7707 && !MAIN_NAME_P (DECL_NAME (decl1)))
7708 warning_at (loc, OPT_Wmissing_declarations,
7709 "no previous declaration for %qD",
7710 decl1);
7711 /* Optionally warn of any def with no previous declaration
7712 if the function has already been used. */
7713 else if (warn_missing_declarations
7714 && old_decl != 0
7715 && old_decl != error_mark_node
7716 && TREE_USED (old_decl)
7717 && C_DECL_IMPLICIT (old_decl))
7718 warning_at (loc, OPT_Wmissing_declarations,
7719 "%qD was used with no declaration before its definition", decl1);
7721 /* This function exists in static storage.
7722 (This does not mean `static' in the C sense!) */
7723 TREE_STATIC (decl1) = 1;
7725 /* This is the earliest point at which we might know the assembler
7726 name of the function. Thus, if it's set before this, die horribly. */
7727 gcc_assert (!DECL_ASSEMBLER_NAME_SET_P (decl1));
7729 /* If #pragma weak was used, mark the decl weak now. */
7730 if (current_scope == file_scope)
7731 maybe_apply_pragma_weak (decl1);
7733 /* Warn for unlikely, improbable, or stupid declarations of `main'. */
7734 if (warn_main && MAIN_NAME_P (DECL_NAME (decl1)))
7736 if (TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (decl1)))
7737 != integer_type_node)
7738 pedwarn (loc, OPT_Wmain, "return type of %qD is not %<int%>", decl1);
7740 check_main_parameter_types (decl1);
7742 if (!TREE_PUBLIC (decl1))
7743 pedwarn (loc, OPT_Wmain,
7744 "%qD is normally a non-static function", decl1);
7747 /* Record the decl so that the function name is defined.
7748 If we already have a decl for this name, and it is a FUNCTION_DECL,
7749 use the old decl. */
7751 current_function_decl = pushdecl (decl1);
7753 push_scope ();
7754 declare_parm_level ();
7756 restype = TREE_TYPE (TREE_TYPE (current_function_decl));
7757 resdecl = build_decl (loc, RESULT_DECL, NULL_TREE, restype);
7758 DECL_ARTIFICIAL (resdecl) = 1;
7759 DECL_IGNORED_P (resdecl) = 1;
7760 DECL_RESULT (current_function_decl) = resdecl;
7762 start_fname_decls ();
7764 return 1;
7767 /* Subroutine of store_parm_decls which handles new-style function
7768 definitions (prototype format). The parms already have decls, so we
7769 need only record them as in effect and complain if any redundant
7770 old-style parm decls were written. */
7771 static void
7772 store_parm_decls_newstyle (tree fndecl, const struct c_arg_info *arg_info)
7774 tree decl;
7775 c_arg_tag *tag;
7776 unsigned ix;
7778 if (current_scope->bindings)
7780 error_at (DECL_SOURCE_LOCATION (fndecl),
7781 "old-style parameter declarations in prototyped "
7782 "function definition");
7784 /* Get rid of the old-style declarations. */
7785 pop_scope ();
7786 push_scope ();
7788 /* Don't issue this warning for nested functions, and don't issue this
7789 warning if we got here because ARG_INFO_TYPES was error_mark_node
7790 (this happens when a function definition has just an ellipsis in
7791 its parameter list). */
7792 else if (!in_system_header && !current_function_scope
7793 && arg_info->types != error_mark_node)
7794 warning_at (DECL_SOURCE_LOCATION (fndecl), OPT_Wtraditional,
7795 "traditional C rejects ISO C style function definitions");
7797 /* Now make all the parameter declarations visible in the function body.
7798 We can bypass most of the grunt work of pushdecl. */
7799 for (decl = arg_info->parms; decl; decl = DECL_CHAIN (decl))
7801 DECL_CONTEXT (decl) = current_function_decl;
7802 if (DECL_NAME (decl))
7804 bind (DECL_NAME (decl), decl, current_scope,
7805 /*invisible=*/false, /*nested=*/false,
7806 UNKNOWN_LOCATION);
7807 if (!TREE_USED (decl))
7808 warn_if_shadowing (decl);
7810 else
7811 error_at (DECL_SOURCE_LOCATION (decl), "parameter name omitted");
7814 /* Record the parameter list in the function declaration. */
7815 DECL_ARGUMENTS (fndecl) = arg_info->parms;
7817 /* Now make all the ancillary declarations visible, likewise. */
7818 for (decl = arg_info->others; decl; decl = DECL_CHAIN (decl))
7820 DECL_CONTEXT (decl) = current_function_decl;
7821 if (DECL_NAME (decl))
7822 bind (DECL_NAME (decl), decl, current_scope,
7823 /*invisible=*/false,
7824 /*nested=*/(TREE_CODE (decl) == FUNCTION_DECL),
7825 UNKNOWN_LOCATION);
7828 /* And all the tag declarations. */
7829 FOR_EACH_VEC_ELT_REVERSE (c_arg_tag, arg_info->tags, ix, tag)
7830 if (tag->id)
7831 bind (tag->id, tag->type, current_scope,
7832 /*invisible=*/false, /*nested=*/false, UNKNOWN_LOCATION);
7835 /* Subroutine of store_parm_decls which handles old-style function
7836 definitions (separate parameter list and declarations). */
7838 static void
7839 store_parm_decls_oldstyle (tree fndecl, const struct c_arg_info *arg_info)
7841 struct c_binding *b;
7842 tree parm, decl, last;
7843 tree parmids = arg_info->parms;
7844 struct pointer_set_t *seen_args = pointer_set_create ();
7846 if (!in_system_header)
7847 warning_at (DECL_SOURCE_LOCATION (fndecl),
7848 OPT_Wold_style_definition, "old-style function definition");
7850 /* Match each formal parameter name with its declaration. Save each
7851 decl in the appropriate TREE_PURPOSE slot of the parmids chain. */
7852 for (parm = parmids; parm; parm = TREE_CHAIN (parm))
7854 if (TREE_VALUE (parm) == 0)
7856 error_at (DECL_SOURCE_LOCATION (fndecl),
7857 "parameter name missing from parameter list");
7858 TREE_PURPOSE (parm) = 0;
7859 continue;
7862 b = I_SYMBOL_BINDING (TREE_VALUE (parm));
7863 if (b && B_IN_CURRENT_SCOPE (b))
7865 decl = b->decl;
7866 /* Skip erroneous parameters. */
7867 if (decl == error_mark_node)
7868 continue;
7869 /* If we got something other than a PARM_DECL it is an error. */
7870 if (TREE_CODE (decl) != PARM_DECL)
7871 error_at (DECL_SOURCE_LOCATION (decl),
7872 "%qD declared as a non-parameter", decl);
7873 /* If the declaration is already marked, we have a duplicate
7874 name. Complain and ignore the duplicate. */
7875 else if (pointer_set_contains (seen_args, decl))
7877 error_at (DECL_SOURCE_LOCATION (decl),
7878 "multiple parameters named %qD", decl);
7879 TREE_PURPOSE (parm) = 0;
7880 continue;
7882 /* If the declaration says "void", complain and turn it into
7883 an int. */
7884 else if (VOID_TYPE_P (TREE_TYPE (decl)))
7886 error_at (DECL_SOURCE_LOCATION (decl),
7887 "parameter %qD declared with void type", decl);
7888 TREE_TYPE (decl) = integer_type_node;
7889 DECL_ARG_TYPE (decl) = integer_type_node;
7890 layout_decl (decl, 0);
7892 warn_if_shadowing (decl);
7894 /* If no declaration found, default to int. */
7895 else
7897 /* FIXME diagnostics: This should be the location of the argument,
7898 not the FNDECL. E.g., for an old-style declaration
7900 int f10(v) { blah; }
7902 We should use the location of the V, not the F10.
7903 Unfortunately, the V is an IDENTIFIER_NODE which has no
7904 location. In the future we need locations for c_arg_info
7905 entries.
7907 See gcc.dg/Wshadow-3.c for an example of this problem. */
7908 decl = build_decl (DECL_SOURCE_LOCATION (fndecl),
7909 PARM_DECL, TREE_VALUE (parm), integer_type_node);
7910 DECL_ARG_TYPE (decl) = TREE_TYPE (decl);
7911 pushdecl (decl);
7912 warn_if_shadowing (decl);
7914 if (flag_isoc99)
7915 pedwarn (DECL_SOURCE_LOCATION (decl),
7916 0, "type of %qD defaults to %<int%>", decl);
7917 else
7918 warning_at (DECL_SOURCE_LOCATION (decl),
7919 OPT_Wmissing_parameter_type,
7920 "type of %qD defaults to %<int%>", decl);
7923 TREE_PURPOSE (parm) = decl;
7924 pointer_set_insert (seen_args, decl);
7927 /* Now examine the parms chain for incomplete declarations
7928 and declarations with no corresponding names. */
7930 for (b = current_scope->bindings; b; b = b->prev)
7932 parm = b->decl;
7933 if (TREE_CODE (parm) != PARM_DECL)
7934 continue;
7936 if (TREE_TYPE (parm) != error_mark_node
7937 && !COMPLETE_TYPE_P (TREE_TYPE (parm)))
7939 error_at (DECL_SOURCE_LOCATION (parm),
7940 "parameter %qD has incomplete type", parm);
7941 TREE_TYPE (parm) = error_mark_node;
7944 if (!pointer_set_contains (seen_args, parm))
7946 error_at (DECL_SOURCE_LOCATION (parm),
7947 "declaration for parameter %qD but no such parameter",
7948 parm);
7950 /* Pretend the parameter was not missing.
7951 This gets us to a standard state and minimizes
7952 further error messages. */
7953 parmids = chainon (parmids, tree_cons (parm, 0, 0));
7957 /* Chain the declarations together in the order of the list of
7958 names. Store that chain in the function decl, replacing the
7959 list of names. Update the current scope to match. */
7960 DECL_ARGUMENTS (fndecl) = 0;
7962 for (parm = parmids; parm; parm = TREE_CHAIN (parm))
7963 if (TREE_PURPOSE (parm))
7964 break;
7965 if (parm && TREE_PURPOSE (parm))
7967 last = TREE_PURPOSE (parm);
7968 DECL_ARGUMENTS (fndecl) = last;
7970 for (parm = TREE_CHAIN (parm); parm; parm = TREE_CHAIN (parm))
7971 if (TREE_PURPOSE (parm))
7973 DECL_CHAIN (last) = TREE_PURPOSE (parm);
7974 last = TREE_PURPOSE (parm);
7976 DECL_CHAIN (last) = 0;
7979 pointer_set_destroy (seen_args);
7981 /* If there was a previous prototype,
7982 set the DECL_ARG_TYPE of each argument according to
7983 the type previously specified, and report any mismatches. */
7985 if (current_function_prototype_arg_types)
7987 tree type;
7988 for (parm = DECL_ARGUMENTS (fndecl),
7989 type = current_function_prototype_arg_types;
7990 parm || (type && TREE_VALUE (type) != error_mark_node
7991 && (TYPE_MAIN_VARIANT (TREE_VALUE (type)) != void_type_node));
7992 parm = DECL_CHAIN (parm), type = TREE_CHAIN (type))
7994 if (parm == 0 || type == 0
7995 || TYPE_MAIN_VARIANT (TREE_VALUE (type)) == void_type_node)
7997 if (current_function_prototype_built_in)
7998 warning_at (DECL_SOURCE_LOCATION (fndecl),
7999 0, "number of arguments doesn%'t match "
8000 "built-in prototype");
8001 else
8003 /* FIXME diagnostics: This should be the location of
8004 FNDECL, but there is bug when a prototype is
8005 declared inside function context, but defined
8006 outside of it (e.g., gcc.dg/pr15698-2.c). In
8007 which case FNDECL gets the location of the
8008 prototype, not the definition. */
8009 error_at (input_location,
8010 "number of arguments doesn%'t match prototype");
8012 error_at (current_function_prototype_locus,
8013 "prototype declaration");
8015 break;
8017 /* Type for passing arg must be consistent with that
8018 declared for the arg. ISO C says we take the unqualified
8019 type for parameters declared with qualified type. */
8020 if (TREE_TYPE (parm) != error_mark_node
8021 && TREE_TYPE (type) != error_mark_node
8022 && !comptypes (TYPE_MAIN_VARIANT (DECL_ARG_TYPE (parm)),
8023 TYPE_MAIN_VARIANT (TREE_VALUE (type))))
8025 if (TYPE_MAIN_VARIANT (TREE_TYPE (parm))
8026 == TYPE_MAIN_VARIANT (TREE_VALUE (type)))
8028 /* Adjust argument to match prototype. E.g. a previous
8029 `int foo(float);' prototype causes
8030 `int foo(x) float x; {...}' to be treated like
8031 `int foo(float x) {...}'. This is particularly
8032 useful for argument types like uid_t. */
8033 DECL_ARG_TYPE (parm) = TREE_TYPE (parm);
8035 if (targetm.calls.promote_prototypes (TREE_TYPE (current_function_decl))
8036 && INTEGRAL_TYPE_P (TREE_TYPE (parm))
8037 && TYPE_PRECISION (TREE_TYPE (parm))
8038 < TYPE_PRECISION (integer_type_node))
8039 DECL_ARG_TYPE (parm) = integer_type_node;
8041 /* ??? Is it possible to get here with a
8042 built-in prototype or will it always have
8043 been diagnosed as conflicting with an
8044 old-style definition and discarded? */
8045 if (current_function_prototype_built_in)
8046 warning_at (DECL_SOURCE_LOCATION (parm),
8047 OPT_pedantic, "promoted argument %qD "
8048 "doesn%'t match built-in prototype", parm);
8049 else
8051 pedwarn (DECL_SOURCE_LOCATION (parm),
8052 OPT_pedantic, "promoted argument %qD "
8053 "doesn%'t match prototype", parm);
8054 pedwarn (current_function_prototype_locus, OPT_pedantic,
8055 "prototype declaration");
8058 else
8060 if (current_function_prototype_built_in)
8061 warning_at (DECL_SOURCE_LOCATION (parm),
8062 0, "argument %qD doesn%'t match "
8063 "built-in prototype", parm);
8064 else
8066 error_at (DECL_SOURCE_LOCATION (parm),
8067 "argument %qD doesn%'t match prototype", parm);
8068 error_at (current_function_prototype_locus,
8069 "prototype declaration");
8074 TYPE_ACTUAL_ARG_TYPES (TREE_TYPE (fndecl)) = 0;
8077 /* Otherwise, create a prototype that would match. */
8079 else
8081 tree actual = 0, last = 0, type;
8083 for (parm = DECL_ARGUMENTS (fndecl); parm; parm = DECL_CHAIN (parm))
8085 type = tree_cons (NULL_TREE, DECL_ARG_TYPE (parm), NULL_TREE);
8086 if (last)
8087 TREE_CHAIN (last) = type;
8088 else
8089 actual = type;
8090 last = type;
8092 type = tree_cons (NULL_TREE, void_type_node, NULL_TREE);
8093 if (last)
8094 TREE_CHAIN (last) = type;
8095 else
8096 actual = type;
8098 /* We are going to assign a new value for the TYPE_ACTUAL_ARG_TYPES
8099 of the type of this function, but we need to avoid having this
8100 affect the types of other similarly-typed functions, so we must
8101 first force the generation of an identical (but separate) type
8102 node for the relevant function type. The new node we create
8103 will be a variant of the main variant of the original function
8104 type. */
8106 TREE_TYPE (fndecl) = build_variant_type_copy (TREE_TYPE (fndecl));
8108 TYPE_ACTUAL_ARG_TYPES (TREE_TYPE (fndecl)) = actual;
8112 /* Store parameter declarations passed in ARG_INFO into the current
8113 function declaration. */
8115 void
8116 store_parm_decls_from (struct c_arg_info *arg_info)
8118 current_function_arg_info = arg_info;
8119 store_parm_decls ();
8122 /* Store the parameter declarations into the current function declaration.
8123 This is called after parsing the parameter declarations, before
8124 digesting the body of the function.
8126 For an old-style definition, construct a prototype out of the old-style
8127 parameter declarations and inject it into the function's type. */
8129 void
8130 store_parm_decls (void)
8132 tree fndecl = current_function_decl;
8133 bool proto;
8135 /* The argument information block for FNDECL. */
8136 struct c_arg_info *arg_info = current_function_arg_info;
8137 current_function_arg_info = 0;
8139 /* True if this definition is written with a prototype. Note:
8140 despite C99 6.7.5.3p14, we can *not* treat an empty argument
8141 list in a function definition as equivalent to (void) -- an
8142 empty argument list specifies the function has no parameters,
8143 but only (void) sets up a prototype for future calls. */
8144 proto = arg_info->types != 0;
8146 if (proto)
8147 store_parm_decls_newstyle (fndecl, arg_info);
8148 else
8149 store_parm_decls_oldstyle (fndecl, arg_info);
8151 /* The next call to push_scope will be a function body. */
8153 next_is_function_body = true;
8155 /* Write a record describing this function definition to the prototypes
8156 file (if requested). */
8158 gen_aux_info_record (fndecl, 1, 0, proto);
8160 /* Initialize the RTL code for the function. */
8161 allocate_struct_function (fndecl, false);
8163 /* Begin the statement tree for this function. */
8164 DECL_SAVED_TREE (fndecl) = push_stmt_list ();
8166 /* ??? Insert the contents of the pending sizes list into the function
8167 to be evaluated. The only reason left to have this is
8168 void foo(int n, int array[n++])
8169 because we throw away the array type in favor of a pointer type, and
8170 thus won't naturally see the SAVE_EXPR containing the increment. All
8171 other pending sizes would be handled by gimplify_parameters. */
8172 if (arg_info->pending_sizes)
8173 add_stmt (arg_info->pending_sizes);
8177 /* Finish up a function declaration and compile that function
8178 all the way to assembler language output. Then free the storage
8179 for the function definition.
8181 This is called after parsing the body of the function definition. */
8183 void
8184 finish_function (void)
8186 tree fndecl = current_function_decl;
8188 if (c_dialect_objc ())
8189 objc_finish_function ();
8191 if (TREE_CODE (fndecl) == FUNCTION_DECL
8192 && targetm.calls.promote_prototypes (TREE_TYPE (fndecl)))
8194 tree args = DECL_ARGUMENTS (fndecl);
8195 for (; args; args = DECL_CHAIN (args))
8197 tree type = TREE_TYPE (args);
8198 if (INTEGRAL_TYPE_P (type)
8199 && TYPE_PRECISION (type) < TYPE_PRECISION (integer_type_node))
8200 DECL_ARG_TYPE (args) = integer_type_node;
8204 if (DECL_INITIAL (fndecl) && DECL_INITIAL (fndecl) != error_mark_node)
8205 BLOCK_SUPERCONTEXT (DECL_INITIAL (fndecl)) = fndecl;
8207 /* Must mark the RESULT_DECL as being in this function. */
8209 if (DECL_RESULT (fndecl) && DECL_RESULT (fndecl) != error_mark_node)
8210 DECL_CONTEXT (DECL_RESULT (fndecl)) = fndecl;
8212 if (MAIN_NAME_P (DECL_NAME (fndecl)) && flag_hosted
8213 && TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (fndecl)))
8214 == integer_type_node && flag_isoc99)
8216 /* Hack. We don't want the middle-end to warn that this return
8217 is unreachable, so we mark its location as special. Using
8218 UNKNOWN_LOCATION has the problem that it gets clobbered in
8219 annotate_one_with_locus. A cleaner solution might be to
8220 ensure ! should_carry_locus_p (stmt), but that needs a flag.
8222 c_finish_return (BUILTINS_LOCATION, integer_zero_node, NULL_TREE);
8225 /* Tie off the statement tree for this function. */
8226 DECL_SAVED_TREE (fndecl) = pop_stmt_list (DECL_SAVED_TREE (fndecl));
8228 finish_fname_decls ();
8230 /* Complain if there's just no return statement. */
8231 if (warn_return_type
8232 && TREE_CODE (TREE_TYPE (TREE_TYPE (fndecl))) != VOID_TYPE
8233 && !current_function_returns_value && !current_function_returns_null
8234 /* Don't complain if we are no-return. */
8235 && !current_function_returns_abnormally
8236 /* Don't complain if we are declared noreturn. */
8237 && !TREE_THIS_VOLATILE (fndecl)
8238 /* Don't warn for main(). */
8239 && !MAIN_NAME_P (DECL_NAME (fndecl))
8240 /* Or if they didn't actually specify a return type. */
8241 && !C_FUNCTION_IMPLICIT_INT (fndecl)
8242 /* Normally, with -Wreturn-type, flow will complain, but we might
8243 optimize out static functions. */
8244 && !TREE_PUBLIC (fndecl))
8246 warning (OPT_Wreturn_type,
8247 "no return statement in function returning non-void");
8248 TREE_NO_WARNING (fndecl) = 1;
8251 /* Complain about parameters that are only set, but never otherwise used. */
8252 if (warn_unused_but_set_parameter)
8254 tree decl;
8256 for (decl = DECL_ARGUMENTS (fndecl);
8257 decl;
8258 decl = DECL_CHAIN (decl))
8259 if (TREE_USED (decl)
8260 && TREE_CODE (decl) == PARM_DECL
8261 && !DECL_READ_P (decl)
8262 && DECL_NAME (decl)
8263 && !DECL_ARTIFICIAL (decl)
8264 && !TREE_NO_WARNING (decl))
8265 warning_at (DECL_SOURCE_LOCATION (decl),
8266 OPT_Wunused_but_set_parameter,
8267 "parameter %qD set but not used", decl);
8270 /* Store the end of the function, so that we get good line number
8271 info for the epilogue. */
8272 cfun->function_end_locus = input_location;
8274 /* Finalize the ELF visibility for the function. */
8275 c_determine_visibility (fndecl);
8277 /* For GNU C extern inline functions disregard inline limits. */
8278 if (DECL_EXTERNAL (fndecl)
8279 && DECL_DECLARED_INLINE_P (fndecl))
8280 DECL_DISREGARD_INLINE_LIMITS (fndecl) = 1;
8282 /* Genericize before inlining. Delay genericizing nested functions
8283 until their parent function is genericized. Since finalizing
8284 requires GENERIC, delay that as well. */
8286 if (DECL_INITIAL (fndecl) && DECL_INITIAL (fndecl) != error_mark_node
8287 && !undef_nested_function)
8289 if (!decl_function_context (fndecl))
8291 invoke_plugin_callbacks (PLUGIN_PRE_GENERICIZE, fndecl);
8292 c_genericize (fndecl);
8294 /* ??? Objc emits functions after finalizing the compilation unit.
8295 This should be cleaned up later and this conditional removed. */
8296 if (cgraph_global_info_ready)
8298 cgraph_add_new_function (fndecl, false);
8299 return;
8301 cgraph_finalize_function (fndecl, false);
8303 else
8305 /* Register this function with cgraph just far enough to get it
8306 added to our parent's nested function list. Handy, since the
8307 C front end doesn't have such a list. */
8308 (void) cgraph_get_create_node (fndecl);
8312 if (!decl_function_context (fndecl))
8313 undef_nested_function = false;
8315 /* We're leaving the context of this function, so zap cfun.
8316 It's still in DECL_STRUCT_FUNCTION, and we'll restore it in
8317 tree_rest_of_compilation. */
8318 set_cfun (NULL);
8319 current_function_decl = NULL;
8322 /* Check the declarations given in a for-loop for satisfying the C99
8323 constraints. If exactly one such decl is found, return it. LOC is
8324 the location of the opening parenthesis of the for loop. The last
8325 parameter allows you to control the "for loop initial declarations
8326 are only allowed in C99 mode". Normally, you should pass
8327 flag_isoc99 as that parameter. But in some cases (Objective-C
8328 foreach loop, for example) we want to run the checks in this
8329 function even if not in C99 mode, so we allow the caller to turn
8330 off the error about not being in C99 mode.
8333 tree
8334 check_for_loop_decls (location_t loc, bool turn_off_iso_c99_error)
8336 struct c_binding *b;
8337 tree one_decl = NULL_TREE;
8338 int n_decls = 0;
8340 if (!turn_off_iso_c99_error)
8342 static bool hint = true;
8343 /* If we get here, declarations have been used in a for loop without
8344 the C99 for loop scope. This doesn't make much sense, so don't
8345 allow it. */
8346 error_at (loc, "%<for%> loop initial declarations "
8347 "are only allowed in C99 mode");
8348 if (hint)
8350 inform (loc,
8351 "use option -std=c99 or -std=gnu99 to compile your code");
8352 hint = false;
8354 return NULL_TREE;
8356 /* C99 subclause 6.8.5 paragraph 3:
8358 [#3] The declaration part of a for statement shall only
8359 declare identifiers for objects having storage class auto or
8360 register.
8362 It isn't clear whether, in this sentence, "identifiers" binds to
8363 "shall only declare" or to "objects" - that is, whether all identifiers
8364 declared must be identifiers for objects, or whether the restriction
8365 only applies to those that are. (A question on this in comp.std.c
8366 in November 2000 received no answer.) We implement the strictest
8367 interpretation, to avoid creating an extension which later causes
8368 problems. */
8370 for (b = current_scope->bindings; b; b = b->prev)
8372 tree id = b->id;
8373 tree decl = b->decl;
8375 if (!id)
8376 continue;
8378 switch (TREE_CODE (decl))
8380 case VAR_DECL:
8382 location_t decl_loc = DECL_SOURCE_LOCATION (decl);
8383 if (TREE_STATIC (decl))
8384 error_at (decl_loc,
8385 "declaration of static variable %qD in %<for%> loop "
8386 "initial declaration", decl);
8387 else if (DECL_EXTERNAL (decl))
8388 error_at (decl_loc,
8389 "declaration of %<extern%> variable %qD in %<for%> loop "
8390 "initial declaration", decl);
8392 break;
8394 case RECORD_TYPE:
8395 error_at (loc,
8396 "%<struct %E%> declared in %<for%> loop initial "
8397 "declaration", id);
8398 break;
8399 case UNION_TYPE:
8400 error_at (loc,
8401 "%<union %E%> declared in %<for%> loop initial declaration",
8402 id);
8403 break;
8404 case ENUMERAL_TYPE:
8405 error_at (loc, "%<enum %E%> declared in %<for%> loop "
8406 "initial declaration", id);
8407 break;
8408 default:
8409 error_at (loc, "declaration of non-variable "
8410 "%qD in %<for%> loop initial declaration", decl);
8413 n_decls++;
8414 one_decl = decl;
8417 return n_decls == 1 ? one_decl : NULL_TREE;
8420 /* Save and reinitialize the variables
8421 used during compilation of a C function. */
8423 void
8424 c_push_function_context (void)
8426 struct language_function *p;
8427 p = ggc_alloc_language_function ();
8428 cfun->language = p;
8430 p->base.x_stmt_tree = c_stmt_tree;
8431 c_stmt_tree.x_cur_stmt_list
8432 = VEC_copy (tree, gc, c_stmt_tree.x_cur_stmt_list);
8433 p->x_break_label = c_break_label;
8434 p->x_cont_label = c_cont_label;
8435 p->x_switch_stack = c_switch_stack;
8436 p->arg_info = current_function_arg_info;
8437 p->returns_value = current_function_returns_value;
8438 p->returns_null = current_function_returns_null;
8439 p->returns_abnormally = current_function_returns_abnormally;
8440 p->warn_about_return_type = warn_about_return_type;
8442 push_function_context ();
8445 /* Restore the variables used during compilation of a C function. */
8447 void
8448 c_pop_function_context (void)
8450 struct language_function *p;
8452 pop_function_context ();
8453 p = cfun->language;
8454 cfun->language = NULL;
8456 if (DECL_STRUCT_FUNCTION (current_function_decl) == 0
8457 && DECL_SAVED_TREE (current_function_decl) == NULL_TREE)
8459 /* Stop pointing to the local nodes about to be freed. */
8460 /* But DECL_INITIAL must remain nonzero so we know this
8461 was an actual function definition. */
8462 DECL_INITIAL (current_function_decl) = error_mark_node;
8463 DECL_ARGUMENTS (current_function_decl) = 0;
8466 c_stmt_tree = p->base.x_stmt_tree;
8467 c_break_label = p->x_break_label;
8468 c_cont_label = p->x_cont_label;
8469 c_switch_stack = p->x_switch_stack;
8470 current_function_arg_info = p->arg_info;
8471 current_function_returns_value = p->returns_value;
8472 current_function_returns_null = p->returns_null;
8473 current_function_returns_abnormally = p->returns_abnormally;
8474 warn_about_return_type = p->warn_about_return_type;
8477 /* The functions below are required for functionality of doing
8478 function at once processing in the C front end. Currently these
8479 functions are not called from anywhere in the C front end, but as
8480 these changes continue, that will change. */
8482 /* Returns the stmt_tree (if any) to which statements are currently
8483 being added. If there is no active statement-tree, NULL is
8484 returned. */
8486 stmt_tree
8487 current_stmt_tree (void)
8489 return &c_stmt_tree;
8492 /* Return the global value of T as a symbol. */
8494 tree
8495 identifier_global_value (tree t)
8497 struct c_binding *b;
8499 for (b = I_SYMBOL_BINDING (t); b; b = b->shadowed)
8500 if (B_IN_FILE_SCOPE (b) || B_IN_EXTERNAL_SCOPE (b))
8501 return b->decl;
8503 return 0;
8506 /* In C, the only C-linkage public declaration is at file scope. */
8508 tree
8509 c_linkage_bindings (tree name)
8511 return identifier_global_value (name);
8514 /* Record a builtin type for C. If NAME is non-NULL, it is the name used;
8515 otherwise the name is found in ridpointers from RID_INDEX. */
8517 void
8518 record_builtin_type (enum rid rid_index, const char *name, tree type)
8520 tree id, decl;
8521 if (name == 0)
8522 id = ridpointers[(int) rid_index];
8523 else
8524 id = get_identifier (name);
8525 decl = build_decl (UNKNOWN_LOCATION, TYPE_DECL, id, type);
8526 pushdecl (decl);
8527 if (debug_hooks->type_decl)
8528 debug_hooks->type_decl (decl, false);
8531 /* Build the void_list_node (void_type_node having been created). */
8532 tree
8533 build_void_list_node (void)
8535 tree t = build_tree_list (NULL_TREE, void_type_node);
8536 return t;
8539 /* Return a c_parm structure with the given SPECS, ATTRS and DECLARATOR. */
8541 struct c_parm *
8542 build_c_parm (struct c_declspecs *specs, tree attrs,
8543 struct c_declarator *declarator)
8545 struct c_parm *ret = XOBNEW (&parser_obstack, struct c_parm);
8546 ret->specs = specs;
8547 ret->attrs = attrs;
8548 ret->declarator = declarator;
8549 return ret;
8552 /* Return a declarator with nested attributes. TARGET is the inner
8553 declarator to which these attributes apply. ATTRS are the
8554 attributes. */
8556 struct c_declarator *
8557 build_attrs_declarator (tree attrs, struct c_declarator *target)
8559 struct c_declarator *ret = XOBNEW (&parser_obstack, struct c_declarator);
8560 ret->kind = cdk_attrs;
8561 ret->declarator = target;
8562 ret->u.attrs = attrs;
8563 return ret;
8566 /* Return a declarator for a function with arguments specified by ARGS
8567 and return type specified by TARGET. */
8569 struct c_declarator *
8570 build_function_declarator (struct c_arg_info *args,
8571 struct c_declarator *target)
8573 struct c_declarator *ret = XOBNEW (&parser_obstack, struct c_declarator);
8574 ret->kind = cdk_function;
8575 ret->declarator = target;
8576 ret->u.arg_info = args;
8577 return ret;
8580 /* Return a declarator for the identifier IDENT (which may be
8581 NULL_TREE for an abstract declarator). */
8583 struct c_declarator *
8584 build_id_declarator (tree ident)
8586 struct c_declarator *ret = XOBNEW (&parser_obstack, struct c_declarator);
8587 ret->kind = cdk_id;
8588 ret->declarator = 0;
8589 ret->u.id = ident;
8590 /* Default value - may get reset to a more precise location. */
8591 ret->id_loc = input_location;
8592 return ret;
8595 /* Return something to represent absolute declarators containing a *.
8596 TARGET is the absolute declarator that the * contains.
8597 TYPE_QUALS_ATTRS is a structure for type qualifiers and attributes
8598 to apply to the pointer type. */
8600 struct c_declarator *
8601 make_pointer_declarator (struct c_declspecs *type_quals_attrs,
8602 struct c_declarator *target)
8604 tree attrs;
8605 int quals = 0;
8606 struct c_declarator *itarget = target;
8607 struct c_declarator *ret = XOBNEW (&parser_obstack, struct c_declarator);
8608 if (type_quals_attrs)
8610 attrs = type_quals_attrs->attrs;
8611 quals = quals_from_declspecs (type_quals_attrs);
8612 if (attrs != NULL_TREE)
8613 itarget = build_attrs_declarator (attrs, target);
8615 ret->kind = cdk_pointer;
8616 ret->declarator = itarget;
8617 ret->u.pointer_quals = quals;
8618 return ret;
8621 /* Return a pointer to a structure for an empty list of declaration
8622 specifiers. */
8624 struct c_declspecs *
8625 build_null_declspecs (void)
8627 struct c_declspecs *ret = XOBNEW (&parser_obstack, struct c_declspecs);
8628 ret->type = 0;
8629 ret->expr = 0;
8630 ret->decl_attr = 0;
8631 ret->attrs = 0;
8632 ret->typespec_word = cts_none;
8633 ret->storage_class = csc_none;
8634 ret->expr_const_operands = true;
8635 ret->declspecs_seen_p = false;
8636 ret->typespec_kind = ctsk_none;
8637 ret->non_sc_seen_p = false;
8638 ret->typedef_p = false;
8639 ret->explicit_signed_p = false;
8640 ret->deprecated_p = false;
8641 ret->default_int_p = false;
8642 ret->long_p = false;
8643 ret->long_long_p = false;
8644 ret->short_p = false;
8645 ret->signed_p = false;
8646 ret->unsigned_p = false;
8647 ret->complex_p = false;
8648 ret->inline_p = false;
8649 ret->thread_p = false;
8650 ret->const_p = false;
8651 ret->volatile_p = false;
8652 ret->restrict_p = false;
8653 ret->saturating_p = false;
8654 ret->address_space = ADDR_SPACE_GENERIC;
8655 return ret;
8658 /* Add the address space ADDRSPACE to the declaration specifiers
8659 SPECS, returning SPECS. */
8661 struct c_declspecs *
8662 declspecs_add_addrspace (struct c_declspecs *specs, addr_space_t as)
8664 specs->non_sc_seen_p = true;
8665 specs->declspecs_seen_p = true;
8667 if (!ADDR_SPACE_GENERIC_P (specs->address_space)
8668 && specs->address_space != as)
8669 error ("incompatible address space qualifiers %qs and %qs",
8670 c_addr_space_name (as),
8671 c_addr_space_name (specs->address_space));
8672 else
8673 specs->address_space = as;
8674 return specs;
8677 /* Add the type qualifier QUAL to the declaration specifiers SPECS,
8678 returning SPECS. */
8680 struct c_declspecs *
8681 declspecs_add_qual (struct c_declspecs *specs, tree qual)
8683 enum rid i;
8684 bool dupe = false;
8685 specs->non_sc_seen_p = true;
8686 specs->declspecs_seen_p = true;
8687 gcc_assert (TREE_CODE (qual) == IDENTIFIER_NODE
8688 && C_IS_RESERVED_WORD (qual));
8689 i = C_RID_CODE (qual);
8690 switch (i)
8692 case RID_CONST:
8693 dupe = specs->const_p;
8694 specs->const_p = true;
8695 break;
8696 case RID_VOLATILE:
8697 dupe = specs->volatile_p;
8698 specs->volatile_p = true;
8699 break;
8700 case RID_RESTRICT:
8701 dupe = specs->restrict_p;
8702 specs->restrict_p = true;
8703 break;
8704 default:
8705 gcc_unreachable ();
8707 if (dupe && !flag_isoc99)
8708 pedwarn (input_location, OPT_pedantic, "duplicate %qE", qual);
8709 return specs;
8712 /* Add the type specifier TYPE to the declaration specifiers SPECS,
8713 returning SPECS. */
8715 struct c_declspecs *
8716 declspecs_add_type (location_t loc, struct c_declspecs *specs,
8717 struct c_typespec spec)
8719 tree type = spec.spec;
8720 specs->non_sc_seen_p = true;
8721 specs->declspecs_seen_p = true;
8722 specs->typespec_kind = spec.kind;
8723 if (TREE_DEPRECATED (type))
8724 specs->deprecated_p = true;
8726 /* Handle type specifier keywords. */
8727 if (TREE_CODE (type) == IDENTIFIER_NODE
8728 && C_IS_RESERVED_WORD (type)
8729 && C_RID_CODE (type) != RID_CXX_COMPAT_WARN)
8731 enum rid i = C_RID_CODE (type);
8732 if (specs->type)
8734 error_at (loc, "two or more data types in declaration specifiers");
8735 return specs;
8737 if ((int) i <= (int) RID_LAST_MODIFIER)
8739 /* "long", "short", "signed", "unsigned", "_Complex" or "_Sat". */
8740 bool dupe = false;
8741 switch (i)
8743 case RID_LONG:
8744 if (specs->long_long_p)
8746 error_at (loc, "%<long long long%> is too long for GCC");
8747 break;
8749 if (specs->long_p)
8751 if (specs->typespec_word == cts_double)
8753 error_at (loc,
8754 ("both %<long long%> and %<double%> in "
8755 "declaration specifiers"));
8756 break;
8758 pedwarn_c90 (loc, OPT_Wlong_long,
8759 "ISO C90 does not support %<long long%>");
8760 specs->long_long_p = 1;
8761 break;
8763 if (specs->short_p)
8764 error_at (loc,
8765 ("both %<long%> and %<short%> in "
8766 "declaration specifiers"));
8767 else if (specs->typespec_word == cts_void)
8768 error_at (loc,
8769 ("both %<long%> and %<void%> in "
8770 "declaration specifiers"));
8771 else if (specs->typespec_word == cts_int128)
8772 error_at (loc,
8773 ("both %<long%> and %<__int128%> in "
8774 "declaration specifiers"));
8775 else if (specs->typespec_word == cts_bool)
8776 error_at (loc,
8777 ("both %<long%> and %<_Bool%> in "
8778 "declaration specifiers"));
8779 else if (specs->typespec_word == cts_char)
8780 error_at (loc,
8781 ("both %<long%> and %<char%> in "
8782 "declaration specifiers"));
8783 else if (specs->typespec_word == cts_float)
8784 error_at (loc,
8785 ("both %<long%> and %<float%> in "
8786 "declaration specifiers"));
8787 else if (specs->typespec_word == cts_dfloat32)
8788 error_at (loc,
8789 ("both %<long%> and %<_Decimal32%> in "
8790 "declaration specifiers"));
8791 else if (specs->typespec_word == cts_dfloat64)
8792 error_at (loc,
8793 ("both %<long%> and %<_Decimal64%> in "
8794 "declaration specifiers"));
8795 else if (specs->typespec_word == cts_dfloat128)
8796 error_at (loc,
8797 ("both %<long%> and %<_Decimal128%> in "
8798 "declaration specifiers"));
8799 else
8800 specs->long_p = true;
8801 break;
8802 case RID_SHORT:
8803 dupe = specs->short_p;
8804 if (specs->long_p)
8805 error_at (loc,
8806 ("both %<long%> and %<short%> in "
8807 "declaration specifiers"));
8808 else if (specs->typespec_word == cts_void)
8809 error_at (loc,
8810 ("both %<short%> and %<void%> in "
8811 "declaration specifiers"));
8812 else if (specs->typespec_word == cts_int128)
8813 error_at (loc,
8814 ("both %<short%> and %<__int128%> in "
8815 "declaration specifiers"));
8816 else if (specs->typespec_word == cts_bool)
8817 error_at (loc,
8818 ("both %<short%> and %<_Bool%> in "
8819 "declaration specifiers"));
8820 else if (specs->typespec_word == cts_char)
8821 error_at (loc,
8822 ("both %<short%> and %<char%> in "
8823 "declaration specifiers"));
8824 else if (specs->typespec_word == cts_float)
8825 error_at (loc,
8826 ("both %<short%> and %<float%> in "
8827 "declaration specifiers"));
8828 else if (specs->typespec_word == cts_double)
8829 error_at (loc,
8830 ("both %<short%> and %<double%> in "
8831 "declaration specifiers"));
8832 else if (specs->typespec_word == cts_dfloat32)
8833 error_at (loc,
8834 ("both %<short%> and %<_Decimal32%> in "
8835 "declaration specifiers"));
8836 else if (specs->typespec_word == cts_dfloat64)
8837 error_at (loc,
8838 ("both %<short%> and %<_Decimal64%> in "
8839 "declaration specifiers"));
8840 else if (specs->typespec_word == cts_dfloat128)
8841 error_at (loc,
8842 ("both %<short%> and %<_Decimal128%> in "
8843 "declaration specifiers"));
8844 else
8845 specs->short_p = true;
8846 break;
8847 case RID_SIGNED:
8848 dupe = specs->signed_p;
8849 if (specs->unsigned_p)
8850 error_at (loc,
8851 ("both %<signed%> and %<unsigned%> in "
8852 "declaration specifiers"));
8853 else if (specs->typespec_word == cts_void)
8854 error_at (loc,
8855 ("both %<signed%> and %<void%> in "
8856 "declaration specifiers"));
8857 else if (specs->typespec_word == cts_bool)
8858 error_at (loc,
8859 ("both %<signed%> and %<_Bool%> in "
8860 "declaration specifiers"));
8861 else if (specs->typespec_word == cts_float)
8862 error_at (loc,
8863 ("both %<signed%> and %<float%> in "
8864 "declaration specifiers"));
8865 else if (specs->typespec_word == cts_double)
8866 error_at (loc,
8867 ("both %<signed%> and %<double%> in "
8868 "declaration specifiers"));
8869 else if (specs->typespec_word == cts_dfloat32)
8870 error_at (loc,
8871 ("both %<signed%> and %<_Decimal32%> in "
8872 "declaration specifiers"));
8873 else if (specs->typespec_word == cts_dfloat64)
8874 error_at (loc,
8875 ("both %<signed%> and %<_Decimal64%> in "
8876 "declaration specifiers"));
8877 else if (specs->typespec_word == cts_dfloat128)
8878 error_at (loc,
8879 ("both %<signed%> and %<_Decimal128%> in "
8880 "declaration specifiers"));
8881 else
8882 specs->signed_p = true;
8883 break;
8884 case RID_UNSIGNED:
8885 dupe = specs->unsigned_p;
8886 if (specs->signed_p)
8887 error_at (loc,
8888 ("both %<signed%> and %<unsigned%> in "
8889 "declaration specifiers"));
8890 else if (specs->typespec_word == cts_void)
8891 error_at (loc,
8892 ("both %<unsigned%> and %<void%> in "
8893 "declaration specifiers"));
8894 else if (specs->typespec_word == cts_bool)
8895 error_at (loc,
8896 ("both %<unsigned%> and %<_Bool%> in "
8897 "declaration specifiers"));
8898 else if (specs->typespec_word == cts_float)
8899 error_at (loc,
8900 ("both %<unsigned%> and %<float%> in "
8901 "declaration specifiers"));
8902 else if (specs->typespec_word == cts_double)
8903 error_at (loc,
8904 ("both %<unsigned%> and %<double%> in "
8905 "declaration specifiers"));
8906 else if (specs->typespec_word == cts_dfloat32)
8907 error_at (loc,
8908 ("both %<unsigned%> and %<_Decimal32%> in "
8909 "declaration specifiers"));
8910 else if (specs->typespec_word == cts_dfloat64)
8911 error_at (loc,
8912 ("both %<unsigned%> and %<_Decimal64%> in "
8913 "declaration specifiers"));
8914 else if (specs->typespec_word == cts_dfloat128)
8915 error_at (loc,
8916 ("both %<unsigned%> and %<_Decimal128%> in "
8917 "declaration specifiers"));
8918 else
8919 specs->unsigned_p = true;
8920 break;
8921 case RID_COMPLEX:
8922 dupe = specs->complex_p;
8923 if (!flag_isoc99 && !in_system_header)
8924 pedwarn (loc, OPT_pedantic,
8925 "ISO C90 does not support complex types");
8926 if (specs->typespec_word == cts_void)
8927 error_at (loc,
8928 ("both %<complex%> and %<void%> in "
8929 "declaration specifiers"));
8930 else if (specs->typespec_word == cts_bool)
8931 error_at (loc,
8932 ("both %<complex%> and %<_Bool%> in "
8933 "declaration specifiers"));
8934 else if (specs->typespec_word == cts_dfloat32)
8935 error_at (loc,
8936 ("both %<complex%> and %<_Decimal32%> in "
8937 "declaration specifiers"));
8938 else if (specs->typespec_word == cts_dfloat64)
8939 error_at (loc,
8940 ("both %<complex%> and %<_Decimal64%> in "
8941 "declaration specifiers"));
8942 else if (specs->typespec_word == cts_dfloat128)
8943 error_at (loc,
8944 ("both %<complex%> and %<_Decimal128%> in "
8945 "declaration specifiers"));
8946 else if (specs->typespec_word == cts_fract)
8947 error_at (loc,
8948 ("both %<complex%> and %<_Fract%> in "
8949 "declaration specifiers"));
8950 else if (specs->typespec_word == cts_accum)
8951 error_at (loc,
8952 ("both %<complex%> and %<_Accum%> in "
8953 "declaration specifiers"));
8954 else if (specs->saturating_p)
8955 error_at (loc,
8956 ("both %<complex%> and %<_Sat%> in "
8957 "declaration specifiers"));
8958 else
8959 specs->complex_p = true;
8960 break;
8961 case RID_SAT:
8962 dupe = specs->saturating_p;
8963 pedwarn (loc, OPT_pedantic,
8964 "ISO C does not support saturating types");
8965 if (specs->typespec_word == cts_int128)
8967 error_at (loc,
8968 ("both %<_Sat%> and %<__int128%> in "
8969 "declaration specifiers"));
8971 else if (specs->typespec_word == cts_void)
8972 error_at (loc,
8973 ("both %<_Sat%> and %<void%> in "
8974 "declaration specifiers"));
8975 else if (specs->typespec_word == cts_bool)
8976 error_at (loc,
8977 ("both %<_Sat%> and %<_Bool%> in "
8978 "declaration specifiers"));
8979 else if (specs->typespec_word == cts_char)
8980 error_at (loc,
8981 ("both %<_Sat%> and %<char%> in "
8982 "declaration specifiers"));
8983 else if (specs->typespec_word == cts_int)
8984 error_at (loc,
8985 ("both %<_Sat%> and %<int%> in "
8986 "declaration specifiers"));
8987 else if (specs->typespec_word == cts_float)
8988 error_at (loc,
8989 ("both %<_Sat%> and %<float%> in "
8990 "declaration specifiers"));
8991 else if (specs->typespec_word == cts_double)
8992 error_at (loc,
8993 ("both %<_Sat%> and %<double%> in "
8994 "declaration specifiers"));
8995 else if (specs->typespec_word == cts_dfloat32)
8996 error_at (loc,
8997 ("both %<_Sat%> and %<_Decimal32%> in "
8998 "declaration specifiers"));
8999 else if (specs->typespec_word == cts_dfloat64)
9000 error_at (loc,
9001 ("both %<_Sat%> and %<_Decimal64%> in "
9002 "declaration specifiers"));
9003 else if (specs->typespec_word == cts_dfloat128)
9004 error_at (loc,
9005 ("both %<_Sat%> and %<_Decimal128%> in "
9006 "declaration specifiers"));
9007 else if (specs->complex_p)
9008 error_at (loc,
9009 ("both %<_Sat%> and %<complex%> in "
9010 "declaration specifiers"));
9011 else
9012 specs->saturating_p = true;
9013 break;
9014 default:
9015 gcc_unreachable ();
9018 if (dupe)
9019 error_at (loc, "duplicate %qE", type);
9021 return specs;
9023 else
9025 /* "void", "_Bool", "char", "int", "float", "double", "_Decimal32",
9026 "__int128", "_Decimal64", "_Decimal128", "_Fract" or "_Accum". */
9027 if (specs->typespec_word != cts_none)
9029 error_at (loc,
9030 "two or more data types in declaration specifiers");
9031 return specs;
9033 switch (i)
9035 case RID_INT128:
9036 if (int128_integer_type_node == NULL_TREE)
9038 error_at (loc, "%<__int128%> is not supported for this target");
9039 return specs;
9041 if (!in_system_header)
9042 pedwarn (loc, OPT_pedantic,
9043 "ISO C does not support %<__int128%> type");
9045 if (specs->long_p)
9046 error_at (loc,
9047 ("both %<__int128%> and %<long%> in "
9048 "declaration specifiers"));
9049 else if (specs->saturating_p)
9050 error_at (loc,
9051 ("both %<_Sat%> and %<__int128%> in "
9052 "declaration specifiers"));
9053 else if (specs->short_p)
9054 error_at (loc,
9055 ("both %<__int128%> and %<short%> in "
9056 "declaration specifiers"));
9057 else
9058 specs->typespec_word = cts_int128;
9059 return specs;
9060 case RID_VOID:
9061 if (specs->long_p)
9062 error_at (loc,
9063 ("both %<long%> and %<void%> in "
9064 "declaration specifiers"));
9065 else if (specs->short_p)
9066 error_at (loc,
9067 ("both %<short%> and %<void%> in "
9068 "declaration specifiers"));
9069 else if (specs->signed_p)
9070 error_at (loc,
9071 ("both %<signed%> and %<void%> in "
9072 "declaration specifiers"));
9073 else if (specs->unsigned_p)
9074 error_at (loc,
9075 ("both %<unsigned%> and %<void%> in "
9076 "declaration specifiers"));
9077 else if (specs->complex_p)
9078 error_at (loc,
9079 ("both %<complex%> and %<void%> in "
9080 "declaration specifiers"));
9081 else if (specs->saturating_p)
9082 error_at (loc,
9083 ("both %<_Sat%> and %<void%> in "
9084 "declaration specifiers"));
9085 else
9086 specs->typespec_word = cts_void;
9087 return specs;
9088 case RID_BOOL:
9089 if (specs->long_p)
9090 error_at (loc,
9091 ("both %<long%> and %<_Bool%> in "
9092 "declaration specifiers"));
9093 else if (specs->short_p)
9094 error_at (loc,
9095 ("both %<short%> and %<_Bool%> in "
9096 "declaration specifiers"));
9097 else if (specs->signed_p)
9098 error_at (loc,
9099 ("both %<signed%> and %<_Bool%> in "
9100 "declaration specifiers"));
9101 else if (specs->unsigned_p)
9102 error_at (loc,
9103 ("both %<unsigned%> and %<_Bool%> in "
9104 "declaration specifiers"));
9105 else if (specs->complex_p)
9106 error_at (loc,
9107 ("both %<complex%> and %<_Bool%> in "
9108 "declaration specifiers"));
9109 else if (specs->saturating_p)
9110 error_at (loc,
9111 ("both %<_Sat%> and %<_Bool%> in "
9112 "declaration specifiers"));
9113 else
9114 specs->typespec_word = cts_bool;
9115 return specs;
9116 case RID_CHAR:
9117 if (specs->long_p)
9118 error_at (loc,
9119 ("both %<long%> and %<char%> in "
9120 "declaration specifiers"));
9121 else if (specs->short_p)
9122 error_at (loc,
9123 ("both %<short%> and %<char%> in "
9124 "declaration specifiers"));
9125 else if (specs->saturating_p)
9126 error_at (loc,
9127 ("both %<_Sat%> and %<char%> in "
9128 "declaration specifiers"));
9129 else
9130 specs->typespec_word = cts_char;
9131 return specs;
9132 case RID_INT:
9133 if (specs->saturating_p)
9134 error_at (loc,
9135 ("both %<_Sat%> and %<int%> in "
9136 "declaration specifiers"));
9137 else
9138 specs->typespec_word = cts_int;
9139 return specs;
9140 case RID_FLOAT:
9141 if (specs->long_p)
9142 error_at (loc,
9143 ("both %<long%> and %<float%> in "
9144 "declaration specifiers"));
9145 else if (specs->short_p)
9146 error_at (loc,
9147 ("both %<short%> and %<float%> in "
9148 "declaration specifiers"));
9149 else if (specs->signed_p)
9150 error_at (loc,
9151 ("both %<signed%> and %<float%> in "
9152 "declaration specifiers"));
9153 else if (specs->unsigned_p)
9154 error_at (loc,
9155 ("both %<unsigned%> and %<float%> in "
9156 "declaration specifiers"));
9157 else if (specs->saturating_p)
9158 error_at (loc,
9159 ("both %<_Sat%> and %<float%> in "
9160 "declaration specifiers"));
9161 else
9162 specs->typespec_word = cts_float;
9163 return specs;
9164 case RID_DOUBLE:
9165 if (specs->long_long_p)
9166 error_at (loc,
9167 ("both %<long long%> and %<double%> in "
9168 "declaration specifiers"));
9169 else if (specs->short_p)
9170 error_at (loc,
9171 ("both %<short%> and %<double%> in "
9172 "declaration specifiers"));
9173 else if (specs->signed_p)
9174 error_at (loc,
9175 ("both %<signed%> and %<double%> in "
9176 "declaration specifiers"));
9177 else if (specs->unsigned_p)
9178 error_at (loc,
9179 ("both %<unsigned%> and %<double%> in "
9180 "declaration specifiers"));
9181 else if (specs->saturating_p)
9182 error_at (loc,
9183 ("both %<_Sat%> and %<double%> in "
9184 "declaration specifiers"));
9185 else
9186 specs->typespec_word = cts_double;
9187 return specs;
9188 case RID_DFLOAT32:
9189 case RID_DFLOAT64:
9190 case RID_DFLOAT128:
9192 const char *str;
9193 if (i == RID_DFLOAT32)
9194 str = "_Decimal32";
9195 else if (i == RID_DFLOAT64)
9196 str = "_Decimal64";
9197 else
9198 str = "_Decimal128";
9199 if (specs->long_long_p)
9200 error_at (loc,
9201 ("both %<long long%> and %<%s%> in "
9202 "declaration specifiers"),
9203 str);
9204 if (specs->long_p)
9205 error_at (loc,
9206 ("both %<long%> and %<%s%> in "
9207 "declaration specifiers"),
9208 str);
9209 else if (specs->short_p)
9210 error_at (loc,
9211 ("both %<short%> and %<%s%> in "
9212 "declaration specifiers"),
9213 str);
9214 else if (specs->signed_p)
9215 error_at (loc,
9216 ("both %<signed%> and %<%s%> in "
9217 "declaration specifiers"),
9218 str);
9219 else if (specs->unsigned_p)
9220 error_at (loc,
9221 ("both %<unsigned%> and %<%s%> in "
9222 "declaration specifiers"),
9223 str);
9224 else if (specs->complex_p)
9225 error_at (loc,
9226 ("both %<complex%> and %<%s%> in "
9227 "declaration specifiers"),
9228 str);
9229 else if (specs->saturating_p)
9230 error_at (loc,
9231 ("both %<_Sat%> and %<%s%> in "
9232 "declaration specifiers"),
9233 str);
9234 else if (i == RID_DFLOAT32)
9235 specs->typespec_word = cts_dfloat32;
9236 else if (i == RID_DFLOAT64)
9237 specs->typespec_word = cts_dfloat64;
9238 else
9239 specs->typespec_word = cts_dfloat128;
9241 if (!targetm.decimal_float_supported_p ())
9242 error_at (loc,
9243 ("decimal floating point not supported "
9244 "for this target"));
9245 pedwarn (loc, OPT_pedantic,
9246 "ISO C does not support decimal floating point");
9247 return specs;
9248 case RID_FRACT:
9249 case RID_ACCUM:
9251 const char *str;
9252 if (i == RID_FRACT)
9253 str = "_Fract";
9254 else
9255 str = "_Accum";
9256 if (specs->complex_p)
9257 error_at (loc,
9258 ("both %<complex%> and %<%s%> in "
9259 "declaration specifiers"),
9260 str);
9261 else if (i == RID_FRACT)
9262 specs->typespec_word = cts_fract;
9263 else
9264 specs->typespec_word = cts_accum;
9266 if (!targetm.fixed_point_supported_p ())
9267 error_at (loc,
9268 "fixed-point types not supported for this target");
9269 pedwarn (loc, OPT_pedantic,
9270 "ISO C does not support fixed-point types");
9271 return specs;
9272 default:
9273 /* ObjC reserved word "id", handled below. */
9274 break;
9279 /* Now we have a typedef (a TYPE_DECL node), an identifier (some
9280 form of ObjC type, cases such as "int" and "long" being handled
9281 above), a TYPE (struct, union, enum and typeof specifiers) or an
9282 ERROR_MARK. In none of these cases may there have previously
9283 been any type specifiers. */
9284 if (specs->type || specs->typespec_word != cts_none
9285 || specs->long_p || specs->short_p || specs->signed_p
9286 || specs->unsigned_p || specs->complex_p)
9287 error_at (loc, "two or more data types in declaration specifiers");
9288 else if (TREE_CODE (type) == TYPE_DECL)
9290 if (TREE_TYPE (type) == error_mark_node)
9291 ; /* Allow the type to default to int to avoid cascading errors. */
9292 else
9294 specs->type = TREE_TYPE (type);
9295 specs->decl_attr = DECL_ATTRIBUTES (type);
9296 specs->typedef_p = true;
9297 specs->explicit_signed_p = C_TYPEDEF_EXPLICITLY_SIGNED (type);
9299 /* If this typedef name is defined in a struct, then a C++
9300 lookup would return a different value. */
9301 if (warn_cxx_compat
9302 && I_SYMBOL_BINDING (DECL_NAME (type))->in_struct)
9303 warning_at (loc, OPT_Wc___compat,
9304 "C++ lookup of %qD would return a field, not a type",
9305 type);
9307 /* If we are parsing a struct, record that a struct field
9308 used a typedef. */
9309 if (warn_cxx_compat && struct_parse_info != NULL)
9310 VEC_safe_push (tree, heap, struct_parse_info->typedefs_seen, type);
9313 else if (TREE_CODE (type) == IDENTIFIER_NODE)
9315 tree t = lookup_name (type);
9316 if (!t || TREE_CODE (t) != TYPE_DECL)
9317 error_at (loc, "%qE fails to be a typedef or built in type", type);
9318 else if (TREE_TYPE (t) == error_mark_node)
9320 else
9321 specs->type = TREE_TYPE (t);
9323 else
9325 if (TREE_CODE (type) != ERROR_MARK && spec.kind == ctsk_typeof)
9327 specs->typedef_p = true;
9328 if (spec.expr)
9330 if (specs->expr)
9331 specs->expr = build2 (COMPOUND_EXPR, TREE_TYPE (spec.expr),
9332 specs->expr, spec.expr);
9333 else
9334 specs->expr = spec.expr;
9335 specs->expr_const_operands &= spec.expr_const_operands;
9338 specs->type = type;
9341 return specs;
9344 /* Add the storage class specifier or function specifier SCSPEC to the
9345 declaration specifiers SPECS, returning SPECS. */
9347 struct c_declspecs *
9348 declspecs_add_scspec (struct c_declspecs *specs, tree scspec)
9350 enum rid i;
9351 enum c_storage_class n = csc_none;
9352 bool dupe = false;
9353 specs->declspecs_seen_p = true;
9354 gcc_assert (TREE_CODE (scspec) == IDENTIFIER_NODE
9355 && C_IS_RESERVED_WORD (scspec));
9356 i = C_RID_CODE (scspec);
9357 if (specs->non_sc_seen_p)
9358 warning (OPT_Wold_style_declaration,
9359 "%qE is not at beginning of declaration", scspec);
9360 switch (i)
9362 case RID_INLINE:
9363 /* C99 permits duplicate inline. Although of doubtful utility,
9364 it seems simplest to permit it in gnu89 mode as well, as
9365 there is also little utility in maintaining this as a
9366 difference between gnu89 and C99 inline. */
9367 dupe = false;
9368 specs->inline_p = true;
9369 break;
9370 case RID_THREAD:
9371 dupe = specs->thread_p;
9372 if (specs->storage_class == csc_auto)
9373 error ("%<__thread%> used with %<auto%>");
9374 else if (specs->storage_class == csc_register)
9375 error ("%<__thread%> used with %<register%>");
9376 else if (specs->storage_class == csc_typedef)
9377 error ("%<__thread%> used with %<typedef%>");
9378 else
9379 specs->thread_p = true;
9380 break;
9381 case RID_AUTO:
9382 n = csc_auto;
9383 break;
9384 case RID_EXTERN:
9385 n = csc_extern;
9386 /* Diagnose "__thread extern". */
9387 if (specs->thread_p)
9388 error ("%<__thread%> before %<extern%>");
9389 break;
9390 case RID_REGISTER:
9391 n = csc_register;
9392 break;
9393 case RID_STATIC:
9394 n = csc_static;
9395 /* Diagnose "__thread static". */
9396 if (specs->thread_p)
9397 error ("%<__thread%> before %<static%>");
9398 break;
9399 case RID_TYPEDEF:
9400 n = csc_typedef;
9401 break;
9402 default:
9403 gcc_unreachable ();
9405 if (n != csc_none && n == specs->storage_class)
9406 dupe = true;
9407 if (dupe)
9408 error ("duplicate %qE", scspec);
9409 if (n != csc_none)
9411 if (specs->storage_class != csc_none && n != specs->storage_class)
9413 error ("multiple storage classes in declaration specifiers");
9415 else
9417 specs->storage_class = n;
9418 if (n != csc_extern && n != csc_static && specs->thread_p)
9420 error ("%<__thread%> used with %qE", scspec);
9421 specs->thread_p = false;
9425 return specs;
9428 /* Add the attributes ATTRS to the declaration specifiers SPECS,
9429 returning SPECS. */
9431 struct c_declspecs *
9432 declspecs_add_attrs (struct c_declspecs *specs, tree attrs)
9434 specs->attrs = chainon (attrs, specs->attrs);
9435 specs->declspecs_seen_p = true;
9436 return specs;
9439 /* Combine "long", "short", "signed", "unsigned" and "_Complex" type
9440 specifiers with any other type specifier to determine the resulting
9441 type. This is where ISO C checks on complex types are made, since
9442 "_Complex long" is a prefix of the valid ISO C type "_Complex long
9443 double". */
9445 struct c_declspecs *
9446 finish_declspecs (struct c_declspecs *specs)
9448 /* If a type was specified as a whole, we have no modifiers and are
9449 done. */
9450 if (specs->type != NULL_TREE)
9452 gcc_assert (!specs->long_p && !specs->long_long_p && !specs->short_p
9453 && !specs->signed_p && !specs->unsigned_p
9454 && !specs->complex_p);
9456 /* Set a dummy type. */
9457 if (TREE_CODE (specs->type) == ERROR_MARK)
9458 specs->type = integer_type_node;
9459 return specs;
9462 /* If none of "void", "_Bool", "char", "int", "float" or "double"
9463 has been specified, treat it as "int" unless "_Complex" is
9464 present and there are no other specifiers. If we just have
9465 "_Complex", it is equivalent to "_Complex double", but e.g.
9466 "_Complex short" is equivalent to "_Complex short int". */
9467 if (specs->typespec_word == cts_none)
9469 if (specs->saturating_p)
9471 error ("%<_Sat%> is used without %<_Fract%> or %<_Accum%>");
9472 if (!targetm.fixed_point_supported_p ())
9473 error ("fixed-point types not supported for this target");
9474 specs->typespec_word = cts_fract;
9476 else if (specs->long_p || specs->short_p
9477 || specs->signed_p || specs->unsigned_p)
9479 specs->typespec_word = cts_int;
9481 else if (specs->complex_p)
9483 specs->typespec_word = cts_double;
9484 pedwarn (input_location, OPT_pedantic,
9485 "ISO C does not support plain %<complex%> meaning "
9486 "%<double complex%>");
9488 else
9490 specs->typespec_word = cts_int;
9491 specs->default_int_p = true;
9492 /* We don't diagnose this here because grokdeclarator will
9493 give more specific diagnostics according to whether it is
9494 a function definition. */
9498 /* If "signed" was specified, record this to distinguish "int" and
9499 "signed int" in the case of a bit-field with
9500 -funsigned-bitfields. */
9501 specs->explicit_signed_p = specs->signed_p;
9503 /* Now compute the actual type. */
9504 switch (specs->typespec_word)
9506 case cts_void:
9507 gcc_assert (!specs->long_p && !specs->short_p
9508 && !specs->signed_p && !specs->unsigned_p
9509 && !specs->complex_p);
9510 specs->type = void_type_node;
9511 break;
9512 case cts_bool:
9513 gcc_assert (!specs->long_p && !specs->short_p
9514 && !specs->signed_p && !specs->unsigned_p
9515 && !specs->complex_p);
9516 specs->type = boolean_type_node;
9517 break;
9518 case cts_char:
9519 gcc_assert (!specs->long_p && !specs->short_p);
9520 gcc_assert (!(specs->signed_p && specs->unsigned_p));
9521 if (specs->signed_p)
9522 specs->type = signed_char_type_node;
9523 else if (specs->unsigned_p)
9524 specs->type = unsigned_char_type_node;
9525 else
9526 specs->type = char_type_node;
9527 if (specs->complex_p)
9529 pedwarn (input_location, OPT_pedantic,
9530 "ISO C does not support complex integer types");
9531 specs->type = build_complex_type (specs->type);
9533 break;
9534 case cts_int128:
9535 gcc_assert (!specs->long_p && !specs->short_p && !specs->long_long_p);
9536 gcc_assert (!(specs->signed_p && specs->unsigned_p));
9537 specs->type = (specs->unsigned_p
9538 ? int128_unsigned_type_node
9539 : int128_integer_type_node);
9540 if (specs->complex_p)
9542 pedwarn (input_location, OPT_pedantic,
9543 "ISO C does not support complex integer types");
9544 specs->type = build_complex_type (specs->type);
9546 break;
9547 case cts_int:
9548 gcc_assert (!(specs->long_p && specs->short_p));
9549 gcc_assert (!(specs->signed_p && specs->unsigned_p));
9550 if (specs->long_long_p)
9551 specs->type = (specs->unsigned_p
9552 ? long_long_unsigned_type_node
9553 : long_long_integer_type_node);
9554 else if (specs->long_p)
9555 specs->type = (specs->unsigned_p
9556 ? long_unsigned_type_node
9557 : long_integer_type_node);
9558 else if (specs->short_p)
9559 specs->type = (specs->unsigned_p
9560 ? short_unsigned_type_node
9561 : short_integer_type_node);
9562 else
9563 specs->type = (specs->unsigned_p
9564 ? unsigned_type_node
9565 : integer_type_node);
9566 if (specs->complex_p)
9568 pedwarn (input_location, OPT_pedantic,
9569 "ISO C does not support complex integer types");
9570 specs->type = build_complex_type (specs->type);
9572 break;
9573 case cts_float:
9574 gcc_assert (!specs->long_p && !specs->short_p
9575 && !specs->signed_p && !specs->unsigned_p);
9576 specs->type = (specs->complex_p
9577 ? complex_float_type_node
9578 : float_type_node);
9579 break;
9580 case cts_double:
9581 gcc_assert (!specs->long_long_p && !specs->short_p
9582 && !specs->signed_p && !specs->unsigned_p);
9583 if (specs->long_p)
9585 specs->type = (specs->complex_p
9586 ? complex_long_double_type_node
9587 : long_double_type_node);
9589 else
9591 specs->type = (specs->complex_p
9592 ? complex_double_type_node
9593 : double_type_node);
9595 break;
9596 case cts_dfloat32:
9597 case cts_dfloat64:
9598 case cts_dfloat128:
9599 gcc_assert (!specs->long_p && !specs->long_long_p && !specs->short_p
9600 && !specs->signed_p && !specs->unsigned_p && !specs->complex_p);
9601 if (specs->typespec_word == cts_dfloat32)
9602 specs->type = dfloat32_type_node;
9603 else if (specs->typespec_word == cts_dfloat64)
9604 specs->type = dfloat64_type_node;
9605 else
9606 specs->type = dfloat128_type_node;
9607 break;
9608 case cts_fract:
9609 gcc_assert (!specs->complex_p);
9610 if (!targetm.fixed_point_supported_p ())
9611 specs->type = integer_type_node;
9612 else if (specs->saturating_p)
9614 if (specs->long_long_p)
9615 specs->type = specs->unsigned_p
9616 ? sat_unsigned_long_long_fract_type_node
9617 : sat_long_long_fract_type_node;
9618 else if (specs->long_p)
9619 specs->type = specs->unsigned_p
9620 ? sat_unsigned_long_fract_type_node
9621 : sat_long_fract_type_node;
9622 else if (specs->short_p)
9623 specs->type = specs->unsigned_p
9624 ? sat_unsigned_short_fract_type_node
9625 : sat_short_fract_type_node;
9626 else
9627 specs->type = specs->unsigned_p
9628 ? sat_unsigned_fract_type_node
9629 : sat_fract_type_node;
9631 else
9633 if (specs->long_long_p)
9634 specs->type = specs->unsigned_p
9635 ? unsigned_long_long_fract_type_node
9636 : long_long_fract_type_node;
9637 else if (specs->long_p)
9638 specs->type = specs->unsigned_p
9639 ? unsigned_long_fract_type_node
9640 : long_fract_type_node;
9641 else if (specs->short_p)
9642 specs->type = specs->unsigned_p
9643 ? unsigned_short_fract_type_node
9644 : short_fract_type_node;
9645 else
9646 specs->type = specs->unsigned_p
9647 ? unsigned_fract_type_node
9648 : fract_type_node;
9650 break;
9651 case cts_accum:
9652 gcc_assert (!specs->complex_p);
9653 if (!targetm.fixed_point_supported_p ())
9654 specs->type = integer_type_node;
9655 else if (specs->saturating_p)
9657 if (specs->long_long_p)
9658 specs->type = specs->unsigned_p
9659 ? sat_unsigned_long_long_accum_type_node
9660 : sat_long_long_accum_type_node;
9661 else if (specs->long_p)
9662 specs->type = specs->unsigned_p
9663 ? sat_unsigned_long_accum_type_node
9664 : sat_long_accum_type_node;
9665 else if (specs->short_p)
9666 specs->type = specs->unsigned_p
9667 ? sat_unsigned_short_accum_type_node
9668 : sat_short_accum_type_node;
9669 else
9670 specs->type = specs->unsigned_p
9671 ? sat_unsigned_accum_type_node
9672 : sat_accum_type_node;
9674 else
9676 if (specs->long_long_p)
9677 specs->type = specs->unsigned_p
9678 ? unsigned_long_long_accum_type_node
9679 : long_long_accum_type_node;
9680 else if (specs->long_p)
9681 specs->type = specs->unsigned_p
9682 ? unsigned_long_accum_type_node
9683 : long_accum_type_node;
9684 else if (specs->short_p)
9685 specs->type = specs->unsigned_p
9686 ? unsigned_short_accum_type_node
9687 : short_accum_type_node;
9688 else
9689 specs->type = specs->unsigned_p
9690 ? unsigned_accum_type_node
9691 : accum_type_node;
9693 break;
9694 default:
9695 gcc_unreachable ();
9698 return specs;
9701 /* A subroutine of c_write_global_declarations. Perform final processing
9702 on one file scope's declarations (or the external scope's declarations),
9703 GLOBALS. */
9705 static void
9706 c_write_global_declarations_1 (tree globals)
9708 tree decl;
9709 bool reconsider;
9711 /* Process the decls in the order they were written. */
9712 for (decl = globals; decl; decl = DECL_CHAIN (decl))
9714 /* Check for used but undefined static functions using the C
9715 standard's definition of "used", and set TREE_NO_WARNING so
9716 that check_global_declarations doesn't repeat the check. */
9717 if (TREE_CODE (decl) == FUNCTION_DECL
9718 && DECL_INITIAL (decl) == 0
9719 && DECL_EXTERNAL (decl)
9720 && !TREE_PUBLIC (decl)
9721 && C_DECL_USED (decl))
9723 pedwarn (input_location, 0, "%q+F used but never defined", decl);
9724 TREE_NO_WARNING (decl) = 1;
9727 wrapup_global_declaration_1 (decl);
9732 reconsider = false;
9733 for (decl = globals; decl; decl = DECL_CHAIN (decl))
9734 reconsider |= wrapup_global_declaration_2 (decl);
9736 while (reconsider);
9738 for (decl = globals; decl; decl = DECL_CHAIN (decl))
9739 check_global_declaration_1 (decl);
9742 /* A subroutine of c_write_global_declarations Emit debug information for each
9743 of the declarations in GLOBALS. */
9745 static void
9746 c_write_global_declarations_2 (tree globals)
9748 tree decl;
9750 for (decl = globals; decl ; decl = DECL_CHAIN (decl))
9751 debug_hooks->global_decl (decl);
9754 /* Callback to collect a source_ref from a DECL. */
9756 static void
9757 collect_source_ref_cb (tree decl)
9759 if (!DECL_IS_BUILTIN (decl))
9760 collect_source_ref (LOCATION_FILE (decl_sloc (decl, false)));
9763 /* Collect all references relevant to SOURCE_FILE. */
9765 static void
9766 collect_all_refs (const char *source_file)
9768 tree t;
9769 unsigned i;
9771 FOR_EACH_VEC_ELT (tree, all_translation_units, i, t)
9772 collect_ada_nodes (BLOCK_VARS (DECL_INITIAL (t)), source_file);
9775 /* Iterate over all global declarations and call CALLBACK. */
9777 static void
9778 for_each_global_decl (void (*callback) (tree decl))
9780 tree t;
9781 tree decls;
9782 tree decl;
9783 unsigned i;
9785 FOR_EACH_VEC_ELT (tree, all_translation_units, i, t)
9787 decls = DECL_INITIAL (t);
9788 for (decl = BLOCK_VARS (decls); decl; decl = TREE_CHAIN (decl))
9789 callback (decl);
9793 /* Preserve the external declarations scope across a garbage collect. */
9794 static GTY(()) tree ext_block;
9796 void
9797 c_write_global_declarations (void)
9799 tree t;
9800 unsigned i;
9802 /* We don't want to do this if generating a PCH. */
9803 if (pch_file)
9804 return;
9806 timevar_start (TV_PHASE_DEFERRED);
9808 /* Do the Objective-C stuff. This is where all the Objective-C
9809 module stuff gets generated (symtab, class/protocol/selector
9810 lists etc). */
9811 if (c_dialect_objc ())
9812 objc_write_global_declarations ();
9814 /* Close the external scope. */
9815 ext_block = pop_scope ();
9816 external_scope = 0;
9817 gcc_assert (!current_scope);
9819 /* Handle -fdump-ada-spec[-slim]. */
9820 if (dump_enabled_p (TDI_ada))
9822 /* Build a table of files to generate specs for */
9823 if (get_dump_file_info (TDI_ada)->flags & TDF_SLIM)
9824 collect_source_ref (main_input_filename);
9825 else
9826 for_each_global_decl (collect_source_ref_cb);
9828 dump_ada_specs (collect_all_refs, NULL);
9831 if (ext_block)
9833 tree tmp = BLOCK_VARS (ext_block);
9834 int flags;
9835 FILE * stream = dump_begin (TDI_tu, &flags);
9836 if (stream && tmp)
9838 dump_node (tmp, flags & ~TDF_SLIM, stream);
9839 dump_end (TDI_tu, stream);
9843 /* Process all file scopes in this compilation, and the external_scope,
9844 through wrapup_global_declarations and check_global_declarations. */
9845 FOR_EACH_VEC_ELT (tree, all_translation_units, i, t)
9846 c_write_global_declarations_1 (BLOCK_VARS (DECL_INITIAL (t)));
9847 c_write_global_declarations_1 (BLOCK_VARS (ext_block));
9849 timevar_stop (TV_PHASE_DEFERRED);
9850 timevar_start (TV_PHASE_CGRAPH);
9852 /* We're done parsing; proceed to optimize and emit assembly.
9853 FIXME: shouldn't be the front end's responsibility to call this. */
9854 cgraph_finalize_compilation_unit ();
9856 timevar_stop (TV_PHASE_CGRAPH);
9857 timevar_start (TV_PHASE_DBGINFO);
9859 /* After cgraph has had a chance to emit everything that's going to
9860 be emitted, output debug information for globals. */
9861 if (!seen_error ())
9863 timevar_push (TV_SYMOUT);
9864 FOR_EACH_VEC_ELT (tree, all_translation_units, i, t)
9865 c_write_global_declarations_2 (BLOCK_VARS (DECL_INITIAL (t)));
9866 c_write_global_declarations_2 (BLOCK_VARS (ext_block));
9867 timevar_pop (TV_SYMOUT);
9870 ext_block = NULL;
9871 timevar_stop (TV_PHASE_DBGINFO);
9874 /* Register reserved keyword WORD as qualifier for address space AS. */
9876 void
9877 c_register_addr_space (const char *word, addr_space_t as)
9879 int rid = RID_FIRST_ADDR_SPACE + as;
9880 tree id;
9882 /* Address space qualifiers are only supported
9883 in C with GNU extensions enabled. */
9884 if (c_dialect_objc () || flag_no_asm)
9885 return;
9887 id = get_identifier (word);
9888 C_SET_RID_CODE (id, rid);
9889 C_IS_RESERVED_WORD (id) = 1;
9890 ridpointers [rid] = id;
9893 #include "gt-c-decl.h"