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