2010-12-29 Gary Funck <gary@intrepid.com>
[official-gcc.git] / gcc / c-decl.c
blob73c20533a61bfa21832016bbc4ed221cc269de86
1 /* Process declarations and variables for C compiler.
2 Copyright (C) 1988, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000,
3 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010
4 Free Software Foundation, Inc.
6 This file is part of GCC.
8 GCC is free software; you can redistribute it and/or modify it under
9 the terms of the GNU General Public License as published by the Free
10 Software Foundation; either version 3, or (at your option) any later
11 version.
13 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
14 WARRANTY; without even the implied warranty of MERCHANTABILITY or
15 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
16 for more details.
18 You should have received a copy of the GNU General Public License
19 along with GCC; see the file COPYING3. If not see
20 <http://www.gnu.org/licenses/>. */
22 /* Process declarations and symbol lookup for C front end.
23 Also constructs types; the standard scalar types at initialization,
24 and structure, union, array and enum types when they are declared. */
26 /* ??? not all decl nodes are given the most useful possible
27 line numbers. For example, the CONST_DECLs for enum values. */
29 #include "config.h"
30 #include "system.h"
31 #include "coretypes.h"
32 #include "input.h"
33 #include "tm.h"
34 #include "intl.h"
35 #include "tree.h"
36 #include "tree-inline.h"
37 #include "flags.h"
38 #include "function.h"
39 #include "output.h"
40 #include "c-tree.h"
41 #include "toplev.h"
42 #include "tm_p.h"
43 #include "cpplib.h"
44 #include "target.h"
45 #include "debug.h"
46 #include "opts.h"
47 #include "timevar.h"
48 #include "c-family/c-common.h"
49 #include "c-family/c-objc.h"
50 #include "c-family/c-pragma.h"
51 #include "c-lang.h"
52 #include "langhooks.h"
53 #include "tree-mudflap.h"
54 #include "tree-iterator.h"
55 #include "diagnostic-core.h"
56 #include "tree-dump.h"
57 #include "cgraph.h"
58 #include "hashtab.h"
59 #include "langhooks-def.h"
60 #include "pointer-set.h"
61 #include "plugin.h"
62 #include "c-family/c-ada-spec.h"
64 /* In grokdeclarator, distinguish syntactic contexts of declarators. */
65 enum decl_context
66 { NORMAL, /* Ordinary declaration */
67 FUNCDEF, /* Function definition */
68 PARM, /* Declaration of parm before function body */
69 FIELD, /* Declaration inside struct or union */
70 TYPENAME}; /* Typename (inside cast or sizeof) */
72 /* States indicating how grokdeclarator() should handle declspecs marked
73 with __attribute__((deprecated)). An object declared as
74 __attribute__((deprecated)) suppresses warnings of uses of other
75 deprecated items. */
77 enum deprecated_states {
78 DEPRECATED_NORMAL,
79 DEPRECATED_SUPPRESS
83 /* Nonzero if we have seen an invalid cross reference
84 to a struct, union, or enum, but not yet printed the message. */
85 tree pending_invalid_xref;
87 /* File and line to appear in the eventual error message. */
88 location_t pending_invalid_xref_location;
90 /* The file and line that the prototype came from if this is an
91 old-style definition; used for diagnostics in
92 store_parm_decls_oldstyle. */
94 static location_t current_function_prototype_locus;
96 /* Whether this prototype was built-in. */
98 static bool current_function_prototype_built_in;
100 /* The argument type information of this prototype. */
102 static tree current_function_prototype_arg_types;
104 /* The argument information structure for the function currently being
105 defined. */
107 static struct c_arg_info *current_function_arg_info;
109 /* The obstack on which parser and related data structures, which are
110 not live beyond their top-level declaration or definition, are
111 allocated. */
112 struct obstack parser_obstack;
114 /* The current statement tree. */
116 static GTY(()) struct stmt_tree_s c_stmt_tree;
118 /* State saving variables. */
119 tree c_break_label;
120 tree c_cont_label;
122 /* A list of decls to be made automatically visible in each file scope. */
123 static GTY(()) tree visible_builtins;
125 /* Set to 0 at beginning of a function definition, set to 1 if
126 a return statement that specifies a return value is seen. */
128 int current_function_returns_value;
130 /* Set to 0 at beginning of a function definition, set to 1 if
131 a return statement with no argument is seen. */
133 int current_function_returns_null;
135 /* Set to 0 at beginning of a function definition, set to 1 if
136 a call to a noreturn function is seen. */
138 int current_function_returns_abnormally;
140 /* Set to nonzero by `grokdeclarator' for a function
141 whose return type is defaulted, if warnings for this are desired. */
143 static int warn_about_return_type;
145 /* Nonzero when the current toplevel function contains a declaration
146 of a nested function which is never defined. */
148 static bool undef_nested_function;
150 /* True means global_bindings_p should return false even if the scope stack
151 says we are in file scope. */
152 bool c_override_global_bindings_to_false;
155 /* Each c_binding structure describes one binding of an identifier to
156 a decl. All the decls in a scope - irrespective of namespace - are
157 chained together by the ->prev field, which (as the name implies)
158 runs in reverse order. All the decls in a given namespace bound to
159 a given identifier are chained by the ->shadowed field, which runs
160 from inner to outer scopes.
162 The ->decl field usually points to a DECL node, but there are two
163 exceptions. In the namespace of type tags, the bound entity is a
164 RECORD_TYPE, UNION_TYPE, or ENUMERAL_TYPE node. If an undeclared
165 identifier is encountered, it is bound to error_mark_node to
166 suppress further errors about that identifier in the current
167 function.
169 The ->u.type field stores the type of the declaration in this scope;
170 if NULL, the type is the type of the ->decl field. This is only of
171 relevance for objects with external or internal linkage which may
172 be redeclared in inner scopes, forming composite types that only
173 persist for the duration of those scopes. In the external scope,
174 this stores the composite of all the types declared for this
175 object, visible or not. The ->inner_comp field (used only at file
176 scope) stores whether an incomplete array type at file scope was
177 completed at an inner scope to an array size other than 1.
179 The ->u.label field is used for labels. It points to a structure
180 which stores additional information used for warnings.
182 The depth field is copied from the scope structure that holds this
183 decl. It is used to preserve the proper ordering of the ->shadowed
184 field (see bind()) and also for a handful of special-case checks.
185 Finally, the invisible bit is true for a decl which should be
186 ignored for purposes of normal name lookup, and the nested bit is
187 true for a decl that's been bound a second time in an inner scope;
188 in all such cases, the binding in the outer scope will have its
189 invisible bit true. */
191 struct GTY((chain_next ("%h.prev"))) c_binding {
192 union GTY(()) { /* first so GTY desc can use decl */
193 tree GTY((tag ("0"))) type; /* the type in this scope */
194 struct c_label_vars * GTY((tag ("1"))) label; /* for warnings */
195 } GTY((desc ("TREE_CODE (%0.decl) == LABEL_DECL"))) u;
196 tree decl; /* the decl bound */
197 tree id; /* the identifier it's bound to */
198 struct c_binding *prev; /* the previous decl in this scope */
199 struct c_binding *shadowed; /* the innermost decl shadowed by this one */
200 unsigned int depth : 28; /* depth of this scope */
201 BOOL_BITFIELD invisible : 1; /* normal lookup should ignore this binding */
202 BOOL_BITFIELD nested : 1; /* do not set DECL_CONTEXT when popping */
203 BOOL_BITFIELD inner_comp : 1; /* incomplete array completed in inner scope */
204 BOOL_BITFIELD in_struct : 1; /* currently defined as struct field */
205 location_t locus; /* location for nested bindings */
207 #define B_IN_SCOPE(b1, b2) ((b1)->depth == (b2)->depth)
208 #define B_IN_CURRENT_SCOPE(b) ((b)->depth == current_scope->depth)
209 #define B_IN_FILE_SCOPE(b) ((b)->depth == 1 /*file_scope->depth*/)
210 #define B_IN_EXTERNAL_SCOPE(b) ((b)->depth == 0 /*external_scope->depth*/)
212 #define I_SYMBOL_BINDING(node) \
213 (((struct lang_identifier *) IDENTIFIER_NODE_CHECK(node))->symbol_binding)
214 #define I_SYMBOL_DECL(node) \
215 (I_SYMBOL_BINDING(node) ? I_SYMBOL_BINDING(node)->decl : 0)
217 #define I_TAG_BINDING(node) \
218 (((struct lang_identifier *) IDENTIFIER_NODE_CHECK(node))->tag_binding)
219 #define I_TAG_DECL(node) \
220 (I_TAG_BINDING(node) ? I_TAG_BINDING(node)->decl : 0)
222 #define I_LABEL_BINDING(node) \
223 (((struct lang_identifier *) IDENTIFIER_NODE_CHECK(node))->label_binding)
224 #define I_LABEL_DECL(node) \
225 (I_LABEL_BINDING(node) ? I_LABEL_BINDING(node)->decl : 0)
227 /* Each C symbol points to three linked lists of c_binding structures.
228 These describe the values of the identifier in the three different
229 namespaces defined by the language. */
231 struct GTY(()) lang_identifier {
232 struct c_common_identifier common_id;
233 struct c_binding *symbol_binding; /* vars, funcs, constants, typedefs */
234 struct c_binding *tag_binding; /* struct/union/enum tags */
235 struct c_binding *label_binding; /* labels */
238 /* Validate c-lang.c's assumptions. */
239 extern char C_SIZEOF_STRUCT_LANG_IDENTIFIER_isnt_accurate
240 [(sizeof(struct lang_identifier) == C_SIZEOF_STRUCT_LANG_IDENTIFIER) ? 1 : -1];
242 /* The resulting tree type. */
244 union GTY((desc ("TREE_CODE (&%h.generic) == IDENTIFIER_NODE"),
245 chain_next ("TREE_CODE (&%h.generic) == INTEGER_TYPE ? (union lang_tree_node *) TYPE_NEXT_VARIANT (&%h.generic) : ((union lang_tree_node *) TREE_CHAIN (&%h.generic))"))) lang_tree_node
247 union tree_node GTY ((tag ("0"),
248 desc ("tree_node_structure (&%h)")))
249 generic;
250 struct lang_identifier GTY ((tag ("1"))) identifier;
253 /* Track bindings and other things that matter for goto warnings. For
254 efficiency, we do not gather all the decls at the point of
255 definition. Instead, we point into the bindings structure. As
256 scopes are popped, we update these structures and gather the decls
257 that matter at that time. */
259 struct GTY(()) c_spot_bindings {
260 /* The currently open scope which holds bindings defined when the
261 label was defined or the goto statement was found. */
262 struct c_scope *scope;
263 /* The bindings in the scope field which were defined at the point
264 of the label or goto. This lets us look at older or newer
265 bindings in the scope, as appropriate. */
266 struct c_binding *bindings_in_scope;
267 /* The number of statement expressions that have started since this
268 label or goto statement was defined. This is zero if we are at
269 the same statement expression level. It is positive if we are in
270 a statement expression started since this spot. It is negative
271 if this spot was in a statement expression and we have left
272 it. */
273 int stmt_exprs;
274 /* Whether we started in a statement expression but are no longer in
275 it. This is set to true if stmt_exprs ever goes negative. */
276 bool left_stmt_expr;
279 /* This structure is used to keep track of bindings seen when a goto
280 statement is defined. This is only used if we see the goto
281 statement before we see the label. */
283 struct GTY(()) c_goto_bindings {
284 /* The location of the goto statement. */
285 location_t loc;
286 /* The bindings of the goto statement. */
287 struct c_spot_bindings goto_bindings;
290 typedef struct c_goto_bindings *c_goto_bindings_p;
291 DEF_VEC_P(c_goto_bindings_p);
292 DEF_VEC_ALLOC_P(c_goto_bindings_p,gc);
294 /* The additional information we keep track of for a label binding.
295 These fields are updated as scopes are popped. */
297 struct GTY(()) c_label_vars {
298 /* The shadowed c_label_vars, when one label shadows another (which
299 can only happen using a __label__ declaration). */
300 struct c_label_vars *shadowed;
301 /* The bindings when the label was defined. */
302 struct c_spot_bindings label_bindings;
303 /* A list of decls that we care about: decls about which we should
304 warn if a goto branches to this label from later in the function.
305 Decls are added to this list as scopes are popped. We only add
306 the decls that matter. */
307 VEC(tree,gc) *decls_in_scope;
308 /* A list of goto statements to this label. This is only used for
309 goto statements seen before the label was defined, so that we can
310 issue appropriate warnings for them. */
311 VEC(c_goto_bindings_p,gc) *gotos;
314 /* Each c_scope structure describes the complete contents of one
315 scope. Four scopes are distinguished specially: the innermost or
316 current scope, the innermost function scope, the file scope (always
317 the second to outermost) and the outermost or external scope.
319 Most declarations are recorded in the current scope.
321 All normal label declarations are recorded in the innermost
322 function scope, as are bindings of undeclared identifiers to
323 error_mark_node. (GCC permits nested functions as an extension,
324 hence the 'innermost' qualifier.) Explicitly declared labels
325 (using the __label__ extension) appear in the current scope.
327 Being in the file scope (current_scope == file_scope) causes
328 special behavior in several places below. Also, under some
329 conditions the Objective-C front end records declarations in the
330 file scope even though that isn't the current scope.
332 All declarations with external linkage are recorded in the external
333 scope, even if they aren't visible there; this models the fact that
334 such declarations are visible to the entire program, and (with a
335 bit of cleverness, see pushdecl) allows diagnosis of some violations
336 of C99 6.2.2p7 and 6.2.7p2:
338 If, within the same translation unit, the same identifier appears
339 with both internal and external linkage, the behavior is
340 undefined.
342 All declarations that refer to the same object or function shall
343 have compatible type; otherwise, the behavior is undefined.
345 Initially only the built-in declarations, which describe compiler
346 intrinsic functions plus a subset of the standard library, are in
347 this scope.
349 The order of the blocks list matters, and it is frequently appended
350 to. To avoid having to walk all the way to the end of the list on
351 each insertion, or reverse the list later, we maintain a pointer to
352 the last list entry. (FIXME: It should be feasible to use a reversed
353 list here.)
355 The bindings list is strictly in reverse order of declarations;
356 pop_scope relies on this. */
359 struct GTY((chain_next ("%h.outer"))) c_scope {
360 /* The scope containing this one. */
361 struct c_scope *outer;
363 /* The next outermost function scope. */
364 struct c_scope *outer_function;
366 /* All bindings in this scope. */
367 struct c_binding *bindings;
369 /* For each scope (except the global one), a chain of BLOCK nodes
370 for all the scopes that were entered and exited one level down. */
371 tree blocks;
372 tree blocks_last;
374 /* The depth of this scope. Used to keep the ->shadowed chain of
375 bindings sorted innermost to outermost. */
376 unsigned int depth : 28;
378 /* True if we are currently filling this scope with parameter
379 declarations. */
380 BOOL_BITFIELD parm_flag : 1;
382 /* True if we saw [*] in this scope. Used to give an error messages
383 if these appears in a function definition. */
384 BOOL_BITFIELD had_vla_unspec : 1;
386 /* True if we already complained about forward parameter decls
387 in this scope. This prevents double warnings on
388 foo (int a; int b; ...) */
389 BOOL_BITFIELD warned_forward_parm_decls : 1;
391 /* True if this is the outermost block scope of a function body.
392 This scope contains the parameters, the local variables declared
393 in the outermost block, and all the labels (except those in
394 nested functions, or declared at block scope with __label__). */
395 BOOL_BITFIELD function_body : 1;
397 /* True means make a BLOCK for this scope no matter what. */
398 BOOL_BITFIELD keep : 1;
400 /* True means that an unsuffixed float constant is _Decimal64. */
401 BOOL_BITFIELD float_const_decimal64 : 1;
403 /* True if this scope has any label bindings. This is used to speed
404 up searching for labels when popping scopes, particularly since
405 labels are normally only found at function scope. */
406 BOOL_BITFIELD has_label_bindings : 1;
409 /* The scope currently in effect. */
411 static GTY(()) struct c_scope *current_scope;
413 /* The innermost function scope. Ordinary (not explicitly declared)
414 labels, bindings to error_mark_node, and the lazily-created
415 bindings of __func__ and its friends get this scope. */
417 static GTY(()) struct c_scope *current_function_scope;
419 /* The C file scope. This is reset for each input translation unit. */
421 static GTY(()) struct c_scope *file_scope;
423 /* The outermost scope. This is used for all declarations with
424 external linkage, and only these, hence the name. */
426 static GTY(()) struct c_scope *external_scope;
428 /* A chain of c_scope structures awaiting reuse. */
430 static GTY((deletable)) struct c_scope *scope_freelist;
432 /* A chain of c_binding structures awaiting reuse. */
434 static GTY((deletable)) struct c_binding *binding_freelist;
436 /* Append VAR to LIST in scope SCOPE. */
437 #define SCOPE_LIST_APPEND(scope, list, decl) do { \
438 struct c_scope *s_ = (scope); \
439 tree d_ = (decl); \
440 if (s_->list##_last) \
441 BLOCK_CHAIN (s_->list##_last) = d_; \
442 else \
443 s_->list = d_; \
444 s_->list##_last = d_; \
445 } while (0)
447 /* Concatenate FROM in scope FSCOPE onto TO in scope TSCOPE. */
448 #define SCOPE_LIST_CONCAT(tscope, to, fscope, from) do { \
449 struct c_scope *t_ = (tscope); \
450 struct c_scope *f_ = (fscope); \
451 if (t_->to##_last) \
452 BLOCK_CHAIN (t_->to##_last) = f_->from; \
453 else \
454 t_->to = f_->from; \
455 t_->to##_last = f_->from##_last; \
456 } while (0)
458 /* A c_inline_static structure stores details of a static identifier
459 referenced in a definition of a function that may be an inline
460 definition if no subsequent declaration of that function uses
461 "extern" or does not use "inline". */
463 struct GTY((chain_next ("%h.next"))) c_inline_static {
464 /* The location for a diagnostic. */
465 location_t location;
467 /* The function that may be an inline definition. */
468 tree function;
470 /* The object or function referenced. */
471 tree static_decl;
473 /* What sort of reference this is. */
474 enum c_inline_static_type type;
476 /* The next such structure or NULL. */
477 struct c_inline_static *next;
480 /* List of static identifiers used or referenced in functions that may
481 be inline definitions. */
482 static GTY(()) struct c_inline_static *c_inline_statics;
484 /* True means unconditionally make a BLOCK for the next scope pushed. */
486 static bool keep_next_level_flag;
488 /* True means the next call to push_scope will be the outermost scope
489 of a function body, so do not push a new scope, merely cease
490 expecting parameter decls. */
492 static bool next_is_function_body;
494 /* A VEC of pointers to c_binding structures. */
496 typedef struct c_binding *c_binding_ptr;
497 DEF_VEC_P(c_binding_ptr);
498 DEF_VEC_ALLOC_P(c_binding_ptr,heap);
500 /* Information that we keep for a struct or union while it is being
501 parsed. */
503 struct c_struct_parse_info
505 /* If warn_cxx_compat, a list of types defined within this
506 struct. */
507 VEC(tree,heap) *struct_types;
508 /* If warn_cxx_compat, a list of field names which have bindings,
509 and which are defined in this struct, but which are not defined
510 in any enclosing struct. This is used to clear the in_struct
511 field of the c_bindings structure. */
512 VEC(c_binding_ptr,heap) *fields;
513 /* If warn_cxx_compat, a list of typedef names used when defining
514 fields in this struct. */
515 VEC(tree,heap) *typedefs_seen;
518 /* Information for the struct or union currently being parsed, or
519 NULL if not parsing a struct or union. */
520 static struct c_struct_parse_info *struct_parse_info;
522 /* Forward declarations. */
523 static tree lookup_name_in_scope (tree, struct c_scope *);
524 static tree c_make_fname_decl (location_t, tree, int);
525 static tree grokdeclarator (const struct c_declarator *,
526 struct c_declspecs *,
527 enum decl_context, bool, tree *, tree *, tree *,
528 bool *, enum deprecated_states);
529 static tree grokparms (struct c_arg_info *, bool);
530 static void layout_array_type (tree);
532 /* T is a statement. Add it to the statement-tree. This is the
533 C/ObjC version--C++ has a slightly different version of this
534 function. */
536 tree
537 add_stmt (tree t)
539 enum tree_code code = TREE_CODE (t);
541 if (CAN_HAVE_LOCATION_P (t) && code != LABEL_EXPR)
543 if (!EXPR_HAS_LOCATION (t))
544 SET_EXPR_LOCATION (t, input_location);
547 if (code == LABEL_EXPR || code == CASE_LABEL_EXPR)
548 STATEMENT_LIST_HAS_LABEL (cur_stmt_list) = 1;
550 /* Add T to the statement-tree. Non-side-effect statements need to be
551 recorded during statement expressions. */
552 append_to_statement_list_force (t, &cur_stmt_list);
554 return t;
558 void
559 c_print_identifier (FILE *file, tree node, int indent)
561 print_node (file, "symbol", I_SYMBOL_DECL (node), indent + 4);
562 print_node (file, "tag", I_TAG_DECL (node), indent + 4);
563 print_node (file, "label", I_LABEL_DECL (node), indent + 4);
564 if (C_IS_RESERVED_WORD (node) && C_RID_CODE (node) != RID_CXX_COMPAT_WARN)
566 tree rid = ridpointers[C_RID_CODE (node)];
567 indent_to (file, indent + 4);
568 fprintf (file, "rid " HOST_PTR_PRINTF " \"%s\"",
569 (void *) rid, IDENTIFIER_POINTER (rid));
573 /* Establish a binding between NAME, an IDENTIFIER_NODE, and DECL,
574 which may be any of several kinds of DECL or TYPE or error_mark_node,
575 in the scope SCOPE. */
576 static void
577 bind (tree name, tree decl, struct c_scope *scope, bool invisible,
578 bool nested, location_t locus)
580 struct c_binding *b, **here;
582 if (binding_freelist)
584 b = binding_freelist;
585 binding_freelist = b->prev;
587 else
588 b = ggc_alloc_c_binding ();
590 b->shadowed = 0;
591 b->decl = decl;
592 b->id = name;
593 b->depth = scope->depth;
594 b->invisible = invisible;
595 b->nested = nested;
596 b->inner_comp = 0;
597 b->in_struct = 0;
598 b->locus = locus;
600 b->u.type = NULL;
602 b->prev = scope->bindings;
603 scope->bindings = b;
605 if (!name)
606 return;
608 switch (TREE_CODE (decl))
610 case LABEL_DECL: here = &I_LABEL_BINDING (name); break;
611 case ENUMERAL_TYPE:
612 case UNION_TYPE:
613 case RECORD_TYPE: here = &I_TAG_BINDING (name); break;
614 case VAR_DECL:
615 case FUNCTION_DECL:
616 case TYPE_DECL:
617 case CONST_DECL:
618 case PARM_DECL:
619 case ERROR_MARK: here = &I_SYMBOL_BINDING (name); break;
621 default:
622 gcc_unreachable ();
625 /* Locate the appropriate place in the chain of shadowed decls
626 to insert this binding. Normally, scope == current_scope and
627 this does nothing. */
628 while (*here && (*here)->depth > scope->depth)
629 here = &(*here)->shadowed;
631 b->shadowed = *here;
632 *here = b;
635 /* Clear the binding structure B, stick it on the binding_freelist,
636 and return the former value of b->prev. This is used by pop_scope
637 and get_parm_info to iterate destructively over all the bindings
638 from a given scope. */
639 static struct c_binding *
640 free_binding_and_advance (struct c_binding *b)
642 struct c_binding *prev = b->prev;
644 memset (b, 0, sizeof (struct c_binding));
645 b->prev = binding_freelist;
646 binding_freelist = b;
648 return prev;
651 /* Bind a label. Like bind, but skip fields which aren't used for
652 labels, and add the LABEL_VARS value. */
653 static void
654 bind_label (tree name, tree label, struct c_scope *scope,
655 struct c_label_vars *label_vars)
657 struct c_binding *b;
659 bind (name, label, scope, /*invisible=*/false, /*nested=*/false,
660 UNKNOWN_LOCATION);
662 scope->has_label_bindings = true;
664 b = scope->bindings;
665 gcc_assert (b->decl == label);
666 label_vars->shadowed = b->u.label;
667 b->u.label = label_vars;
670 /* Hook called at end of compilation to assume 1 elt
671 for a file-scope tentative array defn that wasn't complete before. */
673 void
674 c_finish_incomplete_decl (tree decl)
676 if (TREE_CODE (decl) == VAR_DECL)
678 tree type = TREE_TYPE (decl);
679 if (type != error_mark_node
680 && TREE_CODE (type) == ARRAY_TYPE
681 && !DECL_EXTERNAL (decl)
682 && TYPE_DOMAIN (type) == 0)
684 warning_at (DECL_SOURCE_LOCATION (decl),
685 0, "array %q+D assumed to have one element", decl);
687 complete_array_type (&TREE_TYPE (decl), NULL_TREE, true);
689 layout_decl (decl, 0);
694 /* Record that inline function FUNC contains a reference (location
695 LOC) to static DECL (file-scope or function-local according to
696 TYPE). */
698 void
699 record_inline_static (location_t loc, tree func, tree decl,
700 enum c_inline_static_type type)
702 struct c_inline_static *csi = ggc_alloc_c_inline_static ();
703 csi->location = loc;
704 csi->function = func;
705 csi->static_decl = decl;
706 csi->type = type;
707 csi->next = c_inline_statics;
708 c_inline_statics = csi;
711 /* Check for references to static declarations in inline functions at
712 the end of the translation unit and diagnose them if the functions
713 are still inline definitions. */
715 static void
716 check_inline_statics (void)
718 struct c_inline_static *csi;
719 for (csi = c_inline_statics; csi; csi = csi->next)
721 if (DECL_EXTERNAL (csi->function))
722 switch (csi->type)
724 case csi_internal:
725 pedwarn (csi->location, 0,
726 "%qD is static but used in inline function %qD "
727 "which is not static", csi->static_decl, csi->function);
728 break;
729 case csi_modifiable:
730 pedwarn (csi->location, 0,
731 "%q+D is static but declared in inline function %qD "
732 "which is not static", csi->static_decl, csi->function);
733 break;
734 default:
735 gcc_unreachable ();
738 c_inline_statics = NULL;
741 /* Fill in a c_spot_bindings structure. If DEFINING is true, set it
742 for the current state, otherwise set it to uninitialized. */
744 static void
745 set_spot_bindings (struct c_spot_bindings *p, bool defining)
747 if (defining)
749 p->scope = current_scope;
750 p->bindings_in_scope = current_scope->bindings;
752 else
754 p->scope = NULL;
755 p->bindings_in_scope = NULL;
757 p->stmt_exprs = 0;
758 p->left_stmt_expr = false;
761 /* Return true if we will want to say something if a goto statement
762 crosses DECL. */
764 static bool
765 decl_jump_unsafe (tree decl)
767 if (decl == error_mark_node || TREE_TYPE (decl) == error_mark_node)
768 return false;
770 /* Always warn about crossing variably modified types. */
771 if ((TREE_CODE (decl) == VAR_DECL || TREE_CODE (decl) == TYPE_DECL)
772 && variably_modified_type_p (TREE_TYPE (decl), NULL_TREE))
773 return true;
775 /* Otherwise, only warn if -Wgoto-misses-init and this is an
776 initialized automatic decl. */
777 if (warn_jump_misses_init
778 && TREE_CODE (decl) == VAR_DECL
779 && !TREE_STATIC (decl)
780 && DECL_INITIAL (decl) != NULL_TREE)
781 return true;
783 return false;
786 /* Update spot bindings P as we pop out of SCOPE. Return true if we
787 should push decls for a label. */
789 static bool
790 update_spot_bindings (struct c_scope *scope, struct c_spot_bindings *p)
792 if (p->scope != scope)
794 /* This label or goto is defined in some other scope, or it is a
795 label which is not yet defined. There is nothing to
796 update. */
797 return false;
800 /* Adjust the spot bindings to refer to the bindings already defined
801 in the enclosing scope. */
802 p->scope = scope->outer;
803 p->bindings_in_scope = p->scope->bindings;
805 return true;
808 /* The Objective-C front-end often needs to determine the current scope. */
810 void *
811 objc_get_current_scope (void)
813 return current_scope;
816 /* The following function is used only by Objective-C. It needs to live here
817 because it accesses the innards of c_scope. */
819 void
820 objc_mark_locals_volatile (void *enclosing_blk)
822 struct c_scope *scope;
823 struct c_binding *b;
825 for (scope = current_scope;
826 scope && scope != enclosing_blk;
827 scope = scope->outer)
829 for (b = scope->bindings; b; b = b->prev)
830 objc_volatilize_decl (b->decl);
832 /* Do not climb up past the current function. */
833 if (scope->function_body)
834 break;
838 /* Nonzero if we are currently in file scope. */
841 global_bindings_p (void)
843 return (current_scope == file_scope && !c_override_global_bindings_to_false
844 ? -1
845 : 0);
848 void
849 keep_next_level (void)
851 keep_next_level_flag = true;
854 /* Set the flag for the FLOAT_CONST_DECIMAL64 pragma being ON. */
856 void
857 set_float_const_decimal64 (void)
859 current_scope->float_const_decimal64 = true;
862 /* Clear the flag for the FLOAT_CONST_DECIMAL64 pragma. */
864 void
865 clear_float_const_decimal64 (void)
867 current_scope->float_const_decimal64 = false;
870 /* Return nonzero if an unsuffixed float constant is _Decimal64. */
872 bool
873 float_const_decimal64_p (void)
875 return current_scope->float_const_decimal64;
878 /* Identify this scope as currently being filled with parameters. */
880 void
881 declare_parm_level (void)
883 current_scope->parm_flag = true;
886 void
887 push_scope (void)
889 if (next_is_function_body)
891 /* This is the transition from the parameters to the top level
892 of the function body. These are the same scope
893 (C99 6.2.1p4,6) so we do not push another scope structure.
894 next_is_function_body is set only by store_parm_decls, which
895 in turn is called when and only when we are about to
896 encounter the opening curly brace for the function body.
898 The outermost block of a function always gets a BLOCK node,
899 because the debugging output routines expect that each
900 function has at least one BLOCK. */
901 current_scope->parm_flag = false;
902 current_scope->function_body = true;
903 current_scope->keep = true;
904 current_scope->outer_function = current_function_scope;
905 current_function_scope = current_scope;
907 keep_next_level_flag = false;
908 next_is_function_body = false;
910 /* The FLOAT_CONST_DECIMAL64 pragma applies to nested scopes. */
911 if (current_scope->outer)
912 current_scope->float_const_decimal64
913 = current_scope->outer->float_const_decimal64;
914 else
915 current_scope->float_const_decimal64 = false;
917 else
919 struct c_scope *scope;
920 if (scope_freelist)
922 scope = scope_freelist;
923 scope_freelist = scope->outer;
925 else
926 scope = ggc_alloc_cleared_c_scope ();
928 /* The FLOAT_CONST_DECIMAL64 pragma applies to nested scopes. */
929 if (current_scope)
930 scope->float_const_decimal64 = current_scope->float_const_decimal64;
931 else
932 scope->float_const_decimal64 = false;
934 scope->keep = keep_next_level_flag;
935 scope->outer = current_scope;
936 scope->depth = current_scope ? (current_scope->depth + 1) : 0;
938 /* Check for scope depth overflow. Unlikely (2^28 == 268,435,456) but
939 possible. */
940 if (current_scope && scope->depth == 0)
942 scope->depth--;
943 sorry ("GCC supports only %u nested scopes", scope->depth);
946 current_scope = scope;
947 keep_next_level_flag = false;
951 /* This is called when we are leaving SCOPE. For each label defined
952 in SCOPE, add any appropriate decls to its decls_in_scope fields.
953 These are the decls whose initialization will be skipped by a goto
954 later in the function. */
956 static void
957 update_label_decls (struct c_scope *scope)
959 struct c_scope *s;
961 s = scope;
962 while (s != NULL)
964 if (s->has_label_bindings)
966 struct c_binding *b;
968 for (b = s->bindings; b != NULL; b = b->prev)
970 struct c_label_vars *label_vars;
971 struct c_binding *b1;
972 unsigned int ix;
973 struct c_goto_bindings *g;
975 if (TREE_CODE (b->decl) != LABEL_DECL)
976 continue;
977 label_vars = b->u.label;
979 b1 = label_vars->label_bindings.bindings_in_scope;
980 if (update_spot_bindings (scope, &label_vars->label_bindings))
982 /* This label is defined in this scope. */
983 for (; b1 != NULL; b1 = b1->prev)
985 /* A goto from later in the function to this
986 label will never see the initialization of
987 B1, if any. Save it to issue a warning if
988 needed. */
989 if (decl_jump_unsafe (b1->decl))
990 VEC_safe_push (tree, gc, label_vars->decls_in_scope,
991 b1->decl);
995 /* Update the bindings of any goto statements associated
996 with this label. */
997 FOR_EACH_VEC_ELT (c_goto_bindings_p, label_vars->gotos, ix, g)
998 update_spot_bindings (scope, &g->goto_bindings);
1002 /* Don't search beyond the current function. */
1003 if (s == current_function_scope)
1004 break;
1006 s = s->outer;
1010 /* Set the TYPE_CONTEXT of all of TYPE's variants to CONTEXT. */
1012 static void
1013 set_type_context (tree type, tree context)
1015 for (type = TYPE_MAIN_VARIANT (type); type;
1016 type = TYPE_NEXT_VARIANT (type))
1017 TYPE_CONTEXT (type) = context;
1020 /* Exit a scope. Restore the state of the identifier-decl mappings
1021 that were in effect when this scope was entered. Return a BLOCK
1022 node containing all the DECLs in this scope that are of interest
1023 to debug info generation. */
1025 tree
1026 pop_scope (void)
1028 struct c_scope *scope = current_scope;
1029 tree block, context, p;
1030 struct c_binding *b;
1032 bool functionbody = scope->function_body;
1033 bool keep = functionbody || scope->keep || scope->bindings;
1035 update_label_decls (scope);
1037 /* If appropriate, create a BLOCK to record the decls for the life
1038 of this function. */
1039 block = 0;
1040 if (keep)
1042 block = make_node (BLOCK);
1043 BLOCK_SUBBLOCKS (block) = scope->blocks;
1044 TREE_USED (block) = 1;
1046 /* In each subblock, record that this is its superior. */
1047 for (p = scope->blocks; p; p = BLOCK_CHAIN (p))
1048 BLOCK_SUPERCONTEXT (p) = block;
1050 BLOCK_VARS (block) = 0;
1053 /* The TYPE_CONTEXTs for all of the tagged types belonging to this
1054 scope must be set so that they point to the appropriate
1055 construct, i.e. either to the current FUNCTION_DECL node, or
1056 else to the BLOCK node we just constructed.
1058 Note that for tagged types whose scope is just the formal
1059 parameter list for some function type specification, we can't
1060 properly set their TYPE_CONTEXTs here, because we don't have a
1061 pointer to the appropriate FUNCTION_TYPE node readily available
1062 to us. For those cases, the TYPE_CONTEXTs of the relevant tagged
1063 type nodes get set in `grokdeclarator' as soon as we have created
1064 the FUNCTION_TYPE node which will represent the "scope" for these
1065 "parameter list local" tagged types. */
1066 if (scope->function_body)
1067 context = current_function_decl;
1068 else if (scope == file_scope)
1070 tree file_decl = build_translation_unit_decl (NULL_TREE);
1071 context = file_decl;
1073 else
1074 context = block;
1076 /* Clear all bindings in this scope. */
1077 for (b = scope->bindings; b; b = free_binding_and_advance (b))
1079 p = b->decl;
1080 switch (TREE_CODE (p))
1082 case LABEL_DECL:
1083 /* Warnings for unused labels, errors for undefined labels. */
1084 if (TREE_USED (p) && !DECL_INITIAL (p))
1086 error ("label %q+D used but not defined", p);
1087 DECL_INITIAL (p) = error_mark_node;
1089 else
1090 warn_for_unused_label (p);
1092 /* Labels go in BLOCK_VARS. */
1093 DECL_CHAIN (p) = BLOCK_VARS (block);
1094 BLOCK_VARS (block) = p;
1095 gcc_assert (I_LABEL_BINDING (b->id) == b);
1096 I_LABEL_BINDING (b->id) = b->shadowed;
1098 /* Also pop back to the shadowed label_vars. */
1099 release_tree_vector (b->u.label->decls_in_scope);
1100 b->u.label = b->u.label->shadowed;
1101 break;
1103 case ENUMERAL_TYPE:
1104 case UNION_TYPE:
1105 case RECORD_TYPE:
1106 set_type_context (p, context);
1108 /* Types may not have tag-names, in which case the type
1109 appears in the bindings list with b->id NULL. */
1110 if (b->id)
1112 gcc_assert (I_TAG_BINDING (b->id) == b);
1113 I_TAG_BINDING (b->id) = b->shadowed;
1115 break;
1117 case FUNCTION_DECL:
1118 /* Propagate TREE_ADDRESSABLE from nested functions to their
1119 containing functions. */
1120 if (!TREE_ASM_WRITTEN (p)
1121 && DECL_INITIAL (p) != 0
1122 && TREE_ADDRESSABLE (p)
1123 && DECL_ABSTRACT_ORIGIN (p) != 0
1124 && DECL_ABSTRACT_ORIGIN (p) != p)
1125 TREE_ADDRESSABLE (DECL_ABSTRACT_ORIGIN (p)) = 1;
1126 if (!DECL_EXTERNAL (p)
1127 && !DECL_INITIAL (p)
1128 && scope != file_scope
1129 && scope != external_scope)
1131 error ("nested function %q+D declared but never defined", p);
1132 undef_nested_function = true;
1134 else if (DECL_DECLARED_INLINE_P (p)
1135 && TREE_PUBLIC (p)
1136 && !DECL_INITIAL (p))
1138 /* C99 6.7.4p6: "a function with external linkage... declared
1139 with an inline function specifier ... shall also be defined
1140 in the same translation unit." */
1141 if (!flag_gnu89_inline)
1142 pedwarn (input_location, 0,
1143 "inline function %q+D declared but never defined", p);
1144 DECL_EXTERNAL (p) = 1;
1147 goto common_symbol;
1149 case VAR_DECL:
1150 /* Warnings for unused variables. */
1151 if ((!TREE_USED (p) || !DECL_READ_P (p))
1152 && !TREE_NO_WARNING (p)
1153 && !DECL_IN_SYSTEM_HEADER (p)
1154 && DECL_NAME (p)
1155 && !DECL_ARTIFICIAL (p)
1156 && scope != file_scope
1157 && scope != external_scope)
1159 if (!TREE_USED (p))
1160 warning (OPT_Wunused_variable, "unused variable %q+D", p);
1161 else if (DECL_CONTEXT (p) == current_function_decl)
1162 warning_at (DECL_SOURCE_LOCATION (p),
1163 OPT_Wunused_but_set_variable,
1164 "variable %qD set but not used", p);
1167 if (b->inner_comp)
1169 error ("type of array %q+D completed incompatibly with"
1170 " implicit initialization", p);
1173 /* Fall through. */
1174 case TYPE_DECL:
1175 case CONST_DECL:
1176 common_symbol:
1177 /* All of these go in BLOCK_VARS, but only if this is the
1178 binding in the home scope. */
1179 if (!b->nested)
1181 DECL_CHAIN (p) = BLOCK_VARS (block);
1182 BLOCK_VARS (block) = p;
1184 else if (VAR_OR_FUNCTION_DECL_P (p))
1186 /* For block local externs add a special
1187 DECL_EXTERNAL decl for debug info generation. */
1188 tree extp = copy_node (p);
1190 DECL_EXTERNAL (extp) = 1;
1191 TREE_STATIC (extp) = 0;
1192 TREE_PUBLIC (extp) = 1;
1193 DECL_INITIAL (extp) = NULL_TREE;
1194 DECL_LANG_SPECIFIC (extp) = NULL;
1195 DECL_CONTEXT (extp) = current_function_decl;
1196 if (TREE_CODE (p) == FUNCTION_DECL)
1198 DECL_RESULT (extp) = NULL_TREE;
1199 DECL_SAVED_TREE (extp) = NULL_TREE;
1200 DECL_STRUCT_FUNCTION (extp) = NULL;
1202 if (b->locus != UNKNOWN_LOCATION)
1203 DECL_SOURCE_LOCATION (extp) = b->locus;
1204 DECL_CHAIN (extp) = BLOCK_VARS (block);
1205 BLOCK_VARS (block) = extp;
1207 /* If this is the file scope set DECL_CONTEXT of each decl to
1208 the TRANSLATION_UNIT_DECL. This makes same_translation_unit_p
1209 work. */
1210 if (scope == file_scope)
1212 DECL_CONTEXT (p) = context;
1213 if (TREE_CODE (p) == TYPE_DECL
1214 && TREE_TYPE (p) != error_mark_node)
1215 set_type_context (TREE_TYPE (p), context);
1218 /* Fall through. */
1219 /* Parameters go in DECL_ARGUMENTS, not BLOCK_VARS, and have
1220 already been put there by store_parm_decls. Unused-
1221 parameter warnings are handled by function.c.
1222 error_mark_node obviously does not go in BLOCK_VARS and
1223 does not get unused-variable warnings. */
1224 case PARM_DECL:
1225 case ERROR_MARK:
1226 /* It is possible for a decl not to have a name. We get
1227 here with b->id NULL in this case. */
1228 if (b->id)
1230 gcc_assert (I_SYMBOL_BINDING (b->id) == b);
1231 I_SYMBOL_BINDING (b->id) = b->shadowed;
1232 if (b->shadowed && b->shadowed->u.type)
1233 TREE_TYPE (b->shadowed->decl) = b->shadowed->u.type;
1235 break;
1237 default:
1238 gcc_unreachable ();
1243 /* Dispose of the block that we just made inside some higher level. */
1244 if ((scope->function_body || scope == file_scope) && context)
1246 DECL_INITIAL (context) = block;
1247 BLOCK_SUPERCONTEXT (block) = context;
1249 else if (scope->outer)
1251 if (block)
1252 SCOPE_LIST_APPEND (scope->outer, blocks, block);
1253 /* If we did not make a block for the scope just exited, any
1254 blocks made for inner scopes must be carried forward so they
1255 will later become subblocks of something else. */
1256 else if (scope->blocks)
1257 SCOPE_LIST_CONCAT (scope->outer, blocks, scope, blocks);
1260 /* Pop the current scope, and free the structure for reuse. */
1261 current_scope = scope->outer;
1262 if (scope->function_body)
1263 current_function_scope = scope->outer_function;
1265 memset (scope, 0, sizeof (struct c_scope));
1266 scope->outer = scope_freelist;
1267 scope_freelist = scope;
1269 return block;
1272 void
1273 push_file_scope (void)
1275 tree decl;
1277 if (file_scope)
1278 return;
1280 push_scope ();
1281 file_scope = current_scope;
1283 start_fname_decls ();
1285 for (decl = visible_builtins; decl; decl = DECL_CHAIN (decl))
1286 bind (DECL_NAME (decl), decl, file_scope,
1287 /*invisible=*/false, /*nested=*/true, DECL_SOURCE_LOCATION (decl));
1290 void
1291 pop_file_scope (void)
1293 /* In case there were missing closebraces, get us back to the global
1294 binding level. */
1295 while (current_scope != file_scope)
1296 pop_scope ();
1298 /* __FUNCTION__ is defined at file scope (""). This
1299 call may not be necessary as my tests indicate it
1300 still works without it. */
1301 finish_fname_decls ();
1303 check_inline_statics ();
1305 /* This is the point to write out a PCH if we're doing that.
1306 In that case we do not want to do anything else. */
1307 if (pch_file)
1309 c_common_write_pch ();
1310 return;
1313 /* Pop off the file scope and close this translation unit. */
1314 pop_scope ();
1315 file_scope = 0;
1317 maybe_apply_pending_pragma_weaks ();
1320 /* Adjust the bindings for the start of a statement expression. */
1322 void
1323 c_bindings_start_stmt_expr (struct c_spot_bindings* switch_bindings)
1325 struct c_scope *scope;
1327 for (scope = current_scope; scope != NULL; scope = scope->outer)
1329 struct c_binding *b;
1331 if (!scope->has_label_bindings)
1332 continue;
1334 for (b = scope->bindings; b != NULL; b = b->prev)
1336 struct c_label_vars *label_vars;
1337 unsigned int ix;
1338 struct c_goto_bindings *g;
1340 if (TREE_CODE (b->decl) != LABEL_DECL)
1341 continue;
1342 label_vars = b->u.label;
1343 ++label_vars->label_bindings.stmt_exprs;
1344 FOR_EACH_VEC_ELT (c_goto_bindings_p, label_vars->gotos, ix, g)
1345 ++g->goto_bindings.stmt_exprs;
1349 if (switch_bindings != NULL)
1350 ++switch_bindings->stmt_exprs;
1353 /* Adjust the bindings for the end of a statement expression. */
1355 void
1356 c_bindings_end_stmt_expr (struct c_spot_bindings *switch_bindings)
1358 struct c_scope *scope;
1360 for (scope = current_scope; scope != NULL; scope = scope->outer)
1362 struct c_binding *b;
1364 if (!scope->has_label_bindings)
1365 continue;
1367 for (b = scope->bindings; b != NULL; b = b->prev)
1369 struct c_label_vars *label_vars;
1370 unsigned int ix;
1371 struct c_goto_bindings *g;
1373 if (TREE_CODE (b->decl) != LABEL_DECL)
1374 continue;
1375 label_vars = b->u.label;
1376 --label_vars->label_bindings.stmt_exprs;
1377 if (label_vars->label_bindings.stmt_exprs < 0)
1379 label_vars->label_bindings.left_stmt_expr = true;
1380 label_vars->label_bindings.stmt_exprs = 0;
1382 FOR_EACH_VEC_ELT (c_goto_bindings_p, label_vars->gotos, ix, g)
1384 --g->goto_bindings.stmt_exprs;
1385 if (g->goto_bindings.stmt_exprs < 0)
1387 g->goto_bindings.left_stmt_expr = true;
1388 g->goto_bindings.stmt_exprs = 0;
1394 if (switch_bindings != NULL)
1396 --switch_bindings->stmt_exprs;
1397 gcc_assert (switch_bindings->stmt_exprs >= 0);
1401 /* Push a definition or a declaration of struct, union or enum tag "name".
1402 "type" should be the type node.
1403 We assume that the tag "name" is not already defined, and has a location
1404 of LOC.
1406 Note that the definition may really be just a forward reference.
1407 In that case, the TYPE_SIZE will be zero. */
1409 static void
1410 pushtag (location_t loc, tree name, tree type)
1412 /* Record the identifier as the type's name if it has none. */
1413 if (name && !TYPE_NAME (type))
1414 TYPE_NAME (type) = name;
1415 bind (name, type, current_scope, /*invisible=*/false, /*nested=*/false, loc);
1417 /* Create a fake NULL-named TYPE_DECL node whose TREE_TYPE will be the
1418 tagged type we just added to the current scope. This fake
1419 NULL-named TYPE_DECL node helps dwarfout.c to know when it needs
1420 to output a representation of a tagged type, and it also gives
1421 us a convenient place to record the "scope start" address for the
1422 tagged type. */
1424 TYPE_STUB_DECL (type) = pushdecl (build_decl (loc,
1425 TYPE_DECL, NULL_TREE, type));
1427 /* An approximation for now, so we can tell this is a function-scope tag.
1428 This will be updated in pop_scope. */
1429 TYPE_CONTEXT (type) = DECL_CONTEXT (TYPE_STUB_DECL (type));
1431 if (warn_cxx_compat && name != NULL_TREE)
1433 struct c_binding *b = I_SYMBOL_BINDING (name);
1435 if (b != NULL
1436 && b->decl != NULL_TREE
1437 && TREE_CODE (b->decl) == TYPE_DECL
1438 && (B_IN_CURRENT_SCOPE (b)
1439 || (current_scope == file_scope && B_IN_EXTERNAL_SCOPE (b)))
1440 && (TYPE_MAIN_VARIANT (TREE_TYPE (b->decl))
1441 != TYPE_MAIN_VARIANT (type)))
1443 warning_at (loc, OPT_Wc___compat,
1444 ("using %qD as both a typedef and a tag is "
1445 "invalid in C++"),
1446 b->decl);
1447 if (b->locus != UNKNOWN_LOCATION)
1448 inform (b->locus, "originally defined here");
1453 /* Subroutine of compare_decls. Allow harmless mismatches in return
1454 and argument types provided that the type modes match. This function
1455 return a unified type given a suitable match, and 0 otherwise. */
1457 static tree
1458 match_builtin_function_types (tree newtype, tree oldtype)
1460 tree newrettype, oldrettype;
1461 tree newargs, oldargs;
1462 tree trytype, tryargs;
1464 /* Accept the return type of the new declaration if same modes. */
1465 oldrettype = TREE_TYPE (oldtype);
1466 newrettype = TREE_TYPE (newtype);
1468 if (TYPE_MODE (oldrettype) != TYPE_MODE (newrettype))
1469 return 0;
1471 oldargs = TYPE_ARG_TYPES (oldtype);
1472 newargs = TYPE_ARG_TYPES (newtype);
1473 tryargs = newargs;
1475 while (oldargs || newargs)
1477 if (!oldargs
1478 || !newargs
1479 || !TREE_VALUE (oldargs)
1480 || !TREE_VALUE (newargs)
1481 || TYPE_MODE (TREE_VALUE (oldargs))
1482 != TYPE_MODE (TREE_VALUE (newargs)))
1483 return 0;
1485 oldargs = TREE_CHAIN (oldargs);
1486 newargs = TREE_CHAIN (newargs);
1489 trytype = build_function_type (newrettype, tryargs);
1490 return build_type_attribute_variant (trytype, TYPE_ATTRIBUTES (oldtype));
1493 /* Subroutine of diagnose_mismatched_decls. Check for function type
1494 mismatch involving an empty arglist vs a nonempty one and give clearer
1495 diagnostics. */
1496 static void
1497 diagnose_arglist_conflict (tree newdecl, tree olddecl,
1498 tree newtype, tree oldtype)
1500 tree t;
1502 if (TREE_CODE (olddecl) != FUNCTION_DECL
1503 || !comptypes (TREE_TYPE (oldtype), TREE_TYPE (newtype))
1504 || !((!prototype_p (oldtype) && DECL_INITIAL (olddecl) == 0)
1505 || (!prototype_p (newtype) && DECL_INITIAL (newdecl) == 0)))
1506 return;
1508 t = TYPE_ARG_TYPES (oldtype);
1509 if (t == 0)
1510 t = TYPE_ARG_TYPES (newtype);
1511 for (; t; t = TREE_CHAIN (t))
1513 tree type = TREE_VALUE (t);
1515 if (TREE_CHAIN (t) == 0
1516 && TYPE_MAIN_VARIANT (type) != void_type_node)
1518 inform (input_location, "a parameter list with an ellipsis can%'t match "
1519 "an empty parameter name list declaration");
1520 break;
1523 if (c_type_promotes_to (type) != type)
1525 inform (input_location, "an argument type that has a default promotion can%'t match "
1526 "an empty parameter name list declaration");
1527 break;
1532 /* Another subroutine of diagnose_mismatched_decls. OLDDECL is an
1533 old-style function definition, NEWDECL is a prototype declaration.
1534 Diagnose inconsistencies in the argument list. Returns TRUE if
1535 the prototype is compatible, FALSE if not. */
1536 static bool
1537 validate_proto_after_old_defn (tree newdecl, tree newtype, tree oldtype)
1539 tree newargs, oldargs;
1540 int i;
1542 #define END_OF_ARGLIST(t) ((t) == void_type_node)
1544 oldargs = TYPE_ACTUAL_ARG_TYPES (oldtype);
1545 newargs = TYPE_ARG_TYPES (newtype);
1546 i = 1;
1548 for (;;)
1550 tree oldargtype = TREE_VALUE (oldargs);
1551 tree newargtype = TREE_VALUE (newargs);
1553 if (oldargtype == error_mark_node || newargtype == error_mark_node)
1554 return false;
1556 oldargtype = TYPE_MAIN_VARIANT (oldargtype);
1557 newargtype = TYPE_MAIN_VARIANT (newargtype);
1559 if (END_OF_ARGLIST (oldargtype) && END_OF_ARGLIST (newargtype))
1560 break;
1562 /* Reaching the end of just one list means the two decls don't
1563 agree on the number of arguments. */
1564 if (END_OF_ARGLIST (oldargtype))
1566 error ("prototype for %q+D declares more arguments "
1567 "than previous old-style definition", newdecl);
1568 return false;
1570 else if (END_OF_ARGLIST (newargtype))
1572 error ("prototype for %q+D declares fewer arguments "
1573 "than previous old-style definition", newdecl);
1574 return false;
1577 /* Type for passing arg must be consistent with that declared
1578 for the arg. */
1579 else if (!comptypes (oldargtype, newargtype))
1581 error ("prototype for %q+D declares argument %d"
1582 " with incompatible type",
1583 newdecl, i);
1584 return false;
1587 oldargs = TREE_CHAIN (oldargs);
1588 newargs = TREE_CHAIN (newargs);
1589 i++;
1592 /* If we get here, no errors were found, but do issue a warning
1593 for this poor-style construct. */
1594 warning (0, "prototype for %q+D follows non-prototype definition",
1595 newdecl);
1596 return true;
1597 #undef END_OF_ARGLIST
1600 /* Subroutine of diagnose_mismatched_decls. Report the location of DECL,
1601 first in a pair of mismatched declarations, using the diagnostic
1602 function DIAG. */
1603 static void
1604 locate_old_decl (tree decl)
1606 if (TREE_CODE (decl) == FUNCTION_DECL && DECL_BUILT_IN (decl))
1608 else if (DECL_INITIAL (decl))
1609 inform (input_location, "previous definition of %q+D was here", decl);
1610 else if (C_DECL_IMPLICIT (decl))
1611 inform (input_location, "previous implicit declaration of %q+D was here", decl);
1612 else
1613 inform (input_location, "previous declaration of %q+D was here", decl);
1616 /* Subroutine of duplicate_decls. Compare NEWDECL to OLDDECL.
1617 Returns true if the caller should proceed to merge the two, false
1618 if OLDDECL should simply be discarded. As a side effect, issues
1619 all necessary diagnostics for invalid or poor-style combinations.
1620 If it returns true, writes the types of NEWDECL and OLDDECL to
1621 *NEWTYPEP and *OLDTYPEP - these may have been adjusted from
1622 TREE_TYPE (NEWDECL, OLDDECL) respectively. */
1624 static bool
1625 diagnose_mismatched_decls (tree newdecl, tree olddecl,
1626 tree *newtypep, tree *oldtypep)
1628 tree newtype, oldtype;
1629 bool pedwarned = false;
1630 bool warned = false;
1631 bool retval = true;
1633 #define DECL_EXTERN_INLINE(DECL) (DECL_DECLARED_INLINE_P (DECL) \
1634 && DECL_EXTERNAL (DECL))
1636 /* If we have error_mark_node for either decl or type, just discard
1637 the previous decl - we're in an error cascade already. */
1638 if (olddecl == error_mark_node || newdecl == error_mark_node)
1639 return false;
1640 *oldtypep = oldtype = TREE_TYPE (olddecl);
1641 *newtypep = newtype = TREE_TYPE (newdecl);
1642 if (oldtype == error_mark_node || newtype == error_mark_node)
1643 return false;
1645 /* Two different categories of symbol altogether. This is an error
1646 unless OLDDECL is a builtin. OLDDECL will be discarded in any case. */
1647 if (TREE_CODE (olddecl) != TREE_CODE (newdecl))
1649 if (!(TREE_CODE (olddecl) == FUNCTION_DECL
1650 && DECL_BUILT_IN (olddecl)
1651 && !C_DECL_DECLARED_BUILTIN (olddecl)))
1653 error ("%q+D redeclared as different kind of symbol", newdecl);
1654 locate_old_decl (olddecl);
1656 else if (TREE_PUBLIC (newdecl))
1657 warning (0, "built-in function %q+D declared as non-function",
1658 newdecl);
1659 else
1660 warning (OPT_Wshadow, "declaration of %q+D shadows "
1661 "a built-in function", newdecl);
1662 return false;
1665 /* Enumerators have no linkage, so may only be declared once in a
1666 given scope. */
1667 if (TREE_CODE (olddecl) == CONST_DECL)
1669 error ("redeclaration of enumerator %q+D", newdecl);
1670 locate_old_decl (olddecl);
1671 return false;
1674 if (!comptypes (oldtype, newtype))
1676 if (TREE_CODE (olddecl) == FUNCTION_DECL
1677 && DECL_BUILT_IN (olddecl) && !C_DECL_DECLARED_BUILTIN (olddecl))
1679 /* Accept harmless mismatch in function types.
1680 This is for the ffs and fprintf builtins. */
1681 tree trytype = match_builtin_function_types (newtype, oldtype);
1683 if (trytype && comptypes (newtype, trytype))
1684 *oldtypep = oldtype = trytype;
1685 else
1687 /* If types don't match for a built-in, throw away the
1688 built-in. No point in calling locate_old_decl here, it
1689 won't print anything. */
1690 warning (0, "conflicting types for built-in function %q+D",
1691 newdecl);
1692 return false;
1695 else if (TREE_CODE (olddecl) == FUNCTION_DECL
1696 && DECL_IS_BUILTIN (olddecl))
1698 /* A conflicting function declaration for a predeclared
1699 function that isn't actually built in. Objective C uses
1700 these. The new declaration silently overrides everything
1701 but the volatility (i.e. noreturn) indication. See also
1702 below. FIXME: Make Objective C use normal builtins. */
1703 TREE_THIS_VOLATILE (newdecl) |= TREE_THIS_VOLATILE (olddecl);
1704 return false;
1706 /* Permit void foo (...) to match int foo (...) if the latter is
1707 the definition and implicit int was used. See
1708 c-torture/compile/920625-2.c. */
1709 else if (TREE_CODE (newdecl) == FUNCTION_DECL && DECL_INITIAL (newdecl)
1710 && TYPE_MAIN_VARIANT (TREE_TYPE (oldtype)) == void_type_node
1711 && TYPE_MAIN_VARIANT (TREE_TYPE (newtype)) == integer_type_node
1712 && C_FUNCTION_IMPLICIT_INT (newdecl) && !DECL_INITIAL (olddecl))
1714 pedwarned = pedwarn (input_location, 0,
1715 "conflicting types for %q+D", newdecl);
1716 /* Make sure we keep void as the return type. */
1717 TREE_TYPE (newdecl) = *newtypep = newtype = oldtype;
1718 C_FUNCTION_IMPLICIT_INT (newdecl) = 0;
1720 /* Permit void foo (...) to match an earlier call to foo (...) with
1721 no declared type (thus, implicitly int). */
1722 else if (TREE_CODE (newdecl) == FUNCTION_DECL
1723 && TYPE_MAIN_VARIANT (TREE_TYPE (newtype)) == void_type_node
1724 && TYPE_MAIN_VARIANT (TREE_TYPE (oldtype)) == integer_type_node
1725 && C_DECL_IMPLICIT (olddecl) && !DECL_INITIAL (olddecl))
1727 pedwarned = pedwarn (input_location, 0,
1728 "conflicting types for %q+D", newdecl);
1729 /* Make sure we keep void as the return type. */
1730 TREE_TYPE (olddecl) = *oldtypep = oldtype = newtype;
1732 else
1734 int new_quals = TYPE_QUALS (newtype);
1735 int old_quals = TYPE_QUALS (oldtype);
1737 if (new_quals != old_quals)
1739 addr_space_t new_addr = DECODE_QUAL_ADDR_SPACE (new_quals);
1740 addr_space_t old_addr = DECODE_QUAL_ADDR_SPACE (old_quals);
1741 if (new_addr != old_addr)
1743 if (ADDR_SPACE_GENERIC_P (new_addr))
1744 error ("conflicting named address spaces (generic vs %s) "
1745 "for %q+D",
1746 c_addr_space_name (old_addr), newdecl);
1747 else if (ADDR_SPACE_GENERIC_P (old_addr))
1748 error ("conflicting named address spaces (%s vs generic) "
1749 "for %q+D",
1750 c_addr_space_name (new_addr), newdecl);
1751 else
1752 error ("conflicting named address spaces (%s vs %s) "
1753 "for %q+D",
1754 c_addr_space_name (new_addr),
1755 c_addr_space_name (old_addr),
1756 newdecl);
1759 if (CLEAR_QUAL_ADDR_SPACE (new_quals)
1760 != CLEAR_QUAL_ADDR_SPACE (old_quals))
1761 error ("conflicting type qualifiers for %q+D", newdecl);
1763 else
1764 error ("conflicting types for %q+D", newdecl);
1765 diagnose_arglist_conflict (newdecl, olddecl, newtype, oldtype);
1766 locate_old_decl (olddecl);
1767 return false;
1771 /* Redeclaration of a type is a constraint violation (6.7.2.3p1),
1772 but silently ignore the redeclaration if either is in a system
1773 header. (Conflicting redeclarations were handled above.) This
1774 is allowed for C1X if the types are the same, not just
1775 compatible. */
1776 if (TREE_CODE (newdecl) == TYPE_DECL)
1778 bool types_different = false;
1779 int comptypes_result;
1781 comptypes_result
1782 = comptypes_check_different_types (oldtype, newtype, &types_different);
1784 if (comptypes_result != 1 || types_different)
1786 error ("redefinition of typedef %q+D with different type", newdecl);
1787 locate_old_decl (olddecl);
1788 return false;
1791 if (DECL_IN_SYSTEM_HEADER (newdecl)
1792 || DECL_IN_SYSTEM_HEADER (olddecl)
1793 || TREE_NO_WARNING (newdecl)
1794 || TREE_NO_WARNING (olddecl))
1795 return true; /* Allow OLDDECL to continue in use. */
1797 if (pedantic && !flag_isoc1x)
1799 pedwarn (input_location, OPT_pedantic,
1800 "redefinition of typedef %q+D", newdecl);
1801 locate_old_decl (olddecl);
1803 else if (variably_modified_type_p (newtype, NULL))
1805 /* Whether there is a constraint violation for the types not
1806 being the same cannot be determined at compile time; a
1807 warning that there may be one at runtime is considered
1808 appropriate (WG14 reflector message 11743, 8 May 2009). */
1809 warning (0, "redefinition of typedef %q+D may be a constraint "
1810 "violation at runtime", newdecl);
1811 locate_old_decl (olddecl);
1814 return true;
1817 /* Function declarations can either be 'static' or 'extern' (no
1818 qualifier is equivalent to 'extern' - C99 6.2.2p5) and therefore
1819 can never conflict with each other on account of linkage
1820 (6.2.2p4). Multiple definitions are not allowed (6.9p3,5) but
1821 gnu89 mode permits two definitions if one is 'extern inline' and
1822 one is not. The non- extern-inline definition supersedes the
1823 extern-inline definition. */
1825 else if (TREE_CODE (newdecl) == FUNCTION_DECL)
1827 /* If you declare a built-in function name as static, or
1828 define the built-in with an old-style definition (so we
1829 can't validate the argument list) the built-in definition is
1830 overridden, but optionally warn this was a bad choice of name. */
1831 if (DECL_BUILT_IN (olddecl)
1832 && !C_DECL_DECLARED_BUILTIN (olddecl)
1833 && (!TREE_PUBLIC (newdecl)
1834 || (DECL_INITIAL (newdecl)
1835 && !prototype_p (TREE_TYPE (newdecl)))))
1837 warning (OPT_Wshadow, "declaration of %q+D shadows "
1838 "a built-in function", newdecl);
1839 /* Discard the old built-in function. */
1840 return false;
1843 if (DECL_INITIAL (newdecl))
1845 if (DECL_INITIAL (olddecl))
1847 /* If both decls are in the same TU and the new declaration
1848 isn't overriding an extern inline reject the new decl.
1849 In c99, no overriding is allowed in the same translation
1850 unit. */
1851 if ((!DECL_EXTERN_INLINE (olddecl)
1852 || DECL_EXTERN_INLINE (newdecl)
1853 || (!flag_gnu89_inline
1854 && (!DECL_DECLARED_INLINE_P (olddecl)
1855 || !lookup_attribute ("gnu_inline",
1856 DECL_ATTRIBUTES (olddecl)))
1857 && (!DECL_DECLARED_INLINE_P (newdecl)
1858 || !lookup_attribute ("gnu_inline",
1859 DECL_ATTRIBUTES (newdecl))))
1861 && same_translation_unit_p (newdecl, olddecl))
1863 error ("redefinition of %q+D", newdecl);
1864 locate_old_decl (olddecl);
1865 return false;
1869 /* If we have a prototype after an old-style function definition,
1870 the argument types must be checked specially. */
1871 else if (DECL_INITIAL (olddecl)
1872 && !prototype_p (oldtype) && prototype_p (newtype)
1873 && TYPE_ACTUAL_ARG_TYPES (oldtype)
1874 && !validate_proto_after_old_defn (newdecl, newtype, oldtype))
1876 locate_old_decl (olddecl);
1877 return false;
1879 /* A non-static declaration (even an "extern") followed by a
1880 static declaration is undefined behavior per C99 6.2.2p3-5,7.
1881 The same is true for a static forward declaration at block
1882 scope followed by a non-static declaration/definition at file
1883 scope. Static followed by non-static at the same scope is
1884 not undefined behavior, and is the most convenient way to get
1885 some effects (see e.g. what unwind-dw2-fde-glibc.c does to
1886 the definition of _Unwind_Find_FDE in unwind-dw2-fde.c), but
1887 we do diagnose it if -Wtraditional. */
1888 if (TREE_PUBLIC (olddecl) && !TREE_PUBLIC (newdecl))
1890 /* Two exceptions to the rule. If olddecl is an extern
1891 inline, or a predeclared function that isn't actually
1892 built in, newdecl silently overrides olddecl. The latter
1893 occur only in Objective C; see also above. (FIXME: Make
1894 Objective C use normal builtins.) */
1895 if (!DECL_IS_BUILTIN (olddecl)
1896 && !DECL_EXTERN_INLINE (olddecl))
1898 error ("static declaration of %q+D follows "
1899 "non-static declaration", newdecl);
1900 locate_old_decl (olddecl);
1902 return false;
1904 else if (TREE_PUBLIC (newdecl) && !TREE_PUBLIC (olddecl))
1906 if (DECL_CONTEXT (olddecl))
1908 error ("non-static declaration of %q+D follows "
1909 "static declaration", newdecl);
1910 locate_old_decl (olddecl);
1911 return false;
1913 else if (warn_traditional)
1915 warned |= warning (OPT_Wtraditional,
1916 "non-static declaration of %q+D "
1917 "follows static declaration", newdecl);
1921 /* Make sure gnu_inline attribute is either not present, or
1922 present on all inline decls. */
1923 if (DECL_DECLARED_INLINE_P (olddecl)
1924 && DECL_DECLARED_INLINE_P (newdecl))
1926 bool newa = lookup_attribute ("gnu_inline",
1927 DECL_ATTRIBUTES (newdecl)) != NULL;
1928 bool olda = lookup_attribute ("gnu_inline",
1929 DECL_ATTRIBUTES (olddecl)) != NULL;
1930 if (newa != olda)
1932 error_at (input_location, "%<gnu_inline%> attribute present on %q+D",
1933 newa ? newdecl : olddecl);
1934 error_at (DECL_SOURCE_LOCATION (newa ? olddecl : newdecl),
1935 "but not here");
1939 else if (TREE_CODE (newdecl) == VAR_DECL)
1941 /* Only variables can be thread-local, and all declarations must
1942 agree on this property. */
1943 if (C_DECL_THREADPRIVATE_P (olddecl) && !DECL_THREAD_LOCAL_P (newdecl))
1945 /* Nothing to check. Since OLDDECL is marked threadprivate
1946 and NEWDECL does not have a thread-local attribute, we
1947 will merge the threadprivate attribute into NEWDECL. */
1950 else if (DECL_THREAD_LOCAL_P (newdecl) != DECL_THREAD_LOCAL_P (olddecl))
1952 if (DECL_THREAD_LOCAL_P (newdecl))
1953 error ("thread-local declaration of %q+D follows "
1954 "non-thread-local declaration", newdecl);
1955 else
1956 error ("non-thread-local declaration of %q+D follows "
1957 "thread-local declaration", newdecl);
1959 locate_old_decl (olddecl);
1960 return false;
1963 /* Multiple initialized definitions are not allowed (6.9p3,5). */
1964 if (DECL_INITIAL (newdecl) && DECL_INITIAL (olddecl))
1966 error ("redefinition of %q+D", newdecl);
1967 locate_old_decl (olddecl);
1968 return false;
1971 /* Objects declared at file scope: if the first declaration had
1972 external linkage (even if it was an external reference) the
1973 second must have external linkage as well, or the behavior is
1974 undefined. If the first declaration had internal linkage, then
1975 the second must too, or else be an external reference (in which
1976 case the composite declaration still has internal linkage).
1977 As for function declarations, we warn about the static-then-
1978 extern case only for -Wtraditional. See generally 6.2.2p3-5,7. */
1979 if (DECL_FILE_SCOPE_P (newdecl)
1980 && TREE_PUBLIC (newdecl) != TREE_PUBLIC (olddecl))
1982 if (DECL_EXTERNAL (newdecl))
1984 if (!DECL_FILE_SCOPE_P (olddecl))
1986 error ("extern declaration of %q+D follows "
1987 "declaration with no linkage", newdecl);
1988 locate_old_decl (olddecl);
1989 return false;
1991 else if (warn_traditional)
1993 warned |= warning (OPT_Wtraditional,
1994 "non-static declaration of %q+D "
1995 "follows static declaration", newdecl);
1998 else
2000 if (TREE_PUBLIC (newdecl))
2001 error ("non-static declaration of %q+D follows "
2002 "static declaration", newdecl);
2003 else
2004 error ("static declaration of %q+D follows "
2005 "non-static declaration", newdecl);
2007 locate_old_decl (olddecl);
2008 return false;
2011 /* Two objects with the same name declared at the same block
2012 scope must both be external references (6.7p3). */
2013 else if (!DECL_FILE_SCOPE_P (newdecl))
2015 if (DECL_EXTERNAL (newdecl))
2017 /* Extern with initializer at block scope, which will
2018 already have received an error. */
2020 else if (DECL_EXTERNAL (olddecl))
2022 error ("declaration of %q+D with no linkage follows "
2023 "extern declaration", newdecl);
2024 locate_old_decl (olddecl);
2026 else
2028 error ("redeclaration of %q+D with no linkage", newdecl);
2029 locate_old_decl (olddecl);
2032 return false;
2035 /* C++ does not permit a decl to appear multiple times at file
2036 scope. */
2037 if (warn_cxx_compat
2038 && DECL_FILE_SCOPE_P (newdecl)
2039 && !DECL_EXTERNAL (newdecl)
2040 && !DECL_EXTERNAL (olddecl))
2041 warned |= warning_at (DECL_SOURCE_LOCATION (newdecl),
2042 OPT_Wc___compat,
2043 ("duplicate declaration of %qD is "
2044 "invalid in C++"),
2045 newdecl);
2048 /* warnings */
2049 /* All decls must agree on a visibility. */
2050 if (CODE_CONTAINS_STRUCT (TREE_CODE (newdecl), TS_DECL_WITH_VIS)
2051 && DECL_VISIBILITY_SPECIFIED (newdecl) && DECL_VISIBILITY_SPECIFIED (olddecl)
2052 && DECL_VISIBILITY (newdecl) != DECL_VISIBILITY (olddecl))
2054 warned |= warning (0, "redeclaration of %q+D with different visibility "
2055 "(old visibility preserved)", newdecl);
2058 if (TREE_CODE (newdecl) == FUNCTION_DECL)
2060 /* Diagnose inline __attribute__ ((noinline)) which is silly. */
2061 if (DECL_DECLARED_INLINE_P (newdecl)
2062 && lookup_attribute ("noinline", DECL_ATTRIBUTES (olddecl)))
2064 warned |= warning (OPT_Wattributes,
2065 "inline declaration of %qD follows "
2066 "declaration with attribute noinline", newdecl);
2068 else if (DECL_DECLARED_INLINE_P (olddecl)
2069 && lookup_attribute ("noinline", DECL_ATTRIBUTES (newdecl)))
2071 warned |= warning (OPT_Wattributes,
2072 "declaration of %q+D with attribute "
2073 "noinline follows inline declaration ", newdecl);
2076 else /* PARM_DECL, VAR_DECL */
2078 /* Redeclaration of a parameter is a constraint violation (this is
2079 not explicitly stated, but follows from C99 6.7p3 [no more than
2080 one declaration of the same identifier with no linkage in the
2081 same scope, except type tags] and 6.2.2p6 [parameters have no
2082 linkage]). We must check for a forward parameter declaration,
2083 indicated by TREE_ASM_WRITTEN on the old declaration - this is
2084 an extension, the mandatory diagnostic for which is handled by
2085 mark_forward_parm_decls. */
2087 if (TREE_CODE (newdecl) == PARM_DECL
2088 && (!TREE_ASM_WRITTEN (olddecl) || TREE_ASM_WRITTEN (newdecl)))
2090 error ("redefinition of parameter %q+D", newdecl);
2091 locate_old_decl (olddecl);
2092 return false;
2096 /* Optional warning for completely redundant decls. */
2097 if (!warned && !pedwarned
2098 && warn_redundant_decls
2099 /* Don't warn about a function declaration followed by a
2100 definition. */
2101 && !(TREE_CODE (newdecl) == FUNCTION_DECL
2102 && DECL_INITIAL (newdecl) && !DECL_INITIAL (olddecl))
2103 /* Don't warn about redundant redeclarations of builtins. */
2104 && !(TREE_CODE (newdecl) == FUNCTION_DECL
2105 && !DECL_BUILT_IN (newdecl)
2106 && DECL_BUILT_IN (olddecl)
2107 && !C_DECL_DECLARED_BUILTIN (olddecl))
2108 /* Don't warn about an extern followed by a definition. */
2109 && !(DECL_EXTERNAL (olddecl) && !DECL_EXTERNAL (newdecl))
2110 /* Don't warn about forward parameter decls. */
2111 && !(TREE_CODE (newdecl) == PARM_DECL
2112 && TREE_ASM_WRITTEN (olddecl) && !TREE_ASM_WRITTEN (newdecl))
2113 /* Don't warn about a variable definition following a declaration. */
2114 && !(TREE_CODE (newdecl) == VAR_DECL
2115 && DECL_INITIAL (newdecl) && !DECL_INITIAL (olddecl)))
2117 warned = warning (OPT_Wredundant_decls, "redundant redeclaration of %q+D",
2118 newdecl);
2121 /* Report location of previous decl/defn. */
2122 if (warned || pedwarned)
2123 locate_old_decl (olddecl);
2125 #undef DECL_EXTERN_INLINE
2127 return retval;
2130 /* Subroutine of duplicate_decls. NEWDECL has been found to be
2131 consistent with OLDDECL, but carries new information. Merge the
2132 new information into OLDDECL. This function issues no
2133 diagnostics. */
2135 static void
2136 merge_decls (tree newdecl, tree olddecl, tree newtype, tree oldtype)
2138 bool new_is_definition = (TREE_CODE (newdecl) == FUNCTION_DECL
2139 && DECL_INITIAL (newdecl) != 0);
2140 bool new_is_prototype = (TREE_CODE (newdecl) == FUNCTION_DECL
2141 && prototype_p (TREE_TYPE (newdecl)));
2142 bool old_is_prototype = (TREE_CODE (olddecl) == FUNCTION_DECL
2143 && prototype_p (TREE_TYPE (olddecl)));
2144 bool extern_changed = false;
2146 /* For real parm decl following a forward decl, rechain the old decl
2147 in its new location and clear TREE_ASM_WRITTEN (it's not a
2148 forward decl anymore). */
2149 if (TREE_CODE (newdecl) == PARM_DECL
2150 && TREE_ASM_WRITTEN (olddecl) && !TREE_ASM_WRITTEN (newdecl))
2152 struct c_binding *b, **here;
2154 for (here = &current_scope->bindings; *here; here = &(*here)->prev)
2155 if ((*here)->decl == olddecl)
2156 goto found;
2157 gcc_unreachable ();
2159 found:
2160 b = *here;
2161 *here = b->prev;
2162 b->prev = current_scope->bindings;
2163 current_scope->bindings = b;
2165 TREE_ASM_WRITTEN (olddecl) = 0;
2168 DECL_ATTRIBUTES (newdecl)
2169 = targetm.merge_decl_attributes (olddecl, newdecl);
2171 /* Merge the data types specified in the two decls. */
2172 TREE_TYPE (newdecl)
2173 = TREE_TYPE (olddecl)
2174 = composite_type (newtype, oldtype);
2176 /* Lay the type out, unless already done. */
2177 if (!comptypes (oldtype, TREE_TYPE (newdecl)))
2179 if (TREE_TYPE (newdecl) != error_mark_node)
2180 layout_type (TREE_TYPE (newdecl));
2181 if (TREE_CODE (newdecl) != FUNCTION_DECL
2182 && TREE_CODE (newdecl) != TYPE_DECL
2183 && TREE_CODE (newdecl) != CONST_DECL)
2184 layout_decl (newdecl, 0);
2186 else
2188 /* Since the type is OLDDECL's, make OLDDECL's size go with. */
2189 DECL_SIZE (newdecl) = DECL_SIZE (olddecl);
2190 DECL_SIZE_UNIT (newdecl) = DECL_SIZE_UNIT (olddecl);
2191 DECL_MODE (newdecl) = DECL_MODE (olddecl);
2192 if (DECL_ALIGN (olddecl) > DECL_ALIGN (newdecl))
2194 DECL_ALIGN (newdecl) = DECL_ALIGN (olddecl);
2195 DECL_USER_ALIGN (newdecl) |= DECL_USER_ALIGN (olddecl);
2199 /* Keep the old rtl since we can safely use it. */
2200 if (HAS_RTL_P (olddecl))
2201 COPY_DECL_RTL (olddecl, newdecl);
2203 /* Merge the type qualifiers. */
2204 if (TREE_READONLY (newdecl))
2205 TREE_READONLY (olddecl) = 1;
2207 if (TREE_THIS_VOLATILE (newdecl))
2208 TREE_THIS_VOLATILE (olddecl) = 1;
2210 if (TREE_SHARED (newdecl))
2212 TREE_SHARED (olddecl) = 1;
2213 /* UPC TODO: if "shared" implies "strict", should we
2214 * TREE_STRICT(), and TREE_SIDE_EFFECTS() (which is
2215 * implied by "volatile"? */
2216 if (TREE_CODE (newdecl) == VAR_DECL)
2217 TREE_THIS_VOLATILE (newdecl) = 1;
2220 /* Merge deprecatedness. */
2221 if (TREE_DEPRECATED (newdecl))
2222 TREE_DEPRECATED (olddecl) = 1;
2224 /* If a decl is in a system header and the other isn't, keep the one on the
2225 system header. Otherwise, keep source location of definition rather than
2226 declaration and of prototype rather than non-prototype unless that
2227 prototype is built-in. */
2228 if (CODE_CONTAINS_STRUCT (TREE_CODE (olddecl), TS_DECL_WITH_VIS)
2229 && DECL_IN_SYSTEM_HEADER (olddecl)
2230 && !DECL_IN_SYSTEM_HEADER (newdecl) )
2231 DECL_SOURCE_LOCATION (newdecl) = DECL_SOURCE_LOCATION (olddecl);
2232 else if (CODE_CONTAINS_STRUCT (TREE_CODE (olddecl), TS_DECL_WITH_VIS)
2233 && DECL_IN_SYSTEM_HEADER (newdecl)
2234 && !DECL_IN_SYSTEM_HEADER (olddecl))
2235 DECL_SOURCE_LOCATION (olddecl) = DECL_SOURCE_LOCATION (newdecl);
2236 else if ((DECL_INITIAL (newdecl) == 0 && DECL_INITIAL (olddecl) != 0)
2237 || (old_is_prototype && !new_is_prototype
2238 && !C_DECL_BUILTIN_PROTOTYPE (olddecl)))
2239 DECL_SOURCE_LOCATION (newdecl) = DECL_SOURCE_LOCATION (olddecl);
2241 /* Merge the initialization information. */
2242 if (DECL_INITIAL (newdecl) == 0)
2243 DECL_INITIAL (newdecl) = DECL_INITIAL (olddecl);
2245 /* Merge the threadprivate attribute. */
2246 if (TREE_CODE (olddecl) == VAR_DECL && C_DECL_THREADPRIVATE_P (olddecl))
2248 DECL_TLS_MODEL (newdecl) = DECL_TLS_MODEL (olddecl);
2249 C_DECL_THREADPRIVATE_P (newdecl) = 1;
2252 if (CODE_CONTAINS_STRUCT (TREE_CODE (olddecl), TS_DECL_WITH_VIS))
2254 /* Merge the section attribute.
2255 We want to issue an error if the sections conflict but that
2256 must be done later in decl_attributes since we are called
2257 before attributes are assigned. */
2258 if (DECL_SECTION_NAME (newdecl) == NULL_TREE)
2259 DECL_SECTION_NAME (newdecl) = DECL_SECTION_NAME (olddecl);
2261 /* Copy the assembler name.
2262 Currently, it can only be defined in the prototype. */
2263 COPY_DECL_ASSEMBLER_NAME (olddecl, newdecl);
2265 /* Use visibility of whichever declaration had it specified */
2266 if (DECL_VISIBILITY_SPECIFIED (olddecl))
2268 DECL_VISIBILITY (newdecl) = DECL_VISIBILITY (olddecl);
2269 DECL_VISIBILITY_SPECIFIED (newdecl) = 1;
2272 if (TREE_CODE (newdecl) == FUNCTION_DECL)
2274 DECL_STATIC_CONSTRUCTOR(newdecl) |= DECL_STATIC_CONSTRUCTOR(olddecl);
2275 DECL_STATIC_DESTRUCTOR (newdecl) |= DECL_STATIC_DESTRUCTOR (olddecl);
2276 DECL_NO_LIMIT_STACK (newdecl) |= DECL_NO_LIMIT_STACK (olddecl);
2277 DECL_NO_INSTRUMENT_FUNCTION_ENTRY_EXIT (newdecl)
2278 |= DECL_NO_INSTRUMENT_FUNCTION_ENTRY_EXIT (olddecl);
2279 TREE_THIS_VOLATILE (newdecl) |= TREE_THIS_VOLATILE (olddecl);
2280 DECL_IS_MALLOC (newdecl) |= DECL_IS_MALLOC (olddecl);
2281 DECL_IS_OPERATOR_NEW (newdecl) |= DECL_IS_OPERATOR_NEW (olddecl);
2282 TREE_READONLY (newdecl) |= TREE_READONLY (olddecl);
2283 DECL_PURE_P (newdecl) |= DECL_PURE_P (olddecl);
2284 DECL_IS_NOVOPS (newdecl) |= DECL_IS_NOVOPS (olddecl);
2287 /* Merge the storage class information. */
2288 merge_weak (newdecl, olddecl);
2290 /* For functions, static overrides non-static. */
2291 if (TREE_CODE (newdecl) == FUNCTION_DECL)
2293 TREE_PUBLIC (newdecl) &= TREE_PUBLIC (olddecl);
2294 /* This is since we don't automatically
2295 copy the attributes of NEWDECL into OLDDECL. */
2296 TREE_PUBLIC (olddecl) = TREE_PUBLIC (newdecl);
2297 /* If this clears `static', clear it in the identifier too. */
2298 if (!TREE_PUBLIC (olddecl))
2299 TREE_PUBLIC (DECL_NAME (olddecl)) = 0;
2303 /* In c99, 'extern' declaration before (or after) 'inline' means this
2304 function is not DECL_EXTERNAL, unless 'gnu_inline' attribute
2305 is present. */
2306 if (TREE_CODE (newdecl) == FUNCTION_DECL
2307 && !flag_gnu89_inline
2308 && (DECL_DECLARED_INLINE_P (newdecl)
2309 || DECL_DECLARED_INLINE_P (olddecl))
2310 && (!DECL_DECLARED_INLINE_P (newdecl)
2311 || !DECL_DECLARED_INLINE_P (olddecl)
2312 || !DECL_EXTERNAL (olddecl))
2313 && DECL_EXTERNAL (newdecl)
2314 && !lookup_attribute ("gnu_inline", DECL_ATTRIBUTES (newdecl))
2315 && !current_function_decl)
2316 DECL_EXTERNAL (newdecl) = 0;
2318 if (DECL_EXTERNAL (newdecl))
2320 TREE_STATIC (newdecl) = TREE_STATIC (olddecl);
2321 DECL_EXTERNAL (newdecl) = DECL_EXTERNAL (olddecl);
2323 /* An extern decl does not override previous storage class. */
2324 TREE_PUBLIC (newdecl) = TREE_PUBLIC (olddecl);
2325 if (!DECL_EXTERNAL (newdecl))
2327 DECL_CONTEXT (newdecl) = DECL_CONTEXT (olddecl);
2328 DECL_COMMON (newdecl) = DECL_COMMON (olddecl);
2331 else
2333 TREE_STATIC (olddecl) = TREE_STATIC (newdecl);
2334 TREE_PUBLIC (olddecl) = TREE_PUBLIC (newdecl);
2337 if (TREE_CODE (newdecl) == FUNCTION_DECL)
2339 /* If we're redefining a function previously defined as extern
2340 inline, make sure we emit debug info for the inline before we
2341 throw it away, in case it was inlined into a function that
2342 hasn't been written out yet. */
2343 if (new_is_definition && DECL_INITIAL (olddecl))
2344 /* The new defn must not be inline. */
2345 DECL_UNINLINABLE (newdecl) = 1;
2346 else
2348 /* If either decl says `inline', this fn is inline, unless
2349 its definition was passed already. */
2350 if (DECL_DECLARED_INLINE_P (newdecl)
2351 || DECL_DECLARED_INLINE_P (olddecl))
2352 DECL_DECLARED_INLINE_P (newdecl) = 1;
2354 DECL_UNINLINABLE (newdecl) = DECL_UNINLINABLE (olddecl)
2355 = (DECL_UNINLINABLE (newdecl) || DECL_UNINLINABLE (olddecl));
2357 DECL_DISREGARD_INLINE_LIMITS (newdecl)
2358 = DECL_DISREGARD_INLINE_LIMITS (olddecl)
2359 = (DECL_DISREGARD_INLINE_LIMITS (newdecl)
2360 || DECL_DISREGARD_INLINE_LIMITS (olddecl));
2363 if (DECL_BUILT_IN (olddecl))
2365 /* If redeclaring a builtin function, it stays built in.
2366 But it gets tagged as having been declared. */
2367 DECL_BUILT_IN_CLASS (newdecl) = DECL_BUILT_IN_CLASS (olddecl);
2368 DECL_FUNCTION_CODE (newdecl) = DECL_FUNCTION_CODE (olddecl);
2369 C_DECL_DECLARED_BUILTIN (newdecl) = 1;
2370 if (new_is_prototype)
2371 C_DECL_BUILTIN_PROTOTYPE (newdecl) = 0;
2372 else
2373 C_DECL_BUILTIN_PROTOTYPE (newdecl)
2374 = C_DECL_BUILTIN_PROTOTYPE (olddecl);
2377 /* Preserve function specific target and optimization options */
2378 if (DECL_FUNCTION_SPECIFIC_TARGET (olddecl)
2379 && !DECL_FUNCTION_SPECIFIC_TARGET (newdecl))
2380 DECL_FUNCTION_SPECIFIC_TARGET (newdecl)
2381 = DECL_FUNCTION_SPECIFIC_TARGET (olddecl);
2383 if (DECL_FUNCTION_SPECIFIC_OPTIMIZATION (olddecl)
2384 && !DECL_FUNCTION_SPECIFIC_OPTIMIZATION (newdecl))
2385 DECL_FUNCTION_SPECIFIC_OPTIMIZATION (newdecl)
2386 = DECL_FUNCTION_SPECIFIC_OPTIMIZATION (olddecl);
2388 /* Also preserve various other info from the definition. */
2389 if (!new_is_definition)
2391 tree t;
2392 DECL_RESULT (newdecl) = DECL_RESULT (olddecl);
2393 DECL_INITIAL (newdecl) = DECL_INITIAL (olddecl);
2394 DECL_STRUCT_FUNCTION (newdecl) = DECL_STRUCT_FUNCTION (olddecl);
2395 DECL_SAVED_TREE (newdecl) = DECL_SAVED_TREE (olddecl);
2396 DECL_ARGUMENTS (newdecl) = copy_list (DECL_ARGUMENTS (olddecl));
2397 for (t = DECL_ARGUMENTS (newdecl); t ; t = DECL_CHAIN (t))
2398 DECL_CONTEXT (t) = newdecl;
2400 /* See if we've got a function to instantiate from. */
2401 if (DECL_SAVED_TREE (olddecl))
2402 DECL_ABSTRACT_ORIGIN (newdecl)
2403 = DECL_ABSTRACT_ORIGIN (olddecl);
2407 extern_changed = DECL_EXTERNAL (olddecl) && !DECL_EXTERNAL (newdecl);
2409 /* Merge the USED information. */
2410 if (TREE_USED (olddecl))
2411 TREE_USED (newdecl) = 1;
2412 else if (TREE_USED (newdecl))
2413 TREE_USED (olddecl) = 1;
2414 if (TREE_CODE (olddecl) == VAR_DECL || TREE_CODE (olddecl) == PARM_DECL)
2415 DECL_READ_P (newdecl) |= DECL_READ_P (olddecl);
2416 if (DECL_PRESERVE_P (olddecl))
2417 DECL_PRESERVE_P (newdecl) = 1;
2418 else if (DECL_PRESERVE_P (newdecl))
2419 DECL_PRESERVE_P (olddecl) = 1;
2421 /* Copy most of the decl-specific fields of NEWDECL into OLDDECL.
2422 But preserve OLDDECL's DECL_UID, DECL_CONTEXT and
2423 DECL_ARGUMENTS (if appropriate). */
2425 unsigned olddecl_uid = DECL_UID (olddecl);
2426 tree olddecl_context = DECL_CONTEXT (olddecl);
2427 tree olddecl_arguments = NULL;
2428 if (TREE_CODE (olddecl) == FUNCTION_DECL)
2429 olddecl_arguments = DECL_ARGUMENTS (olddecl);
2431 memcpy ((char *) olddecl + sizeof (struct tree_common),
2432 (char *) newdecl + sizeof (struct tree_common),
2433 sizeof (struct tree_decl_common) - sizeof (struct tree_common));
2434 switch (TREE_CODE (olddecl))
2436 case FUNCTION_DECL:
2437 case FIELD_DECL:
2438 case VAR_DECL:
2439 case PARM_DECL:
2440 case LABEL_DECL:
2441 case RESULT_DECL:
2442 case CONST_DECL:
2443 case TYPE_DECL:
2444 memcpy ((char *) olddecl + sizeof (struct tree_decl_common),
2445 (char *) newdecl + sizeof (struct tree_decl_common),
2446 tree_code_size (TREE_CODE (olddecl)) - sizeof (struct tree_decl_common));
2447 break;
2449 default:
2451 memcpy ((char *) olddecl + sizeof (struct tree_decl_common),
2452 (char *) newdecl + sizeof (struct tree_decl_common),
2453 sizeof (struct tree_decl_non_common) - sizeof (struct tree_decl_common));
2455 DECL_UID (olddecl) = olddecl_uid;
2456 DECL_CONTEXT (olddecl) = olddecl_context;
2457 if (TREE_CODE (olddecl) == FUNCTION_DECL)
2458 DECL_ARGUMENTS (olddecl) = olddecl_arguments;
2461 /* If OLDDECL had its DECL_RTL instantiated, re-invoke make_decl_rtl
2462 so that encode_section_info has a chance to look at the new decl
2463 flags and attributes. */
2464 if (DECL_RTL_SET_P (olddecl)
2465 && (TREE_CODE (olddecl) == FUNCTION_DECL
2466 || (TREE_CODE (olddecl) == VAR_DECL
2467 && TREE_STATIC (olddecl))))
2468 make_decl_rtl (olddecl);
2470 /* If we changed a function from DECL_EXTERNAL to !DECL_EXTERNAL,
2471 and the definition is coming from the old version, cgraph needs
2472 to be called again. */
2473 if (extern_changed && !new_is_definition
2474 && TREE_CODE (olddecl) == FUNCTION_DECL && DECL_INITIAL (olddecl))
2475 cgraph_mark_if_needed (olddecl);
2478 /* Handle when a new declaration NEWDECL has the same name as an old
2479 one OLDDECL in the same binding contour. Prints an error message
2480 if appropriate.
2482 If safely possible, alter OLDDECL to look like NEWDECL, and return
2483 true. Otherwise, return false. */
2485 static bool
2486 duplicate_decls (tree newdecl, tree olddecl)
2488 tree newtype = NULL, oldtype = NULL;
2490 if (!diagnose_mismatched_decls (newdecl, olddecl, &newtype, &oldtype))
2492 /* Avoid `unused variable' and other warnings for OLDDECL. */
2493 TREE_NO_WARNING (olddecl) = 1;
2494 return false;
2497 merge_decls (newdecl, olddecl, newtype, oldtype);
2498 return true;
2502 /* Check whether decl-node NEW_DECL shadows an existing declaration. */
2503 static void
2504 warn_if_shadowing (tree new_decl)
2506 struct c_binding *b;
2508 /* Shadow warnings wanted? */
2509 if (!warn_shadow
2510 /* No shadow warnings for internally generated vars. */
2511 || DECL_IS_BUILTIN (new_decl)
2512 /* No shadow warnings for vars made for inlining. */
2513 || DECL_FROM_INLINE (new_decl))
2514 return;
2516 /* Is anything being shadowed? Invisible decls do not count. */
2517 for (b = I_SYMBOL_BINDING (DECL_NAME (new_decl)); b; b = b->shadowed)
2518 if (b->decl && b->decl != new_decl && !b->invisible)
2520 tree old_decl = b->decl;
2522 if (old_decl == error_mark_node)
2524 warning (OPT_Wshadow, "declaration of %q+D shadows previous "
2525 "non-variable", new_decl);
2526 break;
2528 else if (TREE_CODE (old_decl) == PARM_DECL)
2529 warning (OPT_Wshadow, "declaration of %q+D shadows a parameter",
2530 new_decl);
2531 else if (DECL_FILE_SCOPE_P (old_decl))
2532 warning (OPT_Wshadow, "declaration of %q+D shadows a global "
2533 "declaration", new_decl);
2534 else if (TREE_CODE (old_decl) == FUNCTION_DECL
2535 && DECL_BUILT_IN (old_decl))
2537 warning (OPT_Wshadow, "declaration of %q+D shadows "
2538 "a built-in function", new_decl);
2539 break;
2541 else
2542 warning (OPT_Wshadow, "declaration of %q+D shadows a previous local",
2543 new_decl);
2545 warning_at (DECL_SOURCE_LOCATION (old_decl), OPT_Wshadow,
2546 "shadowed declaration is here");
2548 break;
2552 /* Record a decl-node X as belonging to the current lexical scope.
2553 Check for errors (such as an incompatible declaration for the same
2554 name already seen in the same scope).
2556 Returns either X or an old decl for the same name.
2557 If an old decl is returned, it may have been smashed
2558 to agree with what X says. */
2560 tree
2561 pushdecl (tree x)
2563 tree name = DECL_NAME (x);
2564 struct c_scope *scope = current_scope;
2565 struct c_binding *b;
2566 bool nested = false;
2567 location_t locus = DECL_SOURCE_LOCATION (x);
2569 /* Must set DECL_CONTEXT for everything not at file scope or
2570 DECL_FILE_SCOPE_P won't work. Local externs don't count
2571 unless they have initializers (which generate code). */
2572 if (current_function_decl
2573 && ((TREE_CODE (x) != FUNCTION_DECL && TREE_CODE (x) != VAR_DECL)
2574 || DECL_INITIAL (x) || !DECL_EXTERNAL (x)))
2575 DECL_CONTEXT (x) = current_function_decl;
2577 /* Anonymous decls are just inserted in the scope. */
2578 if (!name)
2580 bind (name, x, scope, /*invisible=*/false, /*nested=*/false,
2581 locus);
2582 return x;
2585 /* First, see if there is another declaration with the same name in
2586 the current scope. If there is, duplicate_decls may do all the
2587 work for us. If duplicate_decls returns false, that indicates
2588 two incompatible decls in the same scope; we are to silently
2589 replace the old one (duplicate_decls has issued all appropriate
2590 diagnostics). In particular, we should not consider possible
2591 duplicates in the external scope, or shadowing. */
2592 b = I_SYMBOL_BINDING (name);
2593 if (b && B_IN_SCOPE (b, scope))
2595 struct c_binding *b_ext, *b_use;
2596 tree type = TREE_TYPE (x);
2597 tree visdecl = b->decl;
2598 tree vistype = TREE_TYPE (visdecl);
2599 if (TREE_CODE (TREE_TYPE (x)) == ARRAY_TYPE
2600 && COMPLETE_TYPE_P (TREE_TYPE (x)))
2601 b->inner_comp = false;
2602 b_use = b;
2603 b_ext = b;
2604 /* If this is an external linkage declaration, we should check
2605 for compatibility with the type in the external scope before
2606 setting the type at this scope based on the visible
2607 information only. */
2608 if (TREE_PUBLIC (x) && TREE_PUBLIC (visdecl))
2610 while (b_ext && !B_IN_EXTERNAL_SCOPE (b_ext))
2611 b_ext = b_ext->shadowed;
2612 if (b_ext)
2614 b_use = b_ext;
2615 if (b_use->u.type)
2616 TREE_TYPE (b_use->decl) = b_use->u.type;
2619 if (duplicate_decls (x, b_use->decl))
2621 if (b_use != b)
2623 /* Save the updated type in the external scope and
2624 restore the proper type for this scope. */
2625 tree thistype;
2626 if (comptypes (vistype, type))
2627 thistype = composite_type (vistype, type);
2628 else
2629 thistype = TREE_TYPE (b_use->decl);
2630 b_use->u.type = TREE_TYPE (b_use->decl);
2631 if (TREE_CODE (b_use->decl) == FUNCTION_DECL
2632 && DECL_BUILT_IN (b_use->decl))
2633 thistype
2634 = build_type_attribute_variant (thistype,
2635 TYPE_ATTRIBUTES
2636 (b_use->u.type));
2637 TREE_TYPE (b_use->decl) = thistype;
2639 return b_use->decl;
2641 else
2642 goto skip_external_and_shadow_checks;
2645 /* All declarations with external linkage, and all external
2646 references, go in the external scope, no matter what scope is
2647 current. However, the binding in that scope is ignored for
2648 purposes of normal name lookup. A separate binding structure is
2649 created in the requested scope; this governs the normal
2650 visibility of the symbol.
2652 The binding in the externals scope is used exclusively for
2653 detecting duplicate declarations of the same object, no matter
2654 what scope they are in; this is what we do here. (C99 6.2.7p2:
2655 All declarations that refer to the same object or function shall
2656 have compatible type; otherwise, the behavior is undefined.) */
2657 if (DECL_EXTERNAL (x) || scope == file_scope)
2659 tree type = TREE_TYPE (x);
2660 tree vistype = 0;
2661 tree visdecl = 0;
2662 bool type_saved = false;
2663 if (b && !B_IN_EXTERNAL_SCOPE (b)
2664 && (TREE_CODE (b->decl) == FUNCTION_DECL
2665 || TREE_CODE (b->decl) == VAR_DECL)
2666 && DECL_FILE_SCOPE_P (b->decl))
2668 visdecl = b->decl;
2669 vistype = TREE_TYPE (visdecl);
2671 if (scope != file_scope
2672 && !DECL_IN_SYSTEM_HEADER (x))
2673 warning (OPT_Wnested_externs, "nested extern declaration of %qD", x);
2675 while (b && !B_IN_EXTERNAL_SCOPE (b))
2677 /* If this decl might be modified, save its type. This is
2678 done here rather than when the decl is first bound
2679 because the type may change after first binding, through
2680 being completed or through attributes being added. If we
2681 encounter multiple such decls, only the first should have
2682 its type saved; the others will already have had their
2683 proper types saved and the types will not have changed as
2684 their scopes will not have been re-entered. */
2685 if (DECL_P (b->decl) && DECL_FILE_SCOPE_P (b->decl) && !type_saved)
2687 b->u.type = TREE_TYPE (b->decl);
2688 type_saved = true;
2690 if (B_IN_FILE_SCOPE (b)
2691 && TREE_CODE (b->decl) == VAR_DECL
2692 && TREE_STATIC (b->decl)
2693 && TREE_CODE (TREE_TYPE (b->decl)) == ARRAY_TYPE
2694 && !TYPE_DOMAIN (TREE_TYPE (b->decl))
2695 && TREE_CODE (type) == ARRAY_TYPE
2696 && TYPE_DOMAIN (type)
2697 && TYPE_MAX_VALUE (TYPE_DOMAIN (type))
2698 && !integer_zerop (TYPE_MAX_VALUE (TYPE_DOMAIN (type))))
2700 /* Array type completed in inner scope, which should be
2701 diagnosed if the completion does not have size 1 and
2702 it does not get completed in the file scope. */
2703 b->inner_comp = true;
2705 b = b->shadowed;
2708 /* If a matching external declaration has been found, set its
2709 type to the composite of all the types of that declaration.
2710 After the consistency checks, it will be reset to the
2711 composite of the visible types only. */
2712 if (b && (TREE_PUBLIC (x) || same_translation_unit_p (x, b->decl))
2713 && b->u.type)
2714 TREE_TYPE (b->decl) = b->u.type;
2716 /* The point of the same_translation_unit_p check here is,
2717 we want to detect a duplicate decl for a construct like
2718 foo() { extern bar(); } ... static bar(); but not if
2719 they are in different translation units. In any case,
2720 the static does not go in the externals scope. */
2721 if (b
2722 && (TREE_PUBLIC (x) || same_translation_unit_p (x, b->decl))
2723 && duplicate_decls (x, b->decl))
2725 tree thistype;
2726 if (vistype)
2728 if (comptypes (vistype, type))
2729 thistype = composite_type (vistype, type);
2730 else
2731 thistype = TREE_TYPE (b->decl);
2733 else
2734 thistype = type;
2735 b->u.type = TREE_TYPE (b->decl);
2736 if (TREE_CODE (b->decl) == FUNCTION_DECL && DECL_BUILT_IN (b->decl))
2737 thistype
2738 = build_type_attribute_variant (thistype,
2739 TYPE_ATTRIBUTES (b->u.type));
2740 TREE_TYPE (b->decl) = thistype;
2741 bind (name, b->decl, scope, /*invisible=*/false, /*nested=*/true,
2742 locus);
2743 return b->decl;
2745 else if (TREE_PUBLIC (x))
2747 if (visdecl && !b && duplicate_decls (x, visdecl))
2749 /* An external declaration at block scope referring to a
2750 visible entity with internal linkage. The composite
2751 type will already be correct for this scope, so we
2752 just need to fall through to make the declaration in
2753 this scope. */
2754 nested = true;
2755 x = visdecl;
2757 else
2759 bind (name, x, external_scope, /*invisible=*/true,
2760 /*nested=*/false, locus);
2761 nested = true;
2766 if (TREE_CODE (x) != PARM_DECL)
2767 warn_if_shadowing (x);
2769 skip_external_and_shadow_checks:
2770 if (TREE_CODE (x) == TYPE_DECL)
2771 set_underlying_type (x);
2773 bind (name, x, scope, /*invisible=*/false, nested, locus);
2775 /* If x's type is incomplete because it's based on a
2776 structure or union which has not yet been fully declared,
2777 attach it to that structure or union type, so we can go
2778 back and complete the variable declaration later, if the
2779 structure or union gets fully declared.
2781 If the input is erroneous, we can have error_mark in the type
2782 slot (e.g. "f(void a, ...)") - that doesn't count as an
2783 incomplete type. */
2784 if (TREE_TYPE (x) != error_mark_node
2785 && !COMPLETE_TYPE_P (TREE_TYPE (x)))
2787 tree element = TREE_TYPE (x);
2789 while (TREE_CODE (element) == ARRAY_TYPE)
2790 element = TREE_TYPE (element);
2791 element = TYPE_MAIN_VARIANT (element);
2793 if ((TREE_CODE (element) == RECORD_TYPE
2794 || TREE_CODE (element) == UNION_TYPE)
2795 && (TREE_CODE (x) != TYPE_DECL
2796 || TREE_CODE (TREE_TYPE (x)) == ARRAY_TYPE)
2797 && !COMPLETE_TYPE_P (element))
2798 C_TYPE_INCOMPLETE_VARS (element)
2799 = tree_cons (NULL_TREE, x, C_TYPE_INCOMPLETE_VARS (element));
2801 return x;
2804 /* Record X as belonging to file scope.
2805 This is used only internally by the Objective-C front end,
2806 and is limited to its needs. duplicate_decls is not called;
2807 if there is any preexisting decl for this identifier, it is an ICE. */
2809 tree
2810 pushdecl_top_level (tree x)
2812 tree name;
2813 bool nested = false;
2814 gcc_assert (TREE_CODE (x) == VAR_DECL || TREE_CODE (x) == CONST_DECL);
2816 name = DECL_NAME (x);
2818 gcc_assert (TREE_CODE (x) == CONST_DECL || !I_SYMBOL_BINDING (name));
2820 if (TREE_PUBLIC (x))
2822 bind (name, x, external_scope, /*invisible=*/true, /*nested=*/false,
2823 UNKNOWN_LOCATION);
2824 nested = true;
2826 if (file_scope)
2827 bind (name, x, file_scope, /*invisible=*/false, nested, UNKNOWN_LOCATION);
2829 return x;
2832 static void
2833 implicit_decl_warning (tree id, tree olddecl)
2835 if (warn_implicit_function_declaration)
2837 bool warned;
2839 if (flag_isoc99)
2840 warned = pedwarn (input_location, OPT_Wimplicit_function_declaration,
2841 "implicit declaration of function %qE", id);
2842 else
2843 warned = warning (OPT_Wimplicit_function_declaration,
2844 G_("implicit declaration of function %qE"), id);
2845 if (olddecl && warned)
2846 locate_old_decl (olddecl);
2850 /* Generate an implicit declaration for identifier FUNCTIONID at LOC as a
2851 function of type int (). */
2853 tree
2854 implicitly_declare (location_t loc, tree functionid)
2856 struct c_binding *b;
2857 tree decl = 0;
2858 tree asmspec_tree;
2860 for (b = I_SYMBOL_BINDING (functionid); b; b = b->shadowed)
2862 if (B_IN_SCOPE (b, external_scope))
2864 decl = b->decl;
2865 break;
2869 if (decl)
2871 if (decl == error_mark_node)
2872 return decl;
2874 /* FIXME: Objective-C has weird not-really-builtin functions
2875 which are supposed to be visible automatically. They wind up
2876 in the external scope because they're pushed before the file
2877 scope gets created. Catch this here and rebind them into the
2878 file scope. */
2879 if (!DECL_BUILT_IN (decl) && DECL_IS_BUILTIN (decl))
2881 bind (functionid, decl, file_scope,
2882 /*invisible=*/false, /*nested=*/true,
2883 DECL_SOURCE_LOCATION (decl));
2884 return decl;
2886 else
2888 tree newtype = default_function_type;
2889 if (b->u.type)
2890 TREE_TYPE (decl) = b->u.type;
2891 /* Implicit declaration of a function already declared
2892 (somehow) in a different scope, or as a built-in.
2893 If this is the first time this has happened, warn;
2894 then recycle the old declaration but with the new type. */
2895 if (!C_DECL_IMPLICIT (decl))
2897 implicit_decl_warning (functionid, decl);
2898 C_DECL_IMPLICIT (decl) = 1;
2900 if (DECL_BUILT_IN (decl))
2902 newtype = build_type_attribute_variant (newtype,
2903 TYPE_ATTRIBUTES
2904 (TREE_TYPE (decl)));
2905 if (!comptypes (newtype, TREE_TYPE (decl)))
2907 warning_at (loc, 0, "incompatible implicit declaration of "
2908 "built-in function %qD", decl);
2909 newtype = TREE_TYPE (decl);
2912 else
2914 if (!comptypes (newtype, TREE_TYPE (decl)))
2916 error_at (loc, "incompatible implicit declaration of function %qD", decl);
2917 locate_old_decl (decl);
2920 b->u.type = TREE_TYPE (decl);
2921 TREE_TYPE (decl) = newtype;
2922 bind (functionid, decl, current_scope,
2923 /*invisible=*/false, /*nested=*/true,
2924 DECL_SOURCE_LOCATION (decl));
2925 return decl;
2929 /* Not seen before. */
2930 decl = build_decl (loc, FUNCTION_DECL, functionid, default_function_type);
2931 DECL_EXTERNAL (decl) = 1;
2932 TREE_PUBLIC (decl) = 1;
2933 C_DECL_IMPLICIT (decl) = 1;
2934 implicit_decl_warning (functionid, 0);
2935 asmspec_tree = maybe_apply_renaming_pragma (decl, /*asmname=*/NULL);
2936 if (asmspec_tree)
2937 set_user_assembler_name (decl, TREE_STRING_POINTER (asmspec_tree));
2939 /* C89 says implicit declarations are in the innermost block.
2940 So we record the decl in the standard fashion. */
2941 decl = pushdecl (decl);
2943 /* No need to call objc_check_decl here - it's a function type. */
2944 rest_of_decl_compilation (decl, 0, 0);
2946 /* Write a record describing this implicit function declaration
2947 to the prototypes file (if requested). */
2948 gen_aux_info_record (decl, 0, 1, 0);
2950 /* Possibly apply some default attributes to this implicit declaration. */
2951 decl_attributes (&decl, NULL_TREE, 0);
2953 return decl;
2956 /* Issue an error message for a reference to an undeclared variable
2957 ID, including a reference to a builtin outside of function-call
2958 context. Establish a binding of the identifier to error_mark_node
2959 in an appropriate scope, which will suppress further errors for the
2960 same identifier. The error message should be given location LOC. */
2961 void
2962 undeclared_variable (location_t loc, tree id)
2964 static bool already = false;
2965 struct c_scope *scope;
2967 if (current_function_decl == 0)
2969 error_at (loc, "%qE undeclared here (not in a function)", id);
2970 scope = current_scope;
2972 else
2974 if (!objc_diagnose_private_ivar (id))
2975 error_at (loc, "%qE undeclared (first use in this function)", id);
2976 if (!already)
2978 inform (loc, "each undeclared identifier is reported only"
2979 " once for each function it appears in");
2980 already = true;
2983 /* If we are parsing old-style parameter decls, current_function_decl
2984 will be nonnull but current_function_scope will be null. */
2985 scope = current_function_scope ? current_function_scope : current_scope;
2987 bind (id, error_mark_node, scope, /*invisible=*/false, /*nested=*/false,
2988 UNKNOWN_LOCATION);
2991 /* Subroutine of lookup_label, declare_label, define_label: construct a
2992 LABEL_DECL with all the proper frills. Also create a struct
2993 c_label_vars initialized for the current scope. */
2995 static tree
2996 make_label (location_t location, tree name, bool defining,
2997 struct c_label_vars **p_label_vars)
2999 tree label = build_decl (location, LABEL_DECL, name, void_type_node);
3000 struct c_label_vars *label_vars;
3002 DECL_CONTEXT (label) = current_function_decl;
3003 DECL_MODE (label) = VOIDmode;
3005 label_vars = ggc_alloc_c_label_vars ();
3006 label_vars->shadowed = NULL;
3007 set_spot_bindings (&label_vars->label_bindings, defining);
3008 label_vars->decls_in_scope = make_tree_vector ();
3009 label_vars->gotos = VEC_alloc (c_goto_bindings_p, gc, 0);
3010 *p_label_vars = label_vars;
3012 return label;
3015 /* Get the LABEL_DECL corresponding to identifier NAME as a label.
3016 Create one if none exists so far for the current function.
3017 This is called when a label is used in a goto expression or
3018 has its address taken. */
3020 tree
3021 lookup_label (tree name)
3023 tree label;
3024 struct c_label_vars *label_vars;
3026 if (current_function_scope == 0)
3028 error ("label %qE referenced outside of any function", name);
3029 return 0;
3032 /* Use a label already defined or ref'd with this name, but not if
3033 it is inherited from a containing function and wasn't declared
3034 using __label__. */
3035 label = I_LABEL_DECL (name);
3036 if (label && (DECL_CONTEXT (label) == current_function_decl
3037 || C_DECLARED_LABEL_FLAG (label)))
3039 /* If the label has only been declared, update its apparent
3040 location to point here, for better diagnostics if it
3041 turns out not to have been defined. */
3042 if (DECL_INITIAL (label) == NULL_TREE)
3043 DECL_SOURCE_LOCATION (label) = input_location;
3044 return label;
3047 /* No label binding for that identifier; make one. */
3048 label = make_label (input_location, name, false, &label_vars);
3050 /* Ordinary labels go in the current function scope. */
3051 bind_label (name, label, current_function_scope, label_vars);
3053 return label;
3056 /* Issue a warning about DECL for a goto statement at GOTO_LOC going
3057 to LABEL. */
3059 static void
3060 warn_about_goto (location_t goto_loc, tree label, tree decl)
3062 if (variably_modified_type_p (TREE_TYPE (decl), NULL_TREE))
3063 error_at (goto_loc,
3064 "jump into scope of identifier with variably modified type");
3065 else
3066 warning_at (goto_loc, OPT_Wjump_misses_init,
3067 "jump skips variable initialization");
3068 inform (DECL_SOURCE_LOCATION (label), "label %qD defined here", label);
3069 inform (DECL_SOURCE_LOCATION (decl), "%qD declared here", decl);
3072 /* Look up a label because of a goto statement. This is like
3073 lookup_label, but also issues any appropriate warnings. */
3075 tree
3076 lookup_label_for_goto (location_t loc, tree name)
3078 tree label;
3079 struct c_label_vars *label_vars;
3080 unsigned int ix;
3081 tree decl;
3083 label = lookup_label (name);
3084 if (label == NULL_TREE)
3085 return NULL_TREE;
3087 /* If we are jumping to a different function, we can't issue any
3088 useful warnings. */
3089 if (DECL_CONTEXT (label) != current_function_decl)
3091 gcc_assert (C_DECLARED_LABEL_FLAG (label));
3092 return label;
3095 label_vars = I_LABEL_BINDING (name)->u.label;
3097 /* If the label has not yet been defined, then push this goto on a
3098 list for possible later warnings. */
3099 if (label_vars->label_bindings.scope == NULL)
3101 struct c_goto_bindings *g;
3103 g = ggc_alloc_c_goto_bindings ();
3104 g->loc = loc;
3105 set_spot_bindings (&g->goto_bindings, true);
3106 VEC_safe_push (c_goto_bindings_p, gc, label_vars->gotos, g);
3107 return label;
3110 /* If there are any decls in label_vars->decls_in_scope, then this
3111 goto has missed the declaration of the decl. This happens for a
3112 case like
3113 int i = 1;
3114 lab:
3116 goto lab;
3117 Issue a warning or error. */
3118 FOR_EACH_VEC_ELT (tree, label_vars->decls_in_scope, ix, decl)
3119 warn_about_goto (loc, label, decl);
3121 if (label_vars->label_bindings.left_stmt_expr)
3123 error_at (loc, "jump into statement expression");
3124 inform (DECL_SOURCE_LOCATION (label), "label %qD defined here", label);
3127 return label;
3130 /* Make a label named NAME in the current function, shadowing silently
3131 any that may be inherited from containing functions or containing
3132 scopes. This is called for __label__ declarations. */
3134 tree
3135 declare_label (tree name)
3137 struct c_binding *b = I_LABEL_BINDING (name);
3138 tree label;
3139 struct c_label_vars *label_vars;
3141 /* Check to make sure that the label hasn't already been declared
3142 at this scope */
3143 if (b && B_IN_CURRENT_SCOPE (b))
3145 error ("duplicate label declaration %qE", name);
3146 locate_old_decl (b->decl);
3148 /* Just use the previous declaration. */
3149 return b->decl;
3152 label = make_label (input_location, name, false, &label_vars);
3153 C_DECLARED_LABEL_FLAG (label) = 1;
3155 /* Declared labels go in the current scope. */
3156 bind_label (name, label, current_scope, label_vars);
3158 return label;
3161 /* When we define a label, issue any appropriate warnings if there are
3162 any gotos earlier in the function which jump to this label. */
3164 static void
3165 check_earlier_gotos (tree label, struct c_label_vars* label_vars)
3167 unsigned int ix;
3168 struct c_goto_bindings *g;
3170 FOR_EACH_VEC_ELT (c_goto_bindings_p, label_vars->gotos, ix, g)
3172 struct c_binding *b;
3173 struct c_scope *scope;
3175 /* We have a goto to this label. The goto is going forward. In
3176 g->scope, the goto is going to skip any binding which was
3177 defined after g->bindings_in_scope. */
3178 for (b = g->goto_bindings.scope->bindings;
3179 b != g->goto_bindings.bindings_in_scope;
3180 b = b->prev)
3182 if (decl_jump_unsafe (b->decl))
3183 warn_about_goto (g->loc, label, b->decl);
3186 /* We also need to warn about decls defined in any scopes
3187 between the scope of the label and the scope of the goto. */
3188 for (scope = label_vars->label_bindings.scope;
3189 scope != g->goto_bindings.scope;
3190 scope = scope->outer)
3192 gcc_assert (scope != NULL);
3193 if (scope == label_vars->label_bindings.scope)
3194 b = label_vars->label_bindings.bindings_in_scope;
3195 else
3196 b = scope->bindings;
3197 for (; b != NULL; b = b->prev)
3199 if (decl_jump_unsafe (b->decl))
3200 warn_about_goto (g->loc, label, b->decl);
3204 if (g->goto_bindings.stmt_exprs > 0)
3206 error_at (g->loc, "jump into statement expression");
3207 inform (DECL_SOURCE_LOCATION (label), "label %qD defined here",
3208 label);
3212 /* Now that the label is defined, we will issue warnings about
3213 subsequent gotos to this label when we see them. */
3214 VEC_truncate (c_goto_bindings_p, label_vars->gotos, 0);
3215 label_vars->gotos = NULL;
3218 /* Define a label, specifying the location in the source file.
3219 Return the LABEL_DECL node for the label, if the definition is valid.
3220 Otherwise return 0. */
3222 tree
3223 define_label (location_t location, tree name)
3225 /* Find any preexisting label with this name. It is an error
3226 if that label has already been defined in this function, or
3227 if there is a containing function with a declared label with
3228 the same name. */
3229 tree label = I_LABEL_DECL (name);
3231 if (label
3232 && ((DECL_CONTEXT (label) == current_function_decl
3233 && DECL_INITIAL (label) != 0)
3234 || (DECL_CONTEXT (label) != current_function_decl
3235 && C_DECLARED_LABEL_FLAG (label))))
3237 error_at (location, "duplicate label %qD", label);
3238 locate_old_decl (label);
3239 return 0;
3241 else if (label && DECL_CONTEXT (label) == current_function_decl)
3243 struct c_label_vars *label_vars = I_LABEL_BINDING (name)->u.label;
3245 /* The label has been used or declared already in this function,
3246 but not defined. Update its location to point to this
3247 definition. */
3248 DECL_SOURCE_LOCATION (label) = location;
3249 set_spot_bindings (&label_vars->label_bindings, true);
3251 /* Issue warnings as required about any goto statements from
3252 earlier in the function. */
3253 check_earlier_gotos (label, label_vars);
3255 else
3257 struct c_label_vars *label_vars;
3259 /* No label binding for that identifier; make one. */
3260 label = make_label (location, name, true, &label_vars);
3262 /* Ordinary labels go in the current function scope. */
3263 bind_label (name, label, current_function_scope, label_vars);
3266 if (!in_system_header && lookup_name (name))
3267 warning_at (location, OPT_Wtraditional,
3268 "traditional C lacks a separate namespace "
3269 "for labels, identifier %qE conflicts", name);
3271 /* Mark label as having been defined. */
3272 DECL_INITIAL (label) = error_mark_node;
3273 return label;
3276 /* Get the bindings for a new switch statement. This is used to issue
3277 warnings as appropriate for jumps from the switch to case or
3278 default labels. */
3280 struct c_spot_bindings *
3281 c_get_switch_bindings (void)
3283 struct c_spot_bindings *switch_bindings;
3285 switch_bindings = XNEW (struct c_spot_bindings);
3286 set_spot_bindings (switch_bindings, true);
3287 return switch_bindings;
3290 void
3291 c_release_switch_bindings (struct c_spot_bindings *bindings)
3293 gcc_assert (bindings->stmt_exprs == 0 && !bindings->left_stmt_expr);
3294 XDELETE (bindings);
3297 /* This is called at the point of a case or default label to issue
3298 warnings about decls as needed. It returns true if it found an
3299 error, not just a warning. */
3301 bool
3302 c_check_switch_jump_warnings (struct c_spot_bindings *switch_bindings,
3303 location_t switch_loc, location_t case_loc)
3305 bool saw_error;
3306 struct c_scope *scope;
3308 saw_error = false;
3309 for (scope = current_scope;
3310 scope != switch_bindings->scope;
3311 scope = scope->outer)
3313 struct c_binding *b;
3315 gcc_assert (scope != NULL);
3316 for (b = scope->bindings; b != NULL; b = b->prev)
3318 if (decl_jump_unsafe (b->decl))
3320 if (variably_modified_type_p (TREE_TYPE (b->decl), NULL_TREE))
3322 saw_error = true;
3323 error_at (case_loc,
3324 ("switch jumps into scope of identifier with "
3325 "variably modified type"));
3327 else
3328 warning_at (case_loc, OPT_Wjump_misses_init,
3329 "switch jumps over variable initialization");
3330 inform (switch_loc, "switch starts here");
3331 inform (DECL_SOURCE_LOCATION (b->decl), "%qD declared here",
3332 b->decl);
3337 if (switch_bindings->stmt_exprs > 0)
3339 saw_error = true;
3340 error_at (case_loc, "switch jumps into statement expression");
3341 inform (switch_loc, "switch starts here");
3344 return saw_error;
3347 /* Given NAME, an IDENTIFIER_NODE,
3348 return the structure (or union or enum) definition for that name.
3349 If THISLEVEL_ONLY is nonzero, searches only the current_scope.
3350 CODE says which kind of type the caller wants;
3351 it is RECORD_TYPE or UNION_TYPE or ENUMERAL_TYPE.
3352 If PLOC is not NULL and this returns non-null, it sets *PLOC to the
3353 location where the tag was defined.
3354 If the wrong kind of type is found, an error is reported. */
3356 static tree
3357 lookup_tag (enum tree_code code, tree name, int thislevel_only,
3358 location_t *ploc)
3360 struct c_binding *b = I_TAG_BINDING (name);
3361 int thislevel = 0;
3363 if (!b || !b->decl)
3364 return 0;
3366 /* We only care about whether it's in this level if
3367 thislevel_only was set or it might be a type clash. */
3368 if (thislevel_only || TREE_CODE (b->decl) != code)
3370 /* For our purposes, a tag in the external scope is the same as
3371 a tag in the file scope. (Primarily relevant to Objective-C
3372 and its builtin structure tags, which get pushed before the
3373 file scope is created.) */
3374 if (B_IN_CURRENT_SCOPE (b)
3375 || (current_scope == file_scope && B_IN_EXTERNAL_SCOPE (b)))
3376 thislevel = 1;
3379 if (thislevel_only && !thislevel)
3380 return 0;
3382 if (TREE_CODE (b->decl) != code)
3384 /* Definition isn't the kind we were looking for. */
3385 pending_invalid_xref = name;
3386 pending_invalid_xref_location = input_location;
3388 /* If in the same binding level as a declaration as a tag
3389 of a different type, this must not be allowed to
3390 shadow that tag, so give the error immediately.
3391 (For example, "struct foo; union foo;" is invalid.) */
3392 if (thislevel)
3393 pending_xref_error ();
3396 if (ploc != NULL)
3397 *ploc = b->locus;
3399 return b->decl;
3402 /* Print an error message now
3403 for a recent invalid struct, union or enum cross reference.
3404 We don't print them immediately because they are not invalid
3405 when used in the `struct foo;' construct for shadowing. */
3407 void
3408 pending_xref_error (void)
3410 if (pending_invalid_xref != 0)
3411 error_at (pending_invalid_xref_location, "%qE defined as wrong kind of tag",
3412 pending_invalid_xref);
3413 pending_invalid_xref = 0;
3417 /* Look up NAME in the current scope and its superiors
3418 in the namespace of variables, functions and typedefs.
3419 Return a ..._DECL node of some kind representing its definition,
3420 or return 0 if it is undefined. */
3422 tree
3423 lookup_name (tree name)
3425 struct c_binding *b = I_SYMBOL_BINDING (name);
3426 if (b && !b->invisible)
3427 return b->decl;
3428 return 0;
3431 /* Similar to `lookup_name' but look only at the indicated scope. */
3433 static tree
3434 lookup_name_in_scope (tree name, struct c_scope *scope)
3436 struct c_binding *b;
3438 for (b = I_SYMBOL_BINDING (name); b; b = b->shadowed)
3439 if (B_IN_SCOPE (b, scope))
3440 return b->decl;
3441 return 0;
3444 /* Create the predefined scalar types of C,
3445 and some nodes representing standard constants (0, 1, (void *) 0).
3446 Initialize the global scope.
3447 Make definitions for built-in primitive functions. */
3449 void
3450 c_init_decl_processing (void)
3452 location_t save_loc = input_location;
3454 /* Initialize reserved words for parser. */
3455 c_parse_init ();
3457 current_function_decl = 0;
3459 gcc_obstack_init (&parser_obstack);
3461 /* Make the externals scope. */
3462 push_scope ();
3463 external_scope = current_scope;
3465 /* Declarations from c_common_nodes_and_builtins must not be associated
3466 with this input file, lest we get differences between using and not
3467 using preprocessed headers. */
3468 input_location = BUILTINS_LOCATION;
3470 build_common_tree_nodes (flag_signed_char);
3472 c_common_nodes_and_builtins ();
3474 /* In C, comparisons and TRUTH_* expressions have type int. */
3475 truthvalue_type_node = integer_type_node;
3476 truthvalue_true_node = integer_one_node;
3477 truthvalue_false_node = integer_zero_node;
3479 /* Even in C99, which has a real boolean type. */
3480 pushdecl (build_decl (UNKNOWN_LOCATION, TYPE_DECL, get_identifier ("_Bool"),
3481 boolean_type_node));
3483 input_location = save_loc;
3485 pedantic_lvalues = true;
3487 make_fname_decl = c_make_fname_decl;
3488 start_fname_decls ();
3491 /* Create the VAR_DECL at LOC for __FUNCTION__ etc. ID is the name to
3492 give the decl, NAME is the initialization string and TYPE_DEP
3493 indicates whether NAME depended on the type of the function. As we
3494 don't yet implement delayed emission of static data, we mark the
3495 decl as emitted so it is not placed in the output. Anything using
3496 it must therefore pull out the STRING_CST initializer directly.
3497 FIXME. */
3499 static tree
3500 c_make_fname_decl (location_t loc, tree id, int type_dep)
3502 const char *name = fname_as_string (type_dep);
3503 tree decl, type, init;
3504 size_t length = strlen (name);
3506 type = build_array_type (char_type_node,
3507 build_index_type (size_int (length)));
3508 type = c_build_qualified_type (type, TYPE_QUAL_CONST);
3510 decl = build_decl (loc, VAR_DECL, id, type);
3512 TREE_STATIC (decl) = 1;
3513 TREE_READONLY (decl) = 1;
3514 DECL_ARTIFICIAL (decl) = 1;
3516 init = build_string (length + 1, name);
3517 free (CONST_CAST (char *, name));
3518 TREE_TYPE (init) = type;
3519 DECL_INITIAL (decl) = init;
3521 TREE_USED (decl) = 1;
3523 if (current_function_decl
3524 /* For invalid programs like this:
3526 void foo()
3527 const char* p = __FUNCTION__;
3529 the __FUNCTION__ is believed to appear in K&R style function
3530 parameter declarator. In that case we still don't have
3531 function_scope. */
3532 && (!seen_error () || current_function_scope))
3534 DECL_CONTEXT (decl) = current_function_decl;
3535 bind (id, decl, current_function_scope,
3536 /*invisible=*/false, /*nested=*/false, UNKNOWN_LOCATION);
3539 finish_decl (decl, loc, init, NULL_TREE, NULL_TREE);
3541 return decl;
3544 tree
3545 c_builtin_function (tree decl)
3547 tree type = TREE_TYPE (decl);
3548 tree id = DECL_NAME (decl);
3550 const char *name = IDENTIFIER_POINTER (id);
3551 C_DECL_BUILTIN_PROTOTYPE (decl) = prototype_p (type);
3553 /* Should never be called on a symbol with a preexisting meaning. */
3554 gcc_assert (!I_SYMBOL_BINDING (id));
3556 bind (id, decl, external_scope, /*invisible=*/true, /*nested=*/false,
3557 UNKNOWN_LOCATION);
3559 /* Builtins in the implementation namespace are made visible without
3560 needing to be explicitly declared. See push_file_scope. */
3561 if (name[0] == '_' && (name[1] == '_' || ISUPPER (name[1])))
3563 DECL_CHAIN (decl) = visible_builtins;
3564 visible_builtins = decl;
3567 return decl;
3570 tree
3571 c_builtin_function_ext_scope (tree decl)
3573 tree type = TREE_TYPE (decl);
3574 tree id = DECL_NAME (decl);
3576 const char *name = IDENTIFIER_POINTER (id);
3577 C_DECL_BUILTIN_PROTOTYPE (decl) = prototype_p (type);
3579 /* Should never be called on a symbol with a preexisting meaning. */
3580 gcc_assert (!I_SYMBOL_BINDING (id));
3582 bind (id, decl, external_scope, /*invisible=*/false, /*nested=*/false,
3583 UNKNOWN_LOCATION);
3585 /* Builtins in the implementation namespace are made visible without
3586 needing to be explicitly declared. See push_file_scope. */
3587 if (name[0] == '_' && (name[1] == '_' || ISUPPER (name[1])))
3589 DECL_CHAIN (decl) = visible_builtins;
3590 visible_builtins = decl;
3593 return decl;
3596 /* Called when a declaration is seen that contains no names to declare.
3597 If its type is a reference to a structure, union or enum inherited
3598 from a containing scope, shadow that tag name for the current scope
3599 with a forward reference.
3600 If its type defines a new named structure or union
3601 or defines an enum, it is valid but we need not do anything here.
3602 Otherwise, it is an error. */
3604 void
3605 shadow_tag (const struct c_declspecs *declspecs)
3607 shadow_tag_warned (declspecs, 0);
3610 /* WARNED is 1 if we have done a pedwarn, 2 if we have done a warning,
3611 but no pedwarn. */
3612 void
3613 shadow_tag_warned (const struct c_declspecs *declspecs, int warned)
3615 bool found_tag = false;
3617 if (declspecs->type && !declspecs->default_int_p && !declspecs->typedef_p)
3619 tree value = declspecs->type;
3620 enum tree_code code = TREE_CODE (value);
3622 if (code == RECORD_TYPE || code == UNION_TYPE || code == ENUMERAL_TYPE)
3623 /* Used to test also that TYPE_SIZE (value) != 0.
3624 That caused warning for `struct foo;' at top level in the file. */
3626 tree name = TYPE_NAME (value);
3627 tree t;
3629 found_tag = true;
3631 if (declspecs->restrict_p)
3633 error ("invalid use of %<restrict%>");
3634 warned = 1;
3637 if (name == 0)
3639 if (warned != 1 && code != ENUMERAL_TYPE)
3640 /* Empty unnamed enum OK */
3642 pedwarn (input_location, 0,
3643 "unnamed struct/union that defines no instances");
3644 warned = 1;
3647 else if (declspecs->typespec_kind != ctsk_tagdef
3648 && declspecs->typespec_kind != ctsk_tagfirstref
3649 && declspecs->storage_class != csc_none)
3651 if (warned != 1)
3652 pedwarn (input_location, 0,
3653 "empty declaration with storage class specifier "
3654 "does not redeclare tag");
3655 warned = 1;
3656 pending_xref_error ();
3658 else if (declspecs->typespec_kind != ctsk_tagdef
3659 && declspecs->typespec_kind != ctsk_tagfirstref
3660 && (declspecs->const_p
3661 || declspecs->volatile_p
3662 || declspecs->restrict_p
3663 || declspecs->address_space))
3665 if (warned != 1)
3666 pedwarn (input_location, 0,
3667 "empty declaration with type qualifier "
3668 "does not redeclare tag");
3669 warned = 1;
3670 pending_xref_error ();
3672 else
3674 pending_invalid_xref = 0;
3675 t = lookup_tag (code, name, 1, NULL);
3677 if (t == 0)
3679 t = make_node (code);
3680 pushtag (input_location, name, t);
3684 else
3686 if (warned != 1 && !in_system_header)
3688 pedwarn (input_location, 0,
3689 "useless type name in empty declaration");
3690 warned = 1;
3694 else if (warned != 1 && !in_system_header && declspecs->typedef_p)
3696 pedwarn (input_location, 0, "useless type name in empty declaration");
3697 warned = 1;
3700 pending_invalid_xref = 0;
3702 if (declspecs->inline_p)
3704 error ("%<inline%> in empty declaration");
3705 warned = 1;
3708 if (current_scope == file_scope && declspecs->storage_class == csc_auto)
3710 error ("%<auto%> in file-scope empty declaration");
3711 warned = 1;
3714 if (current_scope == file_scope && declspecs->storage_class == csc_register)
3716 error ("%<register%> in file-scope empty declaration");
3717 warned = 1;
3720 if (!warned && !in_system_header && declspecs->storage_class != csc_none)
3722 warning (0, "useless storage class specifier in empty declaration");
3723 warned = 2;
3726 if (!warned && !in_system_header && declspecs->thread_p)
3728 warning (0, "useless %<__thread%> in empty declaration");
3729 warned = 2;
3732 if (!warned && !in_system_header && (declspecs->const_p
3733 || declspecs->volatile_p
3734 || declspecs->restrict_p
3735 || declspecs->address_space))
3737 warning (0, "useless type qualifier in empty declaration");
3738 warned = 2;
3741 if (warned != 1)
3743 if (!found_tag)
3744 pedwarn (input_location, 0, "empty declaration");
3749 /* Return the qualifiers from SPECS as a bitwise OR of TYPE_QUAL_*
3750 bits. SPECS represents declaration specifiers that the grammar
3751 only permits to contain type qualifiers and attributes. */
3754 quals_from_declspecs (const struct c_declspecs *specs)
3756 int quals = ((specs->const_p ? TYPE_QUAL_CONST : 0)
3757 | (specs->volatile_p ? TYPE_QUAL_VOLATILE : 0)
3758 | (specs->restrict_p ? TYPE_QUAL_RESTRICT : 0)
3759 | (specs->shared_p ? TYPE_QUAL_SHARED : 0)
3760 | (specs->strict_p ? TYPE_QUAL_STRICT : 0)
3761 | (specs->relaxed_p ? TYPE_QUAL_RELAXED : 0)
3762 | (ENCODE_QUAL_ADDR_SPACE (specs->address_space)));
3763 gcc_assert (!specs->type
3764 && !specs->decl_attr
3765 && specs->typespec_word == cts_none
3766 && specs->storage_class == csc_none
3767 && !specs->typedef_p
3768 && !specs->explicit_signed_p
3769 && !specs->deprecated_p
3770 && !specs->long_p
3771 && !specs->long_long_p
3772 && !specs->short_p
3773 && !specs->signed_p
3774 && !specs->unsigned_p
3775 && !specs->complex_p
3776 && !specs->inline_p
3777 && !specs->thread_p);
3778 return quals;
3781 /* Construct an array declarator. LOC is the location of the
3782 beginning of the array (usually the opening brace). EXPR is the
3783 expression inside [], or NULL_TREE. QUALS are the type qualifiers
3784 inside the [] (to be applied to the pointer to which a parameter
3785 array is converted). STATIC_P is true if "static" is inside the
3786 [], false otherwise. VLA_UNSPEC_P is true if the array is [*], a
3787 VLA of unspecified length which is nevertheless a complete type,
3788 false otherwise. The field for the contained declarator is left to
3789 be filled in by set_array_declarator_inner. */
3791 struct c_declarator *
3792 build_array_declarator (location_t loc,
3793 tree expr, struct c_declspecs *quals, bool static_p,
3794 bool vla_unspec_p)
3796 struct c_declarator *declarator = XOBNEW (&parser_obstack,
3797 struct c_declarator);
3798 declarator->id_loc = loc;
3799 declarator->kind = cdk_array;
3800 declarator->declarator = 0;
3801 declarator->u.array.dimen = expr;
3802 if (quals)
3804 declarator->u.array.attrs = quals->attrs;
3805 declarator->u.array.quals = quals_from_declspecs (quals);
3807 else
3809 declarator->u.array.attrs = NULL_TREE;
3810 declarator->u.array.quals = 0;
3812 declarator->u.array.static_p = static_p;
3813 declarator->u.array.vla_unspec_p = vla_unspec_p;
3814 if (!flag_isoc99)
3816 if (static_p || quals != NULL)
3817 pedwarn (loc, OPT_pedantic,
3818 "ISO C90 does not support %<static%> or type "
3819 "qualifiers in parameter array declarators");
3820 if (vla_unspec_p)
3821 pedwarn (loc, OPT_pedantic,
3822 "ISO C90 does not support %<[*]%> array declarators");
3824 if (vla_unspec_p)
3826 if (!current_scope->parm_flag)
3828 /* C99 6.7.5.2p4 */
3829 error_at (loc, "%<[*]%> not allowed in other than "
3830 "function prototype scope");
3831 declarator->u.array.vla_unspec_p = false;
3832 return NULL;
3834 current_scope->had_vla_unspec = true;
3836 return declarator;
3839 /* Set the contained declarator of an array declarator. DECL is the
3840 declarator, as constructed by build_array_declarator; INNER is what
3841 appears on the left of the []. */
3843 struct c_declarator *
3844 set_array_declarator_inner (struct c_declarator *decl,
3845 struct c_declarator *inner)
3847 decl->declarator = inner;
3848 return decl;
3851 /* INIT is a constructor that forms DECL's initializer. If the final
3852 element initializes a flexible array field, add the size of that
3853 initializer to DECL's size. */
3855 static void
3856 add_flexible_array_elts_to_size (tree decl, tree init)
3858 tree elt, type;
3860 if (VEC_empty (constructor_elt, CONSTRUCTOR_ELTS (init)))
3861 return;
3863 elt = VEC_last (constructor_elt, CONSTRUCTOR_ELTS (init))->value;
3864 type = TREE_TYPE (elt);
3865 if (TREE_CODE (type) == ARRAY_TYPE
3866 && TYPE_SIZE (type) == NULL_TREE
3867 && TYPE_DOMAIN (type) != NULL_TREE
3868 && TYPE_MAX_VALUE (TYPE_DOMAIN (type)) == NULL_TREE)
3870 complete_array_type (&type, elt, false);
3871 DECL_SIZE (decl)
3872 = size_binop (PLUS_EXPR, DECL_SIZE (decl), TYPE_SIZE (type));
3873 DECL_SIZE_UNIT (decl)
3874 = size_binop (PLUS_EXPR, DECL_SIZE_UNIT (decl), TYPE_SIZE_UNIT (type));
3878 /* Decode a "typename", such as "int **", returning a ..._TYPE node.
3879 Set *EXPR, if EXPR not NULL, to any expression to be evaluated
3880 before the type name, and set *EXPR_CONST_OPERANDS, if
3881 EXPR_CONST_OPERANDS not NULL, to indicate whether the type name may
3882 appear in a constant expression. */
3884 tree
3885 groktypename (struct c_type_name *type_name, tree *expr,
3886 bool *expr_const_operands)
3888 tree type;
3889 tree attrs = type_name->specs->attrs;
3891 type_name->specs->attrs = NULL_TREE;
3893 type = grokdeclarator (type_name->declarator, type_name->specs, TYPENAME,
3894 false, NULL, &attrs, expr, expr_const_operands,
3895 DEPRECATED_NORMAL);
3897 /* Apply attributes. */
3898 decl_attributes (&type, attrs, 0);
3900 return type;
3903 /* Decode a declarator in an ordinary declaration or data definition.
3904 This is called as soon as the type information and variable name
3905 have been parsed, before parsing the initializer if any.
3906 Here we create the ..._DECL node, fill in its type,
3907 and put it on the list of decls for the current context.
3908 The ..._DECL node is returned as the value.
3910 Exception: for arrays where the length is not specified,
3911 the type is left null, to be filled in by `finish_decl'.
3913 Function definitions do not come here; they go to start_function
3914 instead. However, external and forward declarations of functions
3915 do go through here. Structure field declarations are done by
3916 grokfield and not through here. */
3918 tree
3919 start_decl (struct c_declarator *declarator, struct c_declspecs *declspecs,
3920 bool initialized, tree attributes)
3922 tree decl;
3923 tree tem;
3924 tree expr = NULL_TREE;
3925 enum deprecated_states deprecated_state = DEPRECATED_NORMAL;
3927 /* An object declared as __attribute__((deprecated)) suppresses
3928 warnings of uses of other deprecated items. */
3929 if (lookup_attribute ("deprecated", attributes))
3930 deprecated_state = DEPRECATED_SUPPRESS;
3932 decl = grokdeclarator (declarator, declspecs,
3933 NORMAL, initialized, NULL, &attributes, &expr, NULL,
3934 deprecated_state);
3935 if (!decl)
3936 return 0;
3938 if (expr)
3939 add_stmt (expr);
3941 if (TREE_CODE (decl) != FUNCTION_DECL && MAIN_NAME_P (DECL_NAME (decl)))
3942 warning (OPT_Wmain, "%q+D is usually a function", decl);
3944 if (initialized)
3945 /* Is it valid for this decl to have an initializer at all?
3946 If not, set INITIALIZED to zero, which will indirectly
3947 tell 'finish_decl' to ignore the initializer once it is parsed. */
3948 switch (TREE_CODE (decl))
3950 case TYPE_DECL:
3951 error ("typedef %qD is initialized (use __typeof__ instead)", decl);
3952 initialized = 0;
3953 break;
3955 case FUNCTION_DECL:
3956 error ("function %qD is initialized like a variable", decl);
3957 initialized = 0;
3958 break;
3960 case PARM_DECL:
3961 /* DECL_INITIAL in a PARM_DECL is really DECL_ARG_TYPE. */
3962 error ("parameter %qD is initialized", decl);
3963 initialized = 0;
3964 break;
3966 default:
3967 /* Don't allow initializations for incomplete types except for
3968 arrays which might be completed by the initialization. */
3970 /* This can happen if the array size is an undefined macro.
3971 We already gave a warning, so we don't need another one. */
3972 if (TREE_TYPE (decl) == error_mark_node)
3973 initialized = 0;
3974 else if (COMPLETE_TYPE_P (TREE_TYPE (decl)))
3976 /* A complete type is ok if size is fixed. */
3978 if (TREE_CODE (TYPE_SIZE (TREE_TYPE (decl))) != INTEGER_CST
3979 || C_DECL_VARIABLE_SIZE (decl))
3981 error ("variable-sized object may not be initialized");
3982 initialized = 0;
3985 else if (TREE_CODE (TREE_TYPE (decl)) != ARRAY_TYPE)
3987 error ("variable %qD has initializer but incomplete type", decl);
3988 initialized = 0;
3990 else if (C_DECL_VARIABLE_SIZE (decl))
3992 /* Although C99 is unclear about whether incomplete arrays
3993 of VLAs themselves count as VLAs, it does not make
3994 sense to permit them to be initialized given that
3995 ordinary VLAs may not be initialized. */
3996 error ("variable-sized object may not be initialized");
3997 initialized = 0;
4001 if (initialized)
4003 if (current_scope == file_scope)
4004 TREE_STATIC (decl) = 1;
4006 /* Tell 'pushdecl' this is an initialized decl
4007 even though we don't yet have the initializer expression.
4008 Also tell 'finish_decl' it may store the real initializer. */
4009 DECL_INITIAL (decl) = error_mark_node;
4012 /* If this is a function declaration, write a record describing it to the
4013 prototypes file (if requested). */
4015 if (TREE_CODE (decl) == FUNCTION_DECL)
4016 gen_aux_info_record (decl, 0, 0, prototype_p (TREE_TYPE (decl)));
4018 /* ANSI specifies that a tentative definition which is not merged with
4019 a non-tentative definition behaves exactly like a definition with an
4020 initializer equal to zero. (Section 3.7.2)
4022 -fno-common gives strict ANSI behavior, though this tends to break
4023 a large body of code that grew up without this rule.
4025 Thread-local variables are never common, since there's no entrenched
4026 body of code to break, and it allows more efficient variable references
4027 in the presence of dynamic linking. */
4029 if (TREE_CODE (decl) == VAR_DECL
4030 && !initialized
4031 && TREE_PUBLIC (decl)
4032 && !DECL_THREAD_LOCAL_P (decl)
4033 && !flag_no_common)
4034 DECL_COMMON (decl) = 1;
4036 /* Set attributes here so if duplicate decl, will have proper attributes. */
4037 decl_attributes (&decl, attributes, 0);
4039 /* Handle gnu_inline attribute. */
4040 if (declspecs->inline_p
4041 && !flag_gnu89_inline
4042 && TREE_CODE (decl) == FUNCTION_DECL
4043 && (lookup_attribute ("gnu_inline", DECL_ATTRIBUTES (decl))
4044 || current_function_decl))
4046 if (declspecs->storage_class == csc_auto && current_scope != file_scope)
4048 else if (declspecs->storage_class != csc_static)
4049 DECL_EXTERNAL (decl) = !DECL_EXTERNAL (decl);
4052 if (TREE_CODE (decl) == FUNCTION_DECL
4053 && targetm.calls.promote_prototypes (TREE_TYPE (decl)))
4055 struct c_declarator *ce = declarator;
4057 if (ce->kind == cdk_pointer)
4058 ce = declarator->declarator;
4059 if (ce->kind == cdk_function)
4061 tree args = ce->u.arg_info->parms;
4062 for (; args; args = DECL_CHAIN (args))
4064 tree type = TREE_TYPE (args);
4065 if (type && INTEGRAL_TYPE_P (type)
4066 && TYPE_PRECISION (type) < TYPE_PRECISION (integer_type_node))
4067 DECL_ARG_TYPE (args) = integer_type_node;
4072 if (TREE_CODE (decl) == FUNCTION_DECL
4073 && DECL_DECLARED_INLINE_P (decl)
4074 && DECL_UNINLINABLE (decl)
4075 && lookup_attribute ("noinline", DECL_ATTRIBUTES (decl)))
4076 warning (OPT_Wattributes, "inline function %q+D given attribute noinline",
4077 decl);
4079 /* C99 6.7.4p3: An inline definition of a function with external
4080 linkage shall not contain a definition of a modifiable object
4081 with static storage duration... */
4082 if (TREE_CODE (decl) == VAR_DECL
4083 && current_scope != file_scope
4084 && TREE_STATIC (decl)
4085 && !TREE_READONLY (decl)
4086 && DECL_DECLARED_INLINE_P (current_function_decl)
4087 && DECL_EXTERNAL (current_function_decl))
4088 record_inline_static (input_location, current_function_decl,
4089 decl, csi_modifiable);
4091 if (c_dialect_objc ()
4092 && (TREE_CODE (decl) == VAR_DECL
4093 || TREE_CODE (decl) == FUNCTION_DECL))
4094 objc_check_global_decl (decl);
4096 /* Add this decl to the current scope.
4097 TEM may equal DECL or it may be a previous decl of the same name. */
4098 tem = pushdecl (decl);
4100 if (initialized && DECL_EXTERNAL (tem))
4102 DECL_EXTERNAL (tem) = 0;
4103 TREE_STATIC (tem) = 1;
4106 return tem;
4109 /* Subroutine of finish_decl. TYPE is the type of an uninitialized object
4110 DECL or the non-array element type if DECL is an uninitialized array.
4111 If that type has a const member, diagnose this. */
4113 static void
4114 diagnose_uninitialized_cst_member (tree decl, tree type)
4116 tree field;
4117 for (field = TYPE_FIELDS (type); field; field = TREE_CHAIN (field))
4119 tree field_type;
4120 if (TREE_CODE (field) != FIELD_DECL)
4121 continue;
4122 field_type = strip_array_types (TREE_TYPE (field));
4124 if (TYPE_QUALS (field_type) & TYPE_QUAL_CONST)
4126 warning_at (DECL_SOURCE_LOCATION (decl), OPT_Wc___compat,
4127 "uninitialized const member in %qT is invalid in C++",
4128 strip_array_types (TREE_TYPE (decl)));
4129 inform (DECL_SOURCE_LOCATION (field), "%qD should be initialized", field);
4132 if (TREE_CODE (field_type) == RECORD_TYPE
4133 || TREE_CODE (field_type) == UNION_TYPE)
4134 diagnose_uninitialized_cst_member (decl, field_type);
4138 /* Finish processing of a declaration;
4139 install its initial value.
4140 If ORIGTYPE is not NULL_TREE, it is the original type of INIT.
4141 If the length of an array type is not known before,
4142 it must be determined now, from the initial value, or it is an error.
4144 INIT_LOC is the location of the initial value. */
4146 void
4147 finish_decl (tree decl, location_t init_loc, tree init,
4148 tree origtype, tree asmspec_tree)
4150 tree type;
4151 bool was_incomplete = (DECL_SIZE (decl) == 0);
4152 const char *asmspec = 0;
4154 /* If a name was specified, get the string. */
4155 if ((TREE_CODE (decl) == FUNCTION_DECL || TREE_CODE (decl) == VAR_DECL)
4156 && DECL_FILE_SCOPE_P (decl))
4157 asmspec_tree = maybe_apply_renaming_pragma (decl, asmspec_tree);
4158 if (asmspec_tree)
4159 asmspec = TREE_STRING_POINTER (asmspec_tree);
4161 if (TREE_CODE (decl) == VAR_DECL
4162 && TREE_STATIC (decl)
4163 && global_bindings_p ())
4164 /* So decl is a global variable. Record the types it uses
4165 so that we can decide later to emit debug info for them. */
4166 record_types_used_by_current_var_decl (decl);
4168 /* If `start_decl' didn't like having an initialization, ignore it now. */
4169 if (init != 0 && DECL_INITIAL (decl) == 0)
4170 init = 0;
4172 /* Don't crash if parm is initialized. */
4173 if (TREE_CODE (decl) == PARM_DECL)
4174 init = 0;
4176 if (init)
4177 store_init_value (init_loc, decl, init, origtype);
4179 if (c_dialect_objc () && (TREE_CODE (decl) == VAR_DECL
4180 || TREE_CODE (decl) == FUNCTION_DECL
4181 || TREE_CODE (decl) == FIELD_DECL))
4182 objc_check_decl (decl);
4184 type = TREE_TYPE (decl);
4186 /* Deduce size of array from initialization, if not already known. */
4187 if (TREE_CODE (type) == ARRAY_TYPE
4188 && TYPE_DOMAIN (type) == 0
4189 && TREE_CODE (decl) != TYPE_DECL)
4191 bool do_default
4192 = (TREE_STATIC (decl)
4193 /* Even if pedantic, an external linkage array
4194 may have incomplete type at first. */
4195 ? pedantic && !TREE_PUBLIC (decl)
4196 : !DECL_EXTERNAL (decl));
4197 int failure
4198 = complete_array_type (&TREE_TYPE (decl), DECL_INITIAL (decl),
4199 do_default);
4201 /* Get the completed type made by complete_array_type. */
4202 type = TREE_TYPE (decl);
4204 switch (failure)
4206 case 1:
4207 error ("initializer fails to determine size of %q+D", decl);
4208 break;
4210 case 2:
4211 if (do_default)
4212 error ("array size missing in %q+D", decl);
4213 /* If a `static' var's size isn't known,
4214 make it extern as well as static, so it does not get
4215 allocated.
4216 If it is not `static', then do not mark extern;
4217 finish_incomplete_decl will give it a default size
4218 and it will get allocated. */
4219 else if (!pedantic && TREE_STATIC (decl) && !TREE_PUBLIC (decl))
4220 DECL_EXTERNAL (decl) = 1;
4221 break;
4223 case 3:
4224 error ("zero or negative size array %q+D", decl);
4225 break;
4227 case 0:
4228 /* For global variables, update the copy of the type that
4229 exists in the binding. */
4230 if (TREE_PUBLIC (decl))
4232 struct c_binding *b_ext = I_SYMBOL_BINDING (DECL_NAME (decl));
4233 while (b_ext && !B_IN_EXTERNAL_SCOPE (b_ext))
4234 b_ext = b_ext->shadowed;
4235 if (b_ext)
4237 if (b_ext->u.type)
4238 b_ext->u.type = composite_type (b_ext->u.type, type);
4239 else
4240 b_ext->u.type = type;
4243 break;
4245 default:
4246 gcc_unreachable ();
4249 if (DECL_INITIAL (decl))
4250 TREE_TYPE (DECL_INITIAL (decl)) = type;
4252 layout_decl (decl, 0);
4255 if (TREE_CODE (decl) == VAR_DECL)
4257 if (init && TREE_CODE (init) == CONSTRUCTOR)
4258 add_flexible_array_elts_to_size (decl, init);
4260 if (DECL_SIZE (decl) == 0 && TREE_TYPE (decl) != error_mark_node
4261 && COMPLETE_TYPE_P (TREE_TYPE (decl)))
4262 layout_decl (decl, 0);
4264 if (DECL_SIZE (decl) == 0
4265 /* Don't give an error if we already gave one earlier. */
4266 && TREE_TYPE (decl) != error_mark_node
4267 && (TREE_STATIC (decl)
4268 /* A static variable with an incomplete type
4269 is an error if it is initialized.
4270 Also if it is not file scope.
4271 Otherwise, let it through, but if it is not `extern'
4272 then it may cause an error message later. */
4273 ? (DECL_INITIAL (decl) != 0
4274 || !DECL_FILE_SCOPE_P (decl))
4275 /* An automatic variable with an incomplete type
4276 is an error. */
4277 : !DECL_EXTERNAL (decl)))
4279 error ("storage size of %q+D isn%'t known", decl);
4280 TREE_TYPE (decl) = error_mark_node;
4283 if ((DECL_EXTERNAL (decl) || TREE_STATIC (decl))
4284 && DECL_SIZE (decl) != 0)
4286 if (TREE_CODE (DECL_SIZE (decl)) == INTEGER_CST)
4287 constant_expression_warning (DECL_SIZE (decl));
4288 else
4290 if (upc_shared_type_p (TREE_TYPE (decl)))
4292 gcc_assert (!flag_upc_threads);
4293 if (UPC_TYPE_HAS_THREADS_FACTOR (TREE_TYPE (decl)))
4294 error ("In the dynamic translation environment, THREADS may"
4295 " not appear in declarations of shared arrays"
4296 " with indefinite block size."
4297 " The storage size of %q+D cannot be calculated.", decl);
4298 else
4299 error ("In the dynamic translation environment,"
4300 " THREADS must appear exactly once in"
4301 " declarations of shared arrays."
4302 " The storage size of %q+D cannot be calculated.", decl);
4304 else
4305 error ("storage size of %q+D isn%'t constant", decl);
4306 TREE_TYPE (decl) = error_mark_node;
4310 if (TREE_USED (type))
4312 TREE_USED (decl) = 1;
4313 DECL_READ_P (decl) = 1;
4317 /* If this is a function and an assembler name is specified, reset DECL_RTL
4318 so we can give it its new name. Also, update built_in_decls if it
4319 was a normal built-in. */
4320 if (TREE_CODE (decl) == FUNCTION_DECL && asmspec)
4322 if (DECL_BUILT_IN_CLASS (decl) == BUILT_IN_NORMAL)
4323 set_builtin_user_assembler_name (decl, asmspec);
4324 set_user_assembler_name (decl, asmspec);
4327 /* If #pragma weak was used, mark the decl weak now. */
4328 maybe_apply_pragma_weak (decl);
4330 /* Output the assembler code and/or RTL code for variables and functions,
4331 unless the type is an undefined structure or union.
4332 If not, it will get done when the type is completed. */
4334 if (TREE_CODE (decl) == VAR_DECL || TREE_CODE (decl) == FUNCTION_DECL)
4336 /* Determine the ELF visibility. */
4337 if (TREE_PUBLIC (decl))
4338 c_determine_visibility (decl);
4340 /* This is a no-op in c-lang.c or something real in objc-act.c. */
4341 if (c_dialect_objc ())
4342 objc_check_decl (decl);
4344 /* Give UPC a chance to check the declaration. */
4345 if (c_dialect_upc ())
4346 upc_check_decl (decl);
4348 if (asmspec)
4350 /* If this is not a static variable, issue a warning.
4351 It doesn't make any sense to give an ASMSPEC for an
4352 ordinary, non-register local variable. Historically,
4353 GCC has accepted -- but ignored -- the ASMSPEC in
4354 this case. */
4355 if (!DECL_FILE_SCOPE_P (decl)
4356 && TREE_CODE (decl) == VAR_DECL
4357 && !C_DECL_REGISTER (decl)
4358 && !TREE_STATIC (decl))
4359 warning (0, "ignoring asm-specifier for non-static local "
4360 "variable %q+D", decl);
4361 else
4362 set_user_assembler_name (decl, asmspec);
4365 if (DECL_FILE_SCOPE_P (decl))
4367 if (DECL_INITIAL (decl) == NULL_TREE
4368 || DECL_INITIAL (decl) == error_mark_node)
4369 /* Don't output anything
4370 when a tentative file-scope definition is seen.
4371 But at end of compilation, do output code for them. */
4372 DECL_DEFER_OUTPUT (decl) = 1;
4373 rest_of_decl_compilation (decl, true, 0);
4375 else
4377 /* In conjunction with an ASMSPEC, the `register'
4378 keyword indicates that we should place the variable
4379 in a particular register. */
4380 if (asmspec && C_DECL_REGISTER (decl))
4382 DECL_HARD_REGISTER (decl) = 1;
4383 /* This cannot be done for a structure with volatile
4384 fields, on which DECL_REGISTER will have been
4385 reset. */
4386 if (!DECL_REGISTER (decl))
4387 error ("cannot put object with volatile field into register");
4390 if (TREE_CODE (decl) != FUNCTION_DECL)
4392 /* If we're building a variable sized type, and we might be
4393 reachable other than via the top of the current binding
4394 level, then create a new BIND_EXPR so that we deallocate
4395 the object at the right time. */
4396 /* Note that DECL_SIZE can be null due to errors. */
4397 if (DECL_SIZE (decl)
4398 && !TREE_CONSTANT (DECL_SIZE (decl))
4399 && STATEMENT_LIST_HAS_LABEL (cur_stmt_list))
4401 tree bind;
4402 bind = build3 (BIND_EXPR, void_type_node, NULL, NULL, NULL);
4403 TREE_SIDE_EFFECTS (bind) = 1;
4404 add_stmt (bind);
4405 BIND_EXPR_BODY (bind) = push_stmt_list ();
4407 add_stmt (build_stmt (DECL_SOURCE_LOCATION (decl),
4408 DECL_EXPR, decl));
4413 if (!DECL_FILE_SCOPE_P (decl))
4415 /* Recompute the RTL of a local array now
4416 if it used to be an incomplete type. */
4417 if (was_incomplete
4418 && !TREE_STATIC (decl) && !DECL_EXTERNAL (decl))
4420 /* If we used it already as memory, it must stay in memory. */
4421 TREE_ADDRESSABLE (decl) = TREE_USED (decl);
4422 /* If it's still incomplete now, no init will save it. */
4423 if (DECL_SIZE (decl) == 0)
4424 DECL_INITIAL (decl) = 0;
4429 if (TREE_CODE (decl) == TYPE_DECL)
4431 if (!DECL_FILE_SCOPE_P (decl)
4432 && variably_modified_type_p (TREE_TYPE (decl), NULL_TREE))
4433 add_stmt (build_stmt (DECL_SOURCE_LOCATION (decl), DECL_EXPR, decl));
4435 rest_of_decl_compilation (decl, DECL_FILE_SCOPE_P (decl), 0);
4438 /* At the end of a declaration, throw away any variable type sizes
4439 of types defined inside that declaration. There is no use
4440 computing them in the following function definition. */
4441 if (current_scope == file_scope)
4442 get_pending_sizes ();
4444 /* Install a cleanup (aka destructor) if one was given. */
4445 if (TREE_CODE (decl) == VAR_DECL && !TREE_STATIC (decl))
4447 tree attr = lookup_attribute ("cleanup", DECL_ATTRIBUTES (decl));
4448 if (attr)
4450 tree cleanup_id = TREE_VALUE (TREE_VALUE (attr));
4451 tree cleanup_decl = lookup_name (cleanup_id);
4452 tree cleanup;
4453 VEC(tree,gc) *vec;
4455 /* Build "cleanup(&decl)" for the destructor. */
4456 cleanup = build_unary_op (input_location, ADDR_EXPR, decl, 0);
4457 vec = VEC_alloc (tree, gc, 1);
4458 VEC_quick_push (tree, vec, cleanup);
4459 cleanup = build_function_call_vec (DECL_SOURCE_LOCATION (decl),
4460 cleanup_decl, vec, NULL);
4461 VEC_free (tree, gc, vec);
4463 /* Don't warn about decl unused; the cleanup uses it. */
4464 TREE_USED (decl) = 1;
4465 TREE_USED (cleanup_decl) = 1;
4466 DECL_READ_P (decl) = 1;
4468 push_cleanup (decl, cleanup, false);
4472 if (warn_cxx_compat
4473 && TREE_CODE (decl) == VAR_DECL
4474 && !DECL_EXTERNAL (decl)
4475 && DECL_INITIAL (decl) == NULL_TREE)
4477 type = strip_array_types (type);
4478 if (TREE_READONLY (decl))
4479 warning_at (DECL_SOURCE_LOCATION (decl), OPT_Wc___compat,
4480 "uninitialized const %qD is invalid in C++", decl);
4481 else if ((TREE_CODE (type) == RECORD_TYPE
4482 || TREE_CODE (type) == UNION_TYPE)
4483 && C_TYPE_FIELDS_READONLY (type))
4484 diagnose_uninitialized_cst_member (decl, type);
4488 /* Given a parsed parameter declaration, decode it into a PARM_DECL. */
4490 tree
4491 grokparm (const struct c_parm *parm)
4493 tree attrs = parm->attrs;
4494 tree decl = grokdeclarator (parm->declarator, parm->specs, PARM, false,
4495 NULL, &attrs, NULL, NULL, DEPRECATED_NORMAL);
4497 decl_attributes (&decl, attrs, 0);
4499 return decl;
4502 /* Given a parsed parameter declaration, decode it into a PARM_DECL
4503 and push that on the current scope. */
4505 void
4506 push_parm_decl (const struct c_parm *parm)
4508 tree attrs = parm->attrs;
4509 tree decl;
4511 decl = grokdeclarator (parm->declarator, parm->specs, PARM, false, NULL,
4512 &attrs, NULL, NULL, DEPRECATED_NORMAL);
4513 decl_attributes (&decl, attrs, 0);
4515 decl = pushdecl (decl);
4517 finish_decl (decl, input_location, NULL_TREE, NULL_TREE, NULL_TREE);
4520 /* Mark all the parameter declarations to date as forward decls.
4521 Also diagnose use of this extension. */
4523 void
4524 mark_forward_parm_decls (void)
4526 struct c_binding *b;
4528 if (pedantic && !current_scope->warned_forward_parm_decls)
4530 pedwarn (input_location, OPT_pedantic,
4531 "ISO C forbids forward parameter declarations");
4532 current_scope->warned_forward_parm_decls = true;
4535 for (b = current_scope->bindings; b; b = b->prev)
4536 if (TREE_CODE (b->decl) == PARM_DECL)
4537 TREE_ASM_WRITTEN (b->decl) = 1;
4540 /* Build a COMPOUND_LITERAL_EXPR. TYPE is the type given in the compound
4541 literal, which may be an incomplete array type completed by the
4542 initializer; INIT is a CONSTRUCTOR at LOC that initializes the compound
4543 literal. NON_CONST is true if the initializers contain something
4544 that cannot occur in a constant expression. */
4546 tree
4547 build_compound_literal (location_t loc, tree type, tree init, bool non_const)
4549 /* We do not use start_decl here because we have a type, not a declarator;
4550 and do not use finish_decl because the decl should be stored inside
4551 the COMPOUND_LITERAL_EXPR rather than added elsewhere as a DECL_EXPR. */
4552 tree decl;
4553 tree complit;
4554 tree stmt;
4556 if (type == error_mark_node
4557 || init == error_mark_node)
4558 return error_mark_node;
4560 decl = build_decl (loc, VAR_DECL, NULL_TREE, type);
4561 DECL_EXTERNAL (decl) = 0;
4562 TREE_PUBLIC (decl) = 0;
4563 TREE_STATIC (decl) = (current_scope == file_scope);
4564 DECL_CONTEXT (decl) = current_function_decl;
4565 TREE_USED (decl) = 1;
4566 DECL_READ_P (decl) = 1;
4567 TREE_TYPE (decl) = type;
4568 TREE_READONLY (decl) = TYPE_READONLY (type);
4569 store_init_value (loc, decl, init, NULL_TREE);
4571 if (TREE_CODE (type) == ARRAY_TYPE && !COMPLETE_TYPE_P (type))
4573 int failure = complete_array_type (&TREE_TYPE (decl),
4574 DECL_INITIAL (decl), true);
4575 gcc_assert (!failure);
4577 type = TREE_TYPE (decl);
4578 TREE_TYPE (DECL_INITIAL (decl)) = type;
4581 if (type == error_mark_node || !COMPLETE_TYPE_P (type))
4582 return error_mark_node;
4584 stmt = build_stmt (DECL_SOURCE_LOCATION (decl), DECL_EXPR, decl);
4585 complit = build1 (COMPOUND_LITERAL_EXPR, type, stmt);
4586 TREE_SIDE_EFFECTS (complit) = 1;
4588 layout_decl (decl, 0);
4590 if (TREE_STATIC (decl))
4592 /* This decl needs a name for the assembler output. */
4593 set_compound_literal_name (decl);
4594 DECL_DEFER_OUTPUT (decl) = 1;
4595 DECL_COMDAT (decl) = 1;
4596 DECL_ARTIFICIAL (decl) = 1;
4597 DECL_IGNORED_P (decl) = 1;
4598 pushdecl (decl);
4599 rest_of_decl_compilation (decl, 1, 0);
4602 if (non_const)
4604 complit = build2 (C_MAYBE_CONST_EXPR, type, NULL, complit);
4605 C_MAYBE_CONST_EXPR_NON_CONST (complit) = 1;
4608 return complit;
4611 /* Check the type of a compound literal. Here we just check that it
4612 is valid for C++. */
4614 void
4615 check_compound_literal_type (location_t loc, struct c_type_name *type_name)
4617 if (warn_cxx_compat
4618 && (type_name->specs->typespec_kind == ctsk_tagdef
4619 || type_name->specs->typespec_kind == ctsk_tagfirstref))
4620 warning_at (loc, OPT_Wc___compat,
4621 "defining a type in a compound literal is invalid in C++");
4624 /* Determine whether TYPE is a structure with a flexible array member,
4625 or a union containing such a structure (possibly recursively). */
4627 static bool
4628 flexible_array_type_p (tree type)
4630 tree x;
4631 switch (TREE_CODE (type))
4633 case RECORD_TYPE:
4634 x = TYPE_FIELDS (type);
4635 if (x == NULL_TREE)
4636 return false;
4637 while (DECL_CHAIN (x) != NULL_TREE)
4638 x = DECL_CHAIN (x);
4639 if (TREE_CODE (TREE_TYPE (x)) == ARRAY_TYPE
4640 && TYPE_SIZE (TREE_TYPE (x)) == NULL_TREE
4641 && TYPE_DOMAIN (TREE_TYPE (x)) != NULL_TREE
4642 && TYPE_MAX_VALUE (TYPE_DOMAIN (TREE_TYPE (x))) == NULL_TREE)
4643 return true;
4644 return false;
4645 case UNION_TYPE:
4646 for (x = TYPE_FIELDS (type); x != NULL_TREE; x = DECL_CHAIN (x))
4648 if (flexible_array_type_p (TREE_TYPE (x)))
4649 return true;
4651 return false;
4652 default:
4653 return false;
4657 /* Performs sanity checks on the TYPE and WIDTH of the bit-field NAME,
4658 replacing with appropriate values if they are invalid. */
4659 static void
4660 check_bitfield_type_and_width (tree *type, tree *width, tree orig_name)
4662 tree type_mv;
4663 unsigned int max_width;
4664 unsigned HOST_WIDE_INT w;
4665 const char *name = (orig_name
4666 ? identifier_to_locale (IDENTIFIER_POINTER (orig_name))
4667 : _("<anonymous>"));
4669 /* Detect and ignore out of range field width and process valid
4670 field widths. */
4671 if (!INTEGRAL_TYPE_P (TREE_TYPE (*width)))
4673 error ("bit-field %qs width not an integer constant", name);
4674 *width = integer_one_node;
4676 else
4678 if (TREE_CODE (*width) != INTEGER_CST)
4680 *width = c_fully_fold (*width, false, NULL);
4681 if (TREE_CODE (*width) == INTEGER_CST)
4682 pedwarn (input_location, OPT_pedantic,
4683 "bit-field %qs width not an integer constant expression",
4684 name);
4686 if (TREE_CODE (*width) != INTEGER_CST)
4688 error ("bit-field %qs width not an integer constant", name);
4689 *width = integer_one_node;
4691 constant_expression_warning (*width);
4692 if (tree_int_cst_sgn (*width) < 0)
4694 error ("negative width in bit-field %qs", name);
4695 *width = integer_one_node;
4697 else if (integer_zerop (*width) && orig_name)
4699 error ("zero width for bit-field %qs", name);
4700 *width = integer_one_node;
4704 /* Detect invalid bit-field type. */
4705 if (TREE_CODE (*type) != INTEGER_TYPE
4706 && TREE_CODE (*type) != BOOLEAN_TYPE
4707 && TREE_CODE (*type) != ENUMERAL_TYPE)
4709 error ("bit-field %qs has invalid type", name);
4710 *type = unsigned_type_node;
4713 type_mv = TYPE_MAIN_VARIANT (*type);
4714 if (!in_system_header
4715 && type_mv != integer_type_node
4716 && type_mv != unsigned_type_node
4717 && type_mv != boolean_type_node)
4718 pedwarn (input_location, OPT_pedantic,
4719 "type of bit-field %qs is a GCC extension", name);
4721 max_width = TYPE_PRECISION (*type);
4723 if (0 < compare_tree_int (*width, max_width))
4725 error ("width of %qs exceeds its type", name);
4726 w = max_width;
4727 *width = build_int_cst (NULL_TREE, w);
4729 else
4730 w = tree_low_cst (*width, 1);
4732 if (TREE_CODE (*type) == ENUMERAL_TYPE)
4734 struct lang_type *lt = TYPE_LANG_SPECIFIC (*type);
4735 if (!lt
4736 || w < tree_int_cst_min_precision (lt->enum_min, TYPE_UNSIGNED (*type))
4737 || w < tree_int_cst_min_precision (lt->enum_max, TYPE_UNSIGNED (*type)))
4738 warning (0, "%qs is narrower than values of its type", name);
4744 /* Print warning about variable length array if necessary. */
4746 static void
4747 warn_variable_length_array (tree name, tree size)
4749 int const_size = TREE_CONSTANT (size);
4751 if (!flag_isoc99 && pedantic && warn_vla != 0)
4753 if (const_size)
4755 if (name)
4756 pedwarn (input_location, OPT_Wvla,
4757 "ISO C90 forbids array %qE whose size "
4758 "can%'t be evaluated",
4759 name);
4760 else
4761 pedwarn (input_location, OPT_Wvla, "ISO C90 forbids array whose size "
4762 "can%'t be evaluated");
4764 else
4766 if (name)
4767 pedwarn (input_location, OPT_Wvla,
4768 "ISO C90 forbids variable length array %qE",
4769 name);
4770 else
4771 pedwarn (input_location, OPT_Wvla, "ISO C90 forbids variable length array");
4774 else if (warn_vla > 0)
4776 if (const_size)
4778 if (name)
4779 warning (OPT_Wvla,
4780 "the size of array %qE can"
4781 "%'t be evaluated", name);
4782 else
4783 warning (OPT_Wvla,
4784 "the size of array can %'t be evaluated");
4786 else
4788 if (name)
4789 warning (OPT_Wvla,
4790 "variable length array %qE is used",
4791 name);
4792 else
4793 warning (OPT_Wvla,
4794 "variable length array is used");
4799 /* Given a size SIZE that may not be a constant, return a SAVE_EXPR to
4800 serve as the actual size-expression for a type or decl. This is
4801 like variable_size in stor-layout.c, but we make global_bindings_p
4802 return negative to avoid calls to that function from outside the
4803 front end resulting in errors at file scope, then call this version
4804 instead from front-end code. */
4806 static tree
4807 c_variable_size (tree size)
4809 tree save;
4811 if (TREE_CONSTANT (size))
4812 return size;
4814 size = save_expr (size);
4816 save = skip_simple_arithmetic (size);
4818 if (cfun && cfun->dont_save_pending_sizes_p)
4819 return size;
4821 if (!global_bindings_p ())
4822 put_pending_size (save);
4824 return size;
4827 /* Given declspecs and a declarator,
4828 determine the name and type of the object declared
4829 and construct a ..._DECL node for it.
4830 (In one case we can return a ..._TYPE node instead.
4831 For invalid input we sometimes return 0.)
4833 DECLSPECS is a c_declspecs structure for the declaration specifiers.
4835 DECL_CONTEXT says which syntactic context this declaration is in:
4836 NORMAL for most contexts. Make a VAR_DECL or FUNCTION_DECL or TYPE_DECL.
4837 FUNCDEF for a function definition. Like NORMAL but a few different
4838 error messages in each case. Return value may be zero meaning
4839 this definition is too screwy to try to parse.
4840 PARM for a parameter declaration (either within a function prototype
4841 or before a function body). Make a PARM_DECL, or return void_type_node.
4842 TYPENAME if for a typename (in a cast or sizeof).
4843 Don't make a DECL node; just return the ..._TYPE node.
4844 FIELD for a struct or union field; make a FIELD_DECL.
4845 INITIALIZED is true if the decl has an initializer.
4846 WIDTH is non-NULL for bit-fields, and is a pointer to an INTEGER_CST node
4847 representing the width of the bit-field.
4848 DECL_ATTRS points to the list of attributes that should be added to this
4849 decl. Any nested attributes that belong on the decl itself will be
4850 added to this list.
4851 If EXPR is not NULL, any expressions that need to be evaluated as
4852 part of evaluating variably modified types will be stored in *EXPR.
4853 If EXPR_CONST_OPERANDS is not NULL, *EXPR_CONST_OPERANDS will be
4854 set to indicate whether operands in *EXPR can be used in constant
4855 expressions.
4856 DEPRECATED_STATE is a deprecated_states value indicating whether
4857 deprecation warnings should be suppressed.
4859 In the TYPENAME case, DECLARATOR is really an absolute declarator.
4860 It may also be so in the PARM case, for a prototype where the
4861 argument type is specified but not the name.
4863 This function is where the complicated C meanings of `static'
4864 and `extern' are interpreted. */
4866 static tree
4867 grokdeclarator (const struct c_declarator *declarator,
4868 struct c_declspecs *declspecs,
4869 enum decl_context decl_context, bool initialized, tree *width,
4870 tree *decl_attrs, tree *expr, bool *expr_const_operands,
4871 enum deprecated_states deprecated_state)
4873 tree type = declspecs->type;
4874 bool threadp = declspecs->thread_p;
4875 enum c_storage_class storage_class = declspecs->storage_class;
4876 int constp;
4877 int restrictp;
4878 int volatilep;
4879 int sharedp;
4880 int strictp;
4881 int relaxedp;
4882 int type_quals = TYPE_UNQUALIFIED;
4883 tree name = NULL_TREE;
4884 bool funcdef_flag = false;
4885 bool funcdef_syntax = false;
4886 bool size_varies = false;
4887 tree decl_attr = declspecs->decl_attr;
4888 int array_ptr_quals = TYPE_UNQUALIFIED;
4889 tree array_ptr_attrs = NULL_TREE;
4890 int array_parm_static = 0;
4891 bool array_parm_vla_unspec_p = false;
4892 tree returned_attrs = NULL_TREE;
4893 int upc_threads_ref = 0; /* for static declarations of shared arrays */
4894 tree layout_qualifier;
4895 bool bitfield = width != NULL;
4896 tree element_type;
4897 struct c_arg_info *arg_info = 0;
4898 addr_space_t as1, as2, address_space;
4899 location_t loc = UNKNOWN_LOCATION;
4900 const char *errmsg;
4901 tree expr_dummy;
4902 bool expr_const_operands_dummy;
4904 if (TREE_CODE (type) == ERROR_MARK)
4905 return error_mark_node;
4906 if (expr == NULL)
4907 expr = &expr_dummy;
4908 if (expr_const_operands == NULL)
4909 expr_const_operands = &expr_const_operands_dummy;
4911 *expr = declspecs->expr;
4912 *expr_const_operands = declspecs->expr_const_operands;
4914 if (decl_context == FUNCDEF)
4915 funcdef_flag = true, decl_context = NORMAL;
4917 /* Look inside a declarator for the name being declared
4918 and get it as an IDENTIFIER_NODE, for an error message. */
4920 const struct c_declarator *decl = declarator;
4922 while (decl)
4923 switch (decl->kind)
4925 case cdk_array:
4926 loc = decl->id_loc;
4927 /* FALL THRU. */
4929 case cdk_function:
4930 case cdk_pointer:
4931 funcdef_syntax = (decl->kind == cdk_function);
4932 decl = decl->declarator;
4933 break;
4935 case cdk_attrs:
4936 decl = decl->declarator;
4937 break;
4939 case cdk_id:
4940 loc = decl->id_loc;
4941 if (decl->u.id)
4942 name = decl->u.id;
4943 decl = 0;
4944 break;
4946 default:
4947 gcc_unreachable ();
4949 if (name == 0)
4951 gcc_assert (decl_context == PARM
4952 || decl_context == TYPENAME
4953 || (decl_context == FIELD
4954 && declarator->kind == cdk_id));
4955 gcc_assert (!initialized);
4959 /* A function definition's declarator must have the form of
4960 a function declarator. */
4962 if (funcdef_flag && !funcdef_syntax)
4963 return 0;
4965 /* If this looks like a function definition, make it one,
4966 even if it occurs where parms are expected.
4967 Then store_parm_decls will reject it and not use it as a parm. */
4968 if (decl_context == NORMAL && !funcdef_flag && current_scope->parm_flag)
4969 decl_context = PARM;
4971 if (declspecs->deprecated_p && deprecated_state != DEPRECATED_SUPPRESS)
4972 warn_deprecated_use (declspecs->type, declspecs->decl_attr);
4974 if ((decl_context == NORMAL || decl_context == FIELD)
4975 && current_scope == file_scope
4976 && variably_modified_type_p (type, NULL_TREE))
4978 if (name)
4979 error_at (loc, "variably modified %qE at file scope", name);
4980 else
4981 error_at (loc, "variably modified field at file scope");
4982 type = integer_type_node;
4985 size_varies = C_TYPE_VARIABLE_SIZE (type) != 0;
4987 upc_threads_ref = UPC_TYPE_HAS_THREADS_FACTOR (type);
4989 /* Diagnose defaulting to "int". */
4991 if (declspecs->default_int_p && !in_system_header)
4993 /* Issue a warning if this is an ISO C 99 program or if
4994 -Wreturn-type and this is a function, or if -Wimplicit;
4995 prefer the former warning since it is more explicit. */
4996 if ((warn_implicit_int || warn_return_type || flag_isoc99)
4997 && funcdef_flag)
4998 warn_about_return_type = 1;
4999 else
5001 if (name)
5002 pedwarn_c99 (loc, flag_isoc99 ? 0 : OPT_Wimplicit_int,
5003 "type defaults to %<int%> in declaration of %qE",
5004 name);
5005 else
5006 pedwarn_c99 (input_location, flag_isoc99 ? 0 : OPT_Wimplicit_int,
5007 "type defaults to %<int%> in type name");
5011 /* Adjust the type if a bit-field is being declared,
5012 -funsigned-bitfields applied and the type is not explicitly
5013 "signed". */
5014 if (bitfield && !flag_signed_bitfields && !declspecs->explicit_signed_p
5015 && TREE_CODE (type) == INTEGER_TYPE)
5016 type = unsigned_type_for (type);
5018 /* Figure out the type qualifiers for the declaration. There are
5019 two ways a declaration can become qualified. One is something
5020 like `const int i' where the `const' is explicit. Another is
5021 something like `typedef const int CI; CI i' where the type of the
5022 declaration contains the `const'. A third possibility is that
5023 there is a type qualifier on the element type of a typedefed
5024 array type, in which case we should extract that qualifier so
5025 that c_apply_type_quals_to_decl receives the full list of
5026 qualifiers to work with (C90 is not entirely clear about whether
5027 duplicate qualifiers should be diagnosed in this case, but it
5028 seems most appropriate to do so). */
5029 element_type = strip_array_types (type);
5030 constp = declspecs->const_p + TYPE_READONLY (element_type);
5031 restrictp = declspecs->restrict_p + TYPE_RESTRICT (element_type);
5032 volatilep = declspecs->volatile_p + TYPE_VOLATILE (element_type);
5033 sharedp = declspecs->shared_p + upc_shared_type_p (element_type);
5034 strictp = declspecs->strict_p + TYPE_STRICT (element_type);
5035 relaxedp = declspecs->relaxed_p + TYPE_RELAXED (element_type);
5036 layout_qualifier = declspecs->upc_layout_qualifier;
5037 if (TYPE_SHARED (element_type) && TYPE_BLOCK_FACTOR (element_type))
5039 if (!layout_qualifier)
5040 layout_qualifier = build4 (ARRAY_REF, NULL_TREE, NULL_TREE,
5041 TYPE_BLOCK_FACTOR (element_type),
5042 NULL_TREE, NULL_TREE);
5043 else
5045 tree t = build_variant_type_copy (element_type);
5046 TYPE_BLOCK_FACTOR (t) = NULL_TREE;
5047 t = upc_set_block_factor (TREE_CODE (t), t, layout_qualifier);
5048 if (t != NULL_TREE && t != error_mark_node)
5050 const tree b1 = upc_get_block_factor (element_type);
5051 const tree b2 = upc_get_block_factor (t);
5052 if (!tree_int_cst_equal (b1, b2))
5054 error_at (loc, "UPC layout qualifier is incompatible with"
5055 " the type specified by a typedef");
5056 layout_qualifier = NULL_TREE;
5061 as1 = declspecs->address_space;
5062 as2 = TYPE_ADDR_SPACE (element_type);
5063 address_space = ADDR_SPACE_GENERIC_P (as1)? as2 : as1;
5065 if (pedantic && !flag_isoc99)
5067 if (constp > 1)
5068 pedwarn (loc, OPT_pedantic, "duplicate %<const%>");
5069 if (restrictp > 1)
5070 pedwarn (loc, OPT_pedantic, "duplicate %<restrict%>");
5071 if (volatilep > 1)
5072 pedwarn (loc, OPT_pedantic, "duplicate %<volatile%>");
5073 if (sharedp > 1)
5074 pedwarn (loc, OPT_pedantic, "duplicate %<shared%>");
5075 if (strictp > 1)
5076 pedwarn (loc, OPT_pedantic, "duplicate %<strict%>");
5077 if (relaxedp > 1)
5078 pedwarn (loc, OPT_pedantic, "duplicate %<relaxed%>");
5080 if (strictp && relaxedp)
5081 error_at (loc, "%qE is declared both strict and relaxed.", name);
5082 if (strictp && !sharedp)
5083 error_at (loc, "%qE is declared strict but not shared.", name);
5084 if (relaxedp && !sharedp)
5085 error_at (loc, "%qE is declared relaxed but not shared.", name);
5087 if (!ADDR_SPACE_GENERIC_P (as1) && !ADDR_SPACE_GENERIC_P (as2) && as1 != as2)
5088 error_at (loc, "conflicting named address spaces (%s vs %s)",
5089 c_addr_space_name (as1), c_addr_space_name (as2));
5091 if (!flag_gen_aux_info && (TYPE_QUALS (element_type)))
5092 type = TYPE_MAIN_VARIANT (type);
5093 type_quals = ((constp ? TYPE_QUAL_CONST : 0)
5094 | (restrictp ? TYPE_QUAL_RESTRICT : 0)
5095 | (volatilep ? TYPE_QUAL_VOLATILE : 0)
5096 | (sharedp ? TYPE_QUAL_SHARED : 0)
5097 | (strictp ? TYPE_QUAL_STRICT : 0)
5098 | (relaxedp ? TYPE_QUAL_RELAXED : 0)
5099 | ENCODE_QUAL_ADDR_SPACE (address_space));
5101 /* Warn about storage classes that are invalid for certain
5102 kinds of declarations (parameters, typenames, etc.). */
5104 if (funcdef_flag
5105 && (threadp
5106 || storage_class == csc_auto
5107 || storage_class == csc_register
5108 || storage_class == csc_typedef))
5110 if (storage_class == csc_auto)
5111 pedwarn (loc,
5112 (current_scope == file_scope) ? 0 : OPT_pedantic,
5113 "function definition declared %<auto%>");
5114 if (storage_class == csc_register)
5115 error_at (loc, "function definition declared %<register%>");
5116 if (storage_class == csc_typedef)
5117 error_at (loc, "function definition declared %<typedef%>");
5118 if (threadp)
5119 error_at (loc, "function definition declared %<__thread%>");
5120 threadp = false;
5121 if (storage_class == csc_auto
5122 || storage_class == csc_register
5123 || storage_class == csc_typedef)
5124 storage_class = csc_none;
5126 else if (decl_context != NORMAL && (storage_class != csc_none || threadp))
5128 if (decl_context == PARM && storage_class == csc_register)
5130 else
5132 switch (decl_context)
5134 case FIELD:
5135 if (name)
5136 error_at (loc, "storage class specified for structure "
5137 "field %qE", name);
5138 else
5139 error_at (loc, "storage class specified for structure field");
5140 break;
5141 case PARM:
5142 if (name)
5143 error_at (loc, "storage class specified for parameter %qE",
5144 name);
5145 else
5146 error_at (loc, "storage class specified for unnamed parameter");
5147 break;
5148 default:
5149 error_at (loc, "storage class specified for typename");
5150 break;
5152 storage_class = csc_none;
5153 threadp = false;
5156 else if (storage_class == csc_extern
5157 && initialized
5158 && !funcdef_flag)
5160 /* 'extern' with initialization is invalid if not at file scope. */
5161 if (current_scope == file_scope)
5163 /* It is fine to have 'extern const' when compiling at C
5164 and C++ intersection. */
5165 if (!(warn_cxx_compat && constp))
5166 warning_at (loc, 0, "%qE initialized and declared %<extern%>",
5167 name);
5169 else
5170 error_at (loc, "%qE has both %<extern%> and initializer", name);
5172 else if (current_scope == file_scope)
5174 if (storage_class == csc_auto)
5175 error_at (loc, "file-scope declaration of %qE specifies %<auto%>",
5176 name);
5177 if (pedantic && storage_class == csc_register)
5178 pedwarn (input_location, OPT_pedantic,
5179 "file-scope declaration of %qE specifies %<register%>", name);
5181 else
5183 if (storage_class == csc_extern && funcdef_flag)
5184 error_at (loc, "nested function %qE declared %<extern%>", name);
5185 else if (threadp && storage_class == csc_none)
5187 error_at (loc, "function-scope %qE implicitly auto and declared "
5188 "%<__thread%>",
5189 name);
5190 threadp = false;
5194 /* Now figure out the structure of the declarator proper.
5195 Descend through it, creating more complex types, until we reach
5196 the declared identifier (or NULL_TREE, in an absolute declarator).
5197 At each stage we maintain an unqualified version of the type
5198 together with any qualifiers that should be applied to it with
5199 c_build_qualified_type; this way, array types including
5200 multidimensional array types are first built up in unqualified
5201 form and then the qualified form is created with
5202 TYPE_MAIN_VARIANT pointing to the unqualified form. */
5204 while (declarator && declarator->kind != cdk_id)
5206 if (type == error_mark_node)
5208 declarator = declarator->declarator;
5209 continue;
5212 /* Each level of DECLARATOR is either a cdk_array (for ...[..]),
5213 a cdk_pointer (for *...),
5214 a cdk_function (for ...(...)),
5215 a cdk_attrs (for nested attributes),
5216 or a cdk_id (for the name being declared
5217 or the place in an absolute declarator
5218 where the name was omitted).
5219 For the last case, we have just exited the loop.
5221 At this point, TYPE is the type of elements of an array,
5222 or for a function to return, or for a pointer to point to.
5223 After this sequence of ifs, TYPE is the type of the
5224 array or function or pointer, and DECLARATOR has had its
5225 outermost layer removed. */
5227 if (array_ptr_quals != TYPE_UNQUALIFIED
5228 || array_ptr_attrs != NULL_TREE
5229 || array_parm_static)
5231 /* Only the innermost declarator (making a parameter be of
5232 array type which is converted to pointer type)
5233 may have static or type qualifiers. */
5234 error_at (loc, "static or type qualifiers in non-parameter array declarator");
5235 array_ptr_quals = TYPE_UNQUALIFIED;
5236 array_ptr_attrs = NULL_TREE;
5237 array_parm_static = 0;
5240 switch (declarator->kind)
5242 case cdk_attrs:
5244 /* A declarator with embedded attributes. */
5245 tree attrs = declarator->u.attrs;
5246 const struct c_declarator *inner_decl;
5247 int attr_flags = 0;
5248 declarator = declarator->declarator;
5249 inner_decl = declarator;
5250 while (inner_decl->kind == cdk_attrs)
5251 inner_decl = inner_decl->declarator;
5252 if (inner_decl->kind == cdk_id)
5253 attr_flags |= (int) ATTR_FLAG_DECL_NEXT;
5254 else if (inner_decl->kind == cdk_function)
5255 attr_flags |= (int) ATTR_FLAG_FUNCTION_NEXT;
5256 else if (inner_decl->kind == cdk_array)
5257 attr_flags |= (int) ATTR_FLAG_ARRAY_NEXT;
5258 returned_attrs = decl_attributes (&type,
5259 chainon (returned_attrs, attrs),
5260 attr_flags);
5261 break;
5263 case cdk_array:
5265 tree itype = NULL_TREE;
5266 tree size = declarator->u.array.dimen;
5267 /* The index is a signed object `sizetype' bits wide. */
5268 tree index_type = c_common_signed_type (sizetype);
5270 array_ptr_quals = declarator->u.array.quals;
5271 array_ptr_attrs = declarator->u.array.attrs;
5272 array_parm_static = declarator->u.array.static_p;
5273 array_parm_vla_unspec_p = declarator->u.array.vla_unspec_p;
5275 declarator = declarator->declarator;
5277 /* Check for some types that there cannot be arrays of. */
5279 if (VOID_TYPE_P (type))
5281 if (name)
5282 error_at (loc, "declaration of %qE as array of voids", name);
5283 else
5284 error_at (loc, "declaration of type name as array of voids");
5285 type = error_mark_node;
5288 if (TREE_CODE (type) == FUNCTION_TYPE)
5290 if (name)
5291 error_at (loc, "declaration of %qE as array of functions",
5292 name);
5293 else
5294 error_at (loc, "declaration of type name as array of "
5295 "functions");
5296 type = error_mark_node;
5299 if (pedantic && !in_system_header && flexible_array_type_p (type))
5300 pedwarn (loc, OPT_pedantic,
5301 "invalid use of structure with flexible array member");
5303 if (size == error_mark_node)
5304 type = error_mark_node;
5306 if (type == error_mark_node)
5307 continue;
5309 /* If size was specified, set ITYPE to a range-type for
5310 that size. Otherwise, ITYPE remains null. finish_decl
5311 may figure it out from an initial value. */
5313 if (size)
5315 bool size_maybe_const = true;
5316 bool size_int_const = (TREE_CODE (size) == INTEGER_CST
5317 && !TREE_OVERFLOW (size));
5318 bool this_size_varies = false;
5320 /* Strip NON_LVALUE_EXPRs since we aren't using as an
5321 lvalue. */
5322 STRIP_TYPE_NOPS (size);
5324 if (!INTEGRAL_TYPE_P (TREE_TYPE (size)))
5326 if (name)
5327 error_at (loc, "size of array %qE has non-integer type",
5328 name);
5329 else
5330 error_at (loc,
5331 "size of unnamed array has non-integer type");
5332 size = integer_one_node;
5335 size = c_fully_fold (size, false, &size_maybe_const);
5337 if (pedantic && size_maybe_const && integer_zerop (size))
5339 if (name)
5340 pedwarn (loc, OPT_pedantic,
5341 "ISO C forbids zero-size array %qE", name);
5342 else
5343 pedwarn (loc, OPT_pedantic,
5344 "ISO C forbids zero-size array");
5347 if (TREE_CODE (size) == INTEGER_CST && size_maybe_const)
5349 constant_expression_warning (size);
5350 if (tree_int_cst_sgn (size) < 0)
5352 if (name)
5353 error_at (loc, "size of array %qE is negative", name);
5354 else
5355 error_at (loc, "size of unnamed array is negative");
5356 size = integer_one_node;
5358 /* Handle a size folded to an integer constant but
5359 not an integer constant expression. */
5360 if (!size_int_const)
5362 /* If this is a file scope declaration of an
5363 ordinary identifier, this is invalid code;
5364 diagnosing it here and not subsequently
5365 treating the type as variable-length avoids
5366 more confusing diagnostics later. */
5367 if ((decl_context == NORMAL || decl_context == FIELD)
5368 && current_scope == file_scope)
5369 pedwarn (input_location, 0,
5370 "variably modified %qE at file scope",
5371 name);
5372 else
5373 this_size_varies = size_varies = true;
5374 warn_variable_length_array (name, size);
5377 else if (sharedp && count_upc_threads_refs (size))
5379 /* We have a shared array with a non-constant
5380 dimension. If the expression is a factor of
5381 THREADS, then we'll need to set the flag
5382 in the result type. Otherwise, it is an error. */
5383 int n_thread_refs = count_upc_threads_refs (size);
5384 if (upc_threads_ref || n_thread_refs > 1)
5386 error_at (loc, "THREADS may not be referenced more than once"
5387 " in a shared array declaration."
5388 " The size of %qE cannot be calculated.", name);
5389 size = integer_one_node;
5391 else if (!is_multiple_of_upc_threads (size))
5393 error_at (loc, "Array dimension is not a simple multiple"
5394 " of THREADS.",
5395 " The size of %qE cannot be calculated.", name);
5396 size = integer_one_node;
5398 else
5400 upc_threads_ref = 1;
5401 set_upc_threads_refs_to_one (&size);
5402 size = fold (size);
5403 if (TREE_CODE (size) != INTEGER_CST)
5405 error_at (loc, "UPC forbids variable-size shared array %qE",
5406 name);
5407 size = integer_one_node;
5411 else if ((decl_context == NORMAL || decl_context == FIELD)
5412 && current_scope == file_scope)
5414 error_at (loc, "variably modified %qE at file scope", name);
5415 size = integer_one_node;
5417 else
5419 /* Make sure the array size remains visibly
5420 nonconstant even if it is (eg) a const variable
5421 with known value. */
5422 this_size_varies = size_varies = true;
5423 warn_variable_length_array (name, size);
5426 if (integer_zerop (size) && !this_size_varies)
5428 /* A zero-length array cannot be represented with
5429 an unsigned index type, which is what we'll
5430 get with build_index_type. Create an
5431 open-ended range instead. */
5432 itype = build_range_type (sizetype, size, NULL_TREE);
5434 else
5436 /* Arrange for the SAVE_EXPR on the inside of the
5437 MINUS_EXPR, which allows the -1 to get folded
5438 with the +1 that happens when building TYPE_SIZE. */
5439 if (size_varies)
5440 size = c_variable_size (size);
5441 if (this_size_varies && TREE_CODE (size) == INTEGER_CST)
5442 size = build2 (COMPOUND_EXPR, TREE_TYPE (size),
5443 integer_zero_node, size);
5445 /* Compute the maximum valid index, that is, size
5446 - 1. Do the calculation in index_type, so that
5447 if it is a variable the computations will be
5448 done in the proper mode. */
5449 itype = fold_build2_loc (loc, MINUS_EXPR, index_type,
5450 convert (index_type, size),
5451 convert (index_type,
5452 size_one_node));
5454 /* If that overflowed, the array is too big. ???
5455 While a size of INT_MAX+1 technically shouldn't
5456 cause an overflow (because we subtract 1), the
5457 overflow is recorded during the conversion to
5458 index_type, before the subtraction. Handling
5459 this case seems like an unnecessary
5460 complication. */
5461 if (TREE_CODE (itype) == INTEGER_CST
5462 && TREE_OVERFLOW (itype))
5464 if (name)
5465 error_at (loc, "size of array %qE is too large",
5466 name);
5467 else
5468 error_at (loc, "size of unnamed array is too large");
5469 type = error_mark_node;
5470 continue;
5473 itype = build_index_type (itype);
5475 if (this_size_varies)
5477 if (*expr)
5478 *expr = build2 (COMPOUND_EXPR, TREE_TYPE (size),
5479 *expr, size);
5480 else
5481 *expr = size;
5482 *expr_const_operands &= size_maybe_const;
5485 else if (decl_context == FIELD)
5487 bool flexible_array_member = false;
5488 if (array_parm_vla_unspec_p)
5489 /* Field names can in fact have function prototype
5490 scope so [*] is disallowed here through making
5491 the field variably modified, not through being
5492 something other than a declaration with function
5493 prototype scope. */
5494 size_varies = true;
5495 else
5497 const struct c_declarator *t = declarator;
5498 while (t->kind == cdk_attrs)
5499 t = t->declarator;
5500 flexible_array_member = (t->kind == cdk_id);
5502 if (flexible_array_member
5503 && pedantic && !flag_isoc99 && !in_system_header)
5504 pedwarn (loc, OPT_pedantic,
5505 "ISO C90 does not support flexible array members");
5507 /* ISO C99 Flexible array members are effectively
5508 identical to GCC's zero-length array extension. */
5509 if (flexible_array_member || array_parm_vla_unspec_p)
5510 itype = build_range_type (sizetype, size_zero_node,
5511 NULL_TREE);
5513 else if (decl_context == PARM)
5515 if (array_parm_vla_unspec_p)
5517 itype = build_range_type (sizetype, size_zero_node, NULL_TREE);
5518 size_varies = true;
5521 else if (decl_context == TYPENAME)
5523 if (array_parm_vla_unspec_p)
5525 /* C99 6.7.5.2p4 */
5526 warning (0, "%<[*]%> not in a declaration");
5527 /* We use this to avoid messing up with incomplete
5528 array types of the same type, that would
5529 otherwise be modified below. */
5530 itype = build_range_type (sizetype, size_zero_node,
5531 NULL_TREE);
5532 size_varies = true;
5536 /* Complain about arrays of incomplete types. */
5537 if (!COMPLETE_TYPE_P (type))
5539 error_at (loc, "array type has incomplete element type");
5540 type = error_mark_node;
5542 else
5543 /* When itype is NULL, a shared incomplete array type is
5544 returned for all array of a given type. Elsewhere we
5545 make sure we don't complete that type before copying
5546 it, but here we want to make sure we don't ever
5547 modify the shared type, so we gcc_assert (itype)
5548 below. */
5550 addr_space_t as = DECODE_QUAL_ADDR_SPACE (type_quals);
5551 if (!ADDR_SPACE_GENERIC_P (as) && as != TYPE_ADDR_SPACE (type))
5552 type = build_qualified_type (type,
5553 ENCODE_QUAL_ADDR_SPACE (as));
5555 type = build_array_type (type, itype);
5558 if (type != error_mark_node)
5560 if (size_varies)
5562 /* It is ok to modify type here even if itype is
5563 NULL: if size_varies, we're in a
5564 multi-dimensional array and the inner type has
5565 variable size, so the enclosing shared array type
5566 must too. */
5567 if (size && TREE_CODE (size) == INTEGER_CST)
5568 type
5569 = build_distinct_type_copy (TYPE_MAIN_VARIANT (type));
5570 C_TYPE_VARIABLE_SIZE (type) = 1;
5573 if (upc_threads_ref)
5575 /* We need a unique type copy here for UPC shared
5576 array types compiled in a dynamic threads enviroment
5577 that reference THREADS as a multiplier; to avoid
5578 setting the "has threads factor" bit in
5579 a re-used non- UPC shared array type node. */
5580 if (size && TREE_CODE (size) == INTEGER_CST)
5581 type = build_distinct_type_copy (TYPE_MAIN_VARIANT (type));
5582 UPC_TYPE_HAS_THREADS_FACTOR (type) = 1;
5585 /* The GCC extension for zero-length arrays differs from
5586 ISO flexible array members in that sizeof yields
5587 zero. */
5588 if (size && integer_zerop (size))
5590 gcc_assert (itype);
5591 type = build_distinct_type_copy (TYPE_MAIN_VARIANT (type));
5592 TYPE_SIZE (type) = bitsize_zero_node;
5593 TYPE_SIZE_UNIT (type) = size_zero_node;
5594 SET_TYPE_STRUCTURAL_EQUALITY (type);
5596 if (array_parm_vla_unspec_p)
5598 gcc_assert (itype);
5599 /* The type is complete. C99 6.7.5.2p4 */
5600 type = build_distinct_type_copy (TYPE_MAIN_VARIANT (type));
5601 TYPE_SIZE (type) = bitsize_zero_node;
5602 TYPE_SIZE_UNIT (type) = size_zero_node;
5603 SET_TYPE_STRUCTURAL_EQUALITY (type);
5607 if (decl_context != PARM
5608 && (array_ptr_quals != TYPE_UNQUALIFIED
5609 || array_ptr_attrs != NULL_TREE
5610 || array_parm_static))
5612 error_at (loc, "static or type qualifiers in non-parameter array declarator");
5613 array_ptr_quals = TYPE_UNQUALIFIED;
5614 array_ptr_attrs = NULL_TREE;
5615 array_parm_static = 0;
5617 break;
5619 case cdk_function:
5621 /* Say it's a definition only for the declarator closest
5622 to the identifier, apart possibly from some
5623 attributes. */
5624 bool really_funcdef = false;
5625 tree arg_types;
5626 if (funcdef_flag)
5628 const struct c_declarator *t = declarator->declarator;
5629 while (t->kind == cdk_attrs)
5630 t = t->declarator;
5631 really_funcdef = (t->kind == cdk_id);
5634 /* Declaring a function type. Make sure we have a valid
5635 type for the function to return. */
5636 if (type == error_mark_node)
5637 continue;
5639 size_varies = false;
5640 upc_threads_ref = 0;
5641 layout_qualifier = 0;
5643 /* Warn about some types functions can't return. */
5644 if (TREE_CODE (type) == FUNCTION_TYPE)
5646 if (name)
5647 error_at (loc, "%qE declared as function returning a "
5648 "function", name);
5649 else
5650 error_at (loc, "type name declared as function "
5651 "returning a function");
5652 type = integer_type_node;
5654 if (TREE_CODE (type) == ARRAY_TYPE)
5656 if (name)
5657 error_at (loc, "%qE declared as function returning an array",
5658 name);
5659 else
5660 error_at (loc, "type name declared as function returning "
5661 "an array");
5662 type = integer_type_node;
5664 errmsg = targetm.invalid_return_type (type);
5665 if (errmsg)
5667 error (errmsg);
5668 type = integer_type_node;
5671 /* Construct the function type and go to the next
5672 inner layer of declarator. */
5673 arg_info = declarator->u.arg_info;
5674 arg_types = grokparms (arg_info, really_funcdef);
5675 if (really_funcdef)
5676 put_pending_sizes (arg_info->pending_sizes);
5678 /* Type qualifiers before the return type of the function
5679 qualify the return type, not the function type. */
5680 if (type_quals)
5682 /* Type qualifiers on a function return type are
5683 normally permitted by the standard but have no
5684 effect, so give a warning at -Wreturn-type.
5685 Qualifiers on a void return type are banned on
5686 function definitions in ISO C; GCC used to used
5687 them for noreturn functions. */
5688 if (VOID_TYPE_P (type) && really_funcdef)
5689 pedwarn (loc, 0,
5690 "function definition has qualified void return type");
5691 else if (type_quals & TYPE_QUAL_SHARED)
5693 error_at (loc, "function definition has shared qualified return type");
5694 type_quals &= ~(TYPE_QUAL_SHARED | TYPE_QUAL_STRICT
5695 | TYPE_QUAL_RELAXED);
5697 else
5698 warning_at (loc, OPT_Wignored_qualifiers,
5699 "type qualifiers ignored on function return type");
5701 type = c_build_qualified_type (type, type_quals);
5703 type_quals = TYPE_UNQUALIFIED;
5705 type = build_function_type (type, arg_types);
5706 declarator = declarator->declarator;
5708 /* Set the TYPE_CONTEXTs for each tagged type which is local to
5709 the formal parameter list of this FUNCTION_TYPE to point to
5710 the FUNCTION_TYPE node itself. */
5712 c_arg_tag *tag;
5713 unsigned ix;
5715 FOR_EACH_VEC_ELT_REVERSE (c_arg_tag, arg_info->tags, ix, tag)
5716 TYPE_CONTEXT (tag->type) = type;
5718 break;
5720 case cdk_pointer:
5722 /* Merge any constancy or volatility into the target type
5723 for the pointer. */
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);
5732 /* Add UPC-defined block size, if supplied */
5733 if (layout_qualifier)
5734 type = upc_set_block_factor (POINTER_TYPE, type, layout_qualifier);
5736 size_varies = false;
5737 upc_threads_ref = 0;
5738 layout_qualifier = 0;
5740 /* When the pointed-to type involves components of variable size,
5741 care must be taken to ensure that the size evaluation code is
5742 emitted early enough to dominate all the possible later uses
5743 and late enough for the variables on which it depends to have
5744 been assigned.
5746 This is expected to happen automatically when the pointed-to
5747 type has a name/declaration of it's own, but special attention
5748 is required if the type is anonymous.
5750 We handle the NORMAL and FIELD contexts here by attaching an
5751 artificial TYPE_DECL to such pointed-to type. This forces the
5752 sizes evaluation at a safe point and ensures it is not deferred
5753 until e.g. within a deeper conditional context.
5755 We expect nothing to be needed here for PARM or TYPENAME.
5756 Pushing a TYPE_DECL at this point for TYPENAME would actually
5757 be incorrect, as we might be in the middle of an expression
5758 with side effects on the pointed-to type size "arguments" prior
5759 to the pointer declaration point and the fake TYPE_DECL in the
5760 enclosing context would force the size evaluation prior to the
5761 side effects. */
5763 if (!TYPE_NAME (type)
5764 && (decl_context == NORMAL || decl_context == FIELD)
5765 && variably_modified_type_p (type, NULL_TREE))
5767 tree decl = build_decl (loc, TYPE_DECL, NULL_TREE, type);
5768 DECL_ARTIFICIAL (decl) = 1;
5769 pushdecl (decl);
5770 finish_decl (decl, loc, NULL_TREE, NULL_TREE, NULL_TREE);
5771 TYPE_NAME (type) = decl;
5774 type = build_pointer_type (type);
5776 /* Process type qualifiers (such as const or volatile)
5777 that were given inside the `*'. */
5778 type_quals = declarator->u.pointer.quals;
5779 layout_qualifier = declarator->u.pointer.upc_layout_qual;
5780 sharedp = ((type_quals & TYPE_QUAL_SHARED) != 0);
5782 declarator = declarator->declarator;
5783 break;
5785 default:
5786 gcc_unreachable ();
5789 *decl_attrs = chainon (returned_attrs, *decl_attrs);
5791 /* Now TYPE has the actual type, apart from any qualifiers in
5792 TYPE_QUALS. */
5794 /* Warn about address space used for things other than static memory or
5795 pointers. */
5796 address_space = DECODE_QUAL_ADDR_SPACE (type_quals);
5797 if (!ADDR_SPACE_GENERIC_P (address_space))
5799 if (decl_context == NORMAL)
5801 switch (storage_class)
5803 case csc_auto:
5804 error ("%qs combined with %<auto%> qualifier for %qE",
5805 c_addr_space_name (address_space), name);
5806 break;
5807 case csc_register:
5808 error ("%qs combined with %<register%> qualifier for %qE",
5809 c_addr_space_name (address_space), name);
5810 break;
5811 case csc_none:
5812 if (current_function_scope)
5814 error ("%qs specified for auto variable %qE",
5815 c_addr_space_name (address_space), name);
5816 break;
5818 break;
5819 case csc_static:
5820 case csc_extern:
5821 case csc_typedef:
5822 break;
5823 default:
5824 gcc_unreachable ();
5827 else if (decl_context == PARM && TREE_CODE (type) != ARRAY_TYPE)
5829 if (name)
5830 error ("%qs specified for parameter %qE",
5831 c_addr_space_name (address_space), name);
5832 else
5833 error ("%qs specified for unnamed parameter",
5834 c_addr_space_name (address_space));
5836 else if (decl_context == FIELD)
5838 if (name)
5839 error ("%qs specified for structure field %qE",
5840 c_addr_space_name (address_space), name);
5841 else
5842 error ("%qs specified for structure field",
5843 c_addr_space_name (address_space));
5847 /* Check the type and width of a bit-field. */
5848 if (bitfield)
5849 check_bitfield_type_and_width (&type, width, name);
5851 /* Check for UPC's layout qualifier. */
5852 if (layout_qualifier)
5854 type = upc_set_block_factor (TREE_CODE (type), type, layout_qualifier);
5855 layout_qualifier = 0;
5858 /* Did array size calculations overflow? */
5860 if (TREE_CODE (type) == ARRAY_TYPE
5861 && COMPLETE_TYPE_P (type)
5862 && TREE_CODE (TYPE_SIZE_UNIT (type)) == INTEGER_CST
5863 && TREE_OVERFLOW (TYPE_SIZE_UNIT (type)))
5865 if (name)
5866 error_at (loc, "size of array %qE is too large", name);
5867 else
5868 error_at (loc, "size of unnamed array is too large");
5869 /* If we proceed with the array type as it is, we'll eventually
5870 crash in tree_low_cst(). */
5871 type = error_mark_node;
5874 /* If this is declaring a typedef name, return a TYPE_DECL. */
5876 if (storage_class == csc_typedef)
5878 tree decl;
5879 if (pedantic && TREE_CODE (type) == FUNCTION_TYPE
5880 && type_quals)
5881 pedwarn (loc, OPT_pedantic,
5882 "ISO C forbids qualified function types");
5883 if (type_quals)
5884 type = c_build_qualified_type (type, type_quals);
5886 /* Add UPC-defined block size, if supplied */
5887 if (layout_qualifier)
5888 type = upc_set_block_factor (TYPE_DECL, type, layout_qualifier);
5890 decl = build_decl (declarator->id_loc,
5891 TYPE_DECL, declarator->u.id, type);
5892 if (declspecs->explicit_signed_p)
5893 C_TYPEDEF_EXPLICITLY_SIGNED (decl) = 1;
5894 if (declspecs->inline_p)
5895 pedwarn (loc, 0,"typedef %q+D declared %<inline%>", decl);
5897 if (warn_cxx_compat && declarator->u.id != NULL_TREE)
5899 struct c_binding *b = I_TAG_BINDING (declarator->u.id);
5901 if (b != NULL
5902 && b->decl != NULL_TREE
5903 && (B_IN_CURRENT_SCOPE (b)
5904 || (current_scope == file_scope && B_IN_EXTERNAL_SCOPE (b)))
5905 && TYPE_MAIN_VARIANT (b->decl) != TYPE_MAIN_VARIANT (type))
5907 warning_at (declarator->id_loc, OPT_Wc___compat,
5908 ("using %qD as both a typedef and a tag is "
5909 "invalid in C++"),
5910 decl);
5911 if (b->locus != UNKNOWN_LOCATION)
5912 inform (b->locus, "originally defined here");
5916 return decl;
5919 /* If this is a type name (such as, in a cast or sizeof),
5920 compute the type and return it now. */
5922 if (decl_context == TYPENAME)
5924 /* Note that the grammar rejects storage classes in typenames
5925 and fields. */
5926 gcc_assert (storage_class == csc_none && !threadp
5927 && !declspecs->inline_p);
5928 if (pedantic && TREE_CODE (type) == FUNCTION_TYPE
5929 && type_quals)
5930 pedwarn (loc, OPT_pedantic,
5931 "ISO C forbids const or volatile function types");
5932 if (type_quals)
5933 type = c_build_qualified_type (type, type_quals);
5934 return type;
5937 if (pedantic && decl_context == FIELD
5938 && variably_modified_type_p (type, NULL_TREE))
5940 /* C99 6.7.2.1p8 */
5941 pedwarn (loc, OPT_pedantic, "a member of a structure or union cannot "
5942 "have a variably modified type");
5945 /* Aside from typedefs and type names (handle above),
5946 `void' at top level (not within pointer)
5947 is allowed only in public variables.
5948 We don't complain about parms either, but that is because
5949 a better error message can be made later. */
5951 if (VOID_TYPE_P (type) && decl_context != PARM
5952 && !((decl_context != FIELD && TREE_CODE (type) != FUNCTION_TYPE)
5953 && (storage_class == csc_extern
5954 || (current_scope == file_scope
5955 && !(storage_class == csc_static
5956 || storage_class == csc_register)))))
5958 error_at (loc, "variable or field %qE declared void", name);
5959 type = integer_type_node;
5962 /* Now create the decl, which may be a VAR_DECL, a PARM_DECL
5963 or a FUNCTION_DECL, depending on DECL_CONTEXT and TYPE. */
5966 tree decl;
5968 if (decl_context == PARM)
5970 tree promoted_type;
5972 /* A parameter declared as an array of T is really a pointer to T.
5973 One declared as a function is really a pointer to a function. */
5975 if (TREE_CODE (type) == ARRAY_TYPE)
5977 /* Transfer const-ness of array into that of type pointed to. */
5978 type = TREE_TYPE (type);
5979 if (type_quals)
5980 type = c_build_qualified_type (type, type_quals);
5981 type = build_pointer_type (type);
5982 type_quals = array_ptr_quals;
5983 if (type_quals)
5984 type = c_build_qualified_type (type, type_quals);
5986 /* We don't yet implement attributes in this context. */
5987 if (array_ptr_attrs != NULL_TREE)
5988 warning_at (loc, OPT_Wattributes,
5989 "attributes in parameter array declarator ignored");
5991 size_varies = false;
5992 upc_threads_ref = 0;
5993 layout_qualifier = 0;
5995 else if (TREE_CODE (type) == FUNCTION_TYPE)
5997 if (type_quals)
5998 pedwarn (loc, OPT_pedantic,
5999 "ISO C forbids qualified function types");
6000 if (type_quals)
6001 type = c_build_qualified_type (type, type_quals);
6002 type = build_pointer_type (type);
6003 type_quals = TYPE_UNQUALIFIED;
6005 else if (type_quals & TYPE_QUAL_SHARED)
6007 error ("parameter declared with shared qualifier");
6008 type_quals &= ~(TYPE_QUAL_SHARED | TYPE_QUAL_STRICT
6009 | TYPE_QUAL_RELAXED);
6011 else if (type_quals)
6012 type = c_build_qualified_type (type, type_quals);
6014 decl = build_decl (declarator->id_loc,
6015 PARM_DECL, declarator->u.id, type);
6016 if (size_varies)
6017 C_DECL_VARIABLE_SIZE (decl) = 1;
6019 /* Compute the type actually passed in the parmlist,
6020 for the case where there is no prototype.
6021 (For example, shorts and chars are passed as ints.)
6022 When there is a prototype, this is overridden later. */
6024 if (type == error_mark_node)
6025 promoted_type = type;
6026 else
6027 promoted_type = c_type_promotes_to (type);
6029 DECL_ARG_TYPE (decl) = promoted_type;
6030 if (declspecs->inline_p)
6031 pedwarn (loc, 0, "parameter %q+D declared %<inline%>", decl);
6033 else if (decl_context == FIELD)
6035 /* Note that the grammar rejects storage classes in typenames
6036 and fields. */
6037 gcc_assert (storage_class == csc_none && !threadp
6038 && !declspecs->inline_p);
6040 /* Structure field. It may not be a function. */
6042 if (TREE_CODE (type) == FUNCTION_TYPE)
6044 error_at (loc, "field %qE declared as a function", name);
6045 type = build_pointer_type (type);
6047 else if (TREE_CODE (type) != ERROR_MARK
6048 && !COMPLETE_OR_UNBOUND_ARRAY_TYPE_P (type))
6050 if (name)
6051 error_at (loc, "field %qE has incomplete type", name);
6052 else
6053 error_at (loc, "unnamed field has incomplete type");
6054 type = error_mark_node;
6056 else if (type_quals & TYPE_QUAL_SHARED)
6058 error_at (loc, "field %qE declared with shared qualifier",
6059 name);
6060 type_quals &= ~(TYPE_QUAL_SHARED | TYPE_QUAL_STRICT
6061 | TYPE_QUAL_RELAXED);
6063 type = c_build_qualified_type (type, type_quals);
6064 decl = build_decl (declarator->id_loc,
6065 FIELD_DECL, declarator->u.id, type);
6066 DECL_NONADDRESSABLE_P (decl) = bitfield;
6067 if (bitfield && !declarator->u.id)
6068 TREE_NO_WARNING (decl) = 1;
6070 if (size_varies)
6071 C_DECL_VARIABLE_SIZE (decl) = 1;
6073 else if (TREE_CODE (type) == FUNCTION_TYPE)
6075 if (storage_class == csc_register || threadp)
6077 error_at (loc, "invalid storage class for function %qE", name);
6079 else if (current_scope != file_scope)
6081 /* Function declaration not at file scope. Storage
6082 classes other than `extern' are not allowed, C99
6083 6.7.1p5, and `extern' makes no difference. However,
6084 GCC allows 'auto', perhaps with 'inline', to support
6085 nested functions. */
6086 if (storage_class == csc_auto)
6087 pedwarn (loc, OPT_pedantic,
6088 "invalid storage class for function %qE", name);
6089 else if (storage_class == csc_static)
6091 error_at (loc, "invalid storage class for function %qE", name);
6092 if (funcdef_flag)
6093 storage_class = declspecs->storage_class = csc_none;
6094 else
6095 return 0;
6099 decl = build_decl (declarator->id_loc,
6100 FUNCTION_DECL, declarator->u.id, type);
6101 decl = build_decl_attribute_variant (decl, decl_attr);
6103 if (pedantic && type_quals && !DECL_IN_SYSTEM_HEADER (decl))
6104 pedwarn (loc, OPT_pedantic,
6105 "ISO C forbids qualified function types");
6107 /* Every function declaration is an external reference
6108 (DECL_EXTERNAL) except for those which are not at file
6109 scope and are explicitly declared "auto". This is
6110 forbidden by standard C (C99 6.7.1p5) and is interpreted by
6111 GCC to signify a forward declaration of a nested function. */
6112 if (storage_class == csc_auto && current_scope != file_scope)
6113 DECL_EXTERNAL (decl) = 0;
6114 /* In C99, a function which is declared 'inline' with 'extern'
6115 is not an external reference (which is confusing). It
6116 means that the later definition of the function must be output
6117 in this file, C99 6.7.4p6. In GNU C89, a function declared
6118 'extern inline' is an external reference. */
6119 else if (declspecs->inline_p && storage_class != csc_static)
6120 DECL_EXTERNAL (decl) = ((storage_class == csc_extern)
6121 == flag_gnu89_inline);
6122 else
6123 DECL_EXTERNAL (decl) = !initialized;
6125 /* Record absence of global scope for `static' or `auto'. */
6126 TREE_PUBLIC (decl)
6127 = !(storage_class == csc_static || storage_class == csc_auto);
6129 /* For a function definition, record the argument information
6130 block where store_parm_decls will look for it. */
6131 if (funcdef_flag)
6132 current_function_arg_info = arg_info;
6134 if (declspecs->default_int_p)
6135 C_FUNCTION_IMPLICIT_INT (decl) = 1;
6137 /* Record presence of `inline', if it is reasonable. */
6138 if (flag_hosted && MAIN_NAME_P (declarator->u.id))
6140 if (declspecs->inline_p)
6141 pedwarn (loc, 0, "cannot inline function %<main%>");
6143 else if (declspecs->inline_p)
6144 /* Record that the function is declared `inline'. */
6145 DECL_DECLARED_INLINE_P (decl) = 1;
6147 else
6149 /* It's a variable. */
6150 /* An uninitialized decl with `extern' is a reference. */
6151 int extern_ref = !initialized && storage_class == csc_extern;
6153 if ((type_quals & TYPE_QUAL_SHARED)
6154 && !extern_ref
6155 && !((current_scope == file_scope)
6156 || (storage_class == csc_static)))
6158 error_at (loc, "UPC does not support shared auto variables.");
6161 type = c_build_qualified_type (type, type_quals);
6162 /* block sizes don't make much sense for scalar variables,
6163 but UPC permits them. */
6164 if (layout_qualifier)
6165 type = upc_set_block_factor (VAR_DECL, type, layout_qualifier);
6167 /* C99 6.2.2p7: It is invalid (compile-time undefined
6168 behavior) to create an 'extern' declaration for a
6169 variable if there is a global declaration that is
6170 'static' and the global declaration is not visible.
6171 (If the static declaration _is_ currently visible,
6172 the 'extern' declaration is taken to refer to that decl.) */
6173 if (extern_ref && current_scope != file_scope)
6175 tree global_decl = identifier_global_value (declarator->u.id);
6176 tree visible_decl = lookup_name (declarator->u.id);
6178 if (global_decl
6179 && global_decl != visible_decl
6180 && TREE_CODE (global_decl) == VAR_DECL
6181 && !TREE_PUBLIC (global_decl))
6182 error_at (loc, "variable previously declared %<static%> "
6183 "redeclared %<extern%>");
6186 decl = build_decl (declarator->id_loc,
6187 VAR_DECL, declarator->u.id, type);
6188 if (size_varies)
6189 C_DECL_VARIABLE_SIZE (decl) = 1;
6191 if (declspecs->inline_p)
6192 pedwarn (loc, 0, "variable %q+D declared %<inline%>", decl);
6194 /* At file scope, an initialized extern declaration may follow
6195 a static declaration. In that case, DECL_EXTERNAL will be
6196 reset later in start_decl. */
6197 DECL_EXTERNAL (decl) = (storage_class == csc_extern);
6199 /* At file scope, the presence of a `static' or `register' storage
6200 class specifier, or the absence of all storage class specifiers
6201 makes this declaration a definition (perhaps tentative). Also,
6202 the absence of `static' makes it public. */
6203 if (current_scope == file_scope)
6205 TREE_PUBLIC (decl) = storage_class != csc_static;
6206 TREE_STATIC (decl) = !extern_ref;
6208 /* Not at file scope, only `static' makes a static definition. */
6209 else
6211 TREE_STATIC (decl) = (storage_class == csc_static);
6212 /* UPC's 'shared' attribute implies that the storage
6213 is 'static' to the extent it is stored in
6214 memory. */
6215 if (type_quals & TYPE_QUAL_SHARED)
6216 TREE_STATIC (decl) = 1;
6217 TREE_PUBLIC (decl) = extern_ref;
6220 if (threadp)
6221 DECL_TLS_MODEL (decl) = decl_default_tls_model (decl);
6224 if ((storage_class == csc_extern
6225 || (storage_class == csc_none
6226 && TREE_CODE (type) == FUNCTION_TYPE
6227 && !funcdef_flag))
6228 && variably_modified_type_p (type, NULL_TREE))
6230 /* C99 6.7.5.2p2 */
6231 if (TREE_CODE (type) == FUNCTION_TYPE)
6232 error_at (loc, "non-nested function with variably modified type");
6233 else
6234 error_at (loc, "object with variably modified type must have "
6235 "no linkage");
6238 /* Record `register' declaration for warnings on &
6239 and in case doing stupid register allocation. */
6241 if (storage_class == csc_register)
6243 C_DECL_REGISTER (decl) = 1;
6244 DECL_REGISTER (decl) = 1;
6247 /* Record constancy and volatility. */
6248 c_apply_type_quals_to_decl (type_quals, decl);
6250 /* If a type has volatile components, it should be stored in memory.
6251 Otherwise, the fact that those components are volatile
6252 will be ignored, and would even crash the compiler.
6253 Of course, this only makes sense on VAR,PARM, and RESULT decl's. */
6254 if (C_TYPE_FIELDS_VOLATILE (TREE_TYPE (decl))
6255 && (TREE_CODE (decl) == VAR_DECL || TREE_CODE (decl) == PARM_DECL
6256 || TREE_CODE (decl) == RESULT_DECL))
6258 /* It is not an error for a structure with volatile fields to
6259 be declared register, but reset DECL_REGISTER since it
6260 cannot actually go in a register. */
6261 int was_reg = C_DECL_REGISTER (decl);
6262 C_DECL_REGISTER (decl) = 0;
6263 DECL_REGISTER (decl) = 0;
6264 c_mark_addressable (decl);
6265 C_DECL_REGISTER (decl) = was_reg;
6268 /* This is the earliest point at which we might know the assembler
6269 name of a variable. Thus, if it's known before this, die horribly. */
6270 gcc_assert (!DECL_ASSEMBLER_NAME_SET_P (decl));
6272 if (warn_cxx_compat
6273 && TREE_CODE (decl) == VAR_DECL
6274 && TREE_PUBLIC (decl)
6275 && TREE_STATIC (decl)
6276 && (TREE_CODE (TREE_TYPE (decl)) == RECORD_TYPE
6277 || TREE_CODE (TREE_TYPE (decl)) == UNION_TYPE
6278 || TREE_CODE (TREE_TYPE (decl)) == ENUMERAL_TYPE)
6279 && TYPE_NAME (TREE_TYPE (decl)) == NULL_TREE)
6280 warning_at (DECL_SOURCE_LOCATION (decl), OPT_Wc___compat,
6281 ("non-local variable %qD with anonymous type is "
6282 "questionable in C++"),
6283 decl);
6285 /* Shared variables are given their own link section on
6286 most target platforms, and if compiling in pthreads mode
6287 regular local file scope variables are made thread local. */
6288 if ((TREE_CODE(decl) == VAR_DECL)
6289 && !threadp && (TREE_SHARED (decl) || flag_upc_pthreads))
6290 upc_set_decl_section (decl);
6292 return decl;
6296 /* Decode the parameter-list info for a function type or function definition.
6297 The argument is the value returned by `get_parm_info' (or made in c-parse.c
6298 if there is an identifier list instead of a parameter decl list).
6299 These two functions are separate because when a function returns
6300 or receives functions then each is called multiple times but the order
6301 of calls is different. The last call to `grokparms' is always the one
6302 that contains the formal parameter names of a function definition.
6304 Return a list of arg types to use in the FUNCTION_TYPE for this function.
6306 FUNCDEF_FLAG is true for a function definition, false for
6307 a mere declaration. A nonempty identifier-list gets an error message
6308 when FUNCDEF_FLAG is false. */
6310 static tree
6311 grokparms (struct c_arg_info *arg_info, bool funcdef_flag)
6313 tree arg_types = arg_info->types;
6315 if (funcdef_flag && arg_info->had_vla_unspec)
6317 /* A function definition isn't function prototype scope C99 6.2.1p4. */
6318 /* C99 6.7.5.2p4 */
6319 error ("%<[*]%> not allowed in other than function prototype scope");
6322 if (arg_types == 0 && !funcdef_flag && !in_system_header)
6323 warning (OPT_Wstrict_prototypes,
6324 "function declaration isn%'t a prototype");
6326 if (arg_types == error_mark_node)
6327 return 0; /* don't set TYPE_ARG_TYPES in this case */
6329 else if (arg_types && TREE_CODE (TREE_VALUE (arg_types)) == IDENTIFIER_NODE)
6331 if (!funcdef_flag)
6333 pedwarn (input_location, 0, "parameter names (without types) in function declaration");
6334 arg_info->parms = NULL_TREE;
6336 else
6337 arg_info->parms = arg_info->types;
6339 arg_info->types = 0;
6340 return 0;
6342 else
6344 tree parm, type, typelt;
6345 unsigned int parmno;
6346 const char *errmsg;
6348 /* If there is a parameter of incomplete type in a definition,
6349 this is an error. In a declaration this is valid, and a
6350 struct or union type may be completed later, before any calls
6351 or definition of the function. In the case where the tag was
6352 first declared within the parameter list, a warning has
6353 already been given. If a parameter has void type, then
6354 however the function cannot be defined or called, so
6355 warn. */
6357 for (parm = arg_info->parms, typelt = arg_types, parmno = 1;
6358 parm;
6359 parm = DECL_CHAIN (parm), typelt = TREE_CHAIN (typelt), parmno++)
6361 type = TREE_VALUE (typelt);
6362 if (type == error_mark_node)
6363 continue;
6365 if (!COMPLETE_TYPE_P (type))
6367 if (funcdef_flag)
6369 if (DECL_NAME (parm))
6370 error_at (input_location,
6371 "parameter %u (%q+D) has incomplete type",
6372 parmno, parm);
6373 else
6374 error_at (DECL_SOURCE_LOCATION (parm),
6375 "parameter %u has incomplete type",
6376 parmno);
6378 TREE_VALUE (typelt) = error_mark_node;
6379 TREE_TYPE (parm) = error_mark_node;
6380 arg_types = NULL_TREE;
6382 else if (VOID_TYPE_P (type))
6384 if (DECL_NAME (parm))
6385 warning_at (input_location, 0,
6386 "parameter %u (%q+D) has void type",
6387 parmno, parm);
6388 else
6389 warning_at (DECL_SOURCE_LOCATION (parm), 0,
6390 "parameter %u has void type",
6391 parmno);
6395 errmsg = targetm.invalid_parameter_type (type);
6396 if (errmsg)
6398 error (errmsg);
6399 TREE_VALUE (typelt) = error_mark_node;
6400 TREE_TYPE (parm) = error_mark_node;
6401 arg_types = NULL_TREE;
6404 if (DECL_NAME (parm) && TREE_USED (parm))
6405 warn_if_shadowing (parm);
6407 return arg_types;
6411 /* Allocate and initialize a c_arg_info structure from the parser's
6412 obstack. */
6414 struct c_arg_info *
6415 build_arg_info (void)
6417 struct c_arg_info *ret = XOBNEW (&parser_obstack, struct c_arg_info);
6418 ret->parms = NULL_TREE;
6419 ret->tags = NULL;
6420 ret->types = NULL_TREE;
6421 ret->others = NULL_TREE;
6422 ret->pending_sizes = NULL;
6423 ret->had_vla_unspec = 0;
6424 return ret;
6427 /* Take apart the current scope and return a c_arg_info structure with
6428 info on a parameter list just parsed.
6430 This structure is later fed to 'grokparms' and 'store_parm_decls'.
6432 ELLIPSIS being true means the argument list ended in '...' so don't
6433 append a sentinel (void_list_node) to the end of the type-list. */
6435 struct c_arg_info *
6436 get_parm_info (bool ellipsis)
6438 struct c_binding *b = current_scope->bindings;
6439 struct c_arg_info *arg_info = build_arg_info ();
6441 tree parms = 0;
6442 VEC(c_arg_tag,gc) *tags = NULL;
6443 tree types = 0;
6444 tree others = 0;
6446 static bool explained_incomplete_types = false;
6447 bool gave_void_only_once_err = false;
6449 arg_info->had_vla_unspec = current_scope->had_vla_unspec;
6451 /* The bindings in this scope must not get put into a block.
6452 We will take care of deleting the binding nodes. */
6453 current_scope->bindings = 0;
6455 /* This function is only called if there was *something* on the
6456 parameter list. */
6457 gcc_assert (b);
6459 /* A parameter list consisting solely of 'void' indicates that the
6460 function takes no arguments. But if the 'void' is qualified
6461 (by 'const' or 'volatile'), or has a storage class specifier
6462 ('register'), then the behavior is undefined; issue an error.
6463 Typedefs for 'void' are OK (see DR#157). */
6464 if (b->prev == 0 /* one binding */
6465 && TREE_CODE (b->decl) == PARM_DECL /* which is a parameter */
6466 && !DECL_NAME (b->decl) /* anonymous */
6467 && VOID_TYPE_P (TREE_TYPE (b->decl))) /* of void type */
6469 if (TREE_THIS_VOLATILE (b->decl)
6470 || TREE_READONLY (b->decl)
6471 || C_DECL_REGISTER (b->decl))
6472 error ("%<void%> as only parameter may not be qualified");
6474 /* There cannot be an ellipsis. */
6475 if (ellipsis)
6476 error ("%<void%> must be the only parameter");
6478 arg_info->types = void_list_node;
6479 return arg_info;
6482 if (!ellipsis)
6483 types = void_list_node;
6485 /* Break up the bindings list into parms, tags, types, and others;
6486 apply sanity checks; purge the name-to-decl bindings. */
6487 while (b)
6489 tree decl = b->decl;
6490 tree type = TREE_TYPE (decl);
6491 c_arg_tag *tag;
6492 const char *keyword;
6494 switch (TREE_CODE (decl))
6496 case PARM_DECL:
6497 if (b->id)
6499 gcc_assert (I_SYMBOL_BINDING (b->id) == b);
6500 I_SYMBOL_BINDING (b->id) = b->shadowed;
6503 /* Check for forward decls that never got their actual decl. */
6504 if (TREE_ASM_WRITTEN (decl))
6505 error ("parameter %q+D has just a forward declaration", decl);
6506 /* Check for (..., void, ...) and issue an error. */
6507 else if (VOID_TYPE_P (type) && !DECL_NAME (decl))
6509 if (!gave_void_only_once_err)
6511 error ("%<void%> must be the only parameter");
6512 gave_void_only_once_err = true;
6515 else
6517 /* Valid parameter, add it to the list. */
6518 DECL_CHAIN (decl) = parms;
6519 parms = decl;
6521 /* Since there is a prototype, args are passed in their
6522 declared types. The back end may override this later. */
6523 DECL_ARG_TYPE (decl) = type;
6524 types = tree_cons (0, type, types);
6526 break;
6528 case ENUMERAL_TYPE: keyword = "enum"; goto tag;
6529 case UNION_TYPE: keyword = "union"; goto tag;
6530 case RECORD_TYPE: keyword = "struct"; goto tag;
6531 tag:
6532 /* Types may not have tag-names, in which case the type
6533 appears in the bindings list with b->id NULL. */
6534 if (b->id)
6536 gcc_assert (I_TAG_BINDING (b->id) == b);
6537 I_TAG_BINDING (b->id) = b->shadowed;
6540 /* Warn about any struct, union or enum tags defined in a
6541 parameter list. The scope of such types is limited to
6542 the parameter list, which is rarely if ever desirable
6543 (it's impossible to call such a function with type-
6544 correct arguments). An anonymous union parm type is
6545 meaningful as a GNU extension, so don't warn for that. */
6546 if (TREE_CODE (decl) != UNION_TYPE || b->id != 0)
6548 if (b->id)
6549 /* The %s will be one of 'struct', 'union', or 'enum'. */
6550 warning (0, "%<%s %E%> declared inside parameter list",
6551 keyword, b->id);
6552 else
6553 /* The %s will be one of 'struct', 'union', or 'enum'. */
6554 warning (0, "anonymous %s declared inside parameter list",
6555 keyword);
6557 if (!explained_incomplete_types)
6559 warning (0, "its scope is only this definition or declaration,"
6560 " which is probably not what you want");
6561 explained_incomplete_types = true;
6565 tag = VEC_safe_push (c_arg_tag, gc, tags, NULL);
6566 tag->id = b->id;
6567 tag->type = decl;
6568 break;
6570 case CONST_DECL:
6571 case TYPE_DECL:
6572 case FUNCTION_DECL:
6573 /* CONST_DECLs appear here when we have an embedded enum,
6574 and TYPE_DECLs appear here when we have an embedded struct
6575 or union. No warnings for this - we already warned about the
6576 type itself. FUNCTION_DECLs appear when there is an implicit
6577 function declaration in the parameter list. */
6579 /* When we reinsert this decl in the function body, we need
6580 to reconstruct whether it was marked as nested. */
6581 gcc_assert (TREE_CODE (decl) == FUNCTION_DECL
6582 ? b->nested
6583 : !b->nested);
6584 DECL_CHAIN (decl) = others;
6585 others = decl;
6586 /* fall through */
6588 case ERROR_MARK:
6589 /* error_mark_node appears here when we have an undeclared
6590 variable. Just throw it away. */
6591 if (b->id)
6593 gcc_assert (I_SYMBOL_BINDING (b->id) == b);
6594 I_SYMBOL_BINDING (b->id) = b->shadowed;
6596 break;
6598 /* Other things that might be encountered. */
6599 case LABEL_DECL:
6600 case VAR_DECL:
6601 default:
6602 gcc_unreachable ();
6605 b = free_binding_and_advance (b);
6608 arg_info->parms = parms;
6609 arg_info->tags = tags;
6610 arg_info->types = types;
6611 arg_info->others = others;
6612 arg_info->pending_sizes = get_pending_sizes ();
6613 return arg_info;
6616 /* Get the struct, enum or union (CODE says which) with tag NAME.
6617 Define the tag as a forward-reference with location LOC if it is
6618 not defined. Return a c_typespec structure for the type
6619 specifier. */
6621 struct c_typespec
6622 parser_xref_tag (location_t loc, enum tree_code code, tree name)
6624 struct c_typespec ret;
6625 tree ref;
6626 location_t refloc;
6628 ret.expr = NULL_TREE;
6629 ret.expr_const_operands = true;
6631 /* If a cross reference is requested, look up the type
6632 already defined for this tag and return it. */
6634 ref = lookup_tag (code, name, 0, &refloc);
6635 /* If this is the right type of tag, return what we found.
6636 (This reference will be shadowed by shadow_tag later if appropriate.)
6637 If this is the wrong type of tag, do not return it. If it was the
6638 wrong type in the same scope, we will have had an error
6639 message already; if in a different scope and declaring
6640 a name, pending_xref_error will give an error message; but if in a
6641 different scope and not declaring a name, this tag should
6642 shadow the previous declaration of a different type of tag, and
6643 this would not work properly if we return the reference found.
6644 (For example, with "struct foo" in an outer scope, "union foo;"
6645 must shadow that tag with a new one of union type.) */
6646 ret.kind = (ref ? ctsk_tagref : ctsk_tagfirstref);
6647 if (ref && TREE_CODE (ref) == code)
6649 if (C_TYPE_DEFINED_IN_STRUCT (ref)
6650 && loc != UNKNOWN_LOCATION
6651 && warn_cxx_compat)
6653 switch (code)
6655 case ENUMERAL_TYPE:
6656 warning_at (loc, OPT_Wc___compat,
6657 ("enum type defined in struct or union "
6658 "is not visible in C++"));
6659 inform (refloc, "enum type defined here");
6660 break;
6661 case RECORD_TYPE:
6662 warning_at (loc, OPT_Wc___compat,
6663 ("struct defined in struct or union "
6664 "is not visible in C++"));
6665 inform (refloc, "struct defined here");
6666 break;
6667 case UNION_TYPE:
6668 warning_at (loc, OPT_Wc___compat,
6669 ("union defined in struct or union "
6670 "is not visible in C++"));
6671 inform (refloc, "union defined here");
6672 break;
6673 default:
6674 gcc_unreachable();
6678 ret.spec = ref;
6679 return ret;
6682 /* If no such tag is yet defined, create a forward-reference node
6683 and record it as the "definition".
6684 When a real declaration of this type is found,
6685 the forward-reference will be altered into a real type. */
6687 ref = make_node (code);
6688 if (code == ENUMERAL_TYPE)
6690 /* Give the type a default layout like unsigned int
6691 to avoid crashing if it does not get defined. */
6692 SET_TYPE_MODE (ref, TYPE_MODE (unsigned_type_node));
6693 TYPE_ALIGN (ref) = TYPE_ALIGN (unsigned_type_node);
6694 TYPE_USER_ALIGN (ref) = 0;
6695 TYPE_UNSIGNED (ref) = 1;
6696 TYPE_PRECISION (ref) = TYPE_PRECISION (unsigned_type_node);
6697 TYPE_MIN_VALUE (ref) = TYPE_MIN_VALUE (unsigned_type_node);
6698 TYPE_MAX_VALUE (ref) = TYPE_MAX_VALUE (unsigned_type_node);
6701 pushtag (loc, name, ref);
6703 ret.spec = ref;
6704 return ret;
6707 /* Get the struct, enum or union (CODE says which) with tag NAME.
6708 Define the tag as a forward-reference if it is not defined.
6709 Return a tree for the type. */
6711 tree
6712 xref_tag (enum tree_code code, tree name)
6714 return parser_xref_tag (input_location, code, name).spec;
6717 /* Make sure that the tag NAME is defined *in the current scope*
6718 at least as a forward reference.
6719 LOC is the location of the struct's definition.
6720 CODE says which kind of tag NAME ought to be.
6722 This stores the current value of the file static STRUCT_PARSE_INFO
6723 in *ENCLOSING_STRUCT_PARSE_INFO, and points STRUCT_PARSE_INFO at a
6724 new c_struct_parse_info structure. The old value of
6725 STRUCT_PARSE_INFO is restored in finish_struct. */
6727 tree
6728 start_struct (location_t loc, enum tree_code code, tree name,
6729 struct c_struct_parse_info **enclosing_struct_parse_info)
6731 /* If there is already a tag defined at this scope
6732 (as a forward reference), just return it. */
6734 tree ref = NULL_TREE;
6735 location_t refloc = UNKNOWN_LOCATION;
6737 if (name != NULL_TREE)
6738 ref = lookup_tag (code, name, 1, &refloc);
6739 if (ref && TREE_CODE (ref) == code)
6741 if (TYPE_SIZE (ref))
6743 if (code == UNION_TYPE)
6744 error_at (loc, "redefinition of %<union %E%>", name);
6745 else
6746 error_at (loc, "redefinition of %<struct %E%>", name);
6747 if (refloc != UNKNOWN_LOCATION)
6748 inform (refloc, "originally defined here");
6749 /* Don't create structures using a name already in use. */
6750 ref = NULL_TREE;
6752 else if (C_TYPE_BEING_DEFINED (ref))
6754 if (code == UNION_TYPE)
6755 error_at (loc, "nested redefinition of %<union %E%>", name);
6756 else
6757 error_at (loc, "nested redefinition of %<struct %E%>", name);
6758 /* Don't bother to report "originally defined here" for a
6759 nested redefinition; the original definition should be
6760 obvious. */
6761 /* Don't create structures that contain themselves. */
6762 ref = NULL_TREE;
6766 /* Otherwise create a forward-reference just so the tag is in scope. */
6768 if (ref == NULL_TREE || TREE_CODE (ref) != code)
6770 ref = make_node (code);
6771 pushtag (loc, name, ref);
6774 C_TYPE_BEING_DEFINED (ref) = 1;
6775 TYPE_PACKED (ref) = flag_pack_struct;
6777 *enclosing_struct_parse_info = struct_parse_info;
6778 struct_parse_info = XNEW (struct c_struct_parse_info);
6779 struct_parse_info->struct_types = VEC_alloc (tree, heap, 0);
6780 struct_parse_info->fields = VEC_alloc (c_binding_ptr, heap, 0);
6781 struct_parse_info->typedefs_seen = VEC_alloc (tree, heap, 0);
6783 /* FIXME: This will issue a warning for a use of a type defined
6784 within a statement expr used within sizeof, et. al. This is not
6785 terribly serious as C++ doesn't permit statement exprs within
6786 sizeof anyhow. */
6787 if (warn_cxx_compat && (in_sizeof || in_typeof || in_alignof))
6788 warning_at (loc, OPT_Wc___compat,
6789 "defining type in %qs expression is invalid in C++",
6790 (in_sizeof
6791 ? "sizeof"
6792 : (in_typeof ? "typeof" : "alignof")));
6794 return ref;
6797 /* Process the specs, declarator and width (NULL if omitted)
6798 of a structure component, returning a FIELD_DECL node.
6799 WIDTH is non-NULL for bit-fields only, and is an INTEGER_CST node.
6800 DECL_ATTRS is as for grokdeclarator.
6802 LOC is the location of the structure component.
6804 This is done during the parsing of the struct declaration.
6805 The FIELD_DECL nodes are chained together and the lot of them
6806 are ultimately passed to `build_struct' to make the RECORD_TYPE node. */
6808 tree
6809 grokfield (location_t loc,
6810 struct c_declarator *declarator, struct c_declspecs *declspecs,
6811 tree width, tree *decl_attrs)
6813 tree value;
6815 if (declarator->kind == cdk_id && declarator->u.id == NULL_TREE
6816 && width == NULL_TREE)
6818 /* This is an unnamed decl.
6820 If we have something of the form "union { list } ;" then this
6821 is the anonymous union extension. Similarly for struct.
6823 If this is something of the form "struct foo;", then
6824 If MS or Plan 9 extensions are enabled, this is handled as
6825 an anonymous struct.
6826 Otherwise this is a forward declaration of a structure tag.
6828 If this is something of the form "foo;" and foo is a TYPE_DECL, then
6829 If foo names a structure or union without a tag, then this
6830 is an anonymous struct (this is permitted by C1X).
6831 If MS or Plan 9 extensions are enabled and foo names a
6832 structure, then again this is an anonymous struct.
6833 Otherwise this is an error.
6835 Oh what a horrid tangled web we weave. I wonder if MS consciously
6836 took this from Plan 9 or if it was an accident of implementation
6837 that took root before someone noticed the bug... */
6839 tree type = declspecs->type;
6840 bool type_ok = (TREE_CODE (type) == RECORD_TYPE
6841 || TREE_CODE (type) == UNION_TYPE);
6842 bool ok = false;
6844 if (type_ok)
6846 if (flag_ms_extensions || flag_plan9_extensions)
6847 ok = true;
6848 else if (TYPE_NAME (TYPE_MAIN_VARIANT (type)) == NULL)
6849 ok = true;
6850 else
6851 ok = false;
6853 if (!ok)
6855 pedwarn (loc, 0, "declaration does not declare anything");
6856 return NULL_TREE;
6858 if (!flag_isoc1x)
6860 if (flag_isoc99)
6861 pedwarn (loc, OPT_pedantic,
6862 "ISO C99 doesn%'t support unnamed structs/unions");
6863 else
6864 pedwarn (loc, OPT_pedantic,
6865 "ISO C90 doesn%'t support unnamed structs/unions");
6869 value = grokdeclarator (declarator, declspecs, FIELD, false,
6870 width ? &width : NULL, decl_attrs, NULL, NULL,
6871 DEPRECATED_NORMAL);
6873 finish_decl (value, loc, NULL_TREE, NULL_TREE, NULL_TREE);
6874 DECL_INITIAL (value) = width;
6876 if (warn_cxx_compat && DECL_NAME (value) != NULL_TREE)
6878 /* If we currently have a binding for this field, set the
6879 in_struct field in the binding, so that we warn about lookups
6880 which find it. */
6881 struct c_binding *b = I_SYMBOL_BINDING (DECL_NAME (value));
6882 if (b != NULL)
6884 /* If the in_struct field is not yet set, push it on a list
6885 to be cleared when this struct is finished. */
6886 if (!b->in_struct)
6888 VEC_safe_push (c_binding_ptr, heap,
6889 struct_parse_info->fields, b);
6890 b->in_struct = 1;
6895 return value;
6898 /* Subroutine of detect_field_duplicates: return whether X and Y,
6899 which are both fields in the same struct, have duplicate field
6900 names. */
6902 static bool
6903 is_duplicate_field (tree x, tree y)
6905 if (DECL_NAME (x) != NULL_TREE && DECL_NAME (x) == DECL_NAME (y))
6906 return true;
6908 /* When using -fplan9-extensions, an anonymous field whose name is a
6909 typedef can duplicate a field name. */
6910 if (flag_plan9_extensions
6911 && (DECL_NAME (x) == NULL_TREE || DECL_NAME (y) == NULL_TREE))
6913 tree xt, xn, yt, yn;
6915 xt = TREE_TYPE (x);
6916 if (DECL_NAME (x) != NULL_TREE)
6917 xn = DECL_NAME (x);
6918 else if ((TREE_CODE (xt) == RECORD_TYPE || TREE_CODE (xt) == UNION_TYPE)
6919 && TYPE_NAME (xt) != NULL_TREE
6920 && TREE_CODE (TYPE_NAME (xt)) == TYPE_DECL)
6921 xn = DECL_NAME (TYPE_NAME (xt));
6922 else
6923 xn = NULL_TREE;
6925 yt = TREE_TYPE (y);
6926 if (DECL_NAME (y) != NULL_TREE)
6927 yn = DECL_NAME (y);
6928 else if ((TREE_CODE (yt) == RECORD_TYPE || TREE_CODE (yt) == UNION_TYPE)
6929 && TYPE_NAME (yt) != NULL_TREE
6930 && TREE_CODE (TYPE_NAME (yt)) == TYPE_DECL)
6931 yn = DECL_NAME (TYPE_NAME (yt));
6932 else
6933 yn = NULL_TREE;
6935 if (xn != NULL_TREE && xn == yn)
6936 return true;
6939 return false;
6942 /* Subroutine of detect_field_duplicates: add the fields of FIELDLIST
6943 to HTAB, giving errors for any duplicates. */
6945 static void
6946 detect_field_duplicates_hash (tree fieldlist, htab_t htab)
6948 tree x, y;
6949 void **slot;
6951 for (x = fieldlist; x ; x = DECL_CHAIN (x))
6952 if ((y = DECL_NAME (x)) != 0)
6954 slot = htab_find_slot (htab, y, INSERT);
6955 if (*slot)
6957 error ("duplicate member %q+D", x);
6958 DECL_NAME (x) = NULL_TREE;
6960 *slot = y;
6962 else if (TREE_CODE (TREE_TYPE (x)) == RECORD_TYPE
6963 || TREE_CODE (TREE_TYPE (x)) == UNION_TYPE)
6965 detect_field_duplicates_hash (TYPE_FIELDS (TREE_TYPE (x)), htab);
6967 /* When using -fplan9-extensions, an anonymous field whose
6968 name is a typedef can duplicate a field name. */
6969 if (flag_plan9_extensions
6970 && TYPE_NAME (TREE_TYPE (x)) != NULL_TREE
6971 && TREE_CODE (TYPE_NAME (TREE_TYPE (x))) == TYPE_DECL)
6973 tree xn = DECL_NAME (TYPE_NAME (TREE_TYPE (x)));
6974 slot = htab_find_slot (htab, xn, INSERT);
6975 if (*slot)
6976 error ("duplicate member %q+D", TYPE_NAME (TREE_TYPE (x)));
6977 *slot = xn;
6982 /* Generate an error for any duplicate field names in FIELDLIST. Munge
6983 the list such that this does not present a problem later. */
6985 static void
6986 detect_field_duplicates (tree fieldlist)
6988 tree x, y;
6989 int timeout = 10;
6991 /* If the struct is the list of instance variables of an Objective-C
6992 class, then we need to add all the instance variables of
6993 superclasses before checking for duplicates (since you can't have
6994 an instance variable in a subclass with the same name as an
6995 instance variable in a superclass). objc_get_interface_ivars()
6996 leaves fieldlist unchanged if we are not in this case, so in that
6997 case nothing changes compared to C.
6999 if (c_dialect_objc ())
7000 fieldlist = objc_get_interface_ivars (fieldlist);
7002 /* First, see if there are more than "a few" fields.
7003 This is trivially true if there are zero or one fields. */
7004 if (!fieldlist)
7005 return;
7006 x = DECL_CHAIN (fieldlist);
7007 if (!x)
7008 return;
7009 do {
7010 timeout--;
7011 if (DECL_NAME (x) == NULL_TREE
7012 && (TREE_CODE (TREE_TYPE (x)) == RECORD_TYPE
7013 || TREE_CODE (TREE_TYPE (x)) == UNION_TYPE))
7014 timeout = 0;
7015 x = DECL_CHAIN (x);
7016 } while (timeout > 0 && x);
7018 /* If there were "few" fields and no anonymous structures or unions,
7019 avoid the overhead of allocating a hash table. Instead just do
7020 the nested traversal thing. */
7021 if (timeout > 0)
7023 for (x = DECL_CHAIN (fieldlist); x; x = DECL_CHAIN (x))
7024 /* When using -fplan9-extensions, we can have duplicates
7025 between typedef names and fields. */
7026 if (DECL_NAME (x)
7027 || (flag_plan9_extensions
7028 && DECL_NAME (x) == NULL_TREE
7029 && (TREE_CODE (TREE_TYPE (x)) == RECORD_TYPE
7030 || TREE_CODE (TREE_TYPE (x)) == UNION_TYPE)
7031 && TYPE_NAME (TREE_TYPE (x)) != NULL_TREE
7032 && TREE_CODE (TYPE_NAME (TREE_TYPE (x))) == TYPE_DECL))
7034 for (y = fieldlist; y != x; y = TREE_CHAIN (y))
7035 if (is_duplicate_field (y, x))
7037 error ("duplicate member %q+D", x);
7038 DECL_NAME (x) = NULL_TREE;
7042 else
7044 htab_t htab = htab_create (37, htab_hash_pointer, htab_eq_pointer, NULL);
7046 detect_field_duplicates_hash (fieldlist, htab);
7047 htab_delete (htab);
7051 /* Finish up struct info used by -Wc++-compat. */
7053 static void
7054 warn_cxx_compat_finish_struct (tree fieldlist)
7056 unsigned int ix;
7057 tree x;
7058 struct c_binding *b;
7060 /* Set the C_TYPE_DEFINED_IN_STRUCT flag for each type defined in
7061 the current struct. We do this now at the end of the struct
7062 because the flag is used to issue visibility warnings, and we
7063 only want to issue those warnings if the type is referenced
7064 outside of the struct declaration. */
7065 FOR_EACH_VEC_ELT (tree, struct_parse_info->struct_types, ix, x)
7066 C_TYPE_DEFINED_IN_STRUCT (x) = 1;
7068 /* The TYPEDEFS_SEEN field of STRUCT_PARSE_INFO is a list of
7069 typedefs used when declaring fields in this struct. If the name
7070 of any of the fields is also a typedef name then the struct would
7071 not parse in C++, because the C++ lookup rules say that the
7072 typedef name would be looked up in the context of the struct, and
7073 would thus be the field rather than the typedef. */
7074 if (!VEC_empty (tree, struct_parse_info->typedefs_seen)
7075 && fieldlist != NULL_TREE)
7077 /* Use a pointer_set using the name of the typedef. We can use
7078 a pointer_set because identifiers are interned. */
7079 struct pointer_set_t *tset = pointer_set_create ();
7081 FOR_EACH_VEC_ELT (tree, struct_parse_info->typedefs_seen, ix, x)
7082 pointer_set_insert (tset, DECL_NAME (x));
7084 for (x = fieldlist; x != NULL_TREE; x = DECL_CHAIN (x))
7086 if (DECL_NAME (x) != NULL_TREE
7087 && pointer_set_contains (tset, DECL_NAME (x)))
7089 warning_at (DECL_SOURCE_LOCATION (x), OPT_Wc___compat,
7090 ("using %qD as both field and typedef name is "
7091 "invalid in C++"),
7093 /* FIXME: It would be nice to report the location where
7094 the typedef name is used. */
7098 pointer_set_destroy (tset);
7101 /* For each field which has a binding and which was not defined in
7102 an enclosing struct, clear the in_struct field. */
7103 FOR_EACH_VEC_ELT (c_binding_ptr, struct_parse_info->fields, ix, b)
7104 b->in_struct = 0;
7107 /* Fill in the fields of a RECORD_TYPE or UNION_TYPE node, T.
7108 LOC is the location of the RECORD_TYPE or UNION_TYPE's definition.
7109 FIELDLIST is a chain of FIELD_DECL nodes for the fields.
7110 ATTRIBUTES are attributes to be applied to the structure.
7112 ENCLOSING_STRUCT_PARSE_INFO is the value of STRUCT_PARSE_INFO when
7113 the struct was started. */
7115 tree
7116 finish_struct (location_t loc, tree t, tree fieldlist, tree attributes,
7117 struct c_struct_parse_info *enclosing_struct_parse_info)
7119 tree x;
7120 bool toplevel = file_scope == current_scope;
7121 int saw_named_field;
7123 /* If this type was previously laid out as a forward reference,
7124 make sure we lay it out again. */
7126 TYPE_SIZE (t) = 0;
7128 decl_attributes (&t, attributes, (int) ATTR_FLAG_TYPE_IN_PLACE);
7130 if (pedantic)
7132 for (x = fieldlist; x; x = DECL_CHAIN (x))
7134 if (DECL_NAME (x) != 0)
7135 break;
7136 if (flag_isoc1x
7137 && (TREE_CODE (TREE_TYPE (x)) == RECORD_TYPE
7138 || TREE_CODE (TREE_TYPE (x)) == UNION_TYPE))
7139 break;
7142 if (x == 0)
7144 if (TREE_CODE (t) == UNION_TYPE)
7146 if (fieldlist)
7147 pedwarn (loc, OPT_pedantic, "union has no named members");
7148 else
7149 pedwarn (loc, OPT_pedantic, "union has no members");
7151 else
7153 if (fieldlist)
7154 pedwarn (loc, OPT_pedantic, "struct has no named members");
7155 else
7156 pedwarn (loc, OPT_pedantic, "struct has no members");
7161 /* Install struct as DECL_CONTEXT of each field decl.
7162 Also process specified field sizes, found in the DECL_INITIAL,
7163 storing 0 there after the type has been changed to precision equal
7164 to its width, rather than the precision of the specified standard
7165 type. (Correct layout requires the original type to have been preserved
7166 until now.) */
7168 saw_named_field = 0;
7169 for (x = fieldlist; x; x = DECL_CHAIN (x))
7171 if (TREE_TYPE (x) == error_mark_node)
7172 continue;
7174 DECL_CONTEXT (x) = t;
7176 /* If any field is const, the structure type is pseudo-const. */
7177 if (TREE_READONLY (x))
7178 C_TYPE_FIELDS_READONLY (t) = 1;
7179 else
7181 /* A field that is pseudo-const makes the structure likewise. */
7182 tree t1 = strip_array_types (TREE_TYPE (x));
7183 if ((TREE_CODE (t1) == RECORD_TYPE || TREE_CODE (t1) == UNION_TYPE)
7184 && C_TYPE_FIELDS_READONLY (t1))
7185 C_TYPE_FIELDS_READONLY (t) = 1;
7188 /* Any field that is volatile means variables of this type must be
7189 treated in some ways as volatile. */
7190 if (TREE_THIS_VOLATILE (x))
7191 C_TYPE_FIELDS_VOLATILE (t) = 1;
7193 /* Any field of nominal variable size implies structure is too. */
7194 if (C_DECL_VARIABLE_SIZE (x))
7195 C_TYPE_VARIABLE_SIZE (t) = 1;
7197 if (DECL_INITIAL (x))
7199 unsigned HOST_WIDE_INT width = tree_low_cst (DECL_INITIAL (x), 1);
7200 DECL_SIZE (x) = bitsize_int (width);
7201 DECL_BIT_FIELD (x) = 1;
7202 SET_DECL_C_BIT_FIELD (x);
7205 if (TYPE_PACKED (t)
7206 && (DECL_BIT_FIELD (x)
7207 || TYPE_ALIGN (TREE_TYPE (x)) > BITS_PER_UNIT))
7208 DECL_PACKED (x) = 1;
7210 /* Detect flexible array member in an invalid context. */
7211 if (TREE_CODE (TREE_TYPE (x)) == ARRAY_TYPE
7212 && TYPE_SIZE (TREE_TYPE (x)) == NULL_TREE
7213 && TYPE_DOMAIN (TREE_TYPE (x)) != NULL_TREE
7214 && TYPE_MAX_VALUE (TYPE_DOMAIN (TREE_TYPE (x))) == NULL_TREE)
7216 if (TREE_CODE (t) == UNION_TYPE)
7218 error_at (DECL_SOURCE_LOCATION (x),
7219 "flexible array member in union");
7220 TREE_TYPE (x) = error_mark_node;
7222 else if (DECL_CHAIN (x) != NULL_TREE)
7224 error_at (DECL_SOURCE_LOCATION (x),
7225 "flexible array member not at end of struct");
7226 TREE_TYPE (x) = error_mark_node;
7228 else if (!saw_named_field)
7230 error_at (DECL_SOURCE_LOCATION (x),
7231 "flexible array member in otherwise empty struct");
7232 TREE_TYPE (x) = error_mark_node;
7236 if (pedantic && TREE_CODE (t) == RECORD_TYPE
7237 && flexible_array_type_p (TREE_TYPE (x)))
7238 pedwarn (DECL_SOURCE_LOCATION (x), OPT_pedantic,
7239 "invalid use of structure with flexible array member");
7241 if (DECL_NAME (x)
7242 || TREE_CODE (TREE_TYPE (x)) == RECORD_TYPE
7243 || TREE_CODE (TREE_TYPE (x)) == UNION_TYPE)
7244 saw_named_field = 1;
7247 detect_field_duplicates (fieldlist);
7249 /* Now we have the nearly final fieldlist. Record it,
7250 then lay out the structure or union (including the fields). */
7252 TYPE_FIELDS (t) = fieldlist;
7254 layout_type (t);
7256 /* Give bit-fields their proper types. */
7258 tree *fieldlistp = &fieldlist;
7259 while (*fieldlistp)
7260 if (TREE_CODE (*fieldlistp) == FIELD_DECL && DECL_INITIAL (*fieldlistp)
7261 && TREE_TYPE (*fieldlistp) != error_mark_node)
7263 unsigned HOST_WIDE_INT width
7264 = tree_low_cst (DECL_INITIAL (*fieldlistp), 1);
7265 tree type = TREE_TYPE (*fieldlistp);
7266 if (width != TYPE_PRECISION (type))
7268 TREE_TYPE (*fieldlistp)
7269 = c_build_bitfield_integer_type (width, TYPE_UNSIGNED (type));
7270 DECL_MODE (*fieldlistp) = TYPE_MODE (TREE_TYPE (*fieldlistp));
7272 DECL_INITIAL (*fieldlistp) = 0;
7274 else
7275 fieldlistp = &DECL_CHAIN (*fieldlistp);
7278 /* Now we have the truly final field list.
7279 Store it in this type and in the variants. */
7281 TYPE_FIELDS (t) = fieldlist;
7283 /* If there are lots of fields, sort so we can look through them fast.
7284 We arbitrarily consider 16 or more elts to be "a lot". */
7287 int len = 0;
7289 for (x = fieldlist; x; x = DECL_CHAIN (x))
7291 if (len > 15 || DECL_NAME (x) == NULL)
7292 break;
7293 len += 1;
7296 if (len > 15)
7298 tree *field_array;
7299 struct lang_type *space;
7300 struct sorted_fields_type *space2;
7302 len += list_length (x);
7304 /* Use the same allocation policy here that make_node uses, to
7305 ensure that this lives as long as the rest of the struct decl.
7306 All decls in an inline function need to be saved. */
7308 space = ggc_alloc_cleared_lang_type (sizeof (struct lang_type));
7309 space2 = ggc_alloc_sorted_fields_type
7310 (sizeof (struct sorted_fields_type) + len * sizeof (tree));
7312 len = 0;
7313 space->s = space2;
7314 field_array = &space2->elts[0];
7315 for (x = fieldlist; x; x = DECL_CHAIN (x))
7317 field_array[len++] = x;
7319 /* If there is anonymous struct or union, break out of the loop. */
7320 if (DECL_NAME (x) == NULL)
7321 break;
7323 /* Found no anonymous struct/union. Add the TYPE_LANG_SPECIFIC. */
7324 if (x == NULL)
7326 TYPE_LANG_SPECIFIC (t) = space;
7327 TYPE_LANG_SPECIFIC (t)->s->len = len;
7328 field_array = TYPE_LANG_SPECIFIC (t)->s->elts;
7329 qsort (field_array, len, sizeof (tree), field_decl_cmp);
7334 for (x = TYPE_MAIN_VARIANT (t); x; x = TYPE_NEXT_VARIANT (x))
7336 TYPE_FIELDS (x) = TYPE_FIELDS (t);
7337 TYPE_LANG_SPECIFIC (x) = TYPE_LANG_SPECIFIC (t);
7338 C_TYPE_FIELDS_READONLY (x) = C_TYPE_FIELDS_READONLY (t);
7339 C_TYPE_FIELDS_VOLATILE (x) = C_TYPE_FIELDS_VOLATILE (t);
7340 C_TYPE_VARIABLE_SIZE (x) = C_TYPE_VARIABLE_SIZE (t);
7343 /* If this was supposed to be a transparent union, but we can't
7344 make it one, warn and turn off the flag. */
7345 if (TREE_CODE (t) == UNION_TYPE
7346 && TYPE_TRANSPARENT_AGGR (t)
7347 && (!TYPE_FIELDS (t) || TYPE_MODE (t) != DECL_MODE (TYPE_FIELDS (t))))
7349 TYPE_TRANSPARENT_AGGR (t) = 0;
7350 warning_at (loc, 0, "union cannot be made transparent");
7353 /* If this structure or union completes the type of any previous
7354 variable declaration, lay it out and output its rtl. */
7355 for (x = C_TYPE_INCOMPLETE_VARS (TYPE_MAIN_VARIANT (t));
7357 x = TREE_CHAIN (x))
7359 tree decl = TREE_VALUE (x);
7360 if (TREE_CODE (TREE_TYPE (decl)) == ARRAY_TYPE)
7361 layout_array_type (TREE_TYPE (decl));
7362 if (TREE_CODE (decl) != TYPE_DECL)
7364 layout_decl (decl, 0);
7365 if (c_dialect_objc ())
7366 objc_check_decl (decl);
7367 rest_of_decl_compilation (decl, toplevel, 0);
7368 if (!toplevel)
7369 expand_decl (decl);
7372 C_TYPE_INCOMPLETE_VARS (TYPE_MAIN_VARIANT (t)) = 0;
7374 /* Update type location to the one of the definition, instead of e.g.
7375 a forward declaration. */
7376 if (TYPE_STUB_DECL (t))
7377 DECL_SOURCE_LOCATION (TYPE_STUB_DECL (t)) = loc;
7379 /* Finish debugging output for this type. */
7380 rest_of_type_compilation (t, toplevel);
7382 /* If we're inside a function proper, i.e. not file-scope and not still
7383 parsing parameters, then arrange for the size of a variable sized type
7384 to be bound now. */
7385 if (cur_stmt_list && variably_modified_type_p (t, NULL_TREE))
7386 add_stmt (build_stmt (loc,
7387 DECL_EXPR, build_decl (loc, TYPE_DECL, NULL, t)));
7389 if (warn_cxx_compat)
7390 warn_cxx_compat_finish_struct (fieldlist);
7392 VEC_free (tree, heap, struct_parse_info->struct_types);
7393 VEC_free (c_binding_ptr, heap, struct_parse_info->fields);
7394 VEC_free (tree, heap, struct_parse_info->typedefs_seen);
7395 XDELETE (struct_parse_info);
7397 struct_parse_info = enclosing_struct_parse_info;
7399 /* If this struct is defined inside a struct, add it to
7400 struct_types. */
7401 if (warn_cxx_compat
7402 && struct_parse_info != NULL
7403 && !in_sizeof && !in_typeof && !in_alignof)
7404 VEC_safe_push (tree, heap, struct_parse_info->struct_types, t);
7406 return t;
7409 /* Lay out the type T, and its element type, and so on. */
7411 static void
7412 layout_array_type (tree t)
7414 if (TREE_CODE (TREE_TYPE (t)) == ARRAY_TYPE)
7415 layout_array_type (TREE_TYPE (t));
7416 layout_type (t);
7419 /* Begin compiling the definition of an enumeration type.
7420 NAME is its name (or null if anonymous).
7421 LOC is the enum's location.
7422 Returns the type object, as yet incomplete.
7423 Also records info about it so that build_enumerator
7424 may be used to declare the individual values as they are read. */
7426 tree
7427 start_enum (location_t loc, struct c_enum_contents *the_enum, tree name)
7429 tree enumtype = NULL_TREE;
7430 location_t enumloc = UNKNOWN_LOCATION;
7432 /* If this is the real definition for a previous forward reference,
7433 fill in the contents in the same object that used to be the
7434 forward reference. */
7436 if (name != NULL_TREE)
7437 enumtype = lookup_tag (ENUMERAL_TYPE, name, 1, &enumloc);
7439 if (enumtype == 0 || TREE_CODE (enumtype) != ENUMERAL_TYPE)
7441 enumtype = make_node (ENUMERAL_TYPE);
7442 pushtag (loc, name, enumtype);
7445 if (C_TYPE_BEING_DEFINED (enumtype))
7446 error_at (loc, "nested redefinition of %<enum %E%>", name);
7448 C_TYPE_BEING_DEFINED (enumtype) = 1;
7450 if (TYPE_VALUES (enumtype) != 0)
7452 /* This enum is a named one that has been declared already. */
7453 error_at (loc, "redeclaration of %<enum %E%>", name);
7454 if (enumloc != UNKNOWN_LOCATION)
7455 inform (enumloc, "originally defined here");
7457 /* Completely replace its old definition.
7458 The old enumerators remain defined, however. */
7459 TYPE_VALUES (enumtype) = 0;
7462 the_enum->enum_next_value = integer_zero_node;
7463 the_enum->enum_overflow = 0;
7465 if (flag_short_enums)
7466 TYPE_PACKED (enumtype) = 1;
7468 /* FIXME: This will issue a warning for a use of a type defined
7469 within sizeof in a statement expr. This is not terribly serious
7470 as C++ doesn't permit statement exprs within sizeof anyhow. */
7471 if (warn_cxx_compat && (in_sizeof || in_typeof || in_alignof))
7472 warning_at (loc, OPT_Wc___compat,
7473 "defining type in %qs expression is invalid in C++",
7474 (in_sizeof
7475 ? "sizeof"
7476 : (in_typeof ? "typeof" : "alignof")));
7478 return enumtype;
7481 /* After processing and defining all the values of an enumeration type,
7482 install their decls in the enumeration type and finish it off.
7483 ENUMTYPE is the type object, VALUES a list of decl-value pairs,
7484 and ATTRIBUTES are the specified attributes.
7485 Returns ENUMTYPE. */
7487 tree
7488 finish_enum (tree enumtype, tree values, tree attributes)
7490 tree pair, tem;
7491 tree minnode = 0, maxnode = 0;
7492 int precision, unsign;
7493 bool toplevel = (file_scope == current_scope);
7494 struct lang_type *lt;
7496 decl_attributes (&enumtype, attributes, (int) ATTR_FLAG_TYPE_IN_PLACE);
7498 /* Calculate the maximum value of any enumerator in this type. */
7500 if (values == error_mark_node)
7501 minnode = maxnode = integer_zero_node;
7502 else
7504 minnode = maxnode = TREE_VALUE (values);
7505 for (pair = TREE_CHAIN (values); pair; pair = TREE_CHAIN (pair))
7507 tree value = TREE_VALUE (pair);
7508 if (tree_int_cst_lt (maxnode, value))
7509 maxnode = value;
7510 if (tree_int_cst_lt (value, minnode))
7511 minnode = value;
7515 /* Construct the final type of this enumeration. It is the same
7516 as one of the integral types - the narrowest one that fits, except
7517 that normally we only go as narrow as int - and signed iff any of
7518 the values are negative. */
7519 unsign = (tree_int_cst_sgn (minnode) >= 0);
7520 precision = MAX (tree_int_cst_min_precision (minnode, unsign),
7521 tree_int_cst_min_precision (maxnode, unsign));
7523 if (TYPE_PACKED (enumtype) || precision > TYPE_PRECISION (integer_type_node))
7525 tem = c_common_type_for_size (precision, unsign);
7526 if (tem == NULL)
7528 warning (0, "enumeration values exceed range of largest integer");
7529 tem = long_long_integer_type_node;
7532 else
7533 tem = unsign ? unsigned_type_node : integer_type_node;
7535 TYPE_MIN_VALUE (enumtype) = TYPE_MIN_VALUE (tem);
7536 TYPE_MAX_VALUE (enumtype) = TYPE_MAX_VALUE (tem);
7537 TYPE_UNSIGNED (enumtype) = TYPE_UNSIGNED (tem);
7538 TYPE_SIZE (enumtype) = 0;
7540 /* If the precision of the type was specific with an attribute and it
7541 was too small, give an error. Otherwise, use it. */
7542 if (TYPE_PRECISION (enumtype))
7544 if (precision > TYPE_PRECISION (enumtype))
7545 error ("specified mode too small for enumeral values");
7547 else
7548 TYPE_PRECISION (enumtype) = TYPE_PRECISION (tem);
7550 layout_type (enumtype);
7552 if (values != error_mark_node)
7554 /* Change the type of the enumerators to be the enum type. We
7555 need to do this irrespective of the size of the enum, for
7556 proper type checking. Replace the DECL_INITIALs of the
7557 enumerators, and the value slots of the list, with copies
7558 that have the enum type; they cannot be modified in place
7559 because they may be shared (e.g. integer_zero_node) Finally,
7560 change the purpose slots to point to the names of the decls. */
7561 for (pair = values; pair; pair = TREE_CHAIN (pair))
7563 tree enu = TREE_PURPOSE (pair);
7564 tree ini = DECL_INITIAL (enu);
7566 TREE_TYPE (enu) = enumtype;
7568 /* The ISO C Standard mandates enumerators to have type int,
7569 even though the underlying type of an enum type is
7570 unspecified. However, GCC allows enumerators of any
7571 integer type as an extensions. build_enumerator()
7572 converts any enumerators that fit in an int to type int,
7573 to avoid promotions to unsigned types when comparing
7574 integers with enumerators that fit in the int range.
7575 When -pedantic is given, build_enumerator() would have
7576 already warned about those that don't fit. Here we
7577 convert the rest to the enumerator type. */
7578 if (TREE_TYPE (ini) != integer_type_node)
7579 ini = convert (enumtype, ini);
7581 DECL_INITIAL (enu) = ini;
7582 TREE_PURPOSE (pair) = DECL_NAME (enu);
7583 TREE_VALUE (pair) = ini;
7586 TYPE_VALUES (enumtype) = values;
7589 /* Record the min/max values so that we can warn about bit-field
7590 enumerations that are too small for the values. */
7591 lt = ggc_alloc_cleared_lang_type (sizeof (struct lang_type));
7592 lt->enum_min = minnode;
7593 lt->enum_max = maxnode;
7594 TYPE_LANG_SPECIFIC (enumtype) = lt;
7596 /* Fix up all variant types of this enum type. */
7597 for (tem = TYPE_MAIN_VARIANT (enumtype); tem; tem = TYPE_NEXT_VARIANT (tem))
7599 if (tem == enumtype)
7600 continue;
7601 TYPE_VALUES (tem) = TYPE_VALUES (enumtype);
7602 TYPE_MIN_VALUE (tem) = TYPE_MIN_VALUE (enumtype);
7603 TYPE_MAX_VALUE (tem) = TYPE_MAX_VALUE (enumtype);
7604 TYPE_SIZE (tem) = TYPE_SIZE (enumtype);
7605 TYPE_SIZE_UNIT (tem) = TYPE_SIZE_UNIT (enumtype);
7606 SET_TYPE_MODE (tem, TYPE_MODE (enumtype));
7607 TYPE_PRECISION (tem) = TYPE_PRECISION (enumtype);
7608 TYPE_ALIGN (tem) = TYPE_ALIGN (enumtype);
7609 TYPE_USER_ALIGN (tem) = TYPE_USER_ALIGN (enumtype);
7610 TYPE_UNSIGNED (tem) = TYPE_UNSIGNED (enumtype);
7611 TYPE_LANG_SPECIFIC (tem) = TYPE_LANG_SPECIFIC (enumtype);
7614 /* Finish debugging output for this type. */
7615 rest_of_type_compilation (enumtype, toplevel);
7617 /* If this enum is defined inside a struct, add it to
7618 struct_types. */
7619 if (warn_cxx_compat
7620 && struct_parse_info != NULL
7621 && !in_sizeof && !in_typeof && !in_alignof)
7622 VEC_safe_push (tree, heap, struct_parse_info->struct_types, enumtype);
7624 return enumtype;
7627 /* Build and install a CONST_DECL for one value of the
7628 current enumeration type (one that was begun with start_enum).
7629 DECL_LOC is the location of the enumerator.
7630 LOC is the location of the '=' operator if any, DECL_LOC otherwise.
7631 Return a tree-list containing the CONST_DECL and its value.
7632 Assignment of sequential values by default is handled here. */
7634 tree
7635 build_enumerator (location_t decl_loc, location_t loc,
7636 struct c_enum_contents *the_enum, tree name, tree value)
7638 tree decl, type;
7640 /* Validate and default VALUE. */
7642 if (value != 0)
7644 /* Don't issue more errors for error_mark_node (i.e. an
7645 undeclared identifier) - just ignore the value expression. */
7646 if (value == error_mark_node)
7647 value = 0;
7648 else if (!INTEGRAL_TYPE_P (TREE_TYPE (value)))
7650 error_at (loc, "enumerator value for %qE is not an integer constant",
7651 name);
7652 value = 0;
7654 else
7656 if (TREE_CODE (value) != INTEGER_CST)
7658 value = c_fully_fold (value, false, NULL);
7659 if (TREE_CODE (value) == INTEGER_CST)
7660 pedwarn (loc, OPT_pedantic,
7661 "enumerator value for %qE is not an integer "
7662 "constant expression", name);
7664 if (TREE_CODE (value) != INTEGER_CST)
7666 error ("enumerator value for %qE is not an integer constant",
7667 name);
7668 value = 0;
7670 else
7672 value = default_conversion (value);
7673 constant_expression_warning (value);
7678 /* Default based on previous value. */
7679 /* It should no longer be possible to have NON_LVALUE_EXPR
7680 in the default. */
7681 if (value == 0)
7683 value = the_enum->enum_next_value;
7684 if (the_enum->enum_overflow)
7685 error_at (loc, "overflow in enumeration values");
7687 /* Even though the underlying type of an enum is unspecified, the
7688 type of enumeration constants is explicitly defined as int
7689 (6.4.4.3/2 in the C99 Standard). GCC allows any integer type as
7690 an extension. */
7691 else if (!int_fits_type_p (value, integer_type_node))
7692 pedwarn (loc, OPT_pedantic,
7693 "ISO C restricts enumerator values to range of %<int%>");
7695 /* The ISO C Standard mandates enumerators to have type int, even
7696 though the underlying type of an enum type is unspecified.
7697 However, GCC allows enumerators of any integer type as an
7698 extensions. Here we convert any enumerators that fit in an int
7699 to type int, to avoid promotions to unsigned types when comparing
7700 integers with enumerators that fit in the int range. When
7701 -pedantic is given, we would have already warned about those that
7702 don't fit. We have to do this here rather than in finish_enum
7703 because this value may be used to define more enumerators. */
7704 if (int_fits_type_p (value, integer_type_node))
7705 value = convert (integer_type_node, value);
7707 /* Set basis for default for next value. */
7708 the_enum->enum_next_value
7709 = build_binary_op (EXPR_LOC_OR_HERE (value),
7710 PLUS_EXPR, value, integer_one_node, 0);
7711 the_enum->enum_overflow = tree_int_cst_lt (the_enum->enum_next_value, value);
7713 /* Now create a declaration for the enum value name. */
7715 type = TREE_TYPE (value);
7716 type = c_common_type_for_size (MAX (TYPE_PRECISION (type),
7717 TYPE_PRECISION (integer_type_node)),
7718 (TYPE_PRECISION (type)
7719 >= TYPE_PRECISION (integer_type_node)
7720 && TYPE_UNSIGNED (type)));
7722 decl = build_decl (decl_loc, CONST_DECL, name, type);
7723 DECL_INITIAL (decl) = convert (type, value);
7724 pushdecl (decl);
7726 return tree_cons (decl, value, NULL_TREE);
7730 /* Create the FUNCTION_DECL for a function definition.
7731 DECLSPECS, DECLARATOR and ATTRIBUTES are the parts of
7732 the declaration; they describe the function's name and the type it returns,
7733 but twisted together in a fashion that parallels the syntax of C.
7735 This function creates a binding context for the function body
7736 as well as setting up the FUNCTION_DECL in current_function_decl.
7738 Returns 1 on success. If the DECLARATOR is not suitable for a function
7739 (it defines a datum instead), we return 0, which tells
7740 yyparse to report a parse error. */
7743 start_function (struct c_declspecs *declspecs, struct c_declarator *declarator,
7744 tree attributes)
7746 tree decl1, old_decl;
7747 tree restype, resdecl;
7748 location_t loc;
7750 current_function_returns_value = 0; /* Assume, until we see it does. */
7751 current_function_returns_null = 0;
7752 current_function_returns_abnormally = 0;
7753 warn_about_return_type = 0;
7754 c_switch_stack = NULL;
7756 /* Indicate no valid break/continue context by setting these variables
7757 to some non-null, non-label value. We'll notice and emit the proper
7758 error message in c_finish_bc_stmt. */
7759 c_break_label = c_cont_label = size_zero_node;
7761 decl1 = grokdeclarator (declarator, declspecs, FUNCDEF, true, NULL,
7762 &attributes, NULL, NULL, DEPRECATED_NORMAL);
7764 /* If the declarator is not suitable for a function definition,
7765 cause a syntax error. */
7766 if (decl1 == 0)
7767 return 0;
7769 loc = DECL_SOURCE_LOCATION (decl1);
7771 decl_attributes (&decl1, attributes, 0);
7773 if (DECL_DECLARED_INLINE_P (decl1)
7774 && DECL_UNINLINABLE (decl1)
7775 && lookup_attribute ("noinline", DECL_ATTRIBUTES (decl1)))
7776 warning_at (loc, OPT_Wattributes,
7777 "inline function %qD given attribute noinline",
7778 decl1);
7780 /* Handle gnu_inline attribute. */
7781 if (declspecs->inline_p
7782 && !flag_gnu89_inline
7783 && TREE_CODE (decl1) == FUNCTION_DECL
7784 && (lookup_attribute ("gnu_inline", DECL_ATTRIBUTES (decl1))
7785 || current_function_decl))
7787 if (declspecs->storage_class != csc_static)
7788 DECL_EXTERNAL (decl1) = !DECL_EXTERNAL (decl1);
7791 announce_function (decl1);
7793 if (!COMPLETE_OR_VOID_TYPE_P (TREE_TYPE (TREE_TYPE (decl1))))
7795 error_at (loc, "return type is an incomplete type");
7796 /* Make it return void instead. */
7797 TREE_TYPE (decl1)
7798 = build_function_type (void_type_node,
7799 TYPE_ARG_TYPES (TREE_TYPE (decl1)));
7802 if (warn_about_return_type)
7803 pedwarn_c99 (loc, flag_isoc99 ? 0
7804 : (warn_return_type ? OPT_Wreturn_type : OPT_Wimplicit_int),
7805 "return type defaults to %<int%>");
7807 /* Make the init_value nonzero so pushdecl knows this is not tentative.
7808 error_mark_node is replaced below (in pop_scope) with the BLOCK. */
7809 DECL_INITIAL (decl1) = error_mark_node;
7811 /* A nested function is not global. */
7812 if (current_function_decl != 0)
7813 TREE_PUBLIC (decl1) = 0;
7815 /* If this definition isn't a prototype and we had a prototype declaration
7816 before, copy the arg type info from that prototype. */
7817 old_decl = lookup_name_in_scope (DECL_NAME (decl1), current_scope);
7818 if (old_decl && TREE_CODE (old_decl) != FUNCTION_DECL)
7819 old_decl = 0;
7820 current_function_prototype_locus = UNKNOWN_LOCATION;
7821 current_function_prototype_built_in = false;
7822 current_function_prototype_arg_types = NULL_TREE;
7823 if (!prototype_p (TREE_TYPE (decl1)))
7825 if (old_decl != 0 && TREE_CODE (TREE_TYPE (old_decl)) == FUNCTION_TYPE
7826 && comptypes (TREE_TYPE (TREE_TYPE (decl1)),
7827 TREE_TYPE (TREE_TYPE (old_decl))))
7829 TREE_TYPE (decl1) = composite_type (TREE_TYPE (old_decl),
7830 TREE_TYPE (decl1));
7831 current_function_prototype_locus = DECL_SOURCE_LOCATION (old_decl);
7832 current_function_prototype_built_in
7833 = C_DECL_BUILTIN_PROTOTYPE (old_decl);
7834 current_function_prototype_arg_types
7835 = TYPE_ARG_TYPES (TREE_TYPE (decl1));
7837 if (TREE_PUBLIC (decl1))
7839 /* If there is an external prototype declaration of this
7840 function, record its location but do not copy information
7841 to this decl. This may be an invisible declaration
7842 (built-in or in a scope which has finished) or simply
7843 have more refined argument types than any declaration
7844 found above. */
7845 struct c_binding *b;
7846 for (b = I_SYMBOL_BINDING (DECL_NAME (decl1)); b; b = b->shadowed)
7847 if (B_IN_SCOPE (b, external_scope))
7848 break;
7849 if (b)
7851 tree ext_decl, ext_type;
7852 ext_decl = b->decl;
7853 ext_type = b->u.type ? b->u.type : TREE_TYPE (ext_decl);
7854 if (TREE_CODE (ext_type) == FUNCTION_TYPE
7855 && comptypes (TREE_TYPE (TREE_TYPE (decl1)),
7856 TREE_TYPE (ext_type)))
7858 current_function_prototype_locus
7859 = DECL_SOURCE_LOCATION (ext_decl);
7860 current_function_prototype_built_in
7861 = C_DECL_BUILTIN_PROTOTYPE (ext_decl);
7862 current_function_prototype_arg_types
7863 = TYPE_ARG_TYPES (ext_type);
7869 /* Optionally warn of old-fashioned def with no previous prototype. */
7870 if (warn_strict_prototypes
7871 && old_decl != error_mark_node
7872 && !prototype_p (TREE_TYPE (decl1))
7873 && C_DECL_ISNT_PROTOTYPE (old_decl))
7874 warning_at (loc, OPT_Wstrict_prototypes,
7875 "function declaration isn%'t a prototype");
7876 /* Optionally warn of any global def with no previous prototype. */
7877 else if (warn_missing_prototypes
7878 && old_decl != error_mark_node
7879 && TREE_PUBLIC (decl1)
7880 && !MAIN_NAME_P (DECL_NAME (decl1))
7881 && C_DECL_ISNT_PROTOTYPE (old_decl))
7882 warning_at (loc, OPT_Wmissing_prototypes,
7883 "no previous prototype for %qD", decl1);
7884 /* Optionally warn of any def with no previous prototype
7885 if the function has already been used. */
7886 else if (warn_missing_prototypes
7887 && old_decl != 0
7888 && old_decl != error_mark_node
7889 && TREE_USED (old_decl)
7890 && !prototype_p (TREE_TYPE (old_decl)))
7891 warning_at (loc, OPT_Wmissing_prototypes,
7892 "%qD was used with no prototype before its definition", decl1);
7893 /* Optionally warn of any global def with no previous declaration. */
7894 else if (warn_missing_declarations
7895 && TREE_PUBLIC (decl1)
7896 && old_decl == 0
7897 && !MAIN_NAME_P (DECL_NAME (decl1)))
7898 warning_at (loc, OPT_Wmissing_declarations,
7899 "no previous declaration for %qD",
7900 decl1);
7901 /* Optionally warn of any def with no previous declaration
7902 if the function has already been used. */
7903 else if (warn_missing_declarations
7904 && old_decl != 0
7905 && old_decl != error_mark_node
7906 && TREE_USED (old_decl)
7907 && C_DECL_IMPLICIT (old_decl))
7908 warning_at (loc, OPT_Wmissing_declarations,
7909 "%qD was used with no declaration before its definition", decl1);
7911 /* This function exists in static storage.
7912 (This does not mean `static' in the C sense!) */
7913 TREE_STATIC (decl1) = 1;
7915 /* This is the earliest point at which we might know the assembler
7916 name of the function. Thus, if it's set before this, die horribly. */
7917 gcc_assert (!DECL_ASSEMBLER_NAME_SET_P (decl1));
7919 /* If #pragma weak was used, mark the decl weak now. */
7920 if (current_scope == file_scope)
7921 maybe_apply_pragma_weak (decl1);
7923 /* Warn for unlikely, improbable, or stupid declarations of `main'. */
7924 if (warn_main && MAIN_NAME_P (DECL_NAME (decl1)))
7926 if (TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (decl1)))
7927 != integer_type_node)
7928 pedwarn (loc, OPT_Wmain, "return type of %qD is not %<int%>", decl1);
7930 check_main_parameter_types (decl1);
7932 if (!TREE_PUBLIC (decl1))
7933 pedwarn (loc, OPT_Wmain,
7934 "%qD is normally a non-static function", decl1);
7937 /* Record the decl so that the function name is defined.
7938 If we already have a decl for this name, and it is a FUNCTION_DECL,
7939 use the old decl. */
7941 current_function_decl = pushdecl (decl1);
7943 push_scope ();
7944 declare_parm_level ();
7946 restype = TREE_TYPE (TREE_TYPE (current_function_decl));
7947 resdecl = build_decl (loc, RESULT_DECL, NULL_TREE, restype);
7948 DECL_ARTIFICIAL (resdecl) = 1;
7949 DECL_IGNORED_P (resdecl) = 1;
7950 DECL_RESULT (current_function_decl) = resdecl;
7952 start_fname_decls ();
7954 return 1;
7957 /* Subroutine of store_parm_decls which handles new-style function
7958 definitions (prototype format). The parms already have decls, so we
7959 need only record them as in effect and complain if any redundant
7960 old-style parm decls were written. */
7961 static void
7962 store_parm_decls_newstyle (tree fndecl, const struct c_arg_info *arg_info)
7964 tree decl;
7965 c_arg_tag *tag;
7966 unsigned ix;
7968 if (current_scope->bindings)
7970 error_at (DECL_SOURCE_LOCATION (fndecl),
7971 "old-style parameter declarations in prototyped "
7972 "function definition");
7974 /* Get rid of the old-style declarations. */
7975 pop_scope ();
7976 push_scope ();
7978 /* Don't issue this warning for nested functions, and don't issue this
7979 warning if we got here because ARG_INFO_TYPES was error_mark_node
7980 (this happens when a function definition has just an ellipsis in
7981 its parameter list). */
7982 else if (!in_system_header && !current_function_scope
7983 && arg_info->types != error_mark_node)
7984 warning_at (DECL_SOURCE_LOCATION (fndecl), OPT_Wtraditional,
7985 "traditional C rejects ISO C style function definitions");
7987 /* Now make all the parameter declarations visible in the function body.
7988 We can bypass most of the grunt work of pushdecl. */
7989 for (decl = arg_info->parms; decl; decl = DECL_CHAIN (decl))
7991 DECL_CONTEXT (decl) = current_function_decl;
7992 if (DECL_NAME (decl))
7994 bind (DECL_NAME (decl), decl, current_scope,
7995 /*invisible=*/false, /*nested=*/false,
7996 UNKNOWN_LOCATION);
7997 if (!TREE_USED (decl))
7998 warn_if_shadowing (decl);
8000 else
8001 error_at (DECL_SOURCE_LOCATION (decl), "parameter name omitted");
8004 /* Record the parameter list in the function declaration. */
8005 DECL_ARGUMENTS (fndecl) = arg_info->parms;
8007 /* Now make all the ancillary declarations visible, likewise. */
8008 for (decl = arg_info->others; decl; decl = DECL_CHAIN (decl))
8010 DECL_CONTEXT (decl) = current_function_decl;
8011 if (DECL_NAME (decl))
8012 bind (DECL_NAME (decl), decl, current_scope,
8013 /*invisible=*/false,
8014 /*nested=*/(TREE_CODE (decl) == FUNCTION_DECL),
8015 UNKNOWN_LOCATION);
8018 /* And all the tag declarations. */
8019 FOR_EACH_VEC_ELT_REVERSE (c_arg_tag, arg_info->tags, ix, tag)
8020 if (tag->id)
8021 bind (tag->id, tag->type, current_scope,
8022 /*invisible=*/false, /*nested=*/false, UNKNOWN_LOCATION);
8025 /* Subroutine of store_parm_decls which handles old-style function
8026 definitions (separate parameter list and declarations). */
8028 static void
8029 store_parm_decls_oldstyle (tree fndecl, const struct c_arg_info *arg_info)
8031 struct c_binding *b;
8032 tree parm, decl, last;
8033 tree parmids = arg_info->parms;
8034 struct pointer_set_t *seen_args = pointer_set_create ();
8036 if (!in_system_header)
8037 warning_at (DECL_SOURCE_LOCATION (fndecl),
8038 OPT_Wold_style_definition, "old-style function definition");
8040 /* Match each formal parameter name with its declaration. Save each
8041 decl in the appropriate TREE_PURPOSE slot of the parmids chain. */
8042 for (parm = parmids; parm; parm = TREE_CHAIN (parm))
8044 if (TREE_VALUE (parm) == 0)
8046 error_at (DECL_SOURCE_LOCATION (fndecl),
8047 "parameter name missing from parameter list");
8048 TREE_PURPOSE (parm) = 0;
8049 continue;
8052 b = I_SYMBOL_BINDING (TREE_VALUE (parm));
8053 if (b && B_IN_CURRENT_SCOPE (b))
8055 decl = b->decl;
8056 /* Skip erroneous parameters. */
8057 if (decl == error_mark_node)
8058 continue;
8059 /* If we got something other than a PARM_DECL it is an error. */
8060 if (TREE_CODE (decl) != PARM_DECL)
8061 error_at (DECL_SOURCE_LOCATION (decl),
8062 "%qD declared as a non-parameter", decl);
8063 /* If the declaration is already marked, we have a duplicate
8064 name. Complain and ignore the duplicate. */
8065 else if (pointer_set_contains (seen_args, decl))
8067 error_at (DECL_SOURCE_LOCATION (decl),
8068 "multiple parameters named %qD", decl);
8069 TREE_PURPOSE (parm) = 0;
8070 continue;
8072 /* If the declaration says "void", complain and turn it into
8073 an int. */
8074 else if (VOID_TYPE_P (TREE_TYPE (decl)))
8076 error_at (DECL_SOURCE_LOCATION (decl),
8077 "parameter %qD declared with void type", decl);
8078 TREE_TYPE (decl) = integer_type_node;
8079 DECL_ARG_TYPE (decl) = integer_type_node;
8080 layout_decl (decl, 0);
8082 warn_if_shadowing (decl);
8084 /* If no declaration found, default to int. */
8085 else
8087 /* FIXME diagnostics: This should be the location of the argument,
8088 not the FNDECL. E.g., for an old-style declaration
8090 int f10(v) { blah; }
8092 We should use the location of the V, not the F10.
8093 Unfortunately, the V is an IDENTIFIER_NODE which has no
8094 location. In the future we need locations for c_arg_info
8095 entries.
8097 See gcc.dg/Wshadow-3.c for an example of this problem. */
8098 decl = build_decl (DECL_SOURCE_LOCATION (fndecl),
8099 PARM_DECL, TREE_VALUE (parm), integer_type_node);
8100 DECL_ARG_TYPE (decl) = TREE_TYPE (decl);
8101 pushdecl (decl);
8102 warn_if_shadowing (decl);
8104 if (flag_isoc99)
8105 pedwarn (DECL_SOURCE_LOCATION (decl),
8106 0, "type of %qD defaults to %<int%>", decl);
8107 else
8108 warning_at (DECL_SOURCE_LOCATION (decl),
8109 OPT_Wmissing_parameter_type,
8110 "type of %qD defaults to %<int%>", decl);
8113 TREE_PURPOSE (parm) = decl;
8114 pointer_set_insert (seen_args, decl);
8117 /* Now examine the parms chain for incomplete declarations
8118 and declarations with no corresponding names. */
8120 for (b = current_scope->bindings; b; b = b->prev)
8122 parm = b->decl;
8123 if (TREE_CODE (parm) != PARM_DECL)
8124 continue;
8126 if (TREE_TYPE (parm) != error_mark_node
8127 && !COMPLETE_TYPE_P (TREE_TYPE (parm)))
8129 error_at (DECL_SOURCE_LOCATION (parm),
8130 "parameter %qD has incomplete type", parm);
8131 TREE_TYPE (parm) = error_mark_node;
8134 if (!pointer_set_contains (seen_args, parm))
8136 error_at (DECL_SOURCE_LOCATION (parm),
8137 "declaration for parameter %qD but no such parameter",
8138 parm);
8140 /* Pretend the parameter was not missing.
8141 This gets us to a standard state and minimizes
8142 further error messages. */
8143 parmids = chainon (parmids, tree_cons (parm, 0, 0));
8147 /* Chain the declarations together in the order of the list of
8148 names. Store that chain in the function decl, replacing the
8149 list of names. Update the current scope to match. */
8150 DECL_ARGUMENTS (fndecl) = 0;
8152 for (parm = parmids; parm; parm = TREE_CHAIN (parm))
8153 if (TREE_PURPOSE (parm))
8154 break;
8155 if (parm && TREE_PURPOSE (parm))
8157 last = TREE_PURPOSE (parm);
8158 DECL_ARGUMENTS (fndecl) = last;
8160 for (parm = TREE_CHAIN (parm); parm; parm = TREE_CHAIN (parm))
8161 if (TREE_PURPOSE (parm))
8163 DECL_CHAIN (last) = TREE_PURPOSE (parm);
8164 last = TREE_PURPOSE (parm);
8166 DECL_CHAIN (last) = 0;
8169 pointer_set_destroy (seen_args);
8171 /* If there was a previous prototype,
8172 set the DECL_ARG_TYPE of each argument according to
8173 the type previously specified, and report any mismatches. */
8175 if (current_function_prototype_arg_types)
8177 tree type;
8178 for (parm = DECL_ARGUMENTS (fndecl),
8179 type = current_function_prototype_arg_types;
8180 parm || (type && TREE_VALUE (type) != error_mark_node
8181 && (TYPE_MAIN_VARIANT (TREE_VALUE (type)) != void_type_node));
8182 parm = DECL_CHAIN (parm), type = TREE_CHAIN (type))
8184 if (parm == 0 || type == 0
8185 || TYPE_MAIN_VARIANT (TREE_VALUE (type)) == void_type_node)
8187 if (current_function_prototype_built_in)
8188 warning_at (DECL_SOURCE_LOCATION (fndecl),
8189 0, "number of arguments doesn%'t match "
8190 "built-in prototype");
8191 else
8193 /* FIXME diagnostics: This should be the location of
8194 FNDECL, but there is bug when a prototype is
8195 declared inside function context, but defined
8196 outside of it (e.g., gcc.dg/pr15698-2.c). In
8197 which case FNDECL gets the location of the
8198 prototype, not the definition. */
8199 error_at (input_location,
8200 "number of arguments doesn%'t match prototype");
8202 error_at (current_function_prototype_locus,
8203 "prototype declaration");
8205 break;
8207 /* Type for passing arg must be consistent with that
8208 declared for the arg. ISO C says we take the unqualified
8209 type for parameters declared with qualified type. */
8210 if (TREE_TYPE (parm) != error_mark_node
8211 && TREE_TYPE (type) != error_mark_node
8212 && !comptypes (TYPE_MAIN_VARIANT (DECL_ARG_TYPE (parm)),
8213 TYPE_MAIN_VARIANT (TREE_VALUE (type))))
8215 if (TYPE_MAIN_VARIANT (TREE_TYPE (parm))
8216 == TYPE_MAIN_VARIANT (TREE_VALUE (type)))
8218 /* Adjust argument to match prototype. E.g. a previous
8219 `int foo(float);' prototype causes
8220 `int foo(x) float x; {...}' to be treated like
8221 `int foo(float x) {...}'. This is particularly
8222 useful for argument types like uid_t. */
8223 DECL_ARG_TYPE (parm) = TREE_TYPE (parm);
8225 if (targetm.calls.promote_prototypes (TREE_TYPE (current_function_decl))
8226 && INTEGRAL_TYPE_P (TREE_TYPE (parm))
8227 && TYPE_PRECISION (TREE_TYPE (parm))
8228 < TYPE_PRECISION (integer_type_node))
8229 DECL_ARG_TYPE (parm) = integer_type_node;
8231 /* ??? Is it possible to get here with a
8232 built-in prototype or will it always have
8233 been diagnosed as conflicting with an
8234 old-style definition and discarded? */
8235 if (current_function_prototype_built_in)
8236 warning_at (DECL_SOURCE_LOCATION (parm),
8237 OPT_pedantic, "promoted argument %qD "
8238 "doesn%'t match built-in prototype", parm);
8239 else
8241 pedwarn (DECL_SOURCE_LOCATION (parm),
8242 OPT_pedantic, "promoted argument %qD "
8243 "doesn%'t match prototype", parm);
8244 pedwarn (current_function_prototype_locus, OPT_pedantic,
8245 "prototype declaration");
8248 else
8250 if (current_function_prototype_built_in)
8251 warning_at (DECL_SOURCE_LOCATION (parm),
8252 0, "argument %qD doesn%'t match "
8253 "built-in prototype", parm);
8254 else
8256 error_at (DECL_SOURCE_LOCATION (parm),
8257 "argument %qD doesn%'t match prototype", parm);
8258 error_at (current_function_prototype_locus,
8259 "prototype declaration");
8264 TYPE_ACTUAL_ARG_TYPES (TREE_TYPE (fndecl)) = 0;
8267 /* Otherwise, create a prototype that would match. */
8269 else
8271 tree actual = 0, last = 0, type;
8273 for (parm = DECL_ARGUMENTS (fndecl); parm; parm = DECL_CHAIN (parm))
8275 type = tree_cons (NULL_TREE, DECL_ARG_TYPE (parm), NULL_TREE);
8276 if (last)
8277 TREE_CHAIN (last) = type;
8278 else
8279 actual = type;
8280 last = type;
8282 type = tree_cons (NULL_TREE, void_type_node, NULL_TREE);
8283 if (last)
8284 TREE_CHAIN (last) = type;
8285 else
8286 actual = type;
8288 /* We are going to assign a new value for the TYPE_ACTUAL_ARG_TYPES
8289 of the type of this function, but we need to avoid having this
8290 affect the types of other similarly-typed functions, so we must
8291 first force the generation of an identical (but separate) type
8292 node for the relevant function type. The new node we create
8293 will be a variant of the main variant of the original function
8294 type. */
8296 TREE_TYPE (fndecl) = build_variant_type_copy (TREE_TYPE (fndecl));
8298 TYPE_ACTUAL_ARG_TYPES (TREE_TYPE (fndecl)) = actual;
8302 /* Store parameter declarations passed in ARG_INFO into the current
8303 function declaration. */
8305 void
8306 store_parm_decls_from (struct c_arg_info *arg_info)
8308 current_function_arg_info = arg_info;
8309 store_parm_decls ();
8312 /* Store the parameter declarations into the current function declaration.
8313 This is called after parsing the parameter declarations, before
8314 digesting the body of the function.
8316 For an old-style definition, construct a prototype out of the old-style
8317 parameter declarations and inject it into the function's type. */
8319 void
8320 store_parm_decls (void)
8322 tree fndecl = current_function_decl;
8323 bool proto;
8325 /* The argument information block for FNDECL. */
8326 struct c_arg_info *arg_info = current_function_arg_info;
8327 current_function_arg_info = 0;
8329 /* True if this definition is written with a prototype. Note:
8330 despite C99 6.7.5.3p14, we can *not* treat an empty argument
8331 list in a function definition as equivalent to (void) -- an
8332 empty argument list specifies the function has no parameters,
8333 but only (void) sets up a prototype for future calls. */
8334 proto = arg_info->types != 0;
8336 if (proto)
8337 store_parm_decls_newstyle (fndecl, arg_info);
8338 else
8339 store_parm_decls_oldstyle (fndecl, arg_info);
8341 /* The next call to push_scope will be a function body. */
8343 next_is_function_body = true;
8345 /* Write a record describing this function definition to the prototypes
8346 file (if requested). */
8348 gen_aux_info_record (fndecl, 1, 0, proto);
8350 /* Initialize the RTL code for the function. */
8351 allocate_struct_function (fndecl, false);
8353 /* Begin the statement tree for this function. */
8354 DECL_SAVED_TREE (fndecl) = push_stmt_list ();
8356 /* ??? Insert the contents of the pending sizes list into the function
8357 to be evaluated. The only reason left to have this is
8358 void foo(int n, int array[n++])
8359 because we throw away the array type in favor of a pointer type, and
8360 thus won't naturally see the SAVE_EXPR containing the increment. All
8361 other pending sizes would be handled by gimplify_parameters. */
8363 VEC(tree,gc) *pending_sizes = get_pending_sizes ();
8364 tree t;
8365 int i;
8367 FOR_EACH_VEC_ELT (tree, pending_sizes, i, t)
8368 add_stmt (t);
8371 /* Even though we're inside a function body, we still don't want to
8372 call expand_expr to calculate the size of a variable-sized array.
8373 We haven't necessarily assigned RTL to all variables yet, so it's
8374 not safe to try to expand expressions involving them. */
8375 cfun->dont_save_pending_sizes_p = 1;
8379 /* Finish up a function declaration and compile that function
8380 all the way to assembler language output. Then free the storage
8381 for the function definition.
8383 This is called after parsing the body of the function definition. */
8385 void
8386 finish_function (void)
8388 tree fndecl = current_function_decl;
8390 if (c_dialect_objc ())
8391 objc_finish_function ();
8393 if (TREE_CODE (fndecl) == FUNCTION_DECL
8394 && targetm.calls.promote_prototypes (TREE_TYPE (fndecl)))
8396 tree args = DECL_ARGUMENTS (fndecl);
8397 for (; args; args = DECL_CHAIN (args))
8399 tree type = TREE_TYPE (args);
8400 if (INTEGRAL_TYPE_P (type)
8401 && TYPE_PRECISION (type) < TYPE_PRECISION (integer_type_node))
8402 DECL_ARG_TYPE (args) = integer_type_node;
8406 if (DECL_INITIAL (fndecl) && DECL_INITIAL (fndecl) != error_mark_node)
8407 BLOCK_SUPERCONTEXT (DECL_INITIAL (fndecl)) = fndecl;
8409 /* Must mark the RESULT_DECL as being in this function. */
8411 if (DECL_RESULT (fndecl) && DECL_RESULT (fndecl) != error_mark_node)
8412 DECL_CONTEXT (DECL_RESULT (fndecl)) = fndecl;
8414 if (MAIN_NAME_P (DECL_NAME (fndecl)) && flag_hosted
8415 && TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (fndecl)))
8416 == integer_type_node && flag_isoc99)
8418 /* Hack. We don't want the middle-end to warn that this return
8419 is unreachable, so we mark its location as special. Using
8420 UNKNOWN_LOCATION has the problem that it gets clobbered in
8421 annotate_one_with_locus. A cleaner solution might be to
8422 ensure ! should_carry_locus_p (stmt), but that needs a flag.
8424 c_finish_return (BUILTINS_LOCATION, integer_zero_node, NULL_TREE);
8427 /* Tie off the statement tree for this function. */
8428 DECL_SAVED_TREE (fndecl) = pop_stmt_list (DECL_SAVED_TREE (fndecl));
8430 finish_fname_decls ();
8432 /* Complain if there's just no return statement. */
8433 if (warn_return_type
8434 && TREE_CODE (TREE_TYPE (TREE_TYPE (fndecl))) != VOID_TYPE
8435 && !current_function_returns_value && !current_function_returns_null
8436 /* Don't complain if we are no-return. */
8437 && !current_function_returns_abnormally
8438 /* Don't complain if we are declared noreturn. */
8439 && !TREE_THIS_VOLATILE (fndecl)
8440 /* Don't warn for main(). */
8441 && !MAIN_NAME_P (DECL_NAME (fndecl))
8442 /* Or if they didn't actually specify a return type. */
8443 && !C_FUNCTION_IMPLICIT_INT (fndecl)
8444 /* Normally, with -Wreturn-type, flow will complain, but we might
8445 optimize out static functions. */
8446 && !TREE_PUBLIC (fndecl))
8448 warning (OPT_Wreturn_type,
8449 "no return statement in function returning non-void");
8450 TREE_NO_WARNING (fndecl) = 1;
8453 /* Complain about parameters that are only set, but never otherwise used. */
8454 if (warn_unused_but_set_parameter)
8456 tree decl;
8458 for (decl = DECL_ARGUMENTS (fndecl);
8459 decl;
8460 decl = DECL_CHAIN (decl))
8461 if (TREE_USED (decl)
8462 && TREE_CODE (decl) == PARM_DECL
8463 && !DECL_READ_P (decl)
8464 && DECL_NAME (decl)
8465 && !DECL_ARTIFICIAL (decl)
8466 && !TREE_NO_WARNING (decl))
8467 warning_at (DECL_SOURCE_LOCATION (decl),
8468 OPT_Wunused_but_set_parameter,
8469 "parameter %qD set but not used", decl);
8472 /* Store the end of the function, so that we get good line number
8473 info for the epilogue. */
8474 cfun->function_end_locus = input_location;
8476 /* Finalize the ELF visibility for the function. */
8477 c_determine_visibility (fndecl);
8479 /* For GNU C extern inline functions disregard inline limits. */
8480 if (DECL_EXTERNAL (fndecl)
8481 && DECL_DECLARED_INLINE_P (fndecl))
8482 DECL_DISREGARD_INLINE_LIMITS (fndecl) = 1;
8484 /* Genericize before inlining. Delay genericizing nested functions
8485 until their parent function is genericized. Since finalizing
8486 requires GENERIC, delay that as well. */
8488 if (DECL_INITIAL (fndecl) && DECL_INITIAL (fndecl) != error_mark_node
8489 && !undef_nested_function)
8491 if (!decl_function_context (fndecl))
8493 invoke_plugin_callbacks (PLUGIN_PRE_GENERICIZE, fndecl);
8494 /* Lower to GENERIC form before finalization. */
8495 lang_hooks.genericize (fndecl);
8497 /* ??? Objc emits functions after finalizing the compilation unit.
8498 This should be cleaned up later and this conditional removed. */
8499 if (cgraph_global_info_ready)
8501 cgraph_add_new_function (fndecl, false);
8502 return;
8504 cgraph_finalize_function (fndecl, false);
8506 else
8508 /* Register this function with cgraph just far enough to get it
8509 added to our parent's nested function list. Handy, since the
8510 C front end doesn't have such a list. */
8511 (void) cgraph_node (fndecl);
8515 if (!decl_function_context (fndecl))
8516 undef_nested_function = false;
8518 /* We're leaving the context of this function, so zap cfun.
8519 It's still in DECL_STRUCT_FUNCTION, and we'll restore it in
8520 tree_rest_of_compilation. */
8521 set_cfun (NULL);
8522 current_function_decl = NULL;
8525 /* Check the declarations given in a for-loop for satisfying the C99
8526 constraints. If exactly one such decl is found, return it. LOC is
8527 the location of the opening parenthesis of the for loop. The last
8528 parameter allows you to control the "for loop initial declarations
8529 are only allowed in C99 mode". Normally, you should pass
8530 flag_isoc99 as that parameter. But in some cases (Objective-C
8531 foreach loop, for example) we want to run the checks in this
8532 function even if not in C99 mode, so we allow the caller to turn
8533 off the error about not being in C99 mode.
8536 tree
8537 check_for_loop_decls (location_t loc, bool turn_off_iso_c99_error)
8539 struct c_binding *b;
8540 tree one_decl = NULL_TREE;
8541 int n_decls = 0;
8543 if (!turn_off_iso_c99_error)
8545 static bool hint = true;
8546 /* If we get here, declarations have been used in a for loop without
8547 the C99 for loop scope. This doesn't make much sense, so don't
8548 allow it. */
8549 error_at (loc, "%<for%> loop initial declarations "
8550 "are only allowed in C99 mode");
8551 if (hint)
8553 inform (loc,
8554 "use option -std=c99 or -std=gnu99 to compile your code");
8555 hint = false;
8557 return NULL_TREE;
8559 /* C99 subclause 6.8.5 paragraph 3:
8561 [#3] The declaration part of a for statement shall only
8562 declare identifiers for objects having storage class auto or
8563 register.
8565 It isn't clear whether, in this sentence, "identifiers" binds to
8566 "shall only declare" or to "objects" - that is, whether all identifiers
8567 declared must be identifiers for objects, or whether the restriction
8568 only applies to those that are. (A question on this in comp.std.c
8569 in November 2000 received no answer.) We implement the strictest
8570 interpretation, to avoid creating an extension which later causes
8571 problems. */
8573 for (b = current_scope->bindings; b; b = b->prev)
8575 tree id = b->id;
8576 tree decl = b->decl;
8578 if (!id)
8579 continue;
8581 switch (TREE_CODE (decl))
8583 case VAR_DECL:
8585 location_t decl_loc = DECL_SOURCE_LOCATION (decl);
8586 if (TREE_STATIC (decl))
8587 error_at (decl_loc,
8588 "declaration of static variable %qD in %<for%> loop "
8589 "initial declaration", decl);
8590 else if (DECL_EXTERNAL (decl))
8591 error_at (decl_loc,
8592 "declaration of %<extern%> variable %qD in %<for%> loop "
8593 "initial declaration", decl);
8595 break;
8597 case RECORD_TYPE:
8598 error_at (loc,
8599 "%<struct %E%> declared in %<for%> loop initial "
8600 "declaration", id);
8601 break;
8602 case UNION_TYPE:
8603 error_at (loc,
8604 "%<union %E%> declared in %<for%> loop initial declaration",
8605 id);
8606 break;
8607 case ENUMERAL_TYPE:
8608 error_at (loc, "%<enum %E%> declared in %<for%> loop "
8609 "initial declaration", id);
8610 break;
8611 default:
8612 error_at (loc, "declaration of non-variable "
8613 "%qD in %<for%> loop initial declaration", decl);
8616 n_decls++;
8617 one_decl = decl;
8620 return n_decls == 1 ? one_decl : NULL_TREE;
8623 /* Save and reinitialize the variables
8624 used during compilation of a C function. */
8626 void
8627 c_push_function_context (void)
8629 struct language_function *p;
8630 p = ggc_alloc_language_function ();
8631 cfun->language = p;
8633 p->base.x_stmt_tree = c_stmt_tree;
8634 p->x_break_label = c_break_label;
8635 p->x_cont_label = c_cont_label;
8636 p->x_switch_stack = c_switch_stack;
8637 p->arg_info = current_function_arg_info;
8638 p->returns_value = current_function_returns_value;
8639 p->returns_null = current_function_returns_null;
8640 p->returns_abnormally = current_function_returns_abnormally;
8641 p->warn_about_return_type = warn_about_return_type;
8643 push_function_context ();
8646 /* Restore the variables used during compilation of a C function. */
8648 void
8649 c_pop_function_context (void)
8651 struct language_function *p;
8653 pop_function_context ();
8654 p = cfun->language;
8655 cfun->language = NULL;
8657 if (DECL_STRUCT_FUNCTION (current_function_decl) == 0
8658 && DECL_SAVED_TREE (current_function_decl) == NULL_TREE)
8660 /* Stop pointing to the local nodes about to be freed. */
8661 /* But DECL_INITIAL must remain nonzero so we know this
8662 was an actual function definition. */
8663 DECL_INITIAL (current_function_decl) = error_mark_node;
8664 DECL_ARGUMENTS (current_function_decl) = 0;
8667 c_stmt_tree = p->base.x_stmt_tree;
8668 c_break_label = p->x_break_label;
8669 c_cont_label = p->x_cont_label;
8670 c_switch_stack = p->x_switch_stack;
8671 current_function_arg_info = p->arg_info;
8672 current_function_returns_value = p->returns_value;
8673 current_function_returns_null = p->returns_null;
8674 current_function_returns_abnormally = p->returns_abnormally;
8675 warn_about_return_type = p->warn_about_return_type;
8678 /* The functions below are required for functionality of doing
8679 function at once processing in the C front end. Currently these
8680 functions are not called from anywhere in the C front end, but as
8681 these changes continue, that will change. */
8683 /* Returns the stmt_tree (if any) to which statements are currently
8684 being added. If there is no active statement-tree, NULL is
8685 returned. */
8687 stmt_tree
8688 current_stmt_tree (void)
8690 return &c_stmt_tree;
8693 /* Return the global value of T as a symbol. */
8695 tree
8696 identifier_global_value (tree t)
8698 struct c_binding *b;
8700 for (b = I_SYMBOL_BINDING (t); b; b = b->shadowed)
8701 if (B_IN_FILE_SCOPE (b) || B_IN_EXTERNAL_SCOPE (b))
8702 return b->decl;
8704 return 0;
8707 /* Record a builtin type for C. If NAME is non-NULL, it is the name used;
8708 otherwise the name is found in ridpointers from RID_INDEX. */
8710 void
8711 record_builtin_type (enum rid rid_index, const char *name, tree type)
8713 tree id, decl;
8714 if (name == 0)
8715 id = ridpointers[(int) rid_index];
8716 else
8717 id = get_identifier (name);
8718 decl = build_decl (UNKNOWN_LOCATION, TYPE_DECL, id, type);
8719 pushdecl (decl);
8720 if (debug_hooks->type_decl)
8721 debug_hooks->type_decl (decl, false);
8724 /* Build the void_list_node (void_type_node having been created). */
8725 tree
8726 build_void_list_node (void)
8728 tree t = build_tree_list (NULL_TREE, void_type_node);
8729 return t;
8732 /* Return a c_parm structure with the given SPECS, ATTRS and DECLARATOR. */
8734 struct c_parm *
8735 build_c_parm (struct c_declspecs *specs, tree attrs,
8736 struct c_declarator *declarator)
8738 struct c_parm *ret = XOBNEW (&parser_obstack, struct c_parm);
8739 ret->specs = specs;
8740 ret->attrs = attrs;
8741 ret->declarator = declarator;
8742 return ret;
8745 /* Return a declarator with nested attributes. TARGET is the inner
8746 declarator to which these attributes apply. ATTRS are the
8747 attributes. */
8749 struct c_declarator *
8750 build_attrs_declarator (tree attrs, struct c_declarator *target)
8752 struct c_declarator *ret = XOBNEW (&parser_obstack, struct c_declarator);
8753 ret->kind = cdk_attrs;
8754 ret->declarator = target;
8755 ret->u.attrs = attrs;
8756 return ret;
8759 /* Return a declarator for a function with arguments specified by ARGS
8760 and return type specified by TARGET. */
8762 struct c_declarator *
8763 build_function_declarator (struct c_arg_info *args,
8764 struct c_declarator *target)
8766 struct c_declarator *ret = XOBNEW (&parser_obstack, struct c_declarator);
8767 ret->kind = cdk_function;
8768 ret->declarator = target;
8769 ret->u.arg_info = args;
8770 return ret;
8773 /* Return a declarator for the identifier IDENT (which may be
8774 NULL_TREE for an abstract declarator). */
8776 struct c_declarator *
8777 build_id_declarator (tree ident)
8779 struct c_declarator *ret = XOBNEW (&parser_obstack, struct c_declarator);
8780 ret->kind = cdk_id;
8781 ret->declarator = 0;
8782 ret->u.id = ident;
8783 /* Default value - may get reset to a more precise location. */
8784 ret->id_loc = input_location;
8785 return ret;
8788 /* Return something to represent absolute declarators containing a *.
8789 TARGET is the absolute declarator that the * contains.
8790 TYPE_QUALS_ATTRS is a structure for type qualifiers and attributes
8791 to apply to the pointer type. */
8793 struct c_declarator *
8794 make_pointer_declarator (struct c_declspecs *type_quals_attrs,
8795 struct c_declarator *target)
8797 tree attrs;
8798 int quals = 0;
8799 tree upc_layout_qual = 0;
8800 struct c_declarator *itarget = target;
8801 struct c_declarator *ret = XOBNEW (&parser_obstack, struct c_declarator);
8802 if (type_quals_attrs)
8804 attrs = type_quals_attrs->attrs;
8805 quals = quals_from_declspecs (type_quals_attrs);
8806 upc_layout_qual = type_quals_attrs->upc_layout_qualifier;
8807 if (attrs != NULL_TREE)
8808 itarget = build_attrs_declarator (attrs, target);
8810 ret->kind = cdk_pointer;
8811 ret->declarator = itarget;
8812 ret->u.pointer.quals = quals;
8813 ret->u.pointer.upc_layout_qual = upc_layout_qual;
8814 return ret;
8817 /* Return a pointer to a structure for an empty list of declaration
8818 specifiers. */
8820 struct c_declspecs *
8821 build_null_declspecs (void)
8823 struct c_declspecs *ret = XOBNEW (&parser_obstack, struct c_declspecs);
8824 ret->type = 0;
8825 ret->expr = 0;
8826 ret->decl_attr = 0;
8827 ret->attrs = 0;
8828 ret->upc_layout_qualifier = 0;
8829 ret->typespec_word = cts_none;
8830 ret->storage_class = csc_none;
8831 ret->expr_const_operands = true;
8832 ret->declspecs_seen_p = false;
8833 ret->typespec_kind = ctsk_none;
8834 ret->non_sc_seen_p = false;
8835 ret->typedef_p = false;
8836 ret->explicit_signed_p = false;
8837 ret->deprecated_p = false;
8838 ret->default_int_p = false;
8839 ret->long_p = false;
8840 ret->long_long_p = false;
8841 ret->short_p = false;
8842 ret->signed_p = false;
8843 ret->unsigned_p = false;
8844 ret->complex_p = false;
8845 ret->inline_p = false;
8846 ret->thread_p = false;
8847 ret->const_p = false;
8848 ret->volatile_p = false;
8849 ret->restrict_p = false;
8850 ret->shared_p = false;
8851 ret->strict_p = false;
8852 ret->relaxed_p = false;
8853 ret->saturating_p = false;
8854 ret->address_space = ADDR_SPACE_GENERIC;
8855 return ret;
8858 /* Add the address space ADDRSPACE to the declaration specifiers
8859 SPECS, returning SPECS. */
8861 struct c_declspecs *
8862 declspecs_add_addrspace (struct c_declspecs *specs, addr_space_t as)
8864 specs->non_sc_seen_p = true;
8865 specs->declspecs_seen_p = true;
8867 if (!ADDR_SPACE_GENERIC_P (specs->address_space)
8868 && specs->address_space != as)
8869 error ("incompatible address space qualifiers %qs and %qs",
8870 c_addr_space_name (as),
8871 c_addr_space_name (specs->address_space));
8872 else
8873 specs->address_space = as;
8874 return specs;
8877 /* Add the type qualifier QUAL to the declaration specifiers SPECS,
8878 returning SPECS. */
8880 struct c_declspecs *
8881 declspecs_add_qual (struct c_declspecs *specs, tree qual)
8883 enum rid i;
8884 bool dupe = false;
8885 specs->non_sc_seen_p = true;
8886 specs->declspecs_seen_p = true;
8888 /* A UPC layout qualifier is encoded as an ARRAY_REF,
8889 further, it implies the presence of the 'shared' keyword. */
8890 if (TREE_CODE (qual) == ARRAY_REF)
8892 if (specs->upc_layout_qualifier)
8894 error ("two or more layout qualifiers specified");
8895 return specs;
8897 else
8899 specs->upc_layout_qualifier = qual;
8900 qual = ridpointers[RID_SHARED];
8904 gcc_assert (TREE_CODE (qual) == IDENTIFIER_NODE
8905 && C_IS_RESERVED_WORD (qual));
8906 i = C_RID_CODE (qual);
8907 switch (i)
8909 case RID_CONST:
8910 dupe = specs->const_p;
8911 specs->const_p = true;
8912 break;
8913 case RID_VOLATILE:
8914 dupe = specs->volatile_p;
8915 specs->volatile_p = true;
8916 break;
8917 case RID_RESTRICT:
8918 dupe = specs->restrict_p;
8919 specs->restrict_p = true;
8920 break;
8921 case RID_SHARED:
8922 dupe = specs->shared_p;
8923 specs->shared_p = true;
8924 break;
8925 case RID_STRICT:
8926 dupe = specs->strict_p;
8927 specs->strict_p = true;
8928 break;
8929 case RID_RELAXED:
8930 dupe = specs->relaxed_p;
8931 specs->relaxed_p = true;
8932 break;
8933 default:
8934 gcc_unreachable ();
8936 if (dupe && !flag_isoc99)
8937 pedwarn (input_location, OPT_pedantic, "duplicate %qE", qual);
8938 return specs;
8941 /* Add the type specifier TYPE to the declaration specifiers SPECS,
8942 returning SPECS. */
8944 struct c_declspecs *
8945 declspecs_add_type (location_t loc, struct c_declspecs *specs,
8946 struct c_typespec spec)
8948 tree type = spec.spec;
8949 specs->non_sc_seen_p = true;
8950 specs->declspecs_seen_p = true;
8951 specs->typespec_kind = spec.kind;
8952 if (TREE_DEPRECATED (type))
8953 specs->deprecated_p = true;
8955 /* Handle type specifier keywords. */
8956 if (TREE_CODE (type) == IDENTIFIER_NODE
8957 && C_IS_RESERVED_WORD (type)
8958 && C_RID_CODE (type) != RID_CXX_COMPAT_WARN)
8960 enum rid i = C_RID_CODE (type);
8961 if (specs->type)
8963 error_at (loc, "two or more data types in declaration specifiers");
8964 return specs;
8966 if ((int) i <= (int) RID_LAST_MODIFIER)
8968 /* "long", "short", "signed", "unsigned", "_Complex" or "_Sat". */
8969 bool dupe = false;
8970 switch (i)
8972 case RID_LONG:
8973 if (specs->long_long_p)
8975 error_at (loc, "%<long long long%> is too long for GCC");
8976 break;
8978 if (specs->long_p)
8980 if (specs->typespec_word == cts_double)
8982 error_at (loc,
8983 ("both %<long long%> and %<double%> in "
8984 "declaration specifiers"));
8985 break;
8987 pedwarn_c90 (loc, OPT_Wlong_long,
8988 "ISO C90 does not support %<long long%>");
8989 specs->long_long_p = 1;
8990 break;
8992 if (specs->short_p)
8993 error_at (loc,
8994 ("both %<long%> and %<short%> in "
8995 "declaration specifiers"));
8996 else if (specs->typespec_word == cts_void)
8997 error_at (loc,
8998 ("both %<long%> and %<void%> in "
8999 "declaration specifiers"));
9000 else if (specs->typespec_word == cts_int128)
9001 error_at (loc,
9002 ("both %<long%> and %<__int128%> in "
9003 "declaration specifiers"));
9004 else if (specs->typespec_word == cts_bool)
9005 error_at (loc,
9006 ("both %<long%> and %<_Bool%> in "
9007 "declaration specifiers"));
9008 else if (specs->typespec_word == cts_char)
9009 error_at (loc,
9010 ("both %<long%> and %<char%> in "
9011 "declaration specifiers"));
9012 else if (specs->typespec_word == cts_float)
9013 error_at (loc,
9014 ("both %<long%> and %<float%> in "
9015 "declaration specifiers"));
9016 else if (specs->typespec_word == cts_dfloat32)
9017 error_at (loc,
9018 ("both %<long%> and %<_Decimal32%> in "
9019 "declaration specifiers"));
9020 else if (specs->typespec_word == cts_dfloat64)
9021 error_at (loc,
9022 ("both %<long%> and %<_Decimal64%> in "
9023 "declaration specifiers"));
9024 else if (specs->typespec_word == cts_dfloat128)
9025 error_at (loc,
9026 ("both %<long%> and %<_Decimal128%> in "
9027 "declaration specifiers"));
9028 else
9029 specs->long_p = true;
9030 break;
9031 case RID_SHORT:
9032 dupe = specs->short_p;
9033 if (specs->long_p)
9034 error_at (loc,
9035 ("both %<long%> and %<short%> in "
9036 "declaration specifiers"));
9037 else if (specs->typespec_word == cts_void)
9038 error_at (loc,
9039 ("both %<short%> and %<void%> in "
9040 "declaration specifiers"));
9041 else if (specs->typespec_word == cts_int128)
9042 error_at (loc,
9043 ("both %<short%> and %<__int128%> in "
9044 "declaration specifiers"));
9045 else if (specs->typespec_word == cts_bool)
9046 error_at (loc,
9047 ("both %<short%> and %<_Bool%> in "
9048 "declaration specifiers"));
9049 else if (specs->typespec_word == cts_char)
9050 error_at (loc,
9051 ("both %<short%> and %<char%> in "
9052 "declaration specifiers"));
9053 else if (specs->typespec_word == cts_float)
9054 error_at (loc,
9055 ("both %<short%> and %<float%> in "
9056 "declaration specifiers"));
9057 else if (specs->typespec_word == cts_double)
9058 error_at (loc,
9059 ("both %<short%> and %<double%> in "
9060 "declaration specifiers"));
9061 else if (specs->typespec_word == cts_dfloat32)
9062 error_at (loc,
9063 ("both %<short%> and %<_Decimal32%> in "
9064 "declaration specifiers"));
9065 else if (specs->typespec_word == cts_dfloat64)
9066 error_at (loc,
9067 ("both %<short%> and %<_Decimal64%> in "
9068 "declaration specifiers"));
9069 else if (specs->typespec_word == cts_dfloat128)
9070 error_at (loc,
9071 ("both %<short%> and %<_Decimal128%> in "
9072 "declaration specifiers"));
9073 else
9074 specs->short_p = true;
9075 break;
9076 case RID_SIGNED:
9077 dupe = specs->signed_p;
9078 if (specs->unsigned_p)
9079 error_at (loc,
9080 ("both %<signed%> and %<unsigned%> in "
9081 "declaration specifiers"));
9082 else if (specs->typespec_word == cts_void)
9083 error_at (loc,
9084 ("both %<signed%> and %<void%> in "
9085 "declaration specifiers"));
9086 else if (specs->typespec_word == cts_bool)
9087 error_at (loc,
9088 ("both %<signed%> and %<_Bool%> in "
9089 "declaration specifiers"));
9090 else if (specs->typespec_word == cts_float)
9091 error_at (loc,
9092 ("both %<signed%> and %<float%> in "
9093 "declaration specifiers"));
9094 else if (specs->typespec_word == cts_double)
9095 error_at (loc,
9096 ("both %<signed%> and %<double%> in "
9097 "declaration specifiers"));
9098 else if (specs->typespec_word == cts_dfloat32)
9099 error_at (loc,
9100 ("both %<signed%> and %<_Decimal32%> in "
9101 "declaration specifiers"));
9102 else if (specs->typespec_word == cts_dfloat64)
9103 error_at (loc,
9104 ("both %<signed%> and %<_Decimal64%> in "
9105 "declaration specifiers"));
9106 else if (specs->typespec_word == cts_dfloat128)
9107 error_at (loc,
9108 ("both %<signed%> and %<_Decimal128%> in "
9109 "declaration specifiers"));
9110 else
9111 specs->signed_p = true;
9112 break;
9113 case RID_UNSIGNED:
9114 dupe = specs->unsigned_p;
9115 if (specs->signed_p)
9116 error_at (loc,
9117 ("both %<signed%> and %<unsigned%> in "
9118 "declaration specifiers"));
9119 else if (specs->typespec_word == cts_void)
9120 error_at (loc,
9121 ("both %<unsigned%> and %<void%> in "
9122 "declaration specifiers"));
9123 else if (specs->typespec_word == cts_bool)
9124 error_at (loc,
9125 ("both %<unsigned%> and %<_Bool%> in "
9126 "declaration specifiers"));
9127 else if (specs->typespec_word == cts_float)
9128 error_at (loc,
9129 ("both %<unsigned%> and %<float%> in "
9130 "declaration specifiers"));
9131 else if (specs->typespec_word == cts_double)
9132 error_at (loc,
9133 ("both %<unsigned%> and %<double%> in "
9134 "declaration specifiers"));
9135 else if (specs->typespec_word == cts_dfloat32)
9136 error_at (loc,
9137 ("both %<unsigned%> and %<_Decimal32%> in "
9138 "declaration specifiers"));
9139 else if (specs->typespec_word == cts_dfloat64)
9140 error_at (loc,
9141 ("both %<unsigned%> and %<_Decimal64%> in "
9142 "declaration specifiers"));
9143 else if (specs->typespec_word == cts_dfloat128)
9144 error_at (loc,
9145 ("both %<unsigned%> and %<_Decimal128%> in "
9146 "declaration specifiers"));
9147 else
9148 specs->unsigned_p = true;
9149 break;
9150 case RID_COMPLEX:
9151 dupe = specs->complex_p;
9152 if (!flag_isoc99 && !in_system_header)
9153 pedwarn (loc, OPT_pedantic,
9154 "ISO C90 does not support complex types");
9155 if (specs->typespec_word == cts_void)
9156 error_at (loc,
9157 ("both %<complex%> and %<void%> in "
9158 "declaration specifiers"));
9159 else if (specs->typespec_word == cts_bool)
9160 error_at (loc,
9161 ("both %<complex%> and %<_Bool%> in "
9162 "declaration specifiers"));
9163 else if (specs->typespec_word == cts_dfloat32)
9164 error_at (loc,
9165 ("both %<complex%> and %<_Decimal32%> in "
9166 "declaration specifiers"));
9167 else if (specs->typespec_word == cts_dfloat64)
9168 error_at (loc,
9169 ("both %<complex%> and %<_Decimal64%> in "
9170 "declaration specifiers"));
9171 else if (specs->typespec_word == cts_dfloat128)
9172 error_at (loc,
9173 ("both %<complex%> and %<_Decimal128%> in "
9174 "declaration specifiers"));
9175 else if (specs->typespec_word == cts_fract)
9176 error_at (loc,
9177 ("both %<complex%> and %<_Fract%> in "
9178 "declaration specifiers"));
9179 else if (specs->typespec_word == cts_accum)
9180 error_at (loc,
9181 ("both %<complex%> and %<_Accum%> in "
9182 "declaration specifiers"));
9183 else if (specs->saturating_p)
9184 error_at (loc,
9185 ("both %<complex%> and %<_Sat%> in "
9186 "declaration specifiers"));
9187 else
9188 specs->complex_p = true;
9189 break;
9190 case RID_SAT:
9191 dupe = specs->saturating_p;
9192 pedwarn (loc, OPT_pedantic,
9193 "ISO C does not support saturating types");
9194 if (specs->typespec_word == cts_int128)
9196 error_at (loc,
9197 ("both %<_Sat%> and %<__int128%> in "
9198 "declaration specifiers"));
9200 else if (specs->typespec_word == cts_void)
9201 error_at (loc,
9202 ("both %<_Sat%> and %<void%> in "
9203 "declaration specifiers"));
9204 else if (specs->typespec_word == cts_bool)
9205 error_at (loc,
9206 ("both %<_Sat%> and %<_Bool%> in "
9207 "declaration specifiers"));
9208 else if (specs->typespec_word == cts_char)
9209 error_at (loc,
9210 ("both %<_Sat%> and %<char%> in "
9211 "declaration specifiers"));
9212 else if (specs->typespec_word == cts_int)
9213 error_at (loc,
9214 ("both %<_Sat%> and %<int%> in "
9215 "declaration specifiers"));
9216 else if (specs->typespec_word == cts_float)
9217 error_at (loc,
9218 ("both %<_Sat%> and %<float%> in "
9219 "declaration specifiers"));
9220 else if (specs->typespec_word == cts_double)
9221 error_at (loc,
9222 ("both %<_Sat%> and %<double%> in "
9223 "declaration specifiers"));
9224 else if (specs->typespec_word == cts_dfloat32)
9225 error_at (loc,
9226 ("both %<_Sat%> and %<_Decimal32%> in "
9227 "declaration specifiers"));
9228 else if (specs->typespec_word == cts_dfloat64)
9229 error_at (loc,
9230 ("both %<_Sat%> and %<_Decimal64%> in "
9231 "declaration specifiers"));
9232 else if (specs->typespec_word == cts_dfloat128)
9233 error_at (loc,
9234 ("both %<_Sat%> and %<_Decimal128%> in "
9235 "declaration specifiers"));
9236 else if (specs->complex_p)
9237 error_at (loc,
9238 ("both %<_Sat%> and %<complex%> in "
9239 "declaration specifiers"));
9240 else
9241 specs->saturating_p = true;
9242 break;
9243 default:
9244 gcc_unreachable ();
9247 if (dupe)
9248 error_at (loc, "duplicate %qE", type);
9250 return specs;
9252 else
9254 /* "void", "_Bool", "char", "int", "float", "double", "_Decimal32",
9255 "__int128", "_Decimal64", "_Decimal128", "_Fract" or "_Accum". */
9256 if (specs->typespec_word != cts_none)
9258 error_at (loc,
9259 "two or more data types in declaration specifiers");
9260 return specs;
9262 switch (i)
9264 case RID_INT128:
9265 if (int128_integer_type_node == NULL_TREE)
9267 error_at (loc, "%<__int128%> is not supported for this target");
9268 return specs;
9270 if (!in_system_header)
9271 pedwarn (loc, OPT_pedantic,
9272 "ISO C does not support %<__int128%> type");
9274 if (specs->long_p)
9275 error_at (loc,
9276 ("both %<__int128%> and %<long%> in "
9277 "declaration specifiers"));
9278 else if (specs->saturating_p)
9279 error_at (loc,
9280 ("both %<_Sat%> and %<__int128%> in "
9281 "declaration specifiers"));
9282 else if (specs->short_p)
9283 error_at (loc,
9284 ("both %<__int128%> and %<short%> in "
9285 "declaration specifiers"));
9286 else
9287 specs->typespec_word = cts_int128;
9288 return specs;
9289 case RID_VOID:
9290 if (specs->long_p)
9291 error_at (loc,
9292 ("both %<long%> and %<void%> in "
9293 "declaration specifiers"));
9294 else if (specs->short_p)
9295 error_at (loc,
9296 ("both %<short%> and %<void%> in "
9297 "declaration specifiers"));
9298 else if (specs->signed_p)
9299 error_at (loc,
9300 ("both %<signed%> and %<void%> in "
9301 "declaration specifiers"));
9302 else if (specs->unsigned_p)
9303 error_at (loc,
9304 ("both %<unsigned%> and %<void%> in "
9305 "declaration specifiers"));
9306 else if (specs->complex_p)
9307 error_at (loc,
9308 ("both %<complex%> and %<void%> in "
9309 "declaration specifiers"));
9310 else if (specs->saturating_p)
9311 error_at (loc,
9312 ("both %<_Sat%> and %<void%> in "
9313 "declaration specifiers"));
9314 else
9315 specs->typespec_word = cts_void;
9316 return specs;
9317 case RID_BOOL:
9318 if (specs->long_p)
9319 error_at (loc,
9320 ("both %<long%> and %<_Bool%> in "
9321 "declaration specifiers"));
9322 else if (specs->short_p)
9323 error_at (loc,
9324 ("both %<short%> and %<_Bool%> in "
9325 "declaration specifiers"));
9326 else if (specs->signed_p)
9327 error_at (loc,
9328 ("both %<signed%> and %<_Bool%> in "
9329 "declaration specifiers"));
9330 else if (specs->unsigned_p)
9331 error_at (loc,
9332 ("both %<unsigned%> and %<_Bool%> in "
9333 "declaration specifiers"));
9334 else if (specs->complex_p)
9335 error_at (loc,
9336 ("both %<complex%> and %<_Bool%> in "
9337 "declaration specifiers"));
9338 else if (specs->saturating_p)
9339 error_at (loc,
9340 ("both %<_Sat%> and %<_Bool%> in "
9341 "declaration specifiers"));
9342 else
9343 specs->typespec_word = cts_bool;
9344 return specs;
9345 case RID_CHAR:
9346 if (specs->long_p)
9347 error_at (loc,
9348 ("both %<long%> and %<char%> in "
9349 "declaration specifiers"));
9350 else if (specs->short_p)
9351 error_at (loc,
9352 ("both %<short%> and %<char%> in "
9353 "declaration specifiers"));
9354 else if (specs->saturating_p)
9355 error_at (loc,
9356 ("both %<_Sat%> and %<char%> in "
9357 "declaration specifiers"));
9358 else
9359 specs->typespec_word = cts_char;
9360 return specs;
9361 case RID_INT:
9362 if (specs->saturating_p)
9363 error_at (loc,
9364 ("both %<_Sat%> and %<int%> in "
9365 "declaration specifiers"));
9366 else
9367 specs->typespec_word = cts_int;
9368 return specs;
9369 case RID_FLOAT:
9370 if (specs->long_p)
9371 error_at (loc,
9372 ("both %<long%> and %<float%> in "
9373 "declaration specifiers"));
9374 else if (specs->short_p)
9375 error_at (loc,
9376 ("both %<short%> and %<float%> in "
9377 "declaration specifiers"));
9378 else if (specs->signed_p)
9379 error_at (loc,
9380 ("both %<signed%> and %<float%> in "
9381 "declaration specifiers"));
9382 else if (specs->unsigned_p)
9383 error_at (loc,
9384 ("both %<unsigned%> and %<float%> in "
9385 "declaration specifiers"));
9386 else if (specs->saturating_p)
9387 error_at (loc,
9388 ("both %<_Sat%> and %<float%> in "
9389 "declaration specifiers"));
9390 else
9391 specs->typespec_word = cts_float;
9392 return specs;
9393 case RID_DOUBLE:
9394 if (specs->long_long_p)
9395 error_at (loc,
9396 ("both %<long long%> and %<double%> in "
9397 "declaration specifiers"));
9398 else if (specs->short_p)
9399 error_at (loc,
9400 ("both %<short%> and %<double%> in "
9401 "declaration specifiers"));
9402 else if (specs->signed_p)
9403 error_at (loc,
9404 ("both %<signed%> and %<double%> in "
9405 "declaration specifiers"));
9406 else if (specs->unsigned_p)
9407 error_at (loc,
9408 ("both %<unsigned%> and %<double%> in "
9409 "declaration specifiers"));
9410 else if (specs->saturating_p)
9411 error_at (loc,
9412 ("both %<_Sat%> and %<double%> in "
9413 "declaration specifiers"));
9414 else
9415 specs->typespec_word = cts_double;
9416 return specs;
9417 case RID_DFLOAT32:
9418 case RID_DFLOAT64:
9419 case RID_DFLOAT128:
9421 const char *str;
9422 if (i == RID_DFLOAT32)
9423 str = "_Decimal32";
9424 else if (i == RID_DFLOAT64)
9425 str = "_Decimal64";
9426 else
9427 str = "_Decimal128";
9428 if (specs->long_long_p)
9429 error_at (loc,
9430 ("both %<long long%> and %<%s%> in "
9431 "declaration specifiers"),
9432 str);
9433 if (specs->long_p)
9434 error_at (loc,
9435 ("both %<long%> and %<%s%> in "
9436 "declaration specifiers"),
9437 str);
9438 else if (specs->short_p)
9439 error_at (loc,
9440 ("both %<short%> and %<%s%> in "
9441 "declaration specifiers"),
9442 str);
9443 else if (specs->signed_p)
9444 error_at (loc,
9445 ("both %<signed%> and %<%s%> in "
9446 "declaration specifiers"),
9447 str);
9448 else if (specs->unsigned_p)
9449 error_at (loc,
9450 ("both %<unsigned%> and %<%s%> in "
9451 "declaration specifiers"),
9452 str);
9453 else if (specs->complex_p)
9454 error_at (loc,
9455 ("both %<complex%> and %<%s%> in "
9456 "declaration specifiers"),
9457 str);
9458 else if (specs->saturating_p)
9459 error_at (loc,
9460 ("both %<_Sat%> and %<%s%> in "
9461 "declaration specifiers"),
9462 str);
9463 else if (i == RID_DFLOAT32)
9464 specs->typespec_word = cts_dfloat32;
9465 else if (i == RID_DFLOAT64)
9466 specs->typespec_word = cts_dfloat64;
9467 else
9468 specs->typespec_word = cts_dfloat128;
9470 if (!targetm.decimal_float_supported_p ())
9471 error_at (loc,
9472 ("decimal floating point not supported "
9473 "for this target"));
9474 pedwarn (loc, OPT_pedantic,
9475 "ISO C does not support decimal floating point");
9476 return specs;
9477 case RID_FRACT:
9478 case RID_ACCUM:
9480 const char *str;
9481 if (i == RID_FRACT)
9482 str = "_Fract";
9483 else
9484 str = "_Accum";
9485 if (specs->complex_p)
9486 error_at (loc,
9487 ("both %<complex%> and %<%s%> in "
9488 "declaration specifiers"),
9489 str);
9490 else if (i == RID_FRACT)
9491 specs->typespec_word = cts_fract;
9492 else
9493 specs->typespec_word = cts_accum;
9495 if (!targetm.fixed_point_supported_p ())
9496 error_at (loc,
9497 "fixed-point types not supported for this target");
9498 pedwarn (loc, OPT_pedantic,
9499 "ISO C does not support fixed-point types");
9500 return specs;
9501 default:
9502 /* ObjC reserved word "id", handled below. */
9503 break;
9508 /* Now we have a typedef (a TYPE_DECL node), an identifier (some
9509 form of ObjC type, cases such as "int" and "long" being handled
9510 above), a TYPE (struct, union, enum and typeof specifiers) or an
9511 ERROR_MARK. In none of these cases may there have previously
9512 been any type specifiers. */
9513 if (specs->type || specs->typespec_word != cts_none
9514 || specs->long_p || specs->short_p || specs->signed_p
9515 || specs->unsigned_p || specs->complex_p)
9516 error_at (loc, "two or more data types in declaration specifiers");
9517 else if (TREE_CODE (type) == TYPE_DECL)
9519 if (TREE_TYPE (type) == error_mark_node)
9520 ; /* Allow the type to default to int to avoid cascading errors. */
9521 else
9523 specs->type = TREE_TYPE (type);
9524 specs->decl_attr = DECL_ATTRIBUTES (type);
9525 specs->typedef_p = true;
9526 specs->explicit_signed_p = C_TYPEDEF_EXPLICITLY_SIGNED (type);
9528 /* If this typedef name is defined in a struct, then a C++
9529 lookup would return a different value. */
9530 if (warn_cxx_compat
9531 && I_SYMBOL_BINDING (DECL_NAME (type))->in_struct)
9532 warning_at (loc, OPT_Wc___compat,
9533 "C++ lookup of %qD would return a field, not a type",
9534 type);
9536 /* If we are parsing a struct, record that a struct field
9537 used a typedef. */
9538 if (warn_cxx_compat && struct_parse_info != NULL)
9539 VEC_safe_push (tree, heap, struct_parse_info->typedefs_seen, type);
9542 else if (TREE_CODE (type) == IDENTIFIER_NODE)
9544 tree t = lookup_name (type);
9545 if (!t || TREE_CODE (t) != TYPE_DECL)
9546 error_at (loc, "%qE fails to be a typedef or built in type", type);
9547 else if (TREE_TYPE (t) == error_mark_node)
9549 else
9550 specs->type = TREE_TYPE (t);
9552 else
9554 if (TREE_CODE (type) != ERROR_MARK && spec.kind == ctsk_typeof)
9556 specs->typedef_p = true;
9557 if (spec.expr)
9559 if (specs->expr)
9560 specs->expr = build2 (COMPOUND_EXPR, TREE_TYPE (spec.expr),
9561 specs->expr, spec.expr);
9562 else
9563 specs->expr = spec.expr;
9564 specs->expr_const_operands &= spec.expr_const_operands;
9567 specs->type = type;
9570 return specs;
9573 /* Add the storage class specifier or function specifier SCSPEC to the
9574 declaration specifiers SPECS, returning SPECS. */
9576 struct c_declspecs *
9577 declspecs_add_scspec (struct c_declspecs *specs, tree scspec)
9579 enum rid i;
9580 enum c_storage_class n = csc_none;
9581 bool dupe = false;
9582 specs->declspecs_seen_p = true;
9583 gcc_assert (TREE_CODE (scspec) == IDENTIFIER_NODE
9584 && C_IS_RESERVED_WORD (scspec));
9585 i = C_RID_CODE (scspec);
9586 if (specs->non_sc_seen_p)
9587 warning (OPT_Wold_style_declaration,
9588 "%qE is not at beginning of declaration", scspec);
9589 switch (i)
9591 case RID_INLINE:
9592 /* C99 permits duplicate inline. Although of doubtful utility,
9593 it seems simplest to permit it in gnu89 mode as well, as
9594 there is also little utility in maintaining this as a
9595 difference between gnu89 and C99 inline. */
9596 dupe = false;
9597 specs->inline_p = true;
9598 break;
9599 case RID_THREAD:
9600 dupe = specs->thread_p;
9601 if (specs->storage_class == csc_auto)
9602 error ("%<__thread%> used with %<auto%>");
9603 else if (specs->storage_class == csc_register)
9604 error ("%<__thread%> used with %<register%>");
9605 else if (specs->storage_class == csc_typedef)
9606 error ("%<__thread%> used with %<typedef%>");
9607 else
9608 specs->thread_p = true;
9609 break;
9610 case RID_AUTO:
9611 n = csc_auto;
9612 break;
9613 case RID_EXTERN:
9614 n = csc_extern;
9615 /* Diagnose "__thread extern". */
9616 if (specs->thread_p)
9617 error ("%<__thread%> before %<extern%>");
9618 break;
9619 case RID_REGISTER:
9620 n = csc_register;
9621 break;
9622 case RID_STATIC:
9623 n = csc_static;
9624 /* Diagnose "__thread static". */
9625 if (specs->thread_p)
9626 error ("%<__thread%> before %<static%>");
9627 break;
9628 case RID_TYPEDEF:
9629 n = csc_typedef;
9630 break;
9631 default:
9632 gcc_unreachable ();
9634 if (n != csc_none && n == specs->storage_class)
9635 dupe = true;
9636 if (dupe)
9637 error ("duplicate %qE", scspec);
9638 if (n != csc_none)
9640 if (specs->storage_class != csc_none && n != specs->storage_class)
9642 error ("multiple storage classes in declaration specifiers");
9644 else
9646 specs->storage_class = n;
9647 if (n != csc_extern && n != csc_static && specs->thread_p)
9649 error ("%<__thread%> used with %qE", scspec);
9650 specs->thread_p = false;
9654 return specs;
9657 /* Add the attributes ATTRS to the declaration specifiers SPECS,
9658 returning SPECS. */
9660 struct c_declspecs *
9661 declspecs_add_attrs (struct c_declspecs *specs, tree attrs)
9663 specs->attrs = chainon (attrs, specs->attrs);
9664 specs->declspecs_seen_p = true;
9665 return specs;
9668 /* Combine "long", "short", "signed", "unsigned" and "_Complex" type
9669 specifiers with any other type specifier to determine the resulting
9670 type. This is where ISO C checks on complex types are made, since
9671 "_Complex long" is a prefix of the valid ISO C type "_Complex long
9672 double". */
9674 struct c_declspecs *
9675 finish_declspecs (struct c_declspecs *specs)
9677 /* If a type was specified as a whole, we have no modifiers and are
9678 done. */
9679 if (specs->type != NULL_TREE)
9681 gcc_assert (!specs->long_p && !specs->long_long_p && !specs->short_p
9682 && !specs->signed_p && !specs->unsigned_p
9683 && !specs->complex_p);
9685 /* Set a dummy type. */
9686 if (TREE_CODE (specs->type) == ERROR_MARK)
9687 specs->type = integer_type_node;
9688 return specs;
9691 /* If none of "void", "_Bool", "char", "int", "float" or "double"
9692 has been specified, treat it as "int" unless "_Complex" is
9693 present and there are no other specifiers. If we just have
9694 "_Complex", it is equivalent to "_Complex double", but e.g.
9695 "_Complex short" is equivalent to "_Complex short int". */
9696 if (specs->typespec_word == cts_none)
9698 if (specs->saturating_p)
9700 error ("%<_Sat%> is used without %<_Fract%> or %<_Accum%>");
9701 if (!targetm.fixed_point_supported_p ())
9702 error ("fixed-point types not supported for this target");
9703 specs->typespec_word = cts_fract;
9705 else if (specs->long_p || specs->short_p
9706 || specs->signed_p || specs->unsigned_p)
9708 specs->typespec_word = cts_int;
9710 else if (specs->complex_p)
9712 specs->typespec_word = cts_double;
9713 pedwarn (input_location, OPT_pedantic,
9714 "ISO C does not support plain %<complex%> meaning "
9715 "%<double complex%>");
9717 else
9719 specs->typespec_word = cts_int;
9720 specs->default_int_p = true;
9721 /* We don't diagnose this here because grokdeclarator will
9722 give more specific diagnostics according to whether it is
9723 a function definition. */
9727 /* If "signed" was specified, record this to distinguish "int" and
9728 "signed int" in the case of a bit-field with
9729 -funsigned-bitfields. */
9730 specs->explicit_signed_p = specs->signed_p;
9732 /* Now compute the actual type. */
9733 switch (specs->typespec_word)
9735 case cts_void:
9736 gcc_assert (!specs->long_p && !specs->short_p
9737 && !specs->signed_p && !specs->unsigned_p
9738 && !specs->complex_p);
9739 specs->type = void_type_node;
9740 break;
9741 case cts_bool:
9742 gcc_assert (!specs->long_p && !specs->short_p
9743 && !specs->signed_p && !specs->unsigned_p
9744 && !specs->complex_p);
9745 specs->type = boolean_type_node;
9746 break;
9747 case cts_char:
9748 gcc_assert (!specs->long_p && !specs->short_p);
9749 gcc_assert (!(specs->signed_p && specs->unsigned_p));
9750 if (specs->signed_p)
9751 specs->type = signed_char_type_node;
9752 else if (specs->unsigned_p)
9753 specs->type = unsigned_char_type_node;
9754 else
9755 specs->type = char_type_node;
9756 if (specs->complex_p)
9758 pedwarn (input_location, OPT_pedantic,
9759 "ISO C does not support complex integer types");
9760 specs->type = build_complex_type (specs->type);
9762 break;
9763 case cts_int128:
9764 gcc_assert (!specs->long_p && !specs->short_p && !specs->long_long_p);
9765 gcc_assert (!(specs->signed_p && specs->unsigned_p));
9766 specs->type = (specs->unsigned_p
9767 ? int128_unsigned_type_node
9768 : int128_integer_type_node);
9769 if (specs->complex_p)
9771 pedwarn (input_location, OPT_pedantic,
9772 "ISO C does not support complex integer types");
9773 specs->type = build_complex_type (specs->type);
9775 break;
9776 case cts_int:
9777 gcc_assert (!(specs->long_p && specs->short_p));
9778 gcc_assert (!(specs->signed_p && specs->unsigned_p));
9779 if (specs->long_long_p)
9780 specs->type = (specs->unsigned_p
9781 ? long_long_unsigned_type_node
9782 : long_long_integer_type_node);
9783 else if (specs->long_p)
9784 specs->type = (specs->unsigned_p
9785 ? long_unsigned_type_node
9786 : long_integer_type_node);
9787 else if (specs->short_p)
9788 specs->type = (specs->unsigned_p
9789 ? short_unsigned_type_node
9790 : short_integer_type_node);
9791 else
9792 specs->type = (specs->unsigned_p
9793 ? unsigned_type_node
9794 : integer_type_node);
9795 if (specs->complex_p)
9797 pedwarn (input_location, OPT_pedantic,
9798 "ISO C does not support complex integer types");
9799 specs->type = build_complex_type (specs->type);
9801 break;
9802 case cts_float:
9803 gcc_assert (!specs->long_p && !specs->short_p
9804 && !specs->signed_p && !specs->unsigned_p);
9805 specs->type = (specs->complex_p
9806 ? complex_float_type_node
9807 : float_type_node);
9808 break;
9809 case cts_double:
9810 gcc_assert (!specs->long_long_p && !specs->short_p
9811 && !specs->signed_p && !specs->unsigned_p);
9812 if (specs->long_p)
9814 specs->type = (specs->complex_p
9815 ? complex_long_double_type_node
9816 : long_double_type_node);
9818 else
9820 specs->type = (specs->complex_p
9821 ? complex_double_type_node
9822 : double_type_node);
9824 break;
9825 case cts_dfloat32:
9826 case cts_dfloat64:
9827 case cts_dfloat128:
9828 gcc_assert (!specs->long_p && !specs->long_long_p && !specs->short_p
9829 && !specs->signed_p && !specs->unsigned_p && !specs->complex_p);
9830 if (specs->typespec_word == cts_dfloat32)
9831 specs->type = dfloat32_type_node;
9832 else if (specs->typespec_word == cts_dfloat64)
9833 specs->type = dfloat64_type_node;
9834 else
9835 specs->type = dfloat128_type_node;
9836 break;
9837 case cts_fract:
9838 gcc_assert (!specs->complex_p);
9839 if (!targetm.fixed_point_supported_p ())
9840 specs->type = integer_type_node;
9841 else if (specs->saturating_p)
9843 if (specs->long_long_p)
9844 specs->type = specs->unsigned_p
9845 ? sat_unsigned_long_long_fract_type_node
9846 : sat_long_long_fract_type_node;
9847 else if (specs->long_p)
9848 specs->type = specs->unsigned_p
9849 ? sat_unsigned_long_fract_type_node
9850 : sat_long_fract_type_node;
9851 else if (specs->short_p)
9852 specs->type = specs->unsigned_p
9853 ? sat_unsigned_short_fract_type_node
9854 : sat_short_fract_type_node;
9855 else
9856 specs->type = specs->unsigned_p
9857 ? sat_unsigned_fract_type_node
9858 : sat_fract_type_node;
9860 else
9862 if (specs->long_long_p)
9863 specs->type = specs->unsigned_p
9864 ? unsigned_long_long_fract_type_node
9865 : long_long_fract_type_node;
9866 else if (specs->long_p)
9867 specs->type = specs->unsigned_p
9868 ? unsigned_long_fract_type_node
9869 : long_fract_type_node;
9870 else if (specs->short_p)
9871 specs->type = specs->unsigned_p
9872 ? unsigned_short_fract_type_node
9873 : short_fract_type_node;
9874 else
9875 specs->type = specs->unsigned_p
9876 ? unsigned_fract_type_node
9877 : fract_type_node;
9879 break;
9880 case cts_accum:
9881 gcc_assert (!specs->complex_p);
9882 if (!targetm.fixed_point_supported_p ())
9883 specs->type = integer_type_node;
9884 else if (specs->saturating_p)
9886 if (specs->long_long_p)
9887 specs->type = specs->unsigned_p
9888 ? sat_unsigned_long_long_accum_type_node
9889 : sat_long_long_accum_type_node;
9890 else if (specs->long_p)
9891 specs->type = specs->unsigned_p
9892 ? sat_unsigned_long_accum_type_node
9893 : sat_long_accum_type_node;
9894 else if (specs->short_p)
9895 specs->type = specs->unsigned_p
9896 ? sat_unsigned_short_accum_type_node
9897 : sat_short_accum_type_node;
9898 else
9899 specs->type = specs->unsigned_p
9900 ? sat_unsigned_accum_type_node
9901 : sat_accum_type_node;
9903 else
9905 if (specs->long_long_p)
9906 specs->type = specs->unsigned_p
9907 ? unsigned_long_long_accum_type_node
9908 : long_long_accum_type_node;
9909 else if (specs->long_p)
9910 specs->type = specs->unsigned_p
9911 ? unsigned_long_accum_type_node
9912 : long_accum_type_node;
9913 else if (specs->short_p)
9914 specs->type = specs->unsigned_p
9915 ? unsigned_short_accum_type_node
9916 : short_accum_type_node;
9917 else
9918 specs->type = specs->unsigned_p
9919 ? unsigned_accum_type_node
9920 : accum_type_node;
9922 break;
9923 default:
9924 gcc_unreachable ();
9927 return specs;
9930 /* A subroutine of c_write_global_declarations. Perform final processing
9931 on one file scope's declarations (or the external scope's declarations),
9932 GLOBALS. */
9934 static void
9935 c_write_global_declarations_1 (tree globals)
9937 tree decl;
9938 bool reconsider;
9940 /* Process the decls in the order they were written. */
9941 for (decl = globals; decl; decl = DECL_CHAIN (decl))
9943 /* Check for used but undefined static functions using the C
9944 standard's definition of "used", and set TREE_NO_WARNING so
9945 that check_global_declarations doesn't repeat the check. */
9946 if (TREE_CODE (decl) == FUNCTION_DECL
9947 && DECL_INITIAL (decl) == 0
9948 && DECL_EXTERNAL (decl)
9949 && !TREE_PUBLIC (decl)
9950 && C_DECL_USED (decl))
9952 pedwarn (input_location, 0, "%q+F used but never defined", decl);
9953 TREE_NO_WARNING (decl) = 1;
9956 wrapup_global_declaration_1 (decl);
9961 reconsider = false;
9962 for (decl = globals; decl; decl = DECL_CHAIN (decl))
9963 reconsider |= wrapup_global_declaration_2 (decl);
9965 while (reconsider);
9967 for (decl = globals; decl; decl = DECL_CHAIN (decl))
9968 check_global_declaration_1 (decl);
9971 /* A subroutine of c_write_global_declarations Emit debug information for each
9972 of the declarations in GLOBALS. */
9974 static void
9975 c_write_global_declarations_2 (tree globals)
9977 tree decl;
9979 for (decl = globals; decl ; decl = DECL_CHAIN (decl))
9980 debug_hooks->global_decl (decl);
9983 /* Callback to collect a source_ref from a DECL. */
9985 static void
9986 collect_source_ref_cb (tree decl)
9988 if (!DECL_IS_BUILTIN (decl))
9989 collect_source_ref (LOCATION_FILE (decl_sloc (decl, false)));
9992 /* Collect all references relevant to SOURCE_FILE. */
9994 static void
9995 collect_all_refs (const char *source_file)
9997 tree t;
9998 unsigned i;
10000 FOR_EACH_VEC_ELT (tree, all_translation_units, i, t)
10001 collect_ada_nodes (BLOCK_VARS (DECL_INITIAL (t)), source_file);
10004 /* Iterate over all global declarations and call CALLBACK. */
10006 static void
10007 for_each_global_decl (void (*callback) (tree decl))
10009 tree t;
10010 tree decls;
10011 tree decl;
10012 unsigned i;
10014 FOR_EACH_VEC_ELT (tree, all_translation_units, i, t)
10016 decls = DECL_INITIAL (t);
10017 for (decl = BLOCK_VARS (decls); decl; decl = TREE_CHAIN (decl))
10018 callback (decl);
10022 /* Preserve the external declarations scope across a garbage collect. */
10023 static GTY(()) tree ext_block;
10025 void
10026 c_write_global_declarations (void)
10028 tree t;
10029 unsigned i;
10031 /* We don't want to do this if generating a PCH. */
10032 if (pch_file)
10033 return;
10035 /* Do the Objective-C stuff. This is where all the Objective-C
10036 module stuff gets generated (symtab, class/protocol/selector
10037 lists etc). */
10038 if (c_dialect_objc ())
10039 objc_write_global_declarations ();
10041 /* Close the external scope. */
10042 ext_block = pop_scope ();
10043 external_scope = 0;
10044 gcc_assert (!current_scope);
10046 /* Handle -fdump-ada-spec[-slim]. */
10047 if (dump_enabled_p (TDI_ada))
10049 /* Build a table of files to generate specs for */
10050 if (get_dump_file_info (TDI_ada)->flags & TDF_SLIM)
10051 collect_source_ref (main_input_filename);
10052 else
10053 for_each_global_decl (collect_source_ref_cb);
10055 dump_ada_specs (collect_all_refs, NULL);
10058 if (ext_block)
10060 tree tmp = BLOCK_VARS (ext_block);
10061 int flags;
10062 FILE * stream = dump_begin (TDI_tu, &flags);
10063 if (stream && tmp)
10065 dump_node (tmp, flags & ~TDF_SLIM, stream);
10066 dump_end (TDI_tu, stream);
10070 /* Process all file scopes in this compilation, and the external_scope,
10071 through wrapup_global_declarations and check_global_declarations. */
10072 FOR_EACH_VEC_ELT (tree, all_translation_units, i, t)
10073 c_write_global_declarations_1 (BLOCK_VARS (DECL_INITIAL (t)));
10074 c_write_global_declarations_1 (BLOCK_VARS (ext_block));
10076 /* We're done parsing; proceed to optimize and emit assembly.
10077 FIXME: shouldn't be the front end's responsibility to call this. */
10078 cgraph_finalize_compilation_unit ();
10080 /* After cgraph has had a chance to emit everything that's going to
10081 be emitted, output debug information for globals. */
10082 if (!seen_error ())
10084 timevar_push (TV_SYMOUT);
10085 FOR_EACH_VEC_ELT (tree, all_translation_units, i, t)
10086 c_write_global_declarations_2 (BLOCK_VARS (DECL_INITIAL (t)));
10087 c_write_global_declarations_2 (BLOCK_VARS (ext_block));
10088 timevar_pop (TV_SYMOUT);
10091 ext_block = NULL;
10094 /* Register reserved keyword WORD as qualifier for address space AS. */
10096 void
10097 c_register_addr_space (const char *word, addr_space_t as)
10099 int rid = RID_FIRST_ADDR_SPACE + as;
10100 tree id;
10102 /* Address space qualifiers are only supported
10103 in C with GNU extensions enabled. */
10104 if (c_dialect_objc () || flag_no_asm)
10105 return;
10107 id = get_identifier (word);
10108 C_SET_RID_CODE (id, rid);
10109 C_IS_RESERVED_WORD (id) = 1;
10110 ridpointers [rid] = id;
10113 #include "gt-c-decl.h"