]> git.ipfire.org Git - thirdparty/gcc.git/blob - gcc/c/c-decl.c
use templates instead of gengtype for typed allocation functions
[thirdparty/gcc.git] / gcc / c / c-decl.c
1 /* Process declarations and variables for C compiler.
2 Copyright (C) 1988-2014 Free Software Foundation, Inc.
3
4 This file is part of GCC.
5
6 GCC is free software; you can redistribute it and/or modify it under
7 the terms of the GNU General Public License as published by the Free
8 Software Foundation; either version 3, or (at your option) any later
9 version.
10
11 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
12 WARRANTY; without even the implied warranty of MERCHANTABILITY or
13 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
14 for more details.
15
16 You should have received a copy of the GNU General Public License
17 along with GCC; see the file COPYING3. If not see
18 <http://www.gnu.org/licenses/>. */
19
20 /* Process declarations and symbol lookup for C front end.
21 Also constructs types; the standard scalar types at initialization,
22 and structure, union, array and enum types when they are declared. */
23
24 /* ??? not all decl nodes are given the most useful possible
25 line numbers. For example, the CONST_DECLs for enum values. */
26
27 #include "config.h"
28 #include "system.h"
29 #include "coretypes.h"
30 #include "input.h"
31 #include "tm.h"
32 #include "intl.h"
33 #include "tree.h"
34 #include "print-tree.h"
35 #include "stor-layout.h"
36 #include "varasm.h"
37 #include "attribs.h"
38 #include "stringpool.h"
39 #include "tree-inline.h"
40 #include "flags.h"
41 #include "function.h"
42 #include "c-tree.h"
43 #include "toplev.h"
44 #include "tm_p.h"
45 #include "cpplib.h"
46 #include "target.h"
47 #include "debug.h"
48 #include "opts.h"
49 #include "timevar.h"
50 #include "c-family/c-common.h"
51 #include "c-family/c-objc.h"
52 #include "c-family/c-pragma.h"
53 #include "c-family/c-ubsan.h"
54 #include "c-lang.h"
55 #include "langhooks.h"
56 #include "tree-iterator.h"
57 #include "diagnostic-core.h"
58 #include "dumpfile.h"
59 #include "cgraph.h"
60 #include "hash-table.h"
61 #include "langhooks-def.h"
62 #include "pointer-set.h"
63 #include "plugin.h"
64 #include "c-family/c-ada-spec.h"
65 #include "cilk.h"
66
67 /* In grokdeclarator, distinguish syntactic contexts of declarators. */
68 enum decl_context
69 { NORMAL, /* Ordinary declaration */
70 FUNCDEF, /* Function definition */
71 PARM, /* Declaration of parm before function body */
72 FIELD, /* Declaration inside struct or union */
73 TYPENAME}; /* Typename (inside cast or sizeof) */
74
75 /* States indicating how grokdeclarator() should handle declspecs marked
76 with __attribute__((deprecated)). An object declared as
77 __attribute__((deprecated)) suppresses warnings of uses of other
78 deprecated items. */
79
80 enum deprecated_states {
81 DEPRECATED_NORMAL,
82 DEPRECATED_SUPPRESS
83 };
84
85 \f
86 /* Nonzero if we have seen an invalid cross reference
87 to a struct, union, or enum, but not yet printed the message. */
88 tree pending_invalid_xref;
89
90 /* File and line to appear in the eventual error message. */
91 location_t pending_invalid_xref_location;
92
93 /* The file and line that the prototype came from if this is an
94 old-style definition; used for diagnostics in
95 store_parm_decls_oldstyle. */
96
97 static location_t current_function_prototype_locus;
98
99 /* Whether this prototype was built-in. */
100
101 static bool current_function_prototype_built_in;
102
103 /* The argument type information of this prototype. */
104
105 static tree current_function_prototype_arg_types;
106
107 /* The argument information structure for the function currently being
108 defined. */
109
110 static struct c_arg_info *current_function_arg_info;
111
112 /* The obstack on which parser and related data structures, which are
113 not live beyond their top-level declaration or definition, are
114 allocated. */
115 struct obstack parser_obstack;
116
117 /* The current statement tree. */
118
119 static GTY(()) struct stmt_tree_s c_stmt_tree;
120
121 /* State saving variables. */
122 tree c_break_label;
123 tree c_cont_label;
124
125 /* A list of decls to be made automatically visible in each file scope. */
126 static GTY(()) tree visible_builtins;
127
128 /* Set to 0 at beginning of a function definition, set to 1 if
129 a return statement that specifies a return value is seen. */
130
131 int current_function_returns_value;
132
133 /* Set to 0 at beginning of a function definition, set to 1 if
134 a return statement with no argument is seen. */
135
136 int current_function_returns_null;
137
138 /* Set to 0 at beginning of a function definition, set to 1 if
139 a call to a noreturn function is seen. */
140
141 int current_function_returns_abnormally;
142
143 /* Set to nonzero by `grokdeclarator' for a function
144 whose return type is defaulted, if warnings for this are desired. */
145
146 static int warn_about_return_type;
147
148 /* Nonzero when the current toplevel function contains a declaration
149 of a nested function which is never defined. */
150
151 static bool undef_nested_function;
152
153 /* Mode used to build pointers (VOIDmode means ptr_mode). */
154
155 enum machine_mode c_default_pointer_mode = VOIDmode;
156
157 /* If non-zero, implicit "omp declare target" attribute is added into the
158 attribute lists. */
159 int current_omp_declare_target_attribute;
160 \f
161 /* Each c_binding structure describes one binding of an identifier to
162 a decl. All the decls in a scope - irrespective of namespace - are
163 chained together by the ->prev field, which (as the name implies)
164 runs in reverse order. All the decls in a given namespace bound to
165 a given identifier are chained by the ->shadowed field, which runs
166 from inner to outer scopes.
167
168 The ->decl field usually points to a DECL node, but there are two
169 exceptions. In the namespace of type tags, the bound entity is a
170 RECORD_TYPE, UNION_TYPE, or ENUMERAL_TYPE node. If an undeclared
171 identifier is encountered, it is bound to error_mark_node to
172 suppress further errors about that identifier in the current
173 function.
174
175 The ->u.type field stores the type of the declaration in this scope;
176 if NULL, the type is the type of the ->decl field. This is only of
177 relevance for objects with external or internal linkage which may
178 be redeclared in inner scopes, forming composite types that only
179 persist for the duration of those scopes. In the external scope,
180 this stores the composite of all the types declared for this
181 object, visible or not. The ->inner_comp field (used only at file
182 scope) stores whether an incomplete array type at file scope was
183 completed at an inner scope to an array size other than 1.
184
185 The ->u.label field is used for labels. It points to a structure
186 which stores additional information used for warnings.
187
188 The depth field is copied from the scope structure that holds this
189 decl. It is used to preserve the proper ordering of the ->shadowed
190 field (see bind()) and also for a handful of special-case checks.
191 Finally, the invisible bit is true for a decl which should be
192 ignored for purposes of normal name lookup, and the nested bit is
193 true for a decl that's been bound a second time in an inner scope;
194 in all such cases, the binding in the outer scope will have its
195 invisible bit true. */
196
197 struct GTY((chain_next ("%h.prev"))) c_binding {
198 union GTY(()) { /* first so GTY desc can use decl */
199 tree GTY((tag ("0"))) type; /* the type in this scope */
200 struct c_label_vars * GTY((tag ("1"))) label; /* for warnings */
201 } GTY((desc ("TREE_CODE (%0.decl) == LABEL_DECL"))) u;
202 tree decl; /* the decl bound */
203 tree id; /* the identifier it's bound to */
204 struct c_binding *prev; /* the previous decl in this scope */
205 struct c_binding *shadowed; /* the innermost decl shadowed by this one */
206 unsigned int depth : 28; /* depth of this scope */
207 BOOL_BITFIELD invisible : 1; /* normal lookup should ignore this binding */
208 BOOL_BITFIELD nested : 1; /* do not set DECL_CONTEXT when popping */
209 BOOL_BITFIELD inner_comp : 1; /* incomplete array completed in inner scope */
210 BOOL_BITFIELD in_struct : 1; /* currently defined as struct field */
211 location_t locus; /* location for nested bindings */
212 };
213 #define B_IN_SCOPE(b1, b2) ((b1)->depth == (b2)->depth)
214 #define B_IN_CURRENT_SCOPE(b) ((b)->depth == current_scope->depth)
215 #define B_IN_FILE_SCOPE(b) ((b)->depth == 1 /*file_scope->depth*/)
216 #define B_IN_EXTERNAL_SCOPE(b) ((b)->depth == 0 /*external_scope->depth*/)
217
218 #define I_SYMBOL_BINDING(node) \
219 (((struct lang_identifier *) IDENTIFIER_NODE_CHECK(node))->symbol_binding)
220 #define I_SYMBOL_DECL(node) \
221 (I_SYMBOL_BINDING(node) ? I_SYMBOL_BINDING(node)->decl : 0)
222
223 #define I_TAG_BINDING(node) \
224 (((struct lang_identifier *) IDENTIFIER_NODE_CHECK(node))->tag_binding)
225 #define I_TAG_DECL(node) \
226 (I_TAG_BINDING(node) ? I_TAG_BINDING(node)->decl : 0)
227
228 #define I_LABEL_BINDING(node) \
229 (((struct lang_identifier *) IDENTIFIER_NODE_CHECK(node))->label_binding)
230 #define I_LABEL_DECL(node) \
231 (I_LABEL_BINDING(node) ? I_LABEL_BINDING(node)->decl : 0)
232
233 /* Each C symbol points to three linked lists of c_binding structures.
234 These describe the values of the identifier in the three different
235 namespaces defined by the language. */
236
237 struct GTY(()) lang_identifier {
238 struct c_common_identifier common_id;
239 struct c_binding *symbol_binding; /* vars, funcs, constants, typedefs */
240 struct c_binding *tag_binding; /* struct/union/enum tags */
241 struct c_binding *label_binding; /* labels */
242 };
243
244 /* Validate c-lang.c's assumptions. */
245 extern char C_SIZEOF_STRUCT_LANG_IDENTIFIER_isnt_accurate
246 [(sizeof(struct lang_identifier) == C_SIZEOF_STRUCT_LANG_IDENTIFIER) ? 1 : -1];
247
248 /* The resulting tree type. */
249
250 union GTY((desc ("TREE_CODE (&%h.generic) == IDENTIFIER_NODE"),
251 chain_next ("(union lang_tree_node *) c_tree_chain_next (&%h.generic)"))) lang_tree_node
252 {
253 union tree_node GTY ((tag ("0"),
254 desc ("tree_node_structure (&%h)")))
255 generic;
256 struct lang_identifier GTY ((tag ("1"))) identifier;
257 };
258
259 /* Track bindings and other things that matter for goto warnings. For
260 efficiency, we do not gather all the decls at the point of
261 definition. Instead, we point into the bindings structure. As
262 scopes are popped, we update these structures and gather the decls
263 that matter at that time. */
264
265 struct GTY(()) c_spot_bindings {
266 /* The currently open scope which holds bindings defined when the
267 label was defined or the goto statement was found. */
268 struct c_scope *scope;
269 /* The bindings in the scope field which were defined at the point
270 of the label or goto. This lets us look at older or newer
271 bindings in the scope, as appropriate. */
272 struct c_binding *bindings_in_scope;
273 /* The number of statement expressions that have started since this
274 label or goto statement was defined. This is zero if we are at
275 the same statement expression level. It is positive if we are in
276 a statement expression started since this spot. It is negative
277 if this spot was in a statement expression and we have left
278 it. */
279 int stmt_exprs;
280 /* Whether we started in a statement expression but are no longer in
281 it. This is set to true if stmt_exprs ever goes negative. */
282 bool left_stmt_expr;
283 };
284
285 /* This structure is used to keep track of bindings seen when a goto
286 statement is defined. This is only used if we see the goto
287 statement before we see the label. */
288
289 struct GTY(()) c_goto_bindings {
290 /* The location of the goto statement. */
291 location_t loc;
292 /* The bindings of the goto statement. */
293 struct c_spot_bindings goto_bindings;
294 };
295
296 typedef struct c_goto_bindings *c_goto_bindings_p;
297
298 /* The additional information we keep track of for a label binding.
299 These fields are updated as scopes are popped. */
300
301 struct GTY(()) c_label_vars {
302 /* The shadowed c_label_vars, when one label shadows another (which
303 can only happen using a __label__ declaration). */
304 struct c_label_vars *shadowed;
305 /* The bindings when the label was defined. */
306 struct c_spot_bindings label_bindings;
307 /* A list of decls that we care about: decls about which we should
308 warn if a goto branches to this label from later in the function.
309 Decls are added to this list as scopes are popped. We only add
310 the decls that matter. */
311 vec<tree, va_gc> *decls_in_scope;
312 /* A list of goto statements to this label. This is only used for
313 goto statements seen before the label was defined, so that we can
314 issue appropriate warnings for them. */
315 vec<c_goto_bindings_p, va_gc> *gotos;
316 };
317
318 /* Each c_scope structure describes the complete contents of one
319 scope. Four scopes are distinguished specially: the innermost or
320 current scope, the innermost function scope, the file scope (always
321 the second to outermost) and the outermost or external scope.
322
323 Most declarations are recorded in the current scope.
324
325 All normal label declarations are recorded in the innermost
326 function scope, as are bindings of undeclared identifiers to
327 error_mark_node. (GCC permits nested functions as an extension,
328 hence the 'innermost' qualifier.) Explicitly declared labels
329 (using the __label__ extension) appear in the current scope.
330
331 Being in the file scope (current_scope == file_scope) causes
332 special behavior in several places below. Also, under some
333 conditions the Objective-C front end records declarations in the
334 file scope even though that isn't the current scope.
335
336 All declarations with external linkage are recorded in the external
337 scope, even if they aren't visible there; this models the fact that
338 such declarations are visible to the entire program, and (with a
339 bit of cleverness, see pushdecl) allows diagnosis of some violations
340 of C99 6.2.2p7 and 6.2.7p2:
341
342 If, within the same translation unit, the same identifier appears
343 with both internal and external linkage, the behavior is
344 undefined.
345
346 All declarations that refer to the same object or function shall
347 have compatible type; otherwise, the behavior is undefined.
348
349 Initially only the built-in declarations, which describe compiler
350 intrinsic functions plus a subset of the standard library, are in
351 this scope.
352
353 The order of the blocks list matters, and it is frequently appended
354 to. To avoid having to walk all the way to the end of the list on
355 each insertion, or reverse the list later, we maintain a pointer to
356 the last list entry. (FIXME: It should be feasible to use a reversed
357 list here.)
358
359 The bindings list is strictly in reverse order of declarations;
360 pop_scope relies on this. */
361
362
363 struct GTY((chain_next ("%h.outer"))) c_scope {
364 /* The scope containing this one. */
365 struct c_scope *outer;
366
367 /* The next outermost function scope. */
368 struct c_scope *outer_function;
369
370 /* All bindings in this scope. */
371 struct c_binding *bindings;
372
373 /* For each scope (except the global one), a chain of BLOCK nodes
374 for all the scopes that were entered and exited one level down. */
375 tree blocks;
376 tree blocks_last;
377
378 /* The depth of this scope. Used to keep the ->shadowed chain of
379 bindings sorted innermost to outermost. */
380 unsigned int depth : 28;
381
382 /* True if we are currently filling this scope with parameter
383 declarations. */
384 BOOL_BITFIELD parm_flag : 1;
385
386 /* True if we saw [*] in this scope. Used to give an error messages
387 if these appears in a function definition. */
388 BOOL_BITFIELD had_vla_unspec : 1;
389
390 /* True if we already complained about forward parameter decls
391 in this scope. This prevents double warnings on
392 foo (int a; int b; ...) */
393 BOOL_BITFIELD warned_forward_parm_decls : 1;
394
395 /* True if this is the outermost block scope of a function body.
396 This scope contains the parameters, the local variables declared
397 in the outermost block, and all the labels (except those in
398 nested functions, or declared at block scope with __label__). */
399 BOOL_BITFIELD function_body : 1;
400
401 /* True means make a BLOCK for this scope no matter what. */
402 BOOL_BITFIELD keep : 1;
403
404 /* True means that an unsuffixed float constant is _Decimal64. */
405 BOOL_BITFIELD float_const_decimal64 : 1;
406
407 /* True if this scope has any label bindings. This is used to speed
408 up searching for labels when popping scopes, particularly since
409 labels are normally only found at function scope. */
410 BOOL_BITFIELD has_label_bindings : 1;
411
412 /* True if we should issue a warning if a goto statement crosses any
413 of the bindings. We still need to check the list of bindings to
414 find the specific ones we need to warn about. This is true if
415 decl_jump_unsafe would return true for any of the bindings. This
416 is used to avoid looping over all the bindings unnecessarily. */
417 BOOL_BITFIELD has_jump_unsafe_decl : 1;
418 };
419
420 /* The scope currently in effect. */
421
422 static GTY(()) struct c_scope *current_scope;
423
424 /* The innermost function scope. Ordinary (not explicitly declared)
425 labels, bindings to error_mark_node, and the lazily-created
426 bindings of __func__ and its friends get this scope. */
427
428 static GTY(()) struct c_scope *current_function_scope;
429
430 /* The C file scope. This is reset for each input translation unit. */
431
432 static GTY(()) struct c_scope *file_scope;
433
434 /* The outermost scope. This is used for all declarations with
435 external linkage, and only these, hence the name. */
436
437 static GTY(()) struct c_scope *external_scope;
438
439 /* A chain of c_scope structures awaiting reuse. */
440
441 static GTY((deletable)) struct c_scope *scope_freelist;
442
443 /* A chain of c_binding structures awaiting reuse. */
444
445 static GTY((deletable)) struct c_binding *binding_freelist;
446
447 /* Append VAR to LIST in scope SCOPE. */
448 #define SCOPE_LIST_APPEND(scope, list, decl) do { \
449 struct c_scope *s_ = (scope); \
450 tree d_ = (decl); \
451 if (s_->list##_last) \
452 BLOCK_CHAIN (s_->list##_last) = d_; \
453 else \
454 s_->list = d_; \
455 s_->list##_last = d_; \
456 } while (0)
457
458 /* Concatenate FROM in scope FSCOPE onto TO in scope TSCOPE. */
459 #define SCOPE_LIST_CONCAT(tscope, to, fscope, from) do { \
460 struct c_scope *t_ = (tscope); \
461 struct c_scope *f_ = (fscope); \
462 if (t_->to##_last) \
463 BLOCK_CHAIN (t_->to##_last) = f_->from; \
464 else \
465 t_->to = f_->from; \
466 t_->to##_last = f_->from##_last; \
467 } while (0)
468
469 /* A c_inline_static structure stores details of a static identifier
470 referenced in a definition of a function that may be an inline
471 definition if no subsequent declaration of that function uses
472 "extern" or does not use "inline". */
473
474 struct GTY((chain_next ("%h.next"))) c_inline_static {
475 /* The location for a diagnostic. */
476 location_t location;
477
478 /* The function that may be an inline definition. */
479 tree function;
480
481 /* The object or function referenced. */
482 tree static_decl;
483
484 /* What sort of reference this is. */
485 enum c_inline_static_type type;
486
487 /* The next such structure or NULL. */
488 struct c_inline_static *next;
489 };
490
491 /* List of static identifiers used or referenced in functions that may
492 be inline definitions. */
493 static GTY(()) struct c_inline_static *c_inline_statics;
494
495 /* True means unconditionally make a BLOCK for the next scope pushed. */
496
497 static bool keep_next_level_flag;
498
499 /* True means the next call to push_scope will be the outermost scope
500 of a function body, so do not push a new scope, merely cease
501 expecting parameter decls. */
502
503 static bool next_is_function_body;
504
505 /* A vector of pointers to c_binding structures. */
506
507 typedef struct c_binding *c_binding_ptr;
508
509 /* Information that we keep for a struct or union while it is being
510 parsed. */
511
512 struct c_struct_parse_info
513 {
514 /* If warn_cxx_compat, a list of types defined within this
515 struct. */
516 vec<tree> struct_types;
517 /* If warn_cxx_compat, a list of field names which have bindings,
518 and which are defined in this struct, but which are not defined
519 in any enclosing struct. This is used to clear the in_struct
520 field of the c_bindings structure. */
521 vec<c_binding_ptr> fields;
522 /* If warn_cxx_compat, a list of typedef names used when defining
523 fields in this struct. */
524 vec<tree> typedefs_seen;
525 };
526
527 /* Information for the struct or union currently being parsed, or
528 NULL if not parsing a struct or union. */
529 static struct c_struct_parse_info *struct_parse_info;
530
531 /* Forward declarations. */
532 static tree lookup_name_in_scope (tree, struct c_scope *);
533 static tree c_make_fname_decl (location_t, tree, int);
534 static tree grokdeclarator (const struct c_declarator *,
535 struct c_declspecs *,
536 enum decl_context, bool, tree *, tree *, tree *,
537 bool *, enum deprecated_states);
538 static tree grokparms (struct c_arg_info *, bool);
539 static void layout_array_type (tree);
540 \f
541 /* T is a statement. Add it to the statement-tree. This is the
542 C/ObjC version--C++ has a slightly different version of this
543 function. */
544
545 tree
546 add_stmt (tree t)
547 {
548 enum tree_code code = TREE_CODE (t);
549
550 if (CAN_HAVE_LOCATION_P (t) && code != LABEL_EXPR)
551 {
552 if (!EXPR_HAS_LOCATION (t))
553 SET_EXPR_LOCATION (t, input_location);
554 }
555
556 if (code == LABEL_EXPR || code == CASE_LABEL_EXPR)
557 STATEMENT_LIST_HAS_LABEL (cur_stmt_list) = 1;
558
559 /* Add T to the statement-tree. Non-side-effect statements need to be
560 recorded during statement expressions. */
561 if (!building_stmt_list_p ())
562 push_stmt_list ();
563 append_to_statement_list_force (t, &cur_stmt_list);
564
565 return t;
566 }
567 \f
568 /* Build a pointer type using the default pointer mode. */
569
570 static tree
571 c_build_pointer_type (tree to_type)
572 {
573 addr_space_t as = to_type == error_mark_node? ADDR_SPACE_GENERIC
574 : TYPE_ADDR_SPACE (to_type);
575 enum machine_mode pointer_mode;
576
577 if (as != ADDR_SPACE_GENERIC || c_default_pointer_mode == VOIDmode)
578 pointer_mode = targetm.addr_space.pointer_mode (as);
579 else
580 pointer_mode = c_default_pointer_mode;
581 return build_pointer_type_for_mode (to_type, pointer_mode, false);
582 }
583
584 \f
585 /* Return true if we will want to say something if a goto statement
586 crosses DECL. */
587
588 static bool
589 decl_jump_unsafe (tree decl)
590 {
591 if (error_operand_p (decl))
592 return false;
593
594 /* Always warn about crossing variably modified types. */
595 if ((TREE_CODE (decl) == VAR_DECL || TREE_CODE (decl) == TYPE_DECL)
596 && variably_modified_type_p (TREE_TYPE (decl), NULL_TREE))
597 return true;
598
599 /* Otherwise, only warn if -Wgoto-misses-init and this is an
600 initialized automatic decl. */
601 if (warn_jump_misses_init
602 && TREE_CODE (decl) == VAR_DECL
603 && !TREE_STATIC (decl)
604 && DECL_INITIAL (decl) != NULL_TREE)
605 return true;
606
607 return false;
608 }
609 \f
610
611 void
612 c_print_identifier (FILE *file, tree node, int indent)
613 {
614 print_node (file, "symbol", I_SYMBOL_DECL (node), indent + 4);
615 print_node (file, "tag", I_TAG_DECL (node), indent + 4);
616 print_node (file, "label", I_LABEL_DECL (node), indent + 4);
617 if (C_IS_RESERVED_WORD (node) && C_RID_CODE (node) != RID_CXX_COMPAT_WARN)
618 {
619 tree rid = ridpointers[C_RID_CODE (node)];
620 indent_to (file, indent + 4);
621 fprintf (file, "rid " HOST_PTR_PRINTF " \"%s\"",
622 (void *) rid, IDENTIFIER_POINTER (rid));
623 }
624 }
625
626 /* Establish a binding between NAME, an IDENTIFIER_NODE, and DECL,
627 which may be any of several kinds of DECL or TYPE or error_mark_node,
628 in the scope SCOPE. */
629 static void
630 bind (tree name, tree decl, struct c_scope *scope, bool invisible,
631 bool nested, location_t locus)
632 {
633 struct c_binding *b, **here;
634
635 if (binding_freelist)
636 {
637 b = binding_freelist;
638 binding_freelist = b->prev;
639 }
640 else
641 b = ggc_alloc<c_binding> ();
642
643 b->shadowed = 0;
644 b->decl = decl;
645 b->id = name;
646 b->depth = scope->depth;
647 b->invisible = invisible;
648 b->nested = nested;
649 b->inner_comp = 0;
650 b->in_struct = 0;
651 b->locus = locus;
652
653 b->u.type = NULL;
654
655 b->prev = scope->bindings;
656 scope->bindings = b;
657
658 if (decl_jump_unsafe (decl))
659 scope->has_jump_unsafe_decl = 1;
660
661 if (!name)
662 return;
663
664 switch (TREE_CODE (decl))
665 {
666 case LABEL_DECL: here = &I_LABEL_BINDING (name); break;
667 case ENUMERAL_TYPE:
668 case UNION_TYPE:
669 case RECORD_TYPE: here = &I_TAG_BINDING (name); break;
670 case VAR_DECL:
671 case FUNCTION_DECL:
672 case TYPE_DECL:
673 case CONST_DECL:
674 case PARM_DECL:
675 case ERROR_MARK: here = &I_SYMBOL_BINDING (name); break;
676
677 default:
678 gcc_unreachable ();
679 }
680
681 /* Locate the appropriate place in the chain of shadowed decls
682 to insert this binding. Normally, scope == current_scope and
683 this does nothing. */
684 while (*here && (*here)->depth > scope->depth)
685 here = &(*here)->shadowed;
686
687 b->shadowed = *here;
688 *here = b;
689 }
690
691 /* Clear the binding structure B, stick it on the binding_freelist,
692 and return the former value of b->prev. This is used by pop_scope
693 and get_parm_info to iterate destructively over all the bindings
694 from a given scope. */
695 static struct c_binding *
696 free_binding_and_advance (struct c_binding *b)
697 {
698 struct c_binding *prev = b->prev;
699
700 memset (b, 0, sizeof (struct c_binding));
701 b->prev = binding_freelist;
702 binding_freelist = b;
703
704 return prev;
705 }
706
707 /* Bind a label. Like bind, but skip fields which aren't used for
708 labels, and add the LABEL_VARS value. */
709 static void
710 bind_label (tree name, tree label, struct c_scope *scope,
711 struct c_label_vars *label_vars)
712 {
713 struct c_binding *b;
714
715 bind (name, label, scope, /*invisible=*/false, /*nested=*/false,
716 UNKNOWN_LOCATION);
717
718 scope->has_label_bindings = true;
719
720 b = scope->bindings;
721 gcc_assert (b->decl == label);
722 label_vars->shadowed = b->u.label;
723 b->u.label = label_vars;
724 }
725 \f
726 /* Hook called at end of compilation to assume 1 elt
727 for a file-scope tentative array defn that wasn't complete before. */
728
729 void
730 c_finish_incomplete_decl (tree decl)
731 {
732 if (TREE_CODE (decl) == VAR_DECL)
733 {
734 tree type = TREE_TYPE (decl);
735 if (type != error_mark_node
736 && TREE_CODE (type) == ARRAY_TYPE
737 && !DECL_EXTERNAL (decl)
738 && TYPE_DOMAIN (type) == 0)
739 {
740 warning_at (DECL_SOURCE_LOCATION (decl),
741 0, "array %q+D assumed to have one element", decl);
742
743 complete_array_type (&TREE_TYPE (decl), NULL_TREE, true);
744
745 relayout_decl (decl);
746 }
747 }
748 }
749 \f
750 /* Record that inline function FUNC contains a reference (location
751 LOC) to static DECL (file-scope or function-local according to
752 TYPE). */
753
754 void
755 record_inline_static (location_t loc, tree func, tree decl,
756 enum c_inline_static_type type)
757 {
758 c_inline_static *csi = ggc_alloc<c_inline_static> ();
759 csi->location = loc;
760 csi->function = func;
761 csi->static_decl = decl;
762 csi->type = type;
763 csi->next = c_inline_statics;
764 c_inline_statics = csi;
765 }
766
767 /* Check for references to static declarations in inline functions at
768 the end of the translation unit and diagnose them if the functions
769 are still inline definitions. */
770
771 static void
772 check_inline_statics (void)
773 {
774 struct c_inline_static *csi;
775 for (csi = c_inline_statics; csi; csi = csi->next)
776 {
777 if (DECL_EXTERNAL (csi->function))
778 switch (csi->type)
779 {
780 case csi_internal:
781 pedwarn (csi->location, 0,
782 "%qD is static but used in inline function %qD "
783 "which is not static", csi->static_decl, csi->function);
784 break;
785 case csi_modifiable:
786 pedwarn (csi->location, 0,
787 "%q+D is static but declared in inline function %qD "
788 "which is not static", csi->static_decl, csi->function);
789 break;
790 default:
791 gcc_unreachable ();
792 }
793 }
794 c_inline_statics = NULL;
795 }
796 \f
797 /* Fill in a c_spot_bindings structure. If DEFINING is true, set it
798 for the current state, otherwise set it to uninitialized. */
799
800 static void
801 set_spot_bindings (struct c_spot_bindings *p, bool defining)
802 {
803 if (defining)
804 {
805 p->scope = current_scope;
806 p->bindings_in_scope = current_scope->bindings;
807 }
808 else
809 {
810 p->scope = NULL;
811 p->bindings_in_scope = NULL;
812 }
813 p->stmt_exprs = 0;
814 p->left_stmt_expr = false;
815 }
816
817 /* Update spot bindings P as we pop out of SCOPE. Return true if we
818 should push decls for a label. */
819
820 static bool
821 update_spot_bindings (struct c_scope *scope, struct c_spot_bindings *p)
822 {
823 if (p->scope != scope)
824 {
825 /* This label or goto is defined in some other scope, or it is a
826 label which is not yet defined. There is nothing to
827 update. */
828 return false;
829 }
830
831 /* Adjust the spot bindings to refer to the bindings already defined
832 in the enclosing scope. */
833 p->scope = scope->outer;
834 p->bindings_in_scope = p->scope->bindings;
835
836 return true;
837 }
838 \f
839 /* The Objective-C front-end often needs to determine the current scope. */
840
841 void *
842 objc_get_current_scope (void)
843 {
844 return current_scope;
845 }
846
847 /* The following function is used only by Objective-C. It needs to live here
848 because it accesses the innards of c_scope. */
849
850 void
851 objc_mark_locals_volatile (void *enclosing_blk)
852 {
853 struct c_scope *scope;
854 struct c_binding *b;
855
856 for (scope = current_scope;
857 scope && scope != enclosing_blk;
858 scope = scope->outer)
859 {
860 for (b = scope->bindings; b; b = b->prev)
861 objc_volatilize_decl (b->decl);
862
863 /* Do not climb up past the current function. */
864 if (scope->function_body)
865 break;
866 }
867 }
868
869 /* Return true if we are in the global binding level. */
870
871 bool
872 global_bindings_p (void)
873 {
874 return current_scope == file_scope;
875 }
876
877 void
878 keep_next_level (void)
879 {
880 keep_next_level_flag = true;
881 }
882
883 /* Set the flag for the FLOAT_CONST_DECIMAL64 pragma being ON. */
884
885 void
886 set_float_const_decimal64 (void)
887 {
888 current_scope->float_const_decimal64 = true;
889 }
890
891 /* Clear the flag for the FLOAT_CONST_DECIMAL64 pragma. */
892
893 void
894 clear_float_const_decimal64 (void)
895 {
896 current_scope->float_const_decimal64 = false;
897 }
898
899 /* Return nonzero if an unsuffixed float constant is _Decimal64. */
900
901 bool
902 float_const_decimal64_p (void)
903 {
904 return current_scope->float_const_decimal64;
905 }
906
907 /* Identify this scope as currently being filled with parameters. */
908
909 void
910 declare_parm_level (void)
911 {
912 current_scope->parm_flag = true;
913 }
914
915 void
916 push_scope (void)
917 {
918 if (next_is_function_body)
919 {
920 /* This is the transition from the parameters to the top level
921 of the function body. These are the same scope
922 (C99 6.2.1p4,6) so we do not push another scope structure.
923 next_is_function_body is set only by store_parm_decls, which
924 in turn is called when and only when we are about to
925 encounter the opening curly brace for the function body.
926
927 The outermost block of a function always gets a BLOCK node,
928 because the debugging output routines expect that each
929 function has at least one BLOCK. */
930 current_scope->parm_flag = false;
931 current_scope->function_body = true;
932 current_scope->keep = true;
933 current_scope->outer_function = current_function_scope;
934 current_function_scope = current_scope;
935
936 keep_next_level_flag = false;
937 next_is_function_body = false;
938
939 /* The FLOAT_CONST_DECIMAL64 pragma applies to nested scopes. */
940 if (current_scope->outer)
941 current_scope->float_const_decimal64
942 = current_scope->outer->float_const_decimal64;
943 else
944 current_scope->float_const_decimal64 = false;
945 }
946 else
947 {
948 struct c_scope *scope;
949 if (scope_freelist)
950 {
951 scope = scope_freelist;
952 scope_freelist = scope->outer;
953 }
954 else
955 scope = ggc_cleared_alloc<c_scope> ();
956
957 /* The FLOAT_CONST_DECIMAL64 pragma applies to nested scopes. */
958 if (current_scope)
959 scope->float_const_decimal64 = current_scope->float_const_decimal64;
960 else
961 scope->float_const_decimal64 = false;
962
963 scope->keep = keep_next_level_flag;
964 scope->outer = current_scope;
965 scope->depth = current_scope ? (current_scope->depth + 1) : 0;
966
967 /* Check for scope depth overflow. Unlikely (2^28 == 268,435,456) but
968 possible. */
969 if (current_scope && scope->depth == 0)
970 {
971 scope->depth--;
972 sorry ("GCC supports only %u nested scopes", scope->depth);
973 }
974
975 current_scope = scope;
976 keep_next_level_flag = false;
977 }
978 }
979
980 /* This is called when we are leaving SCOPE. For each label defined
981 in SCOPE, add any appropriate decls to its decls_in_scope fields.
982 These are the decls whose initialization will be skipped by a goto
983 later in the function. */
984
985 static void
986 update_label_decls (struct c_scope *scope)
987 {
988 struct c_scope *s;
989
990 s = scope;
991 while (s != NULL)
992 {
993 if (s->has_label_bindings)
994 {
995 struct c_binding *b;
996
997 for (b = s->bindings; b != NULL; b = b->prev)
998 {
999 struct c_label_vars *label_vars;
1000 struct c_binding *b1;
1001 bool hjud;
1002 unsigned int ix;
1003 struct c_goto_bindings *g;
1004
1005 if (TREE_CODE (b->decl) != LABEL_DECL)
1006 continue;
1007 label_vars = b->u.label;
1008
1009 b1 = label_vars->label_bindings.bindings_in_scope;
1010 if (label_vars->label_bindings.scope == NULL)
1011 hjud = false;
1012 else
1013 hjud = label_vars->label_bindings.scope->has_jump_unsafe_decl;
1014 if (update_spot_bindings (scope, &label_vars->label_bindings))
1015 {
1016 /* This label is defined in this scope. */
1017 if (hjud)
1018 {
1019 for (; b1 != NULL; b1 = b1->prev)
1020 {
1021 /* A goto from later in the function to this
1022 label will never see the initialization
1023 of B1, if any. Save it to issue a
1024 warning if needed. */
1025 if (decl_jump_unsafe (b1->decl))
1026 vec_safe_push(label_vars->decls_in_scope, b1->decl);
1027 }
1028 }
1029 }
1030
1031 /* Update the bindings of any goto statements associated
1032 with this label. */
1033 FOR_EACH_VEC_SAFE_ELT (label_vars->gotos, ix, g)
1034 update_spot_bindings (scope, &g->goto_bindings);
1035 }
1036 }
1037
1038 /* Don't search beyond the current function. */
1039 if (s == current_function_scope)
1040 break;
1041
1042 s = s->outer;
1043 }
1044 }
1045
1046 /* Set the TYPE_CONTEXT of all of TYPE's variants to CONTEXT. */
1047
1048 static void
1049 set_type_context (tree type, tree context)
1050 {
1051 for (type = TYPE_MAIN_VARIANT (type); type;
1052 type = TYPE_NEXT_VARIANT (type))
1053 TYPE_CONTEXT (type) = context;
1054 }
1055
1056 /* Exit a scope. Restore the state of the identifier-decl mappings
1057 that were in effect when this scope was entered. Return a BLOCK
1058 node containing all the DECLs in this scope that are of interest
1059 to debug info generation. */
1060
1061 tree
1062 pop_scope (void)
1063 {
1064 struct c_scope *scope = current_scope;
1065 tree block, context, p;
1066 struct c_binding *b;
1067
1068 bool functionbody = scope->function_body;
1069 bool keep = functionbody || scope->keep || scope->bindings;
1070
1071 update_label_decls (scope);
1072
1073 /* If appropriate, create a BLOCK to record the decls for the life
1074 of this function. */
1075 block = 0;
1076 if (keep)
1077 {
1078 block = make_node (BLOCK);
1079 BLOCK_SUBBLOCKS (block) = scope->blocks;
1080 TREE_USED (block) = 1;
1081
1082 /* In each subblock, record that this is its superior. */
1083 for (p = scope->blocks; p; p = BLOCK_CHAIN (p))
1084 BLOCK_SUPERCONTEXT (p) = block;
1085
1086 BLOCK_VARS (block) = 0;
1087 }
1088
1089 /* The TYPE_CONTEXTs for all of the tagged types belonging to this
1090 scope must be set so that they point to the appropriate
1091 construct, i.e. either to the current FUNCTION_DECL node, or
1092 else to the BLOCK node we just constructed.
1093
1094 Note that for tagged types whose scope is just the formal
1095 parameter list for some function type specification, we can't
1096 properly set their TYPE_CONTEXTs here, because we don't have a
1097 pointer to the appropriate FUNCTION_TYPE node readily available
1098 to us. For those cases, the TYPE_CONTEXTs of the relevant tagged
1099 type nodes get set in `grokdeclarator' as soon as we have created
1100 the FUNCTION_TYPE node which will represent the "scope" for these
1101 "parameter list local" tagged types. */
1102 if (scope->function_body)
1103 context = current_function_decl;
1104 else if (scope == file_scope)
1105 {
1106 tree file_decl = build_translation_unit_decl (NULL_TREE);
1107 context = file_decl;
1108 }
1109 else
1110 context = block;
1111
1112 /* Clear all bindings in this scope. */
1113 for (b = scope->bindings; b; b = free_binding_and_advance (b))
1114 {
1115 p = b->decl;
1116 switch (TREE_CODE (p))
1117 {
1118 case LABEL_DECL:
1119 /* Warnings for unused labels, errors for undefined labels. */
1120 if (TREE_USED (p) && !DECL_INITIAL (p))
1121 {
1122 error ("label %q+D used but not defined", p);
1123 DECL_INITIAL (p) = error_mark_node;
1124 }
1125 else
1126 warn_for_unused_label (p);
1127
1128 /* Labels go in BLOCK_VARS. */
1129 DECL_CHAIN (p) = BLOCK_VARS (block);
1130 BLOCK_VARS (block) = p;
1131 gcc_assert (I_LABEL_BINDING (b->id) == b);
1132 I_LABEL_BINDING (b->id) = b->shadowed;
1133
1134 /* Also pop back to the shadowed label_vars. */
1135 release_tree_vector (b->u.label->decls_in_scope);
1136 b->u.label = b->u.label->shadowed;
1137 break;
1138
1139 case ENUMERAL_TYPE:
1140 case UNION_TYPE:
1141 case RECORD_TYPE:
1142 set_type_context (p, context);
1143
1144 /* Types may not have tag-names, in which case the type
1145 appears in the bindings list with b->id NULL. */
1146 if (b->id)
1147 {
1148 gcc_assert (I_TAG_BINDING (b->id) == b);
1149 I_TAG_BINDING (b->id) = b->shadowed;
1150 }
1151 break;
1152
1153 case FUNCTION_DECL:
1154 /* Propagate TREE_ADDRESSABLE from nested functions to their
1155 containing functions. */
1156 if (!TREE_ASM_WRITTEN (p)
1157 && DECL_INITIAL (p) != 0
1158 && TREE_ADDRESSABLE (p)
1159 && DECL_ABSTRACT_ORIGIN (p) != 0
1160 && DECL_ABSTRACT_ORIGIN (p) != p)
1161 TREE_ADDRESSABLE (DECL_ABSTRACT_ORIGIN (p)) = 1;
1162 if (!DECL_EXTERNAL (p)
1163 && !DECL_INITIAL (p)
1164 && scope != file_scope
1165 && scope != external_scope)
1166 {
1167 error ("nested function %q+D declared but never defined", p);
1168 undef_nested_function = true;
1169 }
1170 else if (DECL_DECLARED_INLINE_P (p)
1171 && TREE_PUBLIC (p)
1172 && !DECL_INITIAL (p))
1173 {
1174 /* C99 6.7.4p6: "a function with external linkage... declared
1175 with an inline function specifier ... shall also be defined
1176 in the same translation unit." */
1177 if (!flag_gnu89_inline)
1178 pedwarn (input_location, 0,
1179 "inline function %q+D declared but never defined", p);
1180 DECL_EXTERNAL (p) = 1;
1181 }
1182
1183 goto common_symbol;
1184
1185 case VAR_DECL:
1186 /* Warnings for unused variables. */
1187 if ((!TREE_USED (p) || !DECL_READ_P (p))
1188 && !TREE_NO_WARNING (p)
1189 && !DECL_IN_SYSTEM_HEADER (p)
1190 && DECL_NAME (p)
1191 && !DECL_ARTIFICIAL (p)
1192 && scope != file_scope
1193 && scope != external_scope)
1194 {
1195 if (!TREE_USED (p))
1196 warning (OPT_Wunused_variable, "unused variable %q+D", p);
1197 else if (DECL_CONTEXT (p) == current_function_decl)
1198 warning_at (DECL_SOURCE_LOCATION (p),
1199 OPT_Wunused_but_set_variable,
1200 "variable %qD set but not used", p);
1201 }
1202
1203 if (b->inner_comp)
1204 {
1205 error ("type of array %q+D completed incompatibly with"
1206 " implicit initialization", p);
1207 }
1208
1209 /* Fall through. */
1210 case TYPE_DECL:
1211 case CONST_DECL:
1212 common_symbol:
1213 /* All of these go in BLOCK_VARS, but only if this is the
1214 binding in the home scope. */
1215 if (!b->nested)
1216 {
1217 DECL_CHAIN (p) = BLOCK_VARS (block);
1218 BLOCK_VARS (block) = p;
1219 }
1220 else if (VAR_OR_FUNCTION_DECL_P (p) && scope != file_scope)
1221 {
1222 /* For block local externs add a special
1223 DECL_EXTERNAL decl for debug info generation. */
1224 tree extp = copy_node (p);
1225
1226 DECL_EXTERNAL (extp) = 1;
1227 TREE_STATIC (extp) = 0;
1228 TREE_PUBLIC (extp) = 1;
1229 DECL_INITIAL (extp) = NULL_TREE;
1230 DECL_LANG_SPECIFIC (extp) = NULL;
1231 DECL_CONTEXT (extp) = current_function_decl;
1232 if (TREE_CODE (p) == FUNCTION_DECL)
1233 {
1234 DECL_RESULT (extp) = NULL_TREE;
1235 DECL_SAVED_TREE (extp) = NULL_TREE;
1236 DECL_STRUCT_FUNCTION (extp) = NULL;
1237 }
1238 if (b->locus != UNKNOWN_LOCATION)
1239 DECL_SOURCE_LOCATION (extp) = b->locus;
1240 DECL_CHAIN (extp) = BLOCK_VARS (block);
1241 BLOCK_VARS (block) = extp;
1242 }
1243 /* If this is the file scope set DECL_CONTEXT of each decl to
1244 the TRANSLATION_UNIT_DECL. This makes same_translation_unit_p
1245 work. */
1246 if (scope == file_scope)
1247 {
1248 DECL_CONTEXT (p) = context;
1249 if (TREE_CODE (p) == TYPE_DECL
1250 && TREE_TYPE (p) != error_mark_node)
1251 set_type_context (TREE_TYPE (p), context);
1252 }
1253
1254 /* Fall through. */
1255 /* Parameters go in DECL_ARGUMENTS, not BLOCK_VARS, and have
1256 already been put there by store_parm_decls. Unused-
1257 parameter warnings are handled by function.c.
1258 error_mark_node obviously does not go in BLOCK_VARS and
1259 does not get unused-variable warnings. */
1260 case PARM_DECL:
1261 case ERROR_MARK:
1262 /* It is possible for a decl not to have a name. We get
1263 here with b->id NULL in this case. */
1264 if (b->id)
1265 {
1266 gcc_assert (I_SYMBOL_BINDING (b->id) == b);
1267 I_SYMBOL_BINDING (b->id) = b->shadowed;
1268 if (b->shadowed && b->shadowed->u.type)
1269 TREE_TYPE (b->shadowed->decl) = b->shadowed->u.type;
1270 }
1271 break;
1272
1273 default:
1274 gcc_unreachable ();
1275 }
1276 }
1277
1278
1279 /* Dispose of the block that we just made inside some higher level. */
1280 if ((scope->function_body || scope == file_scope) && context)
1281 {
1282 DECL_INITIAL (context) = block;
1283 BLOCK_SUPERCONTEXT (block) = context;
1284 }
1285 else if (scope->outer)
1286 {
1287 if (block)
1288 SCOPE_LIST_APPEND (scope->outer, blocks, block);
1289 /* If we did not make a block for the scope just exited, any
1290 blocks made for inner scopes must be carried forward so they
1291 will later become subblocks of something else. */
1292 else if (scope->blocks)
1293 SCOPE_LIST_CONCAT (scope->outer, blocks, scope, blocks);
1294 }
1295
1296 /* Pop the current scope, and free the structure for reuse. */
1297 current_scope = scope->outer;
1298 if (scope->function_body)
1299 current_function_scope = scope->outer_function;
1300
1301 memset (scope, 0, sizeof (struct c_scope));
1302 scope->outer = scope_freelist;
1303 scope_freelist = scope;
1304
1305 return block;
1306 }
1307
1308 void
1309 push_file_scope (void)
1310 {
1311 tree decl;
1312
1313 if (file_scope)
1314 return;
1315
1316 push_scope ();
1317 file_scope = current_scope;
1318
1319 start_fname_decls ();
1320
1321 for (decl = visible_builtins; decl; decl = DECL_CHAIN (decl))
1322 bind (DECL_NAME (decl), decl, file_scope,
1323 /*invisible=*/false, /*nested=*/true, DECL_SOURCE_LOCATION (decl));
1324 }
1325
1326 void
1327 pop_file_scope (void)
1328 {
1329 /* In case there were missing closebraces, get us back to the global
1330 binding level. */
1331 while (current_scope != file_scope)
1332 pop_scope ();
1333
1334 /* __FUNCTION__ is defined at file scope (""). This
1335 call may not be necessary as my tests indicate it
1336 still works without it. */
1337 finish_fname_decls ();
1338
1339 check_inline_statics ();
1340
1341 /* This is the point to write out a PCH if we're doing that.
1342 In that case we do not want to do anything else. */
1343 if (pch_file)
1344 {
1345 c_common_write_pch ();
1346 return;
1347 }
1348
1349 /* Pop off the file scope and close this translation unit. */
1350 pop_scope ();
1351 file_scope = 0;
1352
1353 maybe_apply_pending_pragma_weaks ();
1354 }
1355 \f
1356 /* Adjust the bindings for the start of a statement expression. */
1357
1358 void
1359 c_bindings_start_stmt_expr (struct c_spot_bindings* switch_bindings)
1360 {
1361 struct c_scope *scope;
1362
1363 for (scope = current_scope; scope != NULL; scope = scope->outer)
1364 {
1365 struct c_binding *b;
1366
1367 if (!scope->has_label_bindings)
1368 continue;
1369
1370 for (b = scope->bindings; b != NULL; b = b->prev)
1371 {
1372 struct c_label_vars *label_vars;
1373 unsigned int ix;
1374 struct c_goto_bindings *g;
1375
1376 if (TREE_CODE (b->decl) != LABEL_DECL)
1377 continue;
1378 label_vars = b->u.label;
1379 ++label_vars->label_bindings.stmt_exprs;
1380 FOR_EACH_VEC_SAFE_ELT (label_vars->gotos, ix, g)
1381 ++g->goto_bindings.stmt_exprs;
1382 }
1383 }
1384
1385 if (switch_bindings != NULL)
1386 ++switch_bindings->stmt_exprs;
1387 }
1388
1389 /* Adjust the bindings for the end of a statement expression. */
1390
1391 void
1392 c_bindings_end_stmt_expr (struct c_spot_bindings *switch_bindings)
1393 {
1394 struct c_scope *scope;
1395
1396 for (scope = current_scope; scope != NULL; scope = scope->outer)
1397 {
1398 struct c_binding *b;
1399
1400 if (!scope->has_label_bindings)
1401 continue;
1402
1403 for (b = scope->bindings; b != NULL; b = b->prev)
1404 {
1405 struct c_label_vars *label_vars;
1406 unsigned int ix;
1407 struct c_goto_bindings *g;
1408
1409 if (TREE_CODE (b->decl) != LABEL_DECL)
1410 continue;
1411 label_vars = b->u.label;
1412 --label_vars->label_bindings.stmt_exprs;
1413 if (label_vars->label_bindings.stmt_exprs < 0)
1414 {
1415 label_vars->label_bindings.left_stmt_expr = true;
1416 label_vars->label_bindings.stmt_exprs = 0;
1417 }
1418 FOR_EACH_VEC_SAFE_ELT (label_vars->gotos, ix, g)
1419 {
1420 --g->goto_bindings.stmt_exprs;
1421 if (g->goto_bindings.stmt_exprs < 0)
1422 {
1423 g->goto_bindings.left_stmt_expr = true;
1424 g->goto_bindings.stmt_exprs = 0;
1425 }
1426 }
1427 }
1428 }
1429
1430 if (switch_bindings != NULL)
1431 {
1432 --switch_bindings->stmt_exprs;
1433 gcc_assert (switch_bindings->stmt_exprs >= 0);
1434 }
1435 }
1436 \f
1437 /* Push a definition or a declaration of struct, union or enum tag "name".
1438 "type" should be the type node.
1439 We assume that the tag "name" is not already defined, and has a location
1440 of LOC.
1441
1442 Note that the definition may really be just a forward reference.
1443 In that case, the TYPE_SIZE will be zero. */
1444
1445 static void
1446 pushtag (location_t loc, tree name, tree type)
1447 {
1448 /* Record the identifier as the type's name if it has none. */
1449 if (name && !TYPE_NAME (type))
1450 TYPE_NAME (type) = name;
1451 bind (name, type, current_scope, /*invisible=*/false, /*nested=*/false, loc);
1452
1453 /* Create a fake NULL-named TYPE_DECL node whose TREE_TYPE will be the
1454 tagged type we just added to the current scope. This fake
1455 NULL-named TYPE_DECL node helps dwarfout.c to know when it needs
1456 to output a representation of a tagged type, and it also gives
1457 us a convenient place to record the "scope start" address for the
1458 tagged type. */
1459
1460 TYPE_STUB_DECL (type) = pushdecl (build_decl (loc,
1461 TYPE_DECL, NULL_TREE, type));
1462
1463 /* An approximation for now, so we can tell this is a function-scope tag.
1464 This will be updated in pop_scope. */
1465 TYPE_CONTEXT (type) = DECL_CONTEXT (TYPE_STUB_DECL (type));
1466
1467 if (warn_cxx_compat && name != NULL_TREE)
1468 {
1469 struct c_binding *b = I_SYMBOL_BINDING (name);
1470
1471 if (b != NULL
1472 && b->decl != NULL_TREE
1473 && TREE_CODE (b->decl) == TYPE_DECL
1474 && (B_IN_CURRENT_SCOPE (b)
1475 || (current_scope == file_scope && B_IN_EXTERNAL_SCOPE (b)))
1476 && (TYPE_MAIN_VARIANT (TREE_TYPE (b->decl))
1477 != TYPE_MAIN_VARIANT (type)))
1478 {
1479 warning_at (loc, OPT_Wc___compat,
1480 ("using %qD as both a typedef and a tag is "
1481 "invalid in C++"),
1482 b->decl);
1483 if (b->locus != UNKNOWN_LOCATION)
1484 inform (b->locus, "originally defined here");
1485 }
1486 }
1487 }
1488 \f
1489 /* Subroutine of compare_decls. Allow harmless mismatches in return
1490 and argument types provided that the type modes match. This function
1491 return a unified type given a suitable match, and 0 otherwise. */
1492
1493 static tree
1494 match_builtin_function_types (tree newtype, tree oldtype)
1495 {
1496 tree newrettype, oldrettype;
1497 tree newargs, oldargs;
1498 tree trytype, tryargs;
1499
1500 /* Accept the return type of the new declaration if same modes. */
1501 oldrettype = TREE_TYPE (oldtype);
1502 newrettype = TREE_TYPE (newtype);
1503
1504 if (TYPE_MODE (oldrettype) != TYPE_MODE (newrettype))
1505 return 0;
1506
1507 oldargs = TYPE_ARG_TYPES (oldtype);
1508 newargs = TYPE_ARG_TYPES (newtype);
1509 tryargs = newargs;
1510
1511 while (oldargs || newargs)
1512 {
1513 if (!oldargs
1514 || !newargs
1515 || !TREE_VALUE (oldargs)
1516 || !TREE_VALUE (newargs)
1517 || TYPE_MODE (TREE_VALUE (oldargs))
1518 != TYPE_MODE (TREE_VALUE (newargs)))
1519 return 0;
1520
1521 oldargs = TREE_CHAIN (oldargs);
1522 newargs = TREE_CHAIN (newargs);
1523 }
1524
1525 trytype = build_function_type (newrettype, tryargs);
1526 return build_type_attribute_variant (trytype, TYPE_ATTRIBUTES (oldtype));
1527 }
1528
1529 /* Subroutine of diagnose_mismatched_decls. Check for function type
1530 mismatch involving an empty arglist vs a nonempty one and give clearer
1531 diagnostics. */
1532 static void
1533 diagnose_arglist_conflict (tree newdecl, tree olddecl,
1534 tree newtype, tree oldtype)
1535 {
1536 tree t;
1537
1538 if (TREE_CODE (olddecl) != FUNCTION_DECL
1539 || !comptypes (TREE_TYPE (oldtype), TREE_TYPE (newtype))
1540 || !((!prototype_p (oldtype) && DECL_INITIAL (olddecl) == 0)
1541 || (!prototype_p (newtype) && DECL_INITIAL (newdecl) == 0)))
1542 return;
1543
1544 t = TYPE_ARG_TYPES (oldtype);
1545 if (t == 0)
1546 t = TYPE_ARG_TYPES (newtype);
1547 for (; t; t = TREE_CHAIN (t))
1548 {
1549 tree type = TREE_VALUE (t);
1550
1551 if (TREE_CHAIN (t) == 0
1552 && TYPE_MAIN_VARIANT (type) != void_type_node)
1553 {
1554 inform (input_location, "a parameter list with an ellipsis can%'t match "
1555 "an empty parameter name list declaration");
1556 break;
1557 }
1558
1559 if (c_type_promotes_to (type) != type)
1560 {
1561 inform (input_location, "an argument type that has a default promotion can%'t match "
1562 "an empty parameter name list declaration");
1563 break;
1564 }
1565 }
1566 }
1567
1568 /* Another subroutine of diagnose_mismatched_decls. OLDDECL is an
1569 old-style function definition, NEWDECL is a prototype declaration.
1570 Diagnose inconsistencies in the argument list. Returns TRUE if
1571 the prototype is compatible, FALSE if not. */
1572 static bool
1573 validate_proto_after_old_defn (tree newdecl, tree newtype, tree oldtype)
1574 {
1575 tree newargs, oldargs;
1576 int i;
1577
1578 #define END_OF_ARGLIST(t) ((t) == void_type_node)
1579
1580 oldargs = TYPE_ACTUAL_ARG_TYPES (oldtype);
1581 newargs = TYPE_ARG_TYPES (newtype);
1582 i = 1;
1583
1584 for (;;)
1585 {
1586 tree oldargtype = TREE_VALUE (oldargs);
1587 tree newargtype = TREE_VALUE (newargs);
1588
1589 if (oldargtype == error_mark_node || newargtype == error_mark_node)
1590 return false;
1591
1592 oldargtype = (TYPE_ATOMIC (oldargtype)
1593 ? c_build_qualified_type (TYPE_MAIN_VARIANT (oldargtype),
1594 TYPE_QUAL_ATOMIC)
1595 : TYPE_MAIN_VARIANT (oldargtype));
1596 newargtype = (TYPE_ATOMIC (newargtype)
1597 ? c_build_qualified_type (TYPE_MAIN_VARIANT (newargtype),
1598 TYPE_QUAL_ATOMIC)
1599 : TYPE_MAIN_VARIANT (newargtype));
1600
1601 if (END_OF_ARGLIST (oldargtype) && END_OF_ARGLIST (newargtype))
1602 break;
1603
1604 /* Reaching the end of just one list means the two decls don't
1605 agree on the number of arguments. */
1606 if (END_OF_ARGLIST (oldargtype))
1607 {
1608 error ("prototype for %q+D declares more arguments "
1609 "than previous old-style definition", newdecl);
1610 return false;
1611 }
1612 else if (END_OF_ARGLIST (newargtype))
1613 {
1614 error ("prototype for %q+D declares fewer arguments "
1615 "than previous old-style definition", newdecl);
1616 return false;
1617 }
1618
1619 /* Type for passing arg must be consistent with that declared
1620 for the arg. */
1621 else if (!comptypes (oldargtype, newargtype))
1622 {
1623 error ("prototype for %q+D declares argument %d"
1624 " with incompatible type",
1625 newdecl, i);
1626 return false;
1627 }
1628
1629 oldargs = TREE_CHAIN (oldargs);
1630 newargs = TREE_CHAIN (newargs);
1631 i++;
1632 }
1633
1634 /* If we get here, no errors were found, but do issue a warning
1635 for this poor-style construct. */
1636 warning (0, "prototype for %q+D follows non-prototype definition",
1637 newdecl);
1638 return true;
1639 #undef END_OF_ARGLIST
1640 }
1641
1642 /* Subroutine of diagnose_mismatched_decls. Report the location of DECL,
1643 first in a pair of mismatched declarations, using the diagnostic
1644 function DIAG. */
1645 static void
1646 locate_old_decl (tree decl)
1647 {
1648 if (TREE_CODE (decl) == FUNCTION_DECL && DECL_BUILT_IN (decl)
1649 && !C_DECL_DECLARED_BUILTIN (decl))
1650 ;
1651 else if (DECL_INITIAL (decl))
1652 inform (input_location, "previous definition of %q+D was here", decl);
1653 else if (C_DECL_IMPLICIT (decl))
1654 inform (input_location, "previous implicit declaration of %q+D was here", decl);
1655 else
1656 inform (input_location, "previous declaration of %q+D was here", decl);
1657 }
1658
1659 /* Subroutine of duplicate_decls. Compare NEWDECL to OLDDECL.
1660 Returns true if the caller should proceed to merge the two, false
1661 if OLDDECL should simply be discarded. As a side effect, issues
1662 all necessary diagnostics for invalid or poor-style combinations.
1663 If it returns true, writes the types of NEWDECL and OLDDECL to
1664 *NEWTYPEP and *OLDTYPEP - these may have been adjusted from
1665 TREE_TYPE (NEWDECL, OLDDECL) respectively. */
1666
1667 static bool
1668 diagnose_mismatched_decls (tree newdecl, tree olddecl,
1669 tree *newtypep, tree *oldtypep)
1670 {
1671 tree newtype, oldtype;
1672 bool pedwarned = false;
1673 bool warned = false;
1674 bool retval = true;
1675
1676 #define DECL_EXTERN_INLINE(DECL) (DECL_DECLARED_INLINE_P (DECL) \
1677 && DECL_EXTERNAL (DECL))
1678
1679 /* If we have error_mark_node for either decl or type, just discard
1680 the previous decl - we're in an error cascade already. */
1681 if (olddecl == error_mark_node || newdecl == error_mark_node)
1682 return false;
1683 *oldtypep = oldtype = TREE_TYPE (olddecl);
1684 *newtypep = newtype = TREE_TYPE (newdecl);
1685 if (oldtype == error_mark_node || newtype == error_mark_node)
1686 return false;
1687
1688 /* Two different categories of symbol altogether. This is an error
1689 unless OLDDECL is a builtin. OLDDECL will be discarded in any case. */
1690 if (TREE_CODE (olddecl) != TREE_CODE (newdecl))
1691 {
1692 if (!(TREE_CODE (olddecl) == FUNCTION_DECL
1693 && DECL_BUILT_IN (olddecl)
1694 && !C_DECL_DECLARED_BUILTIN (olddecl)))
1695 {
1696 error ("%q+D redeclared as different kind of symbol", newdecl);
1697 locate_old_decl (olddecl);
1698 }
1699 else if (TREE_PUBLIC (newdecl))
1700 warning (0, "built-in function %q+D declared as non-function",
1701 newdecl);
1702 else
1703 warning (OPT_Wshadow, "declaration of %q+D shadows "
1704 "a built-in function", newdecl);
1705 return false;
1706 }
1707
1708 /* Enumerators have no linkage, so may only be declared once in a
1709 given scope. */
1710 if (TREE_CODE (olddecl) == CONST_DECL)
1711 {
1712 error ("redeclaration of enumerator %q+D", newdecl);
1713 locate_old_decl (olddecl);
1714 return false;
1715 }
1716
1717 if (!comptypes (oldtype, newtype))
1718 {
1719 if (TREE_CODE (olddecl) == FUNCTION_DECL
1720 && DECL_BUILT_IN (olddecl) && !C_DECL_DECLARED_BUILTIN (olddecl))
1721 {
1722 /* Accept harmless mismatch in function types.
1723 This is for the ffs and fprintf builtins. */
1724 tree trytype = match_builtin_function_types (newtype, oldtype);
1725
1726 if (trytype && comptypes (newtype, trytype))
1727 *oldtypep = oldtype = trytype;
1728 else
1729 {
1730 /* If types don't match for a built-in, throw away the
1731 built-in. No point in calling locate_old_decl here, it
1732 won't print anything. */
1733 warning (0, "conflicting types for built-in function %q+D",
1734 newdecl);
1735 return false;
1736 }
1737 }
1738 else if (TREE_CODE (olddecl) == FUNCTION_DECL
1739 && DECL_IS_BUILTIN (olddecl))
1740 {
1741 /* A conflicting function declaration for a predeclared
1742 function that isn't actually built in. Objective C uses
1743 these. The new declaration silently overrides everything
1744 but the volatility (i.e. noreturn) indication. See also
1745 below. FIXME: Make Objective C use normal builtins. */
1746 TREE_THIS_VOLATILE (newdecl) |= TREE_THIS_VOLATILE (olddecl);
1747 return false;
1748 }
1749 /* Permit void foo (...) to match int foo (...) if the latter is
1750 the definition and implicit int was used. See
1751 c-torture/compile/920625-2.c. */
1752 else if (TREE_CODE (newdecl) == FUNCTION_DECL && DECL_INITIAL (newdecl)
1753 && TYPE_MAIN_VARIANT (TREE_TYPE (oldtype)) == void_type_node
1754 && TYPE_MAIN_VARIANT (TREE_TYPE (newtype)) == integer_type_node
1755 && C_FUNCTION_IMPLICIT_INT (newdecl) && !DECL_INITIAL (olddecl))
1756 {
1757 pedwarned = pedwarn (input_location, 0,
1758 "conflicting types for %q+D", newdecl);
1759 /* Make sure we keep void as the return type. */
1760 TREE_TYPE (newdecl) = *newtypep = newtype = oldtype;
1761 C_FUNCTION_IMPLICIT_INT (newdecl) = 0;
1762 }
1763 /* Permit void foo (...) to match an earlier call to foo (...) with
1764 no declared type (thus, implicitly int). */
1765 else if (TREE_CODE (newdecl) == FUNCTION_DECL
1766 && TYPE_MAIN_VARIANT (TREE_TYPE (newtype)) == void_type_node
1767 && TYPE_MAIN_VARIANT (TREE_TYPE (oldtype)) == integer_type_node
1768 && C_DECL_IMPLICIT (olddecl) && !DECL_INITIAL (olddecl))
1769 {
1770 pedwarned = pedwarn (input_location, 0,
1771 "conflicting types for %q+D", newdecl);
1772 /* Make sure we keep void as the return type. */
1773 TREE_TYPE (olddecl) = *oldtypep = oldtype = newtype;
1774 }
1775 else
1776 {
1777 int new_quals = TYPE_QUALS (newtype);
1778 int old_quals = TYPE_QUALS (oldtype);
1779
1780 if (new_quals != old_quals)
1781 {
1782 addr_space_t new_addr = DECODE_QUAL_ADDR_SPACE (new_quals);
1783 addr_space_t old_addr = DECODE_QUAL_ADDR_SPACE (old_quals);
1784 if (new_addr != old_addr)
1785 {
1786 if (ADDR_SPACE_GENERIC_P (new_addr))
1787 error ("conflicting named address spaces (generic vs %s) "
1788 "for %q+D",
1789 c_addr_space_name (old_addr), newdecl);
1790 else if (ADDR_SPACE_GENERIC_P (old_addr))
1791 error ("conflicting named address spaces (%s vs generic) "
1792 "for %q+D",
1793 c_addr_space_name (new_addr), newdecl);
1794 else
1795 error ("conflicting named address spaces (%s vs %s) "
1796 "for %q+D",
1797 c_addr_space_name (new_addr),
1798 c_addr_space_name (old_addr),
1799 newdecl);
1800 }
1801
1802 if (CLEAR_QUAL_ADDR_SPACE (new_quals)
1803 != CLEAR_QUAL_ADDR_SPACE (old_quals))
1804 error ("conflicting type qualifiers for %q+D", newdecl);
1805 }
1806 else
1807 error ("conflicting types for %q+D", newdecl);
1808 diagnose_arglist_conflict (newdecl, olddecl, newtype, oldtype);
1809 locate_old_decl (olddecl);
1810 return false;
1811 }
1812 }
1813
1814 /* Redeclaration of a type is a constraint violation (6.7.2.3p1),
1815 but silently ignore the redeclaration if either is in a system
1816 header. (Conflicting redeclarations were handled above.) This
1817 is allowed for C11 if the types are the same, not just
1818 compatible. */
1819 if (TREE_CODE (newdecl) == TYPE_DECL)
1820 {
1821 bool types_different = false;
1822 int comptypes_result;
1823
1824 comptypes_result
1825 = comptypes_check_different_types (oldtype, newtype, &types_different);
1826
1827 if (comptypes_result != 1 || types_different)
1828 {
1829 error ("redefinition of typedef %q+D with different type", newdecl);
1830 locate_old_decl (olddecl);
1831 return false;
1832 }
1833
1834 if (DECL_IN_SYSTEM_HEADER (newdecl)
1835 || DECL_IN_SYSTEM_HEADER (olddecl)
1836 || TREE_NO_WARNING (newdecl)
1837 || TREE_NO_WARNING (olddecl))
1838 return true; /* Allow OLDDECL to continue in use. */
1839
1840 if (variably_modified_type_p (newtype, NULL))
1841 {
1842 error ("redefinition of typedef %q+D with variably modified type",
1843 newdecl);
1844 locate_old_decl (olddecl);
1845 }
1846 else if (pedantic && !flag_isoc11)
1847 {
1848 pedwarn (input_location, OPT_Wpedantic,
1849 "redefinition of typedef %q+D", newdecl);
1850 locate_old_decl (olddecl);
1851 }
1852
1853 return true;
1854 }
1855
1856 /* Function declarations can either be 'static' or 'extern' (no
1857 qualifier is equivalent to 'extern' - C99 6.2.2p5) and therefore
1858 can never conflict with each other on account of linkage
1859 (6.2.2p4). Multiple definitions are not allowed (6.9p3,5) but
1860 gnu89 mode permits two definitions if one is 'extern inline' and
1861 one is not. The non- extern-inline definition supersedes the
1862 extern-inline definition. */
1863
1864 else if (TREE_CODE (newdecl) == FUNCTION_DECL)
1865 {
1866 /* If you declare a built-in function name as static, or
1867 define the built-in with an old-style definition (so we
1868 can't validate the argument list) the built-in definition is
1869 overridden, but optionally warn this was a bad choice of name. */
1870 if (DECL_BUILT_IN (olddecl)
1871 && !C_DECL_DECLARED_BUILTIN (olddecl)
1872 && (!TREE_PUBLIC (newdecl)
1873 || (DECL_INITIAL (newdecl)
1874 && !prototype_p (TREE_TYPE (newdecl)))))
1875 {
1876 warning (OPT_Wshadow, "declaration of %q+D shadows "
1877 "a built-in function", newdecl);
1878 /* Discard the old built-in function. */
1879 return false;
1880 }
1881
1882 if (DECL_INITIAL (newdecl))
1883 {
1884 if (DECL_INITIAL (olddecl))
1885 {
1886 /* If both decls are in the same TU and the new declaration
1887 isn't overriding an extern inline reject the new decl.
1888 In c99, no overriding is allowed in the same translation
1889 unit. */
1890 if ((!DECL_EXTERN_INLINE (olddecl)
1891 || DECL_EXTERN_INLINE (newdecl)
1892 || (!flag_gnu89_inline
1893 && (!DECL_DECLARED_INLINE_P (olddecl)
1894 || !lookup_attribute ("gnu_inline",
1895 DECL_ATTRIBUTES (olddecl)))
1896 && (!DECL_DECLARED_INLINE_P (newdecl)
1897 || !lookup_attribute ("gnu_inline",
1898 DECL_ATTRIBUTES (newdecl))))
1899 )
1900 && same_translation_unit_p (newdecl, olddecl))
1901 {
1902 error ("redefinition of %q+D", newdecl);
1903 locate_old_decl (olddecl);
1904 return false;
1905 }
1906 }
1907 }
1908 /* If we have a prototype after an old-style function definition,
1909 the argument types must be checked specially. */
1910 else if (DECL_INITIAL (olddecl)
1911 && !prototype_p (oldtype) && prototype_p (newtype)
1912 && TYPE_ACTUAL_ARG_TYPES (oldtype)
1913 && !validate_proto_after_old_defn (newdecl, newtype, oldtype))
1914 {
1915 locate_old_decl (olddecl);
1916 return false;
1917 }
1918 /* A non-static declaration (even an "extern") followed by a
1919 static declaration is undefined behavior per C99 6.2.2p3-5,7.
1920 The same is true for a static forward declaration at block
1921 scope followed by a non-static declaration/definition at file
1922 scope. Static followed by non-static at the same scope is
1923 not undefined behavior, and is the most convenient way to get
1924 some effects (see e.g. what unwind-dw2-fde-glibc.c does to
1925 the definition of _Unwind_Find_FDE in unwind-dw2-fde.c), but
1926 we do diagnose it if -Wtraditional. */
1927 if (TREE_PUBLIC (olddecl) && !TREE_PUBLIC (newdecl))
1928 {
1929 /* Two exceptions to the rule. If olddecl is an extern
1930 inline, or a predeclared function that isn't actually
1931 built in, newdecl silently overrides olddecl. The latter
1932 occur only in Objective C; see also above. (FIXME: Make
1933 Objective C use normal builtins.) */
1934 if (!DECL_IS_BUILTIN (olddecl)
1935 && !DECL_EXTERN_INLINE (olddecl))
1936 {
1937 error ("static declaration of %q+D follows "
1938 "non-static declaration", newdecl);
1939 locate_old_decl (olddecl);
1940 }
1941 return false;
1942 }
1943 else if (TREE_PUBLIC (newdecl) && !TREE_PUBLIC (olddecl))
1944 {
1945 if (DECL_CONTEXT (olddecl))
1946 {
1947 error ("non-static declaration of %q+D follows "
1948 "static declaration", newdecl);
1949 locate_old_decl (olddecl);
1950 return false;
1951 }
1952 else if (warn_traditional)
1953 {
1954 warned |= warning (OPT_Wtraditional,
1955 "non-static declaration of %q+D "
1956 "follows static declaration", newdecl);
1957 }
1958 }
1959
1960 /* Make sure gnu_inline attribute is either not present, or
1961 present on all inline decls. */
1962 if (DECL_DECLARED_INLINE_P (olddecl)
1963 && DECL_DECLARED_INLINE_P (newdecl))
1964 {
1965 bool newa = lookup_attribute ("gnu_inline",
1966 DECL_ATTRIBUTES (newdecl)) != NULL;
1967 bool olda = lookup_attribute ("gnu_inline",
1968 DECL_ATTRIBUTES (olddecl)) != NULL;
1969 if (newa != olda)
1970 {
1971 error_at (input_location, "%<gnu_inline%> attribute present on %q+D",
1972 newa ? newdecl : olddecl);
1973 error_at (DECL_SOURCE_LOCATION (newa ? olddecl : newdecl),
1974 "but not here");
1975 }
1976 }
1977 }
1978 else if (TREE_CODE (newdecl) == VAR_DECL)
1979 {
1980 /* Only variables can be thread-local, and all declarations must
1981 agree on this property. */
1982 if (C_DECL_THREADPRIVATE_P (olddecl) && !DECL_THREAD_LOCAL_P (newdecl))
1983 {
1984 /* Nothing to check. Since OLDDECL is marked threadprivate
1985 and NEWDECL does not have a thread-local attribute, we
1986 will merge the threadprivate attribute into NEWDECL. */
1987 ;
1988 }
1989 else if (DECL_THREAD_LOCAL_P (newdecl) != DECL_THREAD_LOCAL_P (olddecl))
1990 {
1991 if (DECL_THREAD_LOCAL_P (newdecl))
1992 error ("thread-local declaration of %q+D follows "
1993 "non-thread-local declaration", newdecl);
1994 else
1995 error ("non-thread-local declaration of %q+D follows "
1996 "thread-local declaration", newdecl);
1997
1998 locate_old_decl (olddecl);
1999 return false;
2000 }
2001
2002 /* Multiple initialized definitions are not allowed (6.9p3,5). */
2003 if (DECL_INITIAL (newdecl) && DECL_INITIAL (olddecl))
2004 {
2005 error ("redefinition of %q+D", newdecl);
2006 locate_old_decl (olddecl);
2007 return false;
2008 }
2009
2010 /* Objects declared at file scope: if the first declaration had
2011 external linkage (even if it was an external reference) the
2012 second must have external linkage as well, or the behavior is
2013 undefined. If the first declaration had internal linkage, then
2014 the second must too, or else be an external reference (in which
2015 case the composite declaration still has internal linkage).
2016 As for function declarations, we warn about the static-then-
2017 extern case only for -Wtraditional. See generally 6.2.2p3-5,7. */
2018 if (DECL_FILE_SCOPE_P (newdecl)
2019 && TREE_PUBLIC (newdecl) != TREE_PUBLIC (olddecl))
2020 {
2021 if (DECL_EXTERNAL (newdecl))
2022 {
2023 if (!DECL_FILE_SCOPE_P (olddecl))
2024 {
2025 error ("extern declaration of %q+D follows "
2026 "declaration with no linkage", newdecl);
2027 locate_old_decl (olddecl);
2028 return false;
2029 }
2030 else if (warn_traditional)
2031 {
2032 warned |= warning (OPT_Wtraditional,
2033 "non-static declaration of %q+D "
2034 "follows static declaration", newdecl);
2035 }
2036 }
2037 else
2038 {
2039 if (TREE_PUBLIC (newdecl))
2040 error ("non-static declaration of %q+D follows "
2041 "static declaration", newdecl);
2042 else
2043 error ("static declaration of %q+D follows "
2044 "non-static declaration", newdecl);
2045
2046 locate_old_decl (olddecl);
2047 return false;
2048 }
2049 }
2050 /* Two objects with the same name declared at the same block
2051 scope must both be external references (6.7p3). */
2052 else if (!DECL_FILE_SCOPE_P (newdecl))
2053 {
2054 if (DECL_EXTERNAL (newdecl))
2055 {
2056 /* Extern with initializer at block scope, which will
2057 already have received an error. */
2058 }
2059 else if (DECL_EXTERNAL (olddecl))
2060 {
2061 error ("declaration of %q+D with no linkage follows "
2062 "extern declaration", newdecl);
2063 locate_old_decl (olddecl);
2064 }
2065 else
2066 {
2067 error ("redeclaration of %q+D with no linkage", newdecl);
2068 locate_old_decl (olddecl);
2069 }
2070
2071 return false;
2072 }
2073
2074 /* C++ does not permit a decl to appear multiple times at file
2075 scope. */
2076 if (warn_cxx_compat
2077 && DECL_FILE_SCOPE_P (newdecl)
2078 && !DECL_EXTERNAL (newdecl)
2079 && !DECL_EXTERNAL (olddecl))
2080 warned |= warning_at (DECL_SOURCE_LOCATION (newdecl),
2081 OPT_Wc___compat,
2082 ("duplicate declaration of %qD is "
2083 "invalid in C++"),
2084 newdecl);
2085 }
2086
2087 /* warnings */
2088 /* All decls must agree on a visibility. */
2089 if (CODE_CONTAINS_STRUCT (TREE_CODE (newdecl), TS_DECL_WITH_VIS)
2090 && DECL_VISIBILITY_SPECIFIED (newdecl) && DECL_VISIBILITY_SPECIFIED (olddecl)
2091 && DECL_VISIBILITY (newdecl) != DECL_VISIBILITY (olddecl))
2092 {
2093 warned |= warning (0, "redeclaration of %q+D with different visibility "
2094 "(old visibility preserved)", newdecl);
2095 }
2096
2097 if (TREE_CODE (newdecl) == FUNCTION_DECL)
2098 {
2099 /* Diagnose inline __attribute__ ((noinline)) which is silly. */
2100 if (DECL_DECLARED_INLINE_P (newdecl)
2101 && lookup_attribute ("noinline", DECL_ATTRIBUTES (olddecl)))
2102 warned |= warning (OPT_Wattributes,
2103 "inline declaration of %qD follows "
2104 "declaration with attribute noinline", newdecl);
2105 else if (DECL_DECLARED_INLINE_P (olddecl)
2106 && lookup_attribute ("noinline", DECL_ATTRIBUTES (newdecl)))
2107 warned |= warning (OPT_Wattributes,
2108 "declaration of %q+D with attribute "
2109 "noinline follows inline declaration ", newdecl);
2110 else if (lookup_attribute ("noinline", DECL_ATTRIBUTES (newdecl))
2111 && lookup_attribute ("always_inline", DECL_ATTRIBUTES (olddecl)))
2112 warned |= warning (OPT_Wattributes,
2113 "declaration of %q+D with attribute "
2114 "%qs follows declaration with attribute %qs",
2115 newdecl, "noinline", "always_inline");
2116 else if (lookup_attribute ("always_inline", DECL_ATTRIBUTES (newdecl))
2117 && lookup_attribute ("noinline", DECL_ATTRIBUTES (olddecl)))
2118 warned |= warning (OPT_Wattributes,
2119 "declaration of %q+D with attribute "
2120 "%qs follows declaration with attribute %qs",
2121 newdecl, "always_inline", "noinline");
2122 else if (lookup_attribute ("cold", DECL_ATTRIBUTES (newdecl))
2123 && lookup_attribute ("hot", DECL_ATTRIBUTES (olddecl)))
2124 warned |= warning (OPT_Wattributes,
2125 "declaration of %q+D with attribute %qs follows "
2126 "declaration with attribute %qs", newdecl, "cold",
2127 "hot");
2128 else if (lookup_attribute ("hot", DECL_ATTRIBUTES (newdecl))
2129 && lookup_attribute ("cold", DECL_ATTRIBUTES (olddecl)))
2130 warned |= warning (OPT_Wattributes,
2131 "declaration of %q+D with attribute %qs follows "
2132 "declaration with attribute %qs", newdecl, "hot",
2133 "cold");
2134 }
2135 else /* PARM_DECL, VAR_DECL */
2136 {
2137 /* Redeclaration of a parameter is a constraint violation (this is
2138 not explicitly stated, but follows from C99 6.7p3 [no more than
2139 one declaration of the same identifier with no linkage in the
2140 same scope, except type tags] and 6.2.2p6 [parameters have no
2141 linkage]). We must check for a forward parameter declaration,
2142 indicated by TREE_ASM_WRITTEN on the old declaration - this is
2143 an extension, the mandatory diagnostic for which is handled by
2144 mark_forward_parm_decls. */
2145
2146 if (TREE_CODE (newdecl) == PARM_DECL
2147 && (!TREE_ASM_WRITTEN (olddecl) || TREE_ASM_WRITTEN (newdecl)))
2148 {
2149 error ("redefinition of parameter %q+D", newdecl);
2150 locate_old_decl (olddecl);
2151 return false;
2152 }
2153 }
2154
2155 /* Optional warning for completely redundant decls. */
2156 if (!warned && !pedwarned
2157 && warn_redundant_decls
2158 /* Don't warn about a function declaration followed by a
2159 definition. */
2160 && !(TREE_CODE (newdecl) == FUNCTION_DECL
2161 && DECL_INITIAL (newdecl) && !DECL_INITIAL (olddecl))
2162 /* Don't warn about redundant redeclarations of builtins. */
2163 && !(TREE_CODE (newdecl) == FUNCTION_DECL
2164 && !DECL_BUILT_IN (newdecl)
2165 && DECL_BUILT_IN (olddecl)
2166 && !C_DECL_DECLARED_BUILTIN (olddecl))
2167 /* Don't warn about an extern followed by a definition. */
2168 && !(DECL_EXTERNAL (olddecl) && !DECL_EXTERNAL (newdecl))
2169 /* Don't warn about forward parameter decls. */
2170 && !(TREE_CODE (newdecl) == PARM_DECL
2171 && TREE_ASM_WRITTEN (olddecl) && !TREE_ASM_WRITTEN (newdecl))
2172 /* Don't warn about a variable definition following a declaration. */
2173 && !(TREE_CODE (newdecl) == VAR_DECL
2174 && DECL_INITIAL (newdecl) && !DECL_INITIAL (olddecl)))
2175 {
2176 warned = warning (OPT_Wredundant_decls, "redundant redeclaration of %q+D",
2177 newdecl);
2178 }
2179
2180 /* Report location of previous decl/defn. */
2181 if (warned || pedwarned)
2182 locate_old_decl (olddecl);
2183
2184 #undef DECL_EXTERN_INLINE
2185
2186 return retval;
2187 }
2188
2189 /* Subroutine of duplicate_decls. NEWDECL has been found to be
2190 consistent with OLDDECL, but carries new information. Merge the
2191 new information into OLDDECL. This function issues no
2192 diagnostics. */
2193
2194 static void
2195 merge_decls (tree newdecl, tree olddecl, tree newtype, tree oldtype)
2196 {
2197 bool new_is_definition = (TREE_CODE (newdecl) == FUNCTION_DECL
2198 && DECL_INITIAL (newdecl) != 0);
2199 bool new_is_prototype = (TREE_CODE (newdecl) == FUNCTION_DECL
2200 && prototype_p (TREE_TYPE (newdecl)));
2201 bool old_is_prototype = (TREE_CODE (olddecl) == FUNCTION_DECL
2202 && prototype_p (TREE_TYPE (olddecl)));
2203
2204 /* For real parm decl following a forward decl, rechain the old decl
2205 in its new location and clear TREE_ASM_WRITTEN (it's not a
2206 forward decl anymore). */
2207 if (TREE_CODE (newdecl) == PARM_DECL
2208 && TREE_ASM_WRITTEN (olddecl) && !TREE_ASM_WRITTEN (newdecl))
2209 {
2210 struct c_binding *b, **here;
2211
2212 for (here = &current_scope->bindings; *here; here = &(*here)->prev)
2213 if ((*here)->decl == olddecl)
2214 goto found;
2215 gcc_unreachable ();
2216
2217 found:
2218 b = *here;
2219 *here = b->prev;
2220 b->prev = current_scope->bindings;
2221 current_scope->bindings = b;
2222
2223 TREE_ASM_WRITTEN (olddecl) = 0;
2224 }
2225
2226 DECL_ATTRIBUTES (newdecl)
2227 = targetm.merge_decl_attributes (olddecl, newdecl);
2228
2229 /* Merge the data types specified in the two decls. */
2230 TREE_TYPE (newdecl)
2231 = TREE_TYPE (olddecl)
2232 = composite_type (newtype, oldtype);
2233
2234 /* Lay the type out, unless already done. */
2235 if (!comptypes (oldtype, TREE_TYPE (newdecl)))
2236 {
2237 if (TREE_TYPE (newdecl) != error_mark_node)
2238 layout_type (TREE_TYPE (newdecl));
2239 if (TREE_CODE (newdecl) != FUNCTION_DECL
2240 && TREE_CODE (newdecl) != TYPE_DECL
2241 && TREE_CODE (newdecl) != CONST_DECL)
2242 layout_decl (newdecl, 0);
2243 }
2244 else
2245 {
2246 /* Since the type is OLDDECL's, make OLDDECL's size go with. */
2247 DECL_SIZE (newdecl) = DECL_SIZE (olddecl);
2248 DECL_SIZE_UNIT (newdecl) = DECL_SIZE_UNIT (olddecl);
2249 DECL_MODE (newdecl) = DECL_MODE (olddecl);
2250 if (DECL_ALIGN (olddecl) > DECL_ALIGN (newdecl))
2251 {
2252 DECL_ALIGN (newdecl) = DECL_ALIGN (olddecl);
2253 DECL_USER_ALIGN (newdecl) |= DECL_USER_ALIGN (olddecl);
2254 }
2255 }
2256
2257 /* Keep the old rtl since we can safely use it. */
2258 if (HAS_RTL_P (olddecl))
2259 COPY_DECL_RTL (olddecl, newdecl);
2260
2261 /* Merge the type qualifiers. */
2262 if (TREE_READONLY (newdecl))
2263 TREE_READONLY (olddecl) = 1;
2264
2265 if (TREE_THIS_VOLATILE (newdecl))
2266 TREE_THIS_VOLATILE (olddecl) = 1;
2267
2268 /* Merge deprecatedness. */
2269 if (TREE_DEPRECATED (newdecl))
2270 TREE_DEPRECATED (olddecl) = 1;
2271
2272 /* If a decl is in a system header and the other isn't, keep the one on the
2273 system header. Otherwise, keep source location of definition rather than
2274 declaration and of prototype rather than non-prototype unless that
2275 prototype is built-in. */
2276 if (CODE_CONTAINS_STRUCT (TREE_CODE (olddecl), TS_DECL_WITH_VIS)
2277 && DECL_IN_SYSTEM_HEADER (olddecl)
2278 && !DECL_IN_SYSTEM_HEADER (newdecl) )
2279 DECL_SOURCE_LOCATION (newdecl) = DECL_SOURCE_LOCATION (olddecl);
2280 else if (CODE_CONTAINS_STRUCT (TREE_CODE (olddecl), TS_DECL_WITH_VIS)
2281 && DECL_IN_SYSTEM_HEADER (newdecl)
2282 && !DECL_IN_SYSTEM_HEADER (olddecl))
2283 DECL_SOURCE_LOCATION (olddecl) = DECL_SOURCE_LOCATION (newdecl);
2284 else if ((DECL_INITIAL (newdecl) == 0 && DECL_INITIAL (olddecl) != 0)
2285 || (old_is_prototype && !new_is_prototype
2286 && !C_DECL_BUILTIN_PROTOTYPE (olddecl)))
2287 DECL_SOURCE_LOCATION (newdecl) = DECL_SOURCE_LOCATION (olddecl);
2288
2289 /* Merge the initialization information. */
2290 if (DECL_INITIAL (newdecl) == 0)
2291 DECL_INITIAL (newdecl) = DECL_INITIAL (olddecl);
2292
2293 /* Merge the threadprivate attribute. */
2294 if (TREE_CODE (olddecl) == VAR_DECL && C_DECL_THREADPRIVATE_P (olddecl))
2295 {
2296 DECL_TLS_MODEL (newdecl) = DECL_TLS_MODEL (olddecl);
2297 C_DECL_THREADPRIVATE_P (newdecl) = 1;
2298 }
2299
2300 if (CODE_CONTAINS_STRUCT (TREE_CODE (olddecl), TS_DECL_WITH_VIS))
2301 {
2302 /* Merge the section attribute.
2303 We want to issue an error if the sections conflict but that
2304 must be done later in decl_attributes since we are called
2305 before attributes are assigned. */
2306 if (DECL_SECTION_NAME (newdecl) == NULL_TREE)
2307 DECL_SECTION_NAME (newdecl) = DECL_SECTION_NAME (olddecl);
2308
2309 /* Copy the assembler name.
2310 Currently, it can only be defined in the prototype. */
2311 COPY_DECL_ASSEMBLER_NAME (olddecl, newdecl);
2312
2313 /* Use visibility of whichever declaration had it specified */
2314 if (DECL_VISIBILITY_SPECIFIED (olddecl))
2315 {
2316 DECL_VISIBILITY (newdecl) = DECL_VISIBILITY (olddecl);
2317 DECL_VISIBILITY_SPECIFIED (newdecl) = 1;
2318 }
2319
2320 if (TREE_CODE (newdecl) == FUNCTION_DECL)
2321 {
2322 DECL_STATIC_CONSTRUCTOR(newdecl) |= DECL_STATIC_CONSTRUCTOR(olddecl);
2323 DECL_STATIC_DESTRUCTOR (newdecl) |= DECL_STATIC_DESTRUCTOR (olddecl);
2324 DECL_NO_LIMIT_STACK (newdecl) |= DECL_NO_LIMIT_STACK (olddecl);
2325 DECL_NO_INSTRUMENT_FUNCTION_ENTRY_EXIT (newdecl)
2326 |= DECL_NO_INSTRUMENT_FUNCTION_ENTRY_EXIT (olddecl);
2327 TREE_THIS_VOLATILE (newdecl) |= TREE_THIS_VOLATILE (olddecl);
2328 DECL_IS_MALLOC (newdecl) |= DECL_IS_MALLOC (olddecl);
2329 DECL_IS_OPERATOR_NEW (newdecl) |= DECL_IS_OPERATOR_NEW (olddecl);
2330 TREE_READONLY (newdecl) |= TREE_READONLY (olddecl);
2331 DECL_PURE_P (newdecl) |= DECL_PURE_P (olddecl);
2332 DECL_IS_NOVOPS (newdecl) |= DECL_IS_NOVOPS (olddecl);
2333 }
2334
2335 /* Merge the storage class information. */
2336 merge_weak (newdecl, olddecl);
2337
2338 /* For functions, static overrides non-static. */
2339 if (TREE_CODE (newdecl) == FUNCTION_DECL)
2340 {
2341 TREE_PUBLIC (newdecl) &= TREE_PUBLIC (olddecl);
2342 /* This is since we don't automatically
2343 copy the attributes of NEWDECL into OLDDECL. */
2344 TREE_PUBLIC (olddecl) = TREE_PUBLIC (newdecl);
2345 /* If this clears `static', clear it in the identifier too. */
2346 if (!TREE_PUBLIC (olddecl))
2347 TREE_PUBLIC (DECL_NAME (olddecl)) = 0;
2348 }
2349 }
2350
2351 /* In c99, 'extern' declaration before (or after) 'inline' means this
2352 function is not DECL_EXTERNAL, unless 'gnu_inline' attribute
2353 is present. */
2354 if (TREE_CODE (newdecl) == FUNCTION_DECL
2355 && !flag_gnu89_inline
2356 && (DECL_DECLARED_INLINE_P (newdecl)
2357 || DECL_DECLARED_INLINE_P (olddecl))
2358 && (!DECL_DECLARED_INLINE_P (newdecl)
2359 || !DECL_DECLARED_INLINE_P (olddecl)
2360 || !DECL_EXTERNAL (olddecl))
2361 && DECL_EXTERNAL (newdecl)
2362 && !lookup_attribute ("gnu_inline", DECL_ATTRIBUTES (newdecl))
2363 && !current_function_decl)
2364 DECL_EXTERNAL (newdecl) = 0;
2365
2366 /* An inline definition following a static declaration is not
2367 DECL_EXTERNAL. */
2368 if (new_is_definition
2369 && (DECL_DECLARED_INLINE_P (newdecl)
2370 || DECL_DECLARED_INLINE_P (olddecl))
2371 && !TREE_PUBLIC (olddecl))
2372 DECL_EXTERNAL (newdecl) = 0;
2373
2374 if (DECL_EXTERNAL (newdecl))
2375 {
2376 TREE_STATIC (newdecl) = TREE_STATIC (olddecl);
2377 DECL_EXTERNAL (newdecl) = DECL_EXTERNAL (olddecl);
2378
2379 /* An extern decl does not override previous storage class. */
2380 TREE_PUBLIC (newdecl) = TREE_PUBLIC (olddecl);
2381 if (!DECL_EXTERNAL (newdecl))
2382 {
2383 DECL_CONTEXT (newdecl) = DECL_CONTEXT (olddecl);
2384 DECL_COMMON (newdecl) = DECL_COMMON (olddecl);
2385 }
2386 }
2387 else
2388 {
2389 TREE_STATIC (olddecl) = TREE_STATIC (newdecl);
2390 TREE_PUBLIC (olddecl) = TREE_PUBLIC (newdecl);
2391 }
2392
2393 if (TREE_CODE (newdecl) == FUNCTION_DECL)
2394 {
2395 /* If we're redefining a function previously defined as extern
2396 inline, make sure we emit debug info for the inline before we
2397 throw it away, in case it was inlined into a function that
2398 hasn't been written out yet. */
2399 if (new_is_definition && DECL_INITIAL (olddecl))
2400 /* The new defn must not be inline. */
2401 DECL_UNINLINABLE (newdecl) = 1;
2402 else
2403 {
2404 /* If either decl says `inline', this fn is inline, unless
2405 its definition was passed already. */
2406 if (DECL_DECLARED_INLINE_P (newdecl)
2407 || DECL_DECLARED_INLINE_P (olddecl))
2408 DECL_DECLARED_INLINE_P (newdecl) = 1;
2409
2410 DECL_UNINLINABLE (newdecl) = DECL_UNINLINABLE (olddecl)
2411 = (DECL_UNINLINABLE (newdecl) || DECL_UNINLINABLE (olddecl));
2412
2413 DECL_DISREGARD_INLINE_LIMITS (newdecl)
2414 = DECL_DISREGARD_INLINE_LIMITS (olddecl)
2415 = (DECL_DISREGARD_INLINE_LIMITS (newdecl)
2416 || DECL_DISREGARD_INLINE_LIMITS (olddecl));
2417 }
2418
2419 if (DECL_BUILT_IN (olddecl))
2420 {
2421 /* If redeclaring a builtin function, it stays built in.
2422 But it gets tagged as having been declared. */
2423 DECL_BUILT_IN_CLASS (newdecl) = DECL_BUILT_IN_CLASS (olddecl);
2424 DECL_FUNCTION_CODE (newdecl) = DECL_FUNCTION_CODE (olddecl);
2425 C_DECL_DECLARED_BUILTIN (newdecl) = 1;
2426 if (new_is_prototype)
2427 {
2428 C_DECL_BUILTIN_PROTOTYPE (newdecl) = 0;
2429 if (DECL_BUILT_IN_CLASS (newdecl) == BUILT_IN_NORMAL)
2430 {
2431 enum built_in_function fncode = DECL_FUNCTION_CODE (newdecl);
2432 switch (fncode)
2433 {
2434 /* If a compatible prototype of these builtin functions
2435 is seen, assume the runtime implements it with the
2436 expected semantics. */
2437 case BUILT_IN_STPCPY:
2438 if (builtin_decl_explicit_p (fncode))
2439 set_builtin_decl_implicit_p (fncode, true);
2440 break;
2441 default:
2442 break;
2443 }
2444 }
2445 }
2446 else
2447 C_DECL_BUILTIN_PROTOTYPE (newdecl)
2448 = C_DECL_BUILTIN_PROTOTYPE (olddecl);
2449 }
2450
2451 /* Preserve function specific target and optimization options */
2452 if (DECL_FUNCTION_SPECIFIC_TARGET (olddecl)
2453 && !DECL_FUNCTION_SPECIFIC_TARGET (newdecl))
2454 DECL_FUNCTION_SPECIFIC_TARGET (newdecl)
2455 = DECL_FUNCTION_SPECIFIC_TARGET (olddecl);
2456
2457 if (DECL_FUNCTION_SPECIFIC_OPTIMIZATION (olddecl)
2458 && !DECL_FUNCTION_SPECIFIC_OPTIMIZATION (newdecl))
2459 DECL_FUNCTION_SPECIFIC_OPTIMIZATION (newdecl)
2460 = DECL_FUNCTION_SPECIFIC_OPTIMIZATION (olddecl);
2461
2462 /* Also preserve various other info from the definition. */
2463 if (!new_is_definition)
2464 {
2465 tree t;
2466 DECL_RESULT (newdecl) = DECL_RESULT (olddecl);
2467 DECL_INITIAL (newdecl) = DECL_INITIAL (olddecl);
2468 DECL_STRUCT_FUNCTION (newdecl) = DECL_STRUCT_FUNCTION (olddecl);
2469 DECL_SAVED_TREE (newdecl) = DECL_SAVED_TREE (olddecl);
2470 DECL_ARGUMENTS (newdecl) = copy_list (DECL_ARGUMENTS (olddecl));
2471 for (t = DECL_ARGUMENTS (newdecl); t ; t = DECL_CHAIN (t))
2472 DECL_CONTEXT (t) = newdecl;
2473
2474 /* See if we've got a function to instantiate from. */
2475 if (DECL_SAVED_TREE (olddecl))
2476 DECL_ABSTRACT_ORIGIN (newdecl)
2477 = DECL_ABSTRACT_ORIGIN (olddecl);
2478 }
2479 }
2480
2481 /* Merge the USED information. */
2482 if (TREE_USED (olddecl))
2483 TREE_USED (newdecl) = 1;
2484 else if (TREE_USED (newdecl))
2485 TREE_USED (olddecl) = 1;
2486 if (TREE_CODE (olddecl) == VAR_DECL || TREE_CODE (olddecl) == PARM_DECL)
2487 DECL_READ_P (newdecl) |= DECL_READ_P (olddecl);
2488 if (DECL_PRESERVE_P (olddecl))
2489 DECL_PRESERVE_P (newdecl) = 1;
2490 else if (DECL_PRESERVE_P (newdecl))
2491 DECL_PRESERVE_P (olddecl) = 1;
2492
2493 /* Copy most of the decl-specific fields of NEWDECL into OLDDECL.
2494 But preserve OLDDECL's DECL_UID, DECL_CONTEXT and
2495 DECL_ARGUMENTS (if appropriate). */
2496 {
2497 unsigned olddecl_uid = DECL_UID (olddecl);
2498 tree olddecl_context = DECL_CONTEXT (olddecl);
2499 tree olddecl_arguments = NULL;
2500 if (TREE_CODE (olddecl) == FUNCTION_DECL)
2501 olddecl_arguments = DECL_ARGUMENTS (olddecl);
2502
2503 memcpy ((char *) olddecl + sizeof (struct tree_common),
2504 (char *) newdecl + sizeof (struct tree_common),
2505 sizeof (struct tree_decl_common) - sizeof (struct tree_common));
2506 DECL_USER_ALIGN (olddecl) = DECL_USER_ALIGN (newdecl);
2507 switch (TREE_CODE (olddecl))
2508 {
2509 case FUNCTION_DECL:
2510 case FIELD_DECL:
2511 case VAR_DECL:
2512 case PARM_DECL:
2513 case LABEL_DECL:
2514 case RESULT_DECL:
2515 case CONST_DECL:
2516 case TYPE_DECL:
2517 memcpy ((char *) olddecl + sizeof (struct tree_decl_common),
2518 (char *) newdecl + sizeof (struct tree_decl_common),
2519 tree_code_size (TREE_CODE (olddecl)) - sizeof (struct tree_decl_common));
2520 break;
2521
2522 default:
2523
2524 memcpy ((char *) olddecl + sizeof (struct tree_decl_common),
2525 (char *) newdecl + sizeof (struct tree_decl_common),
2526 sizeof (struct tree_decl_non_common) - sizeof (struct tree_decl_common));
2527 }
2528 DECL_UID (olddecl) = olddecl_uid;
2529 DECL_CONTEXT (olddecl) = olddecl_context;
2530 if (TREE_CODE (olddecl) == FUNCTION_DECL)
2531 DECL_ARGUMENTS (olddecl) = olddecl_arguments;
2532 }
2533
2534 /* If OLDDECL had its DECL_RTL instantiated, re-invoke make_decl_rtl
2535 so that encode_section_info has a chance to look at the new decl
2536 flags and attributes. */
2537 if (DECL_RTL_SET_P (olddecl)
2538 && (TREE_CODE (olddecl) == FUNCTION_DECL
2539 || (TREE_CODE (olddecl) == VAR_DECL
2540 && TREE_STATIC (olddecl))))
2541 make_decl_rtl (olddecl);
2542 }
2543
2544 /* Handle when a new declaration NEWDECL has the same name as an old
2545 one OLDDECL in the same binding contour. Prints an error message
2546 if appropriate.
2547
2548 If safely possible, alter OLDDECL to look like NEWDECL, and return
2549 true. Otherwise, return false. */
2550
2551 static bool
2552 duplicate_decls (tree newdecl, tree olddecl)
2553 {
2554 tree newtype = NULL, oldtype = NULL;
2555
2556 if (!diagnose_mismatched_decls (newdecl, olddecl, &newtype, &oldtype))
2557 {
2558 /* Avoid `unused variable' and other warnings for OLDDECL. */
2559 TREE_NO_WARNING (olddecl) = 1;
2560 return false;
2561 }
2562
2563 merge_decls (newdecl, olddecl, newtype, oldtype);
2564 return true;
2565 }
2566
2567 \f
2568 /* Check whether decl-node NEW_DECL shadows an existing declaration. */
2569 static void
2570 warn_if_shadowing (tree new_decl)
2571 {
2572 struct c_binding *b;
2573
2574 /* Shadow warnings wanted? */
2575 if (!warn_shadow
2576 /* No shadow warnings for internally generated vars. */
2577 || DECL_IS_BUILTIN (new_decl)
2578 /* No shadow warnings for vars made for inlining. */
2579 || DECL_FROM_INLINE (new_decl))
2580 return;
2581
2582 /* Is anything being shadowed? Invisible decls do not count. */
2583 for (b = I_SYMBOL_BINDING (DECL_NAME (new_decl)); b; b = b->shadowed)
2584 if (b->decl && b->decl != new_decl && !b->invisible
2585 && (b->decl == error_mark_node
2586 || diagnostic_report_warnings_p (global_dc,
2587 DECL_SOURCE_LOCATION (b->decl))))
2588 {
2589 tree old_decl = b->decl;
2590
2591 if (old_decl == error_mark_node)
2592 {
2593 warning (OPT_Wshadow, "declaration of %q+D shadows previous "
2594 "non-variable", new_decl);
2595 break;
2596 }
2597 else if (TREE_CODE (old_decl) == PARM_DECL)
2598 warning (OPT_Wshadow, "declaration of %q+D shadows a parameter",
2599 new_decl);
2600 else if (DECL_FILE_SCOPE_P (old_decl))
2601 {
2602 /* Do not warn if a variable shadows a function, unless
2603 the variable is a function or a pointer-to-function. */
2604 if (TREE_CODE (old_decl) == FUNCTION_DECL
2605 && TREE_CODE (new_decl) != FUNCTION_DECL
2606 && !FUNCTION_POINTER_TYPE_P (TREE_TYPE (new_decl)))
2607 continue;
2608
2609 warning_at (DECL_SOURCE_LOCATION (new_decl), OPT_Wshadow,
2610 "declaration of %qD shadows a global declaration",
2611 new_decl);
2612 }
2613 else if (TREE_CODE (old_decl) == FUNCTION_DECL
2614 && DECL_BUILT_IN (old_decl))
2615 {
2616 warning (OPT_Wshadow, "declaration of %q+D shadows "
2617 "a built-in function", new_decl);
2618 break;
2619 }
2620 else
2621 warning (OPT_Wshadow, "declaration of %q+D shadows a previous local",
2622 new_decl);
2623
2624 warning_at (DECL_SOURCE_LOCATION (old_decl), OPT_Wshadow,
2625 "shadowed declaration is here");
2626
2627 break;
2628 }
2629 }
2630
2631 /* Record a decl-node X as belonging to the current lexical scope.
2632 Check for errors (such as an incompatible declaration for the same
2633 name already seen in the same scope).
2634
2635 Returns either X or an old decl for the same name.
2636 If an old decl is returned, it may have been smashed
2637 to agree with what X says. */
2638
2639 tree
2640 pushdecl (tree x)
2641 {
2642 tree name = DECL_NAME (x);
2643 struct c_scope *scope = current_scope;
2644 struct c_binding *b;
2645 bool nested = false;
2646 location_t locus = DECL_SOURCE_LOCATION (x);
2647
2648 /* Must set DECL_CONTEXT for everything not at file scope or
2649 DECL_FILE_SCOPE_P won't work. Local externs don't count
2650 unless they have initializers (which generate code). */
2651 if (current_function_decl
2652 && ((TREE_CODE (x) != FUNCTION_DECL && TREE_CODE (x) != VAR_DECL)
2653 || DECL_INITIAL (x) || !DECL_EXTERNAL (x)))
2654 DECL_CONTEXT (x) = current_function_decl;
2655
2656 /* Anonymous decls are just inserted in the scope. */
2657 if (!name)
2658 {
2659 bind (name, x, scope, /*invisible=*/false, /*nested=*/false,
2660 locus);
2661 return x;
2662 }
2663
2664 /* First, see if there is another declaration with the same name in
2665 the current scope. If there is, duplicate_decls may do all the
2666 work for us. If duplicate_decls returns false, that indicates
2667 two incompatible decls in the same scope; we are to silently
2668 replace the old one (duplicate_decls has issued all appropriate
2669 diagnostics). In particular, we should not consider possible
2670 duplicates in the external scope, or shadowing. */
2671 b = I_SYMBOL_BINDING (name);
2672 if (b && B_IN_SCOPE (b, scope))
2673 {
2674 struct c_binding *b_ext, *b_use;
2675 tree type = TREE_TYPE (x);
2676 tree visdecl = b->decl;
2677 tree vistype = TREE_TYPE (visdecl);
2678 if (TREE_CODE (TREE_TYPE (x)) == ARRAY_TYPE
2679 && COMPLETE_TYPE_P (TREE_TYPE (x)))
2680 b->inner_comp = false;
2681 b_use = b;
2682 b_ext = b;
2683 /* If this is an external linkage declaration, we should check
2684 for compatibility with the type in the external scope before
2685 setting the type at this scope based on the visible
2686 information only. */
2687 if (TREE_PUBLIC (x) && TREE_PUBLIC (visdecl))
2688 {
2689 while (b_ext && !B_IN_EXTERNAL_SCOPE (b_ext))
2690 b_ext = b_ext->shadowed;
2691 if (b_ext)
2692 {
2693 b_use = b_ext;
2694 if (b_use->u.type)
2695 TREE_TYPE (b_use->decl) = b_use->u.type;
2696 }
2697 }
2698 if (duplicate_decls (x, b_use->decl))
2699 {
2700 if (b_use != b)
2701 {
2702 /* Save the updated type in the external scope and
2703 restore the proper type for this scope. */
2704 tree thistype;
2705 if (comptypes (vistype, type))
2706 thistype = composite_type (vistype, type);
2707 else
2708 thistype = TREE_TYPE (b_use->decl);
2709 b_use->u.type = TREE_TYPE (b_use->decl);
2710 if (TREE_CODE (b_use->decl) == FUNCTION_DECL
2711 && DECL_BUILT_IN (b_use->decl))
2712 thistype
2713 = build_type_attribute_variant (thistype,
2714 TYPE_ATTRIBUTES
2715 (b_use->u.type));
2716 TREE_TYPE (b_use->decl) = thistype;
2717 }
2718 return b_use->decl;
2719 }
2720 else
2721 goto skip_external_and_shadow_checks;
2722 }
2723
2724 /* All declarations with external linkage, and all external
2725 references, go in the external scope, no matter what scope is
2726 current. However, the binding in that scope is ignored for
2727 purposes of normal name lookup. A separate binding structure is
2728 created in the requested scope; this governs the normal
2729 visibility of the symbol.
2730
2731 The binding in the externals scope is used exclusively for
2732 detecting duplicate declarations of the same object, no matter
2733 what scope they are in; this is what we do here. (C99 6.2.7p2:
2734 All declarations that refer to the same object or function shall
2735 have compatible type; otherwise, the behavior is undefined.) */
2736 if (DECL_EXTERNAL (x) || scope == file_scope)
2737 {
2738 tree type = TREE_TYPE (x);
2739 tree vistype = 0;
2740 tree visdecl = 0;
2741 bool type_saved = false;
2742 if (b && !B_IN_EXTERNAL_SCOPE (b)
2743 && (TREE_CODE (b->decl) == FUNCTION_DECL
2744 || TREE_CODE (b->decl) == VAR_DECL)
2745 && DECL_FILE_SCOPE_P (b->decl))
2746 {
2747 visdecl = b->decl;
2748 vistype = TREE_TYPE (visdecl);
2749 }
2750 if (scope != file_scope
2751 && !DECL_IN_SYSTEM_HEADER (x))
2752 warning (OPT_Wnested_externs, "nested extern declaration of %qD", x);
2753
2754 while (b && !B_IN_EXTERNAL_SCOPE (b))
2755 {
2756 /* If this decl might be modified, save its type. This is
2757 done here rather than when the decl is first bound
2758 because the type may change after first binding, through
2759 being completed or through attributes being added. If we
2760 encounter multiple such decls, only the first should have
2761 its type saved; the others will already have had their
2762 proper types saved and the types will not have changed as
2763 their scopes will not have been re-entered. */
2764 if (DECL_P (b->decl) && DECL_FILE_SCOPE_P (b->decl) && !type_saved)
2765 {
2766 b->u.type = TREE_TYPE (b->decl);
2767 type_saved = true;
2768 }
2769 if (B_IN_FILE_SCOPE (b)
2770 && TREE_CODE (b->decl) == VAR_DECL
2771 && TREE_STATIC (b->decl)
2772 && TREE_CODE (TREE_TYPE (b->decl)) == ARRAY_TYPE
2773 && !TYPE_DOMAIN (TREE_TYPE (b->decl))
2774 && TREE_CODE (type) == ARRAY_TYPE
2775 && TYPE_DOMAIN (type)
2776 && TYPE_MAX_VALUE (TYPE_DOMAIN (type))
2777 && !integer_zerop (TYPE_MAX_VALUE (TYPE_DOMAIN (type))))
2778 {
2779 /* Array type completed in inner scope, which should be
2780 diagnosed if the completion does not have size 1 and
2781 it does not get completed in the file scope. */
2782 b->inner_comp = true;
2783 }
2784 b = b->shadowed;
2785 }
2786
2787 /* If a matching external declaration has been found, set its
2788 type to the composite of all the types of that declaration.
2789 After the consistency checks, it will be reset to the
2790 composite of the visible types only. */
2791 if (b && (TREE_PUBLIC (x) || same_translation_unit_p (x, b->decl))
2792 && b->u.type)
2793 TREE_TYPE (b->decl) = b->u.type;
2794
2795 /* The point of the same_translation_unit_p check here is,
2796 we want to detect a duplicate decl for a construct like
2797 foo() { extern bar(); } ... static bar(); but not if
2798 they are in different translation units. In any case,
2799 the static does not go in the externals scope. */
2800 if (b
2801 && (TREE_PUBLIC (x) || same_translation_unit_p (x, b->decl))
2802 && duplicate_decls (x, b->decl))
2803 {
2804 tree thistype;
2805 if (vistype)
2806 {
2807 if (comptypes (vistype, type))
2808 thistype = composite_type (vistype, type);
2809 else
2810 thistype = TREE_TYPE (b->decl);
2811 }
2812 else
2813 thistype = type;
2814 b->u.type = TREE_TYPE (b->decl);
2815 if (TREE_CODE (b->decl) == FUNCTION_DECL && DECL_BUILT_IN (b->decl))
2816 thistype
2817 = build_type_attribute_variant (thistype,
2818 TYPE_ATTRIBUTES (b->u.type));
2819 TREE_TYPE (b->decl) = thistype;
2820 bind (name, b->decl, scope, /*invisible=*/false, /*nested=*/true,
2821 locus);
2822 return b->decl;
2823 }
2824 else if (TREE_PUBLIC (x))
2825 {
2826 if (visdecl && !b && duplicate_decls (x, visdecl))
2827 {
2828 /* An external declaration at block scope referring to a
2829 visible entity with internal linkage. The composite
2830 type will already be correct for this scope, so we
2831 just need to fall through to make the declaration in
2832 this scope. */
2833 nested = true;
2834 x = visdecl;
2835 }
2836 else
2837 {
2838 bind (name, x, external_scope, /*invisible=*/true,
2839 /*nested=*/false, locus);
2840 nested = true;
2841 }
2842 }
2843 }
2844
2845 if (TREE_CODE (x) != PARM_DECL)
2846 warn_if_shadowing (x);
2847
2848 skip_external_and_shadow_checks:
2849 if (TREE_CODE (x) == TYPE_DECL)
2850 {
2851 /* So this is a typedef, set its underlying type. */
2852 set_underlying_type (x);
2853
2854 /* If X is a typedef defined in the current function, record it
2855 for the purpose of implementing the -Wunused-local-typedefs
2856 warning. */
2857 record_locally_defined_typedef (x);
2858 }
2859
2860 bind (name, x, scope, /*invisible=*/false, nested, locus);
2861
2862 /* If x's type is incomplete because it's based on a
2863 structure or union which has not yet been fully declared,
2864 attach it to that structure or union type, so we can go
2865 back and complete the variable declaration later, if the
2866 structure or union gets fully declared.
2867
2868 If the input is erroneous, we can have error_mark in the type
2869 slot (e.g. "f(void a, ...)") - that doesn't count as an
2870 incomplete type. */
2871 if (TREE_TYPE (x) != error_mark_node
2872 && !COMPLETE_TYPE_P (TREE_TYPE (x)))
2873 {
2874 tree element = TREE_TYPE (x);
2875
2876 while (TREE_CODE (element) == ARRAY_TYPE)
2877 element = TREE_TYPE (element);
2878 element = TYPE_MAIN_VARIANT (element);
2879
2880 if ((TREE_CODE (element) == RECORD_TYPE
2881 || TREE_CODE (element) == UNION_TYPE)
2882 && (TREE_CODE (x) != TYPE_DECL
2883 || TREE_CODE (TREE_TYPE (x)) == ARRAY_TYPE)
2884 && !COMPLETE_TYPE_P (element))
2885 C_TYPE_INCOMPLETE_VARS (element)
2886 = tree_cons (NULL_TREE, x, C_TYPE_INCOMPLETE_VARS (element));
2887 }
2888 return x;
2889 }
2890
2891 /* Record X as belonging to file scope.
2892 This is used only internally by the Objective-C front end,
2893 and is limited to its needs. duplicate_decls is not called;
2894 if there is any preexisting decl for this identifier, it is an ICE. */
2895
2896 tree
2897 pushdecl_top_level (tree x)
2898 {
2899 tree name;
2900 bool nested = false;
2901 gcc_assert (TREE_CODE (x) == VAR_DECL || TREE_CODE (x) == CONST_DECL);
2902
2903 name = DECL_NAME (x);
2904
2905 gcc_assert (TREE_CODE (x) == CONST_DECL || !I_SYMBOL_BINDING (name));
2906
2907 if (TREE_PUBLIC (x))
2908 {
2909 bind (name, x, external_scope, /*invisible=*/true, /*nested=*/false,
2910 UNKNOWN_LOCATION);
2911 nested = true;
2912 }
2913 if (file_scope)
2914 bind (name, x, file_scope, /*invisible=*/false, nested, UNKNOWN_LOCATION);
2915
2916 return x;
2917 }
2918 \f
2919 static void
2920 implicit_decl_warning (tree id, tree olddecl)
2921 {
2922 if (warn_implicit_function_declaration)
2923 {
2924 bool warned;
2925
2926 if (flag_isoc99)
2927 warned = pedwarn (input_location, OPT_Wimplicit_function_declaration,
2928 "implicit declaration of function %qE", id);
2929 else
2930 warned = warning (OPT_Wimplicit_function_declaration,
2931 G_("implicit declaration of function %qE"), id);
2932 if (olddecl && warned)
2933 locate_old_decl (olddecl);
2934 }
2935 }
2936
2937 /* Generate an implicit declaration for identifier FUNCTIONID at LOC as a
2938 function of type int (). */
2939
2940 tree
2941 implicitly_declare (location_t loc, tree functionid)
2942 {
2943 struct c_binding *b;
2944 tree decl = 0;
2945 tree asmspec_tree;
2946
2947 for (b = I_SYMBOL_BINDING (functionid); b; b = b->shadowed)
2948 {
2949 if (B_IN_SCOPE (b, external_scope))
2950 {
2951 decl = b->decl;
2952 break;
2953 }
2954 }
2955
2956 if (decl)
2957 {
2958 if (decl == error_mark_node)
2959 return decl;
2960
2961 /* FIXME: Objective-C has weird not-really-builtin functions
2962 which are supposed to be visible automatically. They wind up
2963 in the external scope because they're pushed before the file
2964 scope gets created. Catch this here and rebind them into the
2965 file scope. */
2966 if (!DECL_BUILT_IN (decl) && DECL_IS_BUILTIN (decl))
2967 {
2968 bind (functionid, decl, file_scope,
2969 /*invisible=*/false, /*nested=*/true,
2970 DECL_SOURCE_LOCATION (decl));
2971 return decl;
2972 }
2973 else
2974 {
2975 tree newtype = default_function_type;
2976 if (b->u.type)
2977 TREE_TYPE (decl) = b->u.type;
2978 /* Implicit declaration of a function already declared
2979 (somehow) in a different scope, or as a built-in.
2980 If this is the first time this has happened, warn;
2981 then recycle the old declaration but with the new type. */
2982 if (!C_DECL_IMPLICIT (decl))
2983 {
2984 implicit_decl_warning (functionid, decl);
2985 C_DECL_IMPLICIT (decl) = 1;
2986 }
2987 if (DECL_BUILT_IN (decl))
2988 {
2989 newtype = build_type_attribute_variant (newtype,
2990 TYPE_ATTRIBUTES
2991 (TREE_TYPE (decl)));
2992 if (!comptypes (newtype, TREE_TYPE (decl)))
2993 {
2994 warning_at (loc, 0, "incompatible implicit declaration of "
2995 "built-in function %qD", decl);
2996 newtype = TREE_TYPE (decl);
2997 }
2998 }
2999 else
3000 {
3001 if (!comptypes (newtype, TREE_TYPE (decl)))
3002 {
3003 error_at (loc, "incompatible implicit declaration of function %qD", decl);
3004 locate_old_decl (decl);
3005 }
3006 }
3007 b->u.type = TREE_TYPE (decl);
3008 TREE_TYPE (decl) = newtype;
3009 bind (functionid, decl, current_scope,
3010 /*invisible=*/false, /*nested=*/true,
3011 DECL_SOURCE_LOCATION (decl));
3012 return decl;
3013 }
3014 }
3015
3016 /* Not seen before. */
3017 decl = build_decl (loc, FUNCTION_DECL, functionid, default_function_type);
3018 DECL_EXTERNAL (decl) = 1;
3019 TREE_PUBLIC (decl) = 1;
3020 C_DECL_IMPLICIT (decl) = 1;
3021 implicit_decl_warning (functionid, 0);
3022 asmspec_tree = maybe_apply_renaming_pragma (decl, /*asmname=*/NULL);
3023 if (asmspec_tree)
3024 set_user_assembler_name (decl, TREE_STRING_POINTER (asmspec_tree));
3025
3026 /* C89 says implicit declarations are in the innermost block.
3027 So we record the decl in the standard fashion. */
3028 decl = pushdecl (decl);
3029
3030 /* No need to call objc_check_decl here - it's a function type. */
3031 rest_of_decl_compilation (decl, 0, 0);
3032
3033 /* Write a record describing this implicit function declaration
3034 to the prototypes file (if requested). */
3035 gen_aux_info_record (decl, 0, 1, 0);
3036
3037 /* Possibly apply some default attributes to this implicit declaration. */
3038 decl_attributes (&decl, NULL_TREE, 0);
3039
3040 return decl;
3041 }
3042
3043 /* Issue an error message for a reference to an undeclared variable
3044 ID, including a reference to a builtin outside of function-call
3045 context. Establish a binding of the identifier to error_mark_node
3046 in an appropriate scope, which will suppress further errors for the
3047 same identifier. The error message should be given location LOC. */
3048 void
3049 undeclared_variable (location_t loc, tree id)
3050 {
3051 static bool already = false;
3052 struct c_scope *scope;
3053
3054 if (current_function_decl == 0)
3055 {
3056 error_at (loc, "%qE undeclared here (not in a function)", id);
3057 scope = current_scope;
3058 }
3059 else
3060 {
3061 if (!objc_diagnose_private_ivar (id))
3062 error_at (loc, "%qE undeclared (first use in this function)", id);
3063 if (!already)
3064 {
3065 inform (loc, "each undeclared identifier is reported only"
3066 " once for each function it appears in");
3067 already = true;
3068 }
3069
3070 /* If we are parsing old-style parameter decls, current_function_decl
3071 will be nonnull but current_function_scope will be null. */
3072 scope = current_function_scope ? current_function_scope : current_scope;
3073 }
3074 bind (id, error_mark_node, scope, /*invisible=*/false, /*nested=*/false,
3075 UNKNOWN_LOCATION);
3076 }
3077 \f
3078 /* Subroutine of lookup_label, declare_label, define_label: construct a
3079 LABEL_DECL with all the proper frills. Also create a struct
3080 c_label_vars initialized for the current scope. */
3081
3082 static tree
3083 make_label (location_t location, tree name, bool defining,
3084 struct c_label_vars **p_label_vars)
3085 {
3086 tree label = build_decl (location, LABEL_DECL, name, void_type_node);
3087 DECL_CONTEXT (label) = current_function_decl;
3088 DECL_MODE (label) = VOIDmode;
3089
3090 c_label_vars *label_vars = ggc_alloc<c_label_vars> ();
3091 label_vars->shadowed = NULL;
3092 set_spot_bindings (&label_vars->label_bindings, defining);
3093 label_vars->decls_in_scope = make_tree_vector ();
3094 label_vars->gotos = NULL;
3095 *p_label_vars = label_vars;
3096
3097 return label;
3098 }
3099
3100 /* Get the LABEL_DECL corresponding to identifier NAME as a label.
3101 Create one if none exists so far for the current function.
3102 This is called when a label is used in a goto expression or
3103 has its address taken. */
3104
3105 tree
3106 lookup_label (tree name)
3107 {
3108 tree label;
3109 struct c_label_vars *label_vars;
3110
3111 if (current_function_scope == 0)
3112 {
3113 error ("label %qE referenced outside of any function", name);
3114 return 0;
3115 }
3116
3117 /* Use a label already defined or ref'd with this name, but not if
3118 it is inherited from a containing function and wasn't declared
3119 using __label__. */
3120 label = I_LABEL_DECL (name);
3121 if (label && (DECL_CONTEXT (label) == current_function_decl
3122 || C_DECLARED_LABEL_FLAG (label)))
3123 {
3124 /* If the label has only been declared, update its apparent
3125 location to point here, for better diagnostics if it
3126 turns out not to have been defined. */
3127 if (DECL_INITIAL (label) == NULL_TREE)
3128 DECL_SOURCE_LOCATION (label) = input_location;
3129 return label;
3130 }
3131
3132 /* No label binding for that identifier; make one. */
3133 label = make_label (input_location, name, false, &label_vars);
3134
3135 /* Ordinary labels go in the current function scope. */
3136 bind_label (name, label, current_function_scope, label_vars);
3137
3138 return label;
3139 }
3140
3141 /* Issue a warning about DECL for a goto statement at GOTO_LOC going
3142 to LABEL. */
3143
3144 static void
3145 warn_about_goto (location_t goto_loc, tree label, tree decl)
3146 {
3147 if (variably_modified_type_p (TREE_TYPE (decl), NULL_TREE))
3148 error_at (goto_loc,
3149 "jump into scope of identifier with variably modified type");
3150 else
3151 warning_at (goto_loc, OPT_Wjump_misses_init,
3152 "jump skips variable initialization");
3153 inform (DECL_SOURCE_LOCATION (label), "label %qD defined here", label);
3154 inform (DECL_SOURCE_LOCATION (decl), "%qD declared here", decl);
3155 }
3156
3157 /* Look up a label because of a goto statement. This is like
3158 lookup_label, but also issues any appropriate warnings. */
3159
3160 tree
3161 lookup_label_for_goto (location_t loc, tree name)
3162 {
3163 tree label;
3164 struct c_label_vars *label_vars;
3165 unsigned int ix;
3166 tree decl;
3167
3168 label = lookup_label (name);
3169 if (label == NULL_TREE)
3170 return NULL_TREE;
3171
3172 /* If we are jumping to a different function, we can't issue any
3173 useful warnings. */
3174 if (DECL_CONTEXT (label) != current_function_decl)
3175 {
3176 gcc_assert (C_DECLARED_LABEL_FLAG (label));
3177 return label;
3178 }
3179
3180 label_vars = I_LABEL_BINDING (name)->u.label;
3181
3182 /* If the label has not yet been defined, then push this goto on a
3183 list for possible later warnings. */
3184 if (label_vars->label_bindings.scope == NULL)
3185 {
3186 c_goto_bindings *g = ggc_alloc<c_goto_bindings> ();
3187
3188 g->loc = loc;
3189 set_spot_bindings (&g->goto_bindings, true);
3190 vec_safe_push (label_vars->gotos, g);
3191 return label;
3192 }
3193
3194 /* If there are any decls in label_vars->decls_in_scope, then this
3195 goto has missed the declaration of the decl. This happens for a
3196 case like
3197 int i = 1;
3198 lab:
3199 ...
3200 goto lab;
3201 Issue a warning or error. */
3202 FOR_EACH_VEC_SAFE_ELT (label_vars->decls_in_scope, ix, decl)
3203 warn_about_goto (loc, label, decl);
3204
3205 if (label_vars->label_bindings.left_stmt_expr)
3206 {
3207 error_at (loc, "jump into statement expression");
3208 inform (DECL_SOURCE_LOCATION (label), "label %qD defined here", label);
3209 }
3210
3211 return label;
3212 }
3213
3214 /* Make a label named NAME in the current function, shadowing silently
3215 any that may be inherited from containing functions or containing
3216 scopes. This is called for __label__ declarations. */
3217
3218 tree
3219 declare_label (tree name)
3220 {
3221 struct c_binding *b = I_LABEL_BINDING (name);
3222 tree label;
3223 struct c_label_vars *label_vars;
3224
3225 /* Check to make sure that the label hasn't already been declared
3226 at this scope */
3227 if (b && B_IN_CURRENT_SCOPE (b))
3228 {
3229 error ("duplicate label declaration %qE", name);
3230 locate_old_decl (b->decl);
3231
3232 /* Just use the previous declaration. */
3233 return b->decl;
3234 }
3235
3236 label = make_label (input_location, name, false, &label_vars);
3237 C_DECLARED_LABEL_FLAG (label) = 1;
3238
3239 /* Declared labels go in the current scope. */
3240 bind_label (name, label, current_scope, label_vars);
3241
3242 return label;
3243 }
3244
3245 /* When we define a label, issue any appropriate warnings if there are
3246 any gotos earlier in the function which jump to this label. */
3247
3248 static void
3249 check_earlier_gotos (tree label, struct c_label_vars* label_vars)
3250 {
3251 unsigned int ix;
3252 struct c_goto_bindings *g;
3253
3254 FOR_EACH_VEC_SAFE_ELT (label_vars->gotos, ix, g)
3255 {
3256 struct c_binding *b;
3257 struct c_scope *scope;
3258
3259 /* We have a goto to this label. The goto is going forward. In
3260 g->scope, the goto is going to skip any binding which was
3261 defined after g->bindings_in_scope. */
3262 if (g->goto_bindings.scope->has_jump_unsafe_decl)
3263 {
3264 for (b = g->goto_bindings.scope->bindings;
3265 b != g->goto_bindings.bindings_in_scope;
3266 b = b->prev)
3267 {
3268 if (decl_jump_unsafe (b->decl))
3269 warn_about_goto (g->loc, label, b->decl);
3270 }
3271 }
3272
3273 /* We also need to warn about decls defined in any scopes
3274 between the scope of the label and the scope of the goto. */
3275 for (scope = label_vars->label_bindings.scope;
3276 scope != g->goto_bindings.scope;
3277 scope = scope->outer)
3278 {
3279 gcc_assert (scope != NULL);
3280 if (scope->has_jump_unsafe_decl)
3281 {
3282 if (scope == label_vars->label_bindings.scope)
3283 b = label_vars->label_bindings.bindings_in_scope;
3284 else
3285 b = scope->bindings;
3286 for (; b != NULL; b = b->prev)
3287 {
3288 if (decl_jump_unsafe (b->decl))
3289 warn_about_goto (g->loc, label, b->decl);
3290 }
3291 }
3292 }
3293
3294 if (g->goto_bindings.stmt_exprs > 0)
3295 {
3296 error_at (g->loc, "jump into statement expression");
3297 inform (DECL_SOURCE_LOCATION (label), "label %qD defined here",
3298 label);
3299 }
3300 }
3301
3302 /* Now that the label is defined, we will issue warnings about
3303 subsequent gotos to this label when we see them. */
3304 vec_safe_truncate (label_vars->gotos, 0);
3305 label_vars->gotos = NULL;
3306 }
3307
3308 /* Define a label, specifying the location in the source file.
3309 Return the LABEL_DECL node for the label, if the definition is valid.
3310 Otherwise return 0. */
3311
3312 tree
3313 define_label (location_t location, tree name)
3314 {
3315 /* Find any preexisting label with this name. It is an error
3316 if that label has already been defined in this function, or
3317 if there is a containing function with a declared label with
3318 the same name. */
3319 tree label = I_LABEL_DECL (name);
3320
3321 if (label
3322 && ((DECL_CONTEXT (label) == current_function_decl
3323 && DECL_INITIAL (label) != 0)
3324 || (DECL_CONTEXT (label) != current_function_decl
3325 && C_DECLARED_LABEL_FLAG (label))))
3326 {
3327 error_at (location, "duplicate label %qD", label);
3328 locate_old_decl (label);
3329 return 0;
3330 }
3331 else if (label && DECL_CONTEXT (label) == current_function_decl)
3332 {
3333 struct c_label_vars *label_vars = I_LABEL_BINDING (name)->u.label;
3334
3335 /* The label has been used or declared already in this function,
3336 but not defined. Update its location to point to this
3337 definition. */
3338 DECL_SOURCE_LOCATION (label) = location;
3339 set_spot_bindings (&label_vars->label_bindings, true);
3340
3341 /* Issue warnings as required about any goto statements from
3342 earlier in the function. */
3343 check_earlier_gotos (label, label_vars);
3344 }
3345 else
3346 {
3347 struct c_label_vars *label_vars;
3348
3349 /* No label binding for that identifier; make one. */
3350 label = make_label (location, name, true, &label_vars);
3351
3352 /* Ordinary labels go in the current function scope. */
3353 bind_label (name, label, current_function_scope, label_vars);
3354 }
3355
3356 if (!in_system_header_at (input_location) && lookup_name (name))
3357 warning_at (location, OPT_Wtraditional,
3358 "traditional C lacks a separate namespace "
3359 "for labels, identifier %qE conflicts", name);
3360
3361 /* Mark label as having been defined. */
3362 DECL_INITIAL (label) = error_mark_node;
3363 return label;
3364 }
3365 \f
3366 /* Get the bindings for a new switch statement. This is used to issue
3367 warnings as appropriate for jumps from the switch to case or
3368 default labels. */
3369
3370 struct c_spot_bindings *
3371 c_get_switch_bindings (void)
3372 {
3373 struct c_spot_bindings *switch_bindings;
3374
3375 switch_bindings = XNEW (struct c_spot_bindings);
3376 set_spot_bindings (switch_bindings, true);
3377 return switch_bindings;
3378 }
3379
3380 void
3381 c_release_switch_bindings (struct c_spot_bindings *bindings)
3382 {
3383 gcc_assert (bindings->stmt_exprs == 0 && !bindings->left_stmt_expr);
3384 XDELETE (bindings);
3385 }
3386
3387 /* This is called at the point of a case or default label to issue
3388 warnings about decls as needed. It returns true if it found an
3389 error, not just a warning. */
3390
3391 bool
3392 c_check_switch_jump_warnings (struct c_spot_bindings *switch_bindings,
3393 location_t switch_loc, location_t case_loc)
3394 {
3395 bool saw_error;
3396 struct c_scope *scope;
3397
3398 saw_error = false;
3399 for (scope = current_scope;
3400 scope != switch_bindings->scope;
3401 scope = scope->outer)
3402 {
3403 struct c_binding *b;
3404
3405 gcc_assert (scope != NULL);
3406
3407 if (!scope->has_jump_unsafe_decl)
3408 continue;
3409
3410 for (b = scope->bindings; b != NULL; b = b->prev)
3411 {
3412 if (decl_jump_unsafe (b->decl))
3413 {
3414 if (variably_modified_type_p (TREE_TYPE (b->decl), NULL_TREE))
3415 {
3416 saw_error = true;
3417 error_at (case_loc,
3418 ("switch jumps into scope of identifier with "
3419 "variably modified type"));
3420 }
3421 else
3422 warning_at (case_loc, OPT_Wjump_misses_init,
3423 "switch jumps over variable initialization");
3424 inform (switch_loc, "switch starts here");
3425 inform (DECL_SOURCE_LOCATION (b->decl), "%qD declared here",
3426 b->decl);
3427 }
3428 }
3429 }
3430
3431 if (switch_bindings->stmt_exprs > 0)
3432 {
3433 saw_error = true;
3434 error_at (case_loc, "switch jumps into statement expression");
3435 inform (switch_loc, "switch starts here");
3436 }
3437
3438 return saw_error;
3439 }
3440 \f
3441 /* Given NAME, an IDENTIFIER_NODE,
3442 return the structure (or union or enum) definition for that name.
3443 If THISLEVEL_ONLY is nonzero, searches only the current_scope.
3444 CODE says which kind of type the caller wants;
3445 it is RECORD_TYPE or UNION_TYPE or ENUMERAL_TYPE.
3446 If PLOC is not NULL and this returns non-null, it sets *PLOC to the
3447 location where the tag was defined.
3448 If the wrong kind of type is found, an error is reported. */
3449
3450 static tree
3451 lookup_tag (enum tree_code code, tree name, int thislevel_only,
3452 location_t *ploc)
3453 {
3454 struct c_binding *b = I_TAG_BINDING (name);
3455 int thislevel = 0;
3456
3457 if (!b || !b->decl)
3458 return 0;
3459
3460 /* We only care about whether it's in this level if
3461 thislevel_only was set or it might be a type clash. */
3462 if (thislevel_only || TREE_CODE (b->decl) != code)
3463 {
3464 /* For our purposes, a tag in the external scope is the same as
3465 a tag in the file scope. (Primarily relevant to Objective-C
3466 and its builtin structure tags, which get pushed before the
3467 file scope is created.) */
3468 if (B_IN_CURRENT_SCOPE (b)
3469 || (current_scope == file_scope && B_IN_EXTERNAL_SCOPE (b)))
3470 thislevel = 1;
3471 }
3472
3473 if (thislevel_only && !thislevel)
3474 return 0;
3475
3476 if (TREE_CODE (b->decl) != code)
3477 {
3478 /* Definition isn't the kind we were looking for. */
3479 pending_invalid_xref = name;
3480 pending_invalid_xref_location = input_location;
3481
3482 /* If in the same binding level as a declaration as a tag
3483 of a different type, this must not be allowed to
3484 shadow that tag, so give the error immediately.
3485 (For example, "struct foo; union foo;" is invalid.) */
3486 if (thislevel)
3487 pending_xref_error ();
3488 }
3489
3490 if (ploc != NULL)
3491 *ploc = b->locus;
3492
3493 return b->decl;
3494 }
3495
3496 /* Print an error message now
3497 for a recent invalid struct, union or enum cross reference.
3498 We don't print them immediately because they are not invalid
3499 when used in the `struct foo;' construct for shadowing. */
3500
3501 void
3502 pending_xref_error (void)
3503 {
3504 if (pending_invalid_xref != 0)
3505 error_at (pending_invalid_xref_location, "%qE defined as wrong kind of tag",
3506 pending_invalid_xref);
3507 pending_invalid_xref = 0;
3508 }
3509
3510 \f
3511 /* Look up NAME in the current scope and its superiors
3512 in the namespace of variables, functions and typedefs.
3513 Return a ..._DECL node of some kind representing its definition,
3514 or return 0 if it is undefined. */
3515
3516 tree
3517 lookup_name (tree name)
3518 {
3519 struct c_binding *b = I_SYMBOL_BINDING (name);
3520 if (b && !b->invisible)
3521 {
3522 maybe_record_typedef_use (b->decl);
3523 return b->decl;
3524 }
3525 return 0;
3526 }
3527
3528 /* Similar to `lookup_name' but look only at the indicated scope. */
3529
3530 static tree
3531 lookup_name_in_scope (tree name, struct c_scope *scope)
3532 {
3533 struct c_binding *b;
3534
3535 for (b = I_SYMBOL_BINDING (name); b; b = b->shadowed)
3536 if (B_IN_SCOPE (b, scope))
3537 return b->decl;
3538 return 0;
3539 }
3540 \f
3541 /* Create the predefined scalar types of C,
3542 and some nodes representing standard constants (0, 1, (void *) 0).
3543 Initialize the global scope.
3544 Make definitions for built-in primitive functions. */
3545
3546 void
3547 c_init_decl_processing (void)
3548 {
3549 location_t save_loc = input_location;
3550
3551 /* Initialize reserved words for parser. */
3552 c_parse_init ();
3553
3554 current_function_decl = 0;
3555
3556 gcc_obstack_init (&parser_obstack);
3557
3558 /* Make the externals scope. */
3559 push_scope ();
3560 external_scope = current_scope;
3561
3562 /* Declarations from c_common_nodes_and_builtins must not be associated
3563 with this input file, lest we get differences between using and not
3564 using preprocessed headers. */
3565 input_location = BUILTINS_LOCATION;
3566
3567 c_common_nodes_and_builtins ();
3568
3569 /* In C, comparisons and TRUTH_* expressions have type int. */
3570 truthvalue_type_node = integer_type_node;
3571 truthvalue_true_node = integer_one_node;
3572 truthvalue_false_node = integer_zero_node;
3573
3574 /* Even in C99, which has a real boolean type. */
3575 pushdecl (build_decl (UNKNOWN_LOCATION, TYPE_DECL, get_identifier ("_Bool"),
3576 boolean_type_node));
3577
3578 input_location = save_loc;
3579
3580 pedantic_lvalues = true;
3581
3582 make_fname_decl = c_make_fname_decl;
3583 start_fname_decls ();
3584 }
3585
3586 /* Create the VAR_DECL at LOC for __FUNCTION__ etc. ID is the name to
3587 give the decl, NAME is the initialization string and TYPE_DEP
3588 indicates whether NAME depended on the type of the function. As we
3589 don't yet implement delayed emission of static data, we mark the
3590 decl as emitted so it is not placed in the output. Anything using
3591 it must therefore pull out the STRING_CST initializer directly.
3592 FIXME. */
3593
3594 static tree
3595 c_make_fname_decl (location_t loc, tree id, int type_dep)
3596 {
3597 const char *name = fname_as_string (type_dep);
3598 tree decl, type, init;
3599 size_t length = strlen (name);
3600
3601 type = build_array_type (char_type_node,
3602 build_index_type (size_int (length)));
3603 type = c_build_qualified_type (type, TYPE_QUAL_CONST);
3604
3605 decl = build_decl (loc, VAR_DECL, id, type);
3606
3607 TREE_STATIC (decl) = 1;
3608 TREE_READONLY (decl) = 1;
3609 DECL_ARTIFICIAL (decl) = 1;
3610
3611 init = build_string (length + 1, name);
3612 free (CONST_CAST (char *, name));
3613 TREE_TYPE (init) = type;
3614 DECL_INITIAL (decl) = init;
3615
3616 TREE_USED (decl) = 1;
3617
3618 if (current_function_decl
3619 /* For invalid programs like this:
3620
3621 void foo()
3622 const char* p = __FUNCTION__;
3623
3624 the __FUNCTION__ is believed to appear in K&R style function
3625 parameter declarator. In that case we still don't have
3626 function_scope. */
3627 && (!seen_error () || current_function_scope))
3628 {
3629 DECL_CONTEXT (decl) = current_function_decl;
3630 bind (id, decl, current_function_scope,
3631 /*invisible=*/false, /*nested=*/false, UNKNOWN_LOCATION);
3632 }
3633
3634 finish_decl (decl, loc, init, NULL_TREE, NULL_TREE);
3635
3636 return decl;
3637 }
3638
3639 tree
3640 c_builtin_function (tree decl)
3641 {
3642 tree type = TREE_TYPE (decl);
3643 tree id = DECL_NAME (decl);
3644
3645 const char *name = IDENTIFIER_POINTER (id);
3646 C_DECL_BUILTIN_PROTOTYPE (decl) = prototype_p (type);
3647
3648 /* Should never be called on a symbol with a preexisting meaning. */
3649 gcc_assert (!I_SYMBOL_BINDING (id));
3650
3651 bind (id, decl, external_scope, /*invisible=*/true, /*nested=*/false,
3652 UNKNOWN_LOCATION);
3653
3654 /* Builtins in the implementation namespace are made visible without
3655 needing to be explicitly declared. See push_file_scope. */
3656 if (name[0] == '_' && (name[1] == '_' || ISUPPER (name[1])))
3657 {
3658 DECL_CHAIN (decl) = visible_builtins;
3659 visible_builtins = decl;
3660 }
3661
3662 return decl;
3663 }
3664
3665 tree
3666 c_builtin_function_ext_scope (tree decl)
3667 {
3668 tree type = TREE_TYPE (decl);
3669 tree id = DECL_NAME (decl);
3670
3671 const char *name = IDENTIFIER_POINTER (id);
3672 C_DECL_BUILTIN_PROTOTYPE (decl) = prototype_p (type);
3673
3674 if (external_scope)
3675 bind (id, decl, external_scope, /*invisible=*/false, /*nested=*/false,
3676 UNKNOWN_LOCATION);
3677
3678 /* Builtins in the implementation namespace are made visible without
3679 needing to be explicitly declared. See push_file_scope. */
3680 if (name[0] == '_' && (name[1] == '_' || ISUPPER (name[1])))
3681 {
3682 DECL_CHAIN (decl) = visible_builtins;
3683 visible_builtins = decl;
3684 }
3685
3686 return decl;
3687 }
3688 \f
3689 /* Called when a declaration is seen that contains no names to declare.
3690 If its type is a reference to a structure, union or enum inherited
3691 from a containing scope, shadow that tag name for the current scope
3692 with a forward reference.
3693 If its type defines a new named structure or union
3694 or defines an enum, it is valid but we need not do anything here.
3695 Otherwise, it is an error. */
3696
3697 void
3698 shadow_tag (const struct c_declspecs *declspecs)
3699 {
3700 shadow_tag_warned (declspecs, 0);
3701 }
3702
3703 /* WARNED is 1 if we have done a pedwarn, 2 if we have done a warning,
3704 but no pedwarn. */
3705 void
3706 shadow_tag_warned (const struct c_declspecs *declspecs, int warned)
3707 {
3708 bool found_tag = false;
3709
3710 if (declspecs->type && !declspecs->default_int_p && !declspecs->typedef_p)
3711 {
3712 tree value = declspecs->type;
3713 enum tree_code code = TREE_CODE (value);
3714
3715 if (code == RECORD_TYPE || code == UNION_TYPE || code == ENUMERAL_TYPE)
3716 /* Used to test also that TYPE_SIZE (value) != 0.
3717 That caused warning for `struct foo;' at top level in the file. */
3718 {
3719 tree name = TYPE_NAME (value);
3720 tree t;
3721
3722 found_tag = true;
3723
3724 if (declspecs->restrict_p)
3725 {
3726 error ("invalid use of %<restrict%>");
3727 warned = 1;
3728 }
3729
3730 if (name == 0)
3731 {
3732 if (warned != 1 && code != ENUMERAL_TYPE)
3733 /* Empty unnamed enum OK */
3734 {
3735 pedwarn (input_location, 0,
3736 "unnamed struct/union that defines no instances");
3737 warned = 1;
3738 }
3739 }
3740 else if (declspecs->typespec_kind != ctsk_tagdef
3741 && declspecs->typespec_kind != ctsk_tagfirstref
3742 && declspecs->storage_class != csc_none)
3743 {
3744 if (warned != 1)
3745 pedwarn (input_location, 0,
3746 "empty declaration with storage class specifier "
3747 "does not redeclare tag");
3748 warned = 1;
3749 pending_xref_error ();
3750 }
3751 else if (declspecs->typespec_kind != ctsk_tagdef
3752 && declspecs->typespec_kind != ctsk_tagfirstref
3753 && (declspecs->const_p
3754 || declspecs->volatile_p
3755 || declspecs->atomic_p
3756 || declspecs->restrict_p
3757 || declspecs->address_space))
3758 {
3759 if (warned != 1)
3760 pedwarn (input_location, 0,
3761 "empty declaration with type qualifier "
3762 "does not redeclare tag");
3763 warned = 1;
3764 pending_xref_error ();
3765 }
3766 else if (declspecs->typespec_kind != ctsk_tagdef
3767 && declspecs->typespec_kind != ctsk_tagfirstref
3768 && declspecs->alignas_p)
3769 {
3770 if (warned != 1)
3771 pedwarn (input_location, 0,
3772 "empty declaration with %<_Alignas%> "
3773 "does not redeclare tag");
3774 warned = 1;
3775 pending_xref_error ();
3776 }
3777 else
3778 {
3779 pending_invalid_xref = 0;
3780 t = lookup_tag (code, name, 1, NULL);
3781
3782 if (t == 0)
3783 {
3784 t = make_node (code);
3785 pushtag (input_location, name, t);
3786 }
3787 }
3788 }
3789 else
3790 {
3791 if (warned != 1 && !in_system_header_at (input_location))
3792 {
3793 pedwarn (input_location, 0,
3794 "useless type name in empty declaration");
3795 warned = 1;
3796 }
3797 }
3798 }
3799 else if (warned != 1 && !in_system_header_at (input_location)
3800 && declspecs->typedef_p)
3801 {
3802 pedwarn (input_location, 0, "useless type name in empty declaration");
3803 warned = 1;
3804 }
3805
3806 pending_invalid_xref = 0;
3807
3808 if (declspecs->inline_p)
3809 {
3810 error ("%<inline%> in empty declaration");
3811 warned = 1;
3812 }
3813
3814 if (declspecs->noreturn_p)
3815 {
3816 error ("%<_Noreturn%> in empty declaration");
3817 warned = 1;
3818 }
3819
3820 if (current_scope == file_scope && declspecs->storage_class == csc_auto)
3821 {
3822 error ("%<auto%> in file-scope empty declaration");
3823 warned = 1;
3824 }
3825
3826 if (current_scope == file_scope && declspecs->storage_class == csc_register)
3827 {
3828 error ("%<register%> in file-scope empty declaration");
3829 warned = 1;
3830 }
3831
3832 if (!warned && !in_system_header_at (input_location)
3833 && declspecs->storage_class != csc_none)
3834 {
3835 warning (0, "useless storage class specifier in empty declaration");
3836 warned = 2;
3837 }
3838
3839 if (!warned && !in_system_header_at (input_location) && declspecs->thread_p)
3840 {
3841 warning (0, "useless %qs in empty declaration",
3842 declspecs->thread_gnu_p ? "__thread" : "_Thread_local");
3843 warned = 2;
3844 }
3845
3846 if (!warned
3847 && !in_system_header_at (input_location)
3848 && (declspecs->const_p
3849 || declspecs->volatile_p
3850 || declspecs->atomic_p
3851 || declspecs->restrict_p
3852 || declspecs->address_space))
3853 {
3854 warning (0, "useless type qualifier in empty declaration");
3855 warned = 2;
3856 }
3857
3858 if (!warned && !in_system_header_at (input_location)
3859 && declspecs->alignas_p)
3860 {
3861 warning (0, "useless %<_Alignas%> in empty declaration");
3862 warned = 2;
3863 }
3864
3865 if (warned != 1)
3866 {
3867 if (!found_tag)
3868 pedwarn (input_location, 0, "empty declaration");
3869 }
3870 }
3871 \f
3872
3873 /* Return the qualifiers from SPECS as a bitwise OR of TYPE_QUAL_*
3874 bits. SPECS represents declaration specifiers that the grammar
3875 only permits to contain type qualifiers and attributes. */
3876
3877 int
3878 quals_from_declspecs (const struct c_declspecs *specs)
3879 {
3880 int quals = ((specs->const_p ? TYPE_QUAL_CONST : 0)
3881 | (specs->volatile_p ? TYPE_QUAL_VOLATILE : 0)
3882 | (specs->restrict_p ? TYPE_QUAL_RESTRICT : 0)
3883 | (specs->atomic_p ? TYPE_QUAL_ATOMIC : 0)
3884 | (ENCODE_QUAL_ADDR_SPACE (specs->address_space)));
3885 gcc_assert (!specs->type
3886 && !specs->decl_attr
3887 && specs->typespec_word == cts_none
3888 && specs->storage_class == csc_none
3889 && !specs->typedef_p
3890 && !specs->explicit_signed_p
3891 && !specs->deprecated_p
3892 && !specs->long_p
3893 && !specs->long_long_p
3894 && !specs->short_p
3895 && !specs->signed_p
3896 && !specs->unsigned_p
3897 && !specs->complex_p
3898 && !specs->inline_p
3899 && !specs->noreturn_p
3900 && !specs->thread_p);
3901 return quals;
3902 }
3903
3904 /* Construct an array declarator. LOC is the location of the
3905 beginning of the array (usually the opening brace). EXPR is the
3906 expression inside [], or NULL_TREE. QUALS are the type qualifiers
3907 inside the [] (to be applied to the pointer to which a parameter
3908 array is converted). STATIC_P is true if "static" is inside the
3909 [], false otherwise. VLA_UNSPEC_P is true if the array is [*], a
3910 VLA of unspecified length which is nevertheless a complete type,
3911 false otherwise. The field for the contained declarator is left to
3912 be filled in by set_array_declarator_inner. */
3913
3914 struct c_declarator *
3915 build_array_declarator (location_t loc,
3916 tree expr, struct c_declspecs *quals, bool static_p,
3917 bool vla_unspec_p)
3918 {
3919 struct c_declarator *declarator = XOBNEW (&parser_obstack,
3920 struct c_declarator);
3921 declarator->id_loc = loc;
3922 declarator->kind = cdk_array;
3923 declarator->declarator = 0;
3924 declarator->u.array.dimen = expr;
3925 if (quals)
3926 {
3927 declarator->u.array.attrs = quals->attrs;
3928 declarator->u.array.quals = quals_from_declspecs (quals);
3929 }
3930 else
3931 {
3932 declarator->u.array.attrs = NULL_TREE;
3933 declarator->u.array.quals = 0;
3934 }
3935 declarator->u.array.static_p = static_p;
3936 declarator->u.array.vla_unspec_p = vla_unspec_p;
3937 if (!flag_isoc99)
3938 {
3939 if (static_p || quals != NULL)
3940 pedwarn (loc, OPT_Wpedantic,
3941 "ISO C90 does not support %<static%> or type "
3942 "qualifiers in parameter array declarators");
3943 if (vla_unspec_p)
3944 pedwarn (loc, OPT_Wpedantic,
3945 "ISO C90 does not support %<[*]%> array declarators");
3946 }
3947 if (vla_unspec_p)
3948 {
3949 if (!current_scope->parm_flag)
3950 {
3951 /* C99 6.7.5.2p4 */
3952 error_at (loc, "%<[*]%> not allowed in other than "
3953 "function prototype scope");
3954 declarator->u.array.vla_unspec_p = false;
3955 return NULL;
3956 }
3957 current_scope->had_vla_unspec = true;
3958 }
3959 return declarator;
3960 }
3961
3962 /* Set the contained declarator of an array declarator. DECL is the
3963 declarator, as constructed by build_array_declarator; INNER is what
3964 appears on the left of the []. */
3965
3966 struct c_declarator *
3967 set_array_declarator_inner (struct c_declarator *decl,
3968 struct c_declarator *inner)
3969 {
3970 decl->declarator = inner;
3971 return decl;
3972 }
3973
3974 /* INIT is a constructor that forms DECL's initializer. If the final
3975 element initializes a flexible array field, add the size of that
3976 initializer to DECL's size. */
3977
3978 static void
3979 add_flexible_array_elts_to_size (tree decl, tree init)
3980 {
3981 tree elt, type;
3982
3983 if (vec_safe_is_empty (CONSTRUCTOR_ELTS (init)))
3984 return;
3985
3986 elt = CONSTRUCTOR_ELTS (init)->last ().value;
3987 type = TREE_TYPE (elt);
3988 if (TREE_CODE (type) == ARRAY_TYPE
3989 && TYPE_SIZE (type) == NULL_TREE
3990 && TYPE_DOMAIN (type) != NULL_TREE
3991 && TYPE_MAX_VALUE (TYPE_DOMAIN (type)) == NULL_TREE)
3992 {
3993 complete_array_type (&type, elt, false);
3994 DECL_SIZE (decl)
3995 = size_binop (PLUS_EXPR, DECL_SIZE (decl), TYPE_SIZE (type));
3996 DECL_SIZE_UNIT (decl)
3997 = size_binop (PLUS_EXPR, DECL_SIZE_UNIT (decl), TYPE_SIZE_UNIT (type));
3998 }
3999 }
4000 \f
4001 /* Decode a "typename", such as "int **", returning a ..._TYPE node.
4002 Set *EXPR, if EXPR not NULL, to any expression to be evaluated
4003 before the type name, and set *EXPR_CONST_OPERANDS, if
4004 EXPR_CONST_OPERANDS not NULL, to indicate whether the type name may
4005 appear in a constant expression. */
4006
4007 tree
4008 groktypename (struct c_type_name *type_name, tree *expr,
4009 bool *expr_const_operands)
4010 {
4011 tree type;
4012 tree attrs = type_name->specs->attrs;
4013
4014 type_name->specs->attrs = NULL_TREE;
4015
4016 type = grokdeclarator (type_name->declarator, type_name->specs, TYPENAME,
4017 false, NULL, &attrs, expr, expr_const_operands,
4018 DEPRECATED_NORMAL);
4019
4020 /* Apply attributes. */
4021 decl_attributes (&type, attrs, 0);
4022
4023 return type;
4024 }
4025
4026 /* Wrapper for decl_attributes that adds some implicit attributes
4027 to VAR_DECLs or FUNCTION_DECLs. */
4028
4029 static tree
4030 c_decl_attributes (tree *node, tree attributes, int flags)
4031 {
4032 /* Add implicit "omp declare target" attribute if requested. */
4033 if (current_omp_declare_target_attribute
4034 && ((TREE_CODE (*node) == VAR_DECL && TREE_STATIC (*node))
4035 || TREE_CODE (*node) == FUNCTION_DECL))
4036 {
4037 if (TREE_CODE (*node) == VAR_DECL
4038 && ((DECL_CONTEXT (*node)
4039 && TREE_CODE (DECL_CONTEXT (*node)) == FUNCTION_DECL)
4040 || (current_function_decl && !DECL_EXTERNAL (*node))))
4041 error ("%q+D in block scope inside of declare target directive",
4042 *node);
4043 else if (TREE_CODE (*node) == VAR_DECL
4044 && !lang_hooks.types.omp_mappable_type (TREE_TYPE (*node)))
4045 error ("%q+D in declare target directive does not have mappable type",
4046 *node);
4047 else
4048 attributes = tree_cons (get_identifier ("omp declare target"),
4049 NULL_TREE, attributes);
4050 }
4051 return decl_attributes (node, attributes, flags);
4052 }
4053
4054
4055 /* Decode a declarator in an ordinary declaration or data definition.
4056 This is called as soon as the type information and variable name
4057 have been parsed, before parsing the initializer if any.
4058 Here we create the ..._DECL node, fill in its type,
4059 and put it on the list of decls for the current context.
4060 The ..._DECL node is returned as the value.
4061
4062 Exception: for arrays where the length is not specified,
4063 the type is left null, to be filled in by `finish_decl'.
4064
4065 Function definitions do not come here; they go to start_function
4066 instead. However, external and forward declarations of functions
4067 do go through here. Structure field declarations are done by
4068 grokfield and not through here. */
4069
4070 tree
4071 start_decl (struct c_declarator *declarator, struct c_declspecs *declspecs,
4072 bool initialized, tree attributes)
4073 {
4074 tree decl;
4075 tree tem;
4076 tree expr = NULL_TREE;
4077 enum deprecated_states deprecated_state = DEPRECATED_NORMAL;
4078
4079 /* An object declared as __attribute__((deprecated)) suppresses
4080 warnings of uses of other deprecated items. */
4081 if (lookup_attribute ("deprecated", attributes))
4082 deprecated_state = DEPRECATED_SUPPRESS;
4083
4084 decl = grokdeclarator (declarator, declspecs,
4085 NORMAL, initialized, NULL, &attributes, &expr, NULL,
4086 deprecated_state);
4087 if (!decl)
4088 return 0;
4089
4090 if (expr)
4091 add_stmt (fold_convert (void_type_node, expr));
4092
4093 if (TREE_CODE (decl) != FUNCTION_DECL && MAIN_NAME_P (DECL_NAME (decl)))
4094 warning (OPT_Wmain, "%q+D is usually a function", decl);
4095
4096 if (initialized)
4097 /* Is it valid for this decl to have an initializer at all?
4098 If not, set INITIALIZED to zero, which will indirectly
4099 tell 'finish_decl' to ignore the initializer once it is parsed. */
4100 switch (TREE_CODE (decl))
4101 {
4102 case TYPE_DECL:
4103 error ("typedef %qD is initialized (use __typeof__ instead)", decl);
4104 initialized = 0;
4105 break;
4106
4107 case FUNCTION_DECL:
4108 error ("function %qD is initialized like a variable", decl);
4109 initialized = 0;
4110 break;
4111
4112 case PARM_DECL:
4113 /* DECL_INITIAL in a PARM_DECL is really DECL_ARG_TYPE. */
4114 error ("parameter %qD is initialized", decl);
4115 initialized = 0;
4116 break;
4117
4118 default:
4119 /* Don't allow initializations for incomplete types except for
4120 arrays which might be completed by the initialization. */
4121
4122 /* This can happen if the array size is an undefined macro.
4123 We already gave a warning, so we don't need another one. */
4124 if (TREE_TYPE (decl) == error_mark_node)
4125 initialized = 0;
4126 else if (COMPLETE_TYPE_P (TREE_TYPE (decl)))
4127 {
4128 /* A complete type is ok if size is fixed. */
4129
4130 if (TREE_CODE (TYPE_SIZE (TREE_TYPE (decl))) != INTEGER_CST
4131 || C_DECL_VARIABLE_SIZE (decl))
4132 {
4133 error ("variable-sized object may not be initialized");
4134 initialized = 0;
4135 }
4136 }
4137 else if (TREE_CODE (TREE_TYPE (decl)) != ARRAY_TYPE)
4138 {
4139 error ("variable %qD has initializer but incomplete type", decl);
4140 initialized = 0;
4141 }
4142 else if (C_DECL_VARIABLE_SIZE (decl))
4143 {
4144 /* Although C99 is unclear about whether incomplete arrays
4145 of VLAs themselves count as VLAs, it does not make
4146 sense to permit them to be initialized given that
4147 ordinary VLAs may not be initialized. */
4148 error ("variable-sized object may not be initialized");
4149 initialized = 0;
4150 }
4151 }
4152
4153 if (initialized)
4154 {
4155 if (current_scope == file_scope)
4156 TREE_STATIC (decl) = 1;
4157
4158 /* Tell 'pushdecl' this is an initialized decl
4159 even though we don't yet have the initializer expression.
4160 Also tell 'finish_decl' it may store the real initializer. */
4161 DECL_INITIAL (decl) = error_mark_node;
4162 }
4163
4164 /* If this is a function declaration, write a record describing it to the
4165 prototypes file (if requested). */
4166
4167 if (TREE_CODE (decl) == FUNCTION_DECL)
4168 gen_aux_info_record (decl, 0, 0, prototype_p (TREE_TYPE (decl)));
4169
4170 /* ANSI specifies that a tentative definition which is not merged with
4171 a non-tentative definition behaves exactly like a definition with an
4172 initializer equal to zero. (Section 3.7.2)
4173
4174 -fno-common gives strict ANSI behavior, though this tends to break
4175 a large body of code that grew up without this rule.
4176
4177 Thread-local variables are never common, since there's no entrenched
4178 body of code to break, and it allows more efficient variable references
4179 in the presence of dynamic linking. */
4180
4181 if (TREE_CODE (decl) == VAR_DECL
4182 && !initialized
4183 && TREE_PUBLIC (decl)
4184 && !DECL_THREAD_LOCAL_P (decl)
4185 && !flag_no_common)
4186 DECL_COMMON (decl) = 1;
4187
4188 /* Set attributes here so if duplicate decl, will have proper attributes. */
4189 c_decl_attributes (&decl, attributes, 0);
4190
4191 /* Handle gnu_inline attribute. */
4192 if (declspecs->inline_p
4193 && !flag_gnu89_inline
4194 && TREE_CODE (decl) == FUNCTION_DECL
4195 && (lookup_attribute ("gnu_inline", DECL_ATTRIBUTES (decl))
4196 || current_function_decl))
4197 {
4198 if (declspecs->storage_class == csc_auto && current_scope != file_scope)
4199 ;
4200 else if (declspecs->storage_class != csc_static)
4201 DECL_EXTERNAL (decl) = !DECL_EXTERNAL (decl);
4202 }
4203
4204 if (TREE_CODE (decl) == FUNCTION_DECL
4205 && targetm.calls.promote_prototypes (TREE_TYPE (decl)))
4206 {
4207 struct c_declarator *ce = declarator;
4208
4209 if (ce->kind == cdk_pointer)
4210 ce = declarator->declarator;
4211 if (ce->kind == cdk_function)
4212 {
4213 tree args = ce->u.arg_info->parms;
4214 for (; args; args = DECL_CHAIN (args))
4215 {
4216 tree type = TREE_TYPE (args);
4217 if (type && INTEGRAL_TYPE_P (type)
4218 && TYPE_PRECISION (type) < TYPE_PRECISION (integer_type_node))
4219 DECL_ARG_TYPE (args) = c_type_promotes_to (type);
4220 }
4221 }
4222 }
4223
4224 if (TREE_CODE (decl) == FUNCTION_DECL
4225 && DECL_DECLARED_INLINE_P (decl)
4226 && DECL_UNINLINABLE (decl)
4227 && lookup_attribute ("noinline", DECL_ATTRIBUTES (decl)))
4228 warning (OPT_Wattributes, "inline function %q+D given attribute noinline",
4229 decl);
4230
4231 /* C99 6.7.4p3: An inline definition of a function with external
4232 linkage shall not contain a definition of a modifiable object
4233 with static storage duration... */
4234 if (TREE_CODE (decl) == VAR_DECL
4235 && current_scope != file_scope
4236 && TREE_STATIC (decl)
4237 && !TREE_READONLY (decl)
4238 && DECL_DECLARED_INLINE_P (current_function_decl)
4239 && DECL_EXTERNAL (current_function_decl))
4240 record_inline_static (input_location, current_function_decl,
4241 decl, csi_modifiable);
4242
4243 if (c_dialect_objc ()
4244 && (TREE_CODE (decl) == VAR_DECL
4245 || TREE_CODE (decl) == FUNCTION_DECL))
4246 objc_check_global_decl (decl);
4247
4248 /* Add this decl to the current scope.
4249 TEM may equal DECL or it may be a previous decl of the same name. */
4250 tem = pushdecl (decl);
4251
4252 if (initialized && DECL_EXTERNAL (tem))
4253 {
4254 DECL_EXTERNAL (tem) = 0;
4255 TREE_STATIC (tem) = 1;
4256 }
4257
4258 return tem;
4259 }
4260
4261 /* Subroutine of finish_decl. TYPE is the type of an uninitialized object
4262 DECL or the non-array element type if DECL is an uninitialized array.
4263 If that type has a const member, diagnose this. */
4264
4265 static void
4266 diagnose_uninitialized_cst_member (tree decl, tree type)
4267 {
4268 tree field;
4269 for (field = TYPE_FIELDS (type); field; field = TREE_CHAIN (field))
4270 {
4271 tree field_type;
4272 if (TREE_CODE (field) != FIELD_DECL)
4273 continue;
4274 field_type = strip_array_types (TREE_TYPE (field));
4275
4276 if (TYPE_QUALS (field_type) & TYPE_QUAL_CONST)
4277 {
4278 warning_at (DECL_SOURCE_LOCATION (decl), OPT_Wc___compat,
4279 "uninitialized const member in %qT is invalid in C++",
4280 strip_array_types (TREE_TYPE (decl)));
4281 inform (DECL_SOURCE_LOCATION (field), "%qD should be initialized", field);
4282 }
4283
4284 if (TREE_CODE (field_type) == RECORD_TYPE
4285 || TREE_CODE (field_type) == UNION_TYPE)
4286 diagnose_uninitialized_cst_member (decl, field_type);
4287 }
4288 }
4289
4290 /* Finish processing of a declaration;
4291 install its initial value.
4292 If ORIGTYPE is not NULL_TREE, it is the original type of INIT.
4293 If the length of an array type is not known before,
4294 it must be determined now, from the initial value, or it is an error.
4295
4296 INIT_LOC is the location of the initial value. */
4297
4298 void
4299 finish_decl (tree decl, location_t init_loc, tree init,
4300 tree origtype, tree asmspec_tree)
4301 {
4302 tree type;
4303 bool was_incomplete = (DECL_SIZE (decl) == 0);
4304 const char *asmspec = 0;
4305
4306 /* If a name was specified, get the string. */
4307 if ((TREE_CODE (decl) == FUNCTION_DECL || TREE_CODE (decl) == VAR_DECL)
4308 && DECL_FILE_SCOPE_P (decl))
4309 asmspec_tree = maybe_apply_renaming_pragma (decl, asmspec_tree);
4310 if (asmspec_tree)
4311 asmspec = TREE_STRING_POINTER (asmspec_tree);
4312
4313 if (TREE_CODE (decl) == VAR_DECL
4314 && TREE_STATIC (decl)
4315 && global_bindings_p ())
4316 /* So decl is a global variable. Record the types it uses
4317 so that we can decide later to emit debug info for them. */
4318 record_types_used_by_current_var_decl (decl);
4319
4320 /* If `start_decl' didn't like having an initialization, ignore it now. */
4321 if (init != 0 && DECL_INITIAL (decl) == 0)
4322 init = 0;
4323
4324 /* Don't crash if parm is initialized. */
4325 if (TREE_CODE (decl) == PARM_DECL)
4326 init = 0;
4327
4328 if (init)
4329 store_init_value (init_loc, decl, init, origtype);
4330
4331 if (c_dialect_objc () && (TREE_CODE (decl) == VAR_DECL
4332 || TREE_CODE (decl) == FUNCTION_DECL
4333 || TREE_CODE (decl) == FIELD_DECL))
4334 objc_check_decl (decl);
4335
4336 type = TREE_TYPE (decl);
4337
4338 /* Deduce size of array from initialization, if not already known. */
4339 if (TREE_CODE (type) == ARRAY_TYPE
4340 && TYPE_DOMAIN (type) == 0
4341 && TREE_CODE (decl) != TYPE_DECL)
4342 {
4343 bool do_default
4344 = (TREE_STATIC (decl)
4345 /* Even if pedantic, an external linkage array
4346 may have incomplete type at first. */
4347 ? pedantic && !TREE_PUBLIC (decl)
4348 : !DECL_EXTERNAL (decl));
4349 int failure
4350 = complete_array_type (&TREE_TYPE (decl), DECL_INITIAL (decl),
4351 do_default);
4352
4353 /* Get the completed type made by complete_array_type. */
4354 type = TREE_TYPE (decl);
4355
4356 switch (failure)
4357 {
4358 case 1:
4359 error ("initializer fails to determine size of %q+D", decl);
4360 break;
4361
4362 case 2:
4363 if (do_default)
4364 error ("array size missing in %q+D", decl);
4365 /* If a `static' var's size isn't known,
4366 make it extern as well as static, so it does not get
4367 allocated.
4368 If it is not `static', then do not mark extern;
4369 finish_incomplete_decl will give it a default size
4370 and it will get allocated. */
4371 else if (!pedantic && TREE_STATIC (decl) && !TREE_PUBLIC (decl))
4372 DECL_EXTERNAL (decl) = 1;
4373 break;
4374
4375 case 3:
4376 error ("zero or negative size array %q+D", decl);
4377 break;
4378
4379 case 0:
4380 /* For global variables, update the copy of the type that
4381 exists in the binding. */
4382 if (TREE_PUBLIC (decl))
4383 {
4384 struct c_binding *b_ext = I_SYMBOL_BINDING (DECL_NAME (decl));
4385 while (b_ext && !B_IN_EXTERNAL_SCOPE (b_ext))
4386 b_ext = b_ext->shadowed;
4387 if (b_ext)
4388 {
4389 if (b_ext->u.type && comptypes (b_ext->u.type, type))
4390 b_ext->u.type = composite_type (b_ext->u.type, type);
4391 else
4392 b_ext->u.type = type;
4393 }
4394 }
4395 break;
4396
4397 default:
4398 gcc_unreachable ();
4399 }
4400
4401 if (DECL_INITIAL (decl))
4402 TREE_TYPE (DECL_INITIAL (decl)) = type;
4403
4404 relayout_decl (decl);
4405 }
4406
4407 if (TREE_CODE (decl) == VAR_DECL)
4408 {
4409 if (init && TREE_CODE (init) == CONSTRUCTOR)
4410 add_flexible_array_elts_to_size (decl, init);
4411
4412 if (DECL_SIZE (decl) == 0 && TREE_TYPE (decl) != error_mark_node
4413 && COMPLETE_TYPE_P (TREE_TYPE (decl)))
4414 layout_decl (decl, 0);
4415
4416 if (DECL_SIZE (decl) == 0
4417 /* Don't give an error if we already gave one earlier. */
4418 && TREE_TYPE (decl) != error_mark_node
4419 && (TREE_STATIC (decl)
4420 /* A static variable with an incomplete type
4421 is an error if it is initialized.
4422 Also if it is not file scope.
4423 Otherwise, let it through, but if it is not `extern'
4424 then it may cause an error message later. */
4425 ? (DECL_INITIAL (decl) != 0
4426 || !DECL_FILE_SCOPE_P (decl))
4427 /* An automatic variable with an incomplete type
4428 is an error. */
4429 : !DECL_EXTERNAL (decl)))
4430 {
4431 error ("storage size of %q+D isn%'t known", decl);
4432 TREE_TYPE (decl) = error_mark_node;
4433 }
4434
4435 if ((DECL_EXTERNAL (decl) || TREE_STATIC (decl))
4436 && DECL_SIZE (decl) != 0)
4437 {
4438 if (TREE_CODE (DECL_SIZE (decl)) == INTEGER_CST)
4439 constant_expression_warning (DECL_SIZE (decl));
4440 else
4441 {
4442 error ("storage size of %q+D isn%'t constant", decl);
4443 TREE_TYPE (decl) = error_mark_node;
4444 }
4445 }
4446
4447 if (TREE_USED (type))
4448 {
4449 TREE_USED (decl) = 1;
4450 DECL_READ_P (decl) = 1;
4451 }
4452 }
4453
4454 /* If this is a function and an assembler name is specified, reset DECL_RTL
4455 so we can give it its new name. Also, update builtin_decl if it
4456 was a normal built-in. */
4457 if (TREE_CODE (decl) == FUNCTION_DECL && asmspec)
4458 {
4459 if (DECL_BUILT_IN_CLASS (decl) == BUILT_IN_NORMAL)
4460 set_builtin_user_assembler_name (decl, asmspec);
4461 set_user_assembler_name (decl, asmspec);
4462 }
4463
4464 /* If #pragma weak was used, mark the decl weak now. */
4465 maybe_apply_pragma_weak (decl);
4466
4467 /* Output the assembler code and/or RTL code for variables and functions,
4468 unless the type is an undefined structure or union.
4469 If not, it will get done when the type is completed. */
4470
4471 if (TREE_CODE (decl) == VAR_DECL || TREE_CODE (decl) == FUNCTION_DECL)
4472 {
4473 /* Determine the ELF visibility. */
4474 if (TREE_PUBLIC (decl))
4475 c_determine_visibility (decl);
4476
4477 /* This is a no-op in c-lang.c or something real in objc-act.c. */
4478 if (c_dialect_objc ())
4479 objc_check_decl (decl);
4480
4481 if (asmspec)
4482 {
4483 /* If this is not a static variable, issue a warning.
4484 It doesn't make any sense to give an ASMSPEC for an
4485 ordinary, non-register local variable. Historically,
4486 GCC has accepted -- but ignored -- the ASMSPEC in
4487 this case. */
4488 if (!DECL_FILE_SCOPE_P (decl)
4489 && TREE_CODE (decl) == VAR_DECL
4490 && !C_DECL_REGISTER (decl)
4491 && !TREE_STATIC (decl))
4492 warning (0, "ignoring asm-specifier for non-static local "
4493 "variable %q+D", decl);
4494 else
4495 set_user_assembler_name (decl, asmspec);
4496 }
4497
4498 if (DECL_FILE_SCOPE_P (decl))
4499 {
4500 if (DECL_INITIAL (decl) == NULL_TREE
4501 || DECL_INITIAL (decl) == error_mark_node)
4502 /* Don't output anything
4503 when a tentative file-scope definition is seen.
4504 But at end of compilation, do output code for them. */
4505 DECL_DEFER_OUTPUT (decl) = 1;
4506 if (asmspec && C_DECL_REGISTER (decl))
4507 DECL_HARD_REGISTER (decl) = 1;
4508 rest_of_decl_compilation (decl, true, 0);
4509 }
4510 else
4511 {
4512 /* In conjunction with an ASMSPEC, the `register'
4513 keyword indicates that we should place the variable
4514 in a particular register. */
4515 if (asmspec && C_DECL_REGISTER (decl))
4516 {
4517 DECL_HARD_REGISTER (decl) = 1;
4518 /* This cannot be done for a structure with volatile
4519 fields, on which DECL_REGISTER will have been
4520 reset. */
4521 if (!DECL_REGISTER (decl))
4522 error ("cannot put object with volatile field into register");
4523 }
4524
4525 if (TREE_CODE (decl) != FUNCTION_DECL)
4526 {
4527 /* If we're building a variable sized type, and we might be
4528 reachable other than via the top of the current binding
4529 level, then create a new BIND_EXPR so that we deallocate
4530 the object at the right time. */
4531 /* Note that DECL_SIZE can be null due to errors. */
4532 if (DECL_SIZE (decl)
4533 && !TREE_CONSTANT (DECL_SIZE (decl))
4534 && STATEMENT_LIST_HAS_LABEL (cur_stmt_list))
4535 {
4536 tree bind;
4537 bind = build3 (BIND_EXPR, void_type_node, NULL, NULL, NULL);
4538 TREE_SIDE_EFFECTS (bind) = 1;
4539 add_stmt (bind);
4540 BIND_EXPR_BODY (bind) = push_stmt_list ();
4541 }
4542 add_stmt (build_stmt (DECL_SOURCE_LOCATION (decl),
4543 DECL_EXPR, decl));
4544 }
4545 }
4546
4547
4548 if (!DECL_FILE_SCOPE_P (decl))
4549 {
4550 /* Recompute the RTL of a local array now
4551 if it used to be an incomplete type. */
4552 if (was_incomplete
4553 && !TREE_STATIC (decl) && !DECL_EXTERNAL (decl))
4554 {
4555 /* If we used it already as memory, it must stay in memory. */
4556 TREE_ADDRESSABLE (decl) = TREE_USED (decl);
4557 /* If it's still incomplete now, no init will save it. */
4558 if (DECL_SIZE (decl) == 0)
4559 DECL_INITIAL (decl) = 0;
4560 }
4561 }
4562 }
4563
4564 if (TREE_CODE (decl) == TYPE_DECL)
4565 {
4566 if (!DECL_FILE_SCOPE_P (decl)
4567 && variably_modified_type_p (TREE_TYPE (decl), NULL_TREE))
4568 add_stmt (build_stmt (DECL_SOURCE_LOCATION (decl), DECL_EXPR, decl));
4569
4570 rest_of_decl_compilation (decl, DECL_FILE_SCOPE_P (decl), 0);
4571 }
4572
4573 /* Install a cleanup (aka destructor) if one was given. */
4574 if (TREE_CODE (decl) == VAR_DECL && !TREE_STATIC (decl))
4575 {
4576 tree attr = lookup_attribute ("cleanup", DECL_ATTRIBUTES (decl));
4577 if (attr)
4578 {
4579 tree cleanup_id = TREE_VALUE (TREE_VALUE (attr));
4580 tree cleanup_decl = lookup_name (cleanup_id);
4581 tree cleanup;
4582 vec<tree, va_gc> *v;
4583
4584 /* Build "cleanup(&decl)" for the destructor. */
4585 cleanup = build_unary_op (input_location, ADDR_EXPR, decl, 0);
4586 vec_alloc (v, 1);
4587 v->quick_push (cleanup);
4588 cleanup = c_build_function_call_vec (DECL_SOURCE_LOCATION (decl),
4589 vNULL, cleanup_decl, v, NULL);
4590 vec_free (v);
4591
4592 /* Don't warn about decl unused; the cleanup uses it. */
4593 TREE_USED (decl) = 1;
4594 TREE_USED (cleanup_decl) = 1;
4595 DECL_READ_P (decl) = 1;
4596
4597 push_cleanup (decl, cleanup, false);
4598 }
4599 }
4600
4601 if (warn_cxx_compat
4602 && TREE_CODE (decl) == VAR_DECL
4603 && !DECL_EXTERNAL (decl)
4604 && DECL_INITIAL (decl) == NULL_TREE)
4605 {
4606 type = strip_array_types (type);
4607 if (TREE_READONLY (decl))
4608 warning_at (DECL_SOURCE_LOCATION (decl), OPT_Wc___compat,
4609 "uninitialized const %qD is invalid in C++", decl);
4610 else if ((TREE_CODE (type) == RECORD_TYPE
4611 || TREE_CODE (type) == UNION_TYPE)
4612 && C_TYPE_FIELDS_READONLY (type))
4613 diagnose_uninitialized_cst_member (decl, type);
4614 }
4615
4616 invoke_plugin_callbacks (PLUGIN_FINISH_DECL, decl);
4617 }
4618
4619 /* Given a parsed parameter declaration, decode it into a PARM_DECL.
4620 EXPR is NULL or a pointer to an expression that needs to be
4621 evaluated for the side effects of array size expressions in the
4622 parameters. */
4623
4624 tree
4625 grokparm (const struct c_parm *parm, tree *expr)
4626 {
4627 tree attrs = parm->attrs;
4628 tree decl = grokdeclarator (parm->declarator, parm->specs, PARM, false,
4629 NULL, &attrs, expr, NULL, DEPRECATED_NORMAL);
4630
4631 decl_attributes (&decl, attrs, 0);
4632
4633 return decl;
4634 }
4635
4636 /* Given a parsed parameter declaration, decode it into a PARM_DECL
4637 and push that on the current scope. EXPR is a pointer to an
4638 expression that needs to be evaluated for the side effects of array
4639 size expressions in the parameters. */
4640
4641 void
4642 push_parm_decl (const struct c_parm *parm, tree *expr)
4643 {
4644 tree attrs = parm->attrs;
4645 tree decl;
4646
4647 decl = grokdeclarator (parm->declarator, parm->specs, PARM, false, NULL,
4648 &attrs, expr, NULL, DEPRECATED_NORMAL);
4649 decl_attributes (&decl, attrs, 0);
4650
4651 decl = pushdecl (decl);
4652
4653 finish_decl (decl, input_location, NULL_TREE, NULL_TREE, NULL_TREE);
4654 }
4655
4656 /* Mark all the parameter declarations to date as forward decls.
4657 Also diagnose use of this extension. */
4658
4659 void
4660 mark_forward_parm_decls (void)
4661 {
4662 struct c_binding *b;
4663
4664 if (pedantic && !current_scope->warned_forward_parm_decls)
4665 {
4666 pedwarn (input_location, OPT_Wpedantic,
4667 "ISO C forbids forward parameter declarations");
4668 current_scope->warned_forward_parm_decls = true;
4669 }
4670
4671 for (b = current_scope->bindings; b; b = b->prev)
4672 if (TREE_CODE (b->decl) == PARM_DECL)
4673 TREE_ASM_WRITTEN (b->decl) = 1;
4674 }
4675 \f
4676 /* Build a COMPOUND_LITERAL_EXPR. TYPE is the type given in the compound
4677 literal, which may be an incomplete array type completed by the
4678 initializer; INIT is a CONSTRUCTOR at LOC that initializes the compound
4679 literal. NON_CONST is true if the initializers contain something
4680 that cannot occur in a constant expression. */
4681
4682 tree
4683 build_compound_literal (location_t loc, tree type, tree init, bool non_const)
4684 {
4685 /* We do not use start_decl here because we have a type, not a declarator;
4686 and do not use finish_decl because the decl should be stored inside
4687 the COMPOUND_LITERAL_EXPR rather than added elsewhere as a DECL_EXPR. */
4688 tree decl;
4689 tree complit;
4690 tree stmt;
4691
4692 if (type == error_mark_node
4693 || init == error_mark_node)
4694 return error_mark_node;
4695
4696 decl = build_decl (loc, VAR_DECL, NULL_TREE, type);
4697 DECL_EXTERNAL (decl) = 0;
4698 TREE_PUBLIC (decl) = 0;
4699 TREE_STATIC (decl) = (current_scope == file_scope);
4700 DECL_CONTEXT (decl) = current_function_decl;
4701 TREE_USED (decl) = 1;
4702 DECL_READ_P (decl) = 1;
4703 TREE_TYPE (decl) = type;
4704 TREE_READONLY (decl) = (TYPE_READONLY (type)
4705 || (TREE_CODE (type) == ARRAY_TYPE
4706 && TYPE_READONLY (TREE_TYPE (type))));
4707 store_init_value (loc, decl, init, NULL_TREE);
4708
4709 if (TREE_CODE (type) == ARRAY_TYPE && !COMPLETE_TYPE_P (type))
4710 {
4711 int failure = complete_array_type (&TREE_TYPE (decl),
4712 DECL_INITIAL (decl), true);
4713 /* If complete_array_type returns 3, it means that the
4714 initial value of the compound literal is empty. Allow it. */
4715 gcc_assert (failure == 0 || failure == 3);
4716
4717 type = TREE_TYPE (decl);
4718 TREE_TYPE (DECL_INITIAL (decl)) = type;
4719 }
4720
4721 if (type == error_mark_node || !COMPLETE_TYPE_P (type))
4722 {
4723 c_incomplete_type_error (NULL_TREE, type);
4724 return error_mark_node;
4725 }
4726
4727 stmt = build_stmt (DECL_SOURCE_LOCATION (decl), DECL_EXPR, decl);
4728 complit = build1 (COMPOUND_LITERAL_EXPR, type, stmt);
4729 TREE_SIDE_EFFECTS (complit) = 1;
4730
4731 layout_decl (decl, 0);
4732
4733 if (TREE_STATIC (decl))
4734 {
4735 /* This decl needs a name for the assembler output. */
4736 set_compound_literal_name (decl);
4737 DECL_DEFER_OUTPUT (decl) = 1;
4738 DECL_COMDAT (decl) = 1;
4739 DECL_ARTIFICIAL (decl) = 1;
4740 DECL_IGNORED_P (decl) = 1;
4741 pushdecl (decl);
4742 rest_of_decl_compilation (decl, 1, 0);
4743 }
4744
4745 if (non_const)
4746 {
4747 complit = build2 (C_MAYBE_CONST_EXPR, type, NULL, complit);
4748 C_MAYBE_CONST_EXPR_NON_CONST (complit) = 1;
4749 }
4750
4751 return complit;
4752 }
4753
4754 /* Check the type of a compound literal. Here we just check that it
4755 is valid for C++. */
4756
4757 void
4758 check_compound_literal_type (location_t loc, struct c_type_name *type_name)
4759 {
4760 if (warn_cxx_compat
4761 && (type_name->specs->typespec_kind == ctsk_tagdef
4762 || type_name->specs->typespec_kind == ctsk_tagfirstref))
4763 warning_at (loc, OPT_Wc___compat,
4764 "defining a type in a compound literal is invalid in C++");
4765 }
4766 \f
4767 /* Determine whether TYPE is a structure with a flexible array member,
4768 or a union containing such a structure (possibly recursively). */
4769
4770 static bool
4771 flexible_array_type_p (tree type)
4772 {
4773 tree x;
4774 switch (TREE_CODE (type))
4775 {
4776 case RECORD_TYPE:
4777 x = TYPE_FIELDS (type);
4778 if (x == NULL_TREE)
4779 return false;
4780 while (DECL_CHAIN (x) != NULL_TREE)
4781 x = DECL_CHAIN (x);
4782 if (TREE_CODE (TREE_TYPE (x)) == ARRAY_TYPE
4783 && TYPE_SIZE (TREE_TYPE (x)) == NULL_TREE
4784 && TYPE_DOMAIN (TREE_TYPE (x)) != NULL_TREE
4785 && TYPE_MAX_VALUE (TYPE_DOMAIN (TREE_TYPE (x))) == NULL_TREE)
4786 return true;
4787 return false;
4788 case UNION_TYPE:
4789 for (x = TYPE_FIELDS (type); x != NULL_TREE; x = DECL_CHAIN (x))
4790 {
4791 if (flexible_array_type_p (TREE_TYPE (x)))
4792 return true;
4793 }
4794 return false;
4795 default:
4796 return false;
4797 }
4798 }
4799 \f
4800 /* Performs sanity checks on the TYPE and WIDTH of the bit-field NAME,
4801 replacing with appropriate values if they are invalid. */
4802 static void
4803 check_bitfield_type_and_width (tree *type, tree *width, tree orig_name)
4804 {
4805 tree type_mv;
4806 unsigned int max_width;
4807 unsigned HOST_WIDE_INT w;
4808 const char *name = (orig_name
4809 ? identifier_to_locale (IDENTIFIER_POINTER (orig_name))
4810 : _("<anonymous>"));
4811
4812 /* Detect and ignore out of range field width and process valid
4813 field widths. */
4814 if (!INTEGRAL_TYPE_P (TREE_TYPE (*width)))
4815 {
4816 error ("bit-field %qs width not an integer constant", name);
4817 *width = integer_one_node;
4818 }
4819 else
4820 {
4821 if (TREE_CODE (*width) != INTEGER_CST)
4822 {
4823 *width = c_fully_fold (*width, false, NULL);
4824 if (TREE_CODE (*width) == INTEGER_CST)
4825 pedwarn (input_location, OPT_Wpedantic,
4826 "bit-field %qs width not an integer constant expression",
4827 name);
4828 }
4829 if (TREE_CODE (*width) != INTEGER_CST)
4830 {
4831 error ("bit-field %qs width not an integer constant", name);
4832 *width = integer_one_node;
4833 }
4834 constant_expression_warning (*width);
4835 if (tree_int_cst_sgn (*width) < 0)
4836 {
4837 error ("negative width in bit-field %qs", name);
4838 *width = integer_one_node;
4839 }
4840 else if (integer_zerop (*width) && orig_name)
4841 {
4842 error ("zero width for bit-field %qs", name);
4843 *width = integer_one_node;
4844 }
4845 }
4846
4847 /* Detect invalid bit-field type. */
4848 if (TREE_CODE (*type) != INTEGER_TYPE
4849 && TREE_CODE (*type) != BOOLEAN_TYPE
4850 && TREE_CODE (*type) != ENUMERAL_TYPE)
4851 {
4852 error ("bit-field %qs has invalid type", name);
4853 *type = unsigned_type_node;
4854 }
4855
4856 type_mv = TYPE_MAIN_VARIANT (*type);
4857 if (!in_system_header_at (input_location)
4858 && type_mv != integer_type_node
4859 && type_mv != unsigned_type_node
4860 && type_mv != boolean_type_node
4861 && !flag_isoc99)
4862 pedwarn (input_location, OPT_Wpedantic,
4863 "type of bit-field %qs is a GCC extension", name);
4864
4865 max_width = TYPE_PRECISION (*type);
4866
4867 if (0 < compare_tree_int (*width, max_width))
4868 {
4869 error ("width of %qs exceeds its type", name);
4870 w = max_width;
4871 *width = build_int_cst (integer_type_node, w);
4872 }
4873 else
4874 w = tree_to_uhwi (*width);
4875
4876 if (TREE_CODE (*type) == ENUMERAL_TYPE)
4877 {
4878 struct lang_type *lt = TYPE_LANG_SPECIFIC (*type);
4879 if (!lt
4880 || w < tree_int_cst_min_precision (lt->enum_min, TYPE_SIGN (*type))
4881 || w < tree_int_cst_min_precision (lt->enum_max, TYPE_SIGN (*type)))
4882 warning (0, "%qs is narrower than values of its type", name);
4883 }
4884 }
4885
4886 \f
4887
4888 /* Print warning about variable length array if necessary. */
4889
4890 static void
4891 warn_variable_length_array (tree name, tree size)
4892 {
4893 int const_size = TREE_CONSTANT (size);
4894
4895 if (!flag_isoc99 && pedantic && warn_vla != 0)
4896 {
4897 if (const_size)
4898 {
4899 if (name)
4900 pedwarn (input_location, OPT_Wvla,
4901 "ISO C90 forbids array %qE whose size "
4902 "can%'t be evaluated",
4903 name);
4904 else
4905 pedwarn (input_location, OPT_Wvla, "ISO C90 forbids array whose size "
4906 "can%'t be evaluated");
4907 }
4908 else
4909 {
4910 if (name)
4911 pedwarn (input_location, OPT_Wvla,
4912 "ISO C90 forbids variable length array %qE",
4913 name);
4914 else
4915 pedwarn (input_location, OPT_Wvla, "ISO C90 forbids variable length array");
4916 }
4917 }
4918 else if (warn_vla > 0)
4919 {
4920 if (const_size)
4921 {
4922 if (name)
4923 warning (OPT_Wvla,
4924 "the size of array %qE can"
4925 "%'t be evaluated", name);
4926 else
4927 warning (OPT_Wvla,
4928 "the size of array can %'t be evaluated");
4929 }
4930 else
4931 {
4932 if (name)
4933 warning (OPT_Wvla,
4934 "variable length array %qE is used",
4935 name);
4936 else
4937 warning (OPT_Wvla,
4938 "variable length array is used");
4939 }
4940 }
4941 }
4942
4943 /* Given declspecs and a declarator,
4944 determine the name and type of the object declared
4945 and construct a ..._DECL node for it.
4946 (In one case we can return a ..._TYPE node instead.
4947 For invalid input we sometimes return 0.)
4948
4949 DECLSPECS is a c_declspecs structure for the declaration specifiers.
4950
4951 DECL_CONTEXT says which syntactic context this declaration is in:
4952 NORMAL for most contexts. Make a VAR_DECL or FUNCTION_DECL or TYPE_DECL.
4953 FUNCDEF for a function definition. Like NORMAL but a few different
4954 error messages in each case. Return value may be zero meaning
4955 this definition is too screwy to try to parse.
4956 PARM for a parameter declaration (either within a function prototype
4957 or before a function body). Make a PARM_DECL, or return void_type_node.
4958 TYPENAME if for a typename (in a cast or sizeof).
4959 Don't make a DECL node; just return the ..._TYPE node.
4960 FIELD for a struct or union field; make a FIELD_DECL.
4961 INITIALIZED is true if the decl has an initializer.
4962 WIDTH is non-NULL for bit-fields, and is a pointer to an INTEGER_CST node
4963 representing the width of the bit-field.
4964 DECL_ATTRS points to the list of attributes that should be added to this
4965 decl. Any nested attributes that belong on the decl itself will be
4966 added to this list.
4967 If EXPR is not NULL, any expressions that need to be evaluated as
4968 part of evaluating variably modified types will be stored in *EXPR.
4969 If EXPR_CONST_OPERANDS is not NULL, *EXPR_CONST_OPERANDS will be
4970 set to indicate whether operands in *EXPR can be used in constant
4971 expressions.
4972 DEPRECATED_STATE is a deprecated_states value indicating whether
4973 deprecation warnings should be suppressed.
4974
4975 In the TYPENAME case, DECLARATOR is really an absolute declarator.
4976 It may also be so in the PARM case, for a prototype where the
4977 argument type is specified but not the name.
4978
4979 This function is where the complicated C meanings of `static'
4980 and `extern' are interpreted. */
4981
4982 static tree
4983 grokdeclarator (const struct c_declarator *declarator,
4984 struct c_declspecs *declspecs,
4985 enum decl_context decl_context, bool initialized, tree *width,
4986 tree *decl_attrs, tree *expr, bool *expr_const_operands,
4987 enum deprecated_states deprecated_state)
4988 {
4989 tree type = declspecs->type;
4990 bool threadp = declspecs->thread_p;
4991 enum c_storage_class storage_class = declspecs->storage_class;
4992 int constp;
4993 int restrictp;
4994 int volatilep;
4995 int atomicp;
4996 int type_quals = TYPE_UNQUALIFIED;
4997 tree name = NULL_TREE;
4998 bool funcdef_flag = false;
4999 bool funcdef_syntax = false;
5000 bool size_varies = false;
5001 tree decl_attr = declspecs->decl_attr;
5002 int array_ptr_quals = TYPE_UNQUALIFIED;
5003 tree array_ptr_attrs = NULL_TREE;
5004 int array_parm_static = 0;
5005 bool array_parm_vla_unspec_p = false;
5006 tree returned_attrs = NULL_TREE;
5007 bool bitfield = width != NULL;
5008 tree element_type;
5009 struct c_arg_info *arg_info = 0;
5010 addr_space_t as1, as2, address_space;
5011 location_t loc = UNKNOWN_LOCATION;
5012 const char *errmsg;
5013 tree expr_dummy;
5014 bool expr_const_operands_dummy;
5015 enum c_declarator_kind first_non_attr_kind;
5016 unsigned int alignas_align = 0;
5017
5018 if (TREE_CODE (type) == ERROR_MARK)
5019 return error_mark_node;
5020 if (expr == NULL)
5021 expr = &expr_dummy;
5022 if (expr_const_operands == NULL)
5023 expr_const_operands = &expr_const_operands_dummy;
5024
5025 *expr = declspecs->expr;
5026 *expr_const_operands = declspecs->expr_const_operands;
5027
5028 if (decl_context == FUNCDEF)
5029 funcdef_flag = true, decl_context = NORMAL;
5030
5031 /* Look inside a declarator for the name being declared
5032 and get it as an IDENTIFIER_NODE, for an error message. */
5033 {
5034 const struct c_declarator *decl = declarator;
5035
5036 first_non_attr_kind = cdk_attrs;
5037 while (decl)
5038 switch (decl->kind)
5039 {
5040 case cdk_array:
5041 loc = decl->id_loc;
5042 /* FALL THRU. */
5043
5044 case cdk_function:
5045 case cdk_pointer:
5046 funcdef_syntax = (decl->kind == cdk_function);
5047 decl = decl->declarator;
5048 if (first_non_attr_kind == cdk_attrs)
5049 first_non_attr_kind = decl->kind;
5050 break;
5051
5052 case cdk_attrs:
5053 decl = decl->declarator;
5054 break;
5055
5056 case cdk_id:
5057 loc = decl->id_loc;
5058 if (decl->u.id)
5059 name = decl->u.id;
5060 if (first_non_attr_kind == cdk_attrs)
5061 first_non_attr_kind = decl->kind;
5062 decl = 0;
5063 break;
5064
5065 default:
5066 gcc_unreachable ();
5067 }
5068 if (name == 0)
5069 {
5070 gcc_assert (decl_context == PARM
5071 || decl_context == TYPENAME
5072 || (decl_context == FIELD
5073 && declarator->kind == cdk_id));
5074 gcc_assert (!initialized);
5075 }
5076 }
5077
5078 /* A function definition's declarator must have the form of
5079 a function declarator. */
5080
5081 if (funcdef_flag && !funcdef_syntax)
5082 return 0;
5083
5084 /* If this looks like a function definition, make it one,
5085 even if it occurs where parms are expected.
5086 Then store_parm_decls will reject it and not use it as a parm. */
5087 if (decl_context == NORMAL && !funcdef_flag && current_scope->parm_flag)
5088 decl_context = PARM;
5089
5090 if (declspecs->deprecated_p && deprecated_state != DEPRECATED_SUPPRESS)
5091 warn_deprecated_use (declspecs->type, declspecs->decl_attr);
5092
5093 if ((decl_context == NORMAL || decl_context == FIELD)
5094 && current_scope == file_scope
5095 && variably_modified_type_p (type, NULL_TREE))
5096 {
5097 if (name)
5098 error_at (loc, "variably modified %qE at file scope", name);
5099 else
5100 error_at (loc, "variably modified field at file scope");
5101 type = integer_type_node;
5102 }
5103
5104 size_varies = C_TYPE_VARIABLE_SIZE (type) != 0;
5105
5106 /* Diagnose defaulting to "int". */
5107
5108 if (declspecs->default_int_p && !in_system_header_at (input_location))
5109 {
5110 /* Issue a warning if this is an ISO C 99 program or if
5111 -Wreturn-type and this is a function, or if -Wimplicit;
5112 prefer the former warning since it is more explicit. */
5113 if ((warn_implicit_int || warn_return_type || flag_isoc99)
5114 && funcdef_flag)
5115 warn_about_return_type = 1;
5116 else
5117 {
5118 if (name)
5119 pedwarn_c99 (loc, flag_isoc99 ? 0 : OPT_Wimplicit_int,
5120 "type defaults to %<int%> in declaration of %qE",
5121 name);
5122 else
5123 pedwarn_c99 (input_location, flag_isoc99 ? 0 : OPT_Wimplicit_int,
5124 "type defaults to %<int%> in type name");
5125 }
5126 }
5127
5128 /* Adjust the type if a bit-field is being declared,
5129 -funsigned-bitfields applied and the type is not explicitly
5130 "signed". */
5131 if (bitfield && !flag_signed_bitfields && !declspecs->explicit_signed_p
5132 && TREE_CODE (type) == INTEGER_TYPE)
5133 type = unsigned_type_for (type);
5134
5135 /* Figure out the type qualifiers for the declaration. There are
5136 two ways a declaration can become qualified. One is something
5137 like `const int i' where the `const' is explicit. Another is
5138 something like `typedef const int CI; CI i' where the type of the
5139 declaration contains the `const'. A third possibility is that
5140 there is a type qualifier on the element type of a typedefed
5141 array type, in which case we should extract that qualifier so
5142 that c_apply_type_quals_to_decl receives the full list of
5143 qualifiers to work with (C90 is not entirely clear about whether
5144 duplicate qualifiers should be diagnosed in this case, but it
5145 seems most appropriate to do so). */
5146 element_type = strip_array_types (type);
5147 constp = declspecs->const_p + TYPE_READONLY (element_type);
5148 restrictp = declspecs->restrict_p + TYPE_RESTRICT (element_type);
5149 volatilep = declspecs->volatile_p + TYPE_VOLATILE (element_type);
5150 atomicp = declspecs->atomic_p + TYPE_ATOMIC (element_type);
5151 as1 = declspecs->address_space;
5152 as2 = TYPE_ADDR_SPACE (element_type);
5153 address_space = ADDR_SPACE_GENERIC_P (as1)? as2 : as1;
5154
5155 if (pedantic && !flag_isoc99)
5156 {
5157 if (constp > 1)
5158 pedwarn (loc, OPT_Wpedantic, "duplicate %<const%>");
5159 if (restrictp > 1)
5160 pedwarn (loc, OPT_Wpedantic, "duplicate %<restrict%>");
5161 if (volatilep > 1)
5162 pedwarn (loc, OPT_Wpedantic, "duplicate %<volatile%>");
5163 if (atomicp > 1)
5164 pedwarn (loc, OPT_Wpedantic, "duplicate %<_Atomic%>");
5165
5166 }
5167
5168 if (!ADDR_SPACE_GENERIC_P (as1) && !ADDR_SPACE_GENERIC_P (as2) && as1 != as2)
5169 error_at (loc, "conflicting named address spaces (%s vs %s)",
5170 c_addr_space_name (as1), c_addr_space_name (as2));
5171
5172 if ((TREE_CODE (type) == ARRAY_TYPE
5173 || first_non_attr_kind == cdk_array)
5174 && TYPE_QUALS (element_type))
5175 type = TYPE_MAIN_VARIANT (type);
5176 type_quals = ((constp ? TYPE_QUAL_CONST : 0)
5177 | (restrictp ? TYPE_QUAL_RESTRICT : 0)
5178 | (volatilep ? TYPE_QUAL_VOLATILE : 0)
5179 | (atomicp ? TYPE_QUAL_ATOMIC : 0)
5180 | ENCODE_QUAL_ADDR_SPACE (address_space));
5181
5182 /* Applying the _Atomic qualifier to an array type (through the use
5183 of typedefs or typeof) must be detected here. If the qualifier
5184 is introduced later, any appearance of applying it to an array is
5185 actually applying it to an element of that array. */
5186 if (atomicp && TREE_CODE (type) == ARRAY_TYPE)
5187 error_at (loc, "%<_Atomic%>-qualified array type");
5188
5189 /* Warn about storage classes that are invalid for certain
5190 kinds of declarations (parameters, typenames, etc.). */
5191
5192 if (funcdef_flag
5193 && (threadp
5194 || storage_class == csc_auto
5195 || storage_class == csc_register
5196 || storage_class == csc_typedef))
5197 {
5198 if (storage_class == csc_auto)
5199 pedwarn (loc,
5200 (current_scope == file_scope) ? 0 : OPT_Wpedantic,
5201 "function definition declared %<auto%>");
5202 if (storage_class == csc_register)
5203 error_at (loc, "function definition declared %<register%>");
5204 if (storage_class == csc_typedef)
5205 error_at (loc, "function definition declared %<typedef%>");
5206 if (threadp)
5207 error_at (loc, "function definition declared %qs",
5208 declspecs->thread_gnu_p ? "__thread" : "_Thread_local");
5209 threadp = false;
5210 if (storage_class == csc_auto
5211 || storage_class == csc_register
5212 || storage_class == csc_typedef)
5213 storage_class = csc_none;
5214 }
5215 else if (decl_context != NORMAL && (storage_class != csc_none || threadp))
5216 {
5217 if (decl_context == PARM && storage_class == csc_register)
5218 ;
5219 else
5220 {
5221 switch (decl_context)
5222 {
5223 case FIELD:
5224 if (name)
5225 error_at (loc, "storage class specified for structure "
5226 "field %qE", name);
5227 else
5228 error_at (loc, "storage class specified for structure field");
5229 break;
5230 case PARM:
5231 if (name)
5232 error_at (loc, "storage class specified for parameter %qE",
5233 name);
5234 else
5235 error_at (loc, "storage class specified for unnamed parameter");
5236 break;
5237 default:
5238 error_at (loc, "storage class specified for typename");
5239 break;
5240 }
5241 storage_class = csc_none;
5242 threadp = false;
5243 }
5244 }
5245 else if (storage_class == csc_extern
5246 && initialized
5247 && !funcdef_flag)
5248 {
5249 /* 'extern' with initialization is invalid if not at file scope. */
5250 if (current_scope == file_scope)
5251 {
5252 /* It is fine to have 'extern const' when compiling at C
5253 and C++ intersection. */
5254 if (!(warn_cxx_compat && constp))
5255 warning_at (loc, 0, "%qE initialized and declared %<extern%>",
5256 name);
5257 }
5258 else
5259 error_at (loc, "%qE has both %<extern%> and initializer", name);
5260 }
5261 else if (current_scope == file_scope)
5262 {
5263 if (storage_class == csc_auto)
5264 error_at (loc, "file-scope declaration of %qE specifies %<auto%>",
5265 name);
5266 if (pedantic && storage_class == csc_register)
5267 pedwarn (input_location, OPT_Wpedantic,
5268 "file-scope declaration of %qE specifies %<register%>", name);
5269 }
5270 else
5271 {
5272 if (storage_class == csc_extern && funcdef_flag)
5273 error_at (loc, "nested function %qE declared %<extern%>", name);
5274 else if (threadp && storage_class == csc_none)
5275 {
5276 error_at (loc, "function-scope %qE implicitly auto and declared "
5277 "%qs", name,
5278 declspecs->thread_gnu_p ? "__thread" : "_Thread_local");
5279 threadp = false;
5280 }
5281 }
5282
5283 /* Now figure out the structure of the declarator proper.
5284 Descend through it, creating more complex types, until we reach
5285 the declared identifier (or NULL_TREE, in an absolute declarator).
5286 At each stage we maintain an unqualified version of the type
5287 together with any qualifiers that should be applied to it with
5288 c_build_qualified_type; this way, array types including
5289 multidimensional array types are first built up in unqualified
5290 form and then the qualified form is created with
5291 TYPE_MAIN_VARIANT pointing to the unqualified form. */
5292
5293 while (declarator && declarator->kind != cdk_id)
5294 {
5295 if (type == error_mark_node)
5296 {
5297 declarator = declarator->declarator;
5298 continue;
5299 }
5300
5301 /* Each level of DECLARATOR is either a cdk_array (for ...[..]),
5302 a cdk_pointer (for *...),
5303 a cdk_function (for ...(...)),
5304 a cdk_attrs (for nested attributes),
5305 or a cdk_id (for the name being declared
5306 or the place in an absolute declarator
5307 where the name was omitted).
5308 For the last case, we have just exited the loop.
5309
5310 At this point, TYPE is the type of elements of an array,
5311 or for a function to return, or for a pointer to point to.
5312 After this sequence of ifs, TYPE is the type of the
5313 array or function or pointer, and DECLARATOR has had its
5314 outermost layer removed. */
5315
5316 if (array_ptr_quals != TYPE_UNQUALIFIED
5317 || array_ptr_attrs != NULL_TREE
5318 || array_parm_static)
5319 {
5320 /* Only the innermost declarator (making a parameter be of
5321 array type which is converted to pointer type)
5322 may have static or type qualifiers. */
5323 error_at (loc, "static or type qualifiers in non-parameter array declarator");
5324 array_ptr_quals = TYPE_UNQUALIFIED;
5325 array_ptr_attrs = NULL_TREE;
5326 array_parm_static = 0;
5327 }
5328
5329 switch (declarator->kind)
5330 {
5331 case cdk_attrs:
5332 {
5333 /* A declarator with embedded attributes. */
5334 tree attrs = declarator->u.attrs;
5335 const struct c_declarator *inner_decl;
5336 int attr_flags = 0;
5337 declarator = declarator->declarator;
5338 inner_decl = declarator;
5339 while (inner_decl->kind == cdk_attrs)
5340 inner_decl = inner_decl->declarator;
5341 if (inner_decl->kind == cdk_id)
5342 attr_flags |= (int) ATTR_FLAG_DECL_NEXT;
5343 else if (inner_decl->kind == cdk_function)
5344 attr_flags |= (int) ATTR_FLAG_FUNCTION_NEXT;
5345 else if (inner_decl->kind == cdk_array)
5346 attr_flags |= (int) ATTR_FLAG_ARRAY_NEXT;
5347 returned_attrs = decl_attributes (&type,
5348 chainon (returned_attrs, attrs),
5349 attr_flags);
5350 break;
5351 }
5352 case cdk_array:
5353 {
5354 tree itype = NULL_TREE;
5355 tree size = declarator->u.array.dimen;
5356 /* The index is a signed object `sizetype' bits wide. */
5357 tree index_type = c_common_signed_type (sizetype);
5358
5359 array_ptr_quals = declarator->u.array.quals;
5360 array_ptr_attrs = declarator->u.array.attrs;
5361 array_parm_static = declarator->u.array.static_p;
5362 array_parm_vla_unspec_p = declarator->u.array.vla_unspec_p;
5363
5364 declarator = declarator->declarator;
5365
5366 /* Check for some types that there cannot be arrays of. */
5367
5368 if (VOID_TYPE_P (type))
5369 {
5370 if (name)
5371 error_at (loc, "declaration of %qE as array of voids", name);
5372 else
5373 error_at (loc, "declaration of type name as array of voids");
5374 type = error_mark_node;
5375 }
5376
5377 if (TREE_CODE (type) == FUNCTION_TYPE)
5378 {
5379 if (name)
5380 error_at (loc, "declaration of %qE as array of functions",
5381 name);
5382 else
5383 error_at (loc, "declaration of type name as array of "
5384 "functions");
5385 type = error_mark_node;
5386 }
5387
5388 if (pedantic && !in_system_header_at (input_location)
5389 && flexible_array_type_p (type))
5390 pedwarn (loc, OPT_Wpedantic,
5391 "invalid use of structure with flexible array member");
5392
5393 if (size == error_mark_node)
5394 type = error_mark_node;
5395
5396 if (type == error_mark_node)
5397 continue;
5398
5399 /* If size was specified, set ITYPE to a range-type for
5400 that size. Otherwise, ITYPE remains null. finish_decl
5401 may figure it out from an initial value. */
5402
5403 if (size)
5404 {
5405 bool size_maybe_const = true;
5406 bool size_int_const = (TREE_CODE (size) == INTEGER_CST
5407 && !TREE_OVERFLOW (size));
5408 bool this_size_varies = false;
5409
5410 /* Strip NON_LVALUE_EXPRs since we aren't using as an
5411 lvalue. */
5412 STRIP_TYPE_NOPS (size);
5413
5414 if (!INTEGRAL_TYPE_P (TREE_TYPE (size)))
5415 {
5416 if (name)
5417 error_at (loc, "size of array %qE has non-integer type",
5418 name);
5419 else
5420 error_at (loc,
5421 "size of unnamed array has non-integer type");
5422 size = integer_one_node;
5423 }
5424
5425 size = c_fully_fold (size, false, &size_maybe_const);
5426
5427 if (pedantic && size_maybe_const && integer_zerop (size))
5428 {
5429 if (name)
5430 pedwarn (loc, OPT_Wpedantic,
5431 "ISO C forbids zero-size array %qE", name);
5432 else
5433 pedwarn (loc, OPT_Wpedantic,
5434 "ISO C forbids zero-size array");
5435 }
5436
5437 if (TREE_CODE (size) == INTEGER_CST && size_maybe_const)
5438 {
5439 constant_expression_warning (size);
5440 if (tree_int_cst_sgn (size) < 0)
5441 {
5442 if (name)
5443 error_at (loc, "size of array %qE is negative", name);
5444 else
5445 error_at (loc, "size of unnamed array is negative");
5446 size = integer_one_node;
5447 }
5448 /* Handle a size folded to an integer constant but
5449 not an integer constant expression. */
5450 if (!size_int_const)
5451 {
5452 /* If this is a file scope declaration of an
5453 ordinary identifier, this is invalid code;
5454 diagnosing it here and not subsequently
5455 treating the type as variable-length avoids
5456 more confusing diagnostics later. */
5457 if ((decl_context == NORMAL || decl_context == FIELD)
5458 && current_scope == file_scope)
5459 pedwarn (input_location, 0,
5460 "variably modified %qE at file scope",
5461 name);
5462 else
5463 this_size_varies = size_varies = true;
5464 warn_variable_length_array (name, size);
5465 }
5466 }
5467 else if ((decl_context == NORMAL || decl_context == FIELD)
5468 && current_scope == file_scope)
5469 {
5470 error_at (loc, "variably modified %qE at file scope", name);
5471 size = integer_one_node;
5472 }
5473 else
5474 {
5475 /* Make sure the array size remains visibly
5476 nonconstant even if it is (eg) a const variable
5477 with known value. */
5478 this_size_varies = size_varies = true;
5479 warn_variable_length_array (name, size);
5480 if (flag_sanitize & SANITIZE_VLA
5481 && decl_context == NORMAL)
5482 {
5483 /* Evaluate the array size only once. */
5484 size = c_save_expr (size);
5485 size = c_fully_fold (size, false, NULL);
5486 size = fold_build2 (COMPOUND_EXPR, TREE_TYPE (size),
5487 ubsan_instrument_vla (loc, size),
5488 size);
5489 }
5490 }
5491
5492 if (integer_zerop (size) && !this_size_varies)
5493 {
5494 /* A zero-length array cannot be represented with
5495 an unsigned index type, which is what we'll
5496 get with build_index_type. Create an
5497 open-ended range instead. */
5498 itype = build_range_type (sizetype, size, NULL_TREE);
5499 }
5500 else
5501 {
5502 /* Arrange for the SAVE_EXPR on the inside of the
5503 MINUS_EXPR, which allows the -1 to get folded
5504 with the +1 that happens when building TYPE_SIZE. */
5505 if (size_varies)
5506 size = save_expr (size);
5507 if (this_size_varies && TREE_CODE (size) == INTEGER_CST)
5508 size = build2 (COMPOUND_EXPR, TREE_TYPE (size),
5509 integer_zero_node, size);
5510
5511 /* Compute the maximum valid index, that is, size
5512 - 1. Do the calculation in index_type, so that
5513 if it is a variable the computations will be
5514 done in the proper mode. */
5515 itype = fold_build2_loc (loc, MINUS_EXPR, index_type,
5516 convert (index_type, size),
5517 convert (index_type,
5518 size_one_node));
5519
5520 /* The above overflows when size does not fit
5521 in index_type.
5522 ??? While a size of INT_MAX+1 technically shouldn't
5523 cause an overflow (because we subtract 1), handling
5524 this case seems like an unnecessary complication. */
5525 if (TREE_CODE (size) == INTEGER_CST
5526 && !int_fits_type_p (size, index_type))
5527 {
5528 if (name)
5529 error_at (loc, "size of array %qE is too large",
5530 name);
5531 else
5532 error_at (loc, "size of unnamed array is too large");
5533 type = error_mark_node;
5534 continue;
5535 }
5536
5537 itype = build_index_type (itype);
5538 }
5539 if (this_size_varies)
5540 {
5541 if (*expr)
5542 *expr = build2 (COMPOUND_EXPR, TREE_TYPE (size),
5543 *expr, size);
5544 else
5545 *expr = size;
5546 *expr_const_operands &= size_maybe_const;
5547 }
5548 }
5549 else if (decl_context == FIELD)
5550 {
5551 bool flexible_array_member = false;
5552 if (array_parm_vla_unspec_p)
5553 /* Field names can in fact have function prototype
5554 scope so [*] is disallowed here through making
5555 the field variably modified, not through being
5556 something other than a declaration with function
5557 prototype scope. */
5558 size_varies = true;
5559 else
5560 {
5561 const struct c_declarator *t = declarator;
5562 while (t->kind == cdk_attrs)
5563 t = t->declarator;
5564 flexible_array_member = (t->kind == cdk_id);
5565 }
5566 if (flexible_array_member
5567 && pedantic && !flag_isoc99
5568 && !in_system_header_at (input_location))
5569 pedwarn (loc, OPT_Wpedantic,
5570 "ISO C90 does not support flexible array members");
5571
5572 /* ISO C99 Flexible array members are effectively
5573 identical to GCC's zero-length array extension. */
5574 if (flexible_array_member || array_parm_vla_unspec_p)
5575 itype = build_range_type (sizetype, size_zero_node,
5576 NULL_TREE);
5577 }
5578 else if (decl_context == PARM)
5579 {
5580 if (array_parm_vla_unspec_p)
5581 {
5582 itype = build_range_type (sizetype, size_zero_node, NULL_TREE);
5583 size_varies = true;
5584 }
5585 }
5586 else if (decl_context == TYPENAME)
5587 {
5588 if (array_parm_vla_unspec_p)
5589 {
5590 /* C99 6.7.5.2p4 */
5591 warning (0, "%<[*]%> not in a declaration");
5592 /* We use this to avoid messing up with incomplete
5593 array types of the same type, that would
5594 otherwise be modified below. */
5595 itype = build_range_type (sizetype, size_zero_node,
5596 NULL_TREE);
5597 size_varies = true;
5598 }
5599 }
5600
5601 /* Complain about arrays of incomplete types. */
5602 if (!COMPLETE_TYPE_P (type))
5603 {
5604 error_at (loc, "array type has incomplete element type");
5605 type = error_mark_node;
5606 }
5607 else
5608 /* When itype is NULL, a shared incomplete array type is
5609 returned for all array of a given type. Elsewhere we
5610 make sure we don't complete that type before copying
5611 it, but here we want to make sure we don't ever
5612 modify the shared type, so we gcc_assert (itype)
5613 below. */
5614 {
5615 addr_space_t as = DECODE_QUAL_ADDR_SPACE (type_quals);
5616 if (!ADDR_SPACE_GENERIC_P (as) && as != TYPE_ADDR_SPACE (type))
5617 type = build_qualified_type (type,
5618 ENCODE_QUAL_ADDR_SPACE (as));
5619
5620 type = build_array_type (type, itype);
5621 }
5622
5623 if (type != error_mark_node)
5624 {
5625 if (size_varies)
5626 {
5627 /* It is ok to modify type here even if itype is
5628 NULL: if size_varies, we're in a
5629 multi-dimensional array and the inner type has
5630 variable size, so the enclosing shared array type
5631 must too. */
5632 if (size && TREE_CODE (size) == INTEGER_CST)
5633 type
5634 = build_distinct_type_copy (TYPE_MAIN_VARIANT (type));
5635 C_TYPE_VARIABLE_SIZE (type) = 1;
5636 }
5637
5638 /* The GCC extension for zero-length arrays differs from
5639 ISO flexible array members in that sizeof yields
5640 zero. */
5641 if (size && integer_zerop (size))
5642 {
5643 gcc_assert (itype);
5644 type = build_distinct_type_copy (TYPE_MAIN_VARIANT (type));
5645 TYPE_SIZE (type) = bitsize_zero_node;
5646 TYPE_SIZE_UNIT (type) = size_zero_node;
5647 SET_TYPE_STRUCTURAL_EQUALITY (type);
5648 }
5649 if (array_parm_vla_unspec_p)
5650 {
5651 gcc_assert (itype);
5652 /* The type is complete. C99 6.7.5.2p4 */
5653 type = build_distinct_type_copy (TYPE_MAIN_VARIANT (type));
5654 TYPE_SIZE (type) = bitsize_zero_node;
5655 TYPE_SIZE_UNIT (type) = size_zero_node;
5656 SET_TYPE_STRUCTURAL_EQUALITY (type);
5657 }
5658 }
5659
5660 if (decl_context != PARM
5661 && (array_ptr_quals != TYPE_UNQUALIFIED
5662 || array_ptr_attrs != NULL_TREE
5663 || array_parm_static))
5664 {
5665 error_at (loc, "static or type qualifiers in non-parameter array declarator");
5666 array_ptr_quals = TYPE_UNQUALIFIED;
5667 array_ptr_attrs = NULL_TREE;
5668 array_parm_static = 0;
5669 }
5670 break;
5671 }
5672 case cdk_function:
5673 {
5674 /* Say it's a definition only for the declarator closest
5675 to the identifier, apart possibly from some
5676 attributes. */
5677 bool really_funcdef = false;
5678 tree arg_types;
5679 if (funcdef_flag)
5680 {
5681 const struct c_declarator *t = declarator->declarator;
5682 while (t->kind == cdk_attrs)
5683 t = t->declarator;
5684 really_funcdef = (t->kind == cdk_id);
5685 }
5686
5687 /* Declaring a function type. Make sure we have a valid
5688 type for the function to return. */
5689 if (type == error_mark_node)
5690 continue;
5691
5692 size_varies = false;
5693
5694 /* Warn about some types functions can't return. */
5695 if (TREE_CODE (type) == FUNCTION_TYPE)
5696 {
5697 if (name)
5698 error_at (loc, "%qE declared as function returning a "
5699 "function", name);
5700 else
5701 error_at (loc, "type name declared as function "
5702 "returning a function");
5703 type = integer_type_node;
5704 }
5705 if (TREE_CODE (type) == ARRAY_TYPE)
5706 {
5707 if (name)
5708 error_at (loc, "%qE declared as function returning an array",
5709 name);
5710 else
5711 error_at (loc, "type name declared as function returning "
5712 "an array");
5713 type = integer_type_node;
5714 }
5715 errmsg = targetm.invalid_return_type (type);
5716 if (errmsg)
5717 {
5718 error (errmsg);
5719 type = integer_type_node;
5720 }
5721
5722 /* Construct the function type and go to the next
5723 inner layer of declarator. */
5724 arg_info = declarator->u.arg_info;
5725 arg_types = grokparms (arg_info, really_funcdef);
5726
5727 /* Type qualifiers before the return type of the function
5728 qualify the return type, not the function type. */
5729 if (type_quals)
5730 {
5731 /* Type qualifiers on a function return type are
5732 normally permitted by the standard but have no
5733 effect, so give a warning at -Wreturn-type.
5734 Qualifiers on a void return type are banned on
5735 function definitions in ISO C; GCC used to used
5736 them for noreturn functions. */
5737 if (VOID_TYPE_P (type) && really_funcdef)
5738 pedwarn (loc, 0,
5739 "function definition has qualified void return type");
5740 else
5741 warning_at (loc, OPT_Wignored_qualifiers,
5742 "type qualifiers ignored on function return type");
5743
5744 type = c_build_qualified_type (type, type_quals);
5745 }
5746 type_quals = TYPE_UNQUALIFIED;
5747
5748 type = build_function_type (type, arg_types);
5749 declarator = declarator->declarator;
5750
5751 /* Set the TYPE_CONTEXTs for each tagged type which is local to
5752 the formal parameter list of this FUNCTION_TYPE to point to
5753 the FUNCTION_TYPE node itself. */
5754 {
5755 c_arg_tag *tag;
5756 unsigned ix;
5757
5758 FOR_EACH_VEC_SAFE_ELT_REVERSE (arg_info->tags, ix, tag)
5759 TYPE_CONTEXT (tag->type) = type;
5760 }
5761 break;
5762 }
5763 case cdk_pointer:
5764 {
5765 /* Merge any constancy or volatility into the target type
5766 for the pointer. */
5767 if ((type_quals & TYPE_QUAL_ATOMIC)
5768 && TREE_CODE (type) == FUNCTION_TYPE)
5769 {
5770 error_at (loc,
5771 "%<_Atomic%>-qualified function type");
5772 type_quals &= ~TYPE_QUAL_ATOMIC;
5773 }
5774 else if (pedantic && TREE_CODE (type) == FUNCTION_TYPE
5775 && type_quals)
5776 pedwarn (loc, OPT_Wpedantic,
5777 "ISO C forbids qualified function types");
5778 if (type_quals)
5779 type = c_build_qualified_type (type, type_quals);
5780 size_varies = false;
5781
5782 /* When the pointed-to type involves components of variable size,
5783 care must be taken to ensure that the size evaluation code is
5784 emitted early enough to dominate all the possible later uses
5785 and late enough for the variables on which it depends to have
5786 been assigned.
5787
5788 This is expected to happen automatically when the pointed-to
5789 type has a name/declaration of it's own, but special attention
5790 is required if the type is anonymous.
5791
5792 We handle the NORMAL and FIELD contexts here by attaching an
5793 artificial TYPE_DECL to such pointed-to type. This forces the
5794 sizes evaluation at a safe point and ensures it is not deferred
5795 until e.g. within a deeper conditional context.
5796
5797 We expect nothing to be needed here for PARM or TYPENAME.
5798 Pushing a TYPE_DECL at this point for TYPENAME would actually
5799 be incorrect, as we might be in the middle of an expression
5800 with side effects on the pointed-to type size "arguments" prior
5801 to the pointer declaration point and the fake TYPE_DECL in the
5802 enclosing context would force the size evaluation prior to the
5803 side effects. */
5804
5805 if (!TYPE_NAME (type)
5806 && (decl_context == NORMAL || decl_context == FIELD)
5807 && variably_modified_type_p (type, NULL_TREE))
5808 {
5809 tree decl = build_decl (loc, TYPE_DECL, NULL_TREE, type);
5810 DECL_ARTIFICIAL (decl) = 1;
5811 pushdecl (decl);
5812 finish_decl (decl, loc, NULL_TREE, NULL_TREE, NULL_TREE);
5813 TYPE_NAME (type) = decl;
5814 }
5815
5816 type = c_build_pointer_type (type);
5817
5818 /* Process type qualifiers (such as const or volatile)
5819 that were given inside the `*'. */
5820 type_quals = declarator->u.pointer_quals;
5821
5822 declarator = declarator->declarator;
5823 break;
5824 }
5825 default:
5826 gcc_unreachable ();
5827 }
5828 }
5829 *decl_attrs = chainon (returned_attrs, *decl_attrs);
5830
5831 /* Now TYPE has the actual type, apart from any qualifiers in
5832 TYPE_QUALS. */
5833
5834 /* Warn about address space used for things other than static memory or
5835 pointers. */
5836 address_space = DECODE_QUAL_ADDR_SPACE (type_quals);
5837 if (!ADDR_SPACE_GENERIC_P (address_space))
5838 {
5839 if (decl_context == NORMAL)
5840 {
5841 switch (storage_class)
5842 {
5843 case csc_auto:
5844 error ("%qs combined with %<auto%> qualifier for %qE",
5845 c_addr_space_name (address_space), name);
5846 break;
5847 case csc_register:
5848 error ("%qs combined with %<register%> qualifier for %qE",
5849 c_addr_space_name (address_space), name);
5850 break;
5851 case csc_none:
5852 if (current_function_scope)
5853 {
5854 error ("%qs specified for auto variable %qE",
5855 c_addr_space_name (address_space), name);
5856 break;
5857 }
5858 break;
5859 case csc_static:
5860 case csc_extern:
5861 case csc_typedef:
5862 break;
5863 default:
5864 gcc_unreachable ();
5865 }
5866 }
5867 else if (decl_context == PARM && TREE_CODE (type) != ARRAY_TYPE)
5868 {
5869 if (name)
5870 error ("%qs specified for parameter %qE",
5871 c_addr_space_name (address_space), name);
5872 else
5873 error ("%qs specified for unnamed parameter",
5874 c_addr_space_name (address_space));
5875 }
5876 else if (decl_context == FIELD)
5877 {
5878 if (name)
5879 error ("%qs specified for structure field %qE",
5880 c_addr_space_name (address_space), name);
5881 else
5882 error ("%qs specified for structure field",
5883 c_addr_space_name (address_space));
5884 }
5885 }
5886
5887 /* Check the type and width of a bit-field. */
5888 if (bitfield)
5889 {
5890 check_bitfield_type_and_width (&type, width, name);
5891 /* C11 makes it implementation-defined (6.7.2.1#5) whether
5892 atomic types are permitted for bit-fields; we have no code to
5893 make bit-field accesses atomic, so disallow them. */
5894 if (type_quals & TYPE_QUAL_ATOMIC)
5895 {
5896 if (name)
5897 error ("bit-field %qE has atomic type", name);
5898 else
5899 error ("bit-field has atomic type");
5900 type_quals &= ~TYPE_QUAL_ATOMIC;
5901 }
5902 }
5903
5904 /* Reject invalid uses of _Alignas. */
5905 if (declspecs->alignas_p)
5906 {
5907 if (storage_class == csc_typedef)
5908 error_at (loc, "alignment specified for typedef %qE", name);
5909 else if (storage_class == csc_register)
5910 error_at (loc, "alignment specified for %<register%> object %qE",
5911 name);
5912 else if (decl_context == PARM)
5913 {
5914 if (name)
5915 error_at (loc, "alignment specified for parameter %qE", name);
5916 else
5917 error_at (loc, "alignment specified for unnamed parameter");
5918 }
5919 else if (bitfield)
5920 {
5921 if (name)
5922 error_at (loc, "alignment specified for bit-field %qE", name);
5923 else
5924 error_at (loc, "alignment specified for unnamed bit-field");
5925 }
5926 else if (TREE_CODE (type) == FUNCTION_TYPE)
5927 error_at (loc, "alignment specified for function %qE", name);
5928 else if (declspecs->align_log != -1)
5929 {
5930 alignas_align = 1U << declspecs->align_log;
5931 if (alignas_align < min_align_of_type (type))
5932 {
5933 if (name)
5934 error_at (loc, "%<_Alignas%> specifiers cannot reduce "
5935 "alignment of %qE", name);
5936 else
5937 error_at (loc, "%<_Alignas%> specifiers cannot reduce "
5938 "alignment of unnamed field");
5939 alignas_align = 0;
5940 }
5941 }
5942 }
5943
5944 /* Did array size calculations overflow or does the array cover more
5945 than half of the address-space? */
5946 if (TREE_CODE (type) == ARRAY_TYPE
5947 && COMPLETE_TYPE_P (type)
5948 && TREE_CODE (TYPE_SIZE_UNIT (type)) == INTEGER_CST
5949 && ! valid_constant_size_p (TYPE_SIZE_UNIT (type)))
5950 {
5951 if (name)
5952 error_at (loc, "size of array %qE is too large", name);
5953 else
5954 error_at (loc, "size of unnamed array is too large");
5955 /* If we proceed with the array type as it is, we'll eventually
5956 crash in tree_to_[su]hwi(). */
5957 type = error_mark_node;
5958 }
5959
5960 /* If this is declaring a typedef name, return a TYPE_DECL. */
5961
5962 if (storage_class == csc_typedef)
5963 {
5964 tree decl;
5965 if ((type_quals & TYPE_QUAL_ATOMIC)
5966 && TREE_CODE (type) == FUNCTION_TYPE)
5967 {
5968 error_at (loc,
5969 "%<_Atomic%>-qualified function type");
5970 type_quals &= ~TYPE_QUAL_ATOMIC;
5971 }
5972 else if (pedantic && TREE_CODE (type) == FUNCTION_TYPE
5973 && type_quals)
5974 pedwarn (loc, OPT_Wpedantic,
5975 "ISO C forbids qualified function types");
5976 if (type_quals)
5977 type = c_build_qualified_type (type, type_quals);
5978 decl = build_decl (declarator->id_loc,
5979 TYPE_DECL, declarator->u.id, type);
5980 if (declspecs->explicit_signed_p)
5981 C_TYPEDEF_EXPLICITLY_SIGNED (decl) = 1;
5982 if (declspecs->inline_p)
5983 pedwarn (loc, 0,"typedef %q+D declared %<inline%>", decl);
5984 if (declspecs->noreturn_p)
5985 pedwarn (loc, 0,"typedef %q+D declared %<_Noreturn%>", decl);
5986
5987 if (warn_cxx_compat && declarator->u.id != NULL_TREE)
5988 {
5989 struct c_binding *b = I_TAG_BINDING (declarator->u.id);
5990
5991 if (b != NULL
5992 && b->decl != NULL_TREE
5993 && (B_IN_CURRENT_SCOPE (b)
5994 || (current_scope == file_scope && B_IN_EXTERNAL_SCOPE (b)))
5995 && TYPE_MAIN_VARIANT (b->decl) != TYPE_MAIN_VARIANT (type))
5996 {
5997 warning_at (declarator->id_loc, OPT_Wc___compat,
5998 ("using %qD as both a typedef and a tag is "
5999 "invalid in C++"),
6000 decl);
6001 if (b->locus != UNKNOWN_LOCATION)
6002 inform (b->locus, "originally defined here");
6003 }
6004 }
6005
6006 return decl;
6007 }
6008
6009 /* If this is a type name (such as, in a cast or sizeof),
6010 compute the type and return it now. */
6011
6012 if (decl_context == TYPENAME)
6013 {
6014 /* Note that the grammar rejects storage classes in typenames
6015 and fields. */
6016 gcc_assert (storage_class == csc_none && !threadp
6017 && !declspecs->inline_p && !declspecs->noreturn_p);
6018 if ((type_quals & TYPE_QUAL_ATOMIC)
6019 && TREE_CODE (type) == FUNCTION_TYPE)
6020 {
6021 error_at (loc,
6022 "%<_Atomic%>-qualified function type");
6023 type_quals &= ~TYPE_QUAL_ATOMIC;
6024 }
6025 else if (pedantic && TREE_CODE (type) == FUNCTION_TYPE
6026 && type_quals)
6027 pedwarn (loc, OPT_Wpedantic,
6028 "ISO C forbids const or volatile function types");
6029 if (type_quals)
6030 type = c_build_qualified_type (type, type_quals);
6031 return type;
6032 }
6033
6034 if (pedantic && decl_context == FIELD
6035 && variably_modified_type_p (type, NULL_TREE))
6036 {
6037 /* C99 6.7.2.1p8 */
6038 pedwarn (loc, OPT_Wpedantic, "a member of a structure or union cannot "
6039 "have a variably modified type");
6040 }
6041
6042 /* Aside from typedefs and type names (handle above),
6043 `void' at top level (not within pointer)
6044 is allowed only in public variables.
6045 We don't complain about parms either, but that is because
6046 a better error message can be made later. */
6047
6048 if (VOID_TYPE_P (type) && decl_context != PARM
6049 && !((decl_context != FIELD && TREE_CODE (type) != FUNCTION_TYPE)
6050 && (storage_class == csc_extern
6051 || (current_scope == file_scope
6052 && !(storage_class == csc_static
6053 || storage_class == csc_register)))))
6054 {
6055 error_at (loc, "variable or field %qE declared void", name);
6056 type = integer_type_node;
6057 }
6058
6059 /* Now create the decl, which may be a VAR_DECL, a PARM_DECL
6060 or a FUNCTION_DECL, depending on DECL_CONTEXT and TYPE. */
6061
6062 {
6063 tree decl;
6064
6065 if (decl_context == PARM)
6066 {
6067 tree promoted_type;
6068
6069 /* A parameter declared as an array of T is really a pointer to T.
6070 One declared as a function is really a pointer to a function. */
6071
6072 if (TREE_CODE (type) == ARRAY_TYPE)
6073 {
6074 /* Transfer const-ness of array into that of type pointed to. */
6075 type = TREE_TYPE (type);
6076 if (type_quals)
6077 type = c_build_qualified_type (type, type_quals);
6078 type = c_build_pointer_type (type);
6079 type_quals = array_ptr_quals;
6080 if (type_quals)
6081 type = c_build_qualified_type (type, type_quals);
6082
6083 /* We don't yet implement attributes in this context. */
6084 if (array_ptr_attrs != NULL_TREE)
6085 warning_at (loc, OPT_Wattributes,
6086 "attributes in parameter array declarator ignored");
6087
6088 size_varies = false;
6089 }
6090 else if (TREE_CODE (type) == FUNCTION_TYPE)
6091 {
6092 if (type_quals & TYPE_QUAL_ATOMIC)
6093 {
6094 error_at (loc,
6095 "%<_Atomic%>-qualified function type");
6096 type_quals &= ~TYPE_QUAL_ATOMIC;
6097 }
6098 else if (type_quals)
6099 pedwarn (loc, OPT_Wpedantic,
6100 "ISO C forbids qualified function types");
6101 if (type_quals)
6102 type = c_build_qualified_type (type, type_quals);
6103 type = c_build_pointer_type (type);
6104 type_quals = TYPE_UNQUALIFIED;
6105 }
6106 else if (type_quals)
6107 type = c_build_qualified_type (type, type_quals);
6108
6109 decl = build_decl (declarator->id_loc,
6110 PARM_DECL, declarator->u.id, type);
6111 if (size_varies)
6112 C_DECL_VARIABLE_SIZE (decl) = 1;
6113
6114 /* Compute the type actually passed in the parmlist,
6115 for the case where there is no prototype.
6116 (For example, shorts and chars are passed as ints.)
6117 When there is a prototype, this is overridden later. */
6118
6119 if (type == error_mark_node)
6120 promoted_type = type;
6121 else
6122 promoted_type = c_type_promotes_to (type);
6123
6124 DECL_ARG_TYPE (decl) = promoted_type;
6125 if (declspecs->inline_p)
6126 pedwarn (loc, 0, "parameter %q+D declared %<inline%>", decl);
6127 if (declspecs->noreturn_p)
6128 pedwarn (loc, 0, "parameter %q+D declared %<_Noreturn%>", decl);
6129 }
6130 else if (decl_context == FIELD)
6131 {
6132 /* Note that the grammar rejects storage classes in typenames
6133 and fields. */
6134 gcc_assert (storage_class == csc_none && !threadp
6135 && !declspecs->inline_p && !declspecs->noreturn_p);
6136
6137 /* Structure field. It may not be a function. */
6138
6139 if (TREE_CODE (type) == FUNCTION_TYPE)
6140 {
6141 error_at (loc, "field %qE declared as a function", name);
6142 type = build_pointer_type (type);
6143 }
6144 else if (TREE_CODE (type) != ERROR_MARK
6145 && !COMPLETE_OR_UNBOUND_ARRAY_TYPE_P (type))
6146 {
6147 if (name)
6148 error_at (loc, "field %qE has incomplete type", name);
6149 else
6150 error_at (loc, "unnamed field has incomplete type");
6151 type = error_mark_node;
6152 }
6153 type = c_build_qualified_type (type, type_quals);
6154 decl = build_decl (declarator->id_loc,
6155 FIELD_DECL, declarator->u.id, type);
6156 DECL_NONADDRESSABLE_P (decl) = bitfield;
6157 if (bitfield && !declarator->u.id)
6158 TREE_NO_WARNING (decl) = 1;
6159
6160 if (size_varies)
6161 C_DECL_VARIABLE_SIZE (decl) = 1;
6162 }
6163 else if (TREE_CODE (type) == FUNCTION_TYPE)
6164 {
6165 if (storage_class == csc_register || threadp)
6166 {
6167 error_at (loc, "invalid storage class for function %qE", name);
6168 }
6169 else if (current_scope != file_scope)
6170 {
6171 /* Function declaration not at file scope. Storage
6172 classes other than `extern' are not allowed, C99
6173 6.7.1p5, and `extern' makes no difference. However,
6174 GCC allows 'auto', perhaps with 'inline', to support
6175 nested functions. */
6176 if (storage_class == csc_auto)
6177 pedwarn (loc, OPT_Wpedantic,
6178 "invalid storage class for function %qE", name);
6179 else if (storage_class == csc_static)
6180 {
6181 error_at (loc, "invalid storage class for function %qE", name);
6182 if (funcdef_flag)
6183 storage_class = declspecs->storage_class = csc_none;
6184 else
6185 return 0;
6186 }
6187 }
6188
6189 decl = build_decl (declarator->id_loc,
6190 FUNCTION_DECL, declarator->u.id, type);
6191 decl = build_decl_attribute_variant (decl, decl_attr);
6192
6193 if (type_quals & TYPE_QUAL_ATOMIC)
6194 {
6195 error_at (loc,
6196 "%<_Atomic%>-qualified function type");
6197 type_quals &= ~TYPE_QUAL_ATOMIC;
6198 }
6199 else if (pedantic && type_quals && !DECL_IN_SYSTEM_HEADER (decl))
6200 pedwarn (loc, OPT_Wpedantic,
6201 "ISO C forbids qualified function types");
6202
6203 /* Every function declaration is an external reference
6204 (DECL_EXTERNAL) except for those which are not at file
6205 scope and are explicitly declared "auto". This is
6206 forbidden by standard C (C99 6.7.1p5) and is interpreted by
6207 GCC to signify a forward declaration of a nested function. */
6208 if (storage_class == csc_auto && current_scope != file_scope)
6209 DECL_EXTERNAL (decl) = 0;
6210 /* In C99, a function which is declared 'inline' with 'extern'
6211 is not an external reference (which is confusing). It
6212 means that the later definition of the function must be output
6213 in this file, C99 6.7.4p6. In GNU C89, a function declared
6214 'extern inline' is an external reference. */
6215 else if (declspecs->inline_p && storage_class != csc_static)
6216 DECL_EXTERNAL (decl) = ((storage_class == csc_extern)
6217 == flag_gnu89_inline);
6218 else
6219 DECL_EXTERNAL (decl) = !initialized;
6220
6221 /* Record absence of global scope for `static' or `auto'. */
6222 TREE_PUBLIC (decl)
6223 = !(storage_class == csc_static || storage_class == csc_auto);
6224
6225 /* For a function definition, record the argument information
6226 block where store_parm_decls will look for it. */
6227 if (funcdef_flag)
6228 current_function_arg_info = arg_info;
6229
6230 if (declspecs->default_int_p)
6231 C_FUNCTION_IMPLICIT_INT (decl) = 1;
6232
6233 /* Record presence of `inline' and `_Noreturn', if it is
6234 reasonable. */
6235 if (flag_hosted && MAIN_NAME_P (declarator->u.id))
6236 {
6237 if (declspecs->inline_p)
6238 pedwarn (loc, 0, "cannot inline function %<main%>");
6239 if (declspecs->noreturn_p)
6240 pedwarn (loc, 0, "%<main%> declared %<_Noreturn%>");
6241 }
6242 else
6243 {
6244 if (declspecs->inline_p)
6245 /* Record that the function is declared `inline'. */
6246 DECL_DECLARED_INLINE_P (decl) = 1;
6247 if (declspecs->noreturn_p)
6248 {
6249 if (!flag_isoc11)
6250 {
6251 if (flag_isoc99)
6252 pedwarn (loc, OPT_Wpedantic,
6253 "ISO C99 does not support %<_Noreturn%>");
6254 else
6255 pedwarn (loc, OPT_Wpedantic,
6256 "ISO C90 does not support %<_Noreturn%>");
6257 }
6258 TREE_THIS_VOLATILE (decl) = 1;
6259 }
6260 }
6261 }
6262 else
6263 {
6264 /* It's a variable. */
6265 /* An uninitialized decl with `extern' is a reference. */
6266 int extern_ref = !initialized && storage_class == csc_extern;
6267
6268 type = c_build_qualified_type (type, type_quals);
6269
6270 /* C99 6.2.2p7: It is invalid (compile-time undefined
6271 behavior) to create an 'extern' declaration for a
6272 variable if there is a global declaration that is
6273 'static' and the global declaration is not visible.
6274 (If the static declaration _is_ currently visible,
6275 the 'extern' declaration is taken to refer to that decl.) */
6276 if (extern_ref && current_scope != file_scope)
6277 {
6278 tree global_decl = identifier_global_value (declarator->u.id);
6279 tree visible_decl = lookup_name (declarator->u.id);
6280
6281 if (global_decl
6282 && global_decl != visible_decl
6283 && TREE_CODE (global_decl) == VAR_DECL
6284 && !TREE_PUBLIC (global_decl))
6285 error_at (loc, "variable previously declared %<static%> "
6286 "redeclared %<extern%>");
6287 }
6288
6289 decl = build_decl (declarator->id_loc,
6290 VAR_DECL, declarator->u.id, type);
6291 if (size_varies)
6292 C_DECL_VARIABLE_SIZE (decl) = 1;
6293
6294 if (declspecs->inline_p)
6295 pedwarn (loc, 0, "variable %q+D declared %<inline%>", decl);
6296 if (declspecs->noreturn_p)
6297 pedwarn (loc, 0, "variable %q+D declared %<_Noreturn%>", decl);
6298
6299 /* At file scope, an initialized extern declaration may follow
6300 a static declaration. In that case, DECL_EXTERNAL will be
6301 reset later in start_decl. */
6302 DECL_EXTERNAL (decl) = (storage_class == csc_extern);
6303
6304 /* At file scope, the presence of a `static' or `register' storage
6305 class specifier, or the absence of all storage class specifiers
6306 makes this declaration a definition (perhaps tentative). Also,
6307 the absence of `static' makes it public. */
6308 if (current_scope == file_scope)
6309 {
6310 TREE_PUBLIC (decl) = storage_class != csc_static;
6311 TREE_STATIC (decl) = !extern_ref;
6312 }
6313 /* Not at file scope, only `static' makes a static definition. */
6314 else
6315 {
6316 TREE_STATIC (decl) = (storage_class == csc_static);
6317 TREE_PUBLIC (decl) = extern_ref;
6318 }
6319
6320 if (threadp)
6321 DECL_TLS_MODEL (decl) = decl_default_tls_model (decl);
6322 }
6323
6324 if ((storage_class == csc_extern
6325 || (storage_class == csc_none
6326 && TREE_CODE (type) == FUNCTION_TYPE
6327 && !funcdef_flag))
6328 && variably_modified_type_p (type, NULL_TREE))
6329 {
6330 /* C99 6.7.5.2p2 */
6331 if (TREE_CODE (type) == FUNCTION_TYPE)
6332 error_at (loc, "non-nested function with variably modified type");
6333 else
6334 error_at (loc, "object with variably modified type must have "
6335 "no linkage");
6336 }
6337
6338 /* Record `register' declaration for warnings on &
6339 and in case doing stupid register allocation. */
6340
6341 if (storage_class == csc_register)
6342 {
6343 C_DECL_REGISTER (decl) = 1;
6344 DECL_REGISTER (decl) = 1;
6345 }
6346
6347 /* Record constancy and volatility. */
6348 c_apply_type_quals_to_decl (type_quals, decl);
6349
6350 /* Apply _Alignas specifiers. */
6351 if (alignas_align)
6352 {
6353 DECL_ALIGN (decl) = alignas_align * BITS_PER_UNIT;
6354 DECL_USER_ALIGN (decl) = 1;
6355 }
6356
6357 /* If a type has volatile components, it should be stored in memory.
6358 Otherwise, the fact that those components are volatile
6359 will be ignored, and would even crash the compiler.
6360 Of course, this only makes sense on VAR,PARM, and RESULT decl's. */
6361 if (C_TYPE_FIELDS_VOLATILE (TREE_TYPE (decl))
6362 && (TREE_CODE (decl) == VAR_DECL || TREE_CODE (decl) == PARM_DECL
6363 || TREE_CODE (decl) == RESULT_DECL))
6364 {
6365 /* It is not an error for a structure with volatile fields to
6366 be declared register, but reset DECL_REGISTER since it
6367 cannot actually go in a register. */
6368 int was_reg = C_DECL_REGISTER (decl);
6369 C_DECL_REGISTER (decl) = 0;
6370 DECL_REGISTER (decl) = 0;
6371 c_mark_addressable (decl);
6372 C_DECL_REGISTER (decl) = was_reg;
6373 }
6374
6375 /* This is the earliest point at which we might know the assembler
6376 name of a variable. Thus, if it's known before this, die horribly. */
6377 gcc_assert (!DECL_ASSEMBLER_NAME_SET_P (decl));
6378
6379 if (warn_cxx_compat
6380 && TREE_CODE (decl) == VAR_DECL
6381 && TREE_PUBLIC (decl)
6382 && TREE_STATIC (decl)
6383 && (TREE_CODE (TREE_TYPE (decl)) == RECORD_TYPE
6384 || TREE_CODE (TREE_TYPE (decl)) == UNION_TYPE
6385 || TREE_CODE (TREE_TYPE (decl)) == ENUMERAL_TYPE)
6386 && TYPE_NAME (TREE_TYPE (decl)) == NULL_TREE)
6387 warning_at (DECL_SOURCE_LOCATION (decl), OPT_Wc___compat,
6388 ("non-local variable %qD with anonymous type is "
6389 "questionable in C++"),
6390 decl);
6391
6392 return decl;
6393 }
6394 }
6395 \f
6396 /* Decode the parameter-list info for a function type or function definition.
6397 The argument is the value returned by `get_parm_info' (or made in c-parse.c
6398 if there is an identifier list instead of a parameter decl list).
6399 These two functions are separate because when a function returns
6400 or receives functions then each is called multiple times but the order
6401 of calls is different. The last call to `grokparms' is always the one
6402 that contains the formal parameter names of a function definition.
6403
6404 Return a list of arg types to use in the FUNCTION_TYPE for this function.
6405
6406 FUNCDEF_FLAG is true for a function definition, false for
6407 a mere declaration. A nonempty identifier-list gets an error message
6408 when FUNCDEF_FLAG is false. */
6409
6410 static tree
6411 grokparms (struct c_arg_info *arg_info, bool funcdef_flag)
6412 {
6413 tree arg_types = arg_info->types;
6414
6415 if (funcdef_flag && arg_info->had_vla_unspec)
6416 {
6417 /* A function definition isn't function prototype scope C99 6.2.1p4. */
6418 /* C99 6.7.5.2p4 */
6419 error ("%<[*]%> not allowed in other than function prototype scope");
6420 }
6421
6422 if (arg_types == 0 && !funcdef_flag
6423 && !in_system_header_at (input_location))
6424 warning (OPT_Wstrict_prototypes,
6425 "function declaration isn%'t a prototype");
6426
6427 if (arg_types == error_mark_node)
6428 return 0; /* don't set TYPE_ARG_TYPES in this case */
6429
6430 else if (arg_types && TREE_CODE (TREE_VALUE (arg_types)) == IDENTIFIER_NODE)
6431 {
6432 if (!funcdef_flag)
6433 {
6434 pedwarn (input_location, 0, "parameter names (without types) in function declaration");
6435 arg_info->parms = NULL_TREE;
6436 }
6437 else
6438 arg_info->parms = arg_info->types;
6439
6440 arg_info->types = 0;
6441 return 0;
6442 }
6443 else
6444 {
6445 tree parm, type, typelt;
6446 unsigned int parmno;
6447 const char *errmsg;
6448
6449 /* If there is a parameter of incomplete type in a definition,
6450 this is an error. In a declaration this is valid, and a
6451 struct or union type may be completed later, before any calls
6452 or definition of the function. In the case where the tag was
6453 first declared within the parameter list, a warning has
6454 already been given. If a parameter has void type, then
6455 however the function cannot be defined or called, so
6456 warn. */
6457
6458 for (parm = arg_info->parms, typelt = arg_types, parmno = 1;
6459 parm;
6460 parm = DECL_CHAIN (parm), typelt = TREE_CHAIN (typelt), parmno++)
6461 {
6462 type = TREE_VALUE (typelt);
6463 if (type == error_mark_node)
6464 continue;
6465
6466 if (!COMPLETE_TYPE_P (type))
6467 {
6468 if (funcdef_flag)
6469 {
6470 if (DECL_NAME (parm))
6471 error_at (input_location,
6472 "parameter %u (%q+D) has incomplete type",
6473 parmno, parm);
6474 else
6475 error_at (DECL_SOURCE_LOCATION (parm),
6476 "parameter %u has incomplete type",
6477 parmno);
6478
6479 TREE_VALUE (typelt) = error_mark_node;
6480 TREE_TYPE (parm) = error_mark_node;
6481 arg_types = NULL_TREE;
6482 }
6483 else if (VOID_TYPE_P (type))
6484 {
6485 if (DECL_NAME (parm))
6486 warning_at (input_location, 0,
6487 "parameter %u (%q+D) has void type",
6488 parmno, parm);
6489 else
6490 warning_at (DECL_SOURCE_LOCATION (parm), 0,
6491 "parameter %u has void type",
6492 parmno);
6493 }
6494 }
6495
6496 errmsg = targetm.invalid_parameter_type (type);
6497 if (errmsg)
6498 {
6499 error (errmsg);
6500 TREE_VALUE (typelt) = error_mark_node;
6501 TREE_TYPE (parm) = error_mark_node;
6502 arg_types = NULL_TREE;
6503 }
6504
6505 if (DECL_NAME (parm) && TREE_USED (parm))
6506 warn_if_shadowing (parm);
6507 }
6508 return arg_types;
6509 }
6510 }
6511
6512 /* Allocate and initialize a c_arg_info structure from the parser's
6513 obstack. */
6514
6515 struct c_arg_info *
6516 build_arg_info (void)
6517 {
6518 struct c_arg_info *ret = XOBNEW (&parser_obstack, struct c_arg_info);
6519 ret->parms = NULL_TREE;
6520 ret->tags = NULL;
6521 ret->types = NULL_TREE;
6522 ret->others = NULL_TREE;
6523 ret->pending_sizes = NULL;
6524 ret->had_vla_unspec = 0;
6525 return ret;
6526 }
6527
6528 /* Take apart the current scope and return a c_arg_info structure with
6529 info on a parameter list just parsed.
6530
6531 This structure is later fed to 'grokparms' and 'store_parm_decls'.
6532
6533 ELLIPSIS being true means the argument list ended in '...' so don't
6534 append a sentinel (void_list_node) to the end of the type-list.
6535
6536 EXPR is NULL or an expression that needs to be evaluated for the
6537 side effects of array size expressions in the parameters. */
6538
6539 struct c_arg_info *
6540 get_parm_info (bool ellipsis, tree expr)
6541 {
6542 struct c_binding *b = current_scope->bindings;
6543 struct c_arg_info *arg_info = build_arg_info ();
6544
6545 tree parms = 0;
6546 vec<c_arg_tag, va_gc> *tags = NULL;
6547 tree types = 0;
6548 tree others = 0;
6549
6550 static bool explained_incomplete_types = false;
6551 bool gave_void_only_once_err = false;
6552
6553 arg_info->had_vla_unspec = current_scope->had_vla_unspec;
6554
6555 /* The bindings in this scope must not get put into a block.
6556 We will take care of deleting the binding nodes. */
6557 current_scope->bindings = 0;
6558
6559 /* This function is only called if there was *something* on the
6560 parameter list. */
6561 gcc_assert (b);
6562
6563 /* A parameter list consisting solely of 'void' indicates that the
6564 function takes no arguments. But if the 'void' is qualified
6565 (by 'const' or 'volatile'), or has a storage class specifier
6566 ('register'), then the behavior is undefined; issue an error.
6567 Typedefs for 'void' are OK (see DR#157). */
6568 if (b->prev == 0 /* one binding */
6569 && TREE_CODE (b->decl) == PARM_DECL /* which is a parameter */
6570 && !DECL_NAME (b->decl) /* anonymous */
6571 && VOID_TYPE_P (TREE_TYPE (b->decl))) /* of void type */
6572 {
6573 if (TYPE_QUALS (TREE_TYPE (b->decl)) != TYPE_UNQUALIFIED
6574 || C_DECL_REGISTER (b->decl))
6575 error ("%<void%> as only parameter may not be qualified");
6576
6577 /* There cannot be an ellipsis. */
6578 if (ellipsis)
6579 error ("%<void%> must be the only parameter");
6580
6581 arg_info->types = void_list_node;
6582 return arg_info;
6583 }
6584
6585 if (!ellipsis)
6586 types = void_list_node;
6587
6588 /* Break up the bindings list into parms, tags, types, and others;
6589 apply sanity checks; purge the name-to-decl bindings. */
6590 while (b)
6591 {
6592 tree decl = b->decl;
6593 tree type = TREE_TYPE (decl);
6594 c_arg_tag tag;
6595 const char *keyword;
6596
6597 switch (TREE_CODE (decl))
6598 {
6599 case PARM_DECL:
6600 if (b->id)
6601 {
6602 gcc_assert (I_SYMBOL_BINDING (b->id) == b);
6603 I_SYMBOL_BINDING (b->id) = b->shadowed;
6604 }
6605
6606 /* Check for forward decls that never got their actual decl. */
6607 if (TREE_ASM_WRITTEN (decl))
6608 error ("parameter %q+D has just a forward declaration", decl);
6609 /* Check for (..., void, ...) and issue an error. */
6610 else if (VOID_TYPE_P (type) && !DECL_NAME (decl))
6611 {
6612 if (!gave_void_only_once_err)
6613 {
6614 error ("%<void%> must be the only parameter");
6615 gave_void_only_once_err = true;
6616 }
6617 }
6618 else
6619 {
6620 /* Valid parameter, add it to the list. */
6621 DECL_CHAIN (decl) = parms;
6622 parms = decl;
6623
6624 /* Since there is a prototype, args are passed in their
6625 declared types. The back end may override this later. */
6626 DECL_ARG_TYPE (decl) = type;
6627 types = tree_cons (0, type, types);
6628 }
6629 break;
6630
6631 case ENUMERAL_TYPE: keyword = "enum"; goto tag;
6632 case UNION_TYPE: keyword = "union"; goto tag;
6633 case RECORD_TYPE: keyword = "struct"; goto tag;
6634 tag:
6635 /* Types may not have tag-names, in which case the type
6636 appears in the bindings list with b->id NULL. */
6637 if (b->id)
6638 {
6639 gcc_assert (I_TAG_BINDING (b->id) == b);
6640 I_TAG_BINDING (b->id) = b->shadowed;
6641 }
6642
6643 /* Warn about any struct, union or enum tags defined in a
6644 parameter list. The scope of such types is limited to
6645 the parameter list, which is rarely if ever desirable
6646 (it's impossible to call such a function with type-
6647 correct arguments). An anonymous union parm type is
6648 meaningful as a GNU extension, so don't warn for that. */
6649 if (TREE_CODE (decl) != UNION_TYPE || b->id != 0)
6650 {
6651 if (b->id)
6652 /* The %s will be one of 'struct', 'union', or 'enum'. */
6653 warning (0, "%<%s %E%> declared inside parameter list",
6654 keyword, b->id);
6655 else
6656 /* The %s will be one of 'struct', 'union', or 'enum'. */
6657 warning (0, "anonymous %s declared inside parameter list",
6658 keyword);
6659
6660 if (!explained_incomplete_types)
6661 {
6662 warning (0, "its scope is only this definition or declaration,"
6663 " which is probably not what you want");
6664 explained_incomplete_types = true;
6665 }
6666 }
6667
6668 tag.id = b->id;
6669 tag.type = decl;
6670 vec_safe_push (tags, tag);
6671 break;
6672
6673 case CONST_DECL:
6674 case TYPE_DECL:
6675 case FUNCTION_DECL:
6676 /* CONST_DECLs appear here when we have an embedded enum,
6677 and TYPE_DECLs appear here when we have an embedded struct
6678 or union. No warnings for this - we already warned about the
6679 type itself. FUNCTION_DECLs appear when there is an implicit
6680 function declaration in the parameter list. */
6681
6682 /* When we reinsert this decl in the function body, we need
6683 to reconstruct whether it was marked as nested. */
6684 gcc_assert (TREE_CODE (decl) == FUNCTION_DECL
6685 ? b->nested
6686 : !b->nested);
6687 DECL_CHAIN (decl) = others;
6688 others = decl;
6689 /* fall through */
6690
6691 case ERROR_MARK:
6692 /* error_mark_node appears here when we have an undeclared
6693 variable. Just throw it away. */
6694 if (b->id)
6695 {
6696 gcc_assert (I_SYMBOL_BINDING (b->id) == b);
6697 I_SYMBOL_BINDING (b->id) = b->shadowed;
6698 }
6699 break;
6700
6701 /* Other things that might be encountered. */
6702 case LABEL_DECL:
6703 case VAR_DECL:
6704 default:
6705 gcc_unreachable ();
6706 }
6707
6708 b = free_binding_and_advance (b);
6709 }
6710
6711 arg_info->parms = parms;
6712 arg_info->tags = tags;
6713 arg_info->types = types;
6714 arg_info->others = others;
6715 arg_info->pending_sizes = expr;
6716 return arg_info;
6717 }
6718 \f
6719 /* Get the struct, enum or union (CODE says which) with tag NAME.
6720 Define the tag as a forward-reference with location LOC if it is
6721 not defined. Return a c_typespec structure for the type
6722 specifier. */
6723
6724 struct c_typespec
6725 parser_xref_tag (location_t loc, enum tree_code code, tree name)
6726 {
6727 struct c_typespec ret;
6728 tree ref;
6729 location_t refloc;
6730
6731 ret.expr = NULL_TREE;
6732 ret.expr_const_operands = true;
6733
6734 /* If a cross reference is requested, look up the type
6735 already defined for this tag and return it. */
6736
6737 ref = lookup_tag (code, name, 0, &refloc);
6738 /* If this is the right type of tag, return what we found.
6739 (This reference will be shadowed by shadow_tag later if appropriate.)
6740 If this is the wrong type of tag, do not return it. If it was the
6741 wrong type in the same scope, we will have had an error
6742 message already; if in a different scope and declaring
6743 a name, pending_xref_error will give an error message; but if in a
6744 different scope and not declaring a name, this tag should
6745 shadow the previous declaration of a different type of tag, and
6746 this would not work properly if we return the reference found.
6747 (For example, with "struct foo" in an outer scope, "union foo;"
6748 must shadow that tag with a new one of union type.) */
6749 ret.kind = (ref ? ctsk_tagref : ctsk_tagfirstref);
6750 if (ref && TREE_CODE (ref) == code)
6751 {
6752 if (C_TYPE_DEFINED_IN_STRUCT (ref)
6753 && loc != UNKNOWN_LOCATION
6754 && warn_cxx_compat)
6755 {
6756 switch (code)
6757 {
6758 case ENUMERAL_TYPE:
6759 warning_at (loc, OPT_Wc___compat,
6760 ("enum type defined in struct or union "
6761 "is not visible in C++"));
6762 inform (refloc, "enum type defined here");
6763 break;
6764 case RECORD_TYPE:
6765 warning_at (loc, OPT_Wc___compat,
6766 ("struct defined in struct or union "
6767 "is not visible in C++"));
6768 inform (refloc, "struct defined here");
6769 break;
6770 case UNION_TYPE:
6771 warning_at (loc, OPT_Wc___compat,
6772 ("union defined in struct or union "
6773 "is not visible in C++"));
6774 inform (refloc, "union defined here");
6775 break;
6776 default:
6777 gcc_unreachable();
6778 }
6779 }
6780
6781 ret.spec = ref;
6782 return ret;
6783 }
6784
6785 /* If no such tag is yet defined, create a forward-reference node
6786 and record it as the "definition".
6787 When a real declaration of this type is found,
6788 the forward-reference will be altered into a real type. */
6789
6790 ref = make_node (code);
6791 if (code == ENUMERAL_TYPE)
6792 {
6793 /* Give the type a default layout like unsigned int
6794 to avoid crashing if it does not get defined. */
6795 SET_TYPE_MODE (ref, TYPE_MODE (unsigned_type_node));
6796 TYPE_ALIGN (ref) = TYPE_ALIGN (unsigned_type_node);
6797 TYPE_USER_ALIGN (ref) = 0;
6798 TYPE_UNSIGNED (ref) = 1;
6799 TYPE_PRECISION (ref) = TYPE_PRECISION (unsigned_type_node);
6800 TYPE_MIN_VALUE (ref) = TYPE_MIN_VALUE (unsigned_type_node);
6801 TYPE_MAX_VALUE (ref) = TYPE_MAX_VALUE (unsigned_type_node);
6802 }
6803
6804 pushtag (loc, name, ref);
6805
6806 ret.spec = ref;
6807 return ret;
6808 }
6809
6810 /* Get the struct, enum or union (CODE says which) with tag NAME.
6811 Define the tag as a forward-reference if it is not defined.
6812 Return a tree for the type. */
6813
6814 tree
6815 xref_tag (enum tree_code code, tree name)
6816 {
6817 return parser_xref_tag (input_location, code, name).spec;
6818 }
6819 \f
6820 /* Make sure that the tag NAME is defined *in the current scope*
6821 at least as a forward reference.
6822 LOC is the location of the struct's definition.
6823 CODE says which kind of tag NAME ought to be.
6824
6825 This stores the current value of the file static STRUCT_PARSE_INFO
6826 in *ENCLOSING_STRUCT_PARSE_INFO, and points STRUCT_PARSE_INFO at a
6827 new c_struct_parse_info structure. The old value of
6828 STRUCT_PARSE_INFO is restored in finish_struct. */
6829
6830 tree
6831 start_struct (location_t loc, enum tree_code code, tree name,
6832 struct c_struct_parse_info **enclosing_struct_parse_info)
6833 {
6834 /* If there is already a tag defined at this scope
6835 (as a forward reference), just return it. */
6836
6837 tree ref = NULL_TREE;
6838 location_t refloc = UNKNOWN_LOCATION;
6839
6840 if (name != NULL_TREE)
6841 ref = lookup_tag (code, name, 1, &refloc);
6842 if (ref && TREE_CODE (ref) == code)
6843 {
6844 if (TYPE_SIZE (ref))
6845 {
6846 if (code == UNION_TYPE)
6847 error_at (loc, "redefinition of %<union %E%>", name);
6848 else
6849 error_at (loc, "redefinition of %<struct %E%>", name);
6850 if (refloc != UNKNOWN_LOCATION)
6851 inform (refloc, "originally defined here");
6852 /* Don't create structures using a name already in use. */
6853 ref = NULL_TREE;
6854 }
6855 else if (C_TYPE_BEING_DEFINED (ref))
6856 {
6857 if (code == UNION_TYPE)
6858 error_at (loc, "nested redefinition of %<union %E%>", name);
6859 else
6860 error_at (loc, "nested redefinition of %<struct %E%>", name);
6861 /* Don't bother to report "originally defined here" for a
6862 nested redefinition; the original definition should be
6863 obvious. */
6864 /* Don't create structures that contain themselves. */
6865 ref = NULL_TREE;
6866 }
6867 }
6868
6869 /* Otherwise create a forward-reference just so the tag is in scope. */
6870
6871 if (ref == NULL_TREE || TREE_CODE (ref) != code)
6872 {
6873 ref = make_node (code);
6874 pushtag (loc, name, ref);
6875 }
6876
6877 C_TYPE_BEING_DEFINED (ref) = 1;
6878 TYPE_PACKED (ref) = flag_pack_struct;
6879
6880 *enclosing_struct_parse_info = struct_parse_info;
6881 struct_parse_info = XNEW (struct c_struct_parse_info);
6882 struct_parse_info->struct_types.create (0);
6883 struct_parse_info->fields.create (0);
6884 struct_parse_info->typedefs_seen.create (0);
6885
6886 /* FIXME: This will issue a warning for a use of a type defined
6887 within a statement expr used within sizeof, et. al. This is not
6888 terribly serious as C++ doesn't permit statement exprs within
6889 sizeof anyhow. */
6890 if (warn_cxx_compat && (in_sizeof || in_typeof || in_alignof))
6891 warning_at (loc, OPT_Wc___compat,
6892 "defining type in %qs expression is invalid in C++",
6893 (in_sizeof
6894 ? "sizeof"
6895 : (in_typeof ? "typeof" : "alignof")));
6896
6897 return ref;
6898 }
6899
6900 /* Process the specs, declarator and width (NULL if omitted)
6901 of a structure component, returning a FIELD_DECL node.
6902 WIDTH is non-NULL for bit-fields only, and is an INTEGER_CST node.
6903 DECL_ATTRS is as for grokdeclarator.
6904
6905 LOC is the location of the structure component.
6906
6907 This is done during the parsing of the struct declaration.
6908 The FIELD_DECL nodes are chained together and the lot of them
6909 are ultimately passed to `build_struct' to make the RECORD_TYPE node. */
6910
6911 tree
6912 grokfield (location_t loc,
6913 struct c_declarator *declarator, struct c_declspecs *declspecs,
6914 tree width, tree *decl_attrs)
6915 {
6916 tree value;
6917
6918 if (declarator->kind == cdk_id && declarator->u.id == NULL_TREE
6919 && width == NULL_TREE)
6920 {
6921 /* This is an unnamed decl.
6922
6923 If we have something of the form "union { list } ;" then this
6924 is the anonymous union extension. Similarly for struct.
6925
6926 If this is something of the form "struct foo;", then
6927 If MS or Plan 9 extensions are enabled, this is handled as
6928 an anonymous struct.
6929 Otherwise this is a forward declaration of a structure tag.
6930
6931 If this is something of the form "foo;" and foo is a TYPE_DECL, then
6932 If foo names a structure or union without a tag, then this
6933 is an anonymous struct (this is permitted by C11).
6934 If MS or Plan 9 extensions are enabled and foo names a
6935 structure, then again this is an anonymous struct.
6936 Otherwise this is an error.
6937
6938 Oh what a horrid tangled web we weave. I wonder if MS consciously
6939 took this from Plan 9 or if it was an accident of implementation
6940 that took root before someone noticed the bug... */
6941
6942 tree type = declspecs->type;
6943 bool type_ok = (TREE_CODE (type) == RECORD_TYPE
6944 || TREE_CODE (type) == UNION_TYPE);
6945 bool ok = false;
6946
6947 if (type_ok
6948 && (flag_ms_extensions
6949 || flag_plan9_extensions
6950 || !declspecs->typedef_p))
6951 {
6952 if (flag_ms_extensions || flag_plan9_extensions)
6953 ok = true;
6954 else if (TYPE_NAME (type) == NULL)
6955 ok = true;
6956 else
6957 ok = false;
6958 }
6959 if (!ok)
6960 {
6961 pedwarn (loc, 0, "declaration does not declare anything");
6962 return NULL_TREE;
6963 }
6964 if (!flag_isoc11)
6965 {
6966 if (flag_isoc99)
6967 pedwarn (loc, OPT_Wpedantic,
6968 "ISO C99 doesn%'t support unnamed structs/unions");
6969 else
6970 pedwarn (loc, OPT_Wpedantic,
6971 "ISO C90 doesn%'t support unnamed structs/unions");
6972 }
6973 }
6974
6975 value = grokdeclarator (declarator, declspecs, FIELD, false,
6976 width ? &width : NULL, decl_attrs, NULL, NULL,
6977 DEPRECATED_NORMAL);
6978
6979 finish_decl (value, loc, NULL_TREE, NULL_TREE, NULL_TREE);
6980 DECL_INITIAL (value) = width;
6981
6982 if (warn_cxx_compat && DECL_NAME (value) != NULL_TREE)
6983 {
6984 /* If we currently have a binding for this field, set the
6985 in_struct field in the binding, so that we warn about lookups
6986 which find it. */
6987 struct c_binding *b = I_SYMBOL_BINDING (DECL_NAME (value));
6988 if (b != NULL)
6989 {
6990 /* If the in_struct field is not yet set, push it on a list
6991 to be cleared when this struct is finished. */
6992 if (!b->in_struct)
6993 {
6994 struct_parse_info->fields.safe_push (b);
6995 b->in_struct = 1;
6996 }
6997 }
6998 }
6999
7000 return value;
7001 }
7002 \f
7003 /* Subroutine of detect_field_duplicates: return whether X and Y,
7004 which are both fields in the same struct, have duplicate field
7005 names. */
7006
7007 static bool
7008 is_duplicate_field (tree x, tree y)
7009 {
7010 if (DECL_NAME (x) != NULL_TREE && DECL_NAME (x) == DECL_NAME (y))
7011 return true;
7012
7013 /* When using -fplan9-extensions, an anonymous field whose name is a
7014 typedef can duplicate a field name. */
7015 if (flag_plan9_extensions
7016 && (DECL_NAME (x) == NULL_TREE || DECL_NAME (y) == NULL_TREE))
7017 {
7018 tree xt, xn, yt, yn;
7019
7020 xt = TREE_TYPE (x);
7021 if (DECL_NAME (x) != NULL_TREE)
7022 xn = DECL_NAME (x);
7023 else if ((TREE_CODE (xt) == RECORD_TYPE || TREE_CODE (xt) == UNION_TYPE)
7024 && TYPE_NAME (xt) != NULL_TREE
7025 && TREE_CODE (TYPE_NAME (xt)) == TYPE_DECL)
7026 xn = DECL_NAME (TYPE_NAME (xt));
7027 else
7028 xn = NULL_TREE;
7029
7030 yt = TREE_TYPE (y);
7031 if (DECL_NAME (y) != NULL_TREE)
7032 yn = DECL_NAME (y);
7033 else if ((TREE_CODE (yt) == RECORD_TYPE || TREE_CODE (yt) == UNION_TYPE)
7034 && TYPE_NAME (yt) != NULL_TREE
7035 && TREE_CODE (TYPE_NAME (yt)) == TYPE_DECL)
7036 yn = DECL_NAME (TYPE_NAME (yt));
7037 else
7038 yn = NULL_TREE;
7039
7040 if (xn != NULL_TREE && xn == yn)
7041 return true;
7042 }
7043
7044 return false;
7045 }
7046
7047 /* Subroutine of detect_field_duplicates: add the fields of FIELDLIST
7048 to HTAB, giving errors for any duplicates. */
7049
7050 static void
7051 detect_field_duplicates_hash (tree fieldlist,
7052 hash_table <pointer_hash <tree_node> > htab)
7053 {
7054 tree x, y;
7055 tree_node **slot;
7056
7057 for (x = fieldlist; x ; x = DECL_CHAIN (x))
7058 if ((y = DECL_NAME (x)) != 0)
7059 {
7060 slot = htab.find_slot (y, INSERT);
7061 if (*slot)
7062 {
7063 error ("duplicate member %q+D", x);
7064 DECL_NAME (x) = NULL_TREE;
7065 }
7066 *slot = y;
7067 }
7068 else if (TREE_CODE (TREE_TYPE (x)) == RECORD_TYPE
7069 || TREE_CODE (TREE_TYPE (x)) == UNION_TYPE)
7070 {
7071 detect_field_duplicates_hash (TYPE_FIELDS (TREE_TYPE (x)), htab);
7072
7073 /* When using -fplan9-extensions, an anonymous field whose
7074 name is a typedef can duplicate a field name. */
7075 if (flag_plan9_extensions
7076 && TYPE_NAME (TREE_TYPE (x)) != NULL_TREE
7077 && TREE_CODE (TYPE_NAME (TREE_TYPE (x))) == TYPE_DECL)
7078 {
7079 tree xn = DECL_NAME (TYPE_NAME (TREE_TYPE (x)));
7080 slot = htab.find_slot (xn, INSERT);
7081 if (*slot)
7082 error ("duplicate member %q+D", TYPE_NAME (TREE_TYPE (x)));
7083 *slot = xn;
7084 }
7085 }
7086 }
7087
7088 /* Generate an error for any duplicate field names in FIELDLIST. Munge
7089 the list such that this does not present a problem later. */
7090
7091 static void
7092 detect_field_duplicates (tree fieldlist)
7093 {
7094 tree x, y;
7095 int timeout = 10;
7096
7097 /* If the struct is the list of instance variables of an Objective-C
7098 class, then we need to check all the instance variables of
7099 superclasses when checking for duplicates (since you can't have
7100 an instance variable in a subclass with the same name as an
7101 instance variable in a superclass). We pass on this job to the
7102 Objective-C compiler. objc_detect_field_duplicates() will return
7103 false if we are not checking the list of instance variables and
7104 the C frontend should proceed with the standard field duplicate
7105 checks. If we are checking the list of instance variables, the
7106 ObjC frontend will do the check, emit the errors if needed, and
7107 then return true. */
7108 if (c_dialect_objc ())
7109 if (objc_detect_field_duplicates (false))
7110 return;
7111
7112 /* First, see if there are more than "a few" fields.
7113 This is trivially true if there are zero or one fields. */
7114 if (!fieldlist || !DECL_CHAIN (fieldlist))
7115 return;
7116 x = fieldlist;
7117 do {
7118 timeout--;
7119 if (DECL_NAME (x) == NULL_TREE
7120 && (TREE_CODE (TREE_TYPE (x)) == RECORD_TYPE
7121 || TREE_CODE (TREE_TYPE (x)) == UNION_TYPE))
7122 timeout = 0;
7123 x = DECL_CHAIN (x);
7124 } while (timeout > 0 && x);
7125
7126 /* If there were "few" fields and no anonymous structures or unions,
7127 avoid the overhead of allocating a hash table. Instead just do
7128 the nested traversal thing. */
7129 if (timeout > 0)
7130 {
7131 for (x = DECL_CHAIN (fieldlist); x; x = DECL_CHAIN (x))
7132 /* When using -fplan9-extensions, we can have duplicates
7133 between typedef names and fields. */
7134 if (DECL_NAME (x)
7135 || (flag_plan9_extensions
7136 && DECL_NAME (x) == NULL_TREE
7137 && (TREE_CODE (TREE_TYPE (x)) == RECORD_TYPE
7138 || TREE_CODE (TREE_TYPE (x)) == UNION_TYPE)
7139 && TYPE_NAME (TREE_TYPE (x)) != NULL_TREE
7140 && TREE_CODE (TYPE_NAME (TREE_TYPE (x))) == TYPE_DECL))
7141 {
7142 for (y = fieldlist; y != x; y = TREE_CHAIN (y))
7143 if (is_duplicate_field (y, x))
7144 {
7145 error ("duplicate member %q+D", x);
7146 DECL_NAME (x) = NULL_TREE;
7147 }
7148 }
7149 }
7150 else
7151 {
7152 hash_table <pointer_hash <tree_node> > htab;
7153 htab.create (37);
7154
7155 detect_field_duplicates_hash (fieldlist, htab);
7156 htab.dispose ();
7157 }
7158 }
7159
7160 /* Finish up struct info used by -Wc++-compat. */
7161
7162 static void
7163 warn_cxx_compat_finish_struct (tree fieldlist)
7164 {
7165 unsigned int ix;
7166 tree x;
7167 struct c_binding *b;
7168
7169 /* Set the C_TYPE_DEFINED_IN_STRUCT flag for each type defined in
7170 the current struct. We do this now at the end of the struct
7171 because the flag is used to issue visibility warnings, and we
7172 only want to issue those warnings if the type is referenced
7173 outside of the struct declaration. */
7174 FOR_EACH_VEC_ELT (struct_parse_info->struct_types, ix, x)
7175 C_TYPE_DEFINED_IN_STRUCT (x) = 1;
7176
7177 /* The TYPEDEFS_SEEN field of STRUCT_PARSE_INFO is a list of
7178 typedefs used when declaring fields in this struct. If the name
7179 of any of the fields is also a typedef name then the struct would
7180 not parse in C++, because the C++ lookup rules say that the
7181 typedef name would be looked up in the context of the struct, and
7182 would thus be the field rather than the typedef. */
7183 if (!struct_parse_info->typedefs_seen.is_empty ()
7184 && fieldlist != NULL_TREE)
7185 {
7186 /* Use a pointer_set using the name of the typedef. We can use
7187 a pointer_set because identifiers are interned. */
7188 struct pointer_set_t *tset = pointer_set_create ();
7189
7190 FOR_EACH_VEC_ELT (struct_parse_info->typedefs_seen, ix, x)
7191 pointer_set_insert (tset, DECL_NAME (x));
7192
7193 for (x = fieldlist; x != NULL_TREE; x = DECL_CHAIN (x))
7194 {
7195 if (DECL_NAME (x) != NULL_TREE
7196 && pointer_set_contains (tset, DECL_NAME (x)))
7197 {
7198 warning_at (DECL_SOURCE_LOCATION (x), OPT_Wc___compat,
7199 ("using %qD as both field and typedef name is "
7200 "invalid in C++"),
7201 x);
7202 /* FIXME: It would be nice to report the location where
7203 the typedef name is used. */
7204 }
7205 }
7206
7207 pointer_set_destroy (tset);
7208 }
7209
7210 /* For each field which has a binding and which was not defined in
7211 an enclosing struct, clear the in_struct field. */
7212 FOR_EACH_VEC_ELT (struct_parse_info->fields, ix, b)
7213 b->in_struct = 0;
7214 }
7215
7216 /* Fill in the fields of a RECORD_TYPE or UNION_TYPE node, T.
7217 LOC is the location of the RECORD_TYPE or UNION_TYPE's definition.
7218 FIELDLIST is a chain of FIELD_DECL nodes for the fields.
7219 ATTRIBUTES are attributes to be applied to the structure.
7220
7221 ENCLOSING_STRUCT_PARSE_INFO is the value of STRUCT_PARSE_INFO when
7222 the struct was started. */
7223
7224 tree
7225 finish_struct (location_t loc, tree t, tree fieldlist, tree attributes,
7226 struct c_struct_parse_info *enclosing_struct_parse_info)
7227 {
7228 tree x;
7229 bool toplevel = file_scope == current_scope;
7230 int saw_named_field;
7231
7232 /* If this type was previously laid out as a forward reference,
7233 make sure we lay it out again. */
7234
7235 TYPE_SIZE (t) = 0;
7236
7237 decl_attributes (&t, attributes, (int) ATTR_FLAG_TYPE_IN_PLACE);
7238
7239 if (pedantic)
7240 {
7241 for (x = fieldlist; x; x = DECL_CHAIN (x))
7242 {
7243 if (DECL_NAME (x) != 0)
7244 break;
7245 if (flag_isoc11
7246 && (TREE_CODE (TREE_TYPE (x)) == RECORD_TYPE
7247 || TREE_CODE (TREE_TYPE (x)) == UNION_TYPE))
7248 break;
7249 }
7250
7251 if (x == 0)
7252 {
7253 if (TREE_CODE (t) == UNION_TYPE)
7254 {
7255 if (fieldlist)
7256 pedwarn (loc, OPT_Wpedantic, "union has no named members");
7257 else
7258 pedwarn (loc, OPT_Wpedantic, "union has no members");
7259 }
7260 else
7261 {
7262 if (fieldlist)
7263 pedwarn (loc, OPT_Wpedantic, "struct has no named members");
7264 else
7265 pedwarn (loc, OPT_Wpedantic, "struct has no members");
7266 }
7267 }
7268 }
7269
7270 /* Install struct as DECL_CONTEXT of each field decl.
7271 Also process specified field sizes, found in the DECL_INITIAL,
7272 storing 0 there after the type has been changed to precision equal
7273 to its width, rather than the precision of the specified standard
7274 type. (Correct layout requires the original type to have been preserved
7275 until now.) */
7276
7277 saw_named_field = 0;
7278 for (x = fieldlist; x; x = DECL_CHAIN (x))
7279 {
7280 if (TREE_TYPE (x) == error_mark_node)
7281 continue;
7282
7283 DECL_CONTEXT (x) = t;
7284
7285 /* If any field is const, the structure type is pseudo-const. */
7286 if (TREE_READONLY (x))
7287 C_TYPE_FIELDS_READONLY (t) = 1;
7288 else
7289 {
7290 /* A field that is pseudo-const makes the structure likewise. */
7291 tree t1 = strip_array_types (TREE_TYPE (x));
7292 if ((TREE_CODE (t1) == RECORD_TYPE || TREE_CODE (t1) == UNION_TYPE)
7293 && C_TYPE_FIELDS_READONLY (t1))
7294 C_TYPE_FIELDS_READONLY (t) = 1;
7295 }
7296
7297 /* Any field that is volatile means variables of this type must be
7298 treated in some ways as volatile. */
7299 if (TREE_THIS_VOLATILE (x))
7300 C_TYPE_FIELDS_VOLATILE (t) = 1;
7301
7302 /* Any field of nominal variable size implies structure is too. */
7303 if (C_DECL_VARIABLE_SIZE (x))
7304 C_TYPE_VARIABLE_SIZE (t) = 1;
7305
7306 if (DECL_INITIAL (x))
7307 {
7308 unsigned HOST_WIDE_INT width = tree_to_uhwi (DECL_INITIAL (x));
7309 DECL_SIZE (x) = bitsize_int (width);
7310 DECL_BIT_FIELD (x) = 1;
7311 SET_DECL_C_BIT_FIELD (x);
7312 }
7313
7314 if (TYPE_PACKED (t)
7315 && (DECL_BIT_FIELD (x)
7316 || TYPE_ALIGN (TREE_TYPE (x)) > BITS_PER_UNIT))
7317 DECL_PACKED (x) = 1;
7318
7319 /* Detect flexible array member in an invalid context. */
7320 if (TREE_CODE (TREE_TYPE (x)) == ARRAY_TYPE
7321 && TYPE_SIZE (TREE_TYPE (x)) == NULL_TREE
7322 && TYPE_DOMAIN (TREE_TYPE (x)) != NULL_TREE
7323 && TYPE_MAX_VALUE (TYPE_DOMAIN (TREE_TYPE (x))) == NULL_TREE)
7324 {
7325 if (TREE_CODE (t) == UNION_TYPE)
7326 {
7327 error_at (DECL_SOURCE_LOCATION (x),
7328 "flexible array member in union");
7329 TREE_TYPE (x) = error_mark_node;
7330 }
7331 else if (DECL_CHAIN (x) != NULL_TREE)
7332 {
7333 error_at (DECL_SOURCE_LOCATION (x),
7334 "flexible array member not at end of struct");
7335 TREE_TYPE (x) = error_mark_node;
7336 }
7337 else if (!saw_named_field)
7338 {
7339 error_at (DECL_SOURCE_LOCATION (x),
7340 "flexible array member in otherwise empty struct");
7341 TREE_TYPE (x) = error_mark_node;
7342 }
7343 }
7344
7345 if (pedantic && TREE_CODE (t) == RECORD_TYPE
7346 && flexible_array_type_p (TREE_TYPE (x)))
7347 pedwarn (DECL_SOURCE_LOCATION (x), OPT_Wpedantic,
7348 "invalid use of structure with flexible array member");
7349
7350 if (DECL_NAME (x)
7351 || TREE_CODE (TREE_TYPE (x)) == RECORD_TYPE
7352 || TREE_CODE (TREE_TYPE (x)) == UNION_TYPE)
7353 saw_named_field = 1;
7354 }
7355
7356 detect_field_duplicates (fieldlist);
7357
7358 /* Now we have the nearly final fieldlist. Record it,
7359 then lay out the structure or union (including the fields). */
7360
7361 TYPE_FIELDS (t) = fieldlist;
7362
7363 layout_type (t);
7364
7365 if (TYPE_SIZE_UNIT (t)
7366 && TREE_CODE (TYPE_SIZE_UNIT (t)) == INTEGER_CST
7367 && !TREE_OVERFLOW (TYPE_SIZE_UNIT (t))
7368 && !valid_constant_size_p (TYPE_SIZE_UNIT (t)))
7369 error ("type %qT is too large", t);
7370
7371 /* Give bit-fields their proper types. */
7372 {
7373 tree *fieldlistp = &fieldlist;
7374 while (*fieldlistp)
7375 if (TREE_CODE (*fieldlistp) == FIELD_DECL && DECL_INITIAL (*fieldlistp)
7376 && TREE_TYPE (*fieldlistp) != error_mark_node)
7377 {
7378 unsigned HOST_WIDE_INT width
7379 = tree_to_uhwi (DECL_INITIAL (*fieldlistp));
7380 tree type = TREE_TYPE (*fieldlistp);
7381 if (width != TYPE_PRECISION (type))
7382 {
7383 TREE_TYPE (*fieldlistp)
7384 = c_build_bitfield_integer_type (width, TYPE_UNSIGNED (type));
7385 DECL_MODE (*fieldlistp) = TYPE_MODE (TREE_TYPE (*fieldlistp));
7386 }
7387 DECL_INITIAL (*fieldlistp) = 0;
7388 }
7389 else
7390 fieldlistp = &DECL_CHAIN (*fieldlistp);
7391 }
7392
7393 /* Now we have the truly final field list.
7394 Store it in this type and in the variants. */
7395
7396 TYPE_FIELDS (t) = fieldlist;
7397
7398 /* If there are lots of fields, sort so we can look through them fast.
7399 We arbitrarily consider 16 or more elts to be "a lot". */
7400
7401 {
7402 int len = 0;
7403
7404 for (x = fieldlist; x; x = DECL_CHAIN (x))
7405 {
7406 if (len > 15 || DECL_NAME (x) == NULL)
7407 break;
7408 len += 1;
7409 }
7410
7411 if (len > 15)
7412 {
7413 tree *field_array;
7414 struct lang_type *space;
7415 struct sorted_fields_type *space2;
7416
7417 len += list_length (x);
7418
7419 /* Use the same allocation policy here that make_node uses, to
7420 ensure that this lives as long as the rest of the struct decl.
7421 All decls in an inline function need to be saved. */
7422
7423 space = ggc_cleared_alloc<struct lang_type> ();
7424 space2 = (sorted_fields_type *) ggc_internal_alloc
7425 (sizeof (struct sorted_fields_type) + len * sizeof (tree));
7426
7427 len = 0;
7428 space->s = space2;
7429 field_array = &space2->elts[0];
7430 for (x = fieldlist; x; x = DECL_CHAIN (x))
7431 {
7432 field_array[len++] = x;
7433
7434 /* If there is anonymous struct or union, break out of the loop. */
7435 if (DECL_NAME (x) == NULL)
7436 break;
7437 }
7438 /* Found no anonymous struct/union. Add the TYPE_LANG_SPECIFIC. */
7439 if (x == NULL)
7440 {
7441 TYPE_LANG_SPECIFIC (t) = space;
7442 TYPE_LANG_SPECIFIC (t)->s->len = len;
7443 field_array = TYPE_LANG_SPECIFIC (t)->s->elts;
7444 qsort (field_array, len, sizeof (tree), field_decl_cmp);
7445 }
7446 }
7447 }
7448
7449 for (x = TYPE_MAIN_VARIANT (t); x; x = TYPE_NEXT_VARIANT (x))
7450 {
7451 TYPE_FIELDS (x) = TYPE_FIELDS (t);
7452 TYPE_LANG_SPECIFIC (x) = TYPE_LANG_SPECIFIC (t);
7453 C_TYPE_FIELDS_READONLY (x) = C_TYPE_FIELDS_READONLY (t);
7454 C_TYPE_FIELDS_VOLATILE (x) = C_TYPE_FIELDS_VOLATILE (t);
7455 C_TYPE_VARIABLE_SIZE (x) = C_TYPE_VARIABLE_SIZE (t);
7456 }
7457
7458 /* If this was supposed to be a transparent union, but we can't
7459 make it one, warn and turn off the flag. */
7460 if (TREE_CODE (t) == UNION_TYPE
7461 && TYPE_TRANSPARENT_AGGR (t)
7462 && (!TYPE_FIELDS (t) || TYPE_MODE (t) != DECL_MODE (TYPE_FIELDS (t))))
7463 {
7464 TYPE_TRANSPARENT_AGGR (t) = 0;
7465 warning_at (loc, 0, "union cannot be made transparent");
7466 }
7467
7468 /* If this structure or union completes the type of any previous
7469 variable declaration, lay it out and output its rtl. */
7470 for (x = C_TYPE_INCOMPLETE_VARS (TYPE_MAIN_VARIANT (t));
7471 x;
7472 x = TREE_CHAIN (x))
7473 {
7474 tree decl = TREE_VALUE (x);
7475 if (TREE_CODE (TREE_TYPE (decl)) == ARRAY_TYPE)
7476 layout_array_type (TREE_TYPE (decl));
7477 if (TREE_CODE (decl) != TYPE_DECL)
7478 {
7479 layout_decl (decl, 0);
7480 if (c_dialect_objc ())
7481 objc_check_decl (decl);
7482 rest_of_decl_compilation (decl, toplevel, 0);
7483 }
7484 }
7485 C_TYPE_INCOMPLETE_VARS (TYPE_MAIN_VARIANT (t)) = 0;
7486
7487 /* Update type location to the one of the definition, instead of e.g.
7488 a forward declaration. */
7489 if (TYPE_STUB_DECL (t))
7490 DECL_SOURCE_LOCATION (TYPE_STUB_DECL (t)) = loc;
7491
7492 /* Finish debugging output for this type. */
7493 rest_of_type_compilation (t, toplevel);
7494
7495 /* If we're inside a function proper, i.e. not file-scope and not still
7496 parsing parameters, then arrange for the size of a variable sized type
7497 to be bound now. */
7498 if (building_stmt_list_p () && variably_modified_type_p (t, NULL_TREE))
7499 add_stmt (build_stmt (loc,
7500 DECL_EXPR, build_decl (loc, TYPE_DECL, NULL, t)));
7501
7502 if (warn_cxx_compat)
7503 warn_cxx_compat_finish_struct (fieldlist);
7504
7505 struct_parse_info->struct_types.release ();
7506 struct_parse_info->fields.release ();
7507 struct_parse_info->typedefs_seen.release ();
7508 XDELETE (struct_parse_info);
7509
7510 struct_parse_info = enclosing_struct_parse_info;
7511
7512 /* If this struct is defined inside a struct, add it to
7513 struct_types. */
7514 if (warn_cxx_compat
7515 && struct_parse_info != NULL
7516 && !in_sizeof && !in_typeof && !in_alignof)
7517 struct_parse_info->struct_types.safe_push (t);
7518
7519 return t;
7520 }
7521
7522 /* Lay out the type T, and its element type, and so on. */
7523
7524 static void
7525 layout_array_type (tree t)
7526 {
7527 if (TREE_CODE (TREE_TYPE (t)) == ARRAY_TYPE)
7528 layout_array_type (TREE_TYPE (t));
7529 layout_type (t);
7530 }
7531 \f
7532 /* Begin compiling the definition of an enumeration type.
7533 NAME is its name (or null if anonymous).
7534 LOC is the enum's location.
7535 Returns the type object, as yet incomplete.
7536 Also records info about it so that build_enumerator
7537 may be used to declare the individual values as they are read. */
7538
7539 tree
7540 start_enum (location_t loc, struct c_enum_contents *the_enum, tree name)
7541 {
7542 tree enumtype = NULL_TREE;
7543 location_t enumloc = UNKNOWN_LOCATION;
7544
7545 /* If this is the real definition for a previous forward reference,
7546 fill in the contents in the same object that used to be the
7547 forward reference. */
7548
7549 if (name != NULL_TREE)
7550 enumtype = lookup_tag (ENUMERAL_TYPE, name, 1, &enumloc);
7551
7552 if (enumtype == 0 || TREE_CODE (enumtype) != ENUMERAL_TYPE)
7553 {
7554 enumtype = make_node (ENUMERAL_TYPE);
7555 pushtag (loc, name, enumtype);
7556 }
7557
7558 if (C_TYPE_BEING_DEFINED (enumtype))
7559 error_at (loc, "nested redefinition of %<enum %E%>", name);
7560
7561 C_TYPE_BEING_DEFINED (enumtype) = 1;
7562
7563 if (TYPE_VALUES (enumtype) != 0)
7564 {
7565 /* This enum is a named one that has been declared already. */
7566 error_at (loc, "redeclaration of %<enum %E%>", name);
7567 if (enumloc != UNKNOWN_LOCATION)
7568 inform (enumloc, "originally defined here");
7569
7570 /* Completely replace its old definition.
7571 The old enumerators remain defined, however. */
7572 TYPE_VALUES (enumtype) = 0;
7573 }
7574
7575 the_enum->enum_next_value = integer_zero_node;
7576 the_enum->enum_overflow = 0;
7577
7578 if (flag_short_enums)
7579 TYPE_PACKED (enumtype) = 1;
7580
7581 /* FIXME: This will issue a warning for a use of a type defined
7582 within sizeof in a statement expr. This is not terribly serious
7583 as C++ doesn't permit statement exprs within sizeof anyhow. */
7584 if (warn_cxx_compat && (in_sizeof || in_typeof || in_alignof))
7585 warning_at (loc, OPT_Wc___compat,
7586 "defining type in %qs expression is invalid in C++",
7587 (in_sizeof
7588 ? "sizeof"
7589 : (in_typeof ? "typeof" : "alignof")));
7590
7591 return enumtype;
7592 }
7593
7594 /* After processing and defining all the values of an enumeration type,
7595 install their decls in the enumeration type and finish it off.
7596 ENUMTYPE is the type object, VALUES a list of decl-value pairs,
7597 and ATTRIBUTES are the specified attributes.
7598 Returns ENUMTYPE. */
7599
7600 tree
7601 finish_enum (tree enumtype, tree values, tree attributes)
7602 {
7603 tree pair, tem;
7604 tree minnode = 0, maxnode = 0;
7605 int precision;
7606 signop sign;
7607 bool toplevel = (file_scope == current_scope);
7608 struct lang_type *lt;
7609
7610 decl_attributes (&enumtype, attributes, (int) ATTR_FLAG_TYPE_IN_PLACE);
7611
7612 /* Calculate the maximum value of any enumerator in this type. */
7613
7614 if (values == error_mark_node)
7615 minnode = maxnode = integer_zero_node;
7616 else
7617 {
7618 minnode = maxnode = TREE_VALUE (values);
7619 for (pair = TREE_CHAIN (values); pair; pair = TREE_CHAIN (pair))
7620 {
7621 tree value = TREE_VALUE (pair);
7622 if (tree_int_cst_lt (maxnode, value))
7623 maxnode = value;
7624 if (tree_int_cst_lt (value, minnode))
7625 minnode = value;
7626 }
7627 }
7628
7629 /* Construct the final type of this enumeration. It is the same
7630 as one of the integral types - the narrowest one that fits, except
7631 that normally we only go as narrow as int - and signed iff any of
7632 the values are negative. */
7633 sign = (tree_int_cst_sgn (minnode) >= 0) ? UNSIGNED : SIGNED;
7634 precision = MAX (tree_int_cst_min_precision (minnode, sign),
7635 tree_int_cst_min_precision (maxnode, sign));
7636
7637 if (TYPE_PACKED (enumtype) || precision > TYPE_PRECISION (integer_type_node))
7638 {
7639 tem = c_common_type_for_size (precision, sign == UNSIGNED ? 1 : 0);
7640 if (tem == NULL)
7641 {
7642 warning (0, "enumeration values exceed range of largest integer");
7643 tem = long_long_integer_type_node;
7644 }
7645 }
7646 else
7647 tem = sign == UNSIGNED ? unsigned_type_node : integer_type_node;
7648
7649 TYPE_MIN_VALUE (enumtype) = TYPE_MIN_VALUE (tem);
7650 TYPE_MAX_VALUE (enumtype) = TYPE_MAX_VALUE (tem);
7651 TYPE_UNSIGNED (enumtype) = TYPE_UNSIGNED (tem);
7652 TYPE_SIZE (enumtype) = 0;
7653
7654 /* If the precision of the type was specific with an attribute and it
7655 was too small, give an error. Otherwise, use it. */
7656 if (TYPE_PRECISION (enumtype))
7657 {
7658 if (precision > TYPE_PRECISION (enumtype))
7659 error ("specified mode too small for enumeral values");
7660 }
7661 else
7662 TYPE_PRECISION (enumtype) = TYPE_PRECISION (tem);
7663
7664 layout_type (enumtype);
7665
7666 if (values != error_mark_node)
7667 {
7668 /* Change the type of the enumerators to be the enum type. We
7669 need to do this irrespective of the size of the enum, for
7670 proper type checking. Replace the DECL_INITIALs of the
7671 enumerators, and the value slots of the list, with copies
7672 that have the enum type; they cannot be modified in place
7673 because they may be shared (e.g. integer_zero_node) Finally,
7674 change the purpose slots to point to the names of the decls. */
7675 for (pair = values; pair; pair = TREE_CHAIN (pair))
7676 {
7677 tree enu = TREE_PURPOSE (pair);
7678 tree ini = DECL_INITIAL (enu);
7679
7680 TREE_TYPE (enu) = enumtype;
7681
7682 /* The ISO C Standard mandates enumerators to have type int,
7683 even though the underlying type of an enum type is
7684 unspecified. However, GCC allows enumerators of any
7685 integer type as an extensions. build_enumerator()
7686 converts any enumerators that fit in an int to type int,
7687 to avoid promotions to unsigned types when comparing
7688 integers with enumerators that fit in the int range.
7689 When -pedantic is given, build_enumerator() would have
7690 already warned about those that don't fit. Here we
7691 convert the rest to the enumerator type. */
7692 if (TREE_TYPE (ini) != integer_type_node)
7693 ini = convert (enumtype, ini);
7694
7695 DECL_INITIAL (enu) = ini;
7696 TREE_PURPOSE (pair) = DECL_NAME (enu);
7697 TREE_VALUE (pair) = ini;
7698 }
7699
7700 TYPE_VALUES (enumtype) = values;
7701 }
7702
7703 /* Record the min/max values so that we can warn about bit-field
7704 enumerations that are too small for the values. */
7705 lt = ggc_cleared_alloc<struct lang_type> ();
7706 lt->enum_min = minnode;
7707 lt->enum_max = maxnode;
7708 TYPE_LANG_SPECIFIC (enumtype) = lt;
7709
7710 /* Fix up all variant types of this enum type. */
7711 for (tem = TYPE_MAIN_VARIANT (enumtype); tem; tem = TYPE_NEXT_VARIANT (tem))
7712 {
7713 if (tem == enumtype)
7714 continue;
7715 TYPE_VALUES (tem) = TYPE_VALUES (enumtype);
7716 TYPE_MIN_VALUE (tem) = TYPE_MIN_VALUE (enumtype);
7717 TYPE_MAX_VALUE (tem) = TYPE_MAX_VALUE (enumtype);
7718 TYPE_SIZE (tem) = TYPE_SIZE (enumtype);
7719 TYPE_SIZE_UNIT (tem) = TYPE_SIZE_UNIT (enumtype);
7720 SET_TYPE_MODE (tem, TYPE_MODE (enumtype));
7721 TYPE_PRECISION (tem) = TYPE_PRECISION (enumtype);
7722 TYPE_ALIGN (tem) = TYPE_ALIGN (enumtype);
7723 TYPE_USER_ALIGN (tem) = TYPE_USER_ALIGN (enumtype);
7724 TYPE_UNSIGNED (tem) = TYPE_UNSIGNED (enumtype);
7725 TYPE_LANG_SPECIFIC (tem) = TYPE_LANG_SPECIFIC (enumtype);
7726 }
7727
7728 /* Finish debugging output for this type. */
7729 rest_of_type_compilation (enumtype, toplevel);
7730
7731 /* If this enum is defined inside a struct, add it to
7732 struct_types. */
7733 if (warn_cxx_compat
7734 && struct_parse_info != NULL
7735 && !in_sizeof && !in_typeof && !in_alignof)
7736 struct_parse_info->struct_types.safe_push (enumtype);
7737
7738 return enumtype;
7739 }
7740
7741 /* Build and install a CONST_DECL for one value of the
7742 current enumeration type (one that was begun with start_enum).
7743 DECL_LOC is the location of the enumerator.
7744 LOC is the location of the '=' operator if any, DECL_LOC otherwise.
7745 Return a tree-list containing the CONST_DECL and its value.
7746 Assignment of sequential values by default is handled here. */
7747
7748 tree
7749 build_enumerator (location_t decl_loc, location_t loc,
7750 struct c_enum_contents *the_enum, tree name, tree value)
7751 {
7752 tree decl, type;
7753
7754 /* Validate and default VALUE. */
7755
7756 if (value != 0)
7757 {
7758 /* Don't issue more errors for error_mark_node (i.e. an
7759 undeclared identifier) - just ignore the value expression. */
7760 if (value == error_mark_node)
7761 value = 0;
7762 else if (!INTEGRAL_TYPE_P (TREE_TYPE (value)))
7763 {
7764 error_at (loc, "enumerator value for %qE is not an integer constant",
7765 name);
7766 value = 0;
7767 }
7768 else
7769 {
7770 if (TREE_CODE (value) != INTEGER_CST)
7771 {
7772 value = c_fully_fold (value, false, NULL);
7773 if (TREE_CODE (value) == INTEGER_CST)
7774 pedwarn (loc, OPT_Wpedantic,
7775 "enumerator value for %qE is not an integer "
7776 "constant expression", name);
7777 }
7778 if (TREE_CODE (value) != INTEGER_CST)
7779 {
7780 error ("enumerator value for %qE is not an integer constant",
7781 name);
7782 value = 0;
7783 }
7784 else
7785 {
7786 value = default_conversion (value);
7787 constant_expression_warning (value);
7788 }
7789 }
7790 }
7791
7792 /* Default based on previous value. */
7793 /* It should no longer be possible to have NON_LVALUE_EXPR
7794 in the default. */
7795 if (value == 0)
7796 {
7797 value = the_enum->enum_next_value;
7798 if (the_enum->enum_overflow)
7799 error_at (loc, "overflow in enumeration values");
7800 }
7801 /* Even though the underlying type of an enum is unspecified, the
7802 type of enumeration constants is explicitly defined as int
7803 (6.4.4.3/2 in the C99 Standard). GCC allows any integer type as
7804 an extension. */
7805 else if (!int_fits_type_p (value, integer_type_node))
7806 pedwarn (loc, OPT_Wpedantic,
7807 "ISO C restricts enumerator values to range of %<int%>");
7808
7809 /* The ISO C Standard mandates enumerators to have type int, even
7810 though the underlying type of an enum type is unspecified.
7811 However, GCC allows enumerators of any integer type as an
7812 extensions. Here we convert any enumerators that fit in an int
7813 to type int, to avoid promotions to unsigned types when comparing
7814 integers with enumerators that fit in the int range. When
7815 -pedantic is given, we would have already warned about those that
7816 don't fit. We have to do this here rather than in finish_enum
7817 because this value may be used to define more enumerators. */
7818 if (int_fits_type_p (value, integer_type_node))
7819 value = convert (integer_type_node, value);
7820
7821 /* Set basis for default for next value. */
7822 the_enum->enum_next_value
7823 = build_binary_op (EXPR_LOC_OR_LOC (value, input_location),
7824 PLUS_EXPR, value, integer_one_node, 0);
7825 the_enum->enum_overflow = tree_int_cst_lt (the_enum->enum_next_value, value);
7826
7827 /* Now create a declaration for the enum value name. */
7828
7829 type = TREE_TYPE (value);
7830 type = c_common_type_for_size (MAX (TYPE_PRECISION (type),
7831 TYPE_PRECISION (integer_type_node)),
7832 (TYPE_PRECISION (type)
7833 >= TYPE_PRECISION (integer_type_node)
7834 && TYPE_UNSIGNED (type)));
7835
7836 decl = build_decl (decl_loc, CONST_DECL, name, type);
7837 DECL_INITIAL (decl) = convert (type, value);
7838 pushdecl (decl);
7839
7840 return tree_cons (decl, value, NULL_TREE);
7841 }
7842
7843 \f
7844 /* Create the FUNCTION_DECL for a function definition.
7845 DECLSPECS, DECLARATOR and ATTRIBUTES are the parts of
7846 the declaration; they describe the function's name and the type it returns,
7847 but twisted together in a fashion that parallels the syntax of C.
7848
7849 This function creates a binding context for the function body
7850 as well as setting up the FUNCTION_DECL in current_function_decl.
7851
7852 Returns 1 on success. If the DECLARATOR is not suitable for a function
7853 (it defines a datum instead), we return 0, which tells
7854 yyparse to report a parse error. */
7855
7856 int
7857 start_function (struct c_declspecs *declspecs, struct c_declarator *declarator,
7858 tree attributes)
7859 {
7860 tree decl1, old_decl;
7861 tree restype, resdecl;
7862 location_t loc;
7863
7864 current_function_returns_value = 0; /* Assume, until we see it does. */
7865 current_function_returns_null = 0;
7866 current_function_returns_abnormally = 0;
7867 warn_about_return_type = 0;
7868 c_switch_stack = NULL;
7869
7870 /* Indicate no valid break/continue context by setting these variables
7871 to some non-null, non-label value. We'll notice and emit the proper
7872 error message in c_finish_bc_stmt. */
7873 c_break_label = c_cont_label = size_zero_node;
7874
7875 decl1 = grokdeclarator (declarator, declspecs, FUNCDEF, true, NULL,
7876 &attributes, NULL, NULL, DEPRECATED_NORMAL);
7877
7878 /* If the declarator is not suitable for a function definition,
7879 cause a syntax error. */
7880 if (decl1 == 0
7881 || TREE_CODE (decl1) != FUNCTION_DECL)
7882 return 0;
7883
7884 loc = DECL_SOURCE_LOCATION (decl1);
7885
7886 c_decl_attributes (&decl1, attributes, 0);
7887
7888 if (DECL_DECLARED_INLINE_P (decl1)
7889 && DECL_UNINLINABLE (decl1)
7890 && lookup_attribute ("noinline", DECL_ATTRIBUTES (decl1)))
7891 warning_at (loc, OPT_Wattributes,
7892 "inline function %qD given attribute noinline",
7893 decl1);
7894
7895 /* Handle gnu_inline attribute. */
7896 if (declspecs->inline_p
7897 && !flag_gnu89_inline
7898 && TREE_CODE (decl1) == FUNCTION_DECL
7899 && (lookup_attribute ("gnu_inline", DECL_ATTRIBUTES (decl1))
7900 || current_function_decl))
7901 {
7902 if (declspecs->storage_class != csc_static)
7903 DECL_EXTERNAL (decl1) = !DECL_EXTERNAL (decl1);
7904 }
7905
7906 announce_function (decl1);
7907
7908 if (!COMPLETE_OR_VOID_TYPE_P (TREE_TYPE (TREE_TYPE (decl1))))
7909 {
7910 error_at (loc, "return type is an incomplete type");
7911 /* Make it return void instead. */
7912 TREE_TYPE (decl1)
7913 = build_function_type (void_type_node,
7914 TYPE_ARG_TYPES (TREE_TYPE (decl1)));
7915 }
7916
7917 if (warn_about_return_type)
7918 pedwarn_c99 (loc, flag_isoc99 ? 0
7919 : (warn_return_type ? OPT_Wreturn_type : OPT_Wimplicit_int),
7920 "return type defaults to %<int%>");
7921
7922 /* Make the init_value nonzero so pushdecl knows this is not tentative.
7923 error_mark_node is replaced below (in pop_scope) with the BLOCK. */
7924 DECL_INITIAL (decl1) = error_mark_node;
7925
7926 /* A nested function is not global. */
7927 if (current_function_decl != 0)
7928 TREE_PUBLIC (decl1) = 0;
7929
7930 /* If this definition isn't a prototype and we had a prototype declaration
7931 before, copy the arg type info from that prototype. */
7932 old_decl = lookup_name_in_scope (DECL_NAME (decl1), current_scope);
7933 if (old_decl && TREE_CODE (old_decl) != FUNCTION_DECL)
7934 old_decl = 0;
7935 current_function_prototype_locus = UNKNOWN_LOCATION;
7936 current_function_prototype_built_in = false;
7937 current_function_prototype_arg_types = NULL_TREE;
7938 if (!prototype_p (TREE_TYPE (decl1)))
7939 {
7940 if (old_decl != 0 && TREE_CODE (TREE_TYPE (old_decl)) == FUNCTION_TYPE
7941 && comptypes (TREE_TYPE (TREE_TYPE (decl1)),
7942 TREE_TYPE (TREE_TYPE (old_decl))))
7943 {
7944 TREE_TYPE (decl1) = composite_type (TREE_TYPE (old_decl),
7945 TREE_TYPE (decl1));
7946 current_function_prototype_locus = DECL_SOURCE_LOCATION (old_decl);
7947 current_function_prototype_built_in
7948 = C_DECL_BUILTIN_PROTOTYPE (old_decl);
7949 current_function_prototype_arg_types
7950 = TYPE_ARG_TYPES (TREE_TYPE (decl1));
7951 }
7952 if (TREE_PUBLIC (decl1))
7953 {
7954 /* If there is an external prototype declaration of this
7955 function, record its location but do not copy information
7956 to this decl. This may be an invisible declaration
7957 (built-in or in a scope which has finished) or simply
7958 have more refined argument types than any declaration
7959 found above. */
7960 struct c_binding *b;
7961 for (b = I_SYMBOL_BINDING (DECL_NAME (decl1)); b; b = b->shadowed)
7962 if (B_IN_SCOPE (b, external_scope))
7963 break;
7964 if (b)
7965 {
7966 tree ext_decl, ext_type;
7967 ext_decl = b->decl;
7968 ext_type = b->u.type ? b->u.type : TREE_TYPE (ext_decl);
7969 if (TREE_CODE (ext_type) == FUNCTION_TYPE
7970 && comptypes (TREE_TYPE (TREE_TYPE (decl1)),
7971 TREE_TYPE (ext_type)))
7972 {
7973 current_function_prototype_locus
7974 = DECL_SOURCE_LOCATION (ext_decl);
7975 current_function_prototype_built_in
7976 = C_DECL_BUILTIN_PROTOTYPE (ext_decl);
7977 current_function_prototype_arg_types
7978 = TYPE_ARG_TYPES (ext_type);
7979 }
7980 }
7981 }
7982 }
7983
7984 /* Optionally warn of old-fashioned def with no previous prototype. */
7985 if (warn_strict_prototypes
7986 && old_decl != error_mark_node
7987 && !prototype_p (TREE_TYPE (decl1))
7988 && C_DECL_ISNT_PROTOTYPE (old_decl))
7989 warning_at (loc, OPT_Wstrict_prototypes,
7990 "function declaration isn%'t a prototype");
7991 /* Optionally warn of any global def with no previous prototype. */
7992 else if (warn_missing_prototypes
7993 && old_decl != error_mark_node
7994 && TREE_PUBLIC (decl1)
7995 && !MAIN_NAME_P (DECL_NAME (decl1))
7996 && C_DECL_ISNT_PROTOTYPE (old_decl)
7997 && !DECL_DECLARED_INLINE_P (decl1))
7998 warning_at (loc, OPT_Wmissing_prototypes,
7999 "no previous prototype for %qD", decl1);
8000 /* Optionally warn of any def with no previous prototype
8001 if the function has already been used. */
8002 else if (warn_missing_prototypes
8003 && old_decl != 0
8004 && old_decl != error_mark_node
8005 && TREE_USED (old_decl)
8006 && !prototype_p (TREE_TYPE (old_decl)))
8007 warning_at (loc, OPT_Wmissing_prototypes,
8008 "%qD was used with no prototype before its definition", decl1);
8009 /* Optionally warn of any global def with no previous declaration. */
8010 else if (warn_missing_declarations
8011 && TREE_PUBLIC (decl1)
8012 && old_decl == 0
8013 && !MAIN_NAME_P (DECL_NAME (decl1)))
8014 warning_at (loc, OPT_Wmissing_declarations,
8015 "no previous declaration for %qD",
8016 decl1);
8017 /* Optionally warn of any def with no previous declaration
8018 if the function has already been used. */
8019 else if (warn_missing_declarations
8020 && old_decl != 0
8021 && old_decl != error_mark_node
8022 && TREE_USED (old_decl)
8023 && C_DECL_IMPLICIT (old_decl))
8024 warning_at (loc, OPT_Wmissing_declarations,
8025 "%qD was used with no declaration before its definition", decl1);
8026
8027 /* This function exists in static storage.
8028 (This does not mean `static' in the C sense!) */
8029 TREE_STATIC (decl1) = 1;
8030
8031 /* This is the earliest point at which we might know the assembler
8032 name of the function. Thus, if it's set before this, die horribly. */
8033 gcc_assert (!DECL_ASSEMBLER_NAME_SET_P (decl1));
8034
8035 /* If #pragma weak was used, mark the decl weak now. */
8036 if (current_scope == file_scope)
8037 maybe_apply_pragma_weak (decl1);
8038
8039 /* Warn for unlikely, improbable, or stupid declarations of `main'. */
8040 if (warn_main && MAIN_NAME_P (DECL_NAME (decl1)))
8041 {
8042 if (TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (decl1)))
8043 != integer_type_node)
8044 pedwarn (loc, OPT_Wmain, "return type of %qD is not %<int%>", decl1);
8045 else if (TYPE_ATOMIC (TREE_TYPE (TREE_TYPE (decl1))))
8046 pedwarn (loc, OPT_Wmain, "%<_Atomic%>-qualified return type of %qD",
8047 decl1);
8048
8049 check_main_parameter_types (decl1);
8050
8051 if (!TREE_PUBLIC (decl1))
8052 pedwarn (loc, OPT_Wmain,
8053 "%qD is normally a non-static function", decl1);
8054 }
8055
8056 /* Record the decl so that the function name is defined.
8057 If we already have a decl for this name, and it is a FUNCTION_DECL,
8058 use the old decl. */
8059
8060 current_function_decl = pushdecl (decl1);
8061
8062 push_scope ();
8063 declare_parm_level ();
8064
8065 restype = TREE_TYPE (TREE_TYPE (current_function_decl));
8066 resdecl = build_decl (loc, RESULT_DECL, NULL_TREE, restype);
8067 DECL_ARTIFICIAL (resdecl) = 1;
8068 DECL_IGNORED_P (resdecl) = 1;
8069 DECL_RESULT (current_function_decl) = resdecl;
8070
8071 start_fname_decls ();
8072
8073 return 1;
8074 }
8075 \f
8076 /* Subroutine of store_parm_decls which handles new-style function
8077 definitions (prototype format). The parms already have decls, so we
8078 need only record them as in effect and complain if any redundant
8079 old-style parm decls were written. */
8080 static void
8081 store_parm_decls_newstyle (tree fndecl, const struct c_arg_info *arg_info)
8082 {
8083 tree decl;
8084 c_arg_tag *tag;
8085 unsigned ix;
8086
8087 if (current_scope->bindings)
8088 {
8089 error_at (DECL_SOURCE_LOCATION (fndecl),
8090 "old-style parameter declarations in prototyped "
8091 "function definition");
8092
8093 /* Get rid of the old-style declarations. */
8094 pop_scope ();
8095 push_scope ();
8096 }
8097 /* Don't issue this warning for nested functions, and don't issue this
8098 warning if we got here because ARG_INFO_TYPES was error_mark_node
8099 (this happens when a function definition has just an ellipsis in
8100 its parameter list). */
8101 else if (!in_system_header_at (input_location)
8102 && !current_function_scope
8103 && arg_info->types != error_mark_node)
8104 warning_at (DECL_SOURCE_LOCATION (fndecl), OPT_Wtraditional,
8105 "traditional C rejects ISO C style function definitions");
8106
8107 /* Now make all the parameter declarations visible in the function body.
8108 We can bypass most of the grunt work of pushdecl. */
8109 for (decl = arg_info->parms; decl; decl = DECL_CHAIN (decl))
8110 {
8111 DECL_CONTEXT (decl) = current_function_decl;
8112 if (DECL_NAME (decl))
8113 {
8114 bind (DECL_NAME (decl), decl, current_scope,
8115 /*invisible=*/false, /*nested=*/false,
8116 UNKNOWN_LOCATION);
8117 if (!TREE_USED (decl))
8118 warn_if_shadowing (decl);
8119 }
8120 else
8121 error_at (DECL_SOURCE_LOCATION (decl), "parameter name omitted");
8122 }
8123
8124 /* Record the parameter list in the function declaration. */
8125 DECL_ARGUMENTS (fndecl) = arg_info->parms;
8126
8127 /* Now make all the ancillary declarations visible, likewise. */
8128 for (decl = arg_info->others; decl; decl = DECL_CHAIN (decl))
8129 {
8130 DECL_CONTEXT (decl) = current_function_decl;
8131 if (DECL_NAME (decl))
8132 bind (DECL_NAME (decl), decl, current_scope,
8133 /*invisible=*/false,
8134 /*nested=*/(TREE_CODE (decl) == FUNCTION_DECL),
8135 UNKNOWN_LOCATION);
8136 }
8137
8138 /* And all the tag declarations. */
8139 FOR_EACH_VEC_SAFE_ELT_REVERSE (arg_info->tags, ix, tag)
8140 if (tag->id)
8141 bind (tag->id, tag->type, current_scope,
8142 /*invisible=*/false, /*nested=*/false, UNKNOWN_LOCATION);
8143 }
8144
8145 /* Subroutine of store_parm_decls which handles old-style function
8146 definitions (separate parameter list and declarations). */
8147
8148 static void
8149 store_parm_decls_oldstyle (tree fndecl, const struct c_arg_info *arg_info)
8150 {
8151 struct c_binding *b;
8152 tree parm, decl, last;
8153 tree parmids = arg_info->parms;
8154 struct pointer_set_t *seen_args = pointer_set_create ();
8155
8156 if (!in_system_header_at (input_location))
8157 warning_at (DECL_SOURCE_LOCATION (fndecl),
8158 OPT_Wold_style_definition, "old-style function definition");
8159
8160 /* Match each formal parameter name with its declaration. Save each
8161 decl in the appropriate TREE_PURPOSE slot of the parmids chain. */
8162 for (parm = parmids; parm; parm = TREE_CHAIN (parm))
8163 {
8164 if (TREE_VALUE (parm) == 0)
8165 {
8166 error_at (DECL_SOURCE_LOCATION (fndecl),
8167 "parameter name missing from parameter list");
8168 TREE_PURPOSE (parm) = 0;
8169 continue;
8170 }
8171
8172 b = I_SYMBOL_BINDING (TREE_VALUE (parm));
8173 if (b && B_IN_CURRENT_SCOPE (b))
8174 {
8175 decl = b->decl;
8176 /* Skip erroneous parameters. */
8177 if (decl == error_mark_node)
8178 continue;
8179 /* If we got something other than a PARM_DECL it is an error. */
8180 if (TREE_CODE (decl) != PARM_DECL)
8181 error_at (DECL_SOURCE_LOCATION (decl),
8182 "%qD declared as a non-parameter", decl);
8183 /* If the declaration is already marked, we have a duplicate
8184 name. Complain and ignore the duplicate. */
8185 else if (pointer_set_contains (seen_args, decl))
8186 {
8187 error_at (DECL_SOURCE_LOCATION (decl),
8188 "multiple parameters named %qD", decl);
8189 TREE_PURPOSE (parm) = 0;
8190 continue;
8191 }
8192 /* If the declaration says "void", complain and turn it into
8193 an int. */
8194 else if (VOID_TYPE_P (TREE_TYPE (decl)))
8195 {
8196 error_at (DECL_SOURCE_LOCATION (decl),
8197 "parameter %qD declared with void type", decl);
8198 TREE_TYPE (decl) = integer_type_node;
8199 DECL_ARG_TYPE (decl) = integer_type_node;
8200 layout_decl (decl, 0);
8201 }
8202 warn_if_shadowing (decl);
8203 }
8204 /* If no declaration found, default to int. */
8205 else
8206 {
8207 /* FIXME diagnostics: This should be the location of the argument,
8208 not the FNDECL. E.g., for an old-style declaration
8209
8210 int f10(v) { blah; }
8211
8212 We should use the location of the V, not the F10.
8213 Unfortunately, the V is an IDENTIFIER_NODE which has no
8214 location. In the future we need locations for c_arg_info
8215 entries.
8216
8217 See gcc.dg/Wshadow-3.c for an example of this problem. */
8218 decl = build_decl (DECL_SOURCE_LOCATION (fndecl),
8219 PARM_DECL, TREE_VALUE (parm), integer_type_node);
8220 DECL_ARG_TYPE (decl) = TREE_TYPE (decl);
8221 pushdecl (decl);
8222 warn_if_shadowing (decl);
8223
8224 if (flag_isoc99)
8225 pedwarn (DECL_SOURCE_LOCATION (decl),
8226 0, "type of %qD defaults to %<int%>", decl);
8227 else
8228 warning_at (DECL_SOURCE_LOCATION (decl),
8229 OPT_Wmissing_parameter_type,
8230 "type of %qD defaults to %<int%>", decl);
8231 }
8232
8233 TREE_PURPOSE (parm) = decl;
8234 pointer_set_insert (seen_args, decl);
8235 }
8236
8237 /* Now examine the parms chain for incomplete declarations
8238 and declarations with no corresponding names. */
8239
8240 for (b = current_scope->bindings; b; b = b->prev)
8241 {
8242 parm = b->decl;
8243 if (TREE_CODE (parm) != PARM_DECL)
8244 continue;
8245
8246 if (TREE_TYPE (parm) != error_mark_node
8247 && !COMPLETE_TYPE_P (TREE_TYPE (parm)))
8248 {
8249 error_at (DECL_SOURCE_LOCATION (parm),
8250 "parameter %qD has incomplete type", parm);
8251 TREE_TYPE (parm) = error_mark_node;
8252 }
8253
8254 if (!pointer_set_contains (seen_args, parm))
8255 {
8256 error_at (DECL_SOURCE_LOCATION (parm),
8257 "declaration for parameter %qD but no such parameter",
8258 parm);
8259
8260 /* Pretend the parameter was not missing.
8261 This gets us to a standard state and minimizes
8262 further error messages. */
8263 parmids = chainon (parmids, tree_cons (parm, 0, 0));
8264 }
8265 }
8266
8267 /* Chain the declarations together in the order of the list of
8268 names. Store that chain in the function decl, replacing the
8269 list of names. Update the current scope to match. */
8270 DECL_ARGUMENTS (fndecl) = 0;
8271
8272 for (parm = parmids; parm; parm = TREE_CHAIN (parm))
8273 if (TREE_PURPOSE (parm))
8274 break;
8275 if (parm && TREE_PURPOSE (parm))
8276 {
8277 last = TREE_PURPOSE (parm);
8278 DECL_ARGUMENTS (fndecl) = last;
8279
8280 for (parm = TREE_CHAIN (parm); parm; parm = TREE_CHAIN (parm))
8281 if (TREE_PURPOSE (parm))
8282 {
8283 DECL_CHAIN (last) = TREE_PURPOSE (parm);
8284 last = TREE_PURPOSE (parm);
8285 }
8286 DECL_CHAIN (last) = 0;
8287 }
8288
8289 pointer_set_destroy (seen_args);
8290
8291 /* If there was a previous prototype,
8292 set the DECL_ARG_TYPE of each argument according to
8293 the type previously specified, and report any mismatches. */
8294
8295 if (current_function_prototype_arg_types)
8296 {
8297 tree type;
8298 for (parm = DECL_ARGUMENTS (fndecl),
8299 type = current_function_prototype_arg_types;
8300 parm || (type && TREE_VALUE (type) != error_mark_node
8301 && (TYPE_MAIN_VARIANT (TREE_VALUE (type)) != void_type_node));
8302 parm = DECL_CHAIN (parm), type = TREE_CHAIN (type))
8303 {
8304 if (parm == 0 || type == 0
8305 || TYPE_MAIN_VARIANT (TREE_VALUE (type)) == void_type_node)
8306 {
8307 if (current_function_prototype_built_in)
8308 warning_at (DECL_SOURCE_LOCATION (fndecl),
8309 0, "number of arguments doesn%'t match "
8310 "built-in prototype");
8311 else
8312 {
8313 /* FIXME diagnostics: This should be the location of
8314 FNDECL, but there is bug when a prototype is
8315 declared inside function context, but defined
8316 outside of it (e.g., gcc.dg/pr15698-2.c). In
8317 which case FNDECL gets the location of the
8318 prototype, not the definition. */
8319 error_at (input_location,
8320 "number of arguments doesn%'t match prototype");
8321
8322 error_at (current_function_prototype_locus,
8323 "prototype declaration");
8324 }
8325 break;
8326 }
8327 /* Type for passing arg must be consistent with that
8328 declared for the arg. ISO C says we take the unqualified
8329 type for parameters declared with qualified type. */
8330 if (TREE_TYPE (parm) != error_mark_node
8331 && TREE_TYPE (type) != error_mark_node
8332 && ((TYPE_ATOMIC (DECL_ARG_TYPE (parm))
8333 != TYPE_ATOMIC (TREE_VALUE (type)))
8334 || !comptypes (TYPE_MAIN_VARIANT (DECL_ARG_TYPE (parm)),
8335 TYPE_MAIN_VARIANT (TREE_VALUE (type)))))
8336 {
8337 if ((TYPE_ATOMIC (DECL_ARG_TYPE (parm))
8338 == TYPE_ATOMIC (TREE_VALUE (type)))
8339 && (TYPE_MAIN_VARIANT (TREE_TYPE (parm))
8340 == TYPE_MAIN_VARIANT (TREE_VALUE (type))))
8341 {
8342 /* Adjust argument to match prototype. E.g. a previous
8343 `int foo(float);' prototype causes
8344 `int foo(x) float x; {...}' to be treated like
8345 `int foo(float x) {...}'. This is particularly
8346 useful for argument types like uid_t. */
8347 DECL_ARG_TYPE (parm) = TREE_TYPE (parm);
8348
8349 if (targetm.calls.promote_prototypes (TREE_TYPE (current_function_decl))
8350 && INTEGRAL_TYPE_P (TREE_TYPE (parm))
8351 && TYPE_PRECISION (TREE_TYPE (parm))
8352 < TYPE_PRECISION (integer_type_node))
8353 DECL_ARG_TYPE (parm)
8354 = c_type_promotes_to (TREE_TYPE (parm));
8355
8356 /* ??? Is it possible to get here with a
8357 built-in prototype or will it always have
8358 been diagnosed as conflicting with an
8359 old-style definition and discarded? */
8360 if (current_function_prototype_built_in)
8361 warning_at (DECL_SOURCE_LOCATION (parm),
8362 OPT_Wpedantic, "promoted argument %qD "
8363 "doesn%'t match built-in prototype", parm);
8364 else
8365 {
8366 pedwarn (DECL_SOURCE_LOCATION (parm),
8367 OPT_Wpedantic, "promoted argument %qD "
8368 "doesn%'t match prototype", parm);
8369 pedwarn (current_function_prototype_locus, OPT_Wpedantic,
8370 "prototype declaration");
8371 }
8372 }
8373 else
8374 {
8375 if (current_function_prototype_built_in)
8376 warning_at (DECL_SOURCE_LOCATION (parm),
8377 0, "argument %qD doesn%'t match "
8378 "built-in prototype", parm);
8379 else
8380 {
8381 error_at (DECL_SOURCE_LOCATION (parm),
8382 "argument %qD doesn%'t match prototype", parm);
8383 error_at (current_function_prototype_locus,
8384 "prototype declaration");
8385 }
8386 }
8387 }
8388 }
8389 TYPE_ACTUAL_ARG_TYPES (TREE_TYPE (fndecl)) = 0;
8390 }
8391
8392 /* Otherwise, create a prototype that would match. */
8393
8394 else
8395 {
8396 tree actual = 0, last = 0, type;
8397
8398 for (parm = DECL_ARGUMENTS (fndecl); parm; parm = DECL_CHAIN (parm))
8399 {
8400 type = tree_cons (NULL_TREE, DECL_ARG_TYPE (parm), NULL_TREE);
8401 if (last)
8402 TREE_CHAIN (last) = type;
8403 else
8404 actual = type;
8405 last = type;
8406 }
8407 type = tree_cons (NULL_TREE, void_type_node, NULL_TREE);
8408 if (last)
8409 TREE_CHAIN (last) = type;
8410 else
8411 actual = type;
8412
8413 /* We are going to assign a new value for the TYPE_ACTUAL_ARG_TYPES
8414 of the type of this function, but we need to avoid having this
8415 affect the types of other similarly-typed functions, so we must
8416 first force the generation of an identical (but separate) type
8417 node for the relevant function type. The new node we create
8418 will be a variant of the main variant of the original function
8419 type. */
8420
8421 TREE_TYPE (fndecl) = build_variant_type_copy (TREE_TYPE (fndecl));
8422
8423 TYPE_ACTUAL_ARG_TYPES (TREE_TYPE (fndecl)) = actual;
8424 }
8425 }
8426
8427 /* Store parameter declarations passed in ARG_INFO into the current
8428 function declaration. */
8429
8430 void
8431 store_parm_decls_from (struct c_arg_info *arg_info)
8432 {
8433 current_function_arg_info = arg_info;
8434 store_parm_decls ();
8435 }
8436
8437 /* Store the parameter declarations into the current function declaration.
8438 This is called after parsing the parameter declarations, before
8439 digesting the body of the function.
8440
8441 For an old-style definition, construct a prototype out of the old-style
8442 parameter declarations and inject it into the function's type. */
8443
8444 void
8445 store_parm_decls (void)
8446 {
8447 tree fndecl = current_function_decl;
8448 bool proto;
8449
8450 /* The argument information block for FNDECL. */
8451 struct c_arg_info *arg_info = current_function_arg_info;
8452 current_function_arg_info = 0;
8453
8454 /* True if this definition is written with a prototype. Note:
8455 despite C99 6.7.5.3p14, we can *not* treat an empty argument
8456 list in a function definition as equivalent to (void) -- an
8457 empty argument list specifies the function has no parameters,
8458 but only (void) sets up a prototype for future calls. */
8459 proto = arg_info->types != 0;
8460
8461 if (proto)
8462 store_parm_decls_newstyle (fndecl, arg_info);
8463 else
8464 store_parm_decls_oldstyle (fndecl, arg_info);
8465
8466 /* The next call to push_scope will be a function body. */
8467
8468 next_is_function_body = true;
8469
8470 /* Write a record describing this function definition to the prototypes
8471 file (if requested). */
8472
8473 gen_aux_info_record (fndecl, 1, 0, proto);
8474
8475 /* Initialize the RTL code for the function. */
8476 allocate_struct_function (fndecl, false);
8477
8478 if (warn_unused_local_typedefs)
8479 cfun->language = ggc_cleared_alloc<language_function> ();
8480
8481 /* Begin the statement tree for this function. */
8482 DECL_SAVED_TREE (fndecl) = push_stmt_list ();
8483
8484 /* ??? Insert the contents of the pending sizes list into the function
8485 to be evaluated. The only reason left to have this is
8486 void foo(int n, int array[n++])
8487 because we throw away the array type in favor of a pointer type, and
8488 thus won't naturally see the SAVE_EXPR containing the increment. All
8489 other pending sizes would be handled by gimplify_parameters. */
8490 if (arg_info->pending_sizes)
8491 add_stmt (arg_info->pending_sizes);
8492 }
8493
8494 /* Store PARM_DECLs in PARMS into scope temporarily. Used for
8495 c_finish_omp_declare_simd for function prototypes. No diagnostics
8496 should be done. */
8497
8498 void
8499 temp_store_parm_decls (tree fndecl, tree parms)
8500 {
8501 push_scope ();
8502 for (tree p = parms; p; p = DECL_CHAIN (p))
8503 {
8504 DECL_CONTEXT (p) = fndecl;
8505 if (DECL_NAME (p))
8506 bind (DECL_NAME (p), p, current_scope,
8507 /*invisible=*/false, /*nested=*/false,
8508 UNKNOWN_LOCATION);
8509 }
8510 }
8511
8512 /* Undo what temp_store_parm_decls did. */
8513
8514 void
8515 temp_pop_parm_decls (void)
8516 {
8517 /* Clear all bindings in this temporary scope, so that
8518 pop_scope doesn't create a BLOCK. */
8519 struct c_binding *b = current_scope->bindings;
8520 current_scope->bindings = NULL;
8521 for (; b; b = free_binding_and_advance (b))
8522 {
8523 gcc_assert (TREE_CODE (b->decl) == PARM_DECL);
8524 gcc_assert (I_SYMBOL_BINDING (b->id) == b);
8525 I_SYMBOL_BINDING (b->id) = b->shadowed;
8526 if (b->shadowed && b->shadowed->u.type)
8527 TREE_TYPE (b->shadowed->decl) = b->shadowed->u.type;
8528 }
8529 pop_scope ();
8530 }
8531 \f
8532
8533 /* Finish up a function declaration and compile that function
8534 all the way to assembler language output. Then free the storage
8535 for the function definition.
8536
8537 This is called after parsing the body of the function definition. */
8538
8539 void
8540 finish_function (void)
8541 {
8542 tree fndecl = current_function_decl;
8543
8544 if (c_dialect_objc ())
8545 objc_finish_function ();
8546
8547 if (TREE_CODE (fndecl) == FUNCTION_DECL
8548 && targetm.calls.promote_prototypes (TREE_TYPE (fndecl)))
8549 {
8550 tree args = DECL_ARGUMENTS (fndecl);
8551 for (; args; args = DECL_CHAIN (args))
8552 {
8553 tree type = TREE_TYPE (args);
8554 if (INTEGRAL_TYPE_P (type)
8555 && TYPE_PRECISION (type) < TYPE_PRECISION (integer_type_node))
8556 DECL_ARG_TYPE (args) = c_type_promotes_to (type);
8557 }
8558 }
8559
8560 if (DECL_INITIAL (fndecl) && DECL_INITIAL (fndecl) != error_mark_node)
8561 BLOCK_SUPERCONTEXT (DECL_INITIAL (fndecl)) = fndecl;
8562
8563 /* Must mark the RESULT_DECL as being in this function. */
8564
8565 if (DECL_RESULT (fndecl) && DECL_RESULT (fndecl) != error_mark_node)
8566 DECL_CONTEXT (DECL_RESULT (fndecl)) = fndecl;
8567
8568 if (MAIN_NAME_P (DECL_NAME (fndecl)) && flag_hosted
8569 && TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (fndecl)))
8570 == integer_type_node && flag_isoc99)
8571 {
8572 /* Hack. We don't want the middle-end to warn that this return
8573 is unreachable, so we mark its location as special. Using
8574 UNKNOWN_LOCATION has the problem that it gets clobbered in
8575 annotate_one_with_locus. A cleaner solution might be to
8576 ensure ! should_carry_locus_p (stmt), but that needs a flag.
8577 */
8578 c_finish_return (BUILTINS_LOCATION, integer_zero_node, NULL_TREE);
8579 }
8580
8581 /* Tie off the statement tree for this function. */
8582 DECL_SAVED_TREE (fndecl) = pop_stmt_list (DECL_SAVED_TREE (fndecl));
8583
8584 /* If the function has _Cilk_spawn in front of a function call inside it
8585 i.e. it is a spawning function, then add the appropriate Cilk plus
8586 functions inside. */
8587 if (fn_contains_cilk_spawn_p (cfun))
8588 cfun->cilk_frame_decl = insert_cilk_frame (fndecl);
8589
8590 finish_fname_decls ();
8591
8592 /* Complain if there's just no return statement. */
8593 if (warn_return_type
8594 && TREE_CODE (TREE_TYPE (TREE_TYPE (fndecl))) != VOID_TYPE
8595 && !current_function_returns_value && !current_function_returns_null
8596 /* Don't complain if we are no-return. */
8597 && !current_function_returns_abnormally
8598 /* Don't complain if we are declared noreturn. */
8599 && !TREE_THIS_VOLATILE (fndecl)
8600 /* Don't warn for main(). */
8601 && !MAIN_NAME_P (DECL_NAME (fndecl))
8602 /* Or if they didn't actually specify a return type. */
8603 && !C_FUNCTION_IMPLICIT_INT (fndecl)
8604 /* Normally, with -Wreturn-type, flow will complain, but we might
8605 optimize out static functions. */
8606 && !TREE_PUBLIC (fndecl))
8607 {
8608 warning (OPT_Wreturn_type,
8609 "no return statement in function returning non-void");
8610 TREE_NO_WARNING (fndecl) = 1;
8611 }
8612
8613 /* Complain about parameters that are only set, but never otherwise used. */
8614 if (warn_unused_but_set_parameter)
8615 {
8616 tree decl;
8617
8618 for (decl = DECL_ARGUMENTS (fndecl);
8619 decl;
8620 decl = DECL_CHAIN (decl))
8621 if (TREE_USED (decl)
8622 && TREE_CODE (decl) == PARM_DECL
8623 && !DECL_READ_P (decl)
8624 && DECL_NAME (decl)
8625 && !DECL_ARTIFICIAL (decl)
8626 && !TREE_NO_WARNING (decl))
8627 warning_at (DECL_SOURCE_LOCATION (decl),
8628 OPT_Wunused_but_set_parameter,
8629 "parameter %qD set but not used", decl);
8630 }
8631
8632 /* Complain about locally defined typedefs that are not used in this
8633 function. */
8634 maybe_warn_unused_local_typedefs ();
8635
8636 /* Store the end of the function, so that we get good line number
8637 info for the epilogue. */
8638 cfun->function_end_locus = input_location;
8639
8640 /* Finalize the ELF visibility for the function. */
8641 c_determine_visibility (fndecl);
8642
8643 /* For GNU C extern inline functions disregard inline limits. */
8644 if (DECL_EXTERNAL (fndecl)
8645 && DECL_DECLARED_INLINE_P (fndecl))
8646 DECL_DISREGARD_INLINE_LIMITS (fndecl) = 1;
8647
8648 /* Genericize before inlining. Delay genericizing nested functions
8649 until their parent function is genericized. Since finalizing
8650 requires GENERIC, delay that as well. */
8651
8652 if (DECL_INITIAL (fndecl) && DECL_INITIAL (fndecl) != error_mark_node
8653 && !undef_nested_function)
8654 {
8655 if (!decl_function_context (fndecl))
8656 {
8657 invoke_plugin_callbacks (PLUGIN_PRE_GENERICIZE, fndecl);
8658 c_genericize (fndecl);
8659
8660 /* ??? Objc emits functions after finalizing the compilation unit.
8661 This should be cleaned up later and this conditional removed. */
8662 if (cgraph_global_info_ready)
8663 {
8664 cgraph_add_new_function (fndecl, false);
8665 return;
8666 }
8667 cgraph_finalize_function (fndecl, false);
8668 }
8669 else
8670 {
8671 /* Register this function with cgraph just far enough to get it
8672 added to our parent's nested function list. Handy, since the
8673 C front end doesn't have such a list. */
8674 (void) cgraph_get_create_node (fndecl);
8675 }
8676 }
8677
8678 if (!decl_function_context (fndecl))
8679 undef_nested_function = false;
8680
8681 if (cfun->language != NULL)
8682 {
8683 ggc_free (cfun->language);
8684 cfun->language = NULL;
8685 }
8686
8687 /* We're leaving the context of this function, so zap cfun.
8688 It's still in DECL_STRUCT_FUNCTION, and we'll restore it in
8689 tree_rest_of_compilation. */
8690 set_cfun (NULL);
8691 current_function_decl = NULL;
8692 }
8693 \f
8694 /* Check the declarations given in a for-loop for satisfying the C99
8695 constraints. If exactly one such decl is found, return it. LOC is
8696 the location of the opening parenthesis of the for loop. The last
8697 parameter allows you to control the "for loop initial declarations
8698 are only allowed in C99 mode". Normally, you should pass
8699 flag_isoc99 as that parameter. But in some cases (Objective-C
8700 foreach loop, for example) we want to run the checks in this
8701 function even if not in C99 mode, so we allow the caller to turn
8702 off the error about not being in C99 mode.
8703 */
8704
8705 tree
8706 check_for_loop_decls (location_t loc, bool turn_off_iso_c99_error)
8707 {
8708 struct c_binding *b;
8709 tree one_decl = NULL_TREE;
8710 int n_decls = 0;
8711
8712 if (!turn_off_iso_c99_error)
8713 {
8714 static bool hint = true;
8715 /* If we get here, declarations have been used in a for loop without
8716 the C99 for loop scope. This doesn't make much sense, so don't
8717 allow it. */
8718 error_at (loc, "%<for%> loop initial declarations "
8719 "are only allowed in C99 or C11 mode");
8720 if (hint)
8721 {
8722 inform (loc,
8723 "use option -std=c99, -std=gnu99, -std=c11 or -std=gnu11 "
8724 "to compile your code");
8725 hint = false;
8726 }
8727 return NULL_TREE;
8728 }
8729 /* C99 subclause 6.8.5 paragraph 3:
8730
8731 [#3] The declaration part of a for statement shall only
8732 declare identifiers for objects having storage class auto or
8733 register.
8734
8735 It isn't clear whether, in this sentence, "identifiers" binds to
8736 "shall only declare" or to "objects" - that is, whether all identifiers
8737 declared must be identifiers for objects, or whether the restriction
8738 only applies to those that are. (A question on this in comp.std.c
8739 in November 2000 received no answer.) We implement the strictest
8740 interpretation, to avoid creating an extension which later causes
8741 problems. */
8742
8743 for (b = current_scope->bindings; b; b = b->prev)
8744 {
8745 tree id = b->id;
8746 tree decl = b->decl;
8747
8748 if (!id)
8749 continue;
8750
8751 switch (TREE_CODE (decl))
8752 {
8753 case VAR_DECL:
8754 {
8755 location_t decl_loc = DECL_SOURCE_LOCATION (decl);
8756 if (TREE_STATIC (decl))
8757 error_at (decl_loc,
8758 "declaration of static variable %qD in %<for%> loop "
8759 "initial declaration", decl);
8760 else if (DECL_EXTERNAL (decl))
8761 error_at (decl_loc,
8762 "declaration of %<extern%> variable %qD in %<for%> loop "
8763 "initial declaration", decl);
8764 }
8765 break;
8766
8767 case RECORD_TYPE:
8768 error_at (loc,
8769 "%<struct %E%> declared in %<for%> loop initial "
8770 "declaration", id);
8771 break;
8772 case UNION_TYPE:
8773 error_at (loc,
8774 "%<union %E%> declared in %<for%> loop initial declaration",
8775 id);
8776 break;
8777 case ENUMERAL_TYPE:
8778 error_at (loc, "%<enum %E%> declared in %<for%> loop "
8779 "initial declaration", id);
8780 break;
8781 default:
8782 error_at (loc, "declaration of non-variable "
8783 "%qD in %<for%> loop initial declaration", decl);
8784 }
8785
8786 n_decls++;
8787 one_decl = decl;
8788 }
8789
8790 return n_decls == 1 ? one_decl : NULL_TREE;
8791 }
8792 \f
8793 /* Save and reinitialize the variables
8794 used during compilation of a C function. */
8795
8796 void
8797 c_push_function_context (void)
8798 {
8799 struct language_function *p = cfun->language;
8800 /* cfun->language might have been already allocated by the use of
8801 -Wunused-local-typedefs. In that case, just re-use it. */
8802 if (p == NULL)
8803 cfun->language = p = ggc_cleared_alloc<language_function> ();
8804
8805 p->base.x_stmt_tree = c_stmt_tree;
8806 c_stmt_tree.x_cur_stmt_list = vec_safe_copy (c_stmt_tree.x_cur_stmt_list);
8807 p->x_break_label = c_break_label;
8808 p->x_cont_label = c_cont_label;
8809 p->x_switch_stack = c_switch_stack;
8810 p->arg_info = current_function_arg_info;
8811 p->returns_value = current_function_returns_value;
8812 p->returns_null = current_function_returns_null;
8813 p->returns_abnormally = current_function_returns_abnormally;
8814 p->warn_about_return_type = warn_about_return_type;
8815
8816 push_function_context ();
8817 }
8818
8819 /* Restore the variables used during compilation of a C function. */
8820
8821 void
8822 c_pop_function_context (void)
8823 {
8824 struct language_function *p;
8825
8826 pop_function_context ();
8827 p = cfun->language;
8828
8829 /* When -Wunused-local-typedefs is in effect, cfun->languages is
8830 used to store data throughout the life time of the current cfun,
8831 So don't deallocate it. */
8832 if (!warn_unused_local_typedefs)
8833 cfun->language = NULL;
8834
8835 if (DECL_STRUCT_FUNCTION (current_function_decl) == 0
8836 && DECL_SAVED_TREE (current_function_decl) == NULL_TREE)
8837 {
8838 /* Stop pointing to the local nodes about to be freed. */
8839 /* But DECL_INITIAL must remain nonzero so we know this
8840 was an actual function definition. */
8841 DECL_INITIAL (current_function_decl) = error_mark_node;
8842 DECL_ARGUMENTS (current_function_decl) = 0;
8843 }
8844
8845 c_stmt_tree = p->base.x_stmt_tree;
8846 p->base.x_stmt_tree.x_cur_stmt_list = NULL;
8847 c_break_label = p->x_break_label;
8848 c_cont_label = p->x_cont_label;
8849 c_switch_stack = p->x_switch_stack;
8850 current_function_arg_info = p->arg_info;
8851 current_function_returns_value = p->returns_value;
8852 current_function_returns_null = p->returns_null;
8853 current_function_returns_abnormally = p->returns_abnormally;
8854 warn_about_return_type = p->warn_about_return_type;
8855 }
8856
8857 /* The functions below are required for functionality of doing
8858 function at once processing in the C front end. Currently these
8859 functions are not called from anywhere in the C front end, but as
8860 these changes continue, that will change. */
8861
8862 /* Returns the stmt_tree (if any) to which statements are currently
8863 being added. If there is no active statement-tree, NULL is
8864 returned. */
8865
8866 stmt_tree
8867 current_stmt_tree (void)
8868 {
8869 return &c_stmt_tree;
8870 }
8871
8872 /* Return the global value of T as a symbol. */
8873
8874 tree
8875 identifier_global_value (tree t)
8876 {
8877 struct c_binding *b;
8878
8879 for (b = I_SYMBOL_BINDING (t); b; b = b->shadowed)
8880 if (B_IN_FILE_SCOPE (b) || B_IN_EXTERNAL_SCOPE (b))
8881 return b->decl;
8882
8883 return 0;
8884 }
8885
8886 /* In C, the only C-linkage public declaration is at file scope. */
8887
8888 tree
8889 c_linkage_bindings (tree name)
8890 {
8891 return identifier_global_value (name);
8892 }
8893
8894 /* Record a builtin type for C. If NAME is non-NULL, it is the name used;
8895 otherwise the name is found in ridpointers from RID_INDEX. */
8896
8897 void
8898 record_builtin_type (enum rid rid_index, const char *name, tree type)
8899 {
8900 tree id, decl;
8901 if (name == 0)
8902 id = ridpointers[(int) rid_index];
8903 else
8904 id = get_identifier (name);
8905 decl = build_decl (UNKNOWN_LOCATION, TYPE_DECL, id, type);
8906 pushdecl (decl);
8907 if (debug_hooks->type_decl)
8908 debug_hooks->type_decl (decl, false);
8909 }
8910
8911 /* Build the void_list_node (void_type_node having been created). */
8912 tree
8913 build_void_list_node (void)
8914 {
8915 tree t = build_tree_list (NULL_TREE, void_type_node);
8916 return t;
8917 }
8918
8919 /* Return a c_parm structure with the given SPECS, ATTRS and DECLARATOR. */
8920
8921 struct c_parm *
8922 build_c_parm (struct c_declspecs *specs, tree attrs,
8923 struct c_declarator *declarator)
8924 {
8925 struct c_parm *ret = XOBNEW (&parser_obstack, struct c_parm);
8926 ret->specs = specs;
8927 ret->attrs = attrs;
8928 ret->declarator = declarator;
8929 return ret;
8930 }
8931
8932 /* Return a declarator with nested attributes. TARGET is the inner
8933 declarator to which these attributes apply. ATTRS are the
8934 attributes. */
8935
8936 struct c_declarator *
8937 build_attrs_declarator (tree attrs, struct c_declarator *target)
8938 {
8939 struct c_declarator *ret = XOBNEW (&parser_obstack, struct c_declarator);
8940 ret->kind = cdk_attrs;
8941 ret->declarator = target;
8942 ret->u.attrs = attrs;
8943 return ret;
8944 }
8945
8946 /* Return a declarator for a function with arguments specified by ARGS
8947 and return type specified by TARGET. */
8948
8949 struct c_declarator *
8950 build_function_declarator (struct c_arg_info *args,
8951 struct c_declarator *target)
8952 {
8953 struct c_declarator *ret = XOBNEW (&parser_obstack, struct c_declarator);
8954 ret->kind = cdk_function;
8955 ret->declarator = target;
8956 ret->u.arg_info = args;
8957 return ret;
8958 }
8959
8960 /* Return a declarator for the identifier IDENT (which may be
8961 NULL_TREE for an abstract declarator). */
8962
8963 struct c_declarator *
8964 build_id_declarator (tree ident)
8965 {
8966 struct c_declarator *ret = XOBNEW (&parser_obstack, struct c_declarator);
8967 ret->kind = cdk_id;
8968 ret->declarator = 0;
8969 ret->u.id = ident;
8970 /* Default value - may get reset to a more precise location. */
8971 ret->id_loc = input_location;
8972 return ret;
8973 }
8974
8975 /* Return something to represent absolute declarators containing a *.
8976 TARGET is the absolute declarator that the * contains.
8977 TYPE_QUALS_ATTRS is a structure for type qualifiers and attributes
8978 to apply to the pointer type. */
8979
8980 struct c_declarator *
8981 make_pointer_declarator (struct c_declspecs *type_quals_attrs,
8982 struct c_declarator *target)
8983 {
8984 tree attrs;
8985 int quals = 0;
8986 struct c_declarator *itarget = target;
8987 struct c_declarator *ret = XOBNEW (&parser_obstack, struct c_declarator);
8988 if (type_quals_attrs)
8989 {
8990 attrs = type_quals_attrs->attrs;
8991 quals = quals_from_declspecs (type_quals_attrs);
8992 if (attrs != NULL_TREE)
8993 itarget = build_attrs_declarator (attrs, target);
8994 }
8995 ret->kind = cdk_pointer;
8996 ret->declarator = itarget;
8997 ret->u.pointer_quals = quals;
8998 return ret;
8999 }
9000
9001 /* Return a pointer to a structure for an empty list of declaration
9002 specifiers. */
9003
9004 struct c_declspecs *
9005 build_null_declspecs (void)
9006 {
9007 struct c_declspecs *ret = XOBNEW (&parser_obstack, struct c_declspecs);
9008 memset (&ret->locations, 0, cdw_number_of_elements);
9009 ret->type = 0;
9010 ret->expr = 0;
9011 ret->decl_attr = 0;
9012 ret->attrs = 0;
9013 ret->align_log = -1;
9014 ret->typespec_word = cts_none;
9015 ret->storage_class = csc_none;
9016 ret->expr_const_operands = true;
9017 ret->declspecs_seen_p = false;
9018 ret->typespec_kind = ctsk_none;
9019 ret->non_sc_seen_p = false;
9020 ret->typedef_p = false;
9021 ret->explicit_signed_p = false;
9022 ret->deprecated_p = false;
9023 ret->default_int_p = false;
9024 ret->long_p = false;
9025 ret->long_long_p = false;
9026 ret->short_p = false;
9027 ret->signed_p = false;
9028 ret->unsigned_p = false;
9029 ret->complex_p = false;
9030 ret->inline_p = false;
9031 ret->noreturn_p = false;
9032 ret->thread_p = false;
9033 ret->thread_gnu_p = false;
9034 ret->const_p = false;
9035 ret->volatile_p = false;
9036 ret->atomic_p = false;
9037 ret->restrict_p = false;
9038 ret->saturating_p = false;
9039 ret->alignas_p = false;
9040 ret->address_space = ADDR_SPACE_GENERIC;
9041 return ret;
9042 }
9043
9044 /* Add the address space ADDRSPACE to the declaration specifiers
9045 SPECS, returning SPECS. */
9046
9047 struct c_declspecs *
9048 declspecs_add_addrspace (source_location location,
9049 struct c_declspecs *specs, addr_space_t as)
9050 {
9051 specs->non_sc_seen_p = true;
9052 specs->declspecs_seen_p = true;
9053
9054 if (!ADDR_SPACE_GENERIC_P (specs->address_space)
9055 && specs->address_space != as)
9056 error ("incompatible address space qualifiers %qs and %qs",
9057 c_addr_space_name (as),
9058 c_addr_space_name (specs->address_space));
9059 else
9060 {
9061 specs->address_space = as;
9062 specs->locations[cdw_address_space] = location;
9063 }
9064 return specs;
9065 }
9066
9067 /* Add the type qualifier QUAL to the declaration specifiers SPECS,
9068 returning SPECS. */
9069
9070 struct c_declspecs *
9071 declspecs_add_qual (source_location loc,
9072 struct c_declspecs *specs, tree qual)
9073 {
9074 enum rid i;
9075 bool dupe = false;
9076 specs->non_sc_seen_p = true;
9077 specs->declspecs_seen_p = true;
9078 gcc_assert (TREE_CODE (qual) == IDENTIFIER_NODE
9079 && C_IS_RESERVED_WORD (qual));
9080 i = C_RID_CODE (qual);
9081 switch (i)
9082 {
9083 case RID_CONST:
9084 dupe = specs->const_p;
9085 specs->const_p = true;
9086 specs->locations[cdw_const] = loc;
9087 break;
9088 case RID_VOLATILE:
9089 dupe = specs->volatile_p;
9090 specs->volatile_p = true;
9091 specs->locations[cdw_volatile] = loc;
9092 break;
9093 case RID_RESTRICT:
9094 dupe = specs->restrict_p;
9095 specs->restrict_p = true;
9096 specs->locations[cdw_restrict] = loc;
9097 break;
9098 case RID_ATOMIC:
9099 dupe = specs->atomic_p;
9100 specs->atomic_p = true;
9101 break;
9102 default:
9103 gcc_unreachable ();
9104 }
9105 if (dupe && !flag_isoc99)
9106 pedwarn (loc, OPT_Wpedantic, "duplicate %qE", qual);
9107 return specs;
9108 }
9109
9110 /* Add the type specifier TYPE to the declaration specifiers SPECS,
9111 returning SPECS. */
9112
9113 struct c_declspecs *
9114 declspecs_add_type (location_t loc, struct c_declspecs *specs,
9115 struct c_typespec spec)
9116 {
9117 tree type = spec.spec;
9118 specs->non_sc_seen_p = true;
9119 specs->declspecs_seen_p = true;
9120 specs->typespec_kind = spec.kind;
9121 if (TREE_DEPRECATED (type))
9122 specs->deprecated_p = true;
9123
9124 /* Handle type specifier keywords. */
9125 if (TREE_CODE (type) == IDENTIFIER_NODE
9126 && C_IS_RESERVED_WORD (type)
9127 && C_RID_CODE (type) != RID_CXX_COMPAT_WARN)
9128 {
9129 enum rid i = C_RID_CODE (type);
9130 if (specs->type)
9131 {
9132 error_at (loc, "two or more data types in declaration specifiers");
9133 return specs;
9134 }
9135 if ((int) i <= (int) RID_LAST_MODIFIER)
9136 {
9137 /* "long", "short", "signed", "unsigned", "_Complex" or "_Sat". */
9138 bool dupe = false;
9139 switch (i)
9140 {
9141 case RID_LONG:
9142 if (specs->long_long_p)
9143 {
9144 error_at (loc, "%<long long long%> is too long for GCC");
9145 break;
9146 }
9147 if (specs->long_p)
9148 {
9149 if (specs->typespec_word == cts_double)
9150 {
9151 error_at (loc,
9152 ("both %<long long%> and %<double%> in "
9153 "declaration specifiers"));
9154 break;
9155 }
9156 pedwarn_c90 (loc, OPT_Wlong_long,
9157 "ISO C90 does not support %<long long%>");
9158 specs->long_long_p = 1;
9159 specs->locations[cdw_long_long] = loc;
9160 break;
9161 }
9162 if (specs->short_p)
9163 error_at (loc,
9164 ("both %<long%> and %<short%> in "
9165 "declaration specifiers"));
9166 else if (specs->typespec_word == cts_auto_type)
9167 error_at (loc,
9168 ("both %<long%> and %<__auto_type%> in "
9169 "declaration specifiers"));
9170 else if (specs->typespec_word == cts_void)
9171 error_at (loc,
9172 ("both %<long%> and %<void%> in "
9173 "declaration specifiers"));
9174 else if (specs->typespec_word == cts_int128)
9175 error_at (loc,
9176 ("both %<long%> and %<__int128%> in "
9177 "declaration specifiers"));
9178 else if (specs->typespec_word == cts_bool)
9179 error_at (loc,
9180 ("both %<long%> and %<_Bool%> in "
9181 "declaration specifiers"));
9182 else if (specs->typespec_word == cts_char)
9183 error_at (loc,
9184 ("both %<long%> and %<char%> in "
9185 "declaration specifiers"));
9186 else if (specs->typespec_word == cts_float)
9187 error_at (loc,
9188 ("both %<long%> and %<float%> in "
9189 "declaration specifiers"));
9190 else if (specs->typespec_word == cts_dfloat32)
9191 error_at (loc,
9192 ("both %<long%> and %<_Decimal32%> in "
9193 "declaration specifiers"));
9194 else if (specs->typespec_word == cts_dfloat64)
9195 error_at (loc,
9196 ("both %<long%> and %<_Decimal64%> in "
9197 "declaration specifiers"));
9198 else if (specs->typespec_word == cts_dfloat128)
9199 error_at (loc,
9200 ("both %<long%> and %<_Decimal128%> in "
9201 "declaration specifiers"));
9202 else
9203 {
9204 specs->long_p = true;
9205 specs->locations[cdw_long] = loc;
9206 }
9207 break;
9208 case RID_SHORT:
9209 dupe = specs->short_p;
9210 if (specs->long_p)
9211 error_at (loc,
9212 ("both %<long%> and %<short%> in "
9213 "declaration specifiers"));
9214 else if (specs->typespec_word == cts_auto_type)
9215 error_at (loc,
9216 ("both %<short%> and %<__auto_type%> in "
9217 "declaration specifiers"));
9218 else if (specs->typespec_word == cts_void)
9219 error_at (loc,
9220 ("both %<short%> and %<void%> in "
9221 "declaration specifiers"));
9222 else if (specs->typespec_word == cts_int128)
9223 error_at (loc,
9224 ("both %<short%> and %<__int128%> in "
9225 "declaration specifiers"));
9226 else if (specs->typespec_word == cts_bool)
9227 error_at (loc,
9228 ("both %<short%> and %<_Bool%> in "
9229 "declaration specifiers"));
9230 else if (specs->typespec_word == cts_char)
9231 error_at (loc,
9232 ("both %<short%> and %<char%> in "
9233 "declaration specifiers"));
9234 else if (specs->typespec_word == cts_float)
9235 error_at (loc,
9236 ("both %<short%> and %<float%> in "
9237 "declaration specifiers"));
9238 else if (specs->typespec_word == cts_double)
9239 error_at (loc,
9240 ("both %<short%> and %<double%> in "
9241 "declaration specifiers"));
9242 else if (specs->typespec_word == cts_dfloat32)
9243 error_at (loc,
9244 ("both %<short%> and %<_Decimal32%> in "
9245 "declaration specifiers"));
9246 else if (specs->typespec_word == cts_dfloat64)
9247 error_at (loc,
9248 ("both %<short%> and %<_Decimal64%> in "
9249 "declaration specifiers"));
9250 else if (specs->typespec_word == cts_dfloat128)
9251 error_at (loc,
9252 ("both %<short%> and %<_Decimal128%> in "
9253 "declaration specifiers"));
9254 else
9255 {
9256 specs->short_p = true;
9257 specs->locations[cdw_short] = loc;
9258 }
9259 break;
9260 case RID_SIGNED:
9261 dupe = specs->signed_p;
9262 if (specs->unsigned_p)
9263 error_at (loc,
9264 ("both %<signed%> and %<unsigned%> in "
9265 "declaration specifiers"));
9266 else if (specs->typespec_word == cts_auto_type)
9267 error_at (loc,
9268 ("both %<signed%> and %<__auto_type%> in "
9269 "declaration specifiers"));
9270 else if (specs->typespec_word == cts_void)
9271 error_at (loc,
9272 ("both %<signed%> and %<void%> in "
9273 "declaration specifiers"));
9274 else if (specs->typespec_word == cts_bool)
9275 error_at (loc,
9276 ("both %<signed%> and %<_Bool%> in "
9277 "declaration specifiers"));
9278 else if (specs->typespec_word == cts_float)
9279 error_at (loc,
9280 ("both %<signed%> and %<float%> in "
9281 "declaration specifiers"));
9282 else if (specs->typespec_word == cts_double)
9283 error_at (loc,
9284 ("both %<signed%> and %<double%> in "
9285 "declaration specifiers"));
9286 else if (specs->typespec_word == cts_dfloat32)
9287 error_at (loc,
9288 ("both %<signed%> and %<_Decimal32%> in "
9289 "declaration specifiers"));
9290 else if (specs->typespec_word == cts_dfloat64)
9291 error_at (loc,
9292 ("both %<signed%> and %<_Decimal64%> in "
9293 "declaration specifiers"));
9294 else if (specs->typespec_word == cts_dfloat128)
9295 error_at (loc,
9296 ("both %<signed%> and %<_Decimal128%> in "
9297 "declaration specifiers"));
9298 else
9299 {
9300 specs->signed_p = true;
9301 specs->locations[cdw_signed] = loc;
9302 }
9303 break;
9304 case RID_UNSIGNED:
9305 dupe = specs->unsigned_p;
9306 if (specs->signed_p)
9307 error_at (loc,
9308 ("both %<signed%> and %<unsigned%> in "
9309 "declaration specifiers"));
9310 else if (specs->typespec_word == cts_auto_type)
9311 error_at (loc,
9312 ("both %<unsigned%> and %<__auto_type%> in "
9313 "declaration specifiers"));
9314 else if (specs->typespec_word == cts_void)
9315 error_at (loc,
9316 ("both %<unsigned%> and %<void%> in "
9317 "declaration specifiers"));
9318 else if (specs->typespec_word == cts_bool)
9319 error_at (loc,
9320 ("both %<unsigned%> and %<_Bool%> in "
9321 "declaration specifiers"));
9322 else if (specs->typespec_word == cts_float)
9323 error_at (loc,
9324 ("both %<unsigned%> and %<float%> in "
9325 "declaration specifiers"));
9326 else if (specs->typespec_word == cts_double)
9327 error_at (loc,
9328 ("both %<unsigned%> and %<double%> in "
9329 "declaration specifiers"));
9330 else if (specs->typespec_word == cts_dfloat32)
9331 error_at (loc,
9332 ("both %<unsigned%> and %<_Decimal32%> in "
9333 "declaration specifiers"));
9334 else if (specs->typespec_word == cts_dfloat64)
9335 error_at (loc,
9336 ("both %<unsigned%> and %<_Decimal64%> in "
9337 "declaration specifiers"));
9338 else if (specs->typespec_word == cts_dfloat128)
9339 error_at (loc,
9340 ("both %<unsigned%> and %<_Decimal128%> in "
9341 "declaration specifiers"));
9342 else
9343 {
9344 specs->unsigned_p = true;
9345 specs->locations[cdw_unsigned] = loc;
9346 }
9347 break;
9348 case RID_COMPLEX:
9349 dupe = specs->complex_p;
9350 if (!flag_isoc99 && !in_system_header_at (loc))
9351 pedwarn (loc, OPT_Wpedantic,
9352 "ISO C90 does not support complex types");
9353 if (specs->typespec_word == cts_auto_type)
9354 error_at (loc,
9355 ("both %<complex%> and %<__auto_type%> in "
9356 "declaration specifiers"));
9357 else if (specs->typespec_word == cts_void)
9358 error_at (loc,
9359 ("both %<complex%> and %<void%> in "
9360 "declaration specifiers"));
9361 else if (specs->typespec_word == cts_bool)
9362 error_at (loc,
9363 ("both %<complex%> and %<_Bool%> in "
9364 "declaration specifiers"));
9365 else if (specs->typespec_word == cts_dfloat32)
9366 error_at (loc,
9367 ("both %<complex%> and %<_Decimal32%> in "
9368 "declaration specifiers"));
9369 else if (specs->typespec_word == cts_dfloat64)
9370 error_at (loc,
9371 ("both %<complex%> and %<_Decimal64%> in "
9372 "declaration specifiers"));
9373 else if (specs->typespec_word == cts_dfloat128)
9374 error_at (loc,
9375 ("both %<complex%> and %<_Decimal128%> in "
9376 "declaration specifiers"));
9377 else if (specs->typespec_word == cts_fract)
9378 error_at (loc,
9379 ("both %<complex%> and %<_Fract%> in "
9380 "declaration specifiers"));
9381 else if (specs->typespec_word == cts_accum)
9382 error_at (loc,
9383 ("both %<complex%> and %<_Accum%> in "
9384 "declaration specifiers"));
9385 else if (specs->saturating_p)
9386 error_at (loc,
9387 ("both %<complex%> and %<_Sat%> in "
9388 "declaration specifiers"));
9389 else
9390 {
9391 specs->complex_p = true;
9392 specs->locations[cdw_complex] = loc;
9393 }
9394 break;
9395 case RID_SAT:
9396 dupe = specs->saturating_p;
9397 pedwarn (loc, OPT_Wpedantic,
9398 "ISO C does not support saturating types");
9399 if (specs->typespec_word == cts_int128)
9400 {
9401 error_at (loc,
9402 ("both %<_Sat%> and %<__int128%> in "
9403 "declaration specifiers"));
9404 }
9405 else if (specs->typespec_word == cts_auto_type)
9406 error_at (loc,
9407 ("both %<_Sat%> and %<__auto_type%> in "
9408 "declaration specifiers"));
9409 else if (specs->typespec_word == cts_void)
9410 error_at (loc,
9411 ("both %<_Sat%> and %<void%> in "
9412 "declaration specifiers"));
9413 else if (specs->typespec_word == cts_bool)
9414 error_at (loc,
9415 ("both %<_Sat%> and %<_Bool%> in "
9416 "declaration specifiers"));
9417 else if (specs->typespec_word == cts_char)
9418 error_at (loc,
9419 ("both %<_Sat%> and %<char%> in "
9420 "declaration specifiers"));
9421 else if (specs->typespec_word == cts_int)
9422 error_at (loc,
9423 ("both %<_Sat%> and %<int%> in "
9424 "declaration specifiers"));
9425 else if (specs->typespec_word == cts_float)
9426 error_at (loc,
9427 ("both %<_Sat%> and %<float%> in "
9428 "declaration specifiers"));
9429 else if (specs->typespec_word == cts_double)
9430 error_at (loc,
9431 ("both %<_Sat%> and %<double%> in "
9432 "declaration specifiers"));
9433 else if (specs->typespec_word == cts_dfloat32)
9434 error_at (loc,
9435 ("both %<_Sat%> and %<_Decimal32%> in "
9436 "declaration specifiers"));
9437 else if (specs->typespec_word == cts_dfloat64)
9438 error_at (loc,
9439 ("both %<_Sat%> and %<_Decimal64%> in "
9440 "declaration specifiers"));
9441 else if (specs->typespec_word == cts_dfloat128)
9442 error_at (loc,
9443 ("both %<_Sat%> and %<_Decimal128%> in "
9444 "declaration specifiers"));
9445 else if (specs->complex_p)
9446 error_at (loc,
9447 ("both %<_Sat%> and %<complex%> in "
9448 "declaration specifiers"));
9449 else
9450 {
9451 specs->saturating_p = true;
9452 specs->locations[cdw_saturating] = loc;
9453 }
9454 break;
9455 default:
9456 gcc_unreachable ();
9457 }
9458
9459 if (dupe)
9460 error_at (loc, "duplicate %qE", type);
9461
9462 return specs;
9463 }
9464 else
9465 {
9466 /* "void", "_Bool", "char", "int", "float", "double", "_Decimal32",
9467 "__int128", "_Decimal64", "_Decimal128", "_Fract", "_Accum" or
9468 "__auto_type". */
9469 if (specs->typespec_word != cts_none)
9470 {
9471 error_at (loc,
9472 "two or more data types in declaration specifiers");
9473 return specs;
9474 }
9475 switch (i)
9476 {
9477 case RID_AUTO_TYPE:
9478 if (specs->long_p)
9479 error_at (loc,
9480 ("both %<long%> and %<__auto_type%> in "
9481 "declaration specifiers"));
9482 else if (specs->short_p)
9483 error_at (loc,
9484 ("both %<short%> and %<__auto_type%> in "
9485 "declaration specifiers"));
9486 else if (specs->signed_p)
9487 error_at (loc,
9488 ("both %<signed%> and %<__auto_type%> in "
9489 "declaration specifiers"));
9490 else if (specs->unsigned_p)
9491 error_at (loc,
9492 ("both %<unsigned%> and %<__auto_type%> in "
9493 "declaration specifiers"));
9494 else if (specs->complex_p)
9495 error_at (loc,
9496 ("both %<complex%> and %<__auto_type%> in "
9497 "declaration specifiers"));
9498 else if (specs->saturating_p)
9499 error_at (loc,
9500 ("both %<_Sat%> and %<__auto_type%> in "
9501 "declaration specifiers"));
9502 else
9503 {
9504 specs->typespec_word = cts_auto_type;
9505 specs->locations[cdw_typespec] = loc;
9506 }
9507 return specs;
9508 case RID_INT128:
9509 if (int128_integer_type_node == NULL_TREE)
9510 {
9511 error_at (loc, "%<__int128%> is not supported for this target");
9512 return specs;
9513 }
9514 if (!in_system_header_at (input_location))
9515 pedwarn (loc, OPT_Wpedantic,
9516 "ISO C does not support %<__int128%> type");
9517
9518 if (specs->long_p)
9519 error_at (loc,
9520 ("both %<__int128%> and %<long%> in "
9521 "declaration specifiers"));
9522 else if (specs->saturating_p)
9523 error_at (loc,
9524 ("both %<_Sat%> and %<__int128%> in "
9525 "declaration specifiers"));
9526 else if (specs->short_p)
9527 error_at (loc,
9528 ("both %<__int128%> and %<short%> in "
9529 "declaration specifiers"));
9530 else
9531 {
9532 specs->typespec_word = cts_int128;
9533 specs->locations[cdw_typespec] = loc;
9534 }
9535 return specs;
9536 case RID_VOID:
9537 if (specs->long_p)
9538 error_at (loc,
9539 ("both %<long%> and %<void%> in "
9540 "declaration specifiers"));
9541 else if (specs->short_p)
9542 error_at (loc,
9543 ("both %<short%> and %<void%> in "
9544 "declaration specifiers"));
9545 else if (specs->signed_p)
9546 error_at (loc,
9547 ("both %<signed%> and %<void%> in "
9548 "declaration specifiers"));
9549 else if (specs->unsigned_p)
9550 error_at (loc,
9551 ("both %<unsigned%> and %<void%> in "
9552 "declaration specifiers"));
9553 else if (specs->complex_p)
9554 error_at (loc,
9555 ("both %<complex%> and %<void%> in "
9556 "declaration specifiers"));
9557 else if (specs->saturating_p)
9558 error_at (loc,
9559 ("both %<_Sat%> and %<void%> in "
9560 "declaration specifiers"));
9561 else
9562 {
9563 specs->typespec_word = cts_void;
9564 specs->locations[cdw_typespec] = loc;
9565 }
9566 return specs;
9567 case RID_BOOL:
9568 if (!flag_isoc99 && !in_system_header_at (loc))
9569 pedwarn (loc, OPT_Wpedantic,
9570 "ISO C90 does not support boolean types");
9571 if (specs->long_p)
9572 error_at (loc,
9573 ("both %<long%> and %<_Bool%> in "
9574 "declaration specifiers"));
9575 else if (specs->short_p)
9576 error_at (loc,
9577 ("both %<short%> and %<_Bool%> in "
9578 "declaration specifiers"));
9579 else if (specs->signed_p)
9580 error_at (loc,
9581 ("both %<signed%> and %<_Bool%> in "
9582 "declaration specifiers"));
9583 else if (specs->unsigned_p)
9584 error_at (loc,
9585 ("both %<unsigned%> and %<_Bool%> in "
9586 "declaration specifiers"));
9587 else if (specs->complex_p)
9588 error_at (loc,
9589 ("both %<complex%> and %<_Bool%> in "
9590 "declaration specifiers"));
9591 else if (specs->saturating_p)
9592 error_at (loc,
9593 ("both %<_Sat%> and %<_Bool%> in "
9594 "declaration specifiers"));
9595 else
9596 {
9597 specs->typespec_word = cts_bool;
9598 specs->locations[cdw_typespec] = loc;
9599 }
9600 return specs;
9601 case RID_CHAR:
9602 if (specs->long_p)
9603 error_at (loc,
9604 ("both %<long%> and %<char%> in "
9605 "declaration specifiers"));
9606 else if (specs->short_p)
9607 error_at (loc,
9608 ("both %<short%> and %<char%> in "
9609 "declaration specifiers"));
9610 else if (specs->saturating_p)
9611 error_at (loc,
9612 ("both %<_Sat%> and %<char%> in "
9613 "declaration specifiers"));
9614 else
9615 {
9616 specs->typespec_word = cts_char;
9617 specs->locations[cdw_typespec] = loc;
9618 }
9619 return specs;
9620 case RID_INT:
9621 if (specs->saturating_p)
9622 error_at (loc,
9623 ("both %<_Sat%> and %<int%> in "
9624 "declaration specifiers"));
9625 else
9626 {
9627 specs->typespec_word = cts_int;
9628 specs->locations[cdw_typespec] = loc;
9629 }
9630 return specs;
9631 case RID_FLOAT:
9632 if (specs->long_p)
9633 error_at (loc,
9634 ("both %<long%> and %<float%> in "
9635 "declaration specifiers"));
9636 else if (specs->short_p)
9637 error_at (loc,
9638 ("both %<short%> and %<float%> in "
9639 "declaration specifiers"));
9640 else if (specs->signed_p)
9641 error_at (loc,
9642 ("both %<signed%> and %<float%> in "
9643 "declaration specifiers"));
9644 else if (specs->unsigned_p)
9645 error_at (loc,
9646 ("both %<unsigned%> and %<float%> in "
9647 "declaration specifiers"));
9648 else if (specs->saturating_p)
9649 error_at (loc,
9650 ("both %<_Sat%> and %<float%> in "
9651 "declaration specifiers"));
9652 else
9653 {
9654 specs->typespec_word = cts_float;
9655 specs->locations[cdw_typespec] = loc;
9656 }
9657 return specs;
9658 case RID_DOUBLE:
9659 if (specs->long_long_p)
9660 error_at (loc,
9661 ("both %<long long%> and %<double%> in "
9662 "declaration specifiers"));
9663 else if (specs->short_p)
9664 error_at (loc,
9665 ("both %<short%> and %<double%> in "
9666 "declaration specifiers"));
9667 else if (specs->signed_p)
9668 error_at (loc,
9669 ("both %<signed%> and %<double%> in "
9670 "declaration specifiers"));
9671 else if (specs->unsigned_p)
9672 error_at (loc,
9673 ("both %<unsigned%> and %<double%> in "
9674 "declaration specifiers"));
9675 else if (specs->saturating_p)
9676 error_at (loc,
9677 ("both %<_Sat%> and %<double%> in "
9678 "declaration specifiers"));
9679 else
9680 {
9681 specs->typespec_word = cts_double;
9682 specs->locations[cdw_typespec] = loc;
9683 }
9684 return specs;
9685 case RID_DFLOAT32:
9686 case RID_DFLOAT64:
9687 case RID_DFLOAT128:
9688 {
9689 const char *str;
9690 if (i == RID_DFLOAT32)
9691 str = "_Decimal32";
9692 else if (i == RID_DFLOAT64)
9693 str = "_Decimal64";
9694 else
9695 str = "_Decimal128";
9696 if (specs->long_long_p)
9697 error_at (loc,
9698 ("both %<long long%> and %<%s%> in "
9699 "declaration specifiers"),
9700 str);
9701 if (specs->long_p)
9702 error_at (loc,
9703 ("both %<long%> and %<%s%> in "
9704 "declaration specifiers"),
9705 str);
9706 else if (specs->short_p)
9707 error_at (loc,
9708 ("both %<short%> and %<%s%> in "
9709 "declaration specifiers"),
9710 str);
9711 else if (specs->signed_p)
9712 error_at (loc,
9713 ("both %<signed%> and %<%s%> in "
9714 "declaration specifiers"),
9715 str);
9716 else if (specs->unsigned_p)
9717 error_at (loc,
9718 ("both %<unsigned%> and %<%s%> in "
9719 "declaration specifiers"),
9720 str);
9721 else if (specs->complex_p)
9722 error_at (loc,
9723 ("both %<complex%> and %<%s%> in "
9724 "declaration specifiers"),
9725 str);
9726 else if (specs->saturating_p)
9727 error_at (loc,
9728 ("both %<_Sat%> and %<%s%> in "
9729 "declaration specifiers"),
9730 str);
9731 else if (i == RID_DFLOAT32)
9732 specs->typespec_word = cts_dfloat32;
9733 else if (i == RID_DFLOAT64)
9734 specs->typespec_word = cts_dfloat64;
9735 else
9736 specs->typespec_word = cts_dfloat128;
9737 specs->locations[cdw_typespec] = loc;
9738 }
9739 if (!targetm.decimal_float_supported_p ())
9740 error_at (loc,
9741 ("decimal floating point not supported "
9742 "for this target"));
9743 pedwarn (loc, OPT_Wpedantic,
9744 "ISO C does not support decimal floating point");
9745 return specs;
9746 case RID_FRACT:
9747 case RID_ACCUM:
9748 {
9749 const char *str;
9750 if (i == RID_FRACT)
9751 str = "_Fract";
9752 else
9753 str = "_Accum";
9754 if (specs->complex_p)
9755 error_at (loc,
9756 ("both %<complex%> and %<%s%> in "
9757 "declaration specifiers"),
9758 str);
9759 else if (i == RID_FRACT)
9760 specs->typespec_word = cts_fract;
9761 else
9762 specs->typespec_word = cts_accum;
9763 specs->locations[cdw_typespec] = loc;
9764 }
9765 if (!targetm.fixed_point_supported_p ())
9766 error_at (loc,
9767 "fixed-point types not supported for this target");
9768 pedwarn (loc, OPT_Wpedantic,
9769 "ISO C does not support fixed-point types");
9770 return specs;
9771 default:
9772 /* ObjC reserved word "id", handled below. */
9773 break;
9774 }
9775 }
9776 }
9777
9778 /* Now we have a typedef (a TYPE_DECL node), an identifier (some
9779 form of ObjC type, cases such as "int" and "long" being handled
9780 above), a TYPE (struct, union, enum and typeof specifiers) or an
9781 ERROR_MARK. In none of these cases may there have previously
9782 been any type specifiers. */
9783 if (specs->type || specs->typespec_word != cts_none
9784 || specs->long_p || specs->short_p || specs->signed_p
9785 || specs->unsigned_p || specs->complex_p)
9786 error_at (loc, "two or more data types in declaration specifiers");
9787 else if (TREE_CODE (type) == TYPE_DECL)
9788 {
9789 if (TREE_TYPE (type) == error_mark_node)
9790 ; /* Allow the type to default to int to avoid cascading errors. */
9791 else
9792 {
9793 specs->type = TREE_TYPE (type);
9794 specs->decl_attr = DECL_ATTRIBUTES (type);
9795 specs->typedef_p = true;
9796 specs->explicit_signed_p = C_TYPEDEF_EXPLICITLY_SIGNED (type);
9797 specs->locations[cdw_typedef] = loc;
9798
9799 /* If this typedef name is defined in a struct, then a C++
9800 lookup would return a different value. */
9801 if (warn_cxx_compat
9802 && I_SYMBOL_BINDING (DECL_NAME (type))->in_struct)
9803 warning_at (loc, OPT_Wc___compat,
9804 "C++ lookup of %qD would return a field, not a type",
9805 type);
9806
9807 /* If we are parsing a struct, record that a struct field
9808 used a typedef. */
9809 if (warn_cxx_compat && struct_parse_info != NULL)
9810 struct_parse_info->typedefs_seen.safe_push (type);
9811 }
9812 }
9813 else if (TREE_CODE (type) == IDENTIFIER_NODE)
9814 {
9815 tree t = lookup_name (type);
9816 if (!t || TREE_CODE (t) != TYPE_DECL)
9817 error_at (loc, "%qE fails to be a typedef or built in type", type);
9818 else if (TREE_TYPE (t) == error_mark_node)
9819 ;
9820 else
9821 {
9822 specs->type = TREE_TYPE (t);
9823 specs->locations[cdw_typespec] = loc;
9824 }
9825 }
9826 else
9827 {
9828 if (TREE_CODE (type) != ERROR_MARK && spec.kind == ctsk_typeof)
9829 {
9830 specs->typedef_p = true;
9831 specs->locations[cdw_typedef] = loc;
9832 if (spec.expr)
9833 {
9834 if (specs->expr)
9835 specs->expr = build2 (COMPOUND_EXPR, TREE_TYPE (spec.expr),
9836 specs->expr, spec.expr);
9837 else
9838 specs->expr = spec.expr;
9839 specs->expr_const_operands &= spec.expr_const_operands;
9840 }
9841 }
9842 specs->type = type;
9843 }
9844
9845 return specs;
9846 }
9847
9848 /* Add the storage class specifier or function specifier SCSPEC to the
9849 declaration specifiers SPECS, returning SPECS. */
9850
9851 struct c_declspecs *
9852 declspecs_add_scspec (source_location loc,
9853 struct c_declspecs *specs,
9854 tree scspec)
9855 {
9856 enum rid i;
9857 enum c_storage_class n = csc_none;
9858 bool dupe = false;
9859 specs->declspecs_seen_p = true;
9860 gcc_assert (TREE_CODE (scspec) == IDENTIFIER_NODE
9861 && C_IS_RESERVED_WORD (scspec));
9862 i = C_RID_CODE (scspec);
9863 if (specs->non_sc_seen_p)
9864 warning (OPT_Wold_style_declaration,
9865 "%qE is not at beginning of declaration", scspec);
9866 switch (i)
9867 {
9868 case RID_INLINE:
9869 /* C99 permits duplicate inline. Although of doubtful utility,
9870 it seems simplest to permit it in gnu89 mode as well, as
9871 there is also little utility in maintaining this as a
9872 difference between gnu89 and C99 inline. */
9873 dupe = false;
9874 specs->inline_p = true;
9875 specs->locations[cdw_inline] = loc;
9876 break;
9877 case RID_NORETURN:
9878 /* Duplicate _Noreturn is permitted. */
9879 dupe = false;
9880 specs->noreturn_p = true;
9881 specs->locations[cdw_noreturn] = loc;
9882 break;
9883 case RID_THREAD:
9884 dupe = specs->thread_p;
9885 if (specs->storage_class == csc_auto)
9886 error ("%qE used with %<auto%>", scspec);
9887 else if (specs->storage_class == csc_register)
9888 error ("%qE used with %<register%>", scspec);
9889 else if (specs->storage_class == csc_typedef)
9890 error ("%qE used with %<typedef%>", scspec);
9891 else
9892 {
9893 specs->thread_p = true;
9894 specs->thread_gnu_p = (strcmp (IDENTIFIER_POINTER (scspec),
9895 "__thread") == 0);
9896 /* A diagnostic is not required for the use of this
9897 identifier in the implementation namespace; only diagnose
9898 it for the C11 spelling because of existing code using
9899 the other spelling. */
9900 if (!flag_isoc11 && !specs->thread_gnu_p)
9901 {
9902 if (flag_isoc99)
9903 pedwarn (loc, OPT_Wpedantic,
9904 "ISO C99 does not support %qE", scspec);
9905 else
9906 pedwarn (loc, OPT_Wpedantic,
9907 "ISO C90 does not support %qE", scspec);
9908 }
9909 specs->locations[cdw_thread] = loc;
9910 }
9911 break;
9912 case RID_AUTO:
9913 n = csc_auto;
9914 break;
9915 case RID_EXTERN:
9916 n = csc_extern;
9917 /* Diagnose "__thread extern". */
9918 if (specs->thread_p && specs->thread_gnu_p)
9919 error ("%<__thread%> before %<extern%>");
9920 break;
9921 case RID_REGISTER:
9922 n = csc_register;
9923 break;
9924 case RID_STATIC:
9925 n = csc_static;
9926 /* Diagnose "__thread static". */
9927 if (specs->thread_p && specs->thread_gnu_p)
9928 error ("%<__thread%> before %<static%>");
9929 break;
9930 case RID_TYPEDEF:
9931 n = csc_typedef;
9932 break;
9933 default:
9934 gcc_unreachable ();
9935 }
9936 if (n != csc_none && n == specs->storage_class)
9937 dupe = true;
9938 if (dupe)
9939 {
9940 if (i == RID_THREAD)
9941 error ("duplicate %<_Thread_local%> or %<__thread%>");
9942 else
9943 error ("duplicate %qE", scspec);
9944 }
9945 if (n != csc_none)
9946 {
9947 if (specs->storage_class != csc_none && n != specs->storage_class)
9948 {
9949 error ("multiple storage classes in declaration specifiers");
9950 }
9951 else
9952 {
9953 specs->storage_class = n;
9954 specs->locations[cdw_storage_class] = loc;
9955 if (n != csc_extern && n != csc_static && specs->thread_p)
9956 {
9957 error ("%qs used with %qE",
9958 specs->thread_gnu_p ? "__thread" : "_Thread_local",
9959 scspec);
9960 specs->thread_p = false;
9961 }
9962 }
9963 }
9964 return specs;
9965 }
9966
9967 /* Add the attributes ATTRS to the declaration specifiers SPECS,
9968 returning SPECS. */
9969
9970 struct c_declspecs *
9971 declspecs_add_attrs (source_location loc, struct c_declspecs *specs, tree attrs)
9972 {
9973 specs->attrs = chainon (attrs, specs->attrs);
9974 specs->locations[cdw_attributes] = loc;
9975 specs->declspecs_seen_p = true;
9976 return specs;
9977 }
9978
9979 /* Add an _Alignas specifier (expression ALIGN, or type whose
9980 alignment is ALIGN) to the declaration specifiers SPECS, returning
9981 SPECS. */
9982 struct c_declspecs *
9983 declspecs_add_alignas (source_location loc,
9984 struct c_declspecs *specs, tree align)
9985 {
9986 int align_log;
9987 specs->alignas_p = true;
9988 specs->locations[cdw_alignas] = loc;
9989 if (align == error_mark_node)
9990 return specs;
9991 align_log = check_user_alignment (align, true);
9992 if (align_log > specs->align_log)
9993 specs->align_log = align_log;
9994 return specs;
9995 }
9996
9997 /* Combine "long", "short", "signed", "unsigned" and "_Complex" type
9998 specifiers with any other type specifier to determine the resulting
9999 type. This is where ISO C checks on complex types are made, since
10000 "_Complex long" is a prefix of the valid ISO C type "_Complex long
10001 double". */
10002
10003 struct c_declspecs *
10004 finish_declspecs (struct c_declspecs *specs)
10005 {
10006 /* If a type was specified as a whole, we have no modifiers and are
10007 done. */
10008 if (specs->type != NULL_TREE)
10009 {
10010 gcc_assert (!specs->long_p && !specs->long_long_p && !specs->short_p
10011 && !specs->signed_p && !specs->unsigned_p
10012 && !specs->complex_p);
10013
10014 /* Set a dummy type. */
10015 if (TREE_CODE (specs->type) == ERROR_MARK)
10016 specs->type = integer_type_node;
10017 return specs;
10018 }
10019
10020 /* If none of "void", "_Bool", "char", "int", "float" or "double"
10021 has been specified, treat it as "int" unless "_Complex" is
10022 present and there are no other specifiers. If we just have
10023 "_Complex", it is equivalent to "_Complex double", but e.g.
10024 "_Complex short" is equivalent to "_Complex short int". */
10025 if (specs->typespec_word == cts_none)
10026 {
10027 if (specs->saturating_p)
10028 {
10029 error_at (specs->locations[cdw_saturating],
10030 "%<_Sat%> is used without %<_Fract%> or %<_Accum%>");
10031 if (!targetm.fixed_point_supported_p ())
10032 error_at (specs->locations[cdw_saturating],
10033 "fixed-point types not supported for this target");
10034 specs->typespec_word = cts_fract;
10035 }
10036 else if (specs->long_p || specs->short_p
10037 || specs->signed_p || specs->unsigned_p)
10038 {
10039 specs->typespec_word = cts_int;
10040 }
10041 else if (specs->complex_p)
10042 {
10043 specs->typespec_word = cts_double;
10044 pedwarn (specs->locations[cdw_complex], OPT_Wpedantic,
10045 "ISO C does not support plain %<complex%> meaning "
10046 "%<double complex%>");
10047 }
10048 else
10049 {
10050 specs->typespec_word = cts_int;
10051 specs->default_int_p = true;
10052 /* We don't diagnose this here because grokdeclarator will
10053 give more specific diagnostics according to whether it is
10054 a function definition. */
10055 }
10056 }
10057
10058 /* If "signed" was specified, record this to distinguish "int" and
10059 "signed int" in the case of a bit-field with
10060 -funsigned-bitfields. */
10061 specs->explicit_signed_p = specs->signed_p;
10062
10063 /* Now compute the actual type. */
10064 switch (specs->typespec_word)
10065 {
10066 case cts_auto_type:
10067 gcc_assert (!specs->long_p && !specs->short_p
10068 && !specs->signed_p && !specs->unsigned_p
10069 && !specs->complex_p);
10070 /* Type to be filled in later. */
10071 break;
10072 case cts_void:
10073 gcc_assert (!specs->long_p && !specs->short_p
10074 && !specs->signed_p && !specs->unsigned_p
10075 && !specs->complex_p);
10076 specs->type = void_type_node;
10077 break;
10078 case cts_bool:
10079 gcc_assert (!specs->long_p && !specs->short_p
10080 && !specs->signed_p && !specs->unsigned_p
10081 && !specs->complex_p);
10082 specs->type = boolean_type_node;
10083 break;
10084 case cts_char:
10085 gcc_assert (!specs->long_p && !specs->short_p);
10086 gcc_assert (!(specs->signed_p && specs->unsigned_p));
10087 if (specs->signed_p)
10088 specs->type = signed_char_type_node;
10089 else if (specs->unsigned_p)
10090 specs->type = unsigned_char_type_node;
10091 else
10092 specs->type = char_type_node;
10093 if (specs->complex_p)
10094 {
10095 pedwarn (specs->locations[cdw_complex], OPT_Wpedantic,
10096 "ISO C does not support complex integer types");
10097 specs->type = build_complex_type (specs->type);
10098 }
10099 break;
10100 case cts_int128:
10101 gcc_assert (!specs->long_p && !specs->short_p && !specs->long_long_p);
10102 gcc_assert (!(specs->signed_p && specs->unsigned_p));
10103 specs->type = (specs->unsigned_p
10104 ? int128_unsigned_type_node
10105 : int128_integer_type_node);
10106 if (specs->complex_p)
10107 {
10108 pedwarn (specs->locations[cdw_complex], OPT_Wpedantic,
10109 "ISO C does not support complex integer types");
10110 specs->type = build_complex_type (specs->type);
10111 }
10112 break;
10113 case cts_int:
10114 gcc_assert (!(specs->long_p && specs->short_p));
10115 gcc_assert (!(specs->signed_p && specs->unsigned_p));
10116 if (specs->long_long_p)
10117 specs->type = (specs->unsigned_p
10118 ? long_long_unsigned_type_node
10119 : long_long_integer_type_node);
10120 else if (specs->long_p)
10121 specs->type = (specs->unsigned_p
10122 ? long_unsigned_type_node
10123 : long_integer_type_node);
10124 else if (specs->short_p)
10125 specs->type = (specs->unsigned_p
10126 ? short_unsigned_type_node
10127 : short_integer_type_node);
10128 else
10129 specs->type = (specs->unsigned_p
10130 ? unsigned_type_node
10131 : integer_type_node);
10132 if (specs->complex_p)
10133 {
10134 pedwarn (specs->locations[cdw_complex], OPT_Wpedantic,
10135 "ISO C does not support complex integer types");
10136 specs->type = build_complex_type (specs->type);
10137 }
10138 break;
10139 case cts_float:
10140 gcc_assert (!specs->long_p && !specs->short_p
10141 && !specs->signed_p && !specs->unsigned_p);
10142 specs->type = (specs->complex_p
10143 ? complex_float_type_node
10144 : float_type_node);
10145 break;
10146 case cts_double:
10147 gcc_assert (!specs->long_long_p && !specs->short_p
10148 && !specs->signed_p && !specs->unsigned_p);
10149 if (specs->long_p)
10150 {
10151 specs->type = (specs->complex_p
10152 ? complex_long_double_type_node
10153 : long_double_type_node);
10154 }
10155 else
10156 {
10157 specs->type = (specs->complex_p
10158 ? complex_double_type_node
10159 : double_type_node);
10160 }
10161 break;
10162 case cts_dfloat32:
10163 case cts_dfloat64:
10164 case cts_dfloat128:
10165 gcc_assert (!specs->long_p && !specs->long_long_p && !specs->short_p
10166 && !specs->signed_p && !specs->unsigned_p && !specs->complex_p);
10167 if (specs->typespec_word == cts_dfloat32)
10168 specs->type = dfloat32_type_node;
10169 else if (specs->typespec_word == cts_dfloat64)
10170 specs->type = dfloat64_type_node;
10171 else
10172 specs->type = dfloat128_type_node;
10173 break;
10174 case cts_fract:
10175 gcc_assert (!specs->complex_p);
10176 if (!targetm.fixed_point_supported_p ())
10177 specs->type = integer_type_node;
10178 else if (specs->saturating_p)
10179 {
10180 if (specs->long_long_p)
10181 specs->type = specs->unsigned_p
10182 ? sat_unsigned_long_long_fract_type_node
10183 : sat_long_long_fract_type_node;
10184 else if (specs->long_p)
10185 specs->type = specs->unsigned_p
10186 ? sat_unsigned_long_fract_type_node
10187 : sat_long_fract_type_node;
10188 else if (specs->short_p)
10189 specs->type = specs->unsigned_p
10190 ? sat_unsigned_short_fract_type_node
10191 : sat_short_fract_type_node;
10192 else
10193 specs->type = specs->unsigned_p
10194 ? sat_unsigned_fract_type_node
10195 : sat_fract_type_node;
10196 }
10197 else
10198 {
10199 if (specs->long_long_p)
10200 specs->type = specs->unsigned_p
10201 ? unsigned_long_long_fract_type_node
10202 : long_long_fract_type_node;
10203 else if (specs->long_p)
10204 specs->type = specs->unsigned_p
10205 ? unsigned_long_fract_type_node
10206 : long_fract_type_node;
10207 else if (specs->short_p)
10208 specs->type = specs->unsigned_p
10209 ? unsigned_short_fract_type_node
10210 : short_fract_type_node;
10211 else
10212 specs->type = specs->unsigned_p
10213 ? unsigned_fract_type_node
10214 : fract_type_node;
10215 }
10216 break;
10217 case cts_accum:
10218 gcc_assert (!specs->complex_p);
10219 if (!targetm.fixed_point_supported_p ())
10220 specs->type = integer_type_node;
10221 else if (specs->saturating_p)
10222 {
10223 if (specs->long_long_p)
10224 specs->type = specs->unsigned_p
10225 ? sat_unsigned_long_long_accum_type_node
10226 : sat_long_long_accum_type_node;
10227 else if (specs->long_p)
10228 specs->type = specs->unsigned_p
10229 ? sat_unsigned_long_accum_type_node
10230 : sat_long_accum_type_node;
10231 else if (specs->short_p)
10232 specs->type = specs->unsigned_p
10233 ? sat_unsigned_short_accum_type_node
10234 : sat_short_accum_type_node;
10235 else
10236 specs->type = specs->unsigned_p
10237 ? sat_unsigned_accum_type_node
10238 : sat_accum_type_node;
10239 }
10240 else
10241 {
10242 if (specs->long_long_p)
10243 specs->type = specs->unsigned_p
10244 ? unsigned_long_long_accum_type_node
10245 : long_long_accum_type_node;
10246 else if (specs->long_p)
10247 specs->type = specs->unsigned_p
10248 ? unsigned_long_accum_type_node
10249 : long_accum_type_node;
10250 else if (specs->short_p)
10251 specs->type = specs->unsigned_p
10252 ? unsigned_short_accum_type_node
10253 : short_accum_type_node;
10254 else
10255 specs->type = specs->unsigned_p
10256 ? unsigned_accum_type_node
10257 : accum_type_node;
10258 }
10259 break;
10260 default:
10261 gcc_unreachable ();
10262 }
10263
10264 return specs;
10265 }
10266
10267 /* A subroutine of c_write_global_declarations. Perform final processing
10268 on one file scope's declarations (or the external scope's declarations),
10269 GLOBALS. */
10270
10271 static void
10272 c_write_global_declarations_1 (tree globals)
10273 {
10274 tree decl;
10275 bool reconsider;
10276
10277 /* Process the decls in the order they were written. */
10278 for (decl = globals; decl; decl = DECL_CHAIN (decl))
10279 {
10280 /* Check for used but undefined static functions using the C
10281 standard's definition of "used", and set TREE_NO_WARNING so
10282 that check_global_declarations doesn't repeat the check. */
10283 if (TREE_CODE (decl) == FUNCTION_DECL
10284 && DECL_INITIAL (decl) == 0
10285 && DECL_EXTERNAL (decl)
10286 && !TREE_PUBLIC (decl)
10287 && C_DECL_USED (decl))
10288 {
10289 pedwarn (input_location, 0, "%q+F used but never defined", decl);
10290 TREE_NO_WARNING (decl) = 1;
10291 }
10292
10293 wrapup_global_declaration_1 (decl);
10294 }
10295
10296 do
10297 {
10298 reconsider = false;
10299 for (decl = globals; decl; decl = DECL_CHAIN (decl))
10300 reconsider |= wrapup_global_declaration_2 (decl);
10301 }
10302 while (reconsider);
10303
10304 for (decl = globals; decl; decl = DECL_CHAIN (decl))
10305 check_global_declaration_1 (decl);
10306 }
10307
10308 /* A subroutine of c_write_global_declarations Emit debug information for each
10309 of the declarations in GLOBALS. */
10310
10311 static void
10312 c_write_global_declarations_2 (tree globals)
10313 {
10314 tree decl;
10315
10316 for (decl = globals; decl ; decl = DECL_CHAIN (decl))
10317 debug_hooks->global_decl (decl);
10318 }
10319
10320 /* Callback to collect a source_ref from a DECL. */
10321
10322 static void
10323 collect_source_ref_cb (tree decl)
10324 {
10325 if (!DECL_IS_BUILTIN (decl))
10326 collect_source_ref (LOCATION_FILE (decl_sloc (decl, false)));
10327 }
10328
10329 /* Preserve the external declarations scope across a garbage collect. */
10330 static GTY(()) tree ext_block;
10331
10332 /* Collect all references relevant to SOURCE_FILE. */
10333
10334 static void
10335 collect_all_refs (const char *source_file)
10336 {
10337 tree t;
10338 unsigned i;
10339
10340 FOR_EACH_VEC_ELT (*all_translation_units, i, t)
10341 collect_ada_nodes (BLOCK_VARS (DECL_INITIAL (t)), source_file);
10342
10343 collect_ada_nodes (BLOCK_VARS (ext_block), source_file);
10344 }
10345
10346 /* Iterate over all global declarations and call CALLBACK. */
10347
10348 static void
10349 for_each_global_decl (void (*callback) (tree decl))
10350 {
10351 tree t;
10352 tree decls;
10353 tree decl;
10354 unsigned i;
10355
10356 FOR_EACH_VEC_ELT (*all_translation_units, i, t)
10357 {
10358 decls = DECL_INITIAL (t);
10359 for (decl = BLOCK_VARS (decls); decl; decl = TREE_CHAIN (decl))
10360 callback (decl);
10361 }
10362
10363 for (decl = BLOCK_VARS (ext_block); decl; decl = TREE_CHAIN (decl))
10364 callback (decl);
10365 }
10366
10367 void
10368 c_write_global_declarations (void)
10369 {
10370 tree t;
10371 unsigned i;
10372
10373 /* We don't want to do this if generating a PCH. */
10374 if (pch_file)
10375 return;
10376
10377 timevar_start (TV_PHASE_DEFERRED);
10378
10379 /* Do the Objective-C stuff. This is where all the Objective-C
10380 module stuff gets generated (symtab, class/protocol/selector
10381 lists etc). */
10382 if (c_dialect_objc ())
10383 objc_write_global_declarations ();
10384
10385 /* Close the external scope. */
10386 ext_block = pop_scope ();
10387 external_scope = 0;
10388 gcc_assert (!current_scope);
10389
10390 /* Handle -fdump-ada-spec[-slim]. */
10391 if (flag_dump_ada_spec || flag_dump_ada_spec_slim)
10392 {
10393 /* Build a table of files to generate specs for */
10394 if (flag_dump_ada_spec_slim)
10395 collect_source_ref (main_input_filename);
10396 else
10397 for_each_global_decl (collect_source_ref_cb);
10398
10399 dump_ada_specs (collect_all_refs, NULL);
10400 }
10401
10402 if (ext_block)
10403 {
10404 tree tmp = BLOCK_VARS (ext_block);
10405 int flags;
10406 FILE * stream = dump_begin (TDI_tu, &flags);
10407 if (stream && tmp)
10408 {
10409 dump_node (tmp, flags & ~TDF_SLIM, stream);
10410 dump_end (TDI_tu, stream);
10411 }
10412 }
10413
10414 /* Process all file scopes in this compilation, and the external_scope,
10415 through wrapup_global_declarations and check_global_declarations. */
10416 FOR_EACH_VEC_ELT (*all_translation_units, i, t)
10417 c_write_global_declarations_1 (BLOCK_VARS (DECL_INITIAL (t)));
10418 c_write_global_declarations_1 (BLOCK_VARS (ext_block));
10419
10420 timevar_stop (TV_PHASE_DEFERRED);
10421 timevar_start (TV_PHASE_OPT_GEN);
10422
10423 /* We're done parsing; proceed to optimize and emit assembly.
10424 FIXME: shouldn't be the front end's responsibility to call this. */
10425 finalize_compilation_unit ();
10426
10427 timevar_stop (TV_PHASE_OPT_GEN);
10428 timevar_start (TV_PHASE_DBGINFO);
10429
10430 /* After cgraph has had a chance to emit everything that's going to
10431 be emitted, output debug information for globals. */
10432 if (!seen_error ())
10433 {
10434 timevar_push (TV_SYMOUT);
10435 FOR_EACH_VEC_ELT (*all_translation_units, i, t)
10436 c_write_global_declarations_2 (BLOCK_VARS (DECL_INITIAL (t)));
10437 c_write_global_declarations_2 (BLOCK_VARS (ext_block));
10438 timevar_pop (TV_SYMOUT);
10439 }
10440
10441 ext_block = NULL;
10442 timevar_stop (TV_PHASE_DBGINFO);
10443 }
10444
10445 /* Register reserved keyword WORD as qualifier for address space AS. */
10446
10447 void
10448 c_register_addr_space (const char *word, addr_space_t as)
10449 {
10450 int rid = RID_FIRST_ADDR_SPACE + as;
10451 tree id;
10452
10453 /* Address space qualifiers are only supported
10454 in C with GNU extensions enabled. */
10455 if (c_dialect_objc () || flag_no_asm)
10456 return;
10457
10458 id = get_identifier (word);
10459 C_SET_RID_CODE (id, rid);
10460 C_IS_RESERVED_WORD (id) = 1;
10461 ridpointers [rid] = id;
10462 }
10463
10464 /* Return identifier to look up for omp declare reduction. */
10465
10466 tree
10467 c_omp_reduction_id (enum tree_code reduction_code, tree reduction_id)
10468 {
10469 const char *p = NULL;
10470 switch (reduction_code)
10471 {
10472 case PLUS_EXPR: p = "+"; break;
10473 case MULT_EXPR: p = "*"; break;
10474 case MINUS_EXPR: p = "-"; break;
10475 case BIT_AND_EXPR: p = "&"; break;
10476 case BIT_XOR_EXPR: p = "^"; break;
10477 case BIT_IOR_EXPR: p = "|"; break;
10478 case TRUTH_ANDIF_EXPR: p = "&&"; break;
10479 case TRUTH_ORIF_EXPR: p = "||"; break;
10480 case MIN_EXPR: p = "min"; break;
10481 case MAX_EXPR: p = "max"; break;
10482 default:
10483 break;
10484 }
10485
10486 if (p == NULL)
10487 {
10488 if (TREE_CODE (reduction_id) != IDENTIFIER_NODE)
10489 return error_mark_node;
10490 p = IDENTIFIER_POINTER (reduction_id);
10491 }
10492
10493 const char prefix[] = "omp declare reduction ";
10494 size_t lenp = sizeof (prefix);
10495 size_t len = strlen (p);
10496 char *name = XALLOCAVEC (char, lenp + len);
10497 memcpy (name, prefix, lenp - 1);
10498 memcpy (name + lenp - 1, p, len + 1);
10499 return get_identifier (name);
10500 }
10501
10502 /* Lookup REDUCTION_ID in the current scope, or create an artificial
10503 VAR_DECL, bind it into the current scope and return it. */
10504
10505 tree
10506 c_omp_reduction_decl (tree reduction_id)
10507 {
10508 struct c_binding *b = I_SYMBOL_BINDING (reduction_id);
10509 if (b != NULL && B_IN_CURRENT_SCOPE (b))
10510 return b->decl;
10511
10512 tree decl = build_decl (BUILTINS_LOCATION, VAR_DECL,
10513 reduction_id, integer_type_node);
10514 DECL_ARTIFICIAL (decl) = 1;
10515 DECL_EXTERNAL (decl) = 1;
10516 TREE_STATIC (decl) = 1;
10517 TREE_PUBLIC (decl) = 0;
10518 bind (reduction_id, decl, current_scope, true, false, BUILTINS_LOCATION);
10519 return decl;
10520 }
10521
10522 /* Lookup REDUCTION_ID in the first scope where it has entry for TYPE. */
10523
10524 tree
10525 c_omp_reduction_lookup (tree reduction_id, tree type)
10526 {
10527 struct c_binding *b = I_SYMBOL_BINDING (reduction_id);
10528 while (b)
10529 {
10530 tree t;
10531 for (t = DECL_INITIAL (b->decl); t; t = TREE_CHAIN (t))
10532 if (comptypes (TREE_PURPOSE (t), type))
10533 return TREE_VALUE (t);
10534 b = b->shadowed;
10535 }
10536 return error_mark_node;
10537 }
10538
10539 /* Helper function called via walk_tree, to diagnose invalid
10540 #pragma omp declare reduction combiners or initializers. */
10541
10542 tree
10543 c_check_omp_declare_reduction_r (tree *tp, int *, void *data)
10544 {
10545 tree *vars = (tree *) data;
10546 if (SSA_VAR_P (*tp)
10547 && !DECL_ARTIFICIAL (*tp)
10548 && *tp != vars[0]
10549 && *tp != vars[1])
10550 {
10551 location_t loc = DECL_SOURCE_LOCATION (vars[0]);
10552 if (strcmp (IDENTIFIER_POINTER (DECL_NAME (vars[0])), "omp_out") == 0)
10553 error_at (loc, "%<#pragma omp declare reduction%> combiner refers to "
10554 "variable %qD which is not %<omp_out%> nor %<omp_in%>",
10555 *tp);
10556 else
10557 error_at (loc, "%<#pragma omp declare reduction%> initializer refers "
10558 "to variable %qD which is not %<omp_priv%> nor "
10559 "%<omp_orig%>",
10560 *tp);
10561 return *tp;
10562 }
10563 return NULL_TREE;
10564 }
10565
10566 #include "gt-c-c-decl.h"