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