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