Merged revisions 143552,143554,143557,143560,143562,143564-143567,143570-143573,14357...
[official-gcc.git] / gcc / c-decl.c
blobd77b9a5eee5e4add10687e266c9ced454dac7b41
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
4 Free Software Foundation, Inc.
6 This file is part of GCC.
8 GCC is free software; you can redistribute it and/or modify it under
9 the terms of the GNU General Public License as published by the Free
10 Software Foundation; either version 3, or (at your option) any later
11 version.
13 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
14 WARRANTY; without even the implied warranty of MERCHANTABILITY or
15 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
16 for more details.
18 You should have received a copy of the GNU General Public License
19 along with GCC; see the file COPYING3. If not see
20 <http://www.gnu.org/licenses/>. */
22 /* Process declarations and symbol lookup for C front end.
23 Also constructs types; the standard scalar types at initialization,
24 and structure, union, array and enum types when they are declared. */
26 /* ??? not all decl nodes are given the most useful possible
27 line numbers. For example, the CONST_DECLs for enum values. */
29 #include "config.h"
30 #include "system.h"
31 #include "coretypes.h"
32 #include "input.h"
33 #include "tm.h"
34 #include "intl.h"
35 #include "tree.h"
36 #include "tree-inline.h"
37 #include "rtl.h"
38 #include "flags.h"
39 #include "function.h"
40 #include "output.h"
41 #include "expr.h"
42 #include "c-tree.h"
43 #include "toplev.h"
44 #include "ggc.h"
45 #include "tm_p.h"
46 #include "cpplib.h"
47 #include "target.h"
48 #include "debug.h"
49 #include "opts.h"
50 #include "timevar.h"
51 #include "c-common.h"
52 #include "c-pragma.h"
53 #include "langhooks.h"
54 #include "tree-mudflap.h"
55 #include "gimple.h"
56 #include "tree-iterator.h"
57 #include "diagnostic.h"
58 #include "tree-dump.h"
59 #include "cgraph.h"
60 #include "hashtab.h"
61 #include "libfuncs.h"
62 #include "except.h"
63 #include "langhooks-def.h"
64 #include "pointer-set.h"
65 #include "gimple.h"
67 /* In grokdeclarator, distinguish syntactic contexts of declarators. */
68 enum decl_context
69 { NORMAL, /* Ordinary declaration */
70 FUNCDEF, /* Function definition */
71 PARM, /* Declaration of parm before function body */
72 FIELD, /* Declaration inside struct or union */
73 TYPENAME}; /* Typename (inside cast or sizeof) */
75 /* States indicating how grokdeclarator() should handle declspecs marked
76 with __attribute__((deprecated)). An object declared as
77 __attribute__((deprecated)) suppresses warnings of uses of other
78 deprecated items. */
80 enum deprecated_states {
81 DEPRECATED_NORMAL,
82 DEPRECATED_SUPPRESS
86 /* Nonzero if we have seen an invalid cross reference
87 to a struct, union, or enum, but not yet printed the message. */
88 tree pending_invalid_xref;
90 /* File and line to appear in the eventual error message. */
91 location_t pending_invalid_xref_location;
93 /* True means we've initialized exception handling. */
94 bool c_eh_initialized_p;
96 /* The file and line that the prototype came from if this is an
97 old-style definition; used for diagnostics in
98 store_parm_decls_oldstyle. */
100 static location_t current_function_prototype_locus;
102 /* Whether this prototype was built-in. */
104 static bool current_function_prototype_built_in;
106 /* The argument type information of this prototype. */
108 static tree current_function_prototype_arg_types;
110 /* The argument information structure for the function currently being
111 defined. */
113 static struct c_arg_info *current_function_arg_info;
115 /* The obstack on which parser and related data structures, which are
116 not live beyond their top-level declaration or definition, are
117 allocated. */
118 struct obstack parser_obstack;
120 /* The current statement tree. */
122 static GTY(()) struct stmt_tree_s c_stmt_tree;
124 /* State saving variables. */
125 tree c_break_label;
126 tree c_cont_label;
128 /* Linked list of TRANSLATION_UNIT_DECLS for the translation units
129 included in this invocation. Note that the current translation
130 unit is not included in this list. */
132 static GTY(()) tree all_translation_units;
134 /* A list of decls to be made automatically visible in each file scope. */
135 static GTY(()) tree visible_builtins;
137 /* Set to 0 at beginning of a function definition, set to 1 if
138 a return statement that specifies a return value is seen. */
140 int current_function_returns_value;
142 /* Set to 0 at beginning of a function definition, set to 1 if
143 a return statement with no argument is seen. */
145 int current_function_returns_null;
147 /* Set to 0 at beginning of a function definition, set to 1 if
148 a call to a noreturn function is seen. */
150 int current_function_returns_abnormally;
152 /* Set to nonzero by `grokdeclarator' for a function
153 whose return type is defaulted, if warnings for this are desired. */
155 static int warn_about_return_type;
157 /* Nonzero when the current toplevel function contains a declaration
158 of a nested function which is never defined. */
160 static bool undef_nested_function;
162 /* True means global_bindings_p should return false even if the scope stack
163 says we are in file scope. */
164 bool c_override_global_bindings_to_false;
167 /* Each c_binding structure describes one binding of an identifier to
168 a decl. All the decls in a scope - irrespective of namespace - are
169 chained together by the ->prev field, which (as the name implies)
170 runs in reverse order. All the decls in a given namespace bound to
171 a given identifier are chained by the ->shadowed field, which runs
172 from inner to outer scopes.
174 The ->decl field usually points to a DECL node, but there are two
175 exceptions. In the namespace of type tags, the bound entity is a
176 RECORD_TYPE, UNION_TYPE, or ENUMERAL_TYPE node. If an undeclared
177 identifier is encountered, it is bound to error_mark_node to
178 suppress further errors about that identifier in the current
179 function.
181 The ->type field stores the type of the declaration in this scope;
182 if NULL, the type is the type of the ->decl field. This is only of
183 relevance for objects with external or internal linkage which may
184 be redeclared in inner scopes, forming composite types that only
185 persist for the duration of those scopes. In the external scope,
186 this stores the composite of all the types declared for this
187 object, visible or not. The ->inner_comp field (used only at file
188 scope) stores whether an incomplete array type at file scope was
189 completed at an inner scope to an array size other than 1.
191 The depth field is copied from the scope structure that holds this
192 decl. It is used to preserve the proper ordering of the ->shadowed
193 field (see bind()) and also for a handful of special-case checks.
194 Finally, the invisible bit is true for a decl which should be
195 ignored for purposes of normal name lookup, and the nested bit is
196 true for a decl that's been bound a second time in an inner scope;
197 in all such cases, the binding in the outer scope will have its
198 invisible bit true. */
200 struct c_binding GTY((chain_next ("%h.prev")))
202 tree decl; /* the decl bound */
203 tree type; /* the type in this scope */
204 tree id; /* the identifier it's bound to */
205 struct c_binding *prev; /* the previous decl in this scope */
206 struct c_binding *shadowed; /* the innermost decl shadowed by this one */
207 unsigned int depth : 28; /* depth of this scope */
208 BOOL_BITFIELD invisible : 1; /* normal lookup should ignore this binding */
209 BOOL_BITFIELD nested : 1; /* do not set DECL_CONTEXT when popping */
210 BOOL_BITFIELD inner_comp : 1; /* incomplete array completed in inner scope */
211 /* one free bit */
213 #define B_IN_SCOPE(b1, b2) ((b1)->depth == (b2)->depth)
214 #define B_IN_CURRENT_SCOPE(b) ((b)->depth == current_scope->depth)
215 #define B_IN_FILE_SCOPE(b) ((b)->depth == 1 /*file_scope->depth*/)
216 #define B_IN_EXTERNAL_SCOPE(b) ((b)->depth == 0 /*external_scope->depth*/)
218 #define I_SYMBOL_BINDING(node) \
219 (((struct lang_identifier *) IDENTIFIER_NODE_CHECK(node))->symbol_binding)
220 #define I_SYMBOL_DECL(node) \
221 (I_SYMBOL_BINDING(node) ? I_SYMBOL_BINDING(node)->decl : 0)
223 #define I_TAG_BINDING(node) \
224 (((struct lang_identifier *) IDENTIFIER_NODE_CHECK(node))->tag_binding)
225 #define I_TAG_DECL(node) \
226 (I_TAG_BINDING(node) ? I_TAG_BINDING(node)->decl : 0)
228 #define I_LABEL_BINDING(node) \
229 (((struct lang_identifier *) IDENTIFIER_NODE_CHECK(node))->label_binding)
230 #define I_LABEL_DECL(node) \
231 (I_LABEL_BINDING(node) ? I_LABEL_BINDING(node)->decl : 0)
233 /* Each C symbol points to three linked lists of c_binding structures.
234 These describe the values of the identifier in the three different
235 namespaces defined by the language. */
237 struct lang_identifier GTY(())
239 struct c_common_identifier common_id;
240 struct c_binding *symbol_binding; /* vars, funcs, constants, typedefs */
241 struct c_binding *tag_binding; /* struct/union/enum tags */
242 struct c_binding *label_binding; /* labels */
245 /* Validate c-lang.c's assumptions. */
246 extern char C_SIZEOF_STRUCT_LANG_IDENTIFIER_isnt_accurate
247 [(sizeof(struct lang_identifier) == C_SIZEOF_STRUCT_LANG_IDENTIFIER) ? 1 : -1];
249 /* The resulting tree type. */
251 union lang_tree_node
252 GTY((desc ("TREE_CODE (&%h.generic) == IDENTIFIER_NODE"),
253 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))")))
255 union tree_node GTY ((tag ("0"),
256 desc ("tree_node_structure (&%h)")))
257 generic;
258 struct lang_identifier GTY ((tag ("1"))) identifier;
261 /* Each c_scope structure describes the complete contents of one
262 scope. Four scopes are distinguished specially: the innermost or
263 current scope, the innermost function scope, the file scope (always
264 the second to outermost) and the outermost or external scope.
266 Most declarations are recorded in the current scope.
268 All normal label declarations are recorded in the innermost
269 function scope, as are bindings of undeclared identifiers to
270 error_mark_node. (GCC permits nested functions as an extension,
271 hence the 'innermost' qualifier.) Explicitly declared labels
272 (using the __label__ extension) appear in the current scope.
274 Being in the file scope (current_scope == file_scope) causes
275 special behavior in several places below. Also, under some
276 conditions the Objective-C front end records declarations in the
277 file scope even though that isn't the current scope.
279 All declarations with external linkage are recorded in the external
280 scope, even if they aren't visible there; this models the fact that
281 such declarations are visible to the entire program, and (with a
282 bit of cleverness, see pushdecl) allows diagnosis of some violations
283 of C99 6.2.2p7 and 6.2.7p2:
285 If, within the same translation unit, the same identifier appears
286 with both internal and external linkage, the behavior is
287 undefined.
289 All declarations that refer to the same object or function shall
290 have compatible type; otherwise, the behavior is undefined.
292 Initially only the built-in declarations, which describe compiler
293 intrinsic functions plus a subset of the standard library, are in
294 this scope.
296 The order of the blocks list matters, and it is frequently appended
297 to. To avoid having to walk all the way to the end of the list on
298 each insertion, or reverse the list later, we maintain a pointer to
299 the last list entry. (FIXME: It should be feasible to use a reversed
300 list here.)
302 The bindings list is strictly in reverse order of declarations;
303 pop_scope relies on this. */
306 struct c_scope GTY((chain_next ("%h.outer")))
308 /* The scope containing this one. */
309 struct c_scope *outer;
311 /* The next outermost function scope. */
312 struct c_scope *outer_function;
314 /* All bindings in this scope. */
315 struct c_binding *bindings;
317 /* For each scope (except the global one), a chain of BLOCK nodes
318 for all the scopes that were entered and exited one level down. */
319 tree blocks;
320 tree blocks_last;
322 /* The depth of this scope. Used to keep the ->shadowed chain of
323 bindings sorted innermost to outermost. */
324 unsigned int depth : 28;
326 /* True if we are currently filling this scope with parameter
327 declarations. */
328 BOOL_BITFIELD parm_flag : 1;
330 /* True if we saw [*] in this scope. Used to give an error messages
331 if these appears in a function definition. */
332 BOOL_BITFIELD had_vla_unspec : 1;
334 /* True if we already complained about forward parameter decls
335 in this scope. This prevents double warnings on
336 foo (int a; int b; ...) */
337 BOOL_BITFIELD warned_forward_parm_decls : 1;
339 /* True if this is the outermost block scope of a function body.
340 This scope contains the parameters, the local variables declared
341 in the outermost block, and all the labels (except those in
342 nested functions, or declared at block scope with __label__). */
343 BOOL_BITFIELD function_body : 1;
345 /* True means make a BLOCK for this scope no matter what. */
346 BOOL_BITFIELD keep : 1;
349 /* The scope currently in effect. */
351 static GTY(()) struct c_scope *current_scope;
353 /* The innermost function scope. Ordinary (not explicitly declared)
354 labels, bindings to error_mark_node, and the lazily-created
355 bindings of __func__ and its friends get this scope. */
357 static GTY(()) struct c_scope *current_function_scope;
359 /* The C file scope. This is reset for each input translation unit. */
361 static GTY(()) struct c_scope *file_scope;
363 /* The outermost scope. This is used for all declarations with
364 external linkage, and only these, hence the name. */
366 static GTY(()) struct c_scope *external_scope;
368 /* A chain of c_scope structures awaiting reuse. */
370 static GTY((deletable)) struct c_scope *scope_freelist;
372 /* A chain of c_binding structures awaiting reuse. */
374 static GTY((deletable)) struct c_binding *binding_freelist;
376 /* Append VAR to LIST in scope SCOPE. */
377 #define SCOPE_LIST_APPEND(scope, list, decl) do { \
378 struct c_scope *s_ = (scope); \
379 tree d_ = (decl); \
380 if (s_->list##_last) \
381 BLOCK_CHAIN (s_->list##_last) = d_; \
382 else \
383 s_->list = d_; \
384 s_->list##_last = d_; \
385 } while (0)
387 /* Concatenate FROM in scope FSCOPE onto TO in scope TSCOPE. */
388 #define SCOPE_LIST_CONCAT(tscope, to, fscope, from) do { \
389 struct c_scope *t_ = (tscope); \
390 struct c_scope *f_ = (fscope); \
391 if (t_->to##_last) \
392 BLOCK_CHAIN (t_->to##_last) = f_->from; \
393 else \
394 t_->to = f_->from; \
395 t_->to##_last = f_->from##_last; \
396 } while (0)
398 /* True means unconditionally make a BLOCK for the next scope pushed. */
400 static bool keep_next_level_flag;
402 /* True means the next call to push_scope will be the outermost scope
403 of a function body, so do not push a new scope, merely cease
404 expecting parameter decls. */
406 static bool next_is_function_body;
408 /* Forward declarations. */
409 static tree lookup_name_in_scope (tree, struct c_scope *);
410 static tree c_make_fname_decl (tree, int);
411 static tree grokdeclarator (const struct c_declarator *,
412 struct c_declspecs *,
413 enum decl_context, bool, tree *, tree *,
414 enum deprecated_states);
415 static tree grokparms (struct c_arg_info *, bool);
416 static void layout_array_type (tree);
418 /* T is a statement. Add it to the statement-tree. This is the
419 C/ObjC version--C++ has a slightly different version of this
420 function. */
422 tree
423 add_stmt (tree t)
425 enum tree_code code = TREE_CODE (t);
427 if (CAN_HAVE_LOCATION_P (t) && code != LABEL_EXPR)
429 if (!EXPR_HAS_LOCATION (t))
430 SET_EXPR_LOCATION (t, input_location);
433 if (code == LABEL_EXPR || code == CASE_LABEL_EXPR)
434 STATEMENT_LIST_HAS_LABEL (cur_stmt_list) = 1;
436 /* Add T to the statement-tree. Non-side-effect statements need to be
437 recorded during statement expressions. */
438 append_to_statement_list_force (t, &cur_stmt_list);
440 return t;
444 void
445 c_print_identifier (FILE *file, tree node, int indent)
447 print_node (file, "symbol", I_SYMBOL_DECL (node), indent + 4);
448 print_node (file, "tag", I_TAG_DECL (node), indent + 4);
449 print_node (file, "label", I_LABEL_DECL (node), indent + 4);
450 if (C_IS_RESERVED_WORD (node) && C_RID_CODE (node) != RID_CXX_COMPAT_WARN)
452 tree rid = ridpointers[C_RID_CODE (node)];
453 indent_to (file, indent + 4);
454 fprintf (file, "rid %p \"%s\"",
455 (void *) rid, IDENTIFIER_POINTER (rid));
459 /* Establish a binding between NAME, an IDENTIFIER_NODE, and DECL,
460 which may be any of several kinds of DECL or TYPE or error_mark_node,
461 in the scope SCOPE. */
462 static void
463 bind (tree name, tree decl, struct c_scope *scope, bool invisible, bool nested)
465 struct c_binding *b, **here;
467 if (binding_freelist)
469 b = binding_freelist;
470 binding_freelist = b->prev;
472 else
473 b = GGC_NEW (struct c_binding);
475 b->shadowed = 0;
476 b->decl = decl;
477 b->id = name;
478 b->depth = scope->depth;
479 b->invisible = invisible;
480 b->nested = nested;
481 b->inner_comp = 0;
483 b->type = 0;
485 b->prev = scope->bindings;
486 scope->bindings = b;
488 if (!name)
489 return;
491 switch (TREE_CODE (decl))
493 case LABEL_DECL: here = &I_LABEL_BINDING (name); break;
494 case ENUMERAL_TYPE:
495 case UNION_TYPE:
496 case RECORD_TYPE: here = &I_TAG_BINDING (name); break;
497 case VAR_DECL:
498 case FUNCTION_DECL:
499 case TYPE_DECL:
500 case CONST_DECL:
501 case PARM_DECL:
502 case ERROR_MARK: here = &I_SYMBOL_BINDING (name); break;
504 default:
505 gcc_unreachable ();
508 /* Locate the appropriate place in the chain of shadowed decls
509 to insert this binding. Normally, scope == current_scope and
510 this does nothing. */
511 while (*here && (*here)->depth > scope->depth)
512 here = &(*here)->shadowed;
514 b->shadowed = *here;
515 *here = b;
518 /* Clear the binding structure B, stick it on the binding_freelist,
519 and return the former value of b->prev. This is used by pop_scope
520 and get_parm_info to iterate destructively over all the bindings
521 from a given scope. */
522 static struct c_binding *
523 free_binding_and_advance (struct c_binding *b)
525 struct c_binding *prev = b->prev;
527 memset (b, 0, sizeof (struct c_binding));
528 b->prev = binding_freelist;
529 binding_freelist = b;
531 return prev;
535 /* Hook called at end of compilation to assume 1 elt
536 for a file-scope tentative array defn that wasn't complete before. */
538 void
539 c_finish_incomplete_decl (tree decl)
541 if (TREE_CODE (decl) == VAR_DECL)
543 tree type = TREE_TYPE (decl);
544 if (type != error_mark_node
545 && TREE_CODE (type) == ARRAY_TYPE
546 && !DECL_EXTERNAL (decl)
547 && TYPE_DOMAIN (type) == 0)
549 warning (0, "array %q+D assumed to have one element", decl);
551 complete_array_type (&TREE_TYPE (decl), NULL_TREE, true);
553 layout_decl (decl, 0);
558 /* The Objective-C front-end often needs to determine the current scope. */
560 void *
561 objc_get_current_scope (void)
563 return current_scope;
566 /* The following function is used only by Objective-C. It needs to live here
567 because it accesses the innards of c_scope. */
569 void
570 objc_mark_locals_volatile (void *enclosing_blk)
572 struct c_scope *scope;
573 struct c_binding *b;
575 for (scope = current_scope;
576 scope && scope != enclosing_blk;
577 scope = scope->outer)
579 for (b = scope->bindings; b; b = b->prev)
580 objc_volatilize_decl (b->decl);
582 /* Do not climb up past the current function. */
583 if (scope->function_body)
584 break;
588 /* Nonzero if we are currently in file scope. */
591 global_bindings_p (void)
593 return current_scope == file_scope && !c_override_global_bindings_to_false;
596 void
597 keep_next_level (void)
599 keep_next_level_flag = true;
602 /* Identify this scope as currently being filled with parameters. */
604 void
605 declare_parm_level (void)
607 current_scope->parm_flag = true;
610 void
611 push_scope (void)
613 if (next_is_function_body)
615 /* This is the transition from the parameters to the top level
616 of the function body. These are the same scope
617 (C99 6.2.1p4,6) so we do not push another scope structure.
618 next_is_function_body is set only by store_parm_decls, which
619 in turn is called when and only when we are about to
620 encounter the opening curly brace for the function body.
622 The outermost block of a function always gets a BLOCK node,
623 because the debugging output routines expect that each
624 function has at least one BLOCK. */
625 current_scope->parm_flag = false;
626 current_scope->function_body = true;
627 current_scope->keep = true;
628 current_scope->outer_function = current_function_scope;
629 current_function_scope = current_scope;
631 keep_next_level_flag = false;
632 next_is_function_body = false;
634 else
636 struct c_scope *scope;
637 if (scope_freelist)
639 scope = scope_freelist;
640 scope_freelist = scope->outer;
642 else
643 scope = GGC_CNEW (struct c_scope);
645 scope->keep = keep_next_level_flag;
646 scope->outer = current_scope;
647 scope->depth = current_scope ? (current_scope->depth + 1) : 0;
649 /* Check for scope depth overflow. Unlikely (2^28 == 268,435,456) but
650 possible. */
651 if (current_scope && scope->depth == 0)
653 scope->depth--;
654 sorry ("GCC supports only %u nested scopes", scope->depth);
657 current_scope = scope;
658 keep_next_level_flag = false;
662 /* Set the TYPE_CONTEXT of all of TYPE's variants to CONTEXT. */
664 static void
665 set_type_context (tree type, tree context)
667 for (type = TYPE_MAIN_VARIANT (type); type;
668 type = TYPE_NEXT_VARIANT (type))
669 TYPE_CONTEXT (type) = context;
672 /* Exit a scope. Restore the state of the identifier-decl mappings
673 that were in effect when this scope was entered. Return a BLOCK
674 node containing all the DECLs in this scope that are of interest
675 to debug info generation. */
677 tree
678 pop_scope (void)
680 struct c_scope *scope = current_scope;
681 tree block, context, p;
682 struct c_binding *b;
684 bool functionbody = scope->function_body;
685 bool keep = functionbody || scope->keep || scope->bindings;
687 c_end_vm_scope (scope->depth);
689 /* If appropriate, create a BLOCK to record the decls for the life
690 of this function. */
691 block = 0;
692 if (keep)
694 block = make_node (BLOCK);
695 BLOCK_SUBBLOCKS (block) = scope->blocks;
696 TREE_USED (block) = 1;
698 /* In each subblock, record that this is its superior. */
699 for (p = scope->blocks; p; p = BLOCK_CHAIN (p))
700 BLOCK_SUPERCONTEXT (p) = block;
702 BLOCK_VARS (block) = 0;
705 /* The TYPE_CONTEXTs for all of the tagged types belonging to this
706 scope must be set so that they point to the appropriate
707 construct, i.e. either to the current FUNCTION_DECL node, or
708 else to the BLOCK node we just constructed.
710 Note that for tagged types whose scope is just the formal
711 parameter list for some function type specification, we can't
712 properly set their TYPE_CONTEXTs here, because we don't have a
713 pointer to the appropriate FUNCTION_TYPE node readily available
714 to us. For those cases, the TYPE_CONTEXTs of the relevant tagged
715 type nodes get set in `grokdeclarator' as soon as we have created
716 the FUNCTION_TYPE node which will represent the "scope" for these
717 "parameter list local" tagged types. */
718 if (scope->function_body)
719 context = current_function_decl;
720 else if (scope == file_scope)
722 tree file_decl = build_decl (TRANSLATION_UNIT_DECL, 0, 0);
723 TREE_CHAIN (file_decl) = all_translation_units;
724 all_translation_units = file_decl;
725 context = file_decl;
727 else
728 context = block;
730 /* Clear all bindings in this scope. */
731 for (b = scope->bindings; b; b = free_binding_and_advance (b))
733 p = b->decl;
734 switch (TREE_CODE (p))
736 case LABEL_DECL:
737 /* Warnings for unused labels, errors for undefined labels. */
738 if (TREE_USED (p) && !DECL_INITIAL (p))
740 error ("label %q+D used but not defined", p);
741 DECL_INITIAL (p) = error_mark_node;
743 else
744 warn_for_unused_label (p);
746 /* Labels go in BLOCK_VARS. */
747 TREE_CHAIN (p) = BLOCK_VARS (block);
748 BLOCK_VARS (block) = p;
749 gcc_assert (I_LABEL_BINDING (b->id) == b);
750 I_LABEL_BINDING (b->id) = b->shadowed;
751 break;
753 case ENUMERAL_TYPE:
754 case UNION_TYPE:
755 case RECORD_TYPE:
756 set_type_context (p, context);
758 /* Types may not have tag-names, in which case the type
759 appears in the bindings list with b->id NULL. */
760 if (b->id)
762 gcc_assert (I_TAG_BINDING (b->id) == b);
763 I_TAG_BINDING (b->id) = b->shadowed;
765 break;
767 case FUNCTION_DECL:
768 /* Propagate TREE_ADDRESSABLE from nested functions to their
769 containing functions. */
770 if (!TREE_ASM_WRITTEN (p)
771 && DECL_INITIAL (p) != 0
772 && TREE_ADDRESSABLE (p)
773 && DECL_ABSTRACT_ORIGIN (p) != 0
774 && DECL_ABSTRACT_ORIGIN (p) != p)
775 TREE_ADDRESSABLE (DECL_ABSTRACT_ORIGIN (p)) = 1;
776 if (!DECL_EXTERNAL (p)
777 && !DECL_INITIAL (p)
778 && scope != file_scope
779 && scope != external_scope)
781 error ("nested function %q+D declared but never defined", p);
782 undef_nested_function = true;
784 else if (DECL_DECLARED_INLINE_P (p)
785 && TREE_PUBLIC (p)
786 && !DECL_INITIAL (p))
788 /* C99 6.7.4p6: "a function with external linkage... declared
789 with an inline function specifier ... shall also be defined
790 in the same translation unit." */
791 if (!flag_gnu89_inline)
792 pedwarn (input_location, 0,
793 "inline function %q+D declared but never defined", p);
794 DECL_EXTERNAL (p) = 1;
797 goto common_symbol;
799 case VAR_DECL:
800 /* Warnings for unused variables. */
801 if (!TREE_USED (p)
802 && !TREE_NO_WARNING (p)
803 && !DECL_IN_SYSTEM_HEADER (p)
804 && DECL_NAME (p)
805 && !DECL_ARTIFICIAL (p)
806 && scope != file_scope
807 && scope != external_scope)
808 warning (OPT_Wunused_variable, "unused variable %q+D", p);
810 if (b->inner_comp)
812 error ("type of array %q+D completed incompatibly with"
813 " implicit initialization", p);
816 /* Fall through. */
817 case TYPE_DECL:
818 case CONST_DECL:
819 common_symbol:
820 /* All of these go in BLOCK_VARS, but only if this is the
821 binding in the home scope. */
822 if (!b->nested)
824 TREE_CHAIN (p) = BLOCK_VARS (block);
825 BLOCK_VARS (block) = p;
827 /* If this is the file scope, and we are processing more
828 than one translation unit in this compilation, set
829 DECL_CONTEXT of each decl to the TRANSLATION_UNIT_DECL.
830 This makes same_translation_unit_p work, and causes
831 static declarations to be given disambiguating suffixes. */
832 if (scope == file_scope && num_in_fnames > 1)
834 DECL_CONTEXT (p) = context;
835 if (TREE_CODE (p) == TYPE_DECL)
836 set_type_context (TREE_TYPE (p), context);
839 /* Fall through. */
840 /* Parameters go in DECL_ARGUMENTS, not BLOCK_VARS, and have
841 already been put there by store_parm_decls. Unused-
842 parameter warnings are handled by function.c.
843 error_mark_node obviously does not go in BLOCK_VARS and
844 does not get unused-variable warnings. */
845 case PARM_DECL:
846 case ERROR_MARK:
847 /* It is possible for a decl not to have a name. We get
848 here with b->id NULL in this case. */
849 if (b->id)
851 gcc_assert (I_SYMBOL_BINDING (b->id) == b);
852 I_SYMBOL_BINDING (b->id) = b->shadowed;
853 if (b->shadowed && b->shadowed->type)
854 TREE_TYPE (b->shadowed->decl) = b->shadowed->type;
856 break;
858 default:
859 gcc_unreachable ();
864 /* Dispose of the block that we just made inside some higher level. */
865 if ((scope->function_body || scope == file_scope) && context)
867 DECL_INITIAL (context) = block;
868 BLOCK_SUPERCONTEXT (block) = context;
870 else if (scope->outer)
872 if (block)
873 SCOPE_LIST_APPEND (scope->outer, blocks, block);
874 /* If we did not make a block for the scope just exited, any
875 blocks made for inner scopes must be carried forward so they
876 will later become subblocks of something else. */
877 else if (scope->blocks)
878 SCOPE_LIST_CONCAT (scope->outer, blocks, scope, blocks);
881 /* Pop the current scope, and free the structure for reuse. */
882 current_scope = scope->outer;
883 if (scope->function_body)
884 current_function_scope = scope->outer_function;
886 memset (scope, 0, sizeof (struct c_scope));
887 scope->outer = scope_freelist;
888 scope_freelist = scope;
890 return block;
893 void
894 push_file_scope (void)
896 tree decl;
898 if (file_scope)
899 return;
901 push_scope ();
902 file_scope = current_scope;
904 start_fname_decls ();
906 for (decl = visible_builtins; decl; decl = TREE_CHAIN (decl))
907 bind (DECL_NAME (decl), decl, file_scope,
908 /*invisible=*/false, /*nested=*/true);
911 void
912 pop_file_scope (void)
914 /* In case there were missing closebraces, get us back to the global
915 binding level. */
916 while (current_scope != file_scope)
917 pop_scope ();
919 /* __FUNCTION__ is defined at file scope (""). This
920 call may not be necessary as my tests indicate it
921 still works without it. */
922 finish_fname_decls ();
924 /* This is the point to write out a PCH if we're doing that.
925 In that case we do not want to do anything else. */
926 if (pch_file)
928 c_common_write_pch ();
929 return;
932 /* Pop off the file scope and close this translation unit. */
933 pop_scope ();
934 file_scope = 0;
936 maybe_apply_pending_pragma_weaks ();
937 cgraph_finalize_compilation_unit ();
941 /* Push a definition or a declaration of struct, union or enum tag "name".
942 "type" should be the type node.
943 We assume that the tag "name" is not already defined.
945 Note that the definition may really be just a forward reference.
946 In that case, the TYPE_SIZE will be zero. */
948 static void
949 pushtag (tree name, tree type)
951 /* Record the identifier as the type's name if it has none. */
952 if (name && !TYPE_NAME (type))
953 TYPE_NAME (type) = name;
954 bind (name, type, current_scope, /*invisible=*/false, /*nested=*/false);
956 /* Create a fake NULL-named TYPE_DECL node whose TREE_TYPE will be the
957 tagged type we just added to the current scope. This fake
958 NULL-named TYPE_DECL node helps dwarfout.c to know when it needs
959 to output a representation of a tagged type, and it also gives
960 us a convenient place to record the "scope start" address for the
961 tagged type. */
963 TYPE_STUB_DECL (type) = pushdecl (build_decl (TYPE_DECL, NULL_TREE, type));
965 /* An approximation for now, so we can tell this is a function-scope tag.
966 This will be updated in pop_scope. */
967 TYPE_CONTEXT (type) = DECL_CONTEXT (TYPE_STUB_DECL (type));
970 /* Subroutine of compare_decls. Allow harmless mismatches in return
971 and argument types provided that the type modes match. This function
972 return a unified type given a suitable match, and 0 otherwise. */
974 static tree
975 match_builtin_function_types (tree newtype, tree oldtype)
977 tree newrettype, oldrettype;
978 tree newargs, oldargs;
979 tree trytype, tryargs;
981 /* Accept the return type of the new declaration if same modes. */
982 oldrettype = TREE_TYPE (oldtype);
983 newrettype = TREE_TYPE (newtype);
985 if (TYPE_MODE (oldrettype) != TYPE_MODE (newrettype))
986 return 0;
988 oldargs = TYPE_ARG_TYPES (oldtype);
989 newargs = TYPE_ARG_TYPES (newtype);
990 tryargs = newargs;
992 while (oldargs || newargs)
994 if (!oldargs
995 || !newargs
996 || !TREE_VALUE (oldargs)
997 || !TREE_VALUE (newargs)
998 || TYPE_MODE (TREE_VALUE (oldargs))
999 != TYPE_MODE (TREE_VALUE (newargs)))
1000 return 0;
1002 oldargs = TREE_CHAIN (oldargs);
1003 newargs = TREE_CHAIN (newargs);
1006 trytype = build_function_type (newrettype, tryargs);
1007 return build_type_attribute_variant (trytype, TYPE_ATTRIBUTES (oldtype));
1010 /* Subroutine of diagnose_mismatched_decls. Check for function type
1011 mismatch involving an empty arglist vs a nonempty one and give clearer
1012 diagnostics. */
1013 static void
1014 diagnose_arglist_conflict (tree newdecl, tree olddecl,
1015 tree newtype, tree oldtype)
1017 tree t;
1019 if (TREE_CODE (olddecl) != FUNCTION_DECL
1020 || !comptypes (TREE_TYPE (oldtype), TREE_TYPE (newtype))
1021 || !((TYPE_ARG_TYPES (oldtype) == 0 && DECL_INITIAL (olddecl) == 0)
1023 (TYPE_ARG_TYPES (newtype) == 0 && DECL_INITIAL (newdecl) == 0)))
1024 return;
1026 t = TYPE_ARG_TYPES (oldtype);
1027 if (t == 0)
1028 t = TYPE_ARG_TYPES (newtype);
1029 for (; t; t = TREE_CHAIN (t))
1031 tree type = TREE_VALUE (t);
1033 if (TREE_CHAIN (t) == 0
1034 && TYPE_MAIN_VARIANT (type) != void_type_node)
1036 inform (input_location, "a parameter list with an ellipsis can%'t match "
1037 "an empty parameter name list declaration");
1038 break;
1041 if (c_type_promotes_to (type) != type)
1043 inform (input_location, "an argument type that has a default promotion can%'t match "
1044 "an empty parameter name list declaration");
1045 break;
1050 /* Another subroutine of diagnose_mismatched_decls. OLDDECL is an
1051 old-style function definition, NEWDECL is a prototype declaration.
1052 Diagnose inconsistencies in the argument list. Returns TRUE if
1053 the prototype is compatible, FALSE if not. */
1054 static bool
1055 validate_proto_after_old_defn (tree newdecl, tree newtype, tree oldtype)
1057 tree newargs, oldargs;
1058 int i;
1060 #define END_OF_ARGLIST(t) ((t) == void_type_node)
1062 oldargs = TYPE_ACTUAL_ARG_TYPES (oldtype);
1063 newargs = TYPE_ARG_TYPES (newtype);
1064 i = 1;
1066 for (;;)
1068 tree oldargtype = TREE_VALUE (oldargs);
1069 tree newargtype = TREE_VALUE (newargs);
1071 if (oldargtype == error_mark_node || newargtype == error_mark_node)
1072 return false;
1074 oldargtype = TYPE_MAIN_VARIANT (oldargtype);
1075 newargtype = TYPE_MAIN_VARIANT (newargtype);
1077 if (END_OF_ARGLIST (oldargtype) && END_OF_ARGLIST (newargtype))
1078 break;
1080 /* Reaching the end of just one list means the two decls don't
1081 agree on the number of arguments. */
1082 if (END_OF_ARGLIST (oldargtype))
1084 error ("prototype for %q+D declares more arguments "
1085 "than previous old-style definition", newdecl);
1086 return false;
1088 else if (END_OF_ARGLIST (newargtype))
1090 error ("prototype for %q+D declares fewer arguments "
1091 "than previous old-style definition", newdecl);
1092 return false;
1095 /* Type for passing arg must be consistent with that declared
1096 for the arg. */
1097 else if (!comptypes (oldargtype, newargtype))
1099 error ("prototype for %q+D declares argument %d"
1100 " with incompatible type",
1101 newdecl, i);
1102 return false;
1105 oldargs = TREE_CHAIN (oldargs);
1106 newargs = TREE_CHAIN (newargs);
1107 i++;
1110 /* If we get here, no errors were found, but do issue a warning
1111 for this poor-style construct. */
1112 warning (0, "prototype for %q+D follows non-prototype definition",
1113 newdecl);
1114 return true;
1115 #undef END_OF_ARGLIST
1118 /* Subroutine of diagnose_mismatched_decls. Report the location of DECL,
1119 first in a pair of mismatched declarations, using the diagnostic
1120 function DIAG. */
1121 static void
1122 locate_old_decl (tree decl)
1124 if (TREE_CODE (decl) == FUNCTION_DECL && DECL_BUILT_IN (decl))
1126 else if (DECL_INITIAL (decl))
1127 inform (input_location, "previous definition of %q+D was here", decl);
1128 else if (C_DECL_IMPLICIT (decl))
1129 inform (input_location, "previous implicit declaration of %q+D was here", decl);
1130 else
1131 inform (input_location, "previous declaration of %q+D was here", decl);
1134 /* Subroutine of duplicate_decls. Compare NEWDECL to OLDDECL.
1135 Returns true if the caller should proceed to merge the two, false
1136 if OLDDECL should simply be discarded. As a side effect, issues
1137 all necessary diagnostics for invalid or poor-style combinations.
1138 If it returns true, writes the types of NEWDECL and OLDDECL to
1139 *NEWTYPEP and *OLDTYPEP - these may have been adjusted from
1140 TREE_TYPE (NEWDECL, OLDDECL) respectively. */
1142 static bool
1143 diagnose_mismatched_decls (tree newdecl, tree olddecl,
1144 tree *newtypep, tree *oldtypep)
1146 tree newtype, oldtype;
1147 bool pedwarned = false;
1148 bool warned = false;
1149 bool retval = true;
1151 #define DECL_EXTERN_INLINE(DECL) (DECL_DECLARED_INLINE_P (DECL) \
1152 && DECL_EXTERNAL (DECL))
1154 /* If we have error_mark_node for either decl or type, just discard
1155 the previous decl - we're in an error cascade already. */
1156 if (olddecl == error_mark_node || newdecl == error_mark_node)
1157 return false;
1158 *oldtypep = oldtype = TREE_TYPE (olddecl);
1159 *newtypep = newtype = TREE_TYPE (newdecl);
1160 if (oldtype == error_mark_node || newtype == error_mark_node)
1161 return false;
1163 /* Two different categories of symbol altogether. This is an error
1164 unless OLDDECL is a builtin. OLDDECL will be discarded in any case. */
1165 if (TREE_CODE (olddecl) != TREE_CODE (newdecl))
1167 if (!(TREE_CODE (olddecl) == FUNCTION_DECL
1168 && DECL_BUILT_IN (olddecl)
1169 && !C_DECL_DECLARED_BUILTIN (olddecl)))
1171 error ("%q+D redeclared as different kind of symbol", newdecl);
1172 locate_old_decl (olddecl);
1174 else if (TREE_PUBLIC (newdecl))
1175 warning (0, "built-in function %q+D declared as non-function",
1176 newdecl);
1177 else
1178 warning (OPT_Wshadow, "declaration of %q+D shadows "
1179 "a built-in function", newdecl);
1180 return false;
1183 /* Enumerators have no linkage, so may only be declared once in a
1184 given scope. */
1185 if (TREE_CODE (olddecl) == CONST_DECL)
1187 error ("redeclaration of enumerator %q+D", newdecl);
1188 locate_old_decl (olddecl);
1189 return false;
1192 if (!comptypes (oldtype, newtype))
1194 if (TREE_CODE (olddecl) == FUNCTION_DECL
1195 && DECL_BUILT_IN (olddecl) && !C_DECL_DECLARED_BUILTIN (olddecl))
1197 /* Accept harmless mismatch in function types.
1198 This is for the ffs and fprintf builtins. */
1199 tree trytype = match_builtin_function_types (newtype, oldtype);
1201 if (trytype && comptypes (newtype, trytype))
1202 *oldtypep = oldtype = trytype;
1203 else
1205 /* If types don't match for a built-in, throw away the
1206 built-in. No point in calling locate_old_decl here, it
1207 won't print anything. */
1208 warning (0, "conflicting types for built-in function %q+D",
1209 newdecl);
1210 return false;
1213 else if (TREE_CODE (olddecl) == FUNCTION_DECL
1214 && DECL_IS_BUILTIN (olddecl))
1216 /* A conflicting function declaration for a predeclared
1217 function that isn't actually built in. Objective C uses
1218 these. The new declaration silently overrides everything
1219 but the volatility (i.e. noreturn) indication. See also
1220 below. FIXME: Make Objective C use normal builtins. */
1221 TREE_THIS_VOLATILE (newdecl) |= TREE_THIS_VOLATILE (olddecl);
1222 return false;
1224 /* Permit void foo (...) to match int foo (...) if the latter is
1225 the definition and implicit int was used. See
1226 c-torture/compile/920625-2.c. */
1227 else if (TREE_CODE (newdecl) == FUNCTION_DECL && DECL_INITIAL (newdecl)
1228 && TYPE_MAIN_VARIANT (TREE_TYPE (oldtype)) == void_type_node
1229 && TYPE_MAIN_VARIANT (TREE_TYPE (newtype)) == integer_type_node
1230 && C_FUNCTION_IMPLICIT_INT (newdecl) && !DECL_INITIAL (olddecl))
1232 pedwarned = pedwarn (input_location, 0,
1233 "conflicting types for %q+D", newdecl);
1234 /* Make sure we keep void as the return type. */
1235 TREE_TYPE (newdecl) = *newtypep = newtype = oldtype;
1236 C_FUNCTION_IMPLICIT_INT (newdecl) = 0;
1238 /* Permit void foo (...) to match an earlier call to foo (...) with
1239 no declared type (thus, implicitly int). */
1240 else if (TREE_CODE (newdecl) == FUNCTION_DECL
1241 && TYPE_MAIN_VARIANT (TREE_TYPE (newtype)) == void_type_node
1242 && TYPE_MAIN_VARIANT (TREE_TYPE (oldtype)) == integer_type_node
1243 && C_DECL_IMPLICIT (olddecl) && !DECL_INITIAL (olddecl))
1245 pedwarned = pedwarn (input_location, 0,
1246 "conflicting types for %q+D", newdecl);
1247 /* Make sure we keep void as the return type. */
1248 TREE_TYPE (olddecl) = *oldtypep = oldtype = newtype;
1250 else
1252 if (TYPE_QUALS (newtype) != TYPE_QUALS (oldtype))
1253 error ("conflicting type qualifiers for %q+D", newdecl);
1254 else
1255 error ("conflicting types for %q+D", newdecl);
1256 diagnose_arglist_conflict (newdecl, olddecl, newtype, oldtype);
1257 locate_old_decl (olddecl);
1258 return false;
1262 /* Redeclaration of a type is a constraint violation (6.7.2.3p1),
1263 but silently ignore the redeclaration if either is in a system
1264 header. (Conflicting redeclarations were handled above.) */
1265 if (TREE_CODE (newdecl) == TYPE_DECL)
1267 if (DECL_IN_SYSTEM_HEADER (newdecl)
1268 || DECL_IN_SYSTEM_HEADER (olddecl)
1269 || TREE_NO_WARNING (newdecl)
1270 || TREE_NO_WARNING (olddecl))
1271 return true; /* Allow OLDDECL to continue in use. */
1273 error ("redefinition of typedef %q+D", newdecl);
1274 locate_old_decl (olddecl);
1275 return false;
1278 /* Function declarations can either be 'static' or 'extern' (no
1279 qualifier is equivalent to 'extern' - C99 6.2.2p5) and therefore
1280 can never conflict with each other on account of linkage
1281 (6.2.2p4). Multiple definitions are not allowed (6.9p3,5) but
1282 gnu89 mode permits two definitions if one is 'extern inline' and
1283 one is not. The non- extern-inline definition supersedes the
1284 extern-inline definition. */
1286 else if (TREE_CODE (newdecl) == FUNCTION_DECL)
1288 /* If you declare a built-in function name as static, or
1289 define the built-in with an old-style definition (so we
1290 can't validate the argument list) the built-in definition is
1291 overridden, but optionally warn this was a bad choice of name. */
1292 if (DECL_BUILT_IN (olddecl)
1293 && !C_DECL_DECLARED_BUILTIN (olddecl)
1294 && (!TREE_PUBLIC (newdecl)
1295 || (DECL_INITIAL (newdecl)
1296 && !TYPE_ARG_TYPES (TREE_TYPE (newdecl)))))
1298 warning (OPT_Wshadow, "declaration of %q+D shadows "
1299 "a built-in function", newdecl);
1300 /* Discard the old built-in function. */
1301 return false;
1304 if (DECL_INITIAL (newdecl))
1306 if (DECL_INITIAL (olddecl))
1308 /* If both decls are in the same TU and the new declaration
1309 isn't overriding an extern inline reject the new decl.
1310 In c99, no overriding is allowed in the same translation
1311 unit. */
1312 if ((!DECL_EXTERN_INLINE (olddecl)
1313 || DECL_EXTERN_INLINE (newdecl)
1314 || (!flag_gnu89_inline
1315 && (!DECL_DECLARED_INLINE_P (olddecl)
1316 || !lookup_attribute ("gnu_inline",
1317 DECL_ATTRIBUTES (olddecl)))
1318 && (!DECL_DECLARED_INLINE_P (newdecl)
1319 || !lookup_attribute ("gnu_inline",
1320 DECL_ATTRIBUTES (newdecl))))
1322 && same_translation_unit_p (newdecl, olddecl))
1324 error ("redefinition of %q+D", newdecl);
1325 locate_old_decl (olddecl);
1326 return false;
1330 /* If we have a prototype after an old-style function definition,
1331 the argument types must be checked specially. */
1332 else if (DECL_INITIAL (olddecl)
1333 && !TYPE_ARG_TYPES (oldtype) && TYPE_ARG_TYPES (newtype)
1334 && TYPE_ACTUAL_ARG_TYPES (oldtype)
1335 && !validate_proto_after_old_defn (newdecl, newtype, oldtype))
1337 locate_old_decl (olddecl);
1338 return false;
1340 /* A non-static declaration (even an "extern") followed by a
1341 static declaration is undefined behavior per C99 6.2.2p3-5,7.
1342 The same is true for a static forward declaration at block
1343 scope followed by a non-static declaration/definition at file
1344 scope. Static followed by non-static at the same scope is
1345 not undefined behavior, and is the most convenient way to get
1346 some effects (see e.g. what unwind-dw2-fde-glibc.c does to
1347 the definition of _Unwind_Find_FDE in unwind-dw2-fde.c), but
1348 we do diagnose it if -Wtraditional. */
1349 if (TREE_PUBLIC (olddecl) && !TREE_PUBLIC (newdecl))
1351 /* Two exceptions to the rule. If olddecl is an extern
1352 inline, or a predeclared function that isn't actually
1353 built in, newdecl silently overrides olddecl. The latter
1354 occur only in Objective C; see also above. (FIXME: Make
1355 Objective C use normal builtins.) */
1356 if (!DECL_IS_BUILTIN (olddecl)
1357 && !DECL_EXTERN_INLINE (olddecl))
1359 error ("static declaration of %q+D follows "
1360 "non-static declaration", newdecl);
1361 locate_old_decl (olddecl);
1363 return false;
1365 else if (TREE_PUBLIC (newdecl) && !TREE_PUBLIC (olddecl))
1367 if (DECL_CONTEXT (olddecl))
1369 error ("non-static declaration of %q+D follows "
1370 "static declaration", newdecl);
1371 locate_old_decl (olddecl);
1372 return false;
1374 else if (warn_traditional)
1376 warned |= warning (OPT_Wtraditional,
1377 "non-static declaration of %q+D "
1378 "follows static declaration", newdecl);
1382 /* Make sure gnu_inline attribute is either not present, or
1383 present on all inline decls. */
1384 if (DECL_DECLARED_INLINE_P (olddecl)
1385 && DECL_DECLARED_INLINE_P (newdecl))
1387 bool newa = lookup_attribute ("gnu_inline",
1388 DECL_ATTRIBUTES (newdecl)) != NULL;
1389 bool olda = lookup_attribute ("gnu_inline",
1390 DECL_ATTRIBUTES (olddecl)) != NULL;
1391 if (newa != olda)
1393 error ("%<gnu_inline%> attribute present on %q+D",
1394 newa ? newdecl : olddecl);
1395 error ("%Jbut not here", newa ? olddecl : newdecl);
1399 else if (TREE_CODE (newdecl) == VAR_DECL)
1401 /* Only variables can be thread-local, and all declarations must
1402 agree on this property. */
1403 if (C_DECL_THREADPRIVATE_P (olddecl) && !DECL_THREAD_LOCAL_P (newdecl))
1405 /* Nothing to check. Since OLDDECL is marked threadprivate
1406 and NEWDECL does not have a thread-local attribute, we
1407 will merge the threadprivate attribute into NEWDECL. */
1410 else if (DECL_THREAD_LOCAL_P (newdecl) != DECL_THREAD_LOCAL_P (olddecl))
1412 if (DECL_THREAD_LOCAL_P (newdecl))
1413 error ("thread-local declaration of %q+D follows "
1414 "non-thread-local declaration", newdecl);
1415 else
1416 error ("non-thread-local declaration of %q+D follows "
1417 "thread-local declaration", newdecl);
1419 locate_old_decl (olddecl);
1420 return false;
1423 /* Multiple initialized definitions are not allowed (6.9p3,5). */
1424 if (DECL_INITIAL (newdecl) && DECL_INITIAL (olddecl))
1426 error ("redefinition of %q+D", newdecl);
1427 locate_old_decl (olddecl);
1428 return false;
1431 /* Objects declared at file scope: if the first declaration had
1432 external linkage (even if it was an external reference) the
1433 second must have external linkage as well, or the behavior is
1434 undefined. If the first declaration had internal linkage, then
1435 the second must too, or else be an external reference (in which
1436 case the composite declaration still has internal linkage).
1437 As for function declarations, we warn about the static-then-
1438 extern case only for -Wtraditional. See generally 6.2.2p3-5,7. */
1439 if (DECL_FILE_SCOPE_P (newdecl)
1440 && TREE_PUBLIC (newdecl) != TREE_PUBLIC (olddecl))
1442 if (DECL_EXTERNAL (newdecl))
1444 if (!DECL_FILE_SCOPE_P (olddecl))
1446 error ("extern declaration of %q+D follows "
1447 "declaration with no linkage", newdecl);
1448 locate_old_decl (olddecl);
1449 return false;
1451 else if (warn_traditional)
1453 warned |= warning (OPT_Wtraditional,
1454 "non-static declaration of %q+D "
1455 "follows static declaration", newdecl);
1458 else
1460 if (TREE_PUBLIC (newdecl))
1461 error ("non-static declaration of %q+D follows "
1462 "static declaration", newdecl);
1463 else
1464 error ("static declaration of %q+D follows "
1465 "non-static declaration", newdecl);
1467 locate_old_decl (olddecl);
1468 return false;
1471 /* Two objects with the same name declared at the same block
1472 scope must both be external references (6.7p3). */
1473 else if (!DECL_FILE_SCOPE_P (newdecl))
1475 if (DECL_EXTERNAL (newdecl))
1477 /* Extern with initializer at block scope, which will
1478 already have received an error. */
1480 else if (DECL_EXTERNAL (olddecl))
1482 error ("declaration of %q+D with no linkage follows "
1483 "extern declaration", newdecl);
1484 locate_old_decl (olddecl);
1486 else
1488 error ("redeclaration of %q+D with no linkage", newdecl);
1489 locate_old_decl (olddecl);
1492 return false;
1496 /* warnings */
1497 /* All decls must agree on a visibility. */
1498 if (CODE_CONTAINS_STRUCT (TREE_CODE (newdecl), TS_DECL_WITH_VIS)
1499 && DECL_VISIBILITY_SPECIFIED (newdecl) && DECL_VISIBILITY_SPECIFIED (olddecl)
1500 && DECL_VISIBILITY (newdecl) != DECL_VISIBILITY (olddecl))
1502 warned |= warning (0, "redeclaration of %q+D with different visibility "
1503 "(old visibility preserved)", newdecl);
1506 if (TREE_CODE (newdecl) == FUNCTION_DECL)
1508 /* Diagnose inline __attribute__ ((noinline)) which is silly. */
1509 if (DECL_DECLARED_INLINE_P (newdecl)
1510 && lookup_attribute ("noinline", DECL_ATTRIBUTES (olddecl)))
1512 warned |= warning (OPT_Wattributes,
1513 "inline declaration of %qD follows "
1514 "declaration with attribute noinline", newdecl);
1516 else if (DECL_DECLARED_INLINE_P (olddecl)
1517 && lookup_attribute ("noinline", DECL_ATTRIBUTES (newdecl)))
1519 warned |= warning (OPT_Wattributes,
1520 "declaration of %q+D with attribute "
1521 "noinline follows inline declaration ", newdecl);
1524 else /* PARM_DECL, VAR_DECL */
1526 /* Redeclaration of a parameter is a constraint violation (this is
1527 not explicitly stated, but follows from C99 6.7p3 [no more than
1528 one declaration of the same identifier with no linkage in the
1529 same scope, except type tags] and 6.2.2p6 [parameters have no
1530 linkage]). We must check for a forward parameter declaration,
1531 indicated by TREE_ASM_WRITTEN on the old declaration - this is
1532 an extension, the mandatory diagnostic for which is handled by
1533 mark_forward_parm_decls. */
1535 if (TREE_CODE (newdecl) == PARM_DECL
1536 && (!TREE_ASM_WRITTEN (olddecl) || TREE_ASM_WRITTEN (newdecl)))
1538 error ("redefinition of parameter %q+D", newdecl);
1539 locate_old_decl (olddecl);
1540 return false;
1544 /* Optional warning for completely redundant decls. */
1545 if (!warned && !pedwarned
1546 && warn_redundant_decls
1547 /* Don't warn about a function declaration followed by a
1548 definition. */
1549 && !(TREE_CODE (newdecl) == FUNCTION_DECL
1550 && DECL_INITIAL (newdecl) && !DECL_INITIAL (olddecl))
1551 /* Don't warn about redundant redeclarations of builtins. */
1552 && !(TREE_CODE (newdecl) == FUNCTION_DECL
1553 && !DECL_BUILT_IN (newdecl)
1554 && DECL_BUILT_IN (olddecl)
1555 && !C_DECL_DECLARED_BUILTIN (olddecl))
1556 /* Don't warn about an extern followed by a definition. */
1557 && !(DECL_EXTERNAL (olddecl) && !DECL_EXTERNAL (newdecl))
1558 /* Don't warn about forward parameter decls. */
1559 && !(TREE_CODE (newdecl) == PARM_DECL
1560 && TREE_ASM_WRITTEN (olddecl) && !TREE_ASM_WRITTEN (newdecl))
1561 /* Don't warn about a variable definition following a declaration. */
1562 && !(TREE_CODE (newdecl) == VAR_DECL
1563 && DECL_INITIAL (newdecl) && !DECL_INITIAL (olddecl)))
1565 warned = warning (OPT_Wredundant_decls, "redundant redeclaration of %q+D",
1566 newdecl);
1569 /* Report location of previous decl/defn. */
1570 if (warned || pedwarned)
1571 locate_old_decl (olddecl);
1573 #undef DECL_EXTERN_INLINE
1575 return retval;
1578 /* Subroutine of duplicate_decls. NEWDECL has been found to be
1579 consistent with OLDDECL, but carries new information. Merge the
1580 new information into OLDDECL. This function issues no
1581 diagnostics. */
1583 static void
1584 merge_decls (tree newdecl, tree olddecl, tree newtype, tree oldtype)
1586 bool new_is_definition = (TREE_CODE (newdecl) == FUNCTION_DECL
1587 && DECL_INITIAL (newdecl) != 0);
1588 bool new_is_prototype = (TREE_CODE (newdecl) == FUNCTION_DECL
1589 && TYPE_ARG_TYPES (TREE_TYPE (newdecl)) != 0);
1590 bool old_is_prototype = (TREE_CODE (olddecl) == FUNCTION_DECL
1591 && TYPE_ARG_TYPES (TREE_TYPE (olddecl)) != 0);
1592 bool extern_changed = false;
1594 /* For real parm decl following a forward decl, rechain the old decl
1595 in its new location and clear TREE_ASM_WRITTEN (it's not a
1596 forward decl anymore). */
1597 if (TREE_CODE (newdecl) == PARM_DECL
1598 && TREE_ASM_WRITTEN (olddecl) && !TREE_ASM_WRITTEN (newdecl))
1600 struct c_binding *b, **here;
1602 for (here = &current_scope->bindings; *here; here = &(*here)->prev)
1603 if ((*here)->decl == olddecl)
1604 goto found;
1605 gcc_unreachable ();
1607 found:
1608 b = *here;
1609 *here = b->prev;
1610 b->prev = current_scope->bindings;
1611 current_scope->bindings = b;
1613 TREE_ASM_WRITTEN (olddecl) = 0;
1616 DECL_ATTRIBUTES (newdecl)
1617 = targetm.merge_decl_attributes (olddecl, newdecl);
1619 /* Merge the data types specified in the two decls. */
1620 TREE_TYPE (newdecl)
1621 = TREE_TYPE (olddecl)
1622 = composite_type (newtype, oldtype);
1624 /* Lay the type out, unless already done. */
1625 if (!comptypes (oldtype, TREE_TYPE (newdecl)))
1627 if (TREE_TYPE (newdecl) != error_mark_node)
1628 layout_type (TREE_TYPE (newdecl));
1629 if (TREE_CODE (newdecl) != FUNCTION_DECL
1630 && TREE_CODE (newdecl) != TYPE_DECL
1631 && TREE_CODE (newdecl) != CONST_DECL)
1632 layout_decl (newdecl, 0);
1634 else
1636 /* Since the type is OLDDECL's, make OLDDECL's size go with. */
1637 DECL_SIZE (newdecl) = DECL_SIZE (olddecl);
1638 DECL_SIZE_UNIT (newdecl) = DECL_SIZE_UNIT (olddecl);
1639 DECL_MODE (newdecl) = DECL_MODE (olddecl);
1640 if (DECL_ALIGN (olddecl) > DECL_ALIGN (newdecl))
1642 DECL_ALIGN (newdecl) = DECL_ALIGN (olddecl);
1643 DECL_USER_ALIGN (newdecl) |= DECL_USER_ALIGN (olddecl);
1647 /* Keep the old rtl since we can safely use it. */
1648 if (HAS_RTL_P (olddecl))
1649 COPY_DECL_RTL (olddecl, newdecl);
1651 /* Merge the type qualifiers. */
1652 if (TREE_READONLY (newdecl))
1653 TREE_READONLY (olddecl) = 1;
1655 if (TREE_THIS_VOLATILE (newdecl))
1656 TREE_THIS_VOLATILE (olddecl) = 1;
1658 /* Merge deprecatedness. */
1659 if (TREE_DEPRECATED (newdecl))
1660 TREE_DEPRECATED (olddecl) = 1;
1662 /* If a decl is in a system header and the other isn't, keep the one on the
1663 system header. Otherwise, keep source location of definition rather than
1664 declaration and of prototype rather than non-prototype unless that
1665 prototype is built-in. */
1666 if (CODE_CONTAINS_STRUCT (TREE_CODE (olddecl), TS_DECL_WITH_VIS)
1667 && DECL_IN_SYSTEM_HEADER (olddecl)
1668 && !DECL_IN_SYSTEM_HEADER (newdecl) )
1669 DECL_SOURCE_LOCATION (newdecl) = DECL_SOURCE_LOCATION (olddecl);
1670 else if (CODE_CONTAINS_STRUCT (TREE_CODE (olddecl), TS_DECL_WITH_VIS)
1671 && DECL_IN_SYSTEM_HEADER (newdecl)
1672 && !DECL_IN_SYSTEM_HEADER (olddecl))
1673 DECL_SOURCE_LOCATION (olddecl) = DECL_SOURCE_LOCATION (newdecl);
1674 else if ((DECL_INITIAL (newdecl) == 0 && DECL_INITIAL (olddecl) != 0)
1675 || (old_is_prototype && !new_is_prototype
1676 && !C_DECL_BUILTIN_PROTOTYPE (olddecl)))
1677 DECL_SOURCE_LOCATION (newdecl) = DECL_SOURCE_LOCATION (olddecl);
1679 /* Merge the initialization information. */
1680 if (DECL_INITIAL (newdecl) == 0)
1681 DECL_INITIAL (newdecl) = DECL_INITIAL (olddecl);
1683 /* Merge the threadprivate attribute. */
1684 if (TREE_CODE (olddecl) == VAR_DECL && C_DECL_THREADPRIVATE_P (olddecl))
1686 DECL_TLS_MODEL (newdecl) = DECL_TLS_MODEL (olddecl);
1687 C_DECL_THREADPRIVATE_P (newdecl) = 1;
1690 if (CODE_CONTAINS_STRUCT (TREE_CODE (olddecl), TS_DECL_WITH_VIS))
1692 /* Merge the section attribute.
1693 We want to issue an error if the sections conflict but that
1694 must be done later in decl_attributes since we are called
1695 before attributes are assigned. */
1696 if (DECL_SECTION_NAME (newdecl) == NULL_TREE)
1697 DECL_SECTION_NAME (newdecl) = DECL_SECTION_NAME (olddecl);
1699 /* Copy the assembler name.
1700 Currently, it can only be defined in the prototype. */
1701 COPY_DECL_ASSEMBLER_NAME (olddecl, newdecl);
1703 /* Use visibility of whichever declaration had it specified */
1704 if (DECL_VISIBILITY_SPECIFIED (olddecl))
1706 DECL_VISIBILITY (newdecl) = DECL_VISIBILITY (olddecl);
1707 DECL_VISIBILITY_SPECIFIED (newdecl) = 1;
1710 if (TREE_CODE (newdecl) == FUNCTION_DECL)
1712 DECL_STATIC_CONSTRUCTOR(newdecl) |= DECL_STATIC_CONSTRUCTOR(olddecl);
1713 DECL_STATIC_DESTRUCTOR (newdecl) |= DECL_STATIC_DESTRUCTOR (olddecl);
1714 DECL_NO_LIMIT_STACK (newdecl) |= DECL_NO_LIMIT_STACK (olddecl);
1715 DECL_NO_INSTRUMENT_FUNCTION_ENTRY_EXIT (newdecl)
1716 |= DECL_NO_INSTRUMENT_FUNCTION_ENTRY_EXIT (olddecl);
1717 TREE_THIS_VOLATILE (newdecl) |= TREE_THIS_VOLATILE (olddecl);
1718 DECL_IS_MALLOC (newdecl) |= DECL_IS_MALLOC (olddecl);
1719 DECL_IS_OPERATOR_NEW (newdecl) |= DECL_IS_OPERATOR_NEW (olddecl);
1720 TREE_READONLY (newdecl) |= TREE_READONLY (olddecl);
1721 DECL_PURE_P (newdecl) |= DECL_PURE_P (olddecl);
1722 DECL_IS_NOVOPS (newdecl) |= DECL_IS_NOVOPS (olddecl);
1725 /* Merge the storage class information. */
1726 merge_weak (newdecl, olddecl);
1728 /* For functions, static overrides non-static. */
1729 if (TREE_CODE (newdecl) == FUNCTION_DECL)
1731 TREE_PUBLIC (newdecl) &= TREE_PUBLIC (olddecl);
1732 /* This is since we don't automatically
1733 copy the attributes of NEWDECL into OLDDECL. */
1734 TREE_PUBLIC (olddecl) = TREE_PUBLIC (newdecl);
1735 /* If this clears `static', clear it in the identifier too. */
1736 if (!TREE_PUBLIC (olddecl))
1737 TREE_PUBLIC (DECL_NAME (olddecl)) = 0;
1741 /* In c99, 'extern' declaration before (or after) 'inline' means this
1742 function is not DECL_EXTERNAL, unless 'gnu_inline' attribute
1743 is present. */
1744 if (TREE_CODE (newdecl) == FUNCTION_DECL
1745 && !flag_gnu89_inline
1746 && (DECL_DECLARED_INLINE_P (newdecl)
1747 || DECL_DECLARED_INLINE_P (olddecl))
1748 && (!DECL_DECLARED_INLINE_P (newdecl)
1749 || !DECL_DECLARED_INLINE_P (olddecl)
1750 || !DECL_EXTERNAL (olddecl))
1751 && DECL_EXTERNAL (newdecl)
1752 && !lookup_attribute ("gnu_inline", DECL_ATTRIBUTES (newdecl))
1753 && !current_function_decl)
1754 DECL_EXTERNAL (newdecl) = 0;
1756 if (DECL_EXTERNAL (newdecl))
1758 TREE_STATIC (newdecl) = TREE_STATIC (olddecl);
1759 DECL_EXTERNAL (newdecl) = DECL_EXTERNAL (olddecl);
1761 /* An extern decl does not override previous storage class. */
1762 TREE_PUBLIC (newdecl) = TREE_PUBLIC (olddecl);
1763 if (!DECL_EXTERNAL (newdecl))
1765 DECL_CONTEXT (newdecl) = DECL_CONTEXT (olddecl);
1766 DECL_COMMON (newdecl) = DECL_COMMON (olddecl);
1769 else
1771 TREE_STATIC (olddecl) = TREE_STATIC (newdecl);
1772 TREE_PUBLIC (olddecl) = TREE_PUBLIC (newdecl);
1775 if (TREE_CODE (newdecl) == FUNCTION_DECL)
1777 /* If we're redefining a function previously defined as extern
1778 inline, make sure we emit debug info for the inline before we
1779 throw it away, in case it was inlined into a function that
1780 hasn't been written out yet. */
1781 if (new_is_definition && DECL_INITIAL (olddecl))
1782 /* The new defn must not be inline. */
1783 DECL_UNINLINABLE (newdecl) = 1;
1784 else
1786 /* If either decl says `inline', this fn is inline, unless
1787 its definition was passed already. */
1788 if (DECL_DECLARED_INLINE_P (newdecl)
1789 || DECL_DECLARED_INLINE_P (olddecl))
1790 DECL_DECLARED_INLINE_P (newdecl) = 1;
1792 DECL_UNINLINABLE (newdecl) = DECL_UNINLINABLE (olddecl)
1793 = (DECL_UNINLINABLE (newdecl) || DECL_UNINLINABLE (olddecl));
1795 DECL_DISREGARD_INLINE_LIMITS (newdecl)
1796 = DECL_DISREGARD_INLINE_LIMITS (olddecl)
1797 = (DECL_DISREGARD_INLINE_LIMITS (newdecl)
1798 || DECL_DISREGARD_INLINE_LIMITS (olddecl));
1801 if (DECL_BUILT_IN (olddecl))
1803 /* If redeclaring a builtin function, it stays built in.
1804 But it gets tagged as having been declared. */
1805 DECL_BUILT_IN_CLASS (newdecl) = DECL_BUILT_IN_CLASS (olddecl);
1806 DECL_FUNCTION_CODE (newdecl) = DECL_FUNCTION_CODE (olddecl);
1807 C_DECL_DECLARED_BUILTIN (newdecl) = 1;
1808 if (new_is_prototype)
1809 C_DECL_BUILTIN_PROTOTYPE (newdecl) = 0;
1810 else
1811 C_DECL_BUILTIN_PROTOTYPE (newdecl)
1812 = C_DECL_BUILTIN_PROTOTYPE (olddecl);
1815 /* Preserve function specific target and optimization options */
1816 if (DECL_FUNCTION_SPECIFIC_TARGET (olddecl)
1817 && !DECL_FUNCTION_SPECIFIC_TARGET (newdecl))
1818 DECL_FUNCTION_SPECIFIC_TARGET (newdecl)
1819 = DECL_FUNCTION_SPECIFIC_TARGET (olddecl);
1821 if (DECL_FUNCTION_SPECIFIC_OPTIMIZATION (olddecl)
1822 && !DECL_FUNCTION_SPECIFIC_OPTIMIZATION (newdecl))
1823 DECL_FUNCTION_SPECIFIC_OPTIMIZATION (newdecl)
1824 = DECL_FUNCTION_SPECIFIC_OPTIMIZATION (olddecl);
1826 /* Also preserve various other info from the definition. */
1827 if (!new_is_definition)
1829 DECL_RESULT (newdecl) = DECL_RESULT (olddecl);
1830 DECL_INITIAL (newdecl) = DECL_INITIAL (olddecl);
1831 DECL_STRUCT_FUNCTION (newdecl) = DECL_STRUCT_FUNCTION (olddecl);
1832 DECL_SAVED_TREE (newdecl) = DECL_SAVED_TREE (olddecl);
1833 gimple_set_body (newdecl, gimple_body (olddecl));
1834 DECL_ARGUMENTS (newdecl) = DECL_ARGUMENTS (olddecl);
1836 /* See if we've got a function to instantiate from. */
1837 if (DECL_SAVED_TREE (olddecl))
1838 DECL_ABSTRACT_ORIGIN (newdecl)
1839 = DECL_ABSTRACT_ORIGIN (olddecl);
1843 extern_changed = DECL_EXTERNAL (olddecl) && !DECL_EXTERNAL (newdecl);
1845 /* Merge the USED information. */
1846 if (TREE_USED (olddecl))
1847 TREE_USED (newdecl) = 1;
1848 else if (TREE_USED (newdecl))
1849 TREE_USED (olddecl) = 1;
1851 /* Copy most of the decl-specific fields of NEWDECL into OLDDECL.
1852 But preserve OLDDECL's DECL_UID and DECL_CONTEXT. */
1854 unsigned olddecl_uid = DECL_UID (olddecl);
1855 tree olddecl_context = DECL_CONTEXT (olddecl);
1857 memcpy ((char *) olddecl + sizeof (struct tree_common),
1858 (char *) newdecl + sizeof (struct tree_common),
1859 sizeof (struct tree_decl_common) - sizeof (struct tree_common));
1860 switch (TREE_CODE (olddecl))
1862 case FUNCTION_DECL:
1863 gimple_set_body (olddecl, gimple_body (newdecl));
1864 /* fall through */
1866 case FIELD_DECL:
1867 case VAR_DECL:
1868 case PARM_DECL:
1869 case LABEL_DECL:
1870 case RESULT_DECL:
1871 case CONST_DECL:
1872 case TYPE_DECL:
1873 memcpy ((char *) olddecl + sizeof (struct tree_decl_common),
1874 (char *) newdecl + sizeof (struct tree_decl_common),
1875 tree_code_size (TREE_CODE (olddecl)) - sizeof (struct tree_decl_common));
1876 break;
1878 default:
1880 memcpy ((char *) olddecl + sizeof (struct tree_decl_common),
1881 (char *) newdecl + sizeof (struct tree_decl_common),
1882 sizeof (struct tree_decl_non_common) - sizeof (struct tree_decl_common));
1884 DECL_UID (olddecl) = olddecl_uid;
1885 DECL_CONTEXT (olddecl) = olddecl_context;
1888 /* If OLDDECL had its DECL_RTL instantiated, re-invoke make_decl_rtl
1889 so that encode_section_info has a chance to look at the new decl
1890 flags and attributes. */
1891 if (DECL_RTL_SET_P (olddecl)
1892 && (TREE_CODE (olddecl) == FUNCTION_DECL
1893 || (TREE_CODE (olddecl) == VAR_DECL
1894 && TREE_STATIC (olddecl))))
1895 make_decl_rtl (olddecl);
1897 /* If we changed a function from DECL_EXTERNAL to !DECL_EXTERNAL,
1898 and the definition is coming from the old version, cgraph needs
1899 to be called again. */
1900 if (extern_changed && !new_is_definition
1901 && TREE_CODE (olddecl) == FUNCTION_DECL && DECL_INITIAL (olddecl))
1902 cgraph_mark_if_needed (olddecl);
1905 /* Handle when a new declaration NEWDECL has the same name as an old
1906 one OLDDECL in the same binding contour. Prints an error message
1907 if appropriate.
1909 If safely possible, alter OLDDECL to look like NEWDECL, and return
1910 true. Otherwise, return false. */
1912 static bool
1913 duplicate_decls (tree newdecl, tree olddecl)
1915 tree newtype = NULL, oldtype = NULL;
1917 if (!diagnose_mismatched_decls (newdecl, olddecl, &newtype, &oldtype))
1919 /* Avoid `unused variable' and other warnings for OLDDECL. */
1920 TREE_NO_WARNING (olddecl) = 1;
1921 return false;
1924 merge_decls (newdecl, olddecl, newtype, oldtype);
1925 return true;
1929 /* Check whether decl-node NEW_DECL shadows an existing declaration. */
1930 static void
1931 warn_if_shadowing (tree new_decl)
1933 struct c_binding *b;
1935 /* Shadow warnings wanted? */
1936 if (!warn_shadow
1937 /* No shadow warnings for internally generated vars. */
1938 || DECL_IS_BUILTIN (new_decl)
1939 /* No shadow warnings for vars made for inlining. */
1940 || DECL_FROM_INLINE (new_decl))
1941 return;
1943 /* Is anything being shadowed? Invisible decls do not count. */
1944 for (b = I_SYMBOL_BINDING (DECL_NAME (new_decl)); b; b = b->shadowed)
1945 if (b->decl && b->decl != new_decl && !b->invisible)
1947 tree old_decl = b->decl;
1949 if (old_decl == error_mark_node)
1951 warning (OPT_Wshadow, "declaration of %q+D shadows previous "
1952 "non-variable", new_decl);
1953 break;
1955 else if (TREE_CODE (old_decl) == PARM_DECL)
1956 warning (OPT_Wshadow, "declaration of %q+D shadows a parameter",
1957 new_decl);
1958 else if (DECL_FILE_SCOPE_P (old_decl))
1959 warning (OPT_Wshadow, "declaration of %q+D shadows a global "
1960 "declaration", new_decl);
1961 else if (TREE_CODE (old_decl) == FUNCTION_DECL
1962 && DECL_BUILT_IN (old_decl))
1964 warning (OPT_Wshadow, "declaration of %q+D shadows "
1965 "a built-in function", new_decl);
1966 break;
1968 else
1969 warning (OPT_Wshadow, "declaration of %q+D shadows a previous local",
1970 new_decl);
1972 warning (OPT_Wshadow, "%Jshadowed declaration is here", old_decl);
1974 break;
1979 /* Subroutine of pushdecl.
1981 X is a TYPE_DECL for a typedef statement. Create a brand new
1982 ..._TYPE node (which will be just a variant of the existing
1983 ..._TYPE node with identical properties) and then install X
1984 as the TYPE_NAME of this brand new (duplicate) ..._TYPE node.
1986 The whole point here is to end up with a situation where each
1987 and every ..._TYPE node the compiler creates will be uniquely
1988 associated with AT MOST one node representing a typedef name.
1989 This way, even though the compiler substitutes corresponding
1990 ..._TYPE nodes for TYPE_DECL (i.e. "typedef name") nodes very
1991 early on, later parts of the compiler can always do the reverse
1992 translation and get back the corresponding typedef name. For
1993 example, given:
1995 typedef struct S MY_TYPE;
1996 MY_TYPE object;
1998 Later parts of the compiler might only know that `object' was of
1999 type `struct S' if it were not for code just below. With this
2000 code however, later parts of the compiler see something like:
2002 struct S' == struct S
2003 typedef struct S' MY_TYPE;
2004 struct S' object;
2006 And they can then deduce (from the node for type struct S') that
2007 the original object declaration was:
2009 MY_TYPE object;
2011 Being able to do this is important for proper support of protoize,
2012 and also for generating precise symbolic debugging information
2013 which takes full account of the programmer's (typedef) vocabulary.
2015 Obviously, we don't want to generate a duplicate ..._TYPE node if
2016 the TYPE_DECL node that we are now processing really represents a
2017 standard built-in type. */
2019 static void
2020 clone_underlying_type (tree x)
2022 if (DECL_IS_BUILTIN (x))
2024 if (TYPE_NAME (TREE_TYPE (x)) == 0)
2025 TYPE_NAME (TREE_TYPE (x)) = x;
2027 else if (TREE_TYPE (x) != error_mark_node
2028 && DECL_ORIGINAL_TYPE (x) == NULL_TREE)
2030 tree tt = TREE_TYPE (x);
2031 DECL_ORIGINAL_TYPE (x) = tt;
2032 tt = build_variant_type_copy (tt);
2033 TYPE_NAME (tt) = x;
2034 TREE_USED (tt) = TREE_USED (x);
2035 TREE_TYPE (x) = tt;
2039 /* Record a decl-node X as belonging to the current lexical scope.
2040 Check for errors (such as an incompatible declaration for the same
2041 name already seen in the same scope).
2043 Returns either X or an old decl for the same name.
2044 If an old decl is returned, it may have been smashed
2045 to agree with what X says. */
2047 tree
2048 pushdecl (tree x)
2050 tree name = DECL_NAME (x);
2051 struct c_scope *scope = current_scope;
2052 struct c_binding *b;
2053 bool nested = false;
2055 /* Must set DECL_CONTEXT for everything not at file scope or
2056 DECL_FILE_SCOPE_P won't work. Local externs don't count
2057 unless they have initializers (which generate code). */
2058 if (current_function_decl
2059 && ((TREE_CODE (x) != FUNCTION_DECL && TREE_CODE (x) != VAR_DECL)
2060 || DECL_INITIAL (x) || !DECL_EXTERNAL (x)))
2061 DECL_CONTEXT (x) = current_function_decl;
2063 /* If this is of variably modified type, prevent jumping into its
2064 scope. */
2065 if ((TREE_CODE (x) == VAR_DECL || TREE_CODE (x) == TYPE_DECL)
2066 && variably_modified_type_p (TREE_TYPE (x), NULL_TREE))
2067 c_begin_vm_scope (scope->depth);
2069 /* Anonymous decls are just inserted in the scope. */
2070 if (!name)
2072 bind (name, x, scope, /*invisible=*/false, /*nested=*/false);
2073 return x;
2076 /* First, see if there is another declaration with the same name in
2077 the current scope. If there is, duplicate_decls may do all the
2078 work for us. If duplicate_decls returns false, that indicates
2079 two incompatible decls in the same scope; we are to silently
2080 replace the old one (duplicate_decls has issued all appropriate
2081 diagnostics). In particular, we should not consider possible
2082 duplicates in the external scope, or shadowing. */
2083 b = I_SYMBOL_BINDING (name);
2084 if (b && B_IN_SCOPE (b, scope))
2086 struct c_binding *b_ext, *b_use;
2087 tree type = TREE_TYPE (x);
2088 tree visdecl = b->decl;
2089 tree vistype = TREE_TYPE (visdecl);
2090 if (TREE_CODE (TREE_TYPE (x)) == ARRAY_TYPE
2091 && COMPLETE_TYPE_P (TREE_TYPE (x)))
2092 b->inner_comp = false;
2093 b_use = b;
2094 b_ext = b;
2095 /* If this is an external linkage declaration, we should check
2096 for compatibility with the type in the external scope before
2097 setting the type at this scope based on the visible
2098 information only. */
2099 if (TREE_PUBLIC (x) && TREE_PUBLIC (visdecl))
2101 while (b_ext && !B_IN_EXTERNAL_SCOPE (b_ext))
2102 b_ext = b_ext->shadowed;
2103 if (b_ext)
2105 b_use = b_ext;
2106 if (b_use->type)
2107 TREE_TYPE (b_use->decl) = b_use->type;
2110 if (duplicate_decls (x, b_use->decl))
2112 if (b_use != b)
2114 /* Save the updated type in the external scope and
2115 restore the proper type for this scope. */
2116 tree thistype;
2117 if (comptypes (vistype, type))
2118 thistype = composite_type (vistype, type);
2119 else
2120 thistype = TREE_TYPE (b_use->decl);
2121 b_use->type = TREE_TYPE (b_use->decl);
2122 if (TREE_CODE (b_use->decl) == FUNCTION_DECL
2123 && DECL_BUILT_IN (b_use->decl))
2124 thistype
2125 = build_type_attribute_variant (thistype,
2126 TYPE_ATTRIBUTES
2127 (b_use->type));
2128 TREE_TYPE (b_use->decl) = thistype;
2130 return b_use->decl;
2132 else
2133 goto skip_external_and_shadow_checks;
2136 /* All declarations with external linkage, and all external
2137 references, go in the external scope, no matter what scope is
2138 current. However, the binding in that scope is ignored for
2139 purposes of normal name lookup. A separate binding structure is
2140 created in the requested scope; this governs the normal
2141 visibility of the symbol.
2143 The binding in the externals scope is used exclusively for
2144 detecting duplicate declarations of the same object, no matter
2145 what scope they are in; this is what we do here. (C99 6.2.7p2:
2146 All declarations that refer to the same object or function shall
2147 have compatible type; otherwise, the behavior is undefined.) */
2148 if (DECL_EXTERNAL (x) || scope == file_scope)
2150 tree type = TREE_TYPE (x);
2151 tree vistype = 0;
2152 tree visdecl = 0;
2153 bool type_saved = false;
2154 if (b && !B_IN_EXTERNAL_SCOPE (b)
2155 && (TREE_CODE (b->decl) == FUNCTION_DECL
2156 || TREE_CODE (b->decl) == VAR_DECL)
2157 && DECL_FILE_SCOPE_P (b->decl))
2159 visdecl = b->decl;
2160 vistype = TREE_TYPE (visdecl);
2162 if (scope != file_scope
2163 && !DECL_IN_SYSTEM_HEADER (x))
2164 warning (OPT_Wnested_externs, "nested extern declaration of %qD", x);
2166 while (b && !B_IN_EXTERNAL_SCOPE (b))
2168 /* If this decl might be modified, save its type. This is
2169 done here rather than when the decl is first bound
2170 because the type may change after first binding, through
2171 being completed or through attributes being added. If we
2172 encounter multiple such decls, only the first should have
2173 its type saved; the others will already have had their
2174 proper types saved and the types will not have changed as
2175 their scopes will not have been re-entered. */
2176 if (DECL_P (b->decl) && DECL_FILE_SCOPE_P (b->decl) && !type_saved)
2178 b->type = TREE_TYPE (b->decl);
2179 type_saved = true;
2181 if (B_IN_FILE_SCOPE (b)
2182 && TREE_CODE (b->decl) == VAR_DECL
2183 && TREE_STATIC (b->decl)
2184 && TREE_CODE (TREE_TYPE (b->decl)) == ARRAY_TYPE
2185 && !TYPE_DOMAIN (TREE_TYPE (b->decl))
2186 && TREE_CODE (type) == ARRAY_TYPE
2187 && TYPE_DOMAIN (type)
2188 && TYPE_MAX_VALUE (TYPE_DOMAIN (type))
2189 && !integer_zerop (TYPE_MAX_VALUE (TYPE_DOMAIN (type))))
2191 /* Array type completed in inner scope, which should be
2192 diagnosed if the completion does not have size 1 and
2193 it does not get completed in the file scope. */
2194 b->inner_comp = true;
2196 b = b->shadowed;
2199 /* If a matching external declaration has been found, set its
2200 type to the composite of all the types of that declaration.
2201 After the consistency checks, it will be reset to the
2202 composite of the visible types only. */
2203 if (b && (TREE_PUBLIC (x) || same_translation_unit_p (x, b->decl))
2204 && b->type)
2205 TREE_TYPE (b->decl) = b->type;
2207 /* The point of the same_translation_unit_p check here is,
2208 we want to detect a duplicate decl for a construct like
2209 foo() { extern bar(); } ... static bar(); but not if
2210 they are in different translation units. In any case,
2211 the static does not go in the externals scope. */
2212 if (b
2213 && (TREE_PUBLIC (x) || same_translation_unit_p (x, b->decl))
2214 && duplicate_decls (x, b->decl))
2216 tree thistype;
2217 if (vistype)
2219 if (comptypes (vistype, type))
2220 thistype = composite_type (vistype, type);
2221 else
2222 thistype = TREE_TYPE (b->decl);
2224 else
2225 thistype = type;
2226 b->type = TREE_TYPE (b->decl);
2227 if (TREE_CODE (b->decl) == FUNCTION_DECL && DECL_BUILT_IN (b->decl))
2228 thistype
2229 = build_type_attribute_variant (thistype,
2230 TYPE_ATTRIBUTES (b->type));
2231 TREE_TYPE (b->decl) = thistype;
2232 bind (name, b->decl, scope, /*invisible=*/false, /*nested=*/true);
2233 return b->decl;
2235 else if (TREE_PUBLIC (x))
2237 if (visdecl && !b && duplicate_decls (x, visdecl))
2239 /* An external declaration at block scope referring to a
2240 visible entity with internal linkage. The composite
2241 type will already be correct for this scope, so we
2242 just need to fall through to make the declaration in
2243 this scope. */
2244 nested = true;
2245 x = visdecl;
2247 else
2249 bind (name, x, external_scope, /*invisible=*/true,
2250 /*nested=*/false);
2251 nested = true;
2256 if (TREE_CODE (x) != PARM_DECL)
2257 warn_if_shadowing (x);
2259 skip_external_and_shadow_checks:
2260 if (TREE_CODE (x) == TYPE_DECL)
2261 clone_underlying_type (x);
2263 bind (name, x, scope, /*invisible=*/false, nested);
2265 /* If x's type is incomplete because it's based on a
2266 structure or union which has not yet been fully declared,
2267 attach it to that structure or union type, so we can go
2268 back and complete the variable declaration later, if the
2269 structure or union gets fully declared.
2271 If the input is erroneous, we can have error_mark in the type
2272 slot (e.g. "f(void a, ...)") - that doesn't count as an
2273 incomplete type. */
2274 if (TREE_TYPE (x) != error_mark_node
2275 && !COMPLETE_TYPE_P (TREE_TYPE (x)))
2277 tree element = TREE_TYPE (x);
2279 while (TREE_CODE (element) == ARRAY_TYPE)
2280 element = TREE_TYPE (element);
2281 element = TYPE_MAIN_VARIANT (element);
2283 if ((TREE_CODE (element) == RECORD_TYPE
2284 || TREE_CODE (element) == UNION_TYPE)
2285 && (TREE_CODE (x) != TYPE_DECL
2286 || TREE_CODE (TREE_TYPE (x)) == ARRAY_TYPE)
2287 && !COMPLETE_TYPE_P (element))
2288 C_TYPE_INCOMPLETE_VARS (element)
2289 = tree_cons (NULL_TREE, x, C_TYPE_INCOMPLETE_VARS (element));
2291 return x;
2294 /* Record X as belonging to file scope.
2295 This is used only internally by the Objective-C front end,
2296 and is limited to its needs. duplicate_decls is not called;
2297 if there is any preexisting decl for this identifier, it is an ICE. */
2299 tree
2300 pushdecl_top_level (tree x)
2302 tree name;
2303 bool nested = false;
2304 gcc_assert (TREE_CODE (x) == VAR_DECL || TREE_CODE (x) == CONST_DECL);
2306 name = DECL_NAME (x);
2308 gcc_assert (TREE_CODE (x) == CONST_DECL || !I_SYMBOL_BINDING (name));
2310 if (TREE_PUBLIC (x))
2312 bind (name, x, external_scope, /*invisible=*/true, /*nested=*/false);
2313 nested = true;
2315 if (file_scope)
2316 bind (name, x, file_scope, /*invisible=*/false, nested);
2318 return x;
2321 static void
2322 implicit_decl_warning (tree id, tree olddecl)
2324 if (warn_implicit_function_declaration)
2326 bool warned;
2328 if (flag_isoc99)
2329 warned = pedwarn (input_location, OPT_Wimplicit_function_declaration,
2330 "implicit declaration of function %qE", id);
2331 else
2332 warned = warning (OPT_Wimplicit_function_declaration,
2333 G_("implicit declaration of function %qE"), id);
2334 if (olddecl && warned)
2335 locate_old_decl (olddecl);
2339 /* Generate an implicit declaration for identifier FUNCTIONID as a
2340 function of type int (). */
2342 tree
2343 implicitly_declare (tree functionid)
2345 struct c_binding *b;
2346 tree decl = 0;
2347 tree asmspec_tree;
2349 for (b = I_SYMBOL_BINDING (functionid); b; b = b->shadowed)
2351 if (B_IN_SCOPE (b, external_scope))
2353 decl = b->decl;
2354 break;
2358 if (decl)
2360 if (decl == error_mark_node)
2361 return decl;
2363 /* FIXME: Objective-C has weird not-really-builtin functions
2364 which are supposed to be visible automatically. They wind up
2365 in the external scope because they're pushed before the file
2366 scope gets created. Catch this here and rebind them into the
2367 file scope. */
2368 if (!DECL_BUILT_IN (decl) && DECL_IS_BUILTIN (decl))
2370 bind (functionid, decl, file_scope,
2371 /*invisible=*/false, /*nested=*/true);
2372 return decl;
2374 else
2376 tree newtype = default_function_type;
2377 if (b->type)
2378 TREE_TYPE (decl) = b->type;
2379 /* Implicit declaration of a function already declared
2380 (somehow) in a different scope, or as a built-in.
2381 If this is the first time this has happened, warn;
2382 then recycle the old declaration but with the new type. */
2383 if (!C_DECL_IMPLICIT (decl))
2385 implicit_decl_warning (functionid, decl);
2386 C_DECL_IMPLICIT (decl) = 1;
2388 if (DECL_BUILT_IN (decl))
2390 newtype = build_type_attribute_variant (newtype,
2391 TYPE_ATTRIBUTES
2392 (TREE_TYPE (decl)));
2393 if (!comptypes (newtype, TREE_TYPE (decl)))
2395 warning (0, "incompatible implicit declaration of built-in"
2396 " function %qD", decl);
2397 newtype = TREE_TYPE (decl);
2400 else
2402 if (!comptypes (newtype, TREE_TYPE (decl)))
2404 error ("incompatible implicit declaration of function %qD",
2405 decl);
2406 locate_old_decl (decl);
2409 b->type = TREE_TYPE (decl);
2410 TREE_TYPE (decl) = newtype;
2411 bind (functionid, decl, current_scope,
2412 /*invisible=*/false, /*nested=*/true);
2413 return decl;
2417 /* Not seen before. */
2418 decl = build_decl (FUNCTION_DECL, functionid, default_function_type);
2419 DECL_EXTERNAL (decl) = 1;
2420 TREE_PUBLIC (decl) = 1;
2421 C_DECL_IMPLICIT (decl) = 1;
2422 implicit_decl_warning (functionid, 0);
2423 asmspec_tree = maybe_apply_renaming_pragma (decl, /*asmname=*/NULL);
2424 if (asmspec_tree)
2425 set_user_assembler_name (decl, TREE_STRING_POINTER (asmspec_tree));
2427 /* C89 says implicit declarations are in the innermost block.
2428 So we record the decl in the standard fashion. */
2429 decl = pushdecl (decl);
2431 /* No need to call objc_check_decl here - it's a function type. */
2432 rest_of_decl_compilation (decl, 0, 0);
2434 /* Write a record describing this implicit function declaration
2435 to the prototypes file (if requested). */
2436 gen_aux_info_record (decl, 0, 1, 0);
2438 /* Possibly apply some default attributes to this implicit declaration. */
2439 decl_attributes (&decl, NULL_TREE, 0);
2441 return decl;
2444 /* Issue an error message for a reference to an undeclared variable
2445 ID, including a reference to a builtin outside of function-call
2446 context. Establish a binding of the identifier to error_mark_node
2447 in an appropriate scope, which will suppress further errors for the
2448 same identifier. The error message should be given location LOC. */
2449 void
2450 undeclared_variable (tree id, location_t loc)
2452 static bool already = false;
2453 struct c_scope *scope;
2455 if (current_function_decl == 0)
2457 /* Suppress the error message and return an error_mark_node if we are
2458 parsing a lock attribute. We would like the lock attributes to
2459 reference (and tolerate) names not in scope so that they provide
2460 better code documentation capability. */
2461 if (!parsing_lock_attribute)
2462 error ("%H%qE undeclared here (not in a function)", &loc, id);
2463 scope = current_scope;
2465 else
2467 if (!parsing_lock_attribute)
2469 error ("%H%qE undeclared (first use in this function)", &loc, id);
2471 if (!already)
2473 error ("%H(Each undeclared identifier is reported only once",
2474 &loc);
2475 error ("%Hfor each function it appears in.)", &loc);
2476 already = true;
2480 /* If we are parsing old-style parameter decls, current_function_decl
2481 will be nonnull but current_function_scope will be null. */
2482 scope = current_function_scope ? current_function_scope : current_scope;
2484 bind (id, error_mark_node, scope, /*invisible=*/false, /*nested=*/false);
2487 /* Subroutine of lookup_label, declare_label, define_label: construct a
2488 LABEL_DECL with all the proper frills. */
2490 static tree
2491 make_label (tree name, location_t location)
2493 tree label = build_decl (LABEL_DECL, name, void_type_node);
2495 DECL_CONTEXT (label) = current_function_decl;
2496 DECL_MODE (label) = VOIDmode;
2497 DECL_SOURCE_LOCATION (label) = location;
2499 return label;
2502 /* Get the LABEL_DECL corresponding to identifier NAME as a label.
2503 Create one if none exists so far for the current function.
2504 This is called when a label is used in a goto expression or
2505 has its address taken. */
2507 tree
2508 lookup_label (tree name)
2510 tree label;
2512 if (current_function_decl == 0)
2514 error ("label %qE referenced outside of any function", name);
2515 return 0;
2518 /* Use a label already defined or ref'd with this name, but not if
2519 it is inherited from a containing function and wasn't declared
2520 using __label__. */
2521 label = I_LABEL_DECL (name);
2522 if (label && (DECL_CONTEXT (label) == current_function_decl
2523 || C_DECLARED_LABEL_FLAG (label)))
2525 /* If the label has only been declared, update its apparent
2526 location to point here, for better diagnostics if it
2527 turns out not to have been defined. */
2528 if (!TREE_USED (label))
2529 DECL_SOURCE_LOCATION (label) = input_location;
2530 return label;
2533 /* No label binding for that identifier; make one. */
2534 label = make_label (name, input_location);
2536 /* Ordinary labels go in the current function scope. */
2537 bind (name, label, current_function_scope,
2538 /*invisible=*/false, /*nested=*/false);
2539 return label;
2542 /* Make a label named NAME in the current function, shadowing silently
2543 any that may be inherited from containing functions or containing
2544 scopes. This is called for __label__ declarations. */
2546 tree
2547 declare_label (tree name)
2549 struct c_binding *b = I_LABEL_BINDING (name);
2550 tree label;
2552 /* Check to make sure that the label hasn't already been declared
2553 at this scope */
2554 if (b && B_IN_CURRENT_SCOPE (b))
2556 error ("duplicate label declaration %qE", name);
2557 locate_old_decl (b->decl);
2559 /* Just use the previous declaration. */
2560 return b->decl;
2563 label = make_label (name, input_location);
2564 C_DECLARED_LABEL_FLAG (label) = 1;
2566 /* Declared labels go in the current scope. */
2567 bind (name, label, current_scope,
2568 /*invisible=*/false, /*nested=*/false);
2569 return label;
2572 /* Define a label, specifying the location in the source file.
2573 Return the LABEL_DECL node for the label, if the definition is valid.
2574 Otherwise return 0. */
2576 tree
2577 define_label (location_t location, tree name)
2579 /* Find any preexisting label with this name. It is an error
2580 if that label has already been defined in this function, or
2581 if there is a containing function with a declared label with
2582 the same name. */
2583 tree label = I_LABEL_DECL (name);
2584 struct c_label_list *nlist_se, *nlist_vm;
2586 if (label
2587 && ((DECL_CONTEXT (label) == current_function_decl
2588 && DECL_INITIAL (label) != 0)
2589 || (DECL_CONTEXT (label) != current_function_decl
2590 && C_DECLARED_LABEL_FLAG (label))))
2592 error ("%Hduplicate label %qD", &location, label);
2593 locate_old_decl (label);
2594 return 0;
2596 else if (label && DECL_CONTEXT (label) == current_function_decl)
2598 /* The label has been used or declared already in this function,
2599 but not defined. Update its location to point to this
2600 definition. */
2601 if (C_DECL_UNDEFINABLE_STMT_EXPR (label))
2602 error ("%Jjump into statement expression", label);
2603 if (C_DECL_UNDEFINABLE_VM (label))
2604 error ("%Jjump into scope of identifier with variably modified type",
2605 label);
2606 DECL_SOURCE_LOCATION (label) = location;
2608 else
2610 /* No label binding for that identifier; make one. */
2611 label = make_label (name, location);
2613 /* Ordinary labels go in the current function scope. */
2614 bind (name, label, current_function_scope,
2615 /*invisible=*/false, /*nested=*/false);
2618 if (!in_system_header && lookup_name (name))
2619 warning (OPT_Wtraditional, "%Htraditional C lacks a separate namespace "
2620 "for labels, identifier %qE conflicts", &location, name);
2622 nlist_se = XOBNEW (&parser_obstack, struct c_label_list);
2623 nlist_se->next = label_context_stack_se->labels_def;
2624 nlist_se->label = label;
2625 label_context_stack_se->labels_def = nlist_se;
2627 nlist_vm = XOBNEW (&parser_obstack, struct c_label_list);
2628 nlist_vm->next = label_context_stack_vm->labels_def;
2629 nlist_vm->label = label;
2630 label_context_stack_vm->labels_def = nlist_vm;
2632 /* Mark label as having been defined. */
2633 DECL_INITIAL (label) = error_mark_node;
2634 return label;
2637 /* Given NAME, an IDENTIFIER_NODE,
2638 return the structure (or union or enum) definition for that name.
2639 If THISLEVEL_ONLY is nonzero, searches only the current_scope.
2640 CODE says which kind of type the caller wants;
2641 it is RECORD_TYPE or UNION_TYPE or ENUMERAL_TYPE.
2642 If the wrong kind of type is found, an error is reported. */
2644 static tree
2645 lookup_tag (enum tree_code code, tree name, int thislevel_only)
2647 struct c_binding *b = I_TAG_BINDING (name);
2648 int thislevel = 0;
2650 if (!b || !b->decl)
2651 return 0;
2653 /* We only care about whether it's in this level if
2654 thislevel_only was set or it might be a type clash. */
2655 if (thislevel_only || TREE_CODE (b->decl) != code)
2657 /* For our purposes, a tag in the external scope is the same as
2658 a tag in the file scope. (Primarily relevant to Objective-C
2659 and its builtin structure tags, which get pushed before the
2660 file scope is created.) */
2661 if (B_IN_CURRENT_SCOPE (b)
2662 || (current_scope == file_scope && B_IN_EXTERNAL_SCOPE (b)))
2663 thislevel = 1;
2666 if (thislevel_only && !thislevel)
2667 return 0;
2669 if (TREE_CODE (b->decl) != code)
2671 /* Definition isn't the kind we were looking for. */
2672 pending_invalid_xref = name;
2673 pending_invalid_xref_location = input_location;
2675 /* If in the same binding level as a declaration as a tag
2676 of a different type, this must not be allowed to
2677 shadow that tag, so give the error immediately.
2678 (For example, "struct foo; union foo;" is invalid.) */
2679 if (thislevel)
2680 pending_xref_error ();
2682 return b->decl;
2685 /* Print an error message now
2686 for a recent invalid struct, union or enum cross reference.
2687 We don't print them immediately because they are not invalid
2688 when used in the `struct foo;' construct for shadowing. */
2690 void
2691 pending_xref_error (void)
2693 if (pending_invalid_xref != 0)
2694 error ("%H%qE defined as wrong kind of tag",
2695 &pending_invalid_xref_location, pending_invalid_xref);
2696 pending_invalid_xref = 0;
2700 /* Look up NAME in the current scope and its superiors
2701 in the namespace of variables, functions and typedefs.
2702 Return a ..._DECL node of some kind representing its definition,
2703 or return 0 if it is undefined. */
2705 tree
2706 lookup_name (tree name)
2708 struct c_binding *b = I_SYMBOL_BINDING (name);
2709 if (b && !b->invisible)
2710 return b->decl;
2711 return 0;
2714 /* Similar to `lookup_name' but look only at the indicated scope. */
2716 static tree
2717 lookup_name_in_scope (tree name, struct c_scope *scope)
2719 struct c_binding *b;
2721 for (b = I_SYMBOL_BINDING (name); b; b = b->shadowed)
2722 if (B_IN_SCOPE (b, scope))
2723 return b->decl;
2724 return 0;
2727 /* Create the predefined scalar types of C,
2728 and some nodes representing standard constants (0, 1, (void *) 0).
2729 Initialize the global scope.
2730 Make definitions for built-in primitive functions. */
2732 void
2733 c_init_decl_processing (void)
2735 location_t save_loc = input_location;
2737 /* Initialize reserved words for parser. */
2738 c_parse_init ();
2740 current_function_decl = 0;
2742 gcc_obstack_init (&parser_obstack);
2744 /* Make the externals scope. */
2745 push_scope ();
2746 external_scope = current_scope;
2748 /* Declarations from c_common_nodes_and_builtins must not be associated
2749 with this input file, lest we get differences between using and not
2750 using preprocessed headers. */
2751 input_location = BUILTINS_LOCATION;
2753 build_common_tree_nodes (flag_signed_char, false);
2755 c_common_nodes_and_builtins ();
2757 /* In C, comparisons and TRUTH_* expressions have type int. */
2758 truthvalue_type_node = integer_type_node;
2759 truthvalue_true_node = integer_one_node;
2760 truthvalue_false_node = integer_zero_node;
2762 /* Even in C99, which has a real boolean type. */
2763 pushdecl (build_decl (TYPE_DECL, get_identifier ("_Bool"),
2764 boolean_type_node));
2766 input_location = save_loc;
2768 pedantic_lvalues = true;
2770 make_fname_decl = c_make_fname_decl;
2771 start_fname_decls ();
2774 /* Create the VAR_DECL for __FUNCTION__ etc. ID is the name to give the
2775 decl, NAME is the initialization string and TYPE_DEP indicates whether
2776 NAME depended on the type of the function. As we don't yet implement
2777 delayed emission of static data, we mark the decl as emitted
2778 so it is not placed in the output. Anything using it must therefore pull
2779 out the STRING_CST initializer directly. FIXME. */
2781 static tree
2782 c_make_fname_decl (tree id, int type_dep)
2784 const char *name = fname_as_string (type_dep);
2785 tree decl, type, init;
2786 size_t length = strlen (name);
2788 type = build_array_type (char_type_node,
2789 build_index_type (size_int (length)));
2790 type = c_build_qualified_type (type, TYPE_QUAL_CONST);
2792 decl = build_decl (VAR_DECL, id, type);
2794 TREE_STATIC (decl) = 1;
2795 TREE_READONLY (decl) = 1;
2796 DECL_ARTIFICIAL (decl) = 1;
2798 init = build_string (length + 1, name);
2799 free (CONST_CAST (char *, name));
2800 TREE_TYPE (init) = type;
2801 DECL_INITIAL (decl) = init;
2803 TREE_USED (decl) = 1;
2805 if (current_function_decl
2806 /* For invalid programs like this:
2808 void foo()
2809 const char* p = __FUNCTION__;
2811 the __FUNCTION__ is believed to appear in K&R style function
2812 parameter declarator. In that case we still don't have
2813 function_scope. */
2814 && (!errorcount || current_function_scope))
2816 DECL_CONTEXT (decl) = current_function_decl;
2817 bind (id, decl, current_function_scope,
2818 /*invisible=*/false, /*nested=*/false);
2821 finish_decl (decl, init, NULL_TREE);
2823 return decl;
2826 tree
2827 c_builtin_function (tree decl)
2829 tree type = TREE_TYPE (decl);
2830 tree id = DECL_NAME (decl);
2832 const char *name = IDENTIFIER_POINTER (id);
2833 C_DECL_BUILTIN_PROTOTYPE (decl) = (TYPE_ARG_TYPES (type) != 0);
2835 /* Should never be called on a symbol with a preexisting meaning. */
2836 gcc_assert (!I_SYMBOL_BINDING (id));
2838 bind (id, decl, external_scope, /*invisible=*/true, /*nested=*/false);
2840 /* Builtins in the implementation namespace are made visible without
2841 needing to be explicitly declared. See push_file_scope. */
2842 if (name[0] == '_' && (name[1] == '_' || ISUPPER (name[1])))
2844 TREE_CHAIN (decl) = visible_builtins;
2845 visible_builtins = decl;
2848 return decl;
2851 tree
2852 c_builtin_function_ext_scope (tree decl)
2854 tree type = TREE_TYPE (decl);
2855 tree id = DECL_NAME (decl);
2857 const char *name = IDENTIFIER_POINTER (id);
2858 C_DECL_BUILTIN_PROTOTYPE (decl) = (TYPE_ARG_TYPES (type) != 0);
2860 /* Should never be called on a symbol with a preexisting meaning. */
2861 gcc_assert (!I_SYMBOL_BINDING (id));
2863 bind (id, decl, external_scope, /*invisible=*/false, /*nested=*/false);
2865 /* Builtins in the implementation namespace are made visible without
2866 needing to be explicitly declared. See push_file_scope. */
2867 if (name[0] == '_' && (name[1] == '_' || ISUPPER (name[1])))
2869 TREE_CHAIN (decl) = visible_builtins;
2870 visible_builtins = decl;
2873 return decl;
2876 /* Called when a declaration is seen that contains no names to declare.
2877 If its type is a reference to a structure, union or enum inherited
2878 from a containing scope, shadow that tag name for the current scope
2879 with a forward reference.
2880 If its type defines a new named structure or union
2881 or defines an enum, it is valid but we need not do anything here.
2882 Otherwise, it is an error. */
2884 void
2885 shadow_tag (const struct c_declspecs *declspecs)
2887 shadow_tag_warned (declspecs, 0);
2890 /* WARNED is 1 if we have done a pedwarn, 2 if we have done a warning,
2891 but no pedwarn. */
2892 void
2893 shadow_tag_warned (const struct c_declspecs *declspecs, int warned)
2895 bool found_tag = false;
2897 if (declspecs->type && !declspecs->default_int_p && !declspecs->typedef_p)
2899 tree value = declspecs->type;
2900 enum tree_code code = TREE_CODE (value);
2902 if (code == RECORD_TYPE || code == UNION_TYPE || code == ENUMERAL_TYPE)
2903 /* Used to test also that TYPE_SIZE (value) != 0.
2904 That caused warning for `struct foo;' at top level in the file. */
2906 tree name = TYPE_NAME (value);
2907 tree t;
2909 found_tag = true;
2911 if (name == 0)
2913 if (warned != 1 && code != ENUMERAL_TYPE)
2914 /* Empty unnamed enum OK */
2916 pedwarn (input_location, 0,
2917 "unnamed struct/union that defines no instances");
2918 warned = 1;
2921 else if (!declspecs->tag_defined_p
2922 && declspecs->storage_class != csc_none)
2924 if (warned != 1)
2925 pedwarn (input_location, 0,
2926 "empty declaration with storage class specifier "
2927 "does not redeclare tag");
2928 warned = 1;
2929 pending_xref_error ();
2931 else if (!declspecs->tag_defined_p
2932 && (declspecs->const_p
2933 || declspecs->volatile_p
2934 || declspecs->restrict_p))
2936 if (warned != 1)
2937 pedwarn (input_location, 0,
2938 "empty declaration with type qualifier "
2939 "does not redeclare tag");
2940 warned = 1;
2941 pending_xref_error ();
2943 else
2945 pending_invalid_xref = 0;
2946 t = lookup_tag (code, name, 1);
2948 if (t == 0)
2950 t = make_node (code);
2951 pushtag (name, t);
2955 else
2957 if (warned != 1 && !in_system_header)
2959 pedwarn (input_location, 0,
2960 "useless type name in empty declaration");
2961 warned = 1;
2965 else if (warned != 1 && !in_system_header && declspecs->typedef_p)
2967 pedwarn (input_location, 0, "useless type name in empty declaration");
2968 warned = 1;
2971 pending_invalid_xref = 0;
2973 if (declspecs->inline_p)
2975 error ("%<inline%> in empty declaration");
2976 warned = 1;
2979 if (current_scope == file_scope && declspecs->storage_class == csc_auto)
2981 error ("%<auto%> in file-scope empty declaration");
2982 warned = 1;
2985 if (current_scope == file_scope && declspecs->storage_class == csc_register)
2987 error ("%<register%> in file-scope empty declaration");
2988 warned = 1;
2991 if (!warned && !in_system_header && declspecs->storage_class != csc_none)
2993 warning (0, "useless storage class specifier in empty declaration");
2994 warned = 2;
2997 if (!warned && !in_system_header && declspecs->thread_p)
2999 warning (0, "useless %<__thread%> in empty declaration");
3000 warned = 2;
3003 if (!warned && !in_system_header && (declspecs->const_p
3004 || declspecs->volatile_p
3005 || declspecs->restrict_p))
3007 warning (0, "useless type qualifier in empty declaration");
3008 warned = 2;
3011 if (warned != 1)
3013 if (!found_tag)
3014 pedwarn (input_location, 0, "empty declaration");
3019 /* Return the qualifiers from SPECS as a bitwise OR of TYPE_QUAL_*
3020 bits. SPECS represents declaration specifiers that the grammar
3021 only permits to contain type qualifiers and attributes. */
3024 quals_from_declspecs (const struct c_declspecs *specs)
3026 int quals = ((specs->const_p ? TYPE_QUAL_CONST : 0)
3027 | (specs->volatile_p ? TYPE_QUAL_VOLATILE : 0)
3028 | (specs->restrict_p ? TYPE_QUAL_RESTRICT : 0));
3029 gcc_assert (!specs->type
3030 && !specs->decl_attr
3031 && specs->typespec_word == cts_none
3032 && specs->storage_class == csc_none
3033 && !specs->typedef_p
3034 && !specs->explicit_signed_p
3035 && !specs->deprecated_p
3036 && !specs->long_p
3037 && !specs->long_long_p
3038 && !specs->short_p
3039 && !specs->signed_p
3040 && !specs->unsigned_p
3041 && !specs->complex_p
3042 && !specs->inline_p
3043 && !specs->thread_p);
3044 return quals;
3047 /* Construct an array declarator. EXPR is the expression inside [],
3048 or NULL_TREE. QUALS are the type qualifiers inside the [] (to be
3049 applied to the pointer to which a parameter array is converted).
3050 STATIC_P is true if "static" is inside the [], false otherwise.
3051 VLA_UNSPEC_P is true if the array is [*], a VLA of unspecified
3052 length which is nevertheless a complete type, false otherwise. The
3053 field for the contained declarator is left to be filled in by
3054 set_array_declarator_inner. */
3056 struct c_declarator *
3057 build_array_declarator (tree expr, struct c_declspecs *quals, bool static_p,
3058 bool vla_unspec_p)
3060 struct c_declarator *declarator = XOBNEW (&parser_obstack,
3061 struct c_declarator);
3062 declarator->kind = cdk_array;
3063 declarator->declarator = 0;
3064 declarator->u.array.dimen = expr;
3065 if (quals)
3067 declarator->u.array.attrs = quals->attrs;
3068 declarator->u.array.quals = quals_from_declspecs (quals);
3070 else
3072 declarator->u.array.attrs = NULL_TREE;
3073 declarator->u.array.quals = 0;
3075 declarator->u.array.static_p = static_p;
3076 declarator->u.array.vla_unspec_p = vla_unspec_p;
3077 if (!flag_isoc99)
3079 if (static_p || quals != NULL)
3080 pedwarn (input_location, OPT_pedantic,
3081 "ISO C90 does not support %<static%> or type "
3082 "qualifiers in parameter array declarators");
3083 if (vla_unspec_p)
3084 pedwarn (input_location, OPT_pedantic,
3085 "ISO C90 does not support %<[*]%> array declarators");
3087 if (vla_unspec_p)
3089 if (!current_scope->parm_flag)
3091 /* C99 6.7.5.2p4 */
3092 error ("%<[*]%> not allowed in other than function prototype scope");
3093 declarator->u.array.vla_unspec_p = false;
3094 return NULL;
3096 current_scope->had_vla_unspec = true;
3098 return declarator;
3101 /* Set the contained declarator of an array declarator. DECL is the
3102 declarator, as constructed by build_array_declarator; INNER is what
3103 appears on the left of the []. */
3105 struct c_declarator *
3106 set_array_declarator_inner (struct c_declarator *decl,
3107 struct c_declarator *inner)
3109 decl->declarator = inner;
3110 return decl;
3113 /* INIT is a constructor that forms DECL's initializer. If the final
3114 element initializes a flexible array field, add the size of that
3115 initializer to DECL's size. */
3117 static void
3118 add_flexible_array_elts_to_size (tree decl, tree init)
3120 tree elt, type;
3122 if (VEC_empty (constructor_elt, CONSTRUCTOR_ELTS (init)))
3123 return;
3125 elt = VEC_last (constructor_elt, CONSTRUCTOR_ELTS (init))->value;
3126 type = TREE_TYPE (elt);
3127 if (TREE_CODE (type) == ARRAY_TYPE
3128 && TYPE_SIZE (type) == NULL_TREE
3129 && TYPE_DOMAIN (type) != NULL_TREE
3130 && TYPE_MAX_VALUE (TYPE_DOMAIN (type)) == NULL_TREE)
3132 complete_array_type (&type, elt, false);
3133 DECL_SIZE (decl)
3134 = size_binop (PLUS_EXPR, DECL_SIZE (decl), TYPE_SIZE (type));
3135 DECL_SIZE_UNIT (decl)
3136 = size_binop (PLUS_EXPR, DECL_SIZE_UNIT (decl), TYPE_SIZE_UNIT (type));
3140 /* Decode a "typename", such as "int **", returning a ..._TYPE node. */
3142 tree
3143 groktypename (struct c_type_name *type_name)
3145 tree type;
3146 tree attrs = type_name->specs->attrs;
3148 type_name->specs->attrs = NULL_TREE;
3150 type = grokdeclarator (type_name->declarator, type_name->specs, TYPENAME,
3151 false, NULL, &attrs, DEPRECATED_NORMAL);
3153 /* Apply attributes. */
3154 decl_attributes (&type, attrs, 0);
3156 return type;
3159 /* Decode a declarator in an ordinary declaration or data definition.
3160 This is called as soon as the type information and variable name
3161 have been parsed, before parsing the initializer if any.
3162 Here we create the ..._DECL node, fill in its type,
3163 and put it on the list of decls for the current context.
3164 The ..._DECL node is returned as the value.
3166 Exception: for arrays where the length is not specified,
3167 the type is left null, to be filled in by `finish_decl'.
3169 Function definitions do not come here; they go to start_function
3170 instead. However, external and forward declarations of functions
3171 do go through here. Structure field declarations are done by
3172 grokfield and not through here. */
3174 tree
3175 start_decl (struct c_declarator *declarator, struct c_declspecs *declspecs,
3176 bool initialized, tree attributes)
3178 tree decl;
3179 tree tem;
3180 enum deprecated_states deprecated_state = DEPRECATED_NORMAL;
3182 /* An object declared as __attribute__((deprecated)) suppresses
3183 warnings of uses of other deprecated items. */
3184 if (lookup_attribute ("deprecated", attributes))
3185 deprecated_state = DEPRECATED_SUPPRESS;
3187 decl = grokdeclarator (declarator, declspecs,
3188 NORMAL, initialized, NULL, &attributes,
3189 deprecated_state);
3190 if (!decl)
3191 return 0;
3193 if (TREE_CODE (decl) != FUNCTION_DECL && MAIN_NAME_P (DECL_NAME (decl)))
3194 warning (OPT_Wmain, "%q+D is usually a function", decl);
3196 if (initialized)
3197 /* Is it valid for this decl to have an initializer at all?
3198 If not, set INITIALIZED to zero, which will indirectly
3199 tell 'finish_decl' to ignore the initializer once it is parsed. */
3200 switch (TREE_CODE (decl))
3202 case TYPE_DECL:
3203 error ("typedef %qD is initialized (use __typeof__ instead)", decl);
3204 initialized = 0;
3205 break;
3207 case FUNCTION_DECL:
3208 error ("function %qD is initialized like a variable", decl);
3209 initialized = 0;
3210 break;
3212 case PARM_DECL:
3213 /* DECL_INITIAL in a PARM_DECL is really DECL_ARG_TYPE. */
3214 error ("parameter %qD is initialized", decl);
3215 initialized = 0;
3216 break;
3218 default:
3219 /* Don't allow initializations for incomplete types except for
3220 arrays which might be completed by the initialization. */
3222 /* This can happen if the array size is an undefined macro.
3223 We already gave a warning, so we don't need another one. */
3224 if (TREE_TYPE (decl) == error_mark_node)
3225 initialized = 0;
3226 else if (COMPLETE_TYPE_P (TREE_TYPE (decl)))
3228 /* A complete type is ok if size is fixed. */
3230 if (TREE_CODE (TYPE_SIZE (TREE_TYPE (decl))) != INTEGER_CST
3231 || C_DECL_VARIABLE_SIZE (decl))
3233 error ("variable-sized object may not be initialized");
3234 initialized = 0;
3237 else if (TREE_CODE (TREE_TYPE (decl)) != ARRAY_TYPE)
3239 error ("variable %qD has initializer but incomplete type", decl);
3240 initialized = 0;
3242 else if (C_DECL_VARIABLE_SIZE (decl))
3244 /* Although C99 is unclear about whether incomplete arrays
3245 of VLAs themselves count as VLAs, it does not make
3246 sense to permit them to be initialized given that
3247 ordinary VLAs may not be initialized. */
3248 error ("variable-sized object may not be initialized");
3249 initialized = 0;
3253 if (initialized)
3255 if (current_scope == file_scope)
3256 TREE_STATIC (decl) = 1;
3258 /* Tell 'pushdecl' this is an initialized decl
3259 even though we don't yet have the initializer expression.
3260 Also tell 'finish_decl' it may store the real initializer. */
3261 DECL_INITIAL (decl) = error_mark_node;
3264 /* If this is a function declaration, write a record describing it to the
3265 prototypes file (if requested). */
3267 if (TREE_CODE (decl) == FUNCTION_DECL)
3268 gen_aux_info_record (decl, 0, 0, TYPE_ARG_TYPES (TREE_TYPE (decl)) != 0);
3270 /* ANSI specifies that a tentative definition which is not merged with
3271 a non-tentative definition behaves exactly like a definition with an
3272 initializer equal to zero. (Section 3.7.2)
3274 -fno-common gives strict ANSI behavior, though this tends to break
3275 a large body of code that grew up without this rule.
3277 Thread-local variables are never common, since there's no entrenched
3278 body of code to break, and it allows more efficient variable references
3279 in the presence of dynamic linking. */
3281 if (TREE_CODE (decl) == VAR_DECL
3282 && !initialized
3283 && TREE_PUBLIC (decl)
3284 && !DECL_THREAD_LOCAL_P (decl)
3285 && !flag_no_common)
3286 DECL_COMMON (decl) = 1;
3288 /* Set attributes here so if duplicate decl, will have proper attributes. */
3289 decl_attributes (&decl, attributes, 0);
3291 /* Handle gnu_inline attribute. */
3292 if (declspecs->inline_p
3293 && !flag_gnu89_inline
3294 && TREE_CODE (decl) == FUNCTION_DECL
3295 && (lookup_attribute ("gnu_inline", DECL_ATTRIBUTES (decl))
3296 || current_function_decl))
3298 if (declspecs->storage_class == csc_auto && current_scope != file_scope)
3300 else if (declspecs->storage_class != csc_static)
3301 DECL_EXTERNAL (decl) = !DECL_EXTERNAL (decl);
3304 if (TREE_CODE (decl) == FUNCTION_DECL
3305 && targetm.calls.promote_prototypes (TREE_TYPE (decl)))
3307 struct c_declarator *ce = declarator;
3309 if (ce->kind == cdk_pointer)
3310 ce = declarator->declarator;
3311 if (ce->kind == cdk_function)
3313 tree args = ce->u.arg_info->parms;
3314 for (; args; args = TREE_CHAIN (args))
3316 tree type = TREE_TYPE (args);
3317 if (type && INTEGRAL_TYPE_P (type)
3318 && TYPE_PRECISION (type) < TYPE_PRECISION (integer_type_node))
3319 DECL_ARG_TYPE (args) = integer_type_node;
3324 if (TREE_CODE (decl) == FUNCTION_DECL
3325 && DECL_DECLARED_INLINE_P (decl)
3326 && DECL_UNINLINABLE (decl)
3327 && lookup_attribute ("noinline", DECL_ATTRIBUTES (decl)))
3328 warning (OPT_Wattributes, "inline function %q+D given attribute noinline",
3329 decl);
3331 /* C99 6.7.4p3: An inline definition of a function with external
3332 linkage shall not contain a definition of a modifiable object
3333 with static storage duration... */
3334 if (TREE_CODE (decl) == VAR_DECL
3335 && current_scope != file_scope
3336 && TREE_STATIC (decl)
3337 && !TREE_READONLY (decl)
3338 && DECL_DECLARED_INLINE_P (current_function_decl)
3339 && DECL_EXTERNAL (current_function_decl))
3340 pedwarn (input_location, 0,
3341 "%q+D is static but declared in inline function %qD "
3342 "which is not static", decl, current_function_decl);
3344 /* Add this decl to the current scope.
3345 TEM may equal DECL or it may be a previous decl of the same name. */
3346 tem = pushdecl (decl);
3348 if (initialized && DECL_EXTERNAL (tem))
3350 DECL_EXTERNAL (tem) = 0;
3351 TREE_STATIC (tem) = 1;
3354 return tem;
3357 /* Initialize EH if not initialized yet and exceptions are enabled. */
3359 void
3360 c_maybe_initialize_eh (void)
3362 if (!flag_exceptions || c_eh_initialized_p)
3363 return;
3365 c_eh_initialized_p = true;
3366 eh_personality_libfunc
3367 = init_one_libfunc (USING_SJLJ_EXCEPTIONS
3368 ? "__gcc_personality_sj0"
3369 : "__gcc_personality_v0");
3370 default_init_unwind_resume_libfunc ();
3371 using_eh_for_cleanups ();
3374 /* Finish processing of a declaration;
3375 install its initial value.
3376 If the length of an array type is not known before,
3377 it must be determined now, from the initial value, or it is an error. */
3379 void
3380 finish_decl (tree decl, tree init, tree asmspec_tree)
3382 tree type;
3383 int was_incomplete = (DECL_SIZE (decl) == 0);
3384 const char *asmspec = 0;
3386 /* If a name was specified, get the string. */
3387 if ((TREE_CODE (decl) == FUNCTION_DECL || TREE_CODE (decl) == VAR_DECL)
3388 && DECL_FILE_SCOPE_P (decl))
3389 asmspec_tree = maybe_apply_renaming_pragma (decl, asmspec_tree);
3390 if (asmspec_tree)
3391 asmspec = TREE_STRING_POINTER (asmspec_tree);
3393 /* If `start_decl' didn't like having an initialization, ignore it now. */
3394 if (init != 0 && DECL_INITIAL (decl) == 0)
3395 init = 0;
3397 /* Don't crash if parm is initialized. */
3398 if (TREE_CODE (decl) == PARM_DECL)
3399 init = 0;
3401 if (init)
3402 store_init_value (decl, init);
3404 if (c_dialect_objc () && (TREE_CODE (decl) == VAR_DECL
3405 || TREE_CODE (decl) == FUNCTION_DECL
3406 || TREE_CODE (decl) == FIELD_DECL))
3407 objc_check_decl (decl);
3409 type = TREE_TYPE (decl);
3411 /* Deduce size of array from initialization, if not already known. */
3412 if (TREE_CODE (type) == ARRAY_TYPE
3413 && TYPE_DOMAIN (type) == 0
3414 && TREE_CODE (decl) != TYPE_DECL)
3416 bool do_default
3417 = (TREE_STATIC (decl)
3418 /* Even if pedantic, an external linkage array
3419 may have incomplete type at first. */
3420 ? pedantic && !TREE_PUBLIC (decl)
3421 : !DECL_EXTERNAL (decl));
3422 int failure
3423 = complete_array_type (&TREE_TYPE (decl), DECL_INITIAL (decl),
3424 do_default);
3426 /* Get the completed type made by complete_array_type. */
3427 type = TREE_TYPE (decl);
3429 switch (failure)
3431 case 1:
3432 error ("initializer fails to determine size of %q+D", decl);
3433 break;
3435 case 2:
3436 if (do_default)
3437 error ("array size missing in %q+D", decl);
3438 /* If a `static' var's size isn't known,
3439 make it extern as well as static, so it does not get
3440 allocated.
3441 If it is not `static', then do not mark extern;
3442 finish_incomplete_decl will give it a default size
3443 and it will get allocated. */
3444 else if (!pedantic && TREE_STATIC (decl) && !TREE_PUBLIC (decl))
3445 DECL_EXTERNAL (decl) = 1;
3446 break;
3448 case 3:
3449 error ("zero or negative size array %q+D", decl);
3450 break;
3452 case 0:
3453 /* For global variables, update the copy of the type that
3454 exists in the binding. */
3455 if (TREE_PUBLIC (decl))
3457 struct c_binding *b_ext = I_SYMBOL_BINDING (DECL_NAME (decl));
3458 while (b_ext && !B_IN_EXTERNAL_SCOPE (b_ext))
3459 b_ext = b_ext->shadowed;
3460 if (b_ext)
3462 if (b_ext->type)
3463 b_ext->type = composite_type (b_ext->type, type);
3464 else
3465 b_ext->type = type;
3468 break;
3470 default:
3471 gcc_unreachable ();
3474 if (DECL_INITIAL (decl))
3475 TREE_TYPE (DECL_INITIAL (decl)) = type;
3477 layout_decl (decl, 0);
3480 if (TREE_CODE (decl) == VAR_DECL)
3482 if (init && TREE_CODE (init) == CONSTRUCTOR)
3483 add_flexible_array_elts_to_size (decl, init);
3485 if (DECL_SIZE (decl) == 0 && TREE_TYPE (decl) != error_mark_node
3486 && COMPLETE_TYPE_P (TREE_TYPE (decl)))
3487 layout_decl (decl, 0);
3489 if (DECL_SIZE (decl) == 0
3490 /* Don't give an error if we already gave one earlier. */
3491 && TREE_TYPE (decl) != error_mark_node
3492 && (TREE_STATIC (decl)
3493 /* A static variable with an incomplete type
3494 is an error if it is initialized.
3495 Also if it is not file scope.
3496 Otherwise, let it through, but if it is not `extern'
3497 then it may cause an error message later. */
3498 ? (DECL_INITIAL (decl) != 0
3499 || !DECL_FILE_SCOPE_P (decl))
3500 /* An automatic variable with an incomplete type
3501 is an error. */
3502 : !DECL_EXTERNAL (decl)))
3504 error ("storage size of %q+D isn%'t known", decl);
3505 TREE_TYPE (decl) = error_mark_node;
3508 if ((DECL_EXTERNAL (decl) || TREE_STATIC (decl))
3509 && DECL_SIZE (decl) != 0)
3511 if (TREE_CODE (DECL_SIZE (decl)) == INTEGER_CST)
3512 constant_expression_warning (DECL_SIZE (decl));
3513 else
3515 error ("storage size of %q+D isn%'t constant", decl);
3516 TREE_TYPE (decl) = error_mark_node;
3520 if (TREE_USED (type))
3521 TREE_USED (decl) = 1;
3524 /* If this is a function and an assembler name is specified, reset DECL_RTL
3525 so we can give it its new name. Also, update built_in_decls if it
3526 was a normal built-in. */
3527 if (TREE_CODE (decl) == FUNCTION_DECL && asmspec)
3529 if (DECL_BUILT_IN_CLASS (decl) == BUILT_IN_NORMAL)
3530 set_builtin_user_assembler_name (decl, asmspec);
3531 set_user_assembler_name (decl, asmspec);
3534 /* If #pragma weak was used, mark the decl weak now. */
3535 maybe_apply_pragma_weak (decl);
3537 /* Output the assembler code and/or RTL code for variables and functions,
3538 unless the type is an undefined structure or union.
3539 If not, it will get done when the type is completed. */
3541 if (TREE_CODE (decl) == VAR_DECL || TREE_CODE (decl) == FUNCTION_DECL)
3543 /* Determine the ELF visibility. */
3544 if (TREE_PUBLIC (decl))
3545 c_determine_visibility (decl);
3547 /* This is a no-op in c-lang.c or something real in objc-act.c. */
3548 if (c_dialect_objc ())
3549 objc_check_decl (decl);
3551 if (asmspec)
3553 /* If this is not a static variable, issue a warning.
3554 It doesn't make any sense to give an ASMSPEC for an
3555 ordinary, non-register local variable. Historically,
3556 GCC has accepted -- but ignored -- the ASMSPEC in
3557 this case. */
3558 if (!DECL_FILE_SCOPE_P (decl)
3559 && TREE_CODE (decl) == VAR_DECL
3560 && !C_DECL_REGISTER (decl)
3561 && !TREE_STATIC (decl))
3562 warning (0, "ignoring asm-specifier for non-static local "
3563 "variable %q+D", decl);
3564 else
3565 set_user_assembler_name (decl, asmspec);
3568 if (DECL_FILE_SCOPE_P (decl))
3570 if (DECL_INITIAL (decl) == NULL_TREE
3571 || DECL_INITIAL (decl) == error_mark_node)
3572 /* Don't output anything
3573 when a tentative file-scope definition is seen.
3574 But at end of compilation, do output code for them. */
3575 DECL_DEFER_OUTPUT (decl) = 1;
3576 rest_of_decl_compilation (decl, true, 0);
3578 else
3580 /* In conjunction with an ASMSPEC, the `register'
3581 keyword indicates that we should place the variable
3582 in a particular register. */
3583 if (asmspec && C_DECL_REGISTER (decl))
3585 DECL_HARD_REGISTER (decl) = 1;
3586 /* This cannot be done for a structure with volatile
3587 fields, on which DECL_REGISTER will have been
3588 reset. */
3589 if (!DECL_REGISTER (decl))
3590 error ("cannot put object with volatile field into register");
3593 if (TREE_CODE (decl) != FUNCTION_DECL)
3595 /* If we're building a variable sized type, and we might be
3596 reachable other than via the top of the current binding
3597 level, then create a new BIND_EXPR so that we deallocate
3598 the object at the right time. */
3599 /* Note that DECL_SIZE can be null due to errors. */
3600 if (DECL_SIZE (decl)
3601 && !TREE_CONSTANT (DECL_SIZE (decl))
3602 && STATEMENT_LIST_HAS_LABEL (cur_stmt_list))
3604 tree bind;
3605 bind = build3 (BIND_EXPR, void_type_node, NULL, NULL, NULL);
3606 TREE_SIDE_EFFECTS (bind) = 1;
3607 add_stmt (bind);
3608 BIND_EXPR_BODY (bind) = push_stmt_list ();
3610 add_stmt (build_stmt (DECL_EXPR, decl));
3615 if (!DECL_FILE_SCOPE_P (decl))
3617 /* Recompute the RTL of a local array now
3618 if it used to be an incomplete type. */
3619 if (was_incomplete
3620 && !TREE_STATIC (decl) && !DECL_EXTERNAL (decl))
3622 /* If we used it already as memory, it must stay in memory. */
3623 TREE_ADDRESSABLE (decl) = TREE_USED (decl);
3624 /* If it's still incomplete now, no init will save it. */
3625 if (DECL_SIZE (decl) == 0)
3626 DECL_INITIAL (decl) = 0;
3631 if (TREE_CODE (decl) == TYPE_DECL)
3633 if (!DECL_FILE_SCOPE_P (decl)
3634 && variably_modified_type_p (TREE_TYPE (decl), NULL_TREE))
3635 add_stmt (build_stmt (DECL_EXPR, decl));
3637 rest_of_decl_compilation (decl, DECL_FILE_SCOPE_P (decl), 0);
3640 /* At the end of a declaration, throw away any variable type sizes
3641 of types defined inside that declaration. There is no use
3642 computing them in the following function definition. */
3643 if (current_scope == file_scope)
3644 get_pending_sizes ();
3646 /* Install a cleanup (aka destructor) if one was given. */
3647 if (TREE_CODE (decl) == VAR_DECL && !TREE_STATIC (decl))
3649 tree attr = lookup_attribute ("cleanup", DECL_ATTRIBUTES (decl));
3650 if (attr)
3652 tree cleanup_id = TREE_VALUE (TREE_VALUE (attr));
3653 tree cleanup_decl = lookup_name (cleanup_id);
3654 tree cleanup;
3656 /* Build "cleanup(&decl)" for the destructor. */
3657 cleanup = build_unary_op (input_location, ADDR_EXPR, decl, 0);
3658 cleanup = build_tree_list (NULL_TREE, cleanup);
3659 cleanup = build_function_call (cleanup_decl, cleanup);
3661 /* Don't warn about decl unused; the cleanup uses it. */
3662 TREE_USED (decl) = 1;
3663 TREE_USED (cleanup_decl) = 1;
3665 /* Initialize EH, if we've been told to do so. */
3666 c_maybe_initialize_eh ();
3668 push_cleanup (decl, cleanup, false);
3673 /* Given a parsed parameter declaration, decode it into a PARM_DECL. */
3675 tree
3676 grokparm (const struct c_parm *parm)
3678 tree attrs = parm->attrs;
3679 tree decl = grokdeclarator (parm->declarator, parm->specs, PARM, false,
3680 NULL, &attrs, DEPRECATED_NORMAL);
3682 decl_attributes (&decl, attrs, 0);
3684 return decl;
3687 /* Given a parsed parameter declaration, decode it into a PARM_DECL
3688 and push that on the current scope. */
3690 void
3691 push_parm_decl (const struct c_parm *parm)
3693 tree attrs = parm->attrs;
3694 tree decl;
3696 decl = grokdeclarator (parm->declarator, parm->specs, PARM, false, NULL,
3697 &attrs, DEPRECATED_NORMAL);
3698 decl_attributes (&decl, attrs, 0);
3700 decl = pushdecl (decl);
3702 finish_decl (decl, NULL_TREE, NULL_TREE);
3705 /* Mark all the parameter declarations to date as forward decls.
3706 Also diagnose use of this extension. */
3708 void
3709 mark_forward_parm_decls (void)
3711 struct c_binding *b;
3713 if (pedantic && !current_scope->warned_forward_parm_decls)
3715 pedwarn (input_location, OPT_pedantic,
3716 "ISO C forbids forward parameter declarations");
3717 current_scope->warned_forward_parm_decls = true;
3720 for (b = current_scope->bindings; b; b = b->prev)
3721 if (TREE_CODE (b->decl) == PARM_DECL)
3722 TREE_ASM_WRITTEN (b->decl) = 1;
3725 /* Build a COMPOUND_LITERAL_EXPR. TYPE is the type given in the compound
3726 literal, which may be an incomplete array type completed by the
3727 initializer; INIT is a CONSTRUCTOR that initializes the compound
3728 literal. */
3730 tree
3731 build_compound_literal (tree type, tree init)
3733 /* We do not use start_decl here because we have a type, not a declarator;
3734 and do not use finish_decl because the decl should be stored inside
3735 the COMPOUND_LITERAL_EXPR rather than added elsewhere as a DECL_EXPR. */
3736 tree decl;
3737 tree complit;
3738 tree stmt;
3740 if (type == error_mark_node)
3741 return error_mark_node;
3743 decl = build_decl (VAR_DECL, NULL_TREE, type);
3744 DECL_EXTERNAL (decl) = 0;
3745 TREE_PUBLIC (decl) = 0;
3746 TREE_STATIC (decl) = (current_scope == file_scope);
3747 DECL_CONTEXT (decl) = current_function_decl;
3748 TREE_USED (decl) = 1;
3749 TREE_TYPE (decl) = type;
3750 TREE_READONLY (decl) = TYPE_READONLY (type);
3751 store_init_value (decl, init);
3753 if (TREE_CODE (type) == ARRAY_TYPE && !COMPLETE_TYPE_P (type))
3755 int failure = complete_array_type (&TREE_TYPE (decl),
3756 DECL_INITIAL (decl), true);
3757 gcc_assert (!failure);
3759 type = TREE_TYPE (decl);
3760 TREE_TYPE (DECL_INITIAL (decl)) = type;
3763 if (type == error_mark_node || !COMPLETE_TYPE_P (type))
3764 return error_mark_node;
3766 stmt = build_stmt (DECL_EXPR, decl);
3767 complit = build1 (COMPOUND_LITERAL_EXPR, type, stmt);
3768 TREE_SIDE_EFFECTS (complit) = 1;
3770 layout_decl (decl, 0);
3772 if (TREE_STATIC (decl))
3774 /* This decl needs a name for the assembler output. */
3775 set_compound_literal_name (decl);
3776 DECL_DEFER_OUTPUT (decl) = 1;
3777 DECL_COMDAT (decl) = 1;
3778 DECL_ARTIFICIAL (decl) = 1;
3779 DECL_IGNORED_P (decl) = 1;
3780 pushdecl (decl);
3781 rest_of_decl_compilation (decl, 1, 0);
3784 return complit;
3787 /* Determine whether TYPE is a structure with a flexible array member,
3788 or a union containing such a structure (possibly recursively). */
3790 static bool
3791 flexible_array_type_p (tree type)
3793 tree x;
3794 switch (TREE_CODE (type))
3796 case RECORD_TYPE:
3797 x = TYPE_FIELDS (type);
3798 if (x == NULL_TREE)
3799 return false;
3800 while (TREE_CHAIN (x) != NULL_TREE)
3801 x = TREE_CHAIN (x);
3802 if (TREE_CODE (TREE_TYPE (x)) == ARRAY_TYPE
3803 && TYPE_SIZE (TREE_TYPE (x)) == NULL_TREE
3804 && TYPE_DOMAIN (TREE_TYPE (x)) != NULL_TREE
3805 && TYPE_MAX_VALUE (TYPE_DOMAIN (TREE_TYPE (x))) == NULL_TREE)
3806 return true;
3807 return false;
3808 case UNION_TYPE:
3809 for (x = TYPE_FIELDS (type); x != NULL_TREE; x = TREE_CHAIN (x))
3811 if (flexible_array_type_p (TREE_TYPE (x)))
3812 return true;
3814 return false;
3815 default:
3816 return false;
3820 /* Performs sanity checks on the TYPE and WIDTH of the bit-field NAME,
3821 replacing with appropriate values if they are invalid. */
3822 static void
3823 check_bitfield_type_and_width (tree *type, tree *width, const char *orig_name)
3825 tree type_mv;
3826 unsigned int max_width;
3827 unsigned HOST_WIDE_INT w;
3828 const char *name = orig_name ? orig_name: _("<anonymous>");
3830 /* Detect and ignore out of range field width and process valid
3831 field widths. */
3832 if (!INTEGRAL_TYPE_P (TREE_TYPE (*width))
3833 || TREE_CODE (*width) != INTEGER_CST)
3835 error ("bit-field %qs width not an integer constant", name);
3836 *width = integer_one_node;
3838 else
3840 constant_expression_warning (*width);
3841 if (tree_int_cst_sgn (*width) < 0)
3843 error ("negative width in bit-field %qs", name);
3844 *width = integer_one_node;
3846 else if (integer_zerop (*width) && orig_name)
3848 error ("zero width for bit-field %qs", name);
3849 *width = integer_one_node;
3853 /* Detect invalid bit-field type. */
3854 if (TREE_CODE (*type) != INTEGER_TYPE
3855 && TREE_CODE (*type) != BOOLEAN_TYPE
3856 && TREE_CODE (*type) != ENUMERAL_TYPE)
3858 error ("bit-field %qs has invalid type", name);
3859 *type = unsigned_type_node;
3862 type_mv = TYPE_MAIN_VARIANT (*type);
3863 if (!in_system_header
3864 && type_mv != integer_type_node
3865 && type_mv != unsigned_type_node
3866 && type_mv != boolean_type_node)
3867 pedwarn (input_location, OPT_pedantic,
3868 "type of bit-field %qs is a GCC extension", name);
3870 max_width = TYPE_PRECISION (*type);
3872 if (0 < compare_tree_int (*width, max_width))
3874 error ("width of %qs exceeds its type", name);
3875 w = max_width;
3876 *width = build_int_cst (NULL_TREE, w);
3878 else
3879 w = tree_low_cst (*width, 1);
3881 if (TREE_CODE (*type) == ENUMERAL_TYPE)
3883 struct lang_type *lt = TYPE_LANG_SPECIFIC (*type);
3884 if (!lt
3885 || w < tree_int_cst_min_precision (lt->enum_min, TYPE_UNSIGNED (*type))
3886 || w < tree_int_cst_min_precision (lt->enum_max, TYPE_UNSIGNED (*type)))
3887 warning (0, "%qs is narrower than values of its type", name);
3893 /* Print warning about variable length array if necessary. */
3895 static void
3896 warn_variable_length_array (const char *name, tree size)
3898 int const_size = TREE_CONSTANT (size);
3900 if (!flag_isoc99 && pedantic && warn_vla != 0)
3902 if (const_size)
3904 if (name)
3905 pedwarn (input_location, OPT_Wvla, "ISO C90 forbids array %qs whose size "
3906 "can%'t be evaluated",
3907 name);
3908 else
3909 pedwarn (input_location, OPT_Wvla, "ISO C90 forbids array whose size "
3910 "can%'t be evaluated");
3912 else
3914 if (name)
3915 pedwarn (input_location, OPT_Wvla, "ISO C90 forbids variable length array %qs",
3916 name);
3917 else
3918 pedwarn (input_location, OPT_Wvla, "ISO C90 forbids variable length array");
3921 else if (warn_vla > 0)
3923 if (const_size)
3925 if (name)
3926 warning (OPT_Wvla,
3927 "the size of array %qs can"
3928 "%'t be evaluated", name);
3929 else
3930 warning (OPT_Wvla,
3931 "the size of array can %'t be evaluated");
3933 else
3935 if (name)
3936 warning (OPT_Wvla,
3937 "variable length array %qs is used",
3938 name);
3939 else
3940 warning (OPT_Wvla,
3941 "variable length array is used");
3946 /* Given declspecs and a declarator,
3947 determine the name and type of the object declared
3948 and construct a ..._DECL node for it.
3949 (In one case we can return a ..._TYPE node instead.
3950 For invalid input we sometimes return 0.)
3952 DECLSPECS is a c_declspecs structure for the declaration specifiers.
3954 DECL_CONTEXT says which syntactic context this declaration is in:
3955 NORMAL for most contexts. Make a VAR_DECL or FUNCTION_DECL or TYPE_DECL.
3956 FUNCDEF for a function definition. Like NORMAL but a few different
3957 error messages in each case. Return value may be zero meaning
3958 this definition is too screwy to try to parse.
3959 PARM for a parameter declaration (either within a function prototype
3960 or before a function body). Make a PARM_DECL, or return void_type_node.
3961 TYPENAME if for a typename (in a cast or sizeof).
3962 Don't make a DECL node; just return the ..._TYPE node.
3963 FIELD for a struct or union field; make a FIELD_DECL.
3964 INITIALIZED is true if the decl has an initializer.
3965 WIDTH is non-NULL for bit-fields, and is a pointer to an INTEGER_CST node
3966 representing the width of the bit-field.
3967 DECL_ATTRS points to the list of attributes that should be added to this
3968 decl. Any nested attributes that belong on the decl itself will be
3969 added to this list.
3970 DEPRECATED_STATE is a deprecated_states value indicating whether
3971 deprecation warnings should be suppressed.
3973 In the TYPENAME case, DECLARATOR is really an absolute declarator.
3974 It may also be so in the PARM case, for a prototype where the
3975 argument type is specified but not the name.
3977 This function is where the complicated C meanings of `static'
3978 and `extern' are interpreted. */
3980 static tree
3981 grokdeclarator (const struct c_declarator *declarator,
3982 struct c_declspecs *declspecs,
3983 enum decl_context decl_context, bool initialized, tree *width,
3984 tree *decl_attrs, enum deprecated_states deprecated_state)
3986 tree type = declspecs->type;
3987 bool threadp = declspecs->thread_p;
3988 enum c_storage_class storage_class = declspecs->storage_class;
3989 int constp;
3990 int restrictp;
3991 int volatilep;
3992 int type_quals = TYPE_UNQUALIFIED;
3993 const char *name, *orig_name;
3994 bool funcdef_flag = false;
3995 bool funcdef_syntax = false;
3996 int size_varies = 0;
3997 tree decl_attr = declspecs->decl_attr;
3998 int array_ptr_quals = TYPE_UNQUALIFIED;
3999 tree array_ptr_attrs = NULL_TREE;
4000 int array_parm_static = 0;
4001 bool array_parm_vla_unspec_p = false;
4002 tree returned_attrs = NULL_TREE;
4003 bool bitfield = width != NULL;
4004 tree element_type;
4005 struct c_arg_info *arg_info = 0;
4007 if (decl_context == FUNCDEF)
4008 funcdef_flag = true, decl_context = NORMAL;
4010 /* Look inside a declarator for the name being declared
4011 and get it as a string, for an error message. */
4013 const struct c_declarator *decl = declarator;
4014 name = 0;
4016 while (decl)
4017 switch (decl->kind)
4019 case cdk_function:
4020 case cdk_array:
4021 case cdk_pointer:
4022 funcdef_syntax = (decl->kind == cdk_function);
4023 decl = decl->declarator;
4024 break;
4026 case cdk_attrs:
4027 decl = decl->declarator;
4028 break;
4030 case cdk_id:
4031 if (decl->u.id)
4032 name = IDENTIFIER_POINTER (decl->u.id);
4033 decl = 0;
4034 break;
4036 default:
4037 gcc_unreachable ();
4039 orig_name = name;
4040 if (name == 0)
4041 name = "type name";
4044 /* A function definition's declarator must have the form of
4045 a function declarator. */
4047 if (funcdef_flag && !funcdef_syntax)
4048 return 0;
4050 /* If this looks like a function definition, make it one,
4051 even if it occurs where parms are expected.
4052 Then store_parm_decls will reject it and not use it as a parm. */
4053 if (decl_context == NORMAL && !funcdef_flag && current_scope->parm_flag)
4054 decl_context = PARM;
4056 if (declspecs->deprecated_p && deprecated_state != DEPRECATED_SUPPRESS)
4057 warn_deprecated_use (declspecs->type);
4059 if ((decl_context == NORMAL || decl_context == FIELD)
4060 && current_scope == file_scope
4061 && variably_modified_type_p (type, NULL_TREE))
4063 error ("variably modified %qs at file scope", name);
4064 type = integer_type_node;
4067 size_varies = C_TYPE_VARIABLE_SIZE (type);
4069 /* Diagnose defaulting to "int". */
4071 if (declspecs->default_int_p && !in_system_header)
4073 /* Issue a warning if this is an ISO C 99 program or if
4074 -Wreturn-type and this is a function, or if -Wimplicit;
4075 prefer the former warning since it is more explicit. */
4076 if ((warn_implicit_int || warn_return_type || flag_isoc99)
4077 && funcdef_flag)
4078 warn_about_return_type = 1;
4079 else
4080 pedwarn_c99 (input_location, flag_isoc99 ? 0 : OPT_Wimplicit_int,
4081 "type defaults to %<int%> in declaration of %qs", name);
4084 /* Adjust the type if a bit-field is being declared,
4085 -funsigned-bitfields applied and the type is not explicitly
4086 "signed". */
4087 if (bitfield && !flag_signed_bitfields && !declspecs->explicit_signed_p
4088 && TREE_CODE (type) == INTEGER_TYPE)
4089 type = unsigned_type_for (type);
4091 /* Figure out the type qualifiers for the declaration. There are
4092 two ways a declaration can become qualified. One is something
4093 like `const int i' where the `const' is explicit. Another is
4094 something like `typedef const int CI; CI i' where the type of the
4095 declaration contains the `const'. A third possibility is that
4096 there is a type qualifier on the element type of a typedefed
4097 array type, in which case we should extract that qualifier so
4098 that c_apply_type_quals_to_decl receives the full list of
4099 qualifiers to work with (C90 is not entirely clear about whether
4100 duplicate qualifiers should be diagnosed in this case, but it
4101 seems most appropriate to do so). */
4102 element_type = strip_array_types (type);
4103 constp = declspecs->const_p + TYPE_READONLY (element_type);
4104 restrictp = declspecs->restrict_p + TYPE_RESTRICT (element_type);
4105 volatilep = declspecs->volatile_p + TYPE_VOLATILE (element_type);
4106 if (pedantic && !flag_isoc99)
4108 if (constp > 1)
4109 pedwarn (input_location, OPT_pedantic, "duplicate %<const%>");
4110 if (restrictp > 1)
4111 pedwarn (input_location, OPT_pedantic, "duplicate %<restrict%>");
4112 if (volatilep > 1)
4113 pedwarn (input_location, OPT_pedantic, "duplicate %<volatile%>");
4115 if (!flag_gen_aux_info && (TYPE_QUALS (element_type)))
4116 type = TYPE_MAIN_VARIANT (type);
4117 type_quals = ((constp ? TYPE_QUAL_CONST : 0)
4118 | (restrictp ? TYPE_QUAL_RESTRICT : 0)
4119 | (volatilep ? TYPE_QUAL_VOLATILE : 0));
4121 /* Warn about storage classes that are invalid for certain
4122 kinds of declarations (parameters, typenames, etc.). */
4124 if (funcdef_flag
4125 && (threadp
4126 || storage_class == csc_auto
4127 || storage_class == csc_register
4128 || storage_class == csc_typedef))
4130 if (storage_class == csc_auto)
4131 pedwarn (input_location,
4132 (current_scope == file_scope) ? 0 : OPT_pedantic,
4133 "function definition declared %<auto%>");
4134 if (storage_class == csc_register)
4135 error ("function definition declared %<register%>");
4136 if (storage_class == csc_typedef)
4137 error ("function definition declared %<typedef%>");
4138 if (threadp)
4139 error ("function definition declared %<__thread%>");
4140 threadp = false;
4141 if (storage_class == csc_auto
4142 || storage_class == csc_register
4143 || storage_class == csc_typedef)
4144 storage_class = csc_none;
4146 else if (decl_context != NORMAL && (storage_class != csc_none || threadp))
4148 if (decl_context == PARM && storage_class == csc_register)
4150 else
4152 switch (decl_context)
4154 case FIELD:
4155 error ("storage class specified for structure field %qs",
4156 name);
4157 break;
4158 case PARM:
4159 error ("storage class specified for parameter %qs", name);
4160 break;
4161 default:
4162 error ("storage class specified for typename");
4163 break;
4165 storage_class = csc_none;
4166 threadp = false;
4169 else if (storage_class == csc_extern
4170 && initialized
4171 && !funcdef_flag)
4173 /* 'extern' with initialization is invalid if not at file scope. */
4174 if (current_scope == file_scope)
4176 /* It is fine to have 'extern const' when compiling at C
4177 and C++ intersection. */
4178 if (!(warn_cxx_compat && constp))
4179 warning (0, "%qs initialized and declared %<extern%>", name);
4181 else
4182 error ("%qs has both %<extern%> and initializer", name);
4184 else if (current_scope == file_scope)
4186 if (storage_class == csc_auto)
4187 error ("file-scope declaration of %qs specifies %<auto%>", name);
4188 if (pedantic && storage_class == csc_register)
4189 pedwarn (input_location, OPT_pedantic,
4190 "file-scope declaration of %qs specifies %<register%>", name);
4192 else
4194 if (storage_class == csc_extern && funcdef_flag)
4195 error ("nested function %qs declared %<extern%>", name);
4196 else if (threadp && storage_class == csc_none)
4198 error ("function-scope %qs implicitly auto and declared "
4199 "%<__thread%>",
4200 name);
4201 threadp = false;
4205 /* Now figure out the structure of the declarator proper.
4206 Descend through it, creating more complex types, until we reach
4207 the declared identifier (or NULL_TREE, in an absolute declarator).
4208 At each stage we maintain an unqualified version of the type
4209 together with any qualifiers that should be applied to it with
4210 c_build_qualified_type; this way, array types including
4211 multidimensional array types are first built up in unqualified
4212 form and then the qualified form is created with
4213 TYPE_MAIN_VARIANT pointing to the unqualified form. */
4215 while (declarator && declarator->kind != cdk_id)
4217 if (type == error_mark_node)
4219 declarator = declarator->declarator;
4220 continue;
4223 /* Each level of DECLARATOR is either a cdk_array (for ...[..]),
4224 a cdk_pointer (for *...),
4225 a cdk_function (for ...(...)),
4226 a cdk_attrs (for nested attributes),
4227 or a cdk_id (for the name being declared
4228 or the place in an absolute declarator
4229 where the name was omitted).
4230 For the last case, we have just exited the loop.
4232 At this point, TYPE is the type of elements of an array,
4233 or for a function to return, or for a pointer to point to.
4234 After this sequence of ifs, TYPE is the type of the
4235 array or function or pointer, and DECLARATOR has had its
4236 outermost layer removed. */
4238 if (array_ptr_quals != TYPE_UNQUALIFIED
4239 || array_ptr_attrs != NULL_TREE
4240 || array_parm_static)
4242 /* Only the innermost declarator (making a parameter be of
4243 array type which is converted to pointer type)
4244 may have static or type qualifiers. */
4245 error ("static or type qualifiers in non-parameter array declarator");
4246 array_ptr_quals = TYPE_UNQUALIFIED;
4247 array_ptr_attrs = NULL_TREE;
4248 array_parm_static = 0;
4251 switch (declarator->kind)
4253 case cdk_attrs:
4255 /* A declarator with embedded attributes. */
4256 tree attrs = declarator->u.attrs;
4257 const struct c_declarator *inner_decl;
4258 int attr_flags = 0;
4259 declarator = declarator->declarator;
4260 inner_decl = declarator;
4261 while (inner_decl->kind == cdk_attrs)
4262 inner_decl = inner_decl->declarator;
4263 if (inner_decl->kind == cdk_id)
4264 attr_flags |= (int) ATTR_FLAG_DECL_NEXT;
4265 else if (inner_decl->kind == cdk_function)
4266 attr_flags |= (int) ATTR_FLAG_FUNCTION_NEXT;
4267 else if (inner_decl->kind == cdk_array)
4268 attr_flags |= (int) ATTR_FLAG_ARRAY_NEXT;
4269 returned_attrs = decl_attributes (&type,
4270 chainon (returned_attrs, attrs),
4271 attr_flags);
4272 break;
4274 case cdk_array:
4276 tree itype = NULL_TREE;
4277 tree size = declarator->u.array.dimen;
4278 /* The index is a signed object `sizetype' bits wide. */
4279 tree index_type = c_common_signed_type (sizetype);
4281 array_ptr_quals = declarator->u.array.quals;
4282 array_ptr_attrs = declarator->u.array.attrs;
4283 array_parm_static = declarator->u.array.static_p;
4284 array_parm_vla_unspec_p = declarator->u.array.vla_unspec_p;
4286 declarator = declarator->declarator;
4288 /* Check for some types that there cannot be arrays of. */
4290 if (VOID_TYPE_P (type))
4292 error ("declaration of %qs as array of voids", name);
4293 type = error_mark_node;
4296 if (TREE_CODE (type) == FUNCTION_TYPE)
4298 error ("declaration of %qs as array of functions", name);
4299 type = error_mark_node;
4302 if (pedantic && !in_system_header && flexible_array_type_p (type))
4303 pedwarn (input_location, OPT_pedantic,
4304 "invalid use of structure with flexible array member");
4306 if (size == error_mark_node)
4307 type = error_mark_node;
4309 if (type == error_mark_node)
4310 continue;
4312 /* If size was specified, set ITYPE to a range-type for
4313 that size. Otherwise, ITYPE remains null. finish_decl
4314 may figure it out from an initial value. */
4316 if (size)
4318 /* Strip NON_LVALUE_EXPRs since we aren't using as an
4319 lvalue. */
4320 STRIP_TYPE_NOPS (size);
4322 if (!INTEGRAL_TYPE_P (TREE_TYPE (size)))
4324 error ("size of array %qs has non-integer type", name);
4325 size = integer_one_node;
4328 if (pedantic && integer_zerop (size))
4329 pedwarn (input_location, OPT_pedantic,
4330 "ISO C forbids zero-size array %qs", name);
4332 if (TREE_CODE (size) == INTEGER_CST)
4334 constant_expression_warning (size);
4335 if (tree_int_cst_sgn (size) < 0)
4337 error ("size of array %qs is negative", name);
4338 size = integer_one_node;
4341 else if ((decl_context == NORMAL || decl_context == FIELD)
4342 && current_scope == file_scope)
4344 error ("variably modified %qs at file scope", name);
4345 size = integer_one_node;
4347 else
4349 /* Make sure the array size remains visibly
4350 nonconstant even if it is (eg) a const variable
4351 with known value. */
4352 size_varies = 1;
4353 warn_variable_length_array (orig_name, size);
4356 if (integer_zerop (size))
4358 /* A zero-length array cannot be represented with
4359 an unsigned index type, which is what we'll
4360 get with build_index_type. Create an
4361 open-ended range instead. */
4362 itype = build_range_type (sizetype, size, NULL_TREE);
4364 else
4366 /* Arrange for the SAVE_EXPR on the inside of the
4367 MINUS_EXPR, which allows the -1 to get folded
4368 with the +1 that happens when building TYPE_SIZE. */
4369 if (size_varies)
4370 size = variable_size (size);
4372 /* Compute the maximum valid index, that is, size
4373 - 1. Do the calculation in index_type, so that
4374 if it is a variable the computations will be
4375 done in the proper mode. */
4376 itype = fold_build2 (MINUS_EXPR, index_type,
4377 convert (index_type, size),
4378 convert (index_type,
4379 size_one_node));
4381 /* If that overflowed, the array is too big. ???
4382 While a size of INT_MAX+1 technically shouldn't
4383 cause an overflow (because we subtract 1), the
4384 overflow is recorded during the conversion to
4385 index_type, before the subtraction. Handling
4386 this case seems like an unnecessary
4387 complication. */
4388 if (TREE_CODE (itype) == INTEGER_CST
4389 && TREE_OVERFLOW (itype))
4391 error ("size of array %qs is too large", name);
4392 type = error_mark_node;
4393 continue;
4396 itype = build_index_type (itype);
4399 else if (decl_context == FIELD)
4401 bool flexible_array_member = false;
4402 if (array_parm_vla_unspec_p)
4403 /* Field names can in fact have function prototype
4404 scope so [*] is disallowed here through making
4405 the field variably modified, not through being
4406 something other than a declaration with function
4407 prototype scope. */
4408 size_varies = 1;
4409 else
4411 const struct c_declarator *t = declarator;
4412 while (t->kind == cdk_attrs)
4413 t = t->declarator;
4414 flexible_array_member = (t->kind == cdk_id);
4416 if (flexible_array_member
4417 && pedantic && !flag_isoc99 && !in_system_header)
4418 pedwarn (input_location, OPT_pedantic,
4419 "ISO C90 does not support flexible array members");
4421 /* ISO C99 Flexible array members are effectively
4422 identical to GCC's zero-length array extension. */
4423 if (flexible_array_member || array_parm_vla_unspec_p)
4424 itype = build_range_type (sizetype, size_zero_node,
4425 NULL_TREE);
4427 else if (decl_context == PARM)
4429 if (array_parm_vla_unspec_p)
4431 itype = build_range_type (sizetype, size_zero_node, NULL_TREE);
4432 size_varies = 1;
4435 else if (decl_context == TYPENAME)
4437 if (array_parm_vla_unspec_p)
4439 /* C99 6.7.5.2p4 */
4440 warning (0, "%<[*]%> not in a declaration");
4441 /* We use this to avoid messing up with incomplete
4442 array types of the same type, that would
4443 otherwise be modified below. */
4444 itype = build_range_type (sizetype, size_zero_node,
4445 NULL_TREE);
4446 size_varies = 1;
4450 /* Complain about arrays of incomplete types. */
4451 if (!COMPLETE_TYPE_P (type))
4453 error ("array type has incomplete element type");
4454 type = error_mark_node;
4456 else
4457 /* When itype is NULL, a shared incomplete array type is
4458 returned for all array of a given type. Elsewhere we
4459 make sure we don't complete that type before copying
4460 it, but here we want to make sure we don't ever
4461 modify the shared type, so we gcc_assert (itype)
4462 below. */
4463 type = build_array_type (type, itype);
4465 if (type != error_mark_node)
4467 if (size_varies)
4469 /* It is ok to modify type here even if itype is
4470 NULL: if size_varies, we're in a
4471 multi-dimensional array and the inner type has
4472 variable size, so the enclosing shared array type
4473 must too. */
4474 if (size && TREE_CODE (size) == INTEGER_CST)
4475 type
4476 = build_distinct_type_copy (TYPE_MAIN_VARIANT (type));
4477 C_TYPE_VARIABLE_SIZE (type) = 1;
4480 /* The GCC extension for zero-length arrays differs from
4481 ISO flexible array members in that sizeof yields
4482 zero. */
4483 if (size && integer_zerop (size))
4485 gcc_assert (itype);
4486 TYPE_SIZE (type) = bitsize_zero_node;
4487 TYPE_SIZE_UNIT (type) = size_zero_node;
4489 if (array_parm_vla_unspec_p)
4491 gcc_assert (itype);
4492 /* The type is complete. C99 6.7.5.2p4 */
4493 TYPE_SIZE (type) = bitsize_zero_node;
4494 TYPE_SIZE_UNIT (type) = size_zero_node;
4498 if (decl_context != PARM
4499 && (array_ptr_quals != TYPE_UNQUALIFIED
4500 || array_ptr_attrs != NULL_TREE
4501 || array_parm_static))
4503 error ("static or type qualifiers in non-parameter array declarator");
4504 array_ptr_quals = TYPE_UNQUALIFIED;
4505 array_ptr_attrs = NULL_TREE;
4506 array_parm_static = 0;
4508 break;
4510 case cdk_function:
4512 /* Say it's a definition only for the declarator closest
4513 to the identifier, apart possibly from some
4514 attributes. */
4515 bool really_funcdef = false;
4516 tree arg_types;
4517 if (funcdef_flag)
4519 const struct c_declarator *t = declarator->declarator;
4520 while (t->kind == cdk_attrs)
4521 t = t->declarator;
4522 really_funcdef = (t->kind == cdk_id);
4525 /* Declaring a function type. Make sure we have a valid
4526 type for the function to return. */
4527 if (type == error_mark_node)
4528 continue;
4530 size_varies = 0;
4532 /* Warn about some types functions can't return. */
4533 if (TREE_CODE (type) == FUNCTION_TYPE)
4535 error ("%qs declared as function returning a function", name);
4536 type = integer_type_node;
4538 if (TREE_CODE (type) == ARRAY_TYPE)
4540 error ("%qs declared as function returning an array", name);
4541 type = integer_type_node;
4544 /* Construct the function type and go to the next
4545 inner layer of declarator. */
4546 arg_info = declarator->u.arg_info;
4547 arg_types = grokparms (arg_info, really_funcdef);
4548 if (really_funcdef)
4549 put_pending_sizes (arg_info->pending_sizes);
4551 /* Type qualifiers before the return type of the function
4552 qualify the return type, not the function type. */
4553 if (type_quals)
4555 /* Type qualifiers on a function return type are
4556 normally permitted by the standard but have no
4557 effect, so give a warning at -Wreturn-type.
4558 Qualifiers on a void return type are banned on
4559 function definitions in ISO C; GCC used to used
4560 them for noreturn functions. */
4561 if (VOID_TYPE_P (type) && really_funcdef)
4562 pedwarn (input_location, 0,
4563 "function definition has qualified void return type");
4564 else
4565 warning (OPT_Wignored_qualifiers,
4566 "type qualifiers ignored on function return type");
4568 type = c_build_qualified_type (type, type_quals);
4570 type_quals = TYPE_UNQUALIFIED;
4572 type = build_function_type (type, arg_types);
4573 declarator = declarator->declarator;
4575 /* Set the TYPE_CONTEXTs for each tagged type which is local to
4576 the formal parameter list of this FUNCTION_TYPE to point to
4577 the FUNCTION_TYPE node itself. */
4579 tree link;
4581 for (link = arg_info->tags;
4582 link;
4583 link = TREE_CHAIN (link))
4584 TYPE_CONTEXT (TREE_VALUE (link)) = type;
4586 break;
4588 case cdk_pointer:
4590 /* Merge any constancy or volatility into the target type
4591 for the pointer. */
4593 if (pedantic && TREE_CODE (type) == FUNCTION_TYPE
4594 && type_quals)
4595 pedwarn (input_location, OPT_pedantic,
4596 "ISO C forbids qualified function types");
4597 if (type_quals)
4598 type = c_build_qualified_type (type, type_quals);
4599 size_varies = 0;
4601 /* When the pointed-to type involves components of variable size,
4602 care must be taken to ensure that the size evaluation code is
4603 emitted early enough to dominate all the possible later uses
4604 and late enough for the variables on which it depends to have
4605 been assigned.
4607 This is expected to happen automatically when the pointed-to
4608 type has a name/declaration of it's own, but special attention
4609 is required if the type is anonymous.
4611 We handle the NORMAL and FIELD contexts here by attaching an
4612 artificial TYPE_DECL to such pointed-to type. This forces the
4613 sizes evaluation at a safe point and ensures it is not deferred
4614 until e.g. within a deeper conditional context.
4616 We expect nothing to be needed here for PARM or TYPENAME.
4617 Pushing a TYPE_DECL at this point for TYPENAME would actually
4618 be incorrect, as we might be in the middle of an expression
4619 with side effects on the pointed-to type size "arguments" prior
4620 to the pointer declaration point and the fake TYPE_DECL in the
4621 enclosing context would force the size evaluation prior to the
4622 side effects. */
4624 if (!TYPE_NAME (type)
4625 && (decl_context == NORMAL || decl_context == FIELD)
4626 && variably_modified_type_p (type, NULL_TREE))
4628 tree decl = build_decl (TYPE_DECL, NULL_TREE, type);
4629 DECL_ARTIFICIAL (decl) = 1;
4630 pushdecl (decl);
4631 finish_decl (decl, NULL_TREE, NULL_TREE);
4632 TYPE_NAME (type) = decl;
4635 type = build_pointer_type (type);
4637 /* Process type qualifiers (such as const or volatile)
4638 that were given inside the `*'. */
4639 type_quals = declarator->u.pointer_quals;
4641 declarator = declarator->declarator;
4642 break;
4644 default:
4645 gcc_unreachable ();
4648 *decl_attrs = chainon (returned_attrs, *decl_attrs);
4650 /* Now TYPE has the actual type, apart from any qualifiers in
4651 TYPE_QUALS. */
4653 /* Check the type and width of a bit-field. */
4654 if (bitfield)
4655 check_bitfield_type_and_width (&type, width, orig_name);
4657 /* Did array size calculations overflow? */
4659 if (TREE_CODE (type) == ARRAY_TYPE
4660 && COMPLETE_TYPE_P (type)
4661 && TREE_CODE (TYPE_SIZE_UNIT (type)) == INTEGER_CST
4662 && TREE_OVERFLOW (TYPE_SIZE_UNIT (type)))
4664 error ("size of array %qs is too large", name);
4665 /* If we proceed with the array type as it is, we'll eventually
4666 crash in tree_low_cst(). */
4667 type = error_mark_node;
4670 /* If this is declaring a typedef name, return a TYPE_DECL. */
4672 if (storage_class == csc_typedef)
4674 tree decl;
4675 if (pedantic && TREE_CODE (type) == FUNCTION_TYPE
4676 && type_quals)
4677 pedwarn (input_location, OPT_pedantic,
4678 "ISO C forbids qualified function types");
4679 if (type_quals)
4680 type = c_build_qualified_type (type, type_quals);
4681 decl = build_decl (TYPE_DECL, declarator->u.id, type);
4682 DECL_SOURCE_LOCATION (decl) = declarator->id_loc;
4683 if (declspecs->explicit_signed_p)
4684 C_TYPEDEF_EXPLICITLY_SIGNED (decl) = 1;
4685 if (declspecs->inline_p)
4686 pedwarn (input_location, 0,"typedef %q+D declared %<inline%>", decl);
4687 return decl;
4690 /* If this is a type name (such as, in a cast or sizeof),
4691 compute the type and return it now. */
4693 if (decl_context == TYPENAME)
4695 /* Note that the grammar rejects storage classes in typenames
4696 and fields. */
4697 gcc_assert (storage_class == csc_none && !threadp
4698 && !declspecs->inline_p);
4699 if (pedantic && TREE_CODE (type) == FUNCTION_TYPE
4700 && type_quals)
4701 pedwarn (input_location, OPT_pedantic,
4702 "ISO C forbids const or volatile function types");
4703 if (type_quals)
4704 type = c_build_qualified_type (type, type_quals);
4705 return type;
4708 if (pedantic && decl_context == FIELD
4709 && variably_modified_type_p (type, NULL_TREE))
4711 /* C99 6.7.2.1p8 */
4712 pedwarn (input_location, OPT_pedantic,
4713 "a member of a structure or union cannot have a variably modified type");
4716 /* Aside from typedefs and type names (handle above),
4717 `void' at top level (not within pointer)
4718 is allowed only in public variables.
4719 We don't complain about parms either, but that is because
4720 a better error message can be made later. */
4722 if (VOID_TYPE_P (type) && decl_context != PARM
4723 && !((decl_context != FIELD && TREE_CODE (type) != FUNCTION_TYPE)
4724 && (storage_class == csc_extern
4725 || (current_scope == file_scope
4726 && !(storage_class == csc_static
4727 || storage_class == csc_register)))))
4729 error ("variable or field %qs declared void", name);
4730 type = integer_type_node;
4733 /* Now create the decl, which may be a VAR_DECL, a PARM_DECL
4734 or a FUNCTION_DECL, depending on DECL_CONTEXT and TYPE. */
4737 tree decl;
4739 if (decl_context == PARM)
4741 tree promoted_type;
4743 /* A parameter declared as an array of T is really a pointer to T.
4744 One declared as a function is really a pointer to a function. */
4746 if (TREE_CODE (type) == ARRAY_TYPE)
4748 /* Transfer const-ness of array into that of type pointed to. */
4749 type = TREE_TYPE (type);
4750 if (type_quals)
4751 type = c_build_qualified_type (type, type_quals);
4752 type = build_pointer_type (type);
4753 type_quals = array_ptr_quals;
4754 if (type_quals)
4755 type = c_build_qualified_type (type, type_quals);
4757 /* We don't yet implement attributes in this context. */
4758 if (array_ptr_attrs != NULL_TREE)
4759 warning (OPT_Wattributes,
4760 "attributes in parameter array declarator ignored");
4762 size_varies = 0;
4764 else if (TREE_CODE (type) == FUNCTION_TYPE)
4766 if (type_quals)
4767 pedwarn (input_location, OPT_pedantic,
4768 "ISO C forbids qualified function types");
4769 if (type_quals)
4770 type = c_build_qualified_type (type, type_quals);
4771 type = build_pointer_type (type);
4772 type_quals = TYPE_UNQUALIFIED;
4774 else if (type_quals)
4775 type = c_build_qualified_type (type, type_quals);
4777 decl = build_decl (PARM_DECL, declarator->u.id, type);
4778 DECL_SOURCE_LOCATION (decl) = declarator->id_loc;
4779 if (size_varies)
4780 C_DECL_VARIABLE_SIZE (decl) = 1;
4782 /* Compute the type actually passed in the parmlist,
4783 for the case where there is no prototype.
4784 (For example, shorts and chars are passed as ints.)
4785 When there is a prototype, this is overridden later. */
4787 if (type == error_mark_node)
4788 promoted_type = type;
4789 else
4790 promoted_type = c_type_promotes_to (type);
4792 DECL_ARG_TYPE (decl) = promoted_type;
4793 if (declspecs->inline_p)
4794 pedwarn (input_location, 0, "parameter %q+D declared %<inline%>", decl);
4796 else if (decl_context == FIELD)
4798 /* Note that the grammar rejects storage classes in typenames
4799 and fields. */
4800 gcc_assert (storage_class == csc_none && !threadp
4801 && !declspecs->inline_p);
4803 /* Structure field. It may not be a function. */
4805 if (TREE_CODE (type) == FUNCTION_TYPE)
4807 error ("field %qs declared as a function", name);
4808 type = build_pointer_type (type);
4810 else if (TREE_CODE (type) != ERROR_MARK
4811 && !COMPLETE_OR_UNBOUND_ARRAY_TYPE_P (type))
4813 error ("field %qs has incomplete type", name);
4814 type = error_mark_node;
4816 type = c_build_qualified_type (type, type_quals);
4817 decl = build_decl (FIELD_DECL, declarator->u.id, type);
4818 DECL_SOURCE_LOCATION (decl) = declarator->id_loc;
4819 DECL_NONADDRESSABLE_P (decl) = bitfield;
4820 if (bitfield && !declarator->u.id)
4821 TREE_NO_WARNING (decl) = 1;
4823 if (size_varies)
4824 C_DECL_VARIABLE_SIZE (decl) = 1;
4826 else if (TREE_CODE (type) == FUNCTION_TYPE)
4828 if (storage_class == csc_register || threadp)
4830 error ("invalid storage class for function %qs", name);
4832 else if (current_scope != file_scope)
4834 /* Function declaration not at file scope. Storage
4835 classes other than `extern' are not allowed, C99
4836 6.7.1p5, and `extern' makes no difference. However,
4837 GCC allows 'auto', perhaps with 'inline', to support
4838 nested functions. */
4839 if (storage_class == csc_auto)
4840 pedwarn (input_location, OPT_pedantic, "invalid storage class for function %qs", name);
4841 else if (storage_class == csc_static)
4843 error ("invalid storage class for function %qs", name);
4844 if (funcdef_flag)
4845 storage_class = declspecs->storage_class = csc_none;
4846 else
4847 return 0;
4851 decl = build_decl (FUNCTION_DECL, declarator->u.id, type);
4852 DECL_SOURCE_LOCATION (decl) = declarator->id_loc;
4853 decl = build_decl_attribute_variant (decl, decl_attr);
4855 if (pedantic && type_quals && !DECL_IN_SYSTEM_HEADER (decl))
4856 pedwarn (input_location, OPT_pedantic,
4857 "ISO C forbids qualified function types");
4859 /* GNU C interprets a volatile-qualified function type to indicate
4860 that the function does not return. */
4861 if ((type_quals & TYPE_QUAL_VOLATILE)
4862 && !VOID_TYPE_P (TREE_TYPE (TREE_TYPE (decl))))
4863 warning (0, "%<noreturn%> function returns non-void value");
4865 /* Every function declaration is an external reference
4866 (DECL_EXTERNAL) except for those which are not at file
4867 scope and are explicitly declared "auto". This is
4868 forbidden by standard C (C99 6.7.1p5) and is interpreted by
4869 GCC to signify a forward declaration of a nested function. */
4870 if (storage_class == csc_auto && current_scope != file_scope)
4871 DECL_EXTERNAL (decl) = 0;
4872 /* In C99, a function which is declared 'inline' with 'extern'
4873 is not an external reference (which is confusing). It
4874 means that the later definition of the function must be output
4875 in this file, C99 6.7.4p6. In GNU C89, a function declared
4876 'extern inline' is an external reference. */
4877 else if (declspecs->inline_p && storage_class != csc_static)
4878 DECL_EXTERNAL (decl) = ((storage_class == csc_extern)
4879 == flag_gnu89_inline);
4880 else
4881 DECL_EXTERNAL (decl) = !initialized;
4883 /* Record absence of global scope for `static' or `auto'. */
4884 TREE_PUBLIC (decl)
4885 = !(storage_class == csc_static || storage_class == csc_auto);
4887 /* For a function definition, record the argument information
4888 block where store_parm_decls will look for it. */
4889 if (funcdef_flag)
4890 current_function_arg_info = arg_info;
4892 if (declspecs->default_int_p)
4893 C_FUNCTION_IMPLICIT_INT (decl) = 1;
4895 /* Record presence of `inline', if it is reasonable. */
4896 if (flag_hosted && MAIN_NAME_P (declarator->u.id))
4898 if (declspecs->inline_p)
4899 pedwarn (input_location, 0, "cannot inline function %<main%>");
4901 else if (declspecs->inline_p)
4902 /* Record that the function is declared `inline'. */
4903 DECL_DECLARED_INLINE_P (decl) = 1;
4905 else
4907 /* It's a variable. */
4908 /* An uninitialized decl with `extern' is a reference. */
4909 int extern_ref = !initialized && storage_class == csc_extern;
4911 type = c_build_qualified_type (type, type_quals);
4913 /* C99 6.2.2p7: It is invalid (compile-time undefined
4914 behavior) to create an 'extern' declaration for a
4915 variable if there is a global declaration that is
4916 'static' and the global declaration is not visible.
4917 (If the static declaration _is_ currently visible,
4918 the 'extern' declaration is taken to refer to that decl.) */
4919 if (extern_ref && current_scope != file_scope)
4921 tree global_decl = identifier_global_value (declarator->u.id);
4922 tree visible_decl = lookup_name (declarator->u.id);
4924 if (global_decl
4925 && global_decl != visible_decl
4926 && TREE_CODE (global_decl) == VAR_DECL
4927 && !TREE_PUBLIC (global_decl))
4928 error ("variable previously declared %<static%> redeclared "
4929 "%<extern%>");
4932 decl = build_decl (VAR_DECL, declarator->u.id, type);
4933 DECL_SOURCE_LOCATION (decl) = declarator->id_loc;
4934 if (size_varies)
4935 C_DECL_VARIABLE_SIZE (decl) = 1;
4937 if (declspecs->inline_p)
4938 pedwarn (input_location, 0, "variable %q+D declared %<inline%>", decl);
4940 /* At file scope, an initialized extern declaration may follow
4941 a static declaration. In that case, DECL_EXTERNAL will be
4942 reset later in start_decl. */
4943 DECL_EXTERNAL (decl) = (storage_class == csc_extern);
4945 /* At file scope, the presence of a `static' or `register' storage
4946 class specifier, or the absence of all storage class specifiers
4947 makes this declaration a definition (perhaps tentative). Also,
4948 the absence of `static' makes it public. */
4949 if (current_scope == file_scope)
4951 TREE_PUBLIC (decl) = storage_class != csc_static;
4952 TREE_STATIC (decl) = !extern_ref;
4954 /* Not at file scope, only `static' makes a static definition. */
4955 else
4957 TREE_STATIC (decl) = (storage_class == csc_static);
4958 TREE_PUBLIC (decl) = extern_ref;
4961 if (threadp)
4962 DECL_TLS_MODEL (decl) = decl_default_tls_model (decl);
4965 if (storage_class == csc_extern
4966 && variably_modified_type_p (type, NULL_TREE))
4968 /* C99 6.7.5.2p2 */
4969 error ("object with variably modified type must have no linkage");
4972 /* Record `register' declaration for warnings on &
4973 and in case doing stupid register allocation. */
4975 if (storage_class == csc_register)
4977 C_DECL_REGISTER (decl) = 1;
4978 DECL_REGISTER (decl) = 1;
4981 /* Record constancy and volatility. */
4982 c_apply_type_quals_to_decl (type_quals, decl);
4984 /* If a type has volatile components, it should be stored in memory.
4985 Otherwise, the fact that those components are volatile
4986 will be ignored, and would even crash the compiler.
4987 Of course, this only makes sense on VAR,PARM, and RESULT decl's. */
4988 if (C_TYPE_FIELDS_VOLATILE (TREE_TYPE (decl))
4989 && (TREE_CODE (decl) == VAR_DECL || TREE_CODE (decl) == PARM_DECL
4990 || TREE_CODE (decl) == RESULT_DECL))
4992 /* It is not an error for a structure with volatile fields to
4993 be declared register, but reset DECL_REGISTER since it
4994 cannot actually go in a register. */
4995 int was_reg = C_DECL_REGISTER (decl);
4996 C_DECL_REGISTER (decl) = 0;
4997 DECL_REGISTER (decl) = 0;
4998 c_mark_addressable (decl);
4999 C_DECL_REGISTER (decl) = was_reg;
5002 /* This is the earliest point at which we might know the assembler
5003 name of a variable. Thus, if it's known before this, die horribly. */
5004 gcc_assert (!DECL_ASSEMBLER_NAME_SET_P (decl));
5006 return decl;
5010 /* Decode the parameter-list info for a function type or function definition.
5011 The argument is the value returned by `get_parm_info' (or made in c-parse.c
5012 if there is an identifier list instead of a parameter decl list).
5013 These two functions are separate because when a function returns
5014 or receives functions then each is called multiple times but the order
5015 of calls is different. The last call to `grokparms' is always the one
5016 that contains the formal parameter names of a function definition.
5018 Return a list of arg types to use in the FUNCTION_TYPE for this function.
5020 FUNCDEF_FLAG is true for a function definition, false for
5021 a mere declaration. A nonempty identifier-list gets an error message
5022 when FUNCDEF_FLAG is false. */
5024 static tree
5025 grokparms (struct c_arg_info *arg_info, bool funcdef_flag)
5027 tree arg_types = arg_info->types;
5029 if (funcdef_flag && arg_info->had_vla_unspec)
5031 /* A function definition isn't function prototype scope C99 6.2.1p4. */
5032 /* C99 6.7.5.2p4 */
5033 error ("%<[*]%> not allowed in other than function prototype scope");
5036 if (arg_types == 0 && !funcdef_flag && !in_system_header)
5037 warning (OPT_Wstrict_prototypes,
5038 "function declaration isn%'t a prototype");
5040 if (arg_types == error_mark_node)
5041 return 0; /* don't set TYPE_ARG_TYPES in this case */
5043 else if (arg_types && TREE_CODE (TREE_VALUE (arg_types)) == IDENTIFIER_NODE)
5045 if (!funcdef_flag)
5046 pedwarn (input_location, 0, "parameter names (without types) in function declaration");
5048 arg_info->parms = arg_info->types;
5049 arg_info->types = 0;
5050 return 0;
5052 else
5054 tree parm, type, typelt;
5055 unsigned int parmno;
5057 /* If there is a parameter of incomplete type in a definition,
5058 this is an error. In a declaration this is valid, and a
5059 struct or union type may be completed later, before any calls
5060 or definition of the function. In the case where the tag was
5061 first declared within the parameter list, a warning has
5062 already been given. If a parameter has void type, then
5063 however the function cannot be defined or called, so
5064 warn. */
5066 for (parm = arg_info->parms, typelt = arg_types, parmno = 1;
5067 parm;
5068 parm = TREE_CHAIN (parm), typelt = TREE_CHAIN (typelt), parmno++)
5070 type = TREE_VALUE (typelt);
5071 if (type == error_mark_node)
5072 continue;
5074 if (!COMPLETE_TYPE_P (type))
5076 if (funcdef_flag)
5078 if (DECL_NAME (parm))
5079 error ("parameter %u (%q+D) has incomplete type",
5080 parmno, parm);
5081 else
5082 error ("%Jparameter %u has incomplete type",
5083 parm, parmno);
5085 TREE_VALUE (typelt) = error_mark_node;
5086 TREE_TYPE (parm) = error_mark_node;
5088 else if (VOID_TYPE_P (type))
5090 if (DECL_NAME (parm))
5091 warning (0, "parameter %u (%q+D) has void type",
5092 parmno, parm);
5093 else
5094 warning (0, "%Jparameter %u has void type",
5095 parm, parmno);
5099 if (DECL_NAME (parm) && TREE_USED (parm))
5100 warn_if_shadowing (parm);
5102 return arg_types;
5106 /* Take apart the current scope and return a c_arg_info structure with
5107 info on a parameter list just parsed.
5109 This structure is later fed to 'grokparms' and 'store_parm_decls'.
5111 ELLIPSIS being true means the argument list ended in '...' so don't
5112 append a sentinel (void_list_node) to the end of the type-list. */
5114 struct c_arg_info *
5115 get_parm_info (bool ellipsis)
5117 struct c_binding *b = current_scope->bindings;
5118 struct c_arg_info *arg_info = XOBNEW (&parser_obstack,
5119 struct c_arg_info);
5120 tree parms = 0;
5121 tree tags = 0;
5122 tree types = 0;
5123 tree others = 0;
5125 static bool explained_incomplete_types = false;
5126 bool gave_void_only_once_err = false;
5128 arg_info->parms = 0;
5129 arg_info->tags = 0;
5130 arg_info->types = 0;
5131 arg_info->others = 0;
5132 arg_info->pending_sizes = 0;
5133 arg_info->had_vla_unspec = current_scope->had_vla_unspec;
5135 /* The bindings in this scope must not get put into a block.
5136 We will take care of deleting the binding nodes. */
5137 current_scope->bindings = 0;
5139 /* This function is only called if there was *something* on the
5140 parameter list. */
5141 gcc_assert (b);
5143 /* A parameter list consisting solely of 'void' indicates that the
5144 function takes no arguments. But if the 'void' is qualified
5145 (by 'const' or 'volatile'), or has a storage class specifier
5146 ('register'), then the behavior is undefined; issue an error.
5147 Typedefs for 'void' are OK (see DR#157). */
5148 if (b->prev == 0 /* one binding */
5149 && TREE_CODE (b->decl) == PARM_DECL /* which is a parameter */
5150 && !DECL_NAME (b->decl) /* anonymous */
5151 && VOID_TYPE_P (TREE_TYPE (b->decl))) /* of void type */
5153 if (TREE_THIS_VOLATILE (b->decl)
5154 || TREE_READONLY (b->decl)
5155 || C_DECL_REGISTER (b->decl))
5156 error ("%<void%> as only parameter may not be qualified");
5158 /* There cannot be an ellipsis. */
5159 if (ellipsis)
5160 error ("%<void%> must be the only parameter");
5162 arg_info->types = void_list_node;
5163 return arg_info;
5166 if (!ellipsis)
5167 types = void_list_node;
5169 /* Break up the bindings list into parms, tags, types, and others;
5170 apply sanity checks; purge the name-to-decl bindings. */
5171 while (b)
5173 tree decl = b->decl;
5174 tree type = TREE_TYPE (decl);
5175 const char *keyword;
5177 switch (TREE_CODE (decl))
5179 case PARM_DECL:
5180 if (b->id)
5182 gcc_assert (I_SYMBOL_BINDING (b->id) == b);
5183 I_SYMBOL_BINDING (b->id) = b->shadowed;
5186 /* Check for forward decls that never got their actual decl. */
5187 if (TREE_ASM_WRITTEN (decl))
5188 error ("parameter %q+D has just a forward declaration", decl);
5189 /* Check for (..., void, ...) and issue an error. */
5190 else if (VOID_TYPE_P (type) && !DECL_NAME (decl))
5192 if (!gave_void_only_once_err)
5194 error ("%<void%> must be the only parameter");
5195 gave_void_only_once_err = true;
5198 else
5200 /* Valid parameter, add it to the list. */
5201 TREE_CHAIN (decl) = parms;
5202 parms = decl;
5204 /* Since there is a prototype, args are passed in their
5205 declared types. The back end may override this later. */
5206 DECL_ARG_TYPE (decl) = type;
5207 types = tree_cons (0, type, types);
5209 break;
5211 case ENUMERAL_TYPE: keyword = "enum"; goto tag;
5212 case UNION_TYPE: keyword = "union"; goto tag;
5213 case RECORD_TYPE: keyword = "struct"; goto tag;
5214 tag:
5215 /* Types may not have tag-names, in which case the type
5216 appears in the bindings list with b->id NULL. */
5217 if (b->id)
5219 gcc_assert (I_TAG_BINDING (b->id) == b);
5220 I_TAG_BINDING (b->id) = b->shadowed;
5223 /* Warn about any struct, union or enum tags defined in a
5224 parameter list. The scope of such types is limited to
5225 the parameter list, which is rarely if ever desirable
5226 (it's impossible to call such a function with type-
5227 correct arguments). An anonymous union parm type is
5228 meaningful as a GNU extension, so don't warn for that. */
5229 if (TREE_CODE (decl) != UNION_TYPE || b->id != 0)
5231 if (b->id)
5232 /* The %s will be one of 'struct', 'union', or 'enum'. */
5233 warning (0, "%<%s %E%> declared inside parameter list",
5234 keyword, b->id);
5235 else
5236 /* The %s will be one of 'struct', 'union', or 'enum'. */
5237 warning (0, "anonymous %s declared inside parameter list",
5238 keyword);
5240 if (!explained_incomplete_types)
5242 warning (0, "its scope is only this definition or declaration,"
5243 " which is probably not what you want");
5244 explained_incomplete_types = true;
5248 tags = tree_cons (b->id, decl, tags);
5249 break;
5251 case CONST_DECL:
5252 case TYPE_DECL:
5253 case FUNCTION_DECL:
5254 /* CONST_DECLs appear here when we have an embedded enum,
5255 and TYPE_DECLs appear here when we have an embedded struct
5256 or union. No warnings for this - we already warned about the
5257 type itself. FUNCTION_DECLs appear when there is an implicit
5258 function declaration in the parameter list. */
5260 TREE_CHAIN (decl) = others;
5261 others = decl;
5262 /* fall through */
5264 case ERROR_MARK:
5265 /* error_mark_node appears here when we have an undeclared
5266 variable. Just throw it away. */
5267 if (b->id)
5269 gcc_assert (I_SYMBOL_BINDING (b->id) == b);
5270 I_SYMBOL_BINDING (b->id) = b->shadowed;
5272 break;
5274 /* Other things that might be encountered. */
5275 case LABEL_DECL:
5276 case VAR_DECL:
5277 default:
5278 gcc_unreachable ();
5281 b = free_binding_and_advance (b);
5284 arg_info->parms = parms;
5285 arg_info->tags = tags;
5286 arg_info->types = types;
5287 arg_info->others = others;
5288 arg_info->pending_sizes = get_pending_sizes ();
5289 return arg_info;
5292 /* Get the struct, enum or union (CODE says which) with tag NAME.
5293 Define the tag as a forward-reference if it is not defined.
5294 Return a c_typespec structure for the type specifier. */
5296 struct c_typespec
5297 parser_xref_tag (enum tree_code code, tree name)
5299 struct c_typespec ret;
5300 /* If a cross reference is requested, look up the type
5301 already defined for this tag and return it. */
5303 tree ref = lookup_tag (code, name, 0);
5304 /* If this is the right type of tag, return what we found.
5305 (This reference will be shadowed by shadow_tag later if appropriate.)
5306 If this is the wrong type of tag, do not return it. If it was the
5307 wrong type in the same scope, we will have had an error
5308 message already; if in a different scope and declaring
5309 a name, pending_xref_error will give an error message; but if in a
5310 different scope and not declaring a name, this tag should
5311 shadow the previous declaration of a different type of tag, and
5312 this would not work properly if we return the reference found.
5313 (For example, with "struct foo" in an outer scope, "union foo;"
5314 must shadow that tag with a new one of union type.) */
5315 ret.kind = (ref ? ctsk_tagref : ctsk_tagfirstref);
5316 if (ref && TREE_CODE (ref) == code)
5318 ret.spec = ref;
5319 return ret;
5322 /* If no such tag is yet defined, create a forward-reference node
5323 and record it as the "definition".
5324 When a real declaration of this type is found,
5325 the forward-reference will be altered into a real type. */
5327 ref = make_node (code);
5328 if (code == ENUMERAL_TYPE)
5330 /* Give the type a default layout like unsigned int
5331 to avoid crashing if it does not get defined. */
5332 SET_TYPE_MODE (ref, TYPE_MODE (unsigned_type_node));
5333 TYPE_ALIGN (ref) = TYPE_ALIGN (unsigned_type_node);
5334 TYPE_USER_ALIGN (ref) = 0;
5335 TYPE_UNSIGNED (ref) = 1;
5336 TYPE_PRECISION (ref) = TYPE_PRECISION (unsigned_type_node);
5337 TYPE_MIN_VALUE (ref) = TYPE_MIN_VALUE (unsigned_type_node);
5338 TYPE_MAX_VALUE (ref) = TYPE_MAX_VALUE (unsigned_type_node);
5341 pushtag (name, ref);
5343 ret.spec = ref;
5344 return ret;
5347 /* Get the struct, enum or union (CODE says which) with tag NAME.
5348 Define the tag as a forward-reference if it is not defined.
5349 Return a tree for the type. */
5351 tree
5352 xref_tag (enum tree_code code, tree name)
5354 return parser_xref_tag (code, name).spec;
5357 /* Make sure that the tag NAME is defined *in the current scope*
5358 at least as a forward reference.
5359 CODE says which kind of tag NAME ought to be. */
5361 tree
5362 start_struct (enum tree_code code, tree name)
5364 /* If there is already a tag defined at this scope
5365 (as a forward reference), just return it. */
5367 tree ref = 0;
5369 if (name != 0)
5370 ref = lookup_tag (code, name, 1);
5371 if (ref && TREE_CODE (ref) == code)
5373 if (TYPE_SIZE (ref))
5375 if (code == UNION_TYPE)
5376 error ("redefinition of %<union %E%>", name);
5377 else
5378 error ("redefinition of %<struct %E%>", name);
5379 /* Don't create structures using a name already in use. */
5380 ref = NULL_TREE;
5382 else if (C_TYPE_BEING_DEFINED (ref))
5384 if (code == UNION_TYPE)
5385 error ("nested redefinition of %<union %E%>", name);
5386 else
5387 error ("nested redefinition of %<struct %E%>", name);
5388 /* Don't create structures that contain themselves. */
5389 ref = NULL_TREE;
5393 /* Otherwise create a forward-reference just so the tag is in scope. */
5395 if (ref == NULL_TREE || TREE_CODE (ref) != code)
5397 ref = make_node (code);
5398 pushtag (name, ref);
5401 C_TYPE_BEING_DEFINED (ref) = 1;
5402 TYPE_PACKED (ref) = flag_pack_struct;
5403 return ref;
5406 /* Process the specs, declarator and width (NULL if omitted)
5407 of a structure component, returning a FIELD_DECL node.
5408 WIDTH is non-NULL for bit-fields only, and is an INTEGER_CST node.
5409 DECL_ATTRS is as for grokdeclarator.
5411 LOC is the location of the structure component.
5413 This is done during the parsing of the struct declaration.
5414 The FIELD_DECL nodes are chained together and the lot of them
5415 are ultimately passed to `build_struct' to make the RECORD_TYPE node. */
5417 tree
5418 grokfield (location_t loc,
5419 struct c_declarator *declarator, struct c_declspecs *declspecs,
5420 tree width, tree *decl_attrs)
5422 tree value;
5424 if (declarator->kind == cdk_id && declarator->u.id == NULL_TREE
5425 && width == NULL_TREE)
5427 /* This is an unnamed decl.
5429 If we have something of the form "union { list } ;" then this
5430 is the anonymous union extension. Similarly for struct.
5432 If this is something of the form "struct foo;", then
5433 If MS extensions are enabled, this is handled as an
5434 anonymous struct.
5435 Otherwise this is a forward declaration of a structure tag.
5437 If this is something of the form "foo;" and foo is a TYPE_DECL, then
5438 If MS extensions are enabled and foo names a structure, then
5439 again this is an anonymous struct.
5440 Otherwise this is an error.
5442 Oh what a horrid tangled web we weave. I wonder if MS consciously
5443 took this from Plan 9 or if it was an accident of implementation
5444 that took root before someone noticed the bug... */
5446 tree type = declspecs->type;
5447 bool type_ok = (TREE_CODE (type) == RECORD_TYPE
5448 || TREE_CODE (type) == UNION_TYPE);
5449 bool ok = false;
5451 if (type_ok
5452 && (flag_ms_extensions || !declspecs->typedef_p))
5454 if (flag_ms_extensions)
5455 ok = true;
5456 else if (flag_iso)
5457 ok = false;
5458 else if (TYPE_NAME (type) == NULL)
5459 ok = true;
5460 else
5461 ok = false;
5463 if (!ok)
5465 pedwarn (loc, 0, "declaration does not declare anything");
5466 return NULL_TREE;
5468 pedwarn (loc, OPT_pedantic, "ISO C doesn%'t support unnamed structs/unions");
5471 value = grokdeclarator (declarator, declspecs, FIELD, false,
5472 width ? &width : NULL, decl_attrs,
5473 DEPRECATED_NORMAL);
5475 finish_decl (value, NULL_TREE, NULL_TREE);
5476 DECL_INITIAL (value) = width;
5478 return value;
5481 /* Generate an error for any duplicate field names in FIELDLIST. Munge
5482 the list such that this does not present a problem later. */
5484 static void
5485 detect_field_duplicates (tree fieldlist)
5487 tree x, y;
5488 int timeout = 10;
5490 /* First, see if there are more than "a few" fields.
5491 This is trivially true if there are zero or one fields. */
5492 if (!fieldlist)
5493 return;
5494 x = TREE_CHAIN (fieldlist);
5495 if (!x)
5496 return;
5497 do {
5498 timeout--;
5499 x = TREE_CHAIN (x);
5500 } while (timeout > 0 && x);
5502 /* If there were "few" fields, avoid the overhead of allocating
5503 a hash table. Instead just do the nested traversal thing. */
5504 if (timeout > 0)
5506 for (x = TREE_CHAIN (fieldlist); x ; x = TREE_CHAIN (x))
5507 if (DECL_NAME (x))
5509 for (y = fieldlist; y != x; y = TREE_CHAIN (y))
5510 if (DECL_NAME (y) == DECL_NAME (x))
5512 error ("duplicate member %q+D", x);
5513 DECL_NAME (x) = NULL_TREE;
5517 else
5519 htab_t htab = htab_create (37, htab_hash_pointer, htab_eq_pointer, NULL);
5520 void **slot;
5522 for (x = fieldlist; x ; x = TREE_CHAIN (x))
5523 if ((y = DECL_NAME (x)) != 0)
5525 slot = htab_find_slot (htab, y, INSERT);
5526 if (*slot)
5528 error ("duplicate member %q+D", x);
5529 DECL_NAME (x) = NULL_TREE;
5531 *slot = y;
5534 htab_delete (htab);
5538 /* Fill in the fields of a RECORD_TYPE or UNION_TYPE node, T.
5539 FIELDLIST is a chain of FIELD_DECL nodes for the fields.
5540 ATTRIBUTES are attributes to be applied to the structure. */
5542 tree
5543 finish_struct (tree t, tree fieldlist, tree attributes)
5545 tree x;
5546 bool toplevel = file_scope == current_scope;
5547 int saw_named_field;
5549 /* If this type was previously laid out as a forward reference,
5550 make sure we lay it out again. */
5552 TYPE_SIZE (t) = 0;
5554 decl_attributes (&t, attributes, (int) ATTR_FLAG_TYPE_IN_PLACE);
5556 if (pedantic)
5558 for (x = fieldlist; x; x = TREE_CHAIN (x))
5559 if (DECL_NAME (x) != 0)
5560 break;
5562 if (x == 0)
5564 if (TREE_CODE (t) == UNION_TYPE)
5566 if (fieldlist)
5567 pedwarn (input_location, OPT_pedantic, "union has no named members");
5568 else
5569 pedwarn (input_location, OPT_pedantic, "union has no members");
5571 else
5573 if (fieldlist)
5574 pedwarn (input_location, OPT_pedantic, "struct has no named members");
5575 else
5576 pedwarn (input_location, OPT_pedantic, "struct has no members");
5581 /* Install struct as DECL_CONTEXT of each field decl.
5582 Also process specified field sizes, found in the DECL_INITIAL,
5583 storing 0 there after the type has been changed to precision equal
5584 to its width, rather than the precision of the specified standard
5585 type. (Correct layout requires the original type to have been preserved
5586 until now.) */
5588 saw_named_field = 0;
5589 for (x = fieldlist; x; x = TREE_CHAIN (x))
5591 if (TREE_TYPE (x) == error_mark_node)
5592 continue;
5594 DECL_CONTEXT (x) = t;
5596 /* If any field is const, the structure type is pseudo-const. */
5597 if (TREE_READONLY (x))
5598 C_TYPE_FIELDS_READONLY (t) = 1;
5599 else
5601 /* A field that is pseudo-const makes the structure likewise. */
5602 tree t1 = TREE_TYPE (x);
5603 while (TREE_CODE (t1) == ARRAY_TYPE)
5604 t1 = TREE_TYPE (t1);
5605 if ((TREE_CODE (t1) == RECORD_TYPE || TREE_CODE (t1) == UNION_TYPE)
5606 && C_TYPE_FIELDS_READONLY (t1))
5607 C_TYPE_FIELDS_READONLY (t) = 1;
5610 /* Any field that is volatile means variables of this type must be
5611 treated in some ways as volatile. */
5612 if (TREE_THIS_VOLATILE (x))
5613 C_TYPE_FIELDS_VOLATILE (t) = 1;
5615 /* Any field of nominal variable size implies structure is too. */
5616 if (C_DECL_VARIABLE_SIZE (x))
5617 C_TYPE_VARIABLE_SIZE (t) = 1;
5619 if (DECL_INITIAL (x))
5621 unsigned HOST_WIDE_INT width = tree_low_cst (DECL_INITIAL (x), 1);
5622 DECL_SIZE (x) = bitsize_int (width);
5623 DECL_BIT_FIELD (x) = 1;
5624 SET_DECL_C_BIT_FIELD (x);
5627 if (TYPE_PACKED (t)
5628 && (DECL_BIT_FIELD (x)
5629 || TYPE_ALIGN (TREE_TYPE (x)) > BITS_PER_UNIT))
5630 DECL_PACKED (x) = 1;
5632 /* Detect flexible array member in an invalid context. */
5633 if (TREE_CODE (TREE_TYPE (x)) == ARRAY_TYPE
5634 && TYPE_SIZE (TREE_TYPE (x)) == NULL_TREE
5635 && TYPE_DOMAIN (TREE_TYPE (x)) != NULL_TREE
5636 && TYPE_MAX_VALUE (TYPE_DOMAIN (TREE_TYPE (x))) == NULL_TREE)
5638 if (TREE_CODE (t) == UNION_TYPE)
5640 error ("%Jflexible array member in union", x);
5641 TREE_TYPE (x) = error_mark_node;
5643 else if (TREE_CHAIN (x) != NULL_TREE)
5645 error ("%Jflexible array member not at end of struct", x);
5646 TREE_TYPE (x) = error_mark_node;
5648 else if (!saw_named_field)
5650 error ("%Jflexible array member in otherwise empty struct", x);
5651 TREE_TYPE (x) = error_mark_node;
5655 if (pedantic && !in_system_header && TREE_CODE (t) == RECORD_TYPE
5656 && flexible_array_type_p (TREE_TYPE (x)))
5657 pedwarn (input_location, OPT_pedantic,
5658 "%Jinvalid use of structure with flexible array member", x);
5660 if (DECL_NAME (x))
5661 saw_named_field = 1;
5664 detect_field_duplicates (fieldlist);
5666 /* Now we have the nearly final fieldlist. Record it,
5667 then lay out the structure or union (including the fields). */
5669 TYPE_FIELDS (t) = fieldlist;
5671 layout_type (t);
5673 /* Give bit-fields their proper types. */
5675 tree *fieldlistp = &fieldlist;
5676 while (*fieldlistp)
5677 if (TREE_CODE (*fieldlistp) == FIELD_DECL && DECL_INITIAL (*fieldlistp)
5678 && TREE_TYPE (*fieldlistp) != error_mark_node)
5680 unsigned HOST_WIDE_INT width
5681 = tree_low_cst (DECL_INITIAL (*fieldlistp), 1);
5682 tree type = TREE_TYPE (*fieldlistp);
5683 if (width != TYPE_PRECISION (type))
5685 TREE_TYPE (*fieldlistp)
5686 = c_build_bitfield_integer_type (width, TYPE_UNSIGNED (type));
5687 DECL_MODE (*fieldlistp) = TYPE_MODE (TREE_TYPE (*fieldlistp));
5689 DECL_INITIAL (*fieldlistp) = 0;
5691 else
5692 fieldlistp = &TREE_CHAIN (*fieldlistp);
5695 /* Now we have the truly final field list.
5696 Store it in this type and in the variants. */
5698 TYPE_FIELDS (t) = fieldlist;
5700 /* If there are lots of fields, sort so we can look through them fast.
5701 We arbitrarily consider 16 or more elts to be "a lot". */
5704 int len = 0;
5706 for (x = fieldlist; x; x = TREE_CHAIN (x))
5708 if (len > 15 || DECL_NAME (x) == NULL)
5709 break;
5710 len += 1;
5713 if (len > 15)
5715 tree *field_array;
5716 struct lang_type *space;
5717 struct sorted_fields_type *space2;
5719 len += list_length (x);
5721 /* Use the same allocation policy here that make_node uses, to
5722 ensure that this lives as long as the rest of the struct decl.
5723 All decls in an inline function need to be saved. */
5725 space = GGC_CNEW (struct lang_type);
5726 space2 = GGC_NEWVAR (struct sorted_fields_type,
5727 sizeof (struct sorted_fields_type) + len * sizeof (tree));
5729 len = 0;
5730 space->s = space2;
5731 field_array = &space2->elts[0];
5732 for (x = fieldlist; x; x = TREE_CHAIN (x))
5734 field_array[len++] = x;
5736 /* If there is anonymous struct or union, break out of the loop. */
5737 if (DECL_NAME (x) == NULL)
5738 break;
5740 /* Found no anonymous struct/union. Add the TYPE_LANG_SPECIFIC. */
5741 if (x == NULL)
5743 TYPE_LANG_SPECIFIC (t) = space;
5744 TYPE_LANG_SPECIFIC (t)->s->len = len;
5745 field_array = TYPE_LANG_SPECIFIC (t)->s->elts;
5746 qsort (field_array, len, sizeof (tree), field_decl_cmp);
5751 for (x = TYPE_MAIN_VARIANT (t); x; x = TYPE_NEXT_VARIANT (x))
5753 TYPE_FIELDS (x) = TYPE_FIELDS (t);
5754 TYPE_LANG_SPECIFIC (x) = TYPE_LANG_SPECIFIC (t);
5755 C_TYPE_FIELDS_READONLY (x) = C_TYPE_FIELDS_READONLY (t);
5756 C_TYPE_FIELDS_VOLATILE (x) = C_TYPE_FIELDS_VOLATILE (t);
5757 C_TYPE_VARIABLE_SIZE (x) = C_TYPE_VARIABLE_SIZE (t);
5760 /* If this was supposed to be a transparent union, but we can't
5761 make it one, warn and turn off the flag. */
5762 if (TREE_CODE (t) == UNION_TYPE
5763 && TYPE_TRANSPARENT_UNION (t)
5764 && (!TYPE_FIELDS (t) || TYPE_MODE (t) != DECL_MODE (TYPE_FIELDS (t))))
5766 TYPE_TRANSPARENT_UNION (t) = 0;
5767 warning (0, "union cannot be made transparent");
5770 /* If this structure or union completes the type of any previous
5771 variable declaration, lay it out and output its rtl. */
5772 for (x = C_TYPE_INCOMPLETE_VARS (TYPE_MAIN_VARIANT (t));
5774 x = TREE_CHAIN (x))
5776 tree decl = TREE_VALUE (x);
5777 if (TREE_CODE (TREE_TYPE (decl)) == ARRAY_TYPE)
5778 layout_array_type (TREE_TYPE (decl));
5779 if (TREE_CODE (decl) != TYPE_DECL)
5781 layout_decl (decl, 0);
5782 if (c_dialect_objc ())
5783 objc_check_decl (decl);
5784 rest_of_decl_compilation (decl, toplevel, 0);
5785 if (!toplevel)
5786 expand_decl (decl);
5789 C_TYPE_INCOMPLETE_VARS (TYPE_MAIN_VARIANT (t)) = 0;
5791 /* Finish debugging output for this type. */
5792 rest_of_type_compilation (t, toplevel);
5794 /* If we're inside a function proper, i.e. not file-scope and not still
5795 parsing parameters, then arrange for the size of a variable sized type
5796 to be bound now. */
5797 if (cur_stmt_list && variably_modified_type_p (t, NULL_TREE))
5798 add_stmt (build_stmt (DECL_EXPR, build_decl (TYPE_DECL, NULL, t)));
5800 return t;
5803 /* Lay out the type T, and its element type, and so on. */
5805 static void
5806 layout_array_type (tree t)
5808 if (TREE_CODE (TREE_TYPE (t)) == ARRAY_TYPE)
5809 layout_array_type (TREE_TYPE (t));
5810 layout_type (t);
5813 /* Begin compiling the definition of an enumeration type.
5814 NAME is its name (or null if anonymous).
5815 Returns the type object, as yet incomplete.
5816 Also records info about it so that build_enumerator
5817 may be used to declare the individual values as they are read. */
5819 tree
5820 start_enum (struct c_enum_contents *the_enum, tree name)
5822 tree enumtype = 0;
5824 /* If this is the real definition for a previous forward reference,
5825 fill in the contents in the same object that used to be the
5826 forward reference. */
5828 if (name != 0)
5829 enumtype = lookup_tag (ENUMERAL_TYPE, name, 1);
5831 if (enumtype == 0 || TREE_CODE (enumtype) != ENUMERAL_TYPE)
5833 enumtype = make_node (ENUMERAL_TYPE);
5834 pushtag (name, enumtype);
5837 if (C_TYPE_BEING_DEFINED (enumtype))
5838 error ("nested redefinition of %<enum %E%>", name);
5840 C_TYPE_BEING_DEFINED (enumtype) = 1;
5842 if (TYPE_VALUES (enumtype) != 0)
5844 /* This enum is a named one that has been declared already. */
5845 error ("redeclaration of %<enum %E%>", name);
5847 /* Completely replace its old definition.
5848 The old enumerators remain defined, however. */
5849 TYPE_VALUES (enumtype) = 0;
5852 the_enum->enum_next_value = integer_zero_node;
5853 the_enum->enum_overflow = 0;
5855 if (flag_short_enums)
5856 TYPE_PACKED (enumtype) = 1;
5858 return enumtype;
5861 /* After processing and defining all the values of an enumeration type,
5862 install their decls in the enumeration type and finish it off.
5863 ENUMTYPE is the type object, VALUES a list of decl-value pairs,
5864 and ATTRIBUTES are the specified attributes.
5865 Returns ENUMTYPE. */
5867 tree
5868 finish_enum (tree enumtype, tree values, tree attributes)
5870 tree pair, tem;
5871 tree minnode = 0, maxnode = 0;
5872 int precision, unsign;
5873 bool toplevel = (file_scope == current_scope);
5874 struct lang_type *lt;
5876 decl_attributes (&enumtype, attributes, (int) ATTR_FLAG_TYPE_IN_PLACE);
5878 /* Calculate the maximum value of any enumerator in this type. */
5880 if (values == error_mark_node)
5881 minnode = maxnode = integer_zero_node;
5882 else
5884 minnode = maxnode = TREE_VALUE (values);
5885 for (pair = TREE_CHAIN (values); pair; pair = TREE_CHAIN (pair))
5887 tree value = TREE_VALUE (pair);
5888 if (tree_int_cst_lt (maxnode, value))
5889 maxnode = value;
5890 if (tree_int_cst_lt (value, minnode))
5891 minnode = value;
5895 /* Construct the final type of this enumeration. It is the same
5896 as one of the integral types - the narrowest one that fits, except
5897 that normally we only go as narrow as int - and signed iff any of
5898 the values are negative. */
5899 unsign = (tree_int_cst_sgn (minnode) >= 0);
5900 precision = MAX (tree_int_cst_min_precision (minnode, unsign),
5901 tree_int_cst_min_precision (maxnode, unsign));
5903 if (TYPE_PACKED (enumtype) || precision > TYPE_PRECISION (integer_type_node))
5905 tem = c_common_type_for_size (precision, unsign);
5906 if (tem == NULL)
5908 warning (0, "enumeration values exceed range of largest integer");
5909 tem = long_long_integer_type_node;
5912 else
5913 tem = unsign ? unsigned_type_node : integer_type_node;
5915 TYPE_MIN_VALUE (enumtype) = TYPE_MIN_VALUE (tem);
5916 TYPE_MAX_VALUE (enumtype) = TYPE_MAX_VALUE (tem);
5917 TYPE_UNSIGNED (enumtype) = TYPE_UNSIGNED (tem);
5918 TYPE_SIZE (enumtype) = 0;
5920 /* If the precision of the type was specific with an attribute and it
5921 was too small, give an error. Otherwise, use it. */
5922 if (TYPE_PRECISION (enumtype))
5924 if (precision > TYPE_PRECISION (enumtype))
5925 error ("specified mode too small for enumeral values");
5927 else
5928 TYPE_PRECISION (enumtype) = TYPE_PRECISION (tem);
5930 layout_type (enumtype);
5932 if (values != error_mark_node)
5934 /* Change the type of the enumerators to be the enum type. We
5935 need to do this irrespective of the size of the enum, for
5936 proper type checking. Replace the DECL_INITIALs of the
5937 enumerators, and the value slots of the list, with copies
5938 that have the enum type; they cannot be modified in place
5939 because they may be shared (e.g. integer_zero_node) Finally,
5940 change the purpose slots to point to the names of the decls. */
5941 for (pair = values; pair; pair = TREE_CHAIN (pair))
5943 tree enu = TREE_PURPOSE (pair);
5944 tree ini = DECL_INITIAL (enu);
5946 TREE_TYPE (enu) = enumtype;
5948 /* The ISO C Standard mandates enumerators to have type int,
5949 even though the underlying type of an enum type is
5950 unspecified. However, GCC allows enumerators of any
5951 integer type as an extensions. build_enumerator()
5952 converts any enumerators that fit in an int to type int,
5953 to avoid promotions to unsigned types when comparing
5954 integers with enumerators that fit in the int range.
5955 When -pedantic is given, build_enumerator() would have
5956 already warned about those that don't fit. Here we
5957 convert the rest to the enumerator type. */
5958 if (TREE_TYPE (ini) != integer_type_node)
5959 ini = convert (enumtype, ini);
5961 DECL_INITIAL (enu) = ini;
5962 TREE_PURPOSE (pair) = DECL_NAME (enu);
5963 TREE_VALUE (pair) = ini;
5966 TYPE_VALUES (enumtype) = values;
5969 /* Record the min/max values so that we can warn about bit-field
5970 enumerations that are too small for the values. */
5971 lt = GGC_CNEW (struct lang_type);
5972 lt->enum_min = minnode;
5973 lt->enum_max = maxnode;
5974 TYPE_LANG_SPECIFIC (enumtype) = lt;
5976 /* Fix up all variant types of this enum type. */
5977 for (tem = TYPE_MAIN_VARIANT (enumtype); tem; tem = TYPE_NEXT_VARIANT (tem))
5979 if (tem == enumtype)
5980 continue;
5981 TYPE_VALUES (tem) = TYPE_VALUES (enumtype);
5982 TYPE_MIN_VALUE (tem) = TYPE_MIN_VALUE (enumtype);
5983 TYPE_MAX_VALUE (tem) = TYPE_MAX_VALUE (enumtype);
5984 TYPE_SIZE (tem) = TYPE_SIZE (enumtype);
5985 TYPE_SIZE_UNIT (tem) = TYPE_SIZE_UNIT (enumtype);
5986 SET_TYPE_MODE (tem, TYPE_MODE (enumtype));
5987 TYPE_PRECISION (tem) = TYPE_PRECISION (enumtype);
5988 TYPE_ALIGN (tem) = TYPE_ALIGN (enumtype);
5989 TYPE_USER_ALIGN (tem) = TYPE_USER_ALIGN (enumtype);
5990 TYPE_UNSIGNED (tem) = TYPE_UNSIGNED (enumtype);
5991 TYPE_LANG_SPECIFIC (tem) = TYPE_LANG_SPECIFIC (enumtype);
5994 /* Finish debugging output for this type. */
5995 rest_of_type_compilation (enumtype, toplevel);
5997 return enumtype;
6000 /* Build and install a CONST_DECL for one value of the
6001 current enumeration type (one that was begun with start_enum).
6002 Return a tree-list containing the CONST_DECL and its value.
6003 Assignment of sequential values by default is handled here. */
6005 tree
6006 build_enumerator (struct c_enum_contents *the_enum, tree name, tree value,
6007 location_t value_loc)
6009 tree decl, type;
6011 /* Validate and default VALUE. */
6013 if (value != 0)
6015 /* Don't issue more errors for error_mark_node (i.e. an
6016 undeclared identifier) - just ignore the value expression. */
6017 if (value == error_mark_node)
6018 value = 0;
6019 else if (!INTEGRAL_TYPE_P (TREE_TYPE (value))
6020 || TREE_CODE (value) != INTEGER_CST)
6022 error ("enumerator value for %qE is not an integer constant", name);
6023 value = 0;
6025 else
6027 value = default_conversion (value);
6028 constant_expression_warning (value);
6032 /* Default based on previous value. */
6033 /* It should no longer be possible to have NON_LVALUE_EXPR
6034 in the default. */
6035 if (value == 0)
6037 value = the_enum->enum_next_value;
6038 if (the_enum->enum_overflow)
6039 error ("overflow in enumeration values");
6041 /* Even though the underlying type of an enum is unspecified, the
6042 type of enumeration constants is explicitly defined as int
6043 (6.4.4.3/2 in the C99 Standard). GCC allows any integer type as
6044 an extension. */
6045 else if (!int_fits_type_p (value, integer_type_node))
6046 pedwarn (value_loc, OPT_pedantic,
6047 "ISO C restricts enumerator values to range of %<int%>");
6049 /* The ISO C Standard mandates enumerators to have type int, even
6050 though the underlying type of an enum type is unspecified.
6051 However, GCC allows enumerators of any integer type as an
6052 extensions. Here we convert any enumerators that fit in an int
6053 to type int, to avoid promotions to unsigned types when comparing
6054 integers with enumerators that fit in the int range. When
6055 -pedantic is given, we would have already warned about those that
6056 don't fit. We have to do this here rather than in finish_enum
6057 because this value may be used to define more enumerators. */
6058 if (int_fits_type_p (value, integer_type_node))
6059 value = convert (integer_type_node, value);
6061 /* Set basis for default for next value. */
6062 the_enum->enum_next_value
6063 = build_binary_op
6064 (EXPR_HAS_LOCATION (value) ? EXPR_LOCATION (value) : input_location,
6065 PLUS_EXPR, value, integer_one_node, 0);
6066 the_enum->enum_overflow = tree_int_cst_lt (the_enum->enum_next_value, value);
6068 /* Now create a declaration for the enum value name. */
6070 type = TREE_TYPE (value);
6071 type = c_common_type_for_size (MAX (TYPE_PRECISION (type),
6072 TYPE_PRECISION (integer_type_node)),
6073 (TYPE_PRECISION (type)
6074 >= TYPE_PRECISION (integer_type_node)
6075 && TYPE_UNSIGNED (type)));
6077 decl = build_decl (CONST_DECL, name, type);
6078 DECL_INITIAL (decl) = convert (type, value);
6079 pushdecl (decl);
6081 return tree_cons (decl, value, NULL_TREE);
6085 /* Create the FUNCTION_DECL for a function definition.
6086 DECLSPECS, DECLARATOR and ATTRIBUTES are the parts of
6087 the declaration; they describe the function's name and the type it returns,
6088 but twisted together in a fashion that parallels the syntax of C.
6090 This function creates a binding context for the function body
6091 as well as setting up the FUNCTION_DECL in current_function_decl.
6093 Returns 1 on success. If the DECLARATOR is not suitable for a function
6094 (it defines a datum instead), we return 0, which tells
6095 yyparse to report a parse error. */
6098 start_function (struct c_declspecs *declspecs, struct c_declarator *declarator,
6099 tree attributes)
6101 tree decl1, old_decl;
6102 tree restype, resdecl;
6103 struct c_label_context_se *nstack_se;
6104 struct c_label_context_vm *nstack_vm;
6106 current_function_returns_value = 0; /* Assume, until we see it does. */
6107 current_function_returns_null = 0;
6108 current_function_returns_abnormally = 0;
6109 warn_about_return_type = 0;
6110 c_switch_stack = NULL;
6112 nstack_se = XOBNEW (&parser_obstack, struct c_label_context_se);
6113 nstack_se->labels_def = NULL;
6114 nstack_se->labels_used = NULL;
6115 nstack_se->next = label_context_stack_se;
6116 label_context_stack_se = nstack_se;
6118 nstack_vm = XOBNEW (&parser_obstack, struct c_label_context_vm);
6119 nstack_vm->labels_def = NULL;
6120 nstack_vm->labels_used = NULL;
6121 nstack_vm->scope = 0;
6122 nstack_vm->next = label_context_stack_vm;
6123 label_context_stack_vm = nstack_vm;
6125 /* Indicate no valid break/continue context by setting these variables
6126 to some non-null, non-label value. We'll notice and emit the proper
6127 error message in c_finish_bc_stmt. */
6128 c_break_label = c_cont_label = size_zero_node;
6130 decl1 = grokdeclarator (declarator, declspecs, FUNCDEF, true, NULL,
6131 &attributes, DEPRECATED_NORMAL);
6133 /* If the declarator is not suitable for a function definition,
6134 cause a syntax error. */
6135 if (decl1 == 0)
6137 label_context_stack_se = label_context_stack_se->next;
6138 label_context_stack_vm = label_context_stack_vm->next;
6139 return 0;
6142 decl_attributes (&decl1, attributes, 0);
6144 if (DECL_DECLARED_INLINE_P (decl1)
6145 && DECL_UNINLINABLE (decl1)
6146 && lookup_attribute ("noinline", DECL_ATTRIBUTES (decl1)))
6147 warning (OPT_Wattributes, "inline function %q+D given attribute noinline",
6148 decl1);
6150 /* Handle gnu_inline attribute. */
6151 if (declspecs->inline_p
6152 && !flag_gnu89_inline
6153 && TREE_CODE (decl1) == FUNCTION_DECL
6154 && (lookup_attribute ("gnu_inline", DECL_ATTRIBUTES (decl1))
6155 || current_function_decl))
6157 if (declspecs->storage_class != csc_static)
6158 DECL_EXTERNAL (decl1) = !DECL_EXTERNAL (decl1);
6161 announce_function (decl1);
6163 if (!COMPLETE_OR_VOID_TYPE_P (TREE_TYPE (TREE_TYPE (decl1))))
6165 error ("return type is an incomplete type");
6166 /* Make it return void instead. */
6167 TREE_TYPE (decl1)
6168 = build_function_type (void_type_node,
6169 TYPE_ARG_TYPES (TREE_TYPE (decl1)));
6172 if (warn_about_return_type)
6173 pedwarn_c99 (input_location, flag_isoc99 ? 0
6174 : (warn_return_type ? OPT_Wreturn_type : OPT_Wimplicit_int),
6175 "return type defaults to %<int%>");
6177 /* Make the init_value nonzero so pushdecl knows this is not tentative.
6178 error_mark_node is replaced below (in pop_scope) with the BLOCK. */
6179 DECL_INITIAL (decl1) = error_mark_node;
6181 /* If this definition isn't a prototype and we had a prototype declaration
6182 before, copy the arg type info from that prototype. */
6183 old_decl = lookup_name_in_scope (DECL_NAME (decl1), current_scope);
6184 if (old_decl && TREE_CODE (old_decl) != FUNCTION_DECL)
6185 old_decl = 0;
6186 current_function_prototype_locus = UNKNOWN_LOCATION;
6187 current_function_prototype_built_in = false;
6188 current_function_prototype_arg_types = NULL_TREE;
6189 if (TYPE_ARG_TYPES (TREE_TYPE (decl1)) == 0)
6191 if (old_decl != 0 && TREE_CODE (TREE_TYPE (old_decl)) == FUNCTION_TYPE
6192 && comptypes (TREE_TYPE (TREE_TYPE (decl1)),
6193 TREE_TYPE (TREE_TYPE (old_decl))))
6195 TREE_TYPE (decl1) = composite_type (TREE_TYPE (old_decl),
6196 TREE_TYPE (decl1));
6197 current_function_prototype_locus = DECL_SOURCE_LOCATION (old_decl);
6198 current_function_prototype_built_in
6199 = C_DECL_BUILTIN_PROTOTYPE (old_decl);
6200 current_function_prototype_arg_types
6201 = TYPE_ARG_TYPES (TREE_TYPE (decl1));
6203 if (TREE_PUBLIC (decl1))
6205 /* If there is an external prototype declaration of this
6206 function, record its location but do not copy information
6207 to this decl. This may be an invisible declaration
6208 (built-in or in a scope which has finished) or simply
6209 have more refined argument types than any declaration
6210 found above. */
6211 struct c_binding *b;
6212 for (b = I_SYMBOL_BINDING (DECL_NAME (decl1)); b; b = b->shadowed)
6213 if (B_IN_SCOPE (b, external_scope))
6214 break;
6215 if (b)
6217 tree ext_decl, ext_type;
6218 ext_decl = b->decl;
6219 ext_type = b->type ? b->type : TREE_TYPE (ext_decl);
6220 if (TREE_CODE (ext_type) == FUNCTION_TYPE
6221 && comptypes (TREE_TYPE (TREE_TYPE (decl1)),
6222 TREE_TYPE (ext_type)))
6224 current_function_prototype_locus
6225 = DECL_SOURCE_LOCATION (ext_decl);
6226 current_function_prototype_built_in
6227 = C_DECL_BUILTIN_PROTOTYPE (ext_decl);
6228 current_function_prototype_arg_types
6229 = TYPE_ARG_TYPES (ext_type);
6235 /* Optionally warn of old-fashioned def with no previous prototype. */
6236 if (warn_strict_prototypes
6237 && old_decl != error_mark_node
6238 && TYPE_ARG_TYPES (TREE_TYPE (decl1)) == 0
6239 && C_DECL_ISNT_PROTOTYPE (old_decl))
6240 warning (OPT_Wstrict_prototypes,
6241 "function declaration isn%'t a prototype");
6242 /* Optionally warn of any global def with no previous prototype. */
6243 else if (warn_missing_prototypes
6244 && old_decl != error_mark_node
6245 && TREE_PUBLIC (decl1)
6246 && !MAIN_NAME_P (DECL_NAME (decl1))
6247 && C_DECL_ISNT_PROTOTYPE (old_decl))
6248 warning (OPT_Wmissing_prototypes, "no previous prototype for %q+D", decl1);
6249 /* Optionally warn of any def with no previous prototype
6250 if the function has already been used. */
6251 else if (warn_missing_prototypes
6252 && old_decl != 0
6253 && old_decl != error_mark_node
6254 && TREE_USED (old_decl)
6255 && TYPE_ARG_TYPES (TREE_TYPE (old_decl)) == 0)
6256 warning (OPT_Wmissing_prototypes,
6257 "%q+D was used with no prototype before its definition", decl1);
6258 /* Optionally warn of any global def with no previous declaration. */
6259 else if (warn_missing_declarations
6260 && TREE_PUBLIC (decl1)
6261 && old_decl == 0
6262 && !MAIN_NAME_P (DECL_NAME (decl1)))
6263 warning (OPT_Wmissing_declarations, "no previous declaration for %q+D",
6264 decl1);
6265 /* Optionally warn of any def with no previous declaration
6266 if the function has already been used. */
6267 else if (warn_missing_declarations
6268 && old_decl != 0
6269 && old_decl != error_mark_node
6270 && TREE_USED (old_decl)
6271 && C_DECL_IMPLICIT (old_decl))
6272 warning (OPT_Wmissing_declarations,
6273 "%q+D was used with no declaration before its definition", decl1);
6275 /* This function exists in static storage.
6276 (This does not mean `static' in the C sense!) */
6277 TREE_STATIC (decl1) = 1;
6279 /* A nested function is not global. */
6280 if (current_function_decl != 0)
6281 TREE_PUBLIC (decl1) = 0;
6283 /* This is the earliest point at which we might know the assembler
6284 name of the function. Thus, if it's set before this, die horribly. */
6285 gcc_assert (!DECL_ASSEMBLER_NAME_SET_P (decl1));
6287 /* If #pragma weak was used, mark the decl weak now. */
6288 if (current_scope == file_scope)
6289 maybe_apply_pragma_weak (decl1);
6291 /* Warn for unlikely, improbable, or stupid declarations of `main'. */
6292 if (warn_main && MAIN_NAME_P (DECL_NAME (decl1)))
6294 if (TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (decl1)))
6295 != integer_type_node)
6296 pedwarn (input_location, OPT_Wmain, "return type of %q+D is not %<int%>", decl1);
6298 check_main_parameter_types (decl1);
6300 if (!TREE_PUBLIC (decl1))
6301 pedwarn (input_location, OPT_Wmain, "%q+D is normally a non-static function", decl1);
6304 /* Record the decl so that the function name is defined.
6305 If we already have a decl for this name, and it is a FUNCTION_DECL,
6306 use the old decl. */
6308 current_function_decl = pushdecl (decl1);
6310 push_scope ();
6311 declare_parm_level ();
6313 restype = TREE_TYPE (TREE_TYPE (current_function_decl));
6314 resdecl = build_decl (RESULT_DECL, NULL_TREE, restype);
6315 DECL_ARTIFICIAL (resdecl) = 1;
6316 DECL_IGNORED_P (resdecl) = 1;
6317 DECL_RESULT (current_function_decl) = resdecl;
6319 start_fname_decls ();
6321 return 1;
6324 /* Subroutine of store_parm_decls which handles new-style function
6325 definitions (prototype format). The parms already have decls, so we
6326 need only record them as in effect and complain if any redundant
6327 old-style parm decls were written. */
6328 static void
6329 store_parm_decls_newstyle (tree fndecl, const struct c_arg_info *arg_info)
6331 tree decl;
6333 if (current_scope->bindings)
6335 error ("%Jold-style parameter declarations in prototyped "
6336 "function definition", fndecl);
6338 /* Get rid of the old-style declarations. */
6339 pop_scope ();
6340 push_scope ();
6342 /* Don't issue this warning for nested functions, and don't issue this
6343 warning if we got here because ARG_INFO_TYPES was error_mark_node
6344 (this happens when a function definition has just an ellipsis in
6345 its parameter list). */
6346 else if (!in_system_header && !current_function_scope
6347 && arg_info->types != error_mark_node)
6348 warning (OPT_Wtraditional,
6349 "%Jtraditional C rejects ISO C style function definitions",
6350 fndecl);
6352 /* Now make all the parameter declarations visible in the function body.
6353 We can bypass most of the grunt work of pushdecl. */
6354 for (decl = arg_info->parms; decl; decl = TREE_CHAIN (decl))
6356 DECL_CONTEXT (decl) = current_function_decl;
6357 if (DECL_NAME (decl))
6359 bind (DECL_NAME (decl), decl, current_scope,
6360 /*invisible=*/false, /*nested=*/false);
6361 if (!TREE_USED (decl))
6362 warn_if_shadowing (decl);
6364 else
6365 error ("%Jparameter name omitted", decl);
6368 /* Record the parameter list in the function declaration. */
6369 DECL_ARGUMENTS (fndecl) = arg_info->parms;
6371 /* Now make all the ancillary declarations visible, likewise. */
6372 for (decl = arg_info->others; decl; decl = TREE_CHAIN (decl))
6374 DECL_CONTEXT (decl) = current_function_decl;
6375 if (DECL_NAME (decl))
6376 bind (DECL_NAME (decl), decl, current_scope,
6377 /*invisible=*/false, /*nested=*/false);
6380 /* And all the tag declarations. */
6381 for (decl = arg_info->tags; decl; decl = TREE_CHAIN (decl))
6382 if (TREE_PURPOSE (decl))
6383 bind (TREE_PURPOSE (decl), TREE_VALUE (decl), current_scope,
6384 /*invisible=*/false, /*nested=*/false);
6387 /* Subroutine of store_parm_decls which handles old-style function
6388 definitions (separate parameter list and declarations). */
6390 static void
6391 store_parm_decls_oldstyle (tree fndecl, const struct c_arg_info *arg_info)
6393 struct c_binding *b;
6394 tree parm, decl, last;
6395 tree parmids = arg_info->parms;
6396 struct pointer_set_t *seen_args = pointer_set_create ();
6398 if (!in_system_header)
6399 warning (OPT_Wold_style_definition, "%Jold-style function definition",
6400 fndecl);
6402 /* Match each formal parameter name with its declaration. Save each
6403 decl in the appropriate TREE_PURPOSE slot of the parmids chain. */
6404 for (parm = parmids; parm; parm = TREE_CHAIN (parm))
6406 if (TREE_VALUE (parm) == 0)
6408 error ("%Jparameter name missing from parameter list", fndecl);
6409 TREE_PURPOSE (parm) = 0;
6410 continue;
6413 b = I_SYMBOL_BINDING (TREE_VALUE (parm));
6414 if (b && B_IN_CURRENT_SCOPE (b))
6416 decl = b->decl;
6417 /* If we got something other than a PARM_DECL it is an error. */
6418 if (TREE_CODE (decl) != PARM_DECL)
6419 error ("%q+D declared as a non-parameter", decl);
6420 /* If the declaration is already marked, we have a duplicate
6421 name. Complain and ignore the duplicate. */
6422 else if (pointer_set_contains (seen_args, decl))
6424 error ("multiple parameters named %q+D", decl);
6425 TREE_PURPOSE (parm) = 0;
6426 continue;
6428 /* If the declaration says "void", complain and turn it into
6429 an int. */
6430 else if (VOID_TYPE_P (TREE_TYPE (decl)))
6432 error ("parameter %q+D declared with void type", decl);
6433 TREE_TYPE (decl) = integer_type_node;
6434 DECL_ARG_TYPE (decl) = integer_type_node;
6435 layout_decl (decl, 0);
6437 warn_if_shadowing (decl);
6439 /* If no declaration found, default to int. */
6440 else
6442 decl = build_decl (PARM_DECL, TREE_VALUE (parm), integer_type_node);
6443 DECL_ARG_TYPE (decl) = TREE_TYPE (decl);
6444 DECL_SOURCE_LOCATION (decl) = DECL_SOURCE_LOCATION (fndecl);
6445 pushdecl (decl);
6446 warn_if_shadowing (decl);
6448 if (flag_isoc99)
6449 pedwarn (input_location, 0, "type of %q+D defaults to %<int%>", decl);
6450 else
6451 warning (OPT_Wmissing_parameter_type, "type of %q+D defaults to %<int%>", decl);
6454 TREE_PURPOSE (parm) = decl;
6455 pointer_set_insert (seen_args, decl);
6458 /* Now examine the parms chain for incomplete declarations
6459 and declarations with no corresponding names. */
6461 for (b = current_scope->bindings; b; b = b->prev)
6463 parm = b->decl;
6464 if (TREE_CODE (parm) != PARM_DECL)
6465 continue;
6467 if (TREE_TYPE (parm) != error_mark_node
6468 && !COMPLETE_TYPE_P (TREE_TYPE (parm)))
6470 error ("parameter %q+D has incomplete type", parm);
6471 TREE_TYPE (parm) = error_mark_node;
6474 if (!pointer_set_contains (seen_args, parm))
6476 error ("declaration for parameter %q+D but no such parameter", parm);
6478 /* Pretend the parameter was not missing.
6479 This gets us to a standard state and minimizes
6480 further error messages. */
6481 parmids = chainon (parmids, tree_cons (parm, 0, 0));
6485 /* Chain the declarations together in the order of the list of
6486 names. Store that chain in the function decl, replacing the
6487 list of names. Update the current scope to match. */
6488 DECL_ARGUMENTS (fndecl) = 0;
6490 for (parm = parmids; parm; parm = TREE_CHAIN (parm))
6491 if (TREE_PURPOSE (parm))
6492 break;
6493 if (parm && TREE_PURPOSE (parm))
6495 last = TREE_PURPOSE (parm);
6496 DECL_ARGUMENTS (fndecl) = last;
6498 for (parm = TREE_CHAIN (parm); parm; parm = TREE_CHAIN (parm))
6499 if (TREE_PURPOSE (parm))
6501 TREE_CHAIN (last) = TREE_PURPOSE (parm);
6502 last = TREE_PURPOSE (parm);
6504 TREE_CHAIN (last) = 0;
6507 pointer_set_destroy (seen_args);
6509 /* If there was a previous prototype,
6510 set the DECL_ARG_TYPE of each argument according to
6511 the type previously specified, and report any mismatches. */
6513 if (current_function_prototype_arg_types)
6515 tree type;
6516 for (parm = DECL_ARGUMENTS (fndecl),
6517 type = current_function_prototype_arg_types;
6518 parm || (type && TREE_VALUE (type) != error_mark_node
6519 && (TYPE_MAIN_VARIANT (TREE_VALUE (type)) != void_type_node));
6520 parm = TREE_CHAIN (parm), type = TREE_CHAIN (type))
6522 if (parm == 0 || type == 0
6523 || TYPE_MAIN_VARIANT (TREE_VALUE (type)) == void_type_node)
6525 if (current_function_prototype_built_in)
6526 warning (0, "number of arguments doesn%'t match "
6527 "built-in prototype");
6528 else
6530 error ("number of arguments doesn%'t match prototype");
6531 error ("%Hprototype declaration",
6532 &current_function_prototype_locus);
6534 break;
6536 /* Type for passing arg must be consistent with that
6537 declared for the arg. ISO C says we take the unqualified
6538 type for parameters declared with qualified type. */
6539 if (TREE_TYPE (parm) != error_mark_node
6540 && TREE_TYPE (type) != error_mark_node
6541 && !comptypes (TYPE_MAIN_VARIANT (DECL_ARG_TYPE (parm)),
6542 TYPE_MAIN_VARIANT (TREE_VALUE (type))))
6544 if (TYPE_MAIN_VARIANT (TREE_TYPE (parm))
6545 == TYPE_MAIN_VARIANT (TREE_VALUE (type)))
6547 /* Adjust argument to match prototype. E.g. a previous
6548 `int foo(float);' prototype causes
6549 `int foo(x) float x; {...}' to be treated like
6550 `int foo(float x) {...}'. This is particularly
6551 useful for argument types like uid_t. */
6552 DECL_ARG_TYPE (parm) = TREE_TYPE (parm);
6554 if (targetm.calls.promote_prototypes (TREE_TYPE (current_function_decl))
6555 && INTEGRAL_TYPE_P (TREE_TYPE (parm))
6556 && TYPE_PRECISION (TREE_TYPE (parm))
6557 < TYPE_PRECISION (integer_type_node))
6558 DECL_ARG_TYPE (parm) = integer_type_node;
6560 /* ??? Is it possible to get here with a
6561 built-in prototype or will it always have
6562 been diagnosed as conflicting with an
6563 old-style definition and discarded? */
6564 if (current_function_prototype_built_in)
6565 warning (OPT_pedantic, "promoted argument %qD "
6566 "doesn%'t match built-in prototype", parm);
6567 else
6569 pedwarn (input_location, OPT_pedantic, "promoted argument %qD "
6570 "doesn%'t match prototype", parm);
6571 pedwarn (current_function_prototype_locus, OPT_pedantic,
6572 "prototype declaration");
6575 else
6577 if (current_function_prototype_built_in)
6578 warning (0, "argument %qD doesn%'t match "
6579 "built-in prototype", parm);
6580 else
6582 error ("argument %qD doesn%'t match prototype", parm);
6583 error ("%Hprototype declaration",
6584 &current_function_prototype_locus);
6589 TYPE_ACTUAL_ARG_TYPES (TREE_TYPE (fndecl)) = 0;
6592 /* Otherwise, create a prototype that would match. */
6594 else
6596 tree actual = 0, last = 0, type;
6598 for (parm = DECL_ARGUMENTS (fndecl); parm; parm = TREE_CHAIN (parm))
6600 type = tree_cons (NULL_TREE, DECL_ARG_TYPE (parm), NULL_TREE);
6601 if (last)
6602 TREE_CHAIN (last) = type;
6603 else
6604 actual = type;
6605 last = type;
6607 type = tree_cons (NULL_TREE, void_type_node, NULL_TREE);
6608 if (last)
6609 TREE_CHAIN (last) = type;
6610 else
6611 actual = type;
6613 /* We are going to assign a new value for the TYPE_ACTUAL_ARG_TYPES
6614 of the type of this function, but we need to avoid having this
6615 affect the types of other similarly-typed functions, so we must
6616 first force the generation of an identical (but separate) type
6617 node for the relevant function type. The new node we create
6618 will be a variant of the main variant of the original function
6619 type. */
6621 TREE_TYPE (fndecl) = build_variant_type_copy (TREE_TYPE (fndecl));
6623 TYPE_ACTUAL_ARG_TYPES (TREE_TYPE (fndecl)) = actual;
6627 /* Store parameter declarations passed in ARG_INFO into the current
6628 function declaration. */
6630 void
6631 store_parm_decls_from (struct c_arg_info *arg_info)
6633 current_function_arg_info = arg_info;
6634 store_parm_decls ();
6637 /* Store the parameter declarations into the current function declaration.
6638 This is called after parsing the parameter declarations, before
6639 digesting the body of the function.
6641 For an old-style definition, construct a prototype out of the old-style
6642 parameter declarations and inject it into the function's type. */
6644 void
6645 store_parm_decls (void)
6647 tree fndecl = current_function_decl;
6648 bool proto;
6650 /* The argument information block for FNDECL. */
6651 struct c_arg_info *arg_info = current_function_arg_info;
6652 current_function_arg_info = 0;
6654 /* True if this definition is written with a prototype. Note:
6655 despite C99 6.7.5.3p14, we can *not* treat an empty argument
6656 list in a function definition as equivalent to (void) -- an
6657 empty argument list specifies the function has no parameters,
6658 but only (void) sets up a prototype for future calls. */
6659 proto = arg_info->types != 0;
6661 if (proto)
6662 store_parm_decls_newstyle (fndecl, arg_info);
6663 else
6664 store_parm_decls_oldstyle (fndecl, arg_info);
6666 /* The next call to push_scope will be a function body. */
6668 next_is_function_body = true;
6670 /* Write a record describing this function definition to the prototypes
6671 file (if requested). */
6673 gen_aux_info_record (fndecl, 1, 0, proto);
6675 /* Initialize the RTL code for the function. */
6676 allocate_struct_function (fndecl, false);
6678 /* Begin the statement tree for this function. */
6679 DECL_SAVED_TREE (fndecl) = push_stmt_list ();
6681 /* ??? Insert the contents of the pending sizes list into the function
6682 to be evaluated. The only reason left to have this is
6683 void foo(int n, int array[n++])
6684 because we throw away the array type in favor of a pointer type, and
6685 thus won't naturally see the SAVE_EXPR containing the increment. All
6686 other pending sizes would be handled by gimplify_parameters. */
6688 tree t;
6689 for (t = nreverse (get_pending_sizes ()); t ; t = TREE_CHAIN (t))
6690 add_stmt (TREE_VALUE (t));
6693 /* Even though we're inside a function body, we still don't want to
6694 call expand_expr to calculate the size of a variable-sized array.
6695 We haven't necessarily assigned RTL to all variables yet, so it's
6696 not safe to try to expand expressions involving them. */
6697 cfun->dont_save_pending_sizes_p = 1;
6700 /* Emit diagnostics that require gimple input for detection. Operate on
6701 FNDECL and all its nested functions. */
6703 static void
6704 c_gimple_diagnostics_recursively (tree fndecl)
6706 struct cgraph_node *cgn;
6707 gimple_seq body = gimple_body (fndecl);
6709 /* Handle attribute((warn_unused_result)). Relies on gimple input. */
6710 c_warn_unused_result (body);
6712 /* Notice when OpenMP structured block constraints are violated. */
6713 if (flag_openmp)
6714 diagnose_omp_structured_block_errors (fndecl);
6716 /* Finalize all nested functions now. */
6717 cgn = cgraph_node (fndecl);
6718 for (cgn = cgn->nested; cgn ; cgn = cgn->next_nested)
6719 c_gimple_diagnostics_recursively (cgn->decl);
6722 /* Finish up a function declaration and compile that function
6723 all the way to assembler language output. The free the storage
6724 for the function definition.
6726 This is called after parsing the body of the function definition. */
6728 void
6729 finish_function (void)
6731 tree fndecl = current_function_decl;
6733 label_context_stack_se = label_context_stack_se->next;
6734 label_context_stack_vm = label_context_stack_vm->next;
6736 if (TREE_CODE (fndecl) == FUNCTION_DECL
6737 && targetm.calls.promote_prototypes (TREE_TYPE (fndecl)))
6739 tree args = DECL_ARGUMENTS (fndecl);
6740 for (; args; args = TREE_CHAIN (args))
6742 tree type = TREE_TYPE (args);
6743 if (INTEGRAL_TYPE_P (type)
6744 && TYPE_PRECISION (type) < TYPE_PRECISION (integer_type_node))
6745 DECL_ARG_TYPE (args) = integer_type_node;
6749 if (DECL_INITIAL (fndecl) && DECL_INITIAL (fndecl) != error_mark_node)
6750 BLOCK_SUPERCONTEXT (DECL_INITIAL (fndecl)) = fndecl;
6752 /* Must mark the RESULT_DECL as being in this function. */
6754 if (DECL_RESULT (fndecl) && DECL_RESULT (fndecl) != error_mark_node)
6755 DECL_CONTEXT (DECL_RESULT (fndecl)) = fndecl;
6757 if (MAIN_NAME_P (DECL_NAME (fndecl)) && flag_hosted
6758 && TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (fndecl)))
6759 == integer_type_node && flag_isoc99)
6761 tree stmt = c_finish_return (integer_zero_node);
6762 /* Hack. We don't want the middle-end to warn that this return
6763 is unreachable, so we mark its location as special. Using
6764 UNKNOWN_LOCATION has the problem that it gets clobbered in
6765 annotate_one_with_locus. A cleaner solution might be to
6766 ensure ! should_carry_locus_p (stmt), but that needs a flag.
6768 SET_EXPR_LOCATION (stmt, BUILTINS_LOCATION);
6771 /* Tie off the statement tree for this function. */
6772 DECL_SAVED_TREE (fndecl) = pop_stmt_list (DECL_SAVED_TREE (fndecl));
6774 finish_fname_decls ();
6776 /* Complain if there's just no return statement. */
6777 if (warn_return_type
6778 && TREE_CODE (TREE_TYPE (TREE_TYPE (fndecl))) != VOID_TYPE
6779 && !current_function_returns_value && !current_function_returns_null
6780 /* Don't complain if we are no-return. */
6781 && !current_function_returns_abnormally
6782 /* Don't warn for main(). */
6783 && !MAIN_NAME_P (DECL_NAME (fndecl))
6784 /* Or if they didn't actually specify a return type. */
6785 && !C_FUNCTION_IMPLICIT_INT (fndecl)
6786 /* Normally, with -Wreturn-type, flow will complain, but we might
6787 optimize out static functions. */
6788 && !TREE_PUBLIC (fndecl))
6790 warning (OPT_Wreturn_type,
6791 "no return statement in function returning non-void");
6792 TREE_NO_WARNING (fndecl) = 1;
6795 /* Store the end of the function, so that we get good line number
6796 info for the epilogue. */
6797 cfun->function_end_locus = input_location;
6799 /* Finalize the ELF visibility for the function. */
6800 c_determine_visibility (fndecl);
6802 /* For GNU C extern inline functions disregard inline limits. */
6803 if (DECL_EXTERNAL (fndecl)
6804 && DECL_DECLARED_INLINE_P (fndecl))
6805 DECL_DISREGARD_INLINE_LIMITS (fndecl) = 1;
6807 /* Genericize before inlining. Delay genericizing nested functions
6808 until their parent function is genericized. Since finalizing
6809 requires GENERIC, delay that as well. */
6811 if (DECL_INITIAL (fndecl) && DECL_INITIAL (fndecl) != error_mark_node
6812 && !undef_nested_function)
6814 if (!decl_function_context (fndecl))
6816 c_genericize (fndecl);
6817 c_gimple_diagnostics_recursively (fndecl);
6819 /* ??? Objc emits functions after finalizing the compilation unit.
6820 This should be cleaned up later and this conditional removed. */
6821 if (cgraph_global_info_ready)
6823 cgraph_add_new_function (fndecl, false);
6824 return;
6827 cgraph_finalize_function (fndecl, false);
6829 else
6831 /* Register this function with cgraph just far enough to get it
6832 added to our parent's nested function list. Handy, since the
6833 C front end doesn't have such a list. */
6834 (void) cgraph_node (fndecl);
6838 if (!decl_function_context (fndecl))
6839 undef_nested_function = false;
6841 /* We're leaving the context of this function, so zap cfun.
6842 It's still in DECL_STRUCT_FUNCTION, and we'll restore it in
6843 tree_rest_of_compilation. */
6844 set_cfun (NULL);
6845 current_function_decl = NULL;
6848 /* Check the declarations given in a for-loop for satisfying the C99
6849 constraints. If exactly one such decl is found, return it. */
6851 tree
6852 check_for_loop_decls (void)
6854 struct c_binding *b;
6855 tree one_decl = NULL_TREE;
6856 int n_decls = 0;
6858 if (!flag_isoc99)
6860 static bool hint = true;
6861 /* If we get here, declarations have been used in a for loop without
6862 the C99 for loop scope. This doesn't make much sense, so don't
6863 allow it. */
6864 error ("%<for%> loop initial declarations are only allowed in C99 mode");
6865 if (hint)
6867 inform (input_location,
6868 "use option -std=c99 or -std=gnu99 to compile your code");
6869 hint = false;
6871 return NULL_TREE;
6873 /* C99 subclause 6.8.5 paragraph 3:
6875 [#3] The declaration part of a for statement shall only
6876 declare identifiers for objects having storage class auto or
6877 register.
6879 It isn't clear whether, in this sentence, "identifiers" binds to
6880 "shall only declare" or to "objects" - that is, whether all identifiers
6881 declared must be identifiers for objects, or whether the restriction
6882 only applies to those that are. (A question on this in comp.std.c
6883 in November 2000 received no answer.) We implement the strictest
6884 interpretation, to avoid creating an extension which later causes
6885 problems. */
6887 for (b = current_scope->bindings; b; b = b->prev)
6889 tree id = b->id;
6890 tree decl = b->decl;
6892 if (!id)
6893 continue;
6895 switch (TREE_CODE (decl))
6897 case VAR_DECL:
6898 if (TREE_STATIC (decl))
6899 error ("declaration of static variable %q+D in %<for%> loop "
6900 "initial declaration", decl);
6901 else if (DECL_EXTERNAL (decl))
6902 error ("declaration of %<extern%> variable %q+D in %<for%> loop "
6903 "initial declaration", decl);
6904 break;
6906 case RECORD_TYPE:
6907 error ("%<struct %E%> declared in %<for%> loop initial declaration",
6908 id);
6909 break;
6910 case UNION_TYPE:
6911 error ("%<union %E%> declared in %<for%> loop initial declaration",
6912 id);
6913 break;
6914 case ENUMERAL_TYPE:
6915 error ("%<enum %E%> declared in %<for%> loop initial declaration",
6916 id);
6917 break;
6918 default:
6919 error ("declaration of non-variable %q+D in %<for%> loop "
6920 "initial declaration", decl);
6923 n_decls++;
6924 one_decl = decl;
6927 return n_decls == 1 ? one_decl : NULL_TREE;
6930 /* Save and reinitialize the variables
6931 used during compilation of a C function. */
6933 void
6934 c_push_function_context (void)
6936 struct language_function *p;
6937 p = GGC_NEW (struct language_function);
6938 cfun->language = p;
6940 p->base.x_stmt_tree = c_stmt_tree;
6941 p->x_break_label = c_break_label;
6942 p->x_cont_label = c_cont_label;
6943 p->x_switch_stack = c_switch_stack;
6944 p->arg_info = current_function_arg_info;
6945 p->returns_value = current_function_returns_value;
6946 p->returns_null = current_function_returns_null;
6947 p->returns_abnormally = current_function_returns_abnormally;
6948 p->warn_about_return_type = warn_about_return_type;
6950 push_function_context ();
6953 /* Restore the variables used during compilation of a C function. */
6955 void
6956 c_pop_function_context (void)
6958 struct language_function *p;
6960 pop_function_context ();
6961 p = cfun->language;
6962 cfun->language = NULL;
6964 if (DECL_STRUCT_FUNCTION (current_function_decl) == 0
6965 && DECL_SAVED_TREE (current_function_decl) == NULL_TREE)
6967 /* Stop pointing to the local nodes about to be freed. */
6968 /* But DECL_INITIAL must remain nonzero so we know this
6969 was an actual function definition. */
6970 DECL_INITIAL (current_function_decl) = error_mark_node;
6971 DECL_ARGUMENTS (current_function_decl) = 0;
6974 c_stmt_tree = p->base.x_stmt_tree;
6975 c_break_label = p->x_break_label;
6976 c_cont_label = p->x_cont_label;
6977 c_switch_stack = p->x_switch_stack;
6978 current_function_arg_info = p->arg_info;
6979 current_function_returns_value = p->returns_value;
6980 current_function_returns_null = p->returns_null;
6981 current_function_returns_abnormally = p->returns_abnormally;
6982 warn_about_return_type = p->warn_about_return_type;
6985 /* Copy the DECL_LANG_SPECIFIC data associated with DECL. */
6987 void
6988 c_dup_lang_specific_decl (tree decl)
6990 struct lang_decl *ld;
6992 if (!DECL_LANG_SPECIFIC (decl))
6993 return;
6995 ld = GGC_NEW (struct lang_decl);
6996 memcpy (ld, DECL_LANG_SPECIFIC (decl), sizeof (struct lang_decl));
6997 DECL_LANG_SPECIFIC (decl) = ld;
7000 /* The functions below are required for functionality of doing
7001 function at once processing in the C front end. Currently these
7002 functions are not called from anywhere in the C front end, but as
7003 these changes continue, that will change. */
7005 /* Returns the stmt_tree (if any) to which statements are currently
7006 being added. If there is no active statement-tree, NULL is
7007 returned. */
7009 stmt_tree
7010 current_stmt_tree (void)
7012 return &c_stmt_tree;
7015 /* Return the global value of T as a symbol. */
7017 tree
7018 identifier_global_value (tree t)
7020 struct c_binding *b;
7022 for (b = I_SYMBOL_BINDING (t); b; b = b->shadowed)
7023 if (B_IN_FILE_SCOPE (b) || B_IN_EXTERNAL_SCOPE (b))
7024 return b->decl;
7026 return 0;
7029 /* Record a builtin type for C. If NAME is non-NULL, it is the name used;
7030 otherwise the name is found in ridpointers from RID_INDEX. */
7032 void
7033 record_builtin_type (enum rid rid_index, const char *name, tree type)
7035 tree id, decl;
7036 if (name == 0)
7037 id = ridpointers[(int) rid_index];
7038 else
7039 id = get_identifier (name);
7040 decl = build_decl (TYPE_DECL, id, type);
7041 pushdecl (decl);
7042 if (debug_hooks->type_decl)
7043 debug_hooks->type_decl (decl, false);
7046 /* Build the void_list_node (void_type_node having been created). */
7047 tree
7048 build_void_list_node (void)
7050 tree t = build_tree_list (NULL_TREE, void_type_node);
7051 return t;
7054 /* Return a c_parm structure with the given SPECS, ATTRS and DECLARATOR. */
7056 struct c_parm *
7057 build_c_parm (struct c_declspecs *specs, tree attrs,
7058 struct c_declarator *declarator)
7060 struct c_parm *ret = XOBNEW (&parser_obstack, struct c_parm);
7061 ret->specs = specs;
7062 ret->attrs = attrs;
7063 ret->declarator = declarator;
7064 return ret;
7067 /* Return a declarator with nested attributes. TARGET is the inner
7068 declarator to which these attributes apply. ATTRS are the
7069 attributes. */
7071 struct c_declarator *
7072 build_attrs_declarator (tree attrs, struct c_declarator *target)
7074 struct c_declarator *ret = XOBNEW (&parser_obstack, struct c_declarator);
7075 ret->kind = cdk_attrs;
7076 ret->declarator = target;
7077 ret->u.attrs = attrs;
7078 return ret;
7081 /* Return a declarator for a function with arguments specified by ARGS
7082 and return type specified by TARGET. */
7084 struct c_declarator *
7085 build_function_declarator (struct c_arg_info *args,
7086 struct c_declarator *target)
7088 struct c_declarator *ret = XOBNEW (&parser_obstack, struct c_declarator);
7089 ret->kind = cdk_function;
7090 ret->declarator = target;
7091 ret->u.arg_info = args;
7092 return ret;
7095 /* Return a declarator for the identifier IDENT (which may be
7096 NULL_TREE for an abstract declarator). */
7098 struct c_declarator *
7099 build_id_declarator (tree ident)
7101 struct c_declarator *ret = XOBNEW (&parser_obstack, struct c_declarator);
7102 ret->kind = cdk_id;
7103 ret->declarator = 0;
7104 ret->u.id = ident;
7105 /* Default value - may get reset to a more precise location. */
7106 ret->id_loc = input_location;
7107 return ret;
7110 /* Return something to represent absolute declarators containing a *.
7111 TARGET is the absolute declarator that the * contains.
7112 TYPE_QUALS_ATTRS is a structure for type qualifiers and attributes
7113 to apply to the pointer type. */
7115 struct c_declarator *
7116 make_pointer_declarator (struct c_declspecs *type_quals_attrs,
7117 struct c_declarator *target)
7119 tree attrs;
7120 int quals = 0;
7121 struct c_declarator *itarget = target;
7122 struct c_declarator *ret = XOBNEW (&parser_obstack, struct c_declarator);
7123 if (type_quals_attrs)
7125 attrs = type_quals_attrs->attrs;
7126 quals = quals_from_declspecs (type_quals_attrs);
7127 if (attrs != NULL_TREE)
7128 itarget = build_attrs_declarator (attrs, target);
7130 ret->kind = cdk_pointer;
7131 ret->declarator = itarget;
7132 ret->u.pointer_quals = quals;
7133 return ret;
7136 /* Return a pointer to a structure for an empty list of declaration
7137 specifiers. */
7139 struct c_declspecs *
7140 build_null_declspecs (void)
7142 struct c_declspecs *ret = XOBNEW (&parser_obstack, struct c_declspecs);
7143 ret->type = 0;
7144 ret->decl_attr = 0;
7145 ret->attrs = 0;
7146 ret->typespec_word = cts_none;
7147 ret->storage_class = csc_none;
7148 ret->declspecs_seen_p = false;
7149 ret->type_seen_p = false;
7150 ret->non_sc_seen_p = false;
7151 ret->typedef_p = false;
7152 ret->tag_defined_p = false;
7153 ret->explicit_signed_p = false;
7154 ret->deprecated_p = false;
7155 ret->default_int_p = false;
7156 ret->long_p = false;
7157 ret->long_long_p = false;
7158 ret->short_p = false;
7159 ret->signed_p = false;
7160 ret->unsigned_p = false;
7161 ret->complex_p = false;
7162 ret->inline_p = false;
7163 ret->thread_p = false;
7164 ret->const_p = false;
7165 ret->volatile_p = false;
7166 ret->restrict_p = false;
7167 ret->saturating_p = false;
7168 return ret;
7171 /* Add the type qualifier QUAL to the declaration specifiers SPECS,
7172 returning SPECS. */
7174 struct c_declspecs *
7175 declspecs_add_qual (struct c_declspecs *specs, tree qual)
7177 enum rid i;
7178 bool dupe = false;
7179 specs->non_sc_seen_p = true;
7180 specs->declspecs_seen_p = true;
7181 gcc_assert (TREE_CODE (qual) == IDENTIFIER_NODE
7182 && C_IS_RESERVED_WORD (qual));
7183 i = C_RID_CODE (qual);
7184 switch (i)
7186 case RID_CONST:
7187 dupe = specs->const_p;
7188 specs->const_p = true;
7189 break;
7190 case RID_VOLATILE:
7191 dupe = specs->volatile_p;
7192 specs->volatile_p = true;
7193 break;
7194 case RID_RESTRICT:
7195 dupe = specs->restrict_p;
7196 specs->restrict_p = true;
7197 break;
7198 default:
7199 gcc_unreachable ();
7201 if (dupe && !flag_isoc99)
7202 pedwarn (input_location, OPT_pedantic, "duplicate %qE", qual);
7203 return specs;
7206 /* Add the type specifier TYPE to the declaration specifiers SPECS,
7207 returning SPECS. */
7209 struct c_declspecs *
7210 declspecs_add_type (struct c_declspecs *specs, struct c_typespec spec)
7212 tree type = spec.spec;
7213 specs->non_sc_seen_p = true;
7214 specs->declspecs_seen_p = true;
7215 specs->type_seen_p = true;
7216 if (TREE_DEPRECATED (type))
7217 specs->deprecated_p = true;
7219 /* Handle type specifier keywords. */
7220 if (TREE_CODE (type) == IDENTIFIER_NODE
7221 && C_IS_RESERVED_WORD (type)
7222 && C_RID_CODE (type) != RID_CXX_COMPAT_WARN)
7224 enum rid i = C_RID_CODE (type);
7225 if (specs->type)
7227 error ("two or more data types in declaration specifiers");
7228 return specs;
7230 if ((int) i <= (int) RID_LAST_MODIFIER)
7232 /* "long", "short", "signed", "unsigned", "_Complex" or "_Sat". */
7233 bool dupe = false;
7234 switch (i)
7236 case RID_LONG:
7237 if (specs->long_long_p)
7239 error ("%<long long long%> is too long for GCC");
7240 break;
7242 if (specs->long_p)
7244 if (specs->typespec_word == cts_double)
7246 error ("both %<long long%> and %<double%> in "
7247 "declaration specifiers");
7248 break;
7250 if (pedantic && !flag_isoc99 && !in_system_header)
7251 pedwarn (input_location, OPT_Wlong_long, "ISO C90 does not support %<long long%>");
7252 specs->long_long_p = 1;
7253 break;
7255 if (specs->short_p)
7256 error ("both %<long%> and %<short%> in "
7257 "declaration specifiers");
7258 else if (specs->typespec_word == cts_void)
7259 error ("both %<long%> and %<void%> in "
7260 "declaration specifiers");
7261 else if (specs->typespec_word == cts_bool)
7262 error ("both %<long%> and %<_Bool%> in "
7263 "declaration specifiers");
7264 else if (specs->typespec_word == cts_char)
7265 error ("both %<long%> and %<char%> in "
7266 "declaration specifiers");
7267 else if (specs->typespec_word == cts_float)
7268 error ("both %<long%> and %<float%> in "
7269 "declaration specifiers");
7270 else if (specs->typespec_word == cts_dfloat32)
7271 error ("both %<long%> and %<_Decimal32%> in "
7272 "declaration specifiers");
7273 else if (specs->typespec_word == cts_dfloat64)
7274 error ("both %<long%> and %<_Decimal64%> in "
7275 "declaration specifiers");
7276 else if (specs->typespec_word == cts_dfloat128)
7277 error ("both %<long%> and %<_Decimal128%> in "
7278 "declaration specifiers");
7279 else
7280 specs->long_p = true;
7281 break;
7282 case RID_SHORT:
7283 dupe = specs->short_p;
7284 if (specs->long_p)
7285 error ("both %<long%> and %<short%> in "
7286 "declaration specifiers");
7287 else if (specs->typespec_word == cts_void)
7288 error ("both %<short%> and %<void%> in "
7289 "declaration specifiers");
7290 else if (specs->typespec_word == cts_bool)
7291 error ("both %<short%> and %<_Bool%> in "
7292 "declaration specifiers");
7293 else if (specs->typespec_word == cts_char)
7294 error ("both %<short%> and %<char%> in "
7295 "declaration specifiers");
7296 else if (specs->typespec_word == cts_float)
7297 error ("both %<short%> and %<float%> in "
7298 "declaration specifiers");
7299 else if (specs->typespec_word == cts_double)
7300 error ("both %<short%> and %<double%> in "
7301 "declaration specifiers");
7302 else if (specs->typespec_word == cts_dfloat32)
7303 error ("both %<short%> and %<_Decimal32%> in "
7304 "declaration specifiers");
7305 else if (specs->typespec_word == cts_dfloat64)
7306 error ("both %<short%> and %<_Decimal64%> in "
7307 "declaration specifiers");
7308 else if (specs->typespec_word == cts_dfloat128)
7309 error ("both %<short%> and %<_Decimal128%> in "
7310 "declaration specifiers");
7311 else
7312 specs->short_p = true;
7313 break;
7314 case RID_SIGNED:
7315 dupe = specs->signed_p;
7316 if (specs->unsigned_p)
7317 error ("both %<signed%> and %<unsigned%> in "
7318 "declaration specifiers");
7319 else if (specs->typespec_word == cts_void)
7320 error ("both %<signed%> and %<void%> in "
7321 "declaration specifiers");
7322 else if (specs->typespec_word == cts_bool)
7323 error ("both %<signed%> and %<_Bool%> in "
7324 "declaration specifiers");
7325 else if (specs->typespec_word == cts_float)
7326 error ("both %<signed%> and %<float%> in "
7327 "declaration specifiers");
7328 else if (specs->typespec_word == cts_double)
7329 error ("both %<signed%> and %<double%> in "
7330 "declaration specifiers");
7331 else if (specs->typespec_word == cts_dfloat32)
7332 error ("both %<signed%> and %<_Decimal32%> in "
7333 "declaration specifiers");
7334 else if (specs->typespec_word == cts_dfloat64)
7335 error ("both %<signed%> and %<_Decimal64%> in "
7336 "declaration specifiers");
7337 else if (specs->typespec_word == cts_dfloat128)
7338 error ("both %<signed%> and %<_Decimal128%> in "
7339 "declaration specifiers");
7340 else
7341 specs->signed_p = true;
7342 break;
7343 case RID_UNSIGNED:
7344 dupe = specs->unsigned_p;
7345 if (specs->signed_p)
7346 error ("both %<signed%> and %<unsigned%> in "
7347 "declaration specifiers");
7348 else if (specs->typespec_word == cts_void)
7349 error ("both %<unsigned%> and %<void%> in "
7350 "declaration specifiers");
7351 else if (specs->typespec_word == cts_bool)
7352 error ("both %<unsigned%> and %<_Bool%> in "
7353 "declaration specifiers");
7354 else if (specs->typespec_word == cts_float)
7355 error ("both %<unsigned%> and %<float%> in "
7356 "declaration specifiers");
7357 else if (specs->typespec_word == cts_double)
7358 error ("both %<unsigned%> and %<double%> in "
7359 "declaration specifiers");
7360 else if (specs->typespec_word == cts_dfloat32)
7361 error ("both %<unsigned%> and %<_Decimal32%> in "
7362 "declaration specifiers");
7363 else if (specs->typespec_word == cts_dfloat64)
7364 error ("both %<unsigned%> and %<_Decimal64%> in "
7365 "declaration specifiers");
7366 else if (specs->typespec_word == cts_dfloat128)
7367 error ("both %<unsigned%> and %<_Decimal128%> in "
7368 "declaration specifiers");
7369 else
7370 specs->unsigned_p = true;
7371 break;
7372 case RID_COMPLEX:
7373 dupe = specs->complex_p;
7374 if (!flag_isoc99 && !in_system_header)
7375 pedwarn (input_location, OPT_pedantic, "ISO C90 does not support complex types");
7376 if (specs->typespec_word == cts_void)
7377 error ("both %<complex%> and %<void%> in "
7378 "declaration specifiers");
7379 else if (specs->typespec_word == cts_bool)
7380 error ("both %<complex%> and %<_Bool%> in "
7381 "declaration specifiers");
7382 else if (specs->typespec_word == cts_dfloat32)
7383 error ("both %<complex%> and %<_Decimal32%> in "
7384 "declaration specifiers");
7385 else if (specs->typespec_word == cts_dfloat64)
7386 error ("both %<complex%> and %<_Decimal64%> in "
7387 "declaration specifiers");
7388 else if (specs->typespec_word == cts_dfloat128)
7389 error ("both %<complex%> and %<_Decimal128%> in "
7390 "declaration specifiers");
7391 else if (specs->typespec_word == cts_fract)
7392 error ("both %<complex%> and %<_Fract%> in "
7393 "declaration specifiers");
7394 else if (specs->typespec_word == cts_accum)
7395 error ("both %<complex%> and %<_Accum%> in "
7396 "declaration specifiers");
7397 else if (specs->saturating_p)
7398 error ("both %<complex%> and %<_Sat%> in "
7399 "declaration specifiers");
7400 else
7401 specs->complex_p = true;
7402 break;
7403 case RID_SAT:
7404 dupe = specs->saturating_p;
7405 pedwarn (input_location, OPT_pedantic, "ISO C does not support saturating types");
7406 if (specs->typespec_word == cts_void)
7407 error ("both %<_Sat%> and %<void%> in "
7408 "declaration specifiers");
7409 else if (specs->typespec_word == cts_bool)
7410 error ("both %<_Sat%> and %<_Bool%> in "
7411 "declaration specifiers");
7412 else if (specs->typespec_word == cts_char)
7413 error ("both %<_Sat%> and %<char%> in "
7414 "declaration specifiers");
7415 else if (specs->typespec_word == cts_int)
7416 error ("both %<_Sat%> and %<int%> in "
7417 "declaration specifiers");
7418 else if (specs->typespec_word == cts_float)
7419 error ("both %<_Sat%> and %<float%> in "
7420 "declaration specifiers");
7421 else if (specs->typespec_word == cts_double)
7422 error ("both %<_Sat%> and %<double%> in "
7423 "declaration specifiers");
7424 else if (specs->typespec_word == cts_dfloat32)
7425 error ("both %<_Sat%> and %<_Decimal32%> in "
7426 "declaration specifiers");
7427 else if (specs->typespec_word == cts_dfloat64)
7428 error ("both %<_Sat%> and %<_Decimal64%> in "
7429 "declaration specifiers");
7430 else if (specs->typespec_word == cts_dfloat128)
7431 error ("both %<_Sat%> and %<_Decimal128%> in "
7432 "declaration specifiers");
7433 else if (specs->complex_p)
7434 error ("both %<_Sat%> and %<complex%> in "
7435 "declaration specifiers");
7436 else
7437 specs->saturating_p = true;
7438 break;
7439 default:
7440 gcc_unreachable ();
7443 if (dupe)
7444 error ("duplicate %qE", type);
7446 return specs;
7448 else
7450 /* "void", "_Bool", "char", "int", "float", "double", "_Decimal32",
7451 "_Decimal64", "_Decimal128", "_Fract" or "_Accum". */
7452 if (specs->typespec_word != cts_none)
7454 error ("two or more data types in declaration specifiers");
7455 return specs;
7457 switch (i)
7459 case RID_VOID:
7460 if (specs->long_p)
7461 error ("both %<long%> and %<void%> in "
7462 "declaration specifiers");
7463 else if (specs->short_p)
7464 error ("both %<short%> and %<void%> in "
7465 "declaration specifiers");
7466 else if (specs->signed_p)
7467 error ("both %<signed%> and %<void%> in "
7468 "declaration specifiers");
7469 else if (specs->unsigned_p)
7470 error ("both %<unsigned%> and %<void%> in "
7471 "declaration specifiers");
7472 else if (specs->complex_p)
7473 error ("both %<complex%> and %<void%> in "
7474 "declaration specifiers");
7475 else if (specs->saturating_p)
7476 error ("both %<_Sat%> and %<void%> in "
7477 "declaration specifiers");
7478 else
7479 specs->typespec_word = cts_void;
7480 return specs;
7481 case RID_BOOL:
7482 if (specs->long_p)
7483 error ("both %<long%> and %<_Bool%> in "
7484 "declaration specifiers");
7485 else if (specs->short_p)
7486 error ("both %<short%> and %<_Bool%> in "
7487 "declaration specifiers");
7488 else if (specs->signed_p)
7489 error ("both %<signed%> and %<_Bool%> in "
7490 "declaration specifiers");
7491 else if (specs->unsigned_p)
7492 error ("both %<unsigned%> and %<_Bool%> in "
7493 "declaration specifiers");
7494 else if (specs->complex_p)
7495 error ("both %<complex%> and %<_Bool%> in "
7496 "declaration specifiers");
7497 else if (specs->saturating_p)
7498 error ("both %<_Sat%> and %<_Bool%> in "
7499 "declaration specifiers");
7500 else
7501 specs->typespec_word = cts_bool;
7502 return specs;
7503 case RID_CHAR:
7504 if (specs->long_p)
7505 error ("both %<long%> and %<char%> in "
7506 "declaration specifiers");
7507 else if (specs->short_p)
7508 error ("both %<short%> and %<char%> in "
7509 "declaration specifiers");
7510 else if (specs->saturating_p)
7511 error ("both %<_Sat%> and %<char%> in "
7512 "declaration specifiers");
7513 else
7514 specs->typespec_word = cts_char;
7515 return specs;
7516 case RID_INT:
7517 if (specs->saturating_p)
7518 error ("both %<_Sat%> and %<int%> in "
7519 "declaration specifiers");
7520 else
7521 specs->typespec_word = cts_int;
7522 return specs;
7523 case RID_FLOAT:
7524 if (specs->long_p)
7525 error ("both %<long%> and %<float%> in "
7526 "declaration specifiers");
7527 else if (specs->short_p)
7528 error ("both %<short%> and %<float%> in "
7529 "declaration specifiers");
7530 else if (specs->signed_p)
7531 error ("both %<signed%> and %<float%> in "
7532 "declaration specifiers");
7533 else if (specs->unsigned_p)
7534 error ("both %<unsigned%> and %<float%> in "
7535 "declaration specifiers");
7536 else if (specs->saturating_p)
7537 error ("both %<_Sat%> and %<float%> in "
7538 "declaration specifiers");
7539 else
7540 specs->typespec_word = cts_float;
7541 return specs;
7542 case RID_DOUBLE:
7543 if (specs->long_long_p)
7544 error ("both %<long long%> and %<double%> in "
7545 "declaration specifiers");
7546 else if (specs->short_p)
7547 error ("both %<short%> and %<double%> in "
7548 "declaration specifiers");
7549 else if (specs->signed_p)
7550 error ("both %<signed%> and %<double%> in "
7551 "declaration specifiers");
7552 else if (specs->unsigned_p)
7553 error ("both %<unsigned%> and %<double%> in "
7554 "declaration specifiers");
7555 else if (specs->saturating_p)
7556 error ("both %<_Sat%> and %<double%> in "
7557 "declaration specifiers");
7558 else
7559 specs->typespec_word = cts_double;
7560 return specs;
7561 case RID_DFLOAT32:
7562 case RID_DFLOAT64:
7563 case RID_DFLOAT128:
7565 const char *str;
7566 if (i == RID_DFLOAT32)
7567 str = "_Decimal32";
7568 else if (i == RID_DFLOAT64)
7569 str = "_Decimal64";
7570 else
7571 str = "_Decimal128";
7572 if (specs->long_long_p)
7573 error ("both %<long long%> and %<%s%> in "
7574 "declaration specifiers", str);
7575 if (specs->long_p)
7576 error ("both %<long%> and %<%s%> in "
7577 "declaration specifiers", str);
7578 else if (specs->short_p)
7579 error ("both %<short%> and %<%s%> in "
7580 "declaration specifiers", str);
7581 else if (specs->signed_p)
7582 error ("both %<signed%> and %<%s%> in "
7583 "declaration specifiers", str);
7584 else if (specs->unsigned_p)
7585 error ("both %<unsigned%> and %<%s%> in "
7586 "declaration specifiers", str);
7587 else if (specs->complex_p)
7588 error ("both %<complex%> and %<%s%> in "
7589 "declaration specifiers", str);
7590 else if (specs->saturating_p)
7591 error ("both %<_Sat%> and %<%s%> in "
7592 "declaration specifiers", str);
7593 else if (i == RID_DFLOAT32)
7594 specs->typespec_word = cts_dfloat32;
7595 else if (i == RID_DFLOAT64)
7596 specs->typespec_word = cts_dfloat64;
7597 else
7598 specs->typespec_word = cts_dfloat128;
7600 if (!targetm.decimal_float_supported_p ())
7601 error ("decimal floating point not supported for this target");
7602 pedwarn (input_location, OPT_pedantic,
7603 "ISO C does not support decimal floating point");
7604 return specs;
7605 case RID_FRACT:
7606 case RID_ACCUM:
7608 const char *str;
7609 if (i == RID_FRACT)
7610 str = "_Fract";
7611 else
7612 str = "_Accum";
7613 if (specs->complex_p)
7614 error ("both %<complex%> and %<%s%> in "
7615 "declaration specifiers", str);
7616 else if (i == RID_FRACT)
7617 specs->typespec_word = cts_fract;
7618 else
7619 specs->typespec_word = cts_accum;
7621 if (!targetm.fixed_point_supported_p ())
7622 error ("fixed-point types not supported for this target");
7623 pedwarn (input_location, OPT_pedantic,
7624 "ISO C does not support fixed-point types");
7625 return specs;
7626 default:
7627 /* ObjC reserved word "id", handled below. */
7628 break;
7633 /* Now we have a typedef (a TYPE_DECL node), an identifier (some
7634 form of ObjC type, cases such as "int" and "long" being handled
7635 above), a TYPE (struct, union, enum and typeof specifiers) or an
7636 ERROR_MARK. In none of these cases may there have previously
7637 been any type specifiers. */
7638 if (specs->type || specs->typespec_word != cts_none
7639 || specs->long_p || specs->short_p || specs->signed_p
7640 || specs->unsigned_p || specs->complex_p)
7641 error ("two or more data types in declaration specifiers");
7642 else if (TREE_CODE (type) == TYPE_DECL)
7644 if (TREE_TYPE (type) == error_mark_node)
7645 ; /* Allow the type to default to int to avoid cascading errors. */
7646 else
7648 specs->type = TREE_TYPE (type);
7649 specs->decl_attr = DECL_ATTRIBUTES (type);
7650 specs->typedef_p = true;
7651 specs->explicit_signed_p = C_TYPEDEF_EXPLICITLY_SIGNED (type);
7654 else if (TREE_CODE (type) == IDENTIFIER_NODE)
7656 tree t = lookup_name (type);
7657 if (!t || TREE_CODE (t) != TYPE_DECL)
7658 error ("%qE fails to be a typedef or built in type", type);
7659 else if (TREE_TYPE (t) == error_mark_node)
7661 else
7662 specs->type = TREE_TYPE (t);
7664 else if (TREE_CODE (type) != ERROR_MARK)
7666 if (spec.kind == ctsk_tagdef || spec.kind == ctsk_tagfirstref)
7667 specs->tag_defined_p = true;
7668 if (spec.kind == ctsk_typeof)
7669 specs->typedef_p = true;
7670 specs->type = type;
7673 return specs;
7676 /* Add the storage class specifier or function specifier SCSPEC to the
7677 declaration specifiers SPECS, returning SPECS. */
7679 struct c_declspecs *
7680 declspecs_add_scspec (struct c_declspecs *specs, tree scspec)
7682 enum rid i;
7683 enum c_storage_class n = csc_none;
7684 bool dupe = false;
7685 specs->declspecs_seen_p = true;
7686 gcc_assert (TREE_CODE (scspec) == IDENTIFIER_NODE
7687 && C_IS_RESERVED_WORD (scspec));
7688 i = C_RID_CODE (scspec);
7689 if (specs->non_sc_seen_p)
7690 warning (OPT_Wold_style_declaration,
7691 "%qE is not at beginning of declaration", scspec);
7692 switch (i)
7694 case RID_INLINE:
7695 /* C99 permits duplicate inline. Although of doubtful utility,
7696 it seems simplest to permit it in gnu89 mode as well, as
7697 there is also little utility in maintaining this as a
7698 difference between gnu89 and C99 inline. */
7699 dupe = false;
7700 specs->inline_p = true;
7701 break;
7702 case RID_THREAD:
7703 dupe = specs->thread_p;
7704 if (specs->storage_class == csc_auto)
7705 error ("%<__thread%> used with %<auto%>");
7706 else if (specs->storage_class == csc_register)
7707 error ("%<__thread%> used with %<register%>");
7708 else if (specs->storage_class == csc_typedef)
7709 error ("%<__thread%> used with %<typedef%>");
7710 else
7711 specs->thread_p = true;
7712 break;
7713 case RID_AUTO:
7714 n = csc_auto;
7715 break;
7716 case RID_EXTERN:
7717 n = csc_extern;
7718 /* Diagnose "__thread extern". */
7719 if (specs->thread_p)
7720 error ("%<__thread%> before %<extern%>");
7721 break;
7722 case RID_REGISTER:
7723 n = csc_register;
7724 break;
7725 case RID_STATIC:
7726 n = csc_static;
7727 /* Diagnose "__thread static". */
7728 if (specs->thread_p)
7729 error ("%<__thread%> before %<static%>");
7730 break;
7731 case RID_TYPEDEF:
7732 n = csc_typedef;
7733 break;
7734 default:
7735 gcc_unreachable ();
7737 if (n != csc_none && n == specs->storage_class)
7738 dupe = true;
7739 if (dupe)
7740 error ("duplicate %qE", scspec);
7741 if (n != csc_none)
7743 if (specs->storage_class != csc_none && n != specs->storage_class)
7745 error ("multiple storage classes in declaration specifiers");
7747 else
7749 specs->storage_class = n;
7750 if (n != csc_extern && n != csc_static && specs->thread_p)
7752 error ("%<__thread%> used with %qE", scspec);
7753 specs->thread_p = false;
7757 return specs;
7760 /* Add the attributes ATTRS to the declaration specifiers SPECS,
7761 returning SPECS. */
7763 struct c_declspecs *
7764 declspecs_add_attrs (struct c_declspecs *specs, tree attrs)
7766 specs->attrs = chainon (attrs, specs->attrs);
7767 specs->declspecs_seen_p = true;
7768 return specs;
7771 /* Combine "long", "short", "signed", "unsigned" and "_Complex" type
7772 specifiers with any other type specifier to determine the resulting
7773 type. This is where ISO C checks on complex types are made, since
7774 "_Complex long" is a prefix of the valid ISO C type "_Complex long
7775 double". */
7777 struct c_declspecs *
7778 finish_declspecs (struct c_declspecs *specs)
7780 /* If a type was specified as a whole, we have no modifiers and are
7781 done. */
7782 if (specs->type != NULL_TREE)
7784 gcc_assert (!specs->long_p && !specs->long_long_p && !specs->short_p
7785 && !specs->signed_p && !specs->unsigned_p
7786 && !specs->complex_p);
7787 return specs;
7790 /* If none of "void", "_Bool", "char", "int", "float" or "double"
7791 has been specified, treat it as "int" unless "_Complex" is
7792 present and there are no other specifiers. If we just have
7793 "_Complex", it is equivalent to "_Complex double", but e.g.
7794 "_Complex short" is equivalent to "_Complex short int". */
7795 if (specs->typespec_word == cts_none)
7797 if (specs->saturating_p)
7799 error ("%<_Sat%> is used without %<_Fract%> or %<_Accum%>");
7800 if (!targetm.fixed_point_supported_p ())
7801 error ("fixed-point types not supported for this target");
7802 specs->typespec_word = cts_fract;
7804 else if (specs->long_p || specs->short_p
7805 || specs->signed_p || specs->unsigned_p)
7807 specs->typespec_word = cts_int;
7809 else if (specs->complex_p)
7811 specs->typespec_word = cts_double;
7812 pedwarn (input_location, OPT_pedantic,
7813 "ISO C does not support plain %<complex%> meaning "
7814 "%<double complex%>");
7816 else
7818 specs->typespec_word = cts_int;
7819 specs->default_int_p = true;
7820 /* We don't diagnose this here because grokdeclarator will
7821 give more specific diagnostics according to whether it is
7822 a function definition. */
7826 /* If "signed" was specified, record this to distinguish "int" and
7827 "signed int" in the case of a bit-field with
7828 -funsigned-bitfields. */
7829 specs->explicit_signed_p = specs->signed_p;
7831 /* Now compute the actual type. */
7832 switch (specs->typespec_word)
7834 case cts_void:
7835 gcc_assert (!specs->long_p && !specs->short_p
7836 && !specs->signed_p && !specs->unsigned_p
7837 && !specs->complex_p);
7838 specs->type = void_type_node;
7839 break;
7840 case cts_bool:
7841 gcc_assert (!specs->long_p && !specs->short_p
7842 && !specs->signed_p && !specs->unsigned_p
7843 && !specs->complex_p);
7844 specs->type = boolean_type_node;
7845 break;
7846 case cts_char:
7847 gcc_assert (!specs->long_p && !specs->short_p);
7848 gcc_assert (!(specs->signed_p && specs->unsigned_p));
7849 if (specs->signed_p)
7850 specs->type = signed_char_type_node;
7851 else if (specs->unsigned_p)
7852 specs->type = unsigned_char_type_node;
7853 else
7854 specs->type = char_type_node;
7855 if (specs->complex_p)
7857 pedwarn (input_location, OPT_pedantic,
7858 "ISO C does not support complex integer types");
7859 specs->type = build_complex_type (specs->type);
7861 break;
7862 case cts_int:
7863 gcc_assert (!(specs->long_p && specs->short_p));
7864 gcc_assert (!(specs->signed_p && specs->unsigned_p));
7865 if (specs->long_long_p)
7866 specs->type = (specs->unsigned_p
7867 ? long_long_unsigned_type_node
7868 : long_long_integer_type_node);
7869 else if (specs->long_p)
7870 specs->type = (specs->unsigned_p
7871 ? long_unsigned_type_node
7872 : long_integer_type_node);
7873 else if (specs->short_p)
7874 specs->type = (specs->unsigned_p
7875 ? short_unsigned_type_node
7876 : short_integer_type_node);
7877 else
7878 specs->type = (specs->unsigned_p
7879 ? unsigned_type_node
7880 : integer_type_node);
7881 if (specs->complex_p)
7883 pedwarn (input_location, OPT_pedantic,
7884 "ISO C does not support complex integer types");
7885 specs->type = build_complex_type (specs->type);
7887 break;
7888 case cts_float:
7889 gcc_assert (!specs->long_p && !specs->short_p
7890 && !specs->signed_p && !specs->unsigned_p);
7891 specs->type = (specs->complex_p
7892 ? complex_float_type_node
7893 : float_type_node);
7894 break;
7895 case cts_double:
7896 gcc_assert (!specs->long_long_p && !specs->short_p
7897 && !specs->signed_p && !specs->unsigned_p);
7898 if (specs->long_p)
7900 specs->type = (specs->complex_p
7901 ? complex_long_double_type_node
7902 : long_double_type_node);
7904 else
7906 specs->type = (specs->complex_p
7907 ? complex_double_type_node
7908 : double_type_node);
7910 break;
7911 case cts_dfloat32:
7912 case cts_dfloat64:
7913 case cts_dfloat128:
7914 gcc_assert (!specs->long_p && !specs->long_long_p && !specs->short_p
7915 && !specs->signed_p && !specs->unsigned_p && !specs->complex_p);
7916 if (specs->typespec_word == cts_dfloat32)
7917 specs->type = dfloat32_type_node;
7918 else if (specs->typespec_word == cts_dfloat64)
7919 specs->type = dfloat64_type_node;
7920 else
7921 specs->type = dfloat128_type_node;
7922 break;
7923 case cts_fract:
7924 gcc_assert (!specs->complex_p);
7925 if (!targetm.fixed_point_supported_p ())
7926 specs->type = integer_type_node;
7927 else if (specs->saturating_p)
7929 if (specs->long_long_p)
7930 specs->type = specs->unsigned_p
7931 ? sat_unsigned_long_long_fract_type_node
7932 : sat_long_long_fract_type_node;
7933 else if (specs->long_p)
7934 specs->type = specs->unsigned_p
7935 ? sat_unsigned_long_fract_type_node
7936 : sat_long_fract_type_node;
7937 else if (specs->short_p)
7938 specs->type = specs->unsigned_p
7939 ? sat_unsigned_short_fract_type_node
7940 : sat_short_fract_type_node;
7941 else
7942 specs->type = specs->unsigned_p
7943 ? sat_unsigned_fract_type_node
7944 : sat_fract_type_node;
7946 else
7948 if (specs->long_long_p)
7949 specs->type = specs->unsigned_p
7950 ? unsigned_long_long_fract_type_node
7951 : long_long_fract_type_node;
7952 else if (specs->long_p)
7953 specs->type = specs->unsigned_p
7954 ? unsigned_long_fract_type_node
7955 : long_fract_type_node;
7956 else if (specs->short_p)
7957 specs->type = specs->unsigned_p
7958 ? unsigned_short_fract_type_node
7959 : short_fract_type_node;
7960 else
7961 specs->type = specs->unsigned_p
7962 ? unsigned_fract_type_node
7963 : fract_type_node;
7965 break;
7966 case cts_accum:
7967 gcc_assert (!specs->complex_p);
7968 if (!targetm.fixed_point_supported_p ())
7969 specs->type = integer_type_node;
7970 else if (specs->saturating_p)
7972 if (specs->long_long_p)
7973 specs->type = specs->unsigned_p
7974 ? sat_unsigned_long_long_accum_type_node
7975 : sat_long_long_accum_type_node;
7976 else if (specs->long_p)
7977 specs->type = specs->unsigned_p
7978 ? sat_unsigned_long_accum_type_node
7979 : sat_long_accum_type_node;
7980 else if (specs->short_p)
7981 specs->type = specs->unsigned_p
7982 ? sat_unsigned_short_accum_type_node
7983 : sat_short_accum_type_node;
7984 else
7985 specs->type = specs->unsigned_p
7986 ? sat_unsigned_accum_type_node
7987 : sat_accum_type_node;
7989 else
7991 if (specs->long_long_p)
7992 specs->type = specs->unsigned_p
7993 ? unsigned_long_long_accum_type_node
7994 : long_long_accum_type_node;
7995 else if (specs->long_p)
7996 specs->type = specs->unsigned_p
7997 ? unsigned_long_accum_type_node
7998 : long_accum_type_node;
7999 else if (specs->short_p)
8000 specs->type = specs->unsigned_p
8001 ? unsigned_short_accum_type_node
8002 : short_accum_type_node;
8003 else
8004 specs->type = specs->unsigned_p
8005 ? unsigned_accum_type_node
8006 : accum_type_node;
8008 break;
8009 default:
8010 gcc_unreachable ();
8013 return specs;
8016 /* A subroutine of c_write_global_declarations. Perform final processing
8017 on one file scope's declarations (or the external scope's declarations),
8018 GLOBALS. */
8020 static void
8021 c_write_global_declarations_1 (tree globals)
8023 tree decl;
8024 bool reconsider;
8026 /* Process the decls in the order they were written. */
8027 for (decl = globals; decl; decl = TREE_CHAIN (decl))
8029 /* Check for used but undefined static functions using the C
8030 standard's definition of "used", and set TREE_NO_WARNING so
8031 that check_global_declarations doesn't repeat the check. */
8032 if (TREE_CODE (decl) == FUNCTION_DECL
8033 && DECL_INITIAL (decl) == 0
8034 && DECL_EXTERNAL (decl)
8035 && !TREE_PUBLIC (decl)
8036 && C_DECL_USED (decl))
8038 pedwarn (input_location, 0, "%q+F used but never defined", decl);
8039 TREE_NO_WARNING (decl) = 1;
8042 wrapup_global_declaration_1 (decl);
8047 reconsider = false;
8048 for (decl = globals; decl; decl = TREE_CHAIN (decl))
8049 reconsider |= wrapup_global_declaration_2 (decl);
8051 while (reconsider);
8053 for (decl = globals; decl; decl = TREE_CHAIN (decl))
8054 check_global_declaration_1 (decl);
8057 /* A subroutine of c_write_global_declarations Emit debug information for each
8058 of the declarations in GLOBALS. */
8060 static void
8061 c_write_global_declarations_2 (tree globals)
8063 tree decl;
8065 for (decl = globals; decl ; decl = TREE_CHAIN (decl))
8066 debug_hooks->global_decl (decl);
8069 /* Preserve the external declarations scope across a garbage collect. */
8070 static GTY(()) tree ext_block;
8072 void
8073 c_write_global_declarations (void)
8075 tree t;
8077 /* We don't want to do this if generating a PCH. */
8078 if (pch_file)
8079 return;
8081 /* Don't waste time on further processing if -fsyntax-only or we've
8082 encountered errors. */
8083 if (flag_syntax_only || errorcount || sorrycount || cpp_errors (parse_in))
8084 return;
8086 /* Close the external scope. */
8087 ext_block = pop_scope ();
8088 external_scope = 0;
8089 gcc_assert (!current_scope);
8091 if (ext_block)
8093 tree tmp = BLOCK_VARS (ext_block);
8094 int flags;
8095 FILE * stream = dump_begin (TDI_tu, &flags);
8096 if (stream && tmp)
8098 dump_node (tmp, flags & ~TDF_SLIM, stream);
8099 dump_end (TDI_tu, stream);
8103 /* Process all file scopes in this compilation, and the external_scope,
8104 through wrapup_global_declarations and check_global_declarations. */
8105 for (t = all_translation_units; t; t = TREE_CHAIN (t))
8106 c_write_global_declarations_1 (BLOCK_VARS (DECL_INITIAL (t)));
8107 c_write_global_declarations_1 (BLOCK_VARS (ext_block));
8109 /* We're done parsing; proceed to optimize and emit assembly.
8110 FIXME: shouldn't be the front end's responsibility to call this. */
8111 cgraph_optimize ();
8113 /* After cgraph has had a chance to emit everything that's going to
8114 be emitted, output debug information for globals. */
8115 if (errorcount == 0 && sorrycount == 0)
8117 timevar_push (TV_SYMOUT);
8118 for (t = all_translation_units; t; t = TREE_CHAIN (t))
8119 c_write_global_declarations_2 (BLOCK_VARS (DECL_INITIAL (t)));
8120 c_write_global_declarations_2 (BLOCK_VARS (ext_block));
8121 timevar_pop (TV_SYMOUT);
8124 ext_block = NULL;
8127 #include "gt-c-decl.h"