* config/rs6000/rs6000-c.c (altivec_resolve_overloaded_builtin):
[official-gcc.git] / gcc / c-decl.c
blob7efb82611d0292b2e2cf5e69a0c2b1c46f9b70a6
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"
66 #include "plugin.h"
68 /* In grokdeclarator, distinguish syntactic contexts of declarators. */
69 enum decl_context
70 { NORMAL, /* Ordinary declaration */
71 FUNCDEF, /* Function definition */
72 PARM, /* Declaration of parm before function body */
73 FIELD, /* Declaration inside struct or union */
74 TYPENAME}; /* Typename (inside cast or sizeof) */
76 /* States indicating how grokdeclarator() should handle declspecs marked
77 with __attribute__((deprecated)). An object declared as
78 __attribute__((deprecated)) suppresses warnings of uses of other
79 deprecated items. */
81 enum deprecated_states {
82 DEPRECATED_NORMAL,
83 DEPRECATED_SUPPRESS
87 /* Nonzero if we have seen an invalid cross reference
88 to a struct, union, or enum, but not yet printed the message. */
89 tree pending_invalid_xref;
91 /* File and line to appear in the eventual error message. */
92 location_t pending_invalid_xref_location;
94 /* True means we've initialized exception handling. */
95 bool c_eh_initialized_p;
97 /* The file and line that the prototype came from if this is an
98 old-style definition; used for diagnostics in
99 store_parm_decls_oldstyle. */
101 static location_t current_function_prototype_locus;
103 /* Whether this prototype was built-in. */
105 static bool current_function_prototype_built_in;
107 /* The argument type information of this prototype. */
109 static tree current_function_prototype_arg_types;
111 /* The argument information structure for the function currently being
112 defined. */
114 static struct c_arg_info *current_function_arg_info;
116 /* The obstack on which parser and related data structures, which are
117 not live beyond their top-level declaration or definition, are
118 allocated. */
119 struct obstack parser_obstack;
121 /* The current statement tree. */
123 static GTY(()) struct stmt_tree_s c_stmt_tree;
125 /* State saving variables. */
126 tree c_break_label;
127 tree c_cont_label;
129 /* Linked list of TRANSLATION_UNIT_DECLS for the translation units
130 included in this invocation. Note that the current translation
131 unit is not included in this list. */
133 static GTY(()) tree all_translation_units;
135 /* A list of decls to be made automatically visible in each file scope. */
136 static GTY(()) tree visible_builtins;
138 /* Set to 0 at beginning of a function definition, set to 1 if
139 a return statement that specifies a return value is seen. */
141 int current_function_returns_value;
143 /* Set to 0 at beginning of a function definition, set to 1 if
144 a return statement with no argument is seen. */
146 int current_function_returns_null;
148 /* Set to 0 at beginning of a function definition, set to 1 if
149 a call to a noreturn function is seen. */
151 int current_function_returns_abnormally;
153 /* Set to nonzero by `grokdeclarator' for a function
154 whose return type is defaulted, if warnings for this are desired. */
156 static int warn_about_return_type;
158 /* Nonzero when the current toplevel function contains a declaration
159 of a nested function which is never defined. */
161 static bool undef_nested_function;
163 /* True means global_bindings_p should return false even if the scope stack
164 says we are in file scope. */
165 bool c_override_global_bindings_to_false;
168 /* Each c_binding structure describes one binding of an identifier to
169 a decl. All the decls in a scope - irrespective of namespace - are
170 chained together by the ->prev field, which (as the name implies)
171 runs in reverse order. All the decls in a given namespace bound to
172 a given identifier are chained by the ->shadowed field, which runs
173 from inner to outer scopes.
175 The ->decl field usually points to a DECL node, but there are two
176 exceptions. In the namespace of type tags, the bound entity is a
177 RECORD_TYPE, UNION_TYPE, or ENUMERAL_TYPE node. If an undeclared
178 identifier is encountered, it is bound to error_mark_node to
179 suppress further errors about that identifier in the current
180 function.
182 The ->type field stores the type of the declaration in this scope;
183 if NULL, the type is the type of the ->decl field. This is only of
184 relevance for objects with external or internal linkage which may
185 be redeclared in inner scopes, forming composite types that only
186 persist for the duration of those scopes. In the external scope,
187 this stores the composite of all the types declared for this
188 object, visible or not. The ->inner_comp field (used only at file
189 scope) stores whether an incomplete array type at file scope was
190 completed at an inner scope to an array size other than 1.
192 The depth field is copied from the scope structure that holds this
193 decl. It is used to preserve the proper ordering of the ->shadowed
194 field (see bind()) and also for a handful of special-case checks.
195 Finally, the invisible bit is true for a decl which should be
196 ignored for purposes of normal name lookup, and the nested bit is
197 true for a decl that's been bound a second time in an inner scope;
198 in all such cases, the binding in the outer scope will have its
199 invisible bit true. */
201 struct c_binding GTY((chain_next ("%h.prev")))
203 tree decl; /* the decl bound */
204 tree type; /* the type in this scope */
205 tree id; /* the identifier it's bound to */
206 struct c_binding *prev; /* the previous decl in this scope */
207 struct c_binding *shadowed; /* the innermost decl shadowed by this one */
208 unsigned int depth : 28; /* depth of this scope */
209 BOOL_BITFIELD invisible : 1; /* normal lookup should ignore this binding */
210 BOOL_BITFIELD nested : 1; /* do not set DECL_CONTEXT when popping */
211 BOOL_BITFIELD inner_comp : 1; /* incomplete array completed in inner scope */
212 /* one free bit */
213 location_t locus; /* location for nested bindings */
215 #define B_IN_SCOPE(b1, b2) ((b1)->depth == (b2)->depth)
216 #define B_IN_CURRENT_SCOPE(b) ((b)->depth == current_scope->depth)
217 #define B_IN_FILE_SCOPE(b) ((b)->depth == 1 /*file_scope->depth*/)
218 #define B_IN_EXTERNAL_SCOPE(b) ((b)->depth == 0 /*external_scope->depth*/)
220 #define I_SYMBOL_BINDING(node) \
221 (((struct lang_identifier *) IDENTIFIER_NODE_CHECK(node))->symbol_binding)
222 #define I_SYMBOL_DECL(node) \
223 (I_SYMBOL_BINDING(node) ? I_SYMBOL_BINDING(node)->decl : 0)
225 #define I_TAG_BINDING(node) \
226 (((struct lang_identifier *) IDENTIFIER_NODE_CHECK(node))->tag_binding)
227 #define I_TAG_DECL(node) \
228 (I_TAG_BINDING(node) ? I_TAG_BINDING(node)->decl : 0)
230 #define I_LABEL_BINDING(node) \
231 (((struct lang_identifier *) IDENTIFIER_NODE_CHECK(node))->label_binding)
232 #define I_LABEL_DECL(node) \
233 (I_LABEL_BINDING(node) ? I_LABEL_BINDING(node)->decl : 0)
235 /* Each C symbol points to three linked lists of c_binding structures.
236 These describe the values of the identifier in the three different
237 namespaces defined by the language. */
239 struct lang_identifier GTY(())
241 struct c_common_identifier common_id;
242 struct c_binding *symbol_binding; /* vars, funcs, constants, typedefs */
243 struct c_binding *tag_binding; /* struct/union/enum tags */
244 struct c_binding *label_binding; /* labels */
247 /* Validate c-lang.c's assumptions. */
248 extern char C_SIZEOF_STRUCT_LANG_IDENTIFIER_isnt_accurate
249 [(sizeof(struct lang_identifier) == C_SIZEOF_STRUCT_LANG_IDENTIFIER) ? 1 : -1];
251 /* The resulting tree type. */
253 union lang_tree_node
254 GTY((desc ("TREE_CODE (&%h.generic) == IDENTIFIER_NODE"),
255 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))")))
257 union tree_node GTY ((tag ("0"),
258 desc ("tree_node_structure (&%h)")))
259 generic;
260 struct lang_identifier GTY ((tag ("1"))) identifier;
263 /* Each c_scope structure describes the complete contents of one
264 scope. Four scopes are distinguished specially: the innermost or
265 current scope, the innermost function scope, the file scope (always
266 the second to outermost) and the outermost or external scope.
268 Most declarations are recorded in the current scope.
270 All normal label declarations are recorded in the innermost
271 function scope, as are bindings of undeclared identifiers to
272 error_mark_node. (GCC permits nested functions as an extension,
273 hence the 'innermost' qualifier.) Explicitly declared labels
274 (using the __label__ extension) appear in the current scope.
276 Being in the file scope (current_scope == file_scope) causes
277 special behavior in several places below. Also, under some
278 conditions the Objective-C front end records declarations in the
279 file scope even though that isn't the current scope.
281 All declarations with external linkage are recorded in the external
282 scope, even if they aren't visible there; this models the fact that
283 such declarations are visible to the entire program, and (with a
284 bit of cleverness, see pushdecl) allows diagnosis of some violations
285 of C99 6.2.2p7 and 6.2.7p2:
287 If, within the same translation unit, the same identifier appears
288 with both internal and external linkage, the behavior is
289 undefined.
291 All declarations that refer to the same object or function shall
292 have compatible type; otherwise, the behavior is undefined.
294 Initially only the built-in declarations, which describe compiler
295 intrinsic functions plus a subset of the standard library, are in
296 this scope.
298 The order of the blocks list matters, and it is frequently appended
299 to. To avoid having to walk all the way to the end of the list on
300 each insertion, or reverse the list later, we maintain a pointer to
301 the last list entry. (FIXME: It should be feasible to use a reversed
302 list here.)
304 The bindings list is strictly in reverse order of declarations;
305 pop_scope relies on this. */
308 struct c_scope GTY((chain_next ("%h.outer")))
310 /* The scope containing this one. */
311 struct c_scope *outer;
313 /* The next outermost function scope. */
314 struct c_scope *outer_function;
316 /* All bindings in this scope. */
317 struct c_binding *bindings;
319 /* For each scope (except the global one), a chain of BLOCK nodes
320 for all the scopes that were entered and exited one level down. */
321 tree blocks;
322 tree blocks_last;
324 /* The depth of this scope. Used to keep the ->shadowed chain of
325 bindings sorted innermost to outermost. */
326 unsigned int depth : 28;
328 /* True if we are currently filling this scope with parameter
329 declarations. */
330 BOOL_BITFIELD parm_flag : 1;
332 /* True if we saw [*] in this scope. Used to give an error messages
333 if these appears in a function definition. */
334 BOOL_BITFIELD had_vla_unspec : 1;
336 /* True if we already complained about forward parameter decls
337 in this scope. This prevents double warnings on
338 foo (int a; int b; ...) */
339 BOOL_BITFIELD warned_forward_parm_decls : 1;
341 /* True if this is the outermost block scope of a function body.
342 This scope contains the parameters, the local variables declared
343 in the outermost block, and all the labels (except those in
344 nested functions, or declared at block scope with __label__). */
345 BOOL_BITFIELD function_body : 1;
347 /* True means make a BLOCK for this scope no matter what. */
348 BOOL_BITFIELD keep : 1;
351 /* The scope currently in effect. */
353 static GTY(()) struct c_scope *current_scope;
355 /* The innermost function scope. Ordinary (not explicitly declared)
356 labels, bindings to error_mark_node, and the lazily-created
357 bindings of __func__ and its friends get this scope. */
359 static GTY(()) struct c_scope *current_function_scope;
361 /* The C file scope. This is reset for each input translation unit. */
363 static GTY(()) struct c_scope *file_scope;
365 /* The outermost scope. This is used for all declarations with
366 external linkage, and only these, hence the name. */
368 static GTY(()) struct c_scope *external_scope;
370 /* A chain of c_scope structures awaiting reuse. */
372 static GTY((deletable)) struct c_scope *scope_freelist;
374 /* A chain of c_binding structures awaiting reuse. */
376 static GTY((deletable)) struct c_binding *binding_freelist;
378 /* Append VAR to LIST in scope SCOPE. */
379 #define SCOPE_LIST_APPEND(scope, list, decl) do { \
380 struct c_scope *s_ = (scope); \
381 tree d_ = (decl); \
382 if (s_->list##_last) \
383 BLOCK_CHAIN (s_->list##_last) = d_; \
384 else \
385 s_->list = d_; \
386 s_->list##_last = d_; \
387 } while (0)
389 /* Concatenate FROM in scope FSCOPE onto TO in scope TSCOPE. */
390 #define SCOPE_LIST_CONCAT(tscope, to, fscope, from) do { \
391 struct c_scope *t_ = (tscope); \
392 struct c_scope *f_ = (fscope); \
393 if (t_->to##_last) \
394 BLOCK_CHAIN (t_->to##_last) = f_->from; \
395 else \
396 t_->to = f_->from; \
397 t_->to##_last = f_->from##_last; \
398 } while (0)
400 /* True means unconditionally make a BLOCK for the next scope pushed. */
402 static bool keep_next_level_flag;
404 /* True means the next call to push_scope will be the outermost scope
405 of a function body, so do not push a new scope, merely cease
406 expecting parameter decls. */
408 static bool next_is_function_body;
410 /* Forward declarations. */
411 static tree lookup_name_in_scope (tree, struct c_scope *);
412 static tree c_make_fname_decl (tree, int);
413 static tree grokdeclarator (const struct c_declarator *,
414 struct c_declspecs *,
415 enum decl_context, bool, tree *, tree *, tree *,
416 bool *, enum deprecated_states);
417 static tree grokparms (struct c_arg_info *, bool);
418 static void layout_array_type (tree);
420 /* T is a statement. Add it to the statement-tree. This is the
421 C/ObjC version--C++ has a slightly different version of this
422 function. */
424 tree
425 add_stmt (tree t)
427 enum tree_code code = TREE_CODE (t);
429 if (CAN_HAVE_LOCATION_P (t) && code != LABEL_EXPR)
431 if (!EXPR_HAS_LOCATION (t))
432 SET_EXPR_LOCATION (t, input_location);
435 if (code == LABEL_EXPR || code == CASE_LABEL_EXPR)
436 STATEMENT_LIST_HAS_LABEL (cur_stmt_list) = 1;
438 /* Add T to the statement-tree. Non-side-effect statements need to be
439 recorded during statement expressions. */
440 append_to_statement_list_force (t, &cur_stmt_list);
442 return t;
446 void
447 c_print_identifier (FILE *file, tree node, int indent)
449 print_node (file, "symbol", I_SYMBOL_DECL (node), indent + 4);
450 print_node (file, "tag", I_TAG_DECL (node), indent + 4);
451 print_node (file, "label", I_LABEL_DECL (node), indent + 4);
452 if (C_IS_RESERVED_WORD (node) && C_RID_CODE (node) != RID_CXX_COMPAT_WARN)
454 tree rid = ridpointers[C_RID_CODE (node)];
455 indent_to (file, indent + 4);
456 fprintf (file, "rid %p \"%s\"",
457 (void *) rid, IDENTIFIER_POINTER (rid));
461 /* Establish a binding between NAME, an IDENTIFIER_NODE, and DECL,
462 which may be any of several kinds of DECL or TYPE or error_mark_node,
463 in the scope SCOPE. */
464 static void
465 bind (tree name, tree decl, struct c_scope *scope, bool invisible,
466 bool nested, location_t locus)
468 struct c_binding *b, **here;
470 if (binding_freelist)
472 b = binding_freelist;
473 binding_freelist = b->prev;
475 else
476 b = GGC_NEW (struct c_binding);
478 b->shadowed = 0;
479 b->decl = decl;
480 b->id = name;
481 b->depth = scope->depth;
482 b->invisible = invisible;
483 b->nested = nested;
484 b->inner_comp = 0;
485 b->locus = locus;
487 b->type = 0;
489 b->prev = scope->bindings;
490 scope->bindings = b;
492 if (!name)
493 return;
495 switch (TREE_CODE (decl))
497 case LABEL_DECL: here = &I_LABEL_BINDING (name); break;
498 case ENUMERAL_TYPE:
499 case UNION_TYPE:
500 case RECORD_TYPE: here = &I_TAG_BINDING (name); break;
501 case VAR_DECL:
502 case FUNCTION_DECL:
503 case TYPE_DECL:
504 case CONST_DECL:
505 case PARM_DECL:
506 case ERROR_MARK: here = &I_SYMBOL_BINDING (name); break;
508 default:
509 gcc_unreachable ();
512 /* Locate the appropriate place in the chain of shadowed decls
513 to insert this binding. Normally, scope == current_scope and
514 this does nothing. */
515 while (*here && (*here)->depth > scope->depth)
516 here = &(*here)->shadowed;
518 b->shadowed = *here;
519 *here = b;
522 /* Clear the binding structure B, stick it on the binding_freelist,
523 and return the former value of b->prev. This is used by pop_scope
524 and get_parm_info to iterate destructively over all the bindings
525 from a given scope. */
526 static struct c_binding *
527 free_binding_and_advance (struct c_binding *b)
529 struct c_binding *prev = b->prev;
531 memset (b, 0, sizeof (struct c_binding));
532 b->prev = binding_freelist;
533 binding_freelist = b;
535 return prev;
539 /* Hook called at end of compilation to assume 1 elt
540 for a file-scope tentative array defn that wasn't complete before. */
542 void
543 c_finish_incomplete_decl (tree decl)
545 if (TREE_CODE (decl) == VAR_DECL)
547 tree type = TREE_TYPE (decl);
548 if (type != error_mark_node
549 && TREE_CODE (type) == ARRAY_TYPE
550 && !DECL_EXTERNAL (decl)
551 && TYPE_DOMAIN (type) == 0)
553 warning (0, "array %q+D assumed to have one element", decl);
555 complete_array_type (&TREE_TYPE (decl), NULL_TREE, true);
557 layout_decl (decl, 0);
562 /* The Objective-C front-end often needs to determine the current scope. */
564 void *
565 objc_get_current_scope (void)
567 return current_scope;
570 /* The following function is used only by Objective-C. It needs to live here
571 because it accesses the innards of c_scope. */
573 void
574 objc_mark_locals_volatile (void *enclosing_blk)
576 struct c_scope *scope;
577 struct c_binding *b;
579 for (scope = current_scope;
580 scope && scope != enclosing_blk;
581 scope = scope->outer)
583 for (b = scope->bindings; b; b = b->prev)
584 objc_volatilize_decl (b->decl);
586 /* Do not climb up past the current function. */
587 if (scope->function_body)
588 break;
592 /* Nonzero if we are currently in file scope. */
595 global_bindings_p (void)
597 return current_scope == file_scope && !c_override_global_bindings_to_false;
600 void
601 keep_next_level (void)
603 keep_next_level_flag = true;
606 /* Identify this scope as currently being filled with parameters. */
608 void
609 declare_parm_level (void)
611 current_scope->parm_flag = true;
614 void
615 push_scope (void)
617 if (next_is_function_body)
619 /* This is the transition from the parameters to the top level
620 of the function body. These are the same scope
621 (C99 6.2.1p4,6) so we do not push another scope structure.
622 next_is_function_body is set only by store_parm_decls, which
623 in turn is called when and only when we are about to
624 encounter the opening curly brace for the function body.
626 The outermost block of a function always gets a BLOCK node,
627 because the debugging output routines expect that each
628 function has at least one BLOCK. */
629 current_scope->parm_flag = false;
630 current_scope->function_body = true;
631 current_scope->keep = true;
632 current_scope->outer_function = current_function_scope;
633 current_function_scope = current_scope;
635 keep_next_level_flag = false;
636 next_is_function_body = false;
638 else
640 struct c_scope *scope;
641 if (scope_freelist)
643 scope = scope_freelist;
644 scope_freelist = scope->outer;
646 else
647 scope = GGC_CNEW (struct c_scope);
649 scope->keep = keep_next_level_flag;
650 scope->outer = current_scope;
651 scope->depth = current_scope ? (current_scope->depth + 1) : 0;
653 /* Check for scope depth overflow. Unlikely (2^28 == 268,435,456) but
654 possible. */
655 if (current_scope && scope->depth == 0)
657 scope->depth--;
658 sorry ("GCC supports only %u nested scopes", scope->depth);
661 current_scope = scope;
662 keep_next_level_flag = false;
666 /* Set the TYPE_CONTEXT of all of TYPE's variants to CONTEXT. */
668 static void
669 set_type_context (tree type, tree context)
671 for (type = TYPE_MAIN_VARIANT (type); type;
672 type = TYPE_NEXT_VARIANT (type))
673 TYPE_CONTEXT (type) = context;
676 /* Exit a scope. Restore the state of the identifier-decl mappings
677 that were in effect when this scope was entered. Return a BLOCK
678 node containing all the DECLs in this scope that are of interest
679 to debug info generation. */
681 tree
682 pop_scope (void)
684 struct c_scope *scope = current_scope;
685 tree block, context, p;
686 struct c_binding *b;
688 bool functionbody = scope->function_body;
689 bool keep = functionbody || scope->keep || scope->bindings;
691 c_end_vm_scope (scope->depth);
693 /* If appropriate, create a BLOCK to record the decls for the life
694 of this function. */
695 block = 0;
696 if (keep)
698 block = make_node (BLOCK);
699 BLOCK_SUBBLOCKS (block) = scope->blocks;
700 TREE_USED (block) = 1;
702 /* In each subblock, record that this is its superior. */
703 for (p = scope->blocks; p; p = BLOCK_CHAIN (p))
704 BLOCK_SUPERCONTEXT (p) = block;
706 BLOCK_VARS (block) = 0;
709 /* The TYPE_CONTEXTs for all of the tagged types belonging to this
710 scope must be set so that they point to the appropriate
711 construct, i.e. either to the current FUNCTION_DECL node, or
712 else to the BLOCK node we just constructed.
714 Note that for tagged types whose scope is just the formal
715 parameter list for some function type specification, we can't
716 properly set their TYPE_CONTEXTs here, because we don't have a
717 pointer to the appropriate FUNCTION_TYPE node readily available
718 to us. For those cases, the TYPE_CONTEXTs of the relevant tagged
719 type nodes get set in `grokdeclarator' as soon as we have created
720 the FUNCTION_TYPE node which will represent the "scope" for these
721 "parameter list local" tagged types. */
722 if (scope->function_body)
723 context = current_function_decl;
724 else if (scope == file_scope)
726 tree file_decl = build_decl (TRANSLATION_UNIT_DECL, 0, 0);
727 TREE_CHAIN (file_decl) = all_translation_units;
728 all_translation_units = file_decl;
729 context = file_decl;
731 else
732 context = block;
734 /* Clear all bindings in this scope. */
735 for (b = scope->bindings; b; b = free_binding_and_advance (b))
737 p = b->decl;
738 switch (TREE_CODE (p))
740 case LABEL_DECL:
741 /* Warnings for unused labels, errors for undefined labels. */
742 if (TREE_USED (p) && !DECL_INITIAL (p))
744 error ("label %q+D used but not defined", p);
745 DECL_INITIAL (p) = error_mark_node;
747 else
748 warn_for_unused_label (p);
750 /* Labels go in BLOCK_VARS. */
751 TREE_CHAIN (p) = BLOCK_VARS (block);
752 BLOCK_VARS (block) = p;
753 gcc_assert (I_LABEL_BINDING (b->id) == b);
754 I_LABEL_BINDING (b->id) = b->shadowed;
755 break;
757 case ENUMERAL_TYPE:
758 case UNION_TYPE:
759 case RECORD_TYPE:
760 set_type_context (p, context);
762 /* Types may not have tag-names, in which case the type
763 appears in the bindings list with b->id NULL. */
764 if (b->id)
766 gcc_assert (I_TAG_BINDING (b->id) == b);
767 I_TAG_BINDING (b->id) = b->shadowed;
769 break;
771 case FUNCTION_DECL:
772 /* Propagate TREE_ADDRESSABLE from nested functions to their
773 containing functions. */
774 if (!TREE_ASM_WRITTEN (p)
775 && DECL_INITIAL (p) != 0
776 && TREE_ADDRESSABLE (p)
777 && DECL_ABSTRACT_ORIGIN (p) != 0
778 && DECL_ABSTRACT_ORIGIN (p) != p)
779 TREE_ADDRESSABLE (DECL_ABSTRACT_ORIGIN (p)) = 1;
780 if (!DECL_EXTERNAL (p)
781 && !DECL_INITIAL (p)
782 && scope != file_scope
783 && scope != external_scope)
785 error ("nested function %q+D declared but never defined", p);
786 undef_nested_function = true;
788 else if (DECL_DECLARED_INLINE_P (p)
789 && TREE_PUBLIC (p)
790 && !DECL_INITIAL (p))
792 /* C99 6.7.4p6: "a function with external linkage... declared
793 with an inline function specifier ... shall also be defined
794 in the same translation unit." */
795 if (!flag_gnu89_inline)
796 pedwarn (input_location, 0,
797 "inline function %q+D declared but never defined", p);
798 DECL_EXTERNAL (p) = 1;
801 goto common_symbol;
803 case VAR_DECL:
804 /* Warnings for unused variables. */
805 if (!TREE_USED (p)
806 && !TREE_NO_WARNING (p)
807 && !DECL_IN_SYSTEM_HEADER (p)
808 && DECL_NAME (p)
809 && !DECL_ARTIFICIAL (p)
810 && scope != file_scope
811 && scope != external_scope)
812 warning (OPT_Wunused_variable, "unused variable %q+D", p);
814 if (b->inner_comp)
816 error ("type of array %q+D completed incompatibly with"
817 " implicit initialization", p);
820 /* Fall through. */
821 case TYPE_DECL:
822 case CONST_DECL:
823 common_symbol:
824 /* All of these go in BLOCK_VARS, but only if this is the
825 binding in the home scope. */
826 if (!b->nested)
828 TREE_CHAIN (p) = BLOCK_VARS (block);
829 BLOCK_VARS (block) = p;
831 else if (VAR_OR_FUNCTION_DECL_P (p))
833 /* For block local externs add a special
834 DECL_EXTERNAL decl for debug info generation. */
835 tree extp = copy_node (p);
837 DECL_EXTERNAL (extp) = 1;
838 TREE_STATIC (extp) = 0;
839 TREE_PUBLIC (extp) = 1;
840 DECL_INITIAL (extp) = NULL_TREE;
841 DECL_LANG_SPECIFIC (extp) = NULL;
842 DECL_CONTEXT (extp) = current_function_decl;
843 if (TREE_CODE (p) == FUNCTION_DECL)
845 DECL_RESULT (extp) = NULL_TREE;
846 DECL_SAVED_TREE (extp) = NULL_TREE;
847 DECL_STRUCT_FUNCTION (extp) = NULL;
849 if (b->locus != UNKNOWN_LOCATION)
850 DECL_SOURCE_LOCATION (extp) = b->locus;
851 TREE_CHAIN (extp) = BLOCK_VARS (block);
852 BLOCK_VARS (block) = extp;
854 /* If this is the file scope, and we are processing more
855 than one translation unit in this compilation, set
856 DECL_CONTEXT of each decl to the TRANSLATION_UNIT_DECL.
857 This makes same_translation_unit_p work, and causes
858 static declarations to be given disambiguating suffixes. */
859 if (scope == file_scope && num_in_fnames > 1)
861 DECL_CONTEXT (p) = context;
862 if (TREE_CODE (p) == TYPE_DECL)
863 set_type_context (TREE_TYPE (p), context);
866 /* Fall through. */
867 /* Parameters go in DECL_ARGUMENTS, not BLOCK_VARS, and have
868 already been put there by store_parm_decls. Unused-
869 parameter warnings are handled by function.c.
870 error_mark_node obviously does not go in BLOCK_VARS and
871 does not get unused-variable warnings. */
872 case PARM_DECL:
873 case ERROR_MARK:
874 /* It is possible for a decl not to have a name. We get
875 here with b->id NULL in this case. */
876 if (b->id)
878 gcc_assert (I_SYMBOL_BINDING (b->id) == b);
879 I_SYMBOL_BINDING (b->id) = b->shadowed;
880 if (b->shadowed && b->shadowed->type)
881 TREE_TYPE (b->shadowed->decl) = b->shadowed->type;
883 break;
885 default:
886 gcc_unreachable ();
891 /* Dispose of the block that we just made inside some higher level. */
892 if ((scope->function_body || scope == file_scope) && context)
894 DECL_INITIAL (context) = block;
895 BLOCK_SUPERCONTEXT (block) = context;
897 else if (scope->outer)
899 if (block)
900 SCOPE_LIST_APPEND (scope->outer, blocks, block);
901 /* If we did not make a block for the scope just exited, any
902 blocks made for inner scopes must be carried forward so they
903 will later become subblocks of something else. */
904 else if (scope->blocks)
905 SCOPE_LIST_CONCAT (scope->outer, blocks, scope, blocks);
908 /* Pop the current scope, and free the structure for reuse. */
909 current_scope = scope->outer;
910 if (scope->function_body)
911 current_function_scope = scope->outer_function;
913 memset (scope, 0, sizeof (struct c_scope));
914 scope->outer = scope_freelist;
915 scope_freelist = scope;
917 return block;
920 void
921 push_file_scope (void)
923 tree decl;
925 if (file_scope)
926 return;
928 push_scope ();
929 file_scope = current_scope;
931 start_fname_decls ();
933 for (decl = visible_builtins; decl; decl = TREE_CHAIN (decl))
934 bind (DECL_NAME (decl), decl, file_scope,
935 /*invisible=*/false, /*nested=*/true, DECL_SOURCE_LOCATION (decl));
938 void
939 pop_file_scope (void)
941 /* In case there were missing closebraces, get us back to the global
942 binding level. */
943 while (current_scope != file_scope)
944 pop_scope ();
946 /* __FUNCTION__ is defined at file scope (""). This
947 call may not be necessary as my tests indicate it
948 still works without it. */
949 finish_fname_decls ();
951 /* This is the point to write out a PCH if we're doing that.
952 In that case we do not want to do anything else. */
953 if (pch_file)
955 c_common_write_pch ();
956 return;
959 /* Pop off the file scope and close this translation unit. */
960 pop_scope ();
961 file_scope = 0;
963 maybe_apply_pending_pragma_weaks ();
964 cgraph_finalize_compilation_unit ();
968 /* Push a definition or a declaration of struct, union or enum tag "name".
969 "type" should be the type node.
970 We assume that the tag "name" is not already defined.
972 Note that the definition may really be just a forward reference.
973 In that case, the TYPE_SIZE will be zero. */
975 static void
976 pushtag (tree name, tree type)
978 /* Record the identifier as the type's name if it has none. */
979 if (name && !TYPE_NAME (type))
980 TYPE_NAME (type) = name;
981 bind (name, type, current_scope, /*invisible=*/false, /*nested=*/false,
982 UNKNOWN_LOCATION);
984 /* Create a fake NULL-named TYPE_DECL node whose TREE_TYPE will be the
985 tagged type we just added to the current scope. This fake
986 NULL-named TYPE_DECL node helps dwarfout.c to know when it needs
987 to output a representation of a tagged type, and it also gives
988 us a convenient place to record the "scope start" address for the
989 tagged type. */
991 TYPE_STUB_DECL (type) = pushdecl (build_decl (TYPE_DECL, NULL_TREE, type));
993 /* An approximation for now, so we can tell this is a function-scope tag.
994 This will be updated in pop_scope. */
995 TYPE_CONTEXT (type) = DECL_CONTEXT (TYPE_STUB_DECL (type));
998 /* Subroutine of compare_decls. Allow harmless mismatches in return
999 and argument types provided that the type modes match. This function
1000 return a unified type given a suitable match, and 0 otherwise. */
1002 static tree
1003 match_builtin_function_types (tree newtype, tree oldtype)
1005 tree newrettype, oldrettype;
1006 tree newargs, oldargs;
1007 tree trytype, tryargs;
1009 /* Accept the return type of the new declaration if same modes. */
1010 oldrettype = TREE_TYPE (oldtype);
1011 newrettype = TREE_TYPE (newtype);
1013 if (TYPE_MODE (oldrettype) != TYPE_MODE (newrettype))
1014 return 0;
1016 oldargs = TYPE_ARG_TYPES (oldtype);
1017 newargs = TYPE_ARG_TYPES (newtype);
1018 tryargs = newargs;
1020 while (oldargs || newargs)
1022 if (!oldargs
1023 || !newargs
1024 || !TREE_VALUE (oldargs)
1025 || !TREE_VALUE (newargs)
1026 || TYPE_MODE (TREE_VALUE (oldargs))
1027 != TYPE_MODE (TREE_VALUE (newargs)))
1028 return 0;
1030 oldargs = TREE_CHAIN (oldargs);
1031 newargs = TREE_CHAIN (newargs);
1034 trytype = build_function_type (newrettype, tryargs);
1035 return build_type_attribute_variant (trytype, TYPE_ATTRIBUTES (oldtype));
1038 /* Subroutine of diagnose_mismatched_decls. Check for function type
1039 mismatch involving an empty arglist vs a nonempty one and give clearer
1040 diagnostics. */
1041 static void
1042 diagnose_arglist_conflict (tree newdecl, tree olddecl,
1043 tree newtype, tree oldtype)
1045 tree t;
1047 if (TREE_CODE (olddecl) != FUNCTION_DECL
1048 || !comptypes (TREE_TYPE (oldtype), TREE_TYPE (newtype))
1049 || !((TYPE_ARG_TYPES (oldtype) == 0 && DECL_INITIAL (olddecl) == 0)
1051 (TYPE_ARG_TYPES (newtype) == 0 && DECL_INITIAL (newdecl) == 0)))
1052 return;
1054 t = TYPE_ARG_TYPES (oldtype);
1055 if (t == 0)
1056 t = TYPE_ARG_TYPES (newtype);
1057 for (; t; t = TREE_CHAIN (t))
1059 tree type = TREE_VALUE (t);
1061 if (TREE_CHAIN (t) == 0
1062 && TYPE_MAIN_VARIANT (type) != void_type_node)
1064 inform (input_location, "a parameter list with an ellipsis can%'t match "
1065 "an empty parameter name list declaration");
1066 break;
1069 if (c_type_promotes_to (type) != type)
1071 inform (input_location, "an argument type that has a default promotion can%'t match "
1072 "an empty parameter name list declaration");
1073 break;
1078 /* Another subroutine of diagnose_mismatched_decls. OLDDECL is an
1079 old-style function definition, NEWDECL is a prototype declaration.
1080 Diagnose inconsistencies in the argument list. Returns TRUE if
1081 the prototype is compatible, FALSE if not. */
1082 static bool
1083 validate_proto_after_old_defn (tree newdecl, tree newtype, tree oldtype)
1085 tree newargs, oldargs;
1086 int i;
1088 #define END_OF_ARGLIST(t) ((t) == void_type_node)
1090 oldargs = TYPE_ACTUAL_ARG_TYPES (oldtype);
1091 newargs = TYPE_ARG_TYPES (newtype);
1092 i = 1;
1094 for (;;)
1096 tree oldargtype = TREE_VALUE (oldargs);
1097 tree newargtype = TREE_VALUE (newargs);
1099 if (oldargtype == error_mark_node || newargtype == error_mark_node)
1100 return false;
1102 oldargtype = TYPE_MAIN_VARIANT (oldargtype);
1103 newargtype = TYPE_MAIN_VARIANT (newargtype);
1105 if (END_OF_ARGLIST (oldargtype) && END_OF_ARGLIST (newargtype))
1106 break;
1108 /* Reaching the end of just one list means the two decls don't
1109 agree on the number of arguments. */
1110 if (END_OF_ARGLIST (oldargtype))
1112 error ("prototype for %q+D declares more arguments "
1113 "than previous old-style definition", newdecl);
1114 return false;
1116 else if (END_OF_ARGLIST (newargtype))
1118 error ("prototype for %q+D declares fewer arguments "
1119 "than previous old-style definition", newdecl);
1120 return false;
1123 /* Type for passing arg must be consistent with that declared
1124 for the arg. */
1125 else if (!comptypes (oldargtype, newargtype))
1127 error ("prototype for %q+D declares argument %d"
1128 " with incompatible type",
1129 newdecl, i);
1130 return false;
1133 oldargs = TREE_CHAIN (oldargs);
1134 newargs = TREE_CHAIN (newargs);
1135 i++;
1138 /* If we get here, no errors were found, but do issue a warning
1139 for this poor-style construct. */
1140 warning (0, "prototype for %q+D follows non-prototype definition",
1141 newdecl);
1142 return true;
1143 #undef END_OF_ARGLIST
1146 /* Subroutine of diagnose_mismatched_decls. Report the location of DECL,
1147 first in a pair of mismatched declarations, using the diagnostic
1148 function DIAG. */
1149 static void
1150 locate_old_decl (tree decl)
1152 if (TREE_CODE (decl) == FUNCTION_DECL && DECL_BUILT_IN (decl))
1154 else if (DECL_INITIAL (decl))
1155 inform (input_location, "previous definition of %q+D was here", decl);
1156 else if (C_DECL_IMPLICIT (decl))
1157 inform (input_location, "previous implicit declaration of %q+D was here", decl);
1158 else
1159 inform (input_location, "previous declaration of %q+D was here", decl);
1162 /* Subroutine of duplicate_decls. Compare NEWDECL to OLDDECL.
1163 Returns true if the caller should proceed to merge the two, false
1164 if OLDDECL should simply be discarded. As a side effect, issues
1165 all necessary diagnostics for invalid or poor-style combinations.
1166 If it returns true, writes the types of NEWDECL and OLDDECL to
1167 *NEWTYPEP and *OLDTYPEP - these may have been adjusted from
1168 TREE_TYPE (NEWDECL, OLDDECL) respectively. */
1170 static bool
1171 diagnose_mismatched_decls (tree newdecl, tree olddecl,
1172 tree *newtypep, tree *oldtypep)
1174 tree newtype, oldtype;
1175 bool pedwarned = false;
1176 bool warned = false;
1177 bool retval = true;
1179 #define DECL_EXTERN_INLINE(DECL) (DECL_DECLARED_INLINE_P (DECL) \
1180 && DECL_EXTERNAL (DECL))
1182 /* If we have error_mark_node for either decl or type, just discard
1183 the previous decl - we're in an error cascade already. */
1184 if (olddecl == error_mark_node || newdecl == error_mark_node)
1185 return false;
1186 *oldtypep = oldtype = TREE_TYPE (olddecl);
1187 *newtypep = newtype = TREE_TYPE (newdecl);
1188 if (oldtype == error_mark_node || newtype == error_mark_node)
1189 return false;
1191 /* Two different categories of symbol altogether. This is an error
1192 unless OLDDECL is a builtin. OLDDECL will be discarded in any case. */
1193 if (TREE_CODE (olddecl) != TREE_CODE (newdecl))
1195 if (!(TREE_CODE (olddecl) == FUNCTION_DECL
1196 && DECL_BUILT_IN (olddecl)
1197 && !C_DECL_DECLARED_BUILTIN (olddecl)))
1199 error ("%q+D redeclared as different kind of symbol", newdecl);
1200 locate_old_decl (olddecl);
1202 else if (TREE_PUBLIC (newdecl))
1203 warning (0, "built-in function %q+D declared as non-function",
1204 newdecl);
1205 else
1206 warning (OPT_Wshadow, "declaration of %q+D shadows "
1207 "a built-in function", newdecl);
1208 return false;
1211 /* Enumerators have no linkage, so may only be declared once in a
1212 given scope. */
1213 if (TREE_CODE (olddecl) == CONST_DECL)
1215 error ("redeclaration of enumerator %q+D", newdecl);
1216 locate_old_decl (olddecl);
1217 return false;
1220 if (!comptypes (oldtype, newtype))
1222 if (TREE_CODE (olddecl) == FUNCTION_DECL
1223 && DECL_BUILT_IN (olddecl) && !C_DECL_DECLARED_BUILTIN (olddecl))
1225 /* Accept harmless mismatch in function types.
1226 This is for the ffs and fprintf builtins. */
1227 tree trytype = match_builtin_function_types (newtype, oldtype);
1229 if (trytype && comptypes (newtype, trytype))
1230 *oldtypep = oldtype = trytype;
1231 else
1233 /* If types don't match for a built-in, throw away the
1234 built-in. No point in calling locate_old_decl here, it
1235 won't print anything. */
1236 warning (0, "conflicting types for built-in function %q+D",
1237 newdecl);
1238 return false;
1241 else if (TREE_CODE (olddecl) == FUNCTION_DECL
1242 && DECL_IS_BUILTIN (olddecl))
1244 /* A conflicting function declaration for a predeclared
1245 function that isn't actually built in. Objective C uses
1246 these. The new declaration silently overrides everything
1247 but the volatility (i.e. noreturn) indication. See also
1248 below. FIXME: Make Objective C use normal builtins. */
1249 TREE_THIS_VOLATILE (newdecl) |= TREE_THIS_VOLATILE (olddecl);
1250 return false;
1252 /* Permit void foo (...) to match int foo (...) if the latter is
1253 the definition and implicit int was used. See
1254 c-torture/compile/920625-2.c. */
1255 else if (TREE_CODE (newdecl) == FUNCTION_DECL && DECL_INITIAL (newdecl)
1256 && TYPE_MAIN_VARIANT (TREE_TYPE (oldtype)) == void_type_node
1257 && TYPE_MAIN_VARIANT (TREE_TYPE (newtype)) == integer_type_node
1258 && C_FUNCTION_IMPLICIT_INT (newdecl) && !DECL_INITIAL (olddecl))
1260 pedwarned = pedwarn (input_location, 0,
1261 "conflicting types for %q+D", newdecl);
1262 /* Make sure we keep void as the return type. */
1263 TREE_TYPE (newdecl) = *newtypep = newtype = oldtype;
1264 C_FUNCTION_IMPLICIT_INT (newdecl) = 0;
1266 /* Permit void foo (...) to match an earlier call to foo (...) with
1267 no declared type (thus, implicitly int). */
1268 else if (TREE_CODE (newdecl) == FUNCTION_DECL
1269 && TYPE_MAIN_VARIANT (TREE_TYPE (newtype)) == void_type_node
1270 && TYPE_MAIN_VARIANT (TREE_TYPE (oldtype)) == integer_type_node
1271 && C_DECL_IMPLICIT (olddecl) && !DECL_INITIAL (olddecl))
1273 pedwarned = pedwarn (input_location, 0,
1274 "conflicting types for %q+D", newdecl);
1275 /* Make sure we keep void as the return type. */
1276 TREE_TYPE (olddecl) = *oldtypep = oldtype = newtype;
1278 else
1280 if (TYPE_QUALS (newtype) != TYPE_QUALS (oldtype))
1281 error ("conflicting type qualifiers for %q+D", newdecl);
1282 else
1283 error ("conflicting types for %q+D", newdecl);
1284 diagnose_arglist_conflict (newdecl, olddecl, newtype, oldtype);
1285 locate_old_decl (olddecl);
1286 return false;
1290 /* Redeclaration of a type is a constraint violation (6.7.2.3p1),
1291 but silently ignore the redeclaration if either is in a system
1292 header. (Conflicting redeclarations were handled above.) */
1293 if (TREE_CODE (newdecl) == TYPE_DECL)
1295 if (DECL_IN_SYSTEM_HEADER (newdecl)
1296 || DECL_IN_SYSTEM_HEADER (olddecl)
1297 || TREE_NO_WARNING (newdecl)
1298 || TREE_NO_WARNING (olddecl))
1299 return true; /* Allow OLDDECL to continue in use. */
1301 error ("redefinition of typedef %q+D", newdecl);
1302 locate_old_decl (olddecl);
1303 return false;
1306 /* Function declarations can either be 'static' or 'extern' (no
1307 qualifier is equivalent to 'extern' - C99 6.2.2p5) and therefore
1308 can never conflict with each other on account of linkage
1309 (6.2.2p4). Multiple definitions are not allowed (6.9p3,5) but
1310 gnu89 mode permits two definitions if one is 'extern inline' and
1311 one is not. The non- extern-inline definition supersedes the
1312 extern-inline definition. */
1314 else if (TREE_CODE (newdecl) == FUNCTION_DECL)
1316 /* If you declare a built-in function name as static, or
1317 define the built-in with an old-style definition (so we
1318 can't validate the argument list) the built-in definition is
1319 overridden, but optionally warn this was a bad choice of name. */
1320 if (DECL_BUILT_IN (olddecl)
1321 && !C_DECL_DECLARED_BUILTIN (olddecl)
1322 && (!TREE_PUBLIC (newdecl)
1323 || (DECL_INITIAL (newdecl)
1324 && !TYPE_ARG_TYPES (TREE_TYPE (newdecl)))))
1326 warning (OPT_Wshadow, "declaration of %q+D shadows "
1327 "a built-in function", newdecl);
1328 /* Discard the old built-in function. */
1329 return false;
1332 if (DECL_INITIAL (newdecl))
1334 if (DECL_INITIAL (olddecl))
1336 /* If both decls are in the same TU and the new declaration
1337 isn't overriding an extern inline reject the new decl.
1338 In c99, no overriding is allowed in the same translation
1339 unit. */
1340 if ((!DECL_EXTERN_INLINE (olddecl)
1341 || DECL_EXTERN_INLINE (newdecl)
1342 || (!flag_gnu89_inline
1343 && (!DECL_DECLARED_INLINE_P (olddecl)
1344 || !lookup_attribute ("gnu_inline",
1345 DECL_ATTRIBUTES (olddecl)))
1346 && (!DECL_DECLARED_INLINE_P (newdecl)
1347 || !lookup_attribute ("gnu_inline",
1348 DECL_ATTRIBUTES (newdecl))))
1350 && same_translation_unit_p (newdecl, olddecl))
1352 error ("redefinition of %q+D", newdecl);
1353 locate_old_decl (olddecl);
1354 return false;
1358 /* If we have a prototype after an old-style function definition,
1359 the argument types must be checked specially. */
1360 else if (DECL_INITIAL (olddecl)
1361 && !TYPE_ARG_TYPES (oldtype) && TYPE_ARG_TYPES (newtype)
1362 && TYPE_ACTUAL_ARG_TYPES (oldtype)
1363 && !validate_proto_after_old_defn (newdecl, newtype, oldtype))
1365 locate_old_decl (olddecl);
1366 return false;
1368 /* A non-static declaration (even an "extern") followed by a
1369 static declaration is undefined behavior per C99 6.2.2p3-5,7.
1370 The same is true for a static forward declaration at block
1371 scope followed by a non-static declaration/definition at file
1372 scope. Static followed by non-static at the same scope is
1373 not undefined behavior, and is the most convenient way to get
1374 some effects (see e.g. what unwind-dw2-fde-glibc.c does to
1375 the definition of _Unwind_Find_FDE in unwind-dw2-fde.c), but
1376 we do diagnose it if -Wtraditional. */
1377 if (TREE_PUBLIC (olddecl) && !TREE_PUBLIC (newdecl))
1379 /* Two exceptions to the rule. If olddecl is an extern
1380 inline, or a predeclared function that isn't actually
1381 built in, newdecl silently overrides olddecl. The latter
1382 occur only in Objective C; see also above. (FIXME: Make
1383 Objective C use normal builtins.) */
1384 if (!DECL_IS_BUILTIN (olddecl)
1385 && !DECL_EXTERN_INLINE (olddecl))
1387 error ("static declaration of %q+D follows "
1388 "non-static declaration", newdecl);
1389 locate_old_decl (olddecl);
1391 return false;
1393 else if (TREE_PUBLIC (newdecl) && !TREE_PUBLIC (olddecl))
1395 if (DECL_CONTEXT (olddecl))
1397 error ("non-static declaration of %q+D follows "
1398 "static declaration", newdecl);
1399 locate_old_decl (olddecl);
1400 return false;
1402 else if (warn_traditional)
1404 warned |= warning (OPT_Wtraditional,
1405 "non-static declaration of %q+D "
1406 "follows static declaration", newdecl);
1410 /* Make sure gnu_inline attribute is either not present, or
1411 present on all inline decls. */
1412 if (DECL_DECLARED_INLINE_P (olddecl)
1413 && DECL_DECLARED_INLINE_P (newdecl))
1415 bool newa = lookup_attribute ("gnu_inline",
1416 DECL_ATTRIBUTES (newdecl)) != NULL;
1417 bool olda = lookup_attribute ("gnu_inline",
1418 DECL_ATTRIBUTES (olddecl)) != NULL;
1419 if (newa != olda)
1421 error ("%<gnu_inline%> attribute present on %q+D",
1422 newa ? newdecl : olddecl);
1423 error ("%Jbut not here", newa ? olddecl : newdecl);
1427 else if (TREE_CODE (newdecl) == VAR_DECL)
1429 /* Only variables can be thread-local, and all declarations must
1430 agree on this property. */
1431 if (C_DECL_THREADPRIVATE_P (olddecl) && !DECL_THREAD_LOCAL_P (newdecl))
1433 /* Nothing to check. Since OLDDECL is marked threadprivate
1434 and NEWDECL does not have a thread-local attribute, we
1435 will merge the threadprivate attribute into NEWDECL. */
1438 else if (DECL_THREAD_LOCAL_P (newdecl) != DECL_THREAD_LOCAL_P (olddecl))
1440 if (DECL_THREAD_LOCAL_P (newdecl))
1441 error ("thread-local declaration of %q+D follows "
1442 "non-thread-local declaration", newdecl);
1443 else
1444 error ("non-thread-local declaration of %q+D follows "
1445 "thread-local declaration", newdecl);
1447 locate_old_decl (olddecl);
1448 return false;
1451 /* Multiple initialized definitions are not allowed (6.9p3,5). */
1452 if (DECL_INITIAL (newdecl) && DECL_INITIAL (olddecl))
1454 error ("redefinition of %q+D", newdecl);
1455 locate_old_decl (olddecl);
1456 return false;
1459 /* Objects declared at file scope: if the first declaration had
1460 external linkage (even if it was an external reference) the
1461 second must have external linkage as well, or the behavior is
1462 undefined. If the first declaration had internal linkage, then
1463 the second must too, or else be an external reference (in which
1464 case the composite declaration still has internal linkage).
1465 As for function declarations, we warn about the static-then-
1466 extern case only for -Wtraditional. See generally 6.2.2p3-5,7. */
1467 if (DECL_FILE_SCOPE_P (newdecl)
1468 && TREE_PUBLIC (newdecl) != TREE_PUBLIC (olddecl))
1470 if (DECL_EXTERNAL (newdecl))
1472 if (!DECL_FILE_SCOPE_P (olddecl))
1474 error ("extern declaration of %q+D follows "
1475 "declaration with no linkage", newdecl);
1476 locate_old_decl (olddecl);
1477 return false;
1479 else if (warn_traditional)
1481 warned |= warning (OPT_Wtraditional,
1482 "non-static declaration of %q+D "
1483 "follows static declaration", newdecl);
1486 else
1488 if (TREE_PUBLIC (newdecl))
1489 error ("non-static declaration of %q+D follows "
1490 "static declaration", newdecl);
1491 else
1492 error ("static declaration of %q+D follows "
1493 "non-static declaration", newdecl);
1495 locate_old_decl (olddecl);
1496 return false;
1499 /* Two objects with the same name declared at the same block
1500 scope must both be external references (6.7p3). */
1501 else if (!DECL_FILE_SCOPE_P (newdecl))
1503 if (DECL_EXTERNAL (newdecl))
1505 /* Extern with initializer at block scope, which will
1506 already have received an error. */
1508 else if (DECL_EXTERNAL (olddecl))
1510 error ("declaration of %q+D with no linkage follows "
1511 "extern declaration", newdecl);
1512 locate_old_decl (olddecl);
1514 else
1516 error ("redeclaration of %q+D with no linkage", newdecl);
1517 locate_old_decl (olddecl);
1520 return false;
1524 /* warnings */
1525 /* All decls must agree on a visibility. */
1526 if (CODE_CONTAINS_STRUCT (TREE_CODE (newdecl), TS_DECL_WITH_VIS)
1527 && DECL_VISIBILITY_SPECIFIED (newdecl) && DECL_VISIBILITY_SPECIFIED (olddecl)
1528 && DECL_VISIBILITY (newdecl) != DECL_VISIBILITY (olddecl))
1530 warned |= warning (0, "redeclaration of %q+D with different visibility "
1531 "(old visibility preserved)", newdecl);
1534 if (TREE_CODE (newdecl) == FUNCTION_DECL)
1536 /* Diagnose inline __attribute__ ((noinline)) which is silly. */
1537 if (DECL_DECLARED_INLINE_P (newdecl)
1538 && lookup_attribute ("noinline", DECL_ATTRIBUTES (olddecl)))
1540 warned |= warning (OPT_Wattributes,
1541 "inline declaration of %qD follows "
1542 "declaration with attribute noinline", newdecl);
1544 else if (DECL_DECLARED_INLINE_P (olddecl)
1545 && lookup_attribute ("noinline", DECL_ATTRIBUTES (newdecl)))
1547 warned |= warning (OPT_Wattributes,
1548 "declaration of %q+D with attribute "
1549 "noinline follows inline declaration ", newdecl);
1552 else /* PARM_DECL, VAR_DECL */
1554 /* Redeclaration of a parameter is a constraint violation (this is
1555 not explicitly stated, but follows from C99 6.7p3 [no more than
1556 one declaration of the same identifier with no linkage in the
1557 same scope, except type tags] and 6.2.2p6 [parameters have no
1558 linkage]). We must check for a forward parameter declaration,
1559 indicated by TREE_ASM_WRITTEN on the old declaration - this is
1560 an extension, the mandatory diagnostic for which is handled by
1561 mark_forward_parm_decls. */
1563 if (TREE_CODE (newdecl) == PARM_DECL
1564 && (!TREE_ASM_WRITTEN (olddecl) || TREE_ASM_WRITTEN (newdecl)))
1566 error ("redefinition of parameter %q+D", newdecl);
1567 locate_old_decl (olddecl);
1568 return false;
1572 /* Optional warning for completely redundant decls. */
1573 if (!warned && !pedwarned
1574 && warn_redundant_decls
1575 /* Don't warn about a function declaration followed by a
1576 definition. */
1577 && !(TREE_CODE (newdecl) == FUNCTION_DECL
1578 && DECL_INITIAL (newdecl) && !DECL_INITIAL (olddecl))
1579 /* Don't warn about redundant redeclarations of builtins. */
1580 && !(TREE_CODE (newdecl) == FUNCTION_DECL
1581 && !DECL_BUILT_IN (newdecl)
1582 && DECL_BUILT_IN (olddecl)
1583 && !C_DECL_DECLARED_BUILTIN (olddecl))
1584 /* Don't warn about an extern followed by a definition. */
1585 && !(DECL_EXTERNAL (olddecl) && !DECL_EXTERNAL (newdecl))
1586 /* Don't warn about forward parameter decls. */
1587 && !(TREE_CODE (newdecl) == PARM_DECL
1588 && TREE_ASM_WRITTEN (olddecl) && !TREE_ASM_WRITTEN (newdecl))
1589 /* Don't warn about a variable definition following a declaration. */
1590 && !(TREE_CODE (newdecl) == VAR_DECL
1591 && DECL_INITIAL (newdecl) && !DECL_INITIAL (olddecl)))
1593 warned = warning (OPT_Wredundant_decls, "redundant redeclaration of %q+D",
1594 newdecl);
1597 /* Report location of previous decl/defn. */
1598 if (warned || pedwarned)
1599 locate_old_decl (olddecl);
1601 #undef DECL_EXTERN_INLINE
1603 return retval;
1606 /* Subroutine of duplicate_decls. NEWDECL has been found to be
1607 consistent with OLDDECL, but carries new information. Merge the
1608 new information into OLDDECL. This function issues no
1609 diagnostics. */
1611 static void
1612 merge_decls (tree newdecl, tree olddecl, tree newtype, tree oldtype)
1614 bool new_is_definition = (TREE_CODE (newdecl) == FUNCTION_DECL
1615 && DECL_INITIAL (newdecl) != 0);
1616 bool new_is_prototype = (TREE_CODE (newdecl) == FUNCTION_DECL
1617 && TYPE_ARG_TYPES (TREE_TYPE (newdecl)) != 0);
1618 bool old_is_prototype = (TREE_CODE (olddecl) == FUNCTION_DECL
1619 && TYPE_ARG_TYPES (TREE_TYPE (olddecl)) != 0);
1620 bool extern_changed = false;
1622 /* For real parm decl following a forward decl, rechain the old decl
1623 in its new location and clear TREE_ASM_WRITTEN (it's not a
1624 forward decl anymore). */
1625 if (TREE_CODE (newdecl) == PARM_DECL
1626 && TREE_ASM_WRITTEN (olddecl) && !TREE_ASM_WRITTEN (newdecl))
1628 struct c_binding *b, **here;
1630 for (here = &current_scope->bindings; *here; here = &(*here)->prev)
1631 if ((*here)->decl == olddecl)
1632 goto found;
1633 gcc_unreachable ();
1635 found:
1636 b = *here;
1637 *here = b->prev;
1638 b->prev = current_scope->bindings;
1639 current_scope->bindings = b;
1641 TREE_ASM_WRITTEN (olddecl) = 0;
1644 DECL_ATTRIBUTES (newdecl)
1645 = targetm.merge_decl_attributes (olddecl, newdecl);
1647 /* Merge the data types specified in the two decls. */
1648 TREE_TYPE (newdecl)
1649 = TREE_TYPE (olddecl)
1650 = composite_type (newtype, oldtype);
1652 /* Lay the type out, unless already done. */
1653 if (!comptypes (oldtype, TREE_TYPE (newdecl)))
1655 if (TREE_TYPE (newdecl) != error_mark_node)
1656 layout_type (TREE_TYPE (newdecl));
1657 if (TREE_CODE (newdecl) != FUNCTION_DECL
1658 && TREE_CODE (newdecl) != TYPE_DECL
1659 && TREE_CODE (newdecl) != CONST_DECL)
1660 layout_decl (newdecl, 0);
1662 else
1664 /* Since the type is OLDDECL's, make OLDDECL's size go with. */
1665 DECL_SIZE (newdecl) = DECL_SIZE (olddecl);
1666 DECL_SIZE_UNIT (newdecl) = DECL_SIZE_UNIT (olddecl);
1667 DECL_MODE (newdecl) = DECL_MODE (olddecl);
1668 if (DECL_ALIGN (olddecl) > DECL_ALIGN (newdecl))
1670 DECL_ALIGN (newdecl) = DECL_ALIGN (olddecl);
1671 DECL_USER_ALIGN (newdecl) |= DECL_USER_ALIGN (olddecl);
1675 /* Keep the old rtl since we can safely use it. */
1676 if (HAS_RTL_P (olddecl))
1677 COPY_DECL_RTL (olddecl, newdecl);
1679 /* Merge the type qualifiers. */
1680 if (TREE_READONLY (newdecl))
1681 TREE_READONLY (olddecl) = 1;
1683 if (TREE_THIS_VOLATILE (newdecl))
1684 TREE_THIS_VOLATILE (olddecl) = 1;
1686 /* Merge deprecatedness. */
1687 if (TREE_DEPRECATED (newdecl))
1688 TREE_DEPRECATED (olddecl) = 1;
1690 /* If a decl is in a system header and the other isn't, keep the one on the
1691 system header. Otherwise, keep source location of definition rather than
1692 declaration and of prototype rather than non-prototype unless that
1693 prototype is built-in. */
1694 if (CODE_CONTAINS_STRUCT (TREE_CODE (olddecl), TS_DECL_WITH_VIS)
1695 && DECL_IN_SYSTEM_HEADER (olddecl)
1696 && !DECL_IN_SYSTEM_HEADER (newdecl) )
1697 DECL_SOURCE_LOCATION (newdecl) = DECL_SOURCE_LOCATION (olddecl);
1698 else if (CODE_CONTAINS_STRUCT (TREE_CODE (olddecl), TS_DECL_WITH_VIS)
1699 && DECL_IN_SYSTEM_HEADER (newdecl)
1700 && !DECL_IN_SYSTEM_HEADER (olddecl))
1701 DECL_SOURCE_LOCATION (olddecl) = DECL_SOURCE_LOCATION (newdecl);
1702 else if ((DECL_INITIAL (newdecl) == 0 && DECL_INITIAL (olddecl) != 0)
1703 || (old_is_prototype && !new_is_prototype
1704 && !C_DECL_BUILTIN_PROTOTYPE (olddecl)))
1705 DECL_SOURCE_LOCATION (newdecl) = DECL_SOURCE_LOCATION (olddecl);
1707 /* Merge the initialization information. */
1708 if (DECL_INITIAL (newdecl) == 0)
1709 DECL_INITIAL (newdecl) = DECL_INITIAL (olddecl);
1711 /* Merge the threadprivate attribute. */
1712 if (TREE_CODE (olddecl) == VAR_DECL && C_DECL_THREADPRIVATE_P (olddecl))
1714 DECL_TLS_MODEL (newdecl) = DECL_TLS_MODEL (olddecl);
1715 C_DECL_THREADPRIVATE_P (newdecl) = 1;
1718 if (CODE_CONTAINS_STRUCT (TREE_CODE (olddecl), TS_DECL_WITH_VIS))
1720 /* Merge the section attribute.
1721 We want to issue an error if the sections conflict but that
1722 must be done later in decl_attributes since we are called
1723 before attributes are assigned. */
1724 if (DECL_SECTION_NAME (newdecl) == NULL_TREE)
1725 DECL_SECTION_NAME (newdecl) = DECL_SECTION_NAME (olddecl);
1727 /* Copy the assembler name.
1728 Currently, it can only be defined in the prototype. */
1729 COPY_DECL_ASSEMBLER_NAME (olddecl, newdecl);
1731 /* Use visibility of whichever declaration had it specified */
1732 if (DECL_VISIBILITY_SPECIFIED (olddecl))
1734 DECL_VISIBILITY (newdecl) = DECL_VISIBILITY (olddecl);
1735 DECL_VISIBILITY_SPECIFIED (newdecl) = 1;
1738 if (TREE_CODE (newdecl) == FUNCTION_DECL)
1740 DECL_STATIC_CONSTRUCTOR(newdecl) |= DECL_STATIC_CONSTRUCTOR(olddecl);
1741 DECL_STATIC_DESTRUCTOR (newdecl) |= DECL_STATIC_DESTRUCTOR (olddecl);
1742 DECL_NO_LIMIT_STACK (newdecl) |= DECL_NO_LIMIT_STACK (olddecl);
1743 DECL_NO_INSTRUMENT_FUNCTION_ENTRY_EXIT (newdecl)
1744 |= DECL_NO_INSTRUMENT_FUNCTION_ENTRY_EXIT (olddecl);
1745 TREE_THIS_VOLATILE (newdecl) |= TREE_THIS_VOLATILE (olddecl);
1746 DECL_IS_MALLOC (newdecl) |= DECL_IS_MALLOC (olddecl);
1747 DECL_IS_OPERATOR_NEW (newdecl) |= DECL_IS_OPERATOR_NEW (olddecl);
1748 TREE_READONLY (newdecl) |= TREE_READONLY (olddecl);
1749 DECL_PURE_P (newdecl) |= DECL_PURE_P (olddecl);
1750 DECL_IS_NOVOPS (newdecl) |= DECL_IS_NOVOPS (olddecl);
1753 /* Merge the storage class information. */
1754 merge_weak (newdecl, olddecl);
1756 /* For functions, static overrides non-static. */
1757 if (TREE_CODE (newdecl) == FUNCTION_DECL)
1759 TREE_PUBLIC (newdecl) &= TREE_PUBLIC (olddecl);
1760 /* This is since we don't automatically
1761 copy the attributes of NEWDECL into OLDDECL. */
1762 TREE_PUBLIC (olddecl) = TREE_PUBLIC (newdecl);
1763 /* If this clears `static', clear it in the identifier too. */
1764 if (!TREE_PUBLIC (olddecl))
1765 TREE_PUBLIC (DECL_NAME (olddecl)) = 0;
1769 /* In c99, 'extern' declaration before (or after) 'inline' means this
1770 function is not DECL_EXTERNAL, unless 'gnu_inline' attribute
1771 is present. */
1772 if (TREE_CODE (newdecl) == FUNCTION_DECL
1773 && !flag_gnu89_inline
1774 && (DECL_DECLARED_INLINE_P (newdecl)
1775 || DECL_DECLARED_INLINE_P (olddecl))
1776 && (!DECL_DECLARED_INLINE_P (newdecl)
1777 || !DECL_DECLARED_INLINE_P (olddecl)
1778 || !DECL_EXTERNAL (olddecl))
1779 && DECL_EXTERNAL (newdecl)
1780 && !lookup_attribute ("gnu_inline", DECL_ATTRIBUTES (newdecl))
1781 && !current_function_decl)
1782 DECL_EXTERNAL (newdecl) = 0;
1784 if (DECL_EXTERNAL (newdecl))
1786 TREE_STATIC (newdecl) = TREE_STATIC (olddecl);
1787 DECL_EXTERNAL (newdecl) = DECL_EXTERNAL (olddecl);
1789 /* An extern decl does not override previous storage class. */
1790 TREE_PUBLIC (newdecl) = TREE_PUBLIC (olddecl);
1791 if (!DECL_EXTERNAL (newdecl))
1793 DECL_CONTEXT (newdecl) = DECL_CONTEXT (olddecl);
1794 DECL_COMMON (newdecl) = DECL_COMMON (olddecl);
1797 else
1799 TREE_STATIC (olddecl) = TREE_STATIC (newdecl);
1800 TREE_PUBLIC (olddecl) = TREE_PUBLIC (newdecl);
1803 if (TREE_CODE (newdecl) == FUNCTION_DECL)
1805 /* If we're redefining a function previously defined as extern
1806 inline, make sure we emit debug info for the inline before we
1807 throw it away, in case it was inlined into a function that
1808 hasn't been written out yet. */
1809 if (new_is_definition && DECL_INITIAL (olddecl))
1810 /* The new defn must not be inline. */
1811 DECL_UNINLINABLE (newdecl) = 1;
1812 else
1814 /* If either decl says `inline', this fn is inline, unless
1815 its definition was passed already. */
1816 if (DECL_DECLARED_INLINE_P (newdecl)
1817 || DECL_DECLARED_INLINE_P (olddecl))
1818 DECL_DECLARED_INLINE_P (newdecl) = 1;
1820 DECL_UNINLINABLE (newdecl) = DECL_UNINLINABLE (olddecl)
1821 = (DECL_UNINLINABLE (newdecl) || DECL_UNINLINABLE (olddecl));
1823 DECL_DISREGARD_INLINE_LIMITS (newdecl)
1824 = DECL_DISREGARD_INLINE_LIMITS (olddecl)
1825 = (DECL_DISREGARD_INLINE_LIMITS (newdecl)
1826 || DECL_DISREGARD_INLINE_LIMITS (olddecl));
1829 if (DECL_BUILT_IN (olddecl))
1831 /* If redeclaring a builtin function, it stays built in.
1832 But it gets tagged as having been declared. */
1833 DECL_BUILT_IN_CLASS (newdecl) = DECL_BUILT_IN_CLASS (olddecl);
1834 DECL_FUNCTION_CODE (newdecl) = DECL_FUNCTION_CODE (olddecl);
1835 C_DECL_DECLARED_BUILTIN (newdecl) = 1;
1836 if (new_is_prototype)
1837 C_DECL_BUILTIN_PROTOTYPE (newdecl) = 0;
1838 else
1839 C_DECL_BUILTIN_PROTOTYPE (newdecl)
1840 = C_DECL_BUILTIN_PROTOTYPE (olddecl);
1843 /* Preserve function specific target and optimization options */
1844 if (DECL_FUNCTION_SPECIFIC_TARGET (olddecl)
1845 && !DECL_FUNCTION_SPECIFIC_TARGET (newdecl))
1846 DECL_FUNCTION_SPECIFIC_TARGET (newdecl)
1847 = DECL_FUNCTION_SPECIFIC_TARGET (olddecl);
1849 if (DECL_FUNCTION_SPECIFIC_OPTIMIZATION (olddecl)
1850 && !DECL_FUNCTION_SPECIFIC_OPTIMIZATION (newdecl))
1851 DECL_FUNCTION_SPECIFIC_OPTIMIZATION (newdecl)
1852 = DECL_FUNCTION_SPECIFIC_OPTIMIZATION (olddecl);
1854 /* Also preserve various other info from the definition. */
1855 if (!new_is_definition)
1857 tree t;
1858 DECL_RESULT (newdecl) = DECL_RESULT (olddecl);
1859 DECL_INITIAL (newdecl) = DECL_INITIAL (olddecl);
1860 DECL_STRUCT_FUNCTION (newdecl) = DECL_STRUCT_FUNCTION (olddecl);
1861 DECL_SAVED_TREE (newdecl) = DECL_SAVED_TREE (olddecl);
1862 gimple_set_body (newdecl, gimple_body (olddecl));
1863 DECL_ARGUMENTS (newdecl) = copy_list (DECL_ARGUMENTS (olddecl));
1864 for (t = DECL_ARGUMENTS (newdecl); t ; t = TREE_CHAIN (t))
1865 DECL_CONTEXT (t) = newdecl;
1867 /* See if we've got a function to instantiate from. */
1868 if (DECL_SAVED_TREE (olddecl))
1869 DECL_ABSTRACT_ORIGIN (newdecl)
1870 = DECL_ABSTRACT_ORIGIN (olddecl);
1874 extern_changed = DECL_EXTERNAL (olddecl) && !DECL_EXTERNAL (newdecl);
1876 /* Merge the USED information. */
1877 if (TREE_USED (olddecl))
1878 TREE_USED (newdecl) = 1;
1879 else if (TREE_USED (newdecl))
1880 TREE_USED (olddecl) = 1;
1882 /* Copy most of the decl-specific fields of NEWDECL into OLDDECL.
1883 But preserve OLDDECL's DECL_UID and DECL_CONTEXT. */
1885 unsigned olddecl_uid = DECL_UID (olddecl);
1886 tree olddecl_context = DECL_CONTEXT (olddecl);
1887 tree olddecl_arguments = NULL;
1888 if (TREE_CODE (olddecl) == FUNCTION_DECL)
1889 olddecl_arguments = DECL_ARGUMENTS (olddecl);
1891 memcpy ((char *) olddecl + sizeof (struct tree_common),
1892 (char *) newdecl + sizeof (struct tree_common),
1893 sizeof (struct tree_decl_common) - sizeof (struct tree_common));
1894 switch (TREE_CODE (olddecl))
1896 case FUNCTION_DECL:
1897 gimple_set_body (olddecl, gimple_body (newdecl));
1898 /* fall through */
1900 case FIELD_DECL:
1901 case VAR_DECL:
1902 case PARM_DECL:
1903 case LABEL_DECL:
1904 case RESULT_DECL:
1905 case CONST_DECL:
1906 case TYPE_DECL:
1907 memcpy ((char *) olddecl + sizeof (struct tree_decl_common),
1908 (char *) newdecl + sizeof (struct tree_decl_common),
1909 tree_code_size (TREE_CODE (olddecl)) - sizeof (struct tree_decl_common));
1910 break;
1912 default:
1914 memcpy ((char *) olddecl + sizeof (struct tree_decl_common),
1915 (char *) newdecl + sizeof (struct tree_decl_common),
1916 sizeof (struct tree_decl_non_common) - sizeof (struct tree_decl_common));
1918 DECL_UID (olddecl) = olddecl_uid;
1919 DECL_CONTEXT (olddecl) = olddecl_context;
1920 if (TREE_CODE (olddecl) == FUNCTION_DECL)
1921 DECL_ARGUMENTS (olddecl) = olddecl_arguments;
1924 /* If OLDDECL had its DECL_RTL instantiated, re-invoke make_decl_rtl
1925 so that encode_section_info has a chance to look at the new decl
1926 flags and attributes. */
1927 if (DECL_RTL_SET_P (olddecl)
1928 && (TREE_CODE (olddecl) == FUNCTION_DECL
1929 || (TREE_CODE (olddecl) == VAR_DECL
1930 && TREE_STATIC (olddecl))))
1931 make_decl_rtl (olddecl);
1933 /* If we changed a function from DECL_EXTERNAL to !DECL_EXTERNAL,
1934 and the definition is coming from the old version, cgraph needs
1935 to be called again. */
1936 if (extern_changed && !new_is_definition
1937 && TREE_CODE (olddecl) == FUNCTION_DECL && DECL_INITIAL (olddecl))
1938 cgraph_mark_if_needed (olddecl);
1941 /* Handle when a new declaration NEWDECL has the same name as an old
1942 one OLDDECL in the same binding contour. Prints an error message
1943 if appropriate.
1945 If safely possible, alter OLDDECL to look like NEWDECL, and return
1946 true. Otherwise, return false. */
1948 static bool
1949 duplicate_decls (tree newdecl, tree olddecl)
1951 tree newtype = NULL, oldtype = NULL;
1953 if (!diagnose_mismatched_decls (newdecl, olddecl, &newtype, &oldtype))
1955 /* Avoid `unused variable' and other warnings for OLDDECL. */
1956 TREE_NO_WARNING (olddecl) = 1;
1957 return false;
1960 merge_decls (newdecl, olddecl, newtype, oldtype);
1961 return true;
1965 /* Check whether decl-node NEW_DECL shadows an existing declaration. */
1966 static void
1967 warn_if_shadowing (tree new_decl)
1969 struct c_binding *b;
1971 /* Shadow warnings wanted? */
1972 if (!warn_shadow
1973 /* No shadow warnings for internally generated vars. */
1974 || DECL_IS_BUILTIN (new_decl)
1975 /* No shadow warnings for vars made for inlining. */
1976 || DECL_FROM_INLINE (new_decl))
1977 return;
1979 /* Is anything being shadowed? Invisible decls do not count. */
1980 for (b = I_SYMBOL_BINDING (DECL_NAME (new_decl)); b; b = b->shadowed)
1981 if (b->decl && b->decl != new_decl && !b->invisible)
1983 tree old_decl = b->decl;
1985 if (old_decl == error_mark_node)
1987 warning (OPT_Wshadow, "declaration of %q+D shadows previous "
1988 "non-variable", new_decl);
1989 break;
1991 else if (TREE_CODE (old_decl) == PARM_DECL)
1992 warning (OPT_Wshadow, "declaration of %q+D shadows a parameter",
1993 new_decl);
1994 else if (DECL_FILE_SCOPE_P (old_decl))
1995 warning (OPT_Wshadow, "declaration of %q+D shadows a global "
1996 "declaration", new_decl);
1997 else if (TREE_CODE (old_decl) == FUNCTION_DECL
1998 && DECL_BUILT_IN (old_decl))
2000 warning (OPT_Wshadow, "declaration of %q+D shadows "
2001 "a built-in function", new_decl);
2002 break;
2004 else
2005 warning (OPT_Wshadow, "declaration of %q+D shadows a previous local",
2006 new_decl);
2008 warning (OPT_Wshadow, "%Jshadowed declaration is here", old_decl);
2010 break;
2014 /* Record a decl-node X as belonging to the current lexical scope.
2015 Check for errors (such as an incompatible declaration for the same
2016 name already seen in the same scope).
2018 Returns either X or an old decl for the same name.
2019 If an old decl is returned, it may have been smashed
2020 to agree with what X says. */
2022 tree
2023 pushdecl (tree x)
2025 tree name = DECL_NAME (x);
2026 struct c_scope *scope = current_scope;
2027 struct c_binding *b;
2028 bool nested = false;
2029 location_t locus = DECL_SOURCE_LOCATION (x);
2031 /* Must set DECL_CONTEXT for everything not at file scope or
2032 DECL_FILE_SCOPE_P won't work. Local externs don't count
2033 unless they have initializers (which generate code). */
2034 if (current_function_decl
2035 && ((TREE_CODE (x) != FUNCTION_DECL && TREE_CODE (x) != VAR_DECL)
2036 || DECL_INITIAL (x) || !DECL_EXTERNAL (x)))
2037 DECL_CONTEXT (x) = current_function_decl;
2039 /* If this is of variably modified type, prevent jumping into its
2040 scope. */
2041 if ((TREE_CODE (x) == VAR_DECL || TREE_CODE (x) == TYPE_DECL)
2042 && variably_modified_type_p (TREE_TYPE (x), NULL_TREE))
2043 c_begin_vm_scope (scope->depth);
2045 /* Anonymous decls are just inserted in the scope. */
2046 if (!name)
2048 bind (name, x, scope, /*invisible=*/false, /*nested=*/false,
2049 locus);
2050 return x;
2053 /* First, see if there is another declaration with the same name in
2054 the current scope. If there is, duplicate_decls may do all the
2055 work for us. If duplicate_decls returns false, that indicates
2056 two incompatible decls in the same scope; we are to silently
2057 replace the old one (duplicate_decls has issued all appropriate
2058 diagnostics). In particular, we should not consider possible
2059 duplicates in the external scope, or shadowing. */
2060 b = I_SYMBOL_BINDING (name);
2061 if (b && B_IN_SCOPE (b, scope))
2063 struct c_binding *b_ext, *b_use;
2064 tree type = TREE_TYPE (x);
2065 tree visdecl = b->decl;
2066 tree vistype = TREE_TYPE (visdecl);
2067 if (TREE_CODE (TREE_TYPE (x)) == ARRAY_TYPE
2068 && COMPLETE_TYPE_P (TREE_TYPE (x)))
2069 b->inner_comp = false;
2070 b_use = b;
2071 b_ext = b;
2072 /* If this is an external linkage declaration, we should check
2073 for compatibility with the type in the external scope before
2074 setting the type at this scope based on the visible
2075 information only. */
2076 if (TREE_PUBLIC (x) && TREE_PUBLIC (visdecl))
2078 while (b_ext && !B_IN_EXTERNAL_SCOPE (b_ext))
2079 b_ext = b_ext->shadowed;
2080 if (b_ext)
2082 b_use = b_ext;
2083 if (b_use->type)
2084 TREE_TYPE (b_use->decl) = b_use->type;
2087 if (duplicate_decls (x, b_use->decl))
2089 if (b_use != b)
2091 /* Save the updated type in the external scope and
2092 restore the proper type for this scope. */
2093 tree thistype;
2094 if (comptypes (vistype, type))
2095 thistype = composite_type (vistype, type);
2096 else
2097 thistype = TREE_TYPE (b_use->decl);
2098 b_use->type = TREE_TYPE (b_use->decl);
2099 if (TREE_CODE (b_use->decl) == FUNCTION_DECL
2100 && DECL_BUILT_IN (b_use->decl))
2101 thistype
2102 = build_type_attribute_variant (thistype,
2103 TYPE_ATTRIBUTES
2104 (b_use->type));
2105 TREE_TYPE (b_use->decl) = thistype;
2107 return b_use->decl;
2109 else
2110 goto skip_external_and_shadow_checks;
2113 /* All declarations with external linkage, and all external
2114 references, go in the external scope, no matter what scope is
2115 current. However, the binding in that scope is ignored for
2116 purposes of normal name lookup. A separate binding structure is
2117 created in the requested scope; this governs the normal
2118 visibility of the symbol.
2120 The binding in the externals scope is used exclusively for
2121 detecting duplicate declarations of the same object, no matter
2122 what scope they are in; this is what we do here. (C99 6.2.7p2:
2123 All declarations that refer to the same object or function shall
2124 have compatible type; otherwise, the behavior is undefined.) */
2125 if (DECL_EXTERNAL (x) || scope == file_scope)
2127 tree type = TREE_TYPE (x);
2128 tree vistype = 0;
2129 tree visdecl = 0;
2130 bool type_saved = false;
2131 if (b && !B_IN_EXTERNAL_SCOPE (b)
2132 && (TREE_CODE (b->decl) == FUNCTION_DECL
2133 || TREE_CODE (b->decl) == VAR_DECL)
2134 && DECL_FILE_SCOPE_P (b->decl))
2136 visdecl = b->decl;
2137 vistype = TREE_TYPE (visdecl);
2139 if (scope != file_scope
2140 && !DECL_IN_SYSTEM_HEADER (x))
2141 warning (OPT_Wnested_externs, "nested extern declaration of %qD", x);
2143 while (b && !B_IN_EXTERNAL_SCOPE (b))
2145 /* If this decl might be modified, save its type. This is
2146 done here rather than when the decl is first bound
2147 because the type may change after first binding, through
2148 being completed or through attributes being added. If we
2149 encounter multiple such decls, only the first should have
2150 its type saved; the others will already have had their
2151 proper types saved and the types will not have changed as
2152 their scopes will not have been re-entered. */
2153 if (DECL_P (b->decl) && DECL_FILE_SCOPE_P (b->decl) && !type_saved)
2155 b->type = TREE_TYPE (b->decl);
2156 type_saved = true;
2158 if (B_IN_FILE_SCOPE (b)
2159 && TREE_CODE (b->decl) == VAR_DECL
2160 && TREE_STATIC (b->decl)
2161 && TREE_CODE (TREE_TYPE (b->decl)) == ARRAY_TYPE
2162 && !TYPE_DOMAIN (TREE_TYPE (b->decl))
2163 && TREE_CODE (type) == ARRAY_TYPE
2164 && TYPE_DOMAIN (type)
2165 && TYPE_MAX_VALUE (TYPE_DOMAIN (type))
2166 && !integer_zerop (TYPE_MAX_VALUE (TYPE_DOMAIN (type))))
2168 /* Array type completed in inner scope, which should be
2169 diagnosed if the completion does not have size 1 and
2170 it does not get completed in the file scope. */
2171 b->inner_comp = true;
2173 b = b->shadowed;
2176 /* If a matching external declaration has been found, set its
2177 type to the composite of all the types of that declaration.
2178 After the consistency checks, it will be reset to the
2179 composite of the visible types only. */
2180 if (b && (TREE_PUBLIC (x) || same_translation_unit_p (x, b->decl))
2181 && b->type)
2182 TREE_TYPE (b->decl) = b->type;
2184 /* The point of the same_translation_unit_p check here is,
2185 we want to detect a duplicate decl for a construct like
2186 foo() { extern bar(); } ... static bar(); but not if
2187 they are in different translation units. In any case,
2188 the static does not go in the externals scope. */
2189 if (b
2190 && (TREE_PUBLIC (x) || same_translation_unit_p (x, b->decl))
2191 && duplicate_decls (x, b->decl))
2193 tree thistype;
2194 if (vistype)
2196 if (comptypes (vistype, type))
2197 thistype = composite_type (vistype, type);
2198 else
2199 thistype = TREE_TYPE (b->decl);
2201 else
2202 thistype = type;
2203 b->type = TREE_TYPE (b->decl);
2204 if (TREE_CODE (b->decl) == FUNCTION_DECL && DECL_BUILT_IN (b->decl))
2205 thistype
2206 = build_type_attribute_variant (thistype,
2207 TYPE_ATTRIBUTES (b->type));
2208 TREE_TYPE (b->decl) = thistype;
2209 bind (name, b->decl, scope, /*invisible=*/false, /*nested=*/true,
2210 locus);
2211 return b->decl;
2213 else if (TREE_PUBLIC (x))
2215 if (visdecl && !b && duplicate_decls (x, visdecl))
2217 /* An external declaration at block scope referring to a
2218 visible entity with internal linkage. The composite
2219 type will already be correct for this scope, so we
2220 just need to fall through to make the declaration in
2221 this scope. */
2222 nested = true;
2223 x = visdecl;
2225 else
2227 bind (name, x, external_scope, /*invisible=*/true,
2228 /*nested=*/false, locus);
2229 nested = true;
2234 if (TREE_CODE (x) != PARM_DECL)
2235 warn_if_shadowing (x);
2237 skip_external_and_shadow_checks:
2238 if (TREE_CODE (x) == TYPE_DECL)
2239 set_underlying_type (x);
2241 bind (name, x, scope, /*invisible=*/false, nested, locus);
2243 /* If x's type is incomplete because it's based on a
2244 structure or union which has not yet been fully declared,
2245 attach it to that structure or union type, so we can go
2246 back and complete the variable declaration later, if the
2247 structure or union gets fully declared.
2249 If the input is erroneous, we can have error_mark in the type
2250 slot (e.g. "f(void a, ...)") - that doesn't count as an
2251 incomplete type. */
2252 if (TREE_TYPE (x) != error_mark_node
2253 && !COMPLETE_TYPE_P (TREE_TYPE (x)))
2255 tree element = TREE_TYPE (x);
2257 while (TREE_CODE (element) == ARRAY_TYPE)
2258 element = TREE_TYPE (element);
2259 element = TYPE_MAIN_VARIANT (element);
2261 if ((TREE_CODE (element) == RECORD_TYPE
2262 || TREE_CODE (element) == UNION_TYPE)
2263 && (TREE_CODE (x) != TYPE_DECL
2264 || TREE_CODE (TREE_TYPE (x)) == ARRAY_TYPE)
2265 && !COMPLETE_TYPE_P (element))
2266 C_TYPE_INCOMPLETE_VARS (element)
2267 = tree_cons (NULL_TREE, x, C_TYPE_INCOMPLETE_VARS (element));
2269 return x;
2272 /* Record X as belonging to file scope.
2273 This is used only internally by the Objective-C front end,
2274 and is limited to its needs. duplicate_decls is not called;
2275 if there is any preexisting decl for this identifier, it is an ICE. */
2277 tree
2278 pushdecl_top_level (tree x)
2280 tree name;
2281 bool nested = false;
2282 gcc_assert (TREE_CODE (x) == VAR_DECL || TREE_CODE (x) == CONST_DECL);
2284 name = DECL_NAME (x);
2286 gcc_assert (TREE_CODE (x) == CONST_DECL || !I_SYMBOL_BINDING (name));
2288 if (TREE_PUBLIC (x))
2290 bind (name, x, external_scope, /*invisible=*/true, /*nested=*/false,
2291 UNKNOWN_LOCATION);
2292 nested = true;
2294 if (file_scope)
2295 bind (name, x, file_scope, /*invisible=*/false, nested, UNKNOWN_LOCATION);
2297 return x;
2300 static void
2301 implicit_decl_warning (tree id, tree olddecl)
2303 if (warn_implicit_function_declaration)
2305 bool warned;
2307 if (flag_isoc99)
2308 warned = pedwarn (input_location, OPT_Wimplicit_function_declaration,
2309 "implicit declaration of function %qE", id);
2310 else
2311 warned = warning (OPT_Wimplicit_function_declaration,
2312 G_("implicit declaration of function %qE"), id);
2313 if (olddecl && warned)
2314 locate_old_decl (olddecl);
2318 /* Generate an implicit declaration for identifier FUNCTIONID as a
2319 function of type int (). */
2321 tree
2322 implicitly_declare (tree functionid)
2324 struct c_binding *b;
2325 tree decl = 0;
2326 tree asmspec_tree;
2328 for (b = I_SYMBOL_BINDING (functionid); b; b = b->shadowed)
2330 if (B_IN_SCOPE (b, external_scope))
2332 decl = b->decl;
2333 break;
2337 if (decl)
2339 if (decl == error_mark_node)
2340 return decl;
2342 /* FIXME: Objective-C has weird not-really-builtin functions
2343 which are supposed to be visible automatically. They wind up
2344 in the external scope because they're pushed before the file
2345 scope gets created. Catch this here and rebind them into the
2346 file scope. */
2347 if (!DECL_BUILT_IN (decl) && DECL_IS_BUILTIN (decl))
2349 bind (functionid, decl, file_scope,
2350 /*invisible=*/false, /*nested=*/true,
2351 DECL_SOURCE_LOCATION (decl));
2352 return decl;
2354 else
2356 tree newtype = default_function_type;
2357 if (b->type)
2358 TREE_TYPE (decl) = b->type;
2359 /* Implicit declaration of a function already declared
2360 (somehow) in a different scope, or as a built-in.
2361 If this is the first time this has happened, warn;
2362 then recycle the old declaration but with the new type. */
2363 if (!C_DECL_IMPLICIT (decl))
2365 implicit_decl_warning (functionid, decl);
2366 C_DECL_IMPLICIT (decl) = 1;
2368 if (DECL_BUILT_IN (decl))
2370 newtype = build_type_attribute_variant (newtype,
2371 TYPE_ATTRIBUTES
2372 (TREE_TYPE (decl)));
2373 if (!comptypes (newtype, TREE_TYPE (decl)))
2375 warning (0, "incompatible implicit declaration of built-in"
2376 " function %qD", decl);
2377 newtype = TREE_TYPE (decl);
2380 else
2382 if (!comptypes (newtype, TREE_TYPE (decl)))
2384 error ("incompatible implicit declaration of function %qD",
2385 decl);
2386 locate_old_decl (decl);
2389 b->type = TREE_TYPE (decl);
2390 TREE_TYPE (decl) = newtype;
2391 bind (functionid, decl, current_scope,
2392 /*invisible=*/false, /*nested=*/true,
2393 DECL_SOURCE_LOCATION (decl));
2394 return decl;
2398 /* Not seen before. */
2399 decl = build_decl (FUNCTION_DECL, functionid, default_function_type);
2400 DECL_EXTERNAL (decl) = 1;
2401 TREE_PUBLIC (decl) = 1;
2402 C_DECL_IMPLICIT (decl) = 1;
2403 implicit_decl_warning (functionid, 0);
2404 asmspec_tree = maybe_apply_renaming_pragma (decl, /*asmname=*/NULL);
2405 if (asmspec_tree)
2406 set_user_assembler_name (decl, TREE_STRING_POINTER (asmspec_tree));
2408 /* C89 says implicit declarations are in the innermost block.
2409 So we record the decl in the standard fashion. */
2410 decl = pushdecl (decl);
2412 /* No need to call objc_check_decl here - it's a function type. */
2413 rest_of_decl_compilation (decl, 0, 0);
2415 /* Write a record describing this implicit function declaration
2416 to the prototypes file (if requested). */
2417 gen_aux_info_record (decl, 0, 1, 0);
2419 /* Possibly apply some default attributes to this implicit declaration. */
2420 decl_attributes (&decl, NULL_TREE, 0);
2422 return decl;
2425 /* Issue an error message for a reference to an undeclared variable
2426 ID, including a reference to a builtin outside of function-call
2427 context. Establish a binding of the identifier to error_mark_node
2428 in an appropriate scope, which will suppress further errors for the
2429 same identifier. The error message should be given location LOC. */
2430 void
2431 undeclared_variable (tree id, location_t loc)
2433 static bool already = false;
2434 struct c_scope *scope;
2436 if (current_function_decl == 0)
2438 error ("%H%qE undeclared here (not in a function)", &loc, id);
2439 scope = current_scope;
2441 else
2443 error ("%H%qE undeclared (first use in this function)", &loc, id);
2445 if (!already)
2447 error ("%H(Each undeclared identifier is reported only once", &loc);
2448 error ("%Hfor each function it appears in.)", &loc);
2449 already = true;
2452 /* If we are parsing old-style parameter decls, current_function_decl
2453 will be nonnull but current_function_scope will be null. */
2454 scope = current_function_scope ? current_function_scope : current_scope;
2456 bind (id, error_mark_node, scope, /*invisible=*/false, /*nested=*/false,
2457 UNKNOWN_LOCATION);
2460 /* Subroutine of lookup_label, declare_label, define_label: construct a
2461 LABEL_DECL with all the proper frills. */
2463 static tree
2464 make_label (tree name, location_t location)
2466 tree label = build_decl (LABEL_DECL, name, void_type_node);
2468 DECL_CONTEXT (label) = current_function_decl;
2469 DECL_MODE (label) = VOIDmode;
2470 DECL_SOURCE_LOCATION (label) = location;
2472 return label;
2475 /* Get the LABEL_DECL corresponding to identifier NAME as a label.
2476 Create one if none exists so far for the current function.
2477 This is called when a label is used in a goto expression or
2478 has its address taken. */
2480 tree
2481 lookup_label (tree name)
2483 tree label;
2485 if (current_function_decl == 0)
2487 error ("label %qE referenced outside of any function", name);
2488 return 0;
2491 /* Use a label already defined or ref'd with this name, but not if
2492 it is inherited from a containing function and wasn't declared
2493 using __label__. */
2494 label = I_LABEL_DECL (name);
2495 if (label && (DECL_CONTEXT (label) == current_function_decl
2496 || C_DECLARED_LABEL_FLAG (label)))
2498 /* If the label has only been declared, update its apparent
2499 location to point here, for better diagnostics if it
2500 turns out not to have been defined. */
2501 if (!TREE_USED (label))
2502 DECL_SOURCE_LOCATION (label) = input_location;
2503 return label;
2506 /* No label binding for that identifier; make one. */
2507 label = make_label (name, input_location);
2509 /* Ordinary labels go in the current function scope. */
2510 bind (name, label, current_function_scope,
2511 /*invisible=*/false, /*nested=*/false, UNKNOWN_LOCATION);
2512 return label;
2515 /* Make a label named NAME in the current function, shadowing silently
2516 any that may be inherited from containing functions or containing
2517 scopes. This is called for __label__ declarations. */
2519 tree
2520 declare_label (tree name)
2522 struct c_binding *b = I_LABEL_BINDING (name);
2523 tree label;
2525 /* Check to make sure that the label hasn't already been declared
2526 at this scope */
2527 if (b && B_IN_CURRENT_SCOPE (b))
2529 error ("duplicate label declaration %qE", name);
2530 locate_old_decl (b->decl);
2532 /* Just use the previous declaration. */
2533 return b->decl;
2536 label = make_label (name, input_location);
2537 C_DECLARED_LABEL_FLAG (label) = 1;
2539 /* Declared labels go in the current scope. */
2540 bind (name, label, current_scope,
2541 /*invisible=*/false, /*nested=*/false, UNKNOWN_LOCATION);
2542 return label;
2545 /* Define a label, specifying the location in the source file.
2546 Return the LABEL_DECL node for the label, if the definition is valid.
2547 Otherwise return 0. */
2549 tree
2550 define_label (location_t location, tree name)
2552 /* Find any preexisting label with this name. It is an error
2553 if that label has already been defined in this function, or
2554 if there is a containing function with a declared label with
2555 the same name. */
2556 tree label = I_LABEL_DECL (name);
2557 struct c_label_list *nlist_se, *nlist_vm;
2559 if (label
2560 && ((DECL_CONTEXT (label) == current_function_decl
2561 && DECL_INITIAL (label) != 0)
2562 || (DECL_CONTEXT (label) != current_function_decl
2563 && C_DECLARED_LABEL_FLAG (label))))
2565 error ("%Hduplicate label %qD", &location, label);
2566 locate_old_decl (label);
2567 return 0;
2569 else if (label && DECL_CONTEXT (label) == current_function_decl)
2571 /* The label has been used or declared already in this function,
2572 but not defined. Update its location to point to this
2573 definition. */
2574 if (C_DECL_UNDEFINABLE_STMT_EXPR (label))
2575 error ("%Jjump into statement expression", label);
2576 if (C_DECL_UNDEFINABLE_VM (label))
2577 error ("%Jjump into scope of identifier with variably modified type",
2578 label);
2579 DECL_SOURCE_LOCATION (label) = location;
2581 else
2583 /* No label binding for that identifier; make one. */
2584 label = make_label (name, location);
2586 /* Ordinary labels go in the current function scope. */
2587 bind (name, label, current_function_scope,
2588 /*invisible=*/false, /*nested=*/false, UNKNOWN_LOCATION);
2591 if (!in_system_header && lookup_name (name))
2592 warning (OPT_Wtraditional, "%Htraditional C lacks a separate namespace "
2593 "for labels, identifier %qE conflicts", &location, name);
2595 nlist_se = XOBNEW (&parser_obstack, struct c_label_list);
2596 nlist_se->next = label_context_stack_se->labels_def;
2597 nlist_se->label = label;
2598 label_context_stack_se->labels_def = nlist_se;
2600 nlist_vm = XOBNEW (&parser_obstack, struct c_label_list);
2601 nlist_vm->next = label_context_stack_vm->labels_def;
2602 nlist_vm->label = label;
2603 label_context_stack_vm->labels_def = nlist_vm;
2605 /* Mark label as having been defined. */
2606 DECL_INITIAL (label) = error_mark_node;
2607 return label;
2610 /* Given NAME, an IDENTIFIER_NODE,
2611 return the structure (or union or enum) definition for that name.
2612 If THISLEVEL_ONLY is nonzero, searches only the current_scope.
2613 CODE says which kind of type the caller wants;
2614 it is RECORD_TYPE or UNION_TYPE or ENUMERAL_TYPE.
2615 If the wrong kind of type is found, an error is reported. */
2617 static tree
2618 lookup_tag (enum tree_code code, tree name, int thislevel_only)
2620 struct c_binding *b = I_TAG_BINDING (name);
2621 int thislevel = 0;
2623 if (!b || !b->decl)
2624 return 0;
2626 /* We only care about whether it's in this level if
2627 thislevel_only was set or it might be a type clash. */
2628 if (thislevel_only || TREE_CODE (b->decl) != code)
2630 /* For our purposes, a tag in the external scope is the same as
2631 a tag in the file scope. (Primarily relevant to Objective-C
2632 and its builtin structure tags, which get pushed before the
2633 file scope is created.) */
2634 if (B_IN_CURRENT_SCOPE (b)
2635 || (current_scope == file_scope && B_IN_EXTERNAL_SCOPE (b)))
2636 thislevel = 1;
2639 if (thislevel_only && !thislevel)
2640 return 0;
2642 if (TREE_CODE (b->decl) != code)
2644 /* Definition isn't the kind we were looking for. */
2645 pending_invalid_xref = name;
2646 pending_invalid_xref_location = input_location;
2648 /* If in the same binding level as a declaration as a tag
2649 of a different type, this must not be allowed to
2650 shadow that tag, so give the error immediately.
2651 (For example, "struct foo; union foo;" is invalid.) */
2652 if (thislevel)
2653 pending_xref_error ();
2655 return b->decl;
2658 /* Print an error message now
2659 for a recent invalid struct, union or enum cross reference.
2660 We don't print them immediately because they are not invalid
2661 when used in the `struct foo;' construct for shadowing. */
2663 void
2664 pending_xref_error (void)
2666 if (pending_invalid_xref != 0)
2667 error ("%H%qE defined as wrong kind of tag",
2668 &pending_invalid_xref_location, pending_invalid_xref);
2669 pending_invalid_xref = 0;
2673 /* Look up NAME in the current scope and its superiors
2674 in the namespace of variables, functions and typedefs.
2675 Return a ..._DECL node of some kind representing its definition,
2676 or return 0 if it is undefined. */
2678 tree
2679 lookup_name (tree name)
2681 struct c_binding *b = I_SYMBOL_BINDING (name);
2682 if (b && !b->invisible)
2683 return b->decl;
2684 return 0;
2687 /* Similar to `lookup_name' but look only at the indicated scope. */
2689 static tree
2690 lookup_name_in_scope (tree name, struct c_scope *scope)
2692 struct c_binding *b;
2694 for (b = I_SYMBOL_BINDING (name); b; b = b->shadowed)
2695 if (B_IN_SCOPE (b, scope))
2696 return b->decl;
2697 return 0;
2700 /* Create the predefined scalar types of C,
2701 and some nodes representing standard constants (0, 1, (void *) 0).
2702 Initialize the global scope.
2703 Make definitions for built-in primitive functions. */
2705 void
2706 c_init_decl_processing (void)
2708 location_t save_loc = input_location;
2710 /* Initialize reserved words for parser. */
2711 c_parse_init ();
2713 current_function_decl = 0;
2715 gcc_obstack_init (&parser_obstack);
2717 /* Make the externals scope. */
2718 push_scope ();
2719 external_scope = current_scope;
2721 /* Declarations from c_common_nodes_and_builtins must not be associated
2722 with this input file, lest we get differences between using and not
2723 using preprocessed headers. */
2724 input_location = BUILTINS_LOCATION;
2726 build_common_tree_nodes (flag_signed_char, false);
2728 c_common_nodes_and_builtins ();
2730 /* In C, comparisons and TRUTH_* expressions have type int. */
2731 truthvalue_type_node = integer_type_node;
2732 truthvalue_true_node = integer_one_node;
2733 truthvalue_false_node = integer_zero_node;
2735 /* Even in C99, which has a real boolean type. */
2736 pushdecl (build_decl (TYPE_DECL, get_identifier ("_Bool"),
2737 boolean_type_node));
2739 input_location = save_loc;
2741 pedantic_lvalues = true;
2743 make_fname_decl = c_make_fname_decl;
2744 start_fname_decls ();
2747 /* Create the VAR_DECL for __FUNCTION__ etc. ID is the name to give the
2748 decl, NAME is the initialization string and TYPE_DEP indicates whether
2749 NAME depended on the type of the function. As we don't yet implement
2750 delayed emission of static data, we mark the decl as emitted
2751 so it is not placed in the output. Anything using it must therefore pull
2752 out the STRING_CST initializer directly. FIXME. */
2754 static tree
2755 c_make_fname_decl (tree id, int type_dep)
2757 const char *name = fname_as_string (type_dep);
2758 tree decl, type, init;
2759 size_t length = strlen (name);
2761 type = build_array_type (char_type_node,
2762 build_index_type (size_int (length)));
2763 type = c_build_qualified_type (type, TYPE_QUAL_CONST);
2765 decl = build_decl (VAR_DECL, id, type);
2767 TREE_STATIC (decl) = 1;
2768 TREE_READONLY (decl) = 1;
2769 DECL_ARTIFICIAL (decl) = 1;
2771 init = build_string (length + 1, name);
2772 free (CONST_CAST (char *, name));
2773 TREE_TYPE (init) = type;
2774 DECL_INITIAL (decl) = init;
2776 TREE_USED (decl) = 1;
2778 if (current_function_decl
2779 /* For invalid programs like this:
2781 void foo()
2782 const char* p = __FUNCTION__;
2784 the __FUNCTION__ is believed to appear in K&R style function
2785 parameter declarator. In that case we still don't have
2786 function_scope. */
2787 && (!errorcount || current_function_scope))
2789 DECL_CONTEXT (decl) = current_function_decl;
2790 bind (id, decl, current_function_scope,
2791 /*invisible=*/false, /*nested=*/false, UNKNOWN_LOCATION);
2794 finish_decl (decl, init, NULL_TREE, NULL_TREE);
2796 return decl;
2799 tree
2800 c_builtin_function (tree decl)
2802 tree type = TREE_TYPE (decl);
2803 tree id = DECL_NAME (decl);
2805 const char *name = IDENTIFIER_POINTER (id);
2806 C_DECL_BUILTIN_PROTOTYPE (decl) = (TYPE_ARG_TYPES (type) != 0);
2808 /* Should never be called on a symbol with a preexisting meaning. */
2809 gcc_assert (!I_SYMBOL_BINDING (id));
2811 bind (id, decl, external_scope, /*invisible=*/true, /*nested=*/false,
2812 UNKNOWN_LOCATION);
2814 /* Builtins in the implementation namespace are made visible without
2815 needing to be explicitly declared. See push_file_scope. */
2816 if (name[0] == '_' && (name[1] == '_' || ISUPPER (name[1])))
2818 TREE_CHAIN (decl) = visible_builtins;
2819 visible_builtins = decl;
2822 return decl;
2825 tree
2826 c_builtin_function_ext_scope (tree decl)
2828 tree type = TREE_TYPE (decl);
2829 tree id = DECL_NAME (decl);
2831 const char *name = IDENTIFIER_POINTER (id);
2832 C_DECL_BUILTIN_PROTOTYPE (decl) = (TYPE_ARG_TYPES (type) != 0);
2834 /* Should never be called on a symbol with a preexisting meaning. */
2835 gcc_assert (!I_SYMBOL_BINDING (id));
2837 bind (id, decl, external_scope, /*invisible=*/false, /*nested=*/false,
2838 UNKNOWN_LOCATION);
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 /* Called when a declaration is seen that contains no names to declare.
2852 If its type is a reference to a structure, union or enum inherited
2853 from a containing scope, shadow that tag name for the current scope
2854 with a forward reference.
2855 If its type defines a new named structure or union
2856 or defines an enum, it is valid but we need not do anything here.
2857 Otherwise, it is an error. */
2859 void
2860 shadow_tag (const struct c_declspecs *declspecs)
2862 shadow_tag_warned (declspecs, 0);
2865 /* WARNED is 1 if we have done a pedwarn, 2 if we have done a warning,
2866 but no pedwarn. */
2867 void
2868 shadow_tag_warned (const struct c_declspecs *declspecs, int warned)
2870 bool found_tag = false;
2872 if (declspecs->type && !declspecs->default_int_p && !declspecs->typedef_p)
2874 tree value = declspecs->type;
2875 enum tree_code code = TREE_CODE (value);
2877 if (code == RECORD_TYPE || code == UNION_TYPE || code == ENUMERAL_TYPE)
2878 /* Used to test also that TYPE_SIZE (value) != 0.
2879 That caused warning for `struct foo;' at top level in the file. */
2881 tree name = TYPE_NAME (value);
2882 tree t;
2884 found_tag = true;
2886 if (declspecs->restrict_p)
2888 error ("invalid use of %<restrict%>");
2889 warned = 1;
2892 if (name == 0)
2894 if (warned != 1 && code != ENUMERAL_TYPE)
2895 /* Empty unnamed enum OK */
2897 pedwarn (input_location, 0,
2898 "unnamed struct/union that defines no instances");
2899 warned = 1;
2902 else if (!declspecs->tag_defined_p
2903 && declspecs->storage_class != csc_none)
2905 if (warned != 1)
2906 pedwarn (input_location, 0,
2907 "empty declaration with storage class specifier "
2908 "does not redeclare tag");
2909 warned = 1;
2910 pending_xref_error ();
2912 else if (!declspecs->tag_defined_p
2913 && (declspecs->const_p
2914 || declspecs->volatile_p
2915 || declspecs->restrict_p))
2917 if (warned != 1)
2918 pedwarn (input_location, 0,
2919 "empty declaration with type qualifier "
2920 "does not redeclare tag");
2921 warned = 1;
2922 pending_xref_error ();
2924 else
2926 pending_invalid_xref = 0;
2927 t = lookup_tag (code, name, 1);
2929 if (t == 0)
2931 t = make_node (code);
2932 pushtag (name, t);
2936 else
2938 if (warned != 1 && !in_system_header)
2940 pedwarn (input_location, 0,
2941 "useless type name in empty declaration");
2942 warned = 1;
2946 else if (warned != 1 && !in_system_header && declspecs->typedef_p)
2948 pedwarn (input_location, 0, "useless type name in empty declaration");
2949 warned = 1;
2952 pending_invalid_xref = 0;
2954 if (declspecs->inline_p)
2956 error ("%<inline%> in empty declaration");
2957 warned = 1;
2960 if (current_scope == file_scope && declspecs->storage_class == csc_auto)
2962 error ("%<auto%> in file-scope empty declaration");
2963 warned = 1;
2966 if (current_scope == file_scope && declspecs->storage_class == csc_register)
2968 error ("%<register%> in file-scope empty declaration");
2969 warned = 1;
2972 if (!warned && !in_system_header && declspecs->storage_class != csc_none)
2974 warning (0, "useless storage class specifier in empty declaration");
2975 warned = 2;
2978 if (!warned && !in_system_header && declspecs->thread_p)
2980 warning (0, "useless %<__thread%> in empty declaration");
2981 warned = 2;
2984 if (!warned && !in_system_header && (declspecs->const_p
2985 || declspecs->volatile_p
2986 || declspecs->restrict_p))
2988 warning (0, "useless type qualifier in empty declaration");
2989 warned = 2;
2992 if (warned != 1)
2994 if (!found_tag)
2995 pedwarn (input_location, 0, "empty declaration");
3000 /* Return the qualifiers from SPECS as a bitwise OR of TYPE_QUAL_*
3001 bits. SPECS represents declaration specifiers that the grammar
3002 only permits to contain type qualifiers and attributes. */
3005 quals_from_declspecs (const struct c_declspecs *specs)
3007 int quals = ((specs->const_p ? TYPE_QUAL_CONST : 0)
3008 | (specs->volatile_p ? TYPE_QUAL_VOLATILE : 0)
3009 | (specs->restrict_p ? TYPE_QUAL_RESTRICT : 0));
3010 gcc_assert (!specs->type
3011 && !specs->decl_attr
3012 && specs->typespec_word == cts_none
3013 && specs->storage_class == csc_none
3014 && !specs->typedef_p
3015 && !specs->explicit_signed_p
3016 && !specs->deprecated_p
3017 && !specs->long_p
3018 && !specs->long_long_p
3019 && !specs->short_p
3020 && !specs->signed_p
3021 && !specs->unsigned_p
3022 && !specs->complex_p
3023 && !specs->inline_p
3024 && !specs->thread_p);
3025 return quals;
3028 /* Construct an array declarator. EXPR is the expression inside [],
3029 or NULL_TREE. QUALS are the type qualifiers inside the [] (to be
3030 applied to the pointer to which a parameter array is converted).
3031 STATIC_P is true if "static" is inside the [], false otherwise.
3032 VLA_UNSPEC_P is true if the array is [*], a VLA of unspecified
3033 length which is nevertheless a complete type, false otherwise. The
3034 field for the contained declarator is left to be filled in by
3035 set_array_declarator_inner. */
3037 struct c_declarator *
3038 build_array_declarator (tree expr, struct c_declspecs *quals, bool static_p,
3039 bool vla_unspec_p)
3041 struct c_declarator *declarator = XOBNEW (&parser_obstack,
3042 struct c_declarator);
3043 declarator->kind = cdk_array;
3044 declarator->declarator = 0;
3045 declarator->u.array.dimen = expr;
3046 if (quals)
3048 declarator->u.array.attrs = quals->attrs;
3049 declarator->u.array.quals = quals_from_declspecs (quals);
3051 else
3053 declarator->u.array.attrs = NULL_TREE;
3054 declarator->u.array.quals = 0;
3056 declarator->u.array.static_p = static_p;
3057 declarator->u.array.vla_unspec_p = vla_unspec_p;
3058 if (!flag_isoc99)
3060 if (static_p || quals != NULL)
3061 pedwarn (input_location, OPT_pedantic,
3062 "ISO C90 does not support %<static%> or type "
3063 "qualifiers in parameter array declarators");
3064 if (vla_unspec_p)
3065 pedwarn (input_location, OPT_pedantic,
3066 "ISO C90 does not support %<[*]%> array declarators");
3068 if (vla_unspec_p)
3070 if (!current_scope->parm_flag)
3072 /* C99 6.7.5.2p4 */
3073 error ("%<[*]%> not allowed in other than function prototype scope");
3074 declarator->u.array.vla_unspec_p = false;
3075 return NULL;
3077 current_scope->had_vla_unspec = true;
3079 return declarator;
3082 /* Set the contained declarator of an array declarator. DECL is the
3083 declarator, as constructed by build_array_declarator; INNER is what
3084 appears on the left of the []. */
3086 struct c_declarator *
3087 set_array_declarator_inner (struct c_declarator *decl,
3088 struct c_declarator *inner)
3090 decl->declarator = inner;
3091 return decl;
3094 /* INIT is a constructor that forms DECL's initializer. If the final
3095 element initializes a flexible array field, add the size of that
3096 initializer to DECL's size. */
3098 static void
3099 add_flexible_array_elts_to_size (tree decl, tree init)
3101 tree elt, type;
3103 if (VEC_empty (constructor_elt, CONSTRUCTOR_ELTS (init)))
3104 return;
3106 elt = VEC_last (constructor_elt, CONSTRUCTOR_ELTS (init))->value;
3107 type = TREE_TYPE (elt);
3108 if (TREE_CODE (type) == ARRAY_TYPE
3109 && TYPE_SIZE (type) == NULL_TREE
3110 && TYPE_DOMAIN (type) != NULL_TREE
3111 && TYPE_MAX_VALUE (TYPE_DOMAIN (type)) == NULL_TREE)
3113 complete_array_type (&type, elt, false);
3114 DECL_SIZE (decl)
3115 = size_binop (PLUS_EXPR, DECL_SIZE (decl), TYPE_SIZE (type));
3116 DECL_SIZE_UNIT (decl)
3117 = size_binop (PLUS_EXPR, DECL_SIZE_UNIT (decl), TYPE_SIZE_UNIT (type));
3121 /* Decode a "typename", such as "int **", returning a ..._TYPE node.
3122 Set *EXPR, if EXPR not NULL, to any expression to be evaluated
3123 before the type name, and set *EXPR_CONST_OPERANDS, if
3124 EXPR_CONST_OPERANDS not NULL, to indicate whether the type name may
3125 appear in a constant expression. */
3127 tree
3128 groktypename (struct c_type_name *type_name, tree *expr,
3129 bool *expr_const_operands)
3131 tree type;
3132 tree attrs = type_name->specs->attrs;
3134 type_name->specs->attrs = NULL_TREE;
3136 type = grokdeclarator (type_name->declarator, type_name->specs, TYPENAME,
3137 false, NULL, &attrs, expr, expr_const_operands,
3138 DEPRECATED_NORMAL);
3140 /* Apply attributes. */
3141 decl_attributes (&type, attrs, 0);
3143 return type;
3146 /* Decode a declarator in an ordinary declaration or data definition.
3147 This is called as soon as the type information and variable name
3148 have been parsed, before parsing the initializer if any.
3149 Here we create the ..._DECL node, fill in its type,
3150 and put it on the list of decls for the current context.
3151 The ..._DECL node is returned as the value.
3153 Exception: for arrays where the length is not specified,
3154 the type is left null, to be filled in by `finish_decl'.
3156 Function definitions do not come here; they go to start_function
3157 instead. However, external and forward declarations of functions
3158 do go through here. Structure field declarations are done by
3159 grokfield and not through here. */
3161 tree
3162 start_decl (struct c_declarator *declarator, struct c_declspecs *declspecs,
3163 bool initialized, tree attributes)
3165 tree decl;
3166 tree tem;
3167 tree expr = NULL_TREE;
3168 enum deprecated_states deprecated_state = DEPRECATED_NORMAL;
3170 /* An object declared as __attribute__((deprecated)) suppresses
3171 warnings of uses of other deprecated items. */
3172 if (lookup_attribute ("deprecated", attributes))
3173 deprecated_state = DEPRECATED_SUPPRESS;
3175 decl = grokdeclarator (declarator, declspecs,
3176 NORMAL, initialized, NULL, &attributes, &expr, NULL,
3177 deprecated_state);
3178 if (!decl)
3179 return 0;
3181 if (expr)
3182 add_stmt (expr);
3184 if (TREE_CODE (decl) != FUNCTION_DECL && MAIN_NAME_P (DECL_NAME (decl)))
3185 warning (OPT_Wmain, "%q+D is usually a function", decl);
3187 if (initialized)
3188 /* Is it valid for this decl to have an initializer at all?
3189 If not, set INITIALIZED to zero, which will indirectly
3190 tell 'finish_decl' to ignore the initializer once it is parsed. */
3191 switch (TREE_CODE (decl))
3193 case TYPE_DECL:
3194 error ("typedef %qD is initialized (use __typeof__ instead)", decl);
3195 initialized = 0;
3196 break;
3198 case FUNCTION_DECL:
3199 error ("function %qD is initialized like a variable", decl);
3200 initialized = 0;
3201 break;
3203 case PARM_DECL:
3204 /* DECL_INITIAL in a PARM_DECL is really DECL_ARG_TYPE. */
3205 error ("parameter %qD is initialized", decl);
3206 initialized = 0;
3207 break;
3209 default:
3210 /* Don't allow initializations for incomplete types except for
3211 arrays which might be completed by the initialization. */
3213 /* This can happen if the array size is an undefined macro.
3214 We already gave a warning, so we don't need another one. */
3215 if (TREE_TYPE (decl) == error_mark_node)
3216 initialized = 0;
3217 else if (COMPLETE_TYPE_P (TREE_TYPE (decl)))
3219 /* A complete type is ok if size is fixed. */
3221 if (TREE_CODE (TYPE_SIZE (TREE_TYPE (decl))) != INTEGER_CST
3222 || C_DECL_VARIABLE_SIZE (decl))
3224 error ("variable-sized object may not be initialized");
3225 initialized = 0;
3228 else if (TREE_CODE (TREE_TYPE (decl)) != ARRAY_TYPE)
3230 error ("variable %qD has initializer but incomplete type", decl);
3231 initialized = 0;
3233 else if (C_DECL_VARIABLE_SIZE (decl))
3235 /* Although C99 is unclear about whether incomplete arrays
3236 of VLAs themselves count as VLAs, it does not make
3237 sense to permit them to be initialized given that
3238 ordinary VLAs may not be initialized. */
3239 error ("variable-sized object may not be initialized");
3240 initialized = 0;
3244 if (initialized)
3246 if (current_scope == file_scope)
3247 TREE_STATIC (decl) = 1;
3249 /* Tell 'pushdecl' this is an initialized decl
3250 even though we don't yet have the initializer expression.
3251 Also tell 'finish_decl' it may store the real initializer. */
3252 DECL_INITIAL (decl) = error_mark_node;
3255 /* If this is a function declaration, write a record describing it to the
3256 prototypes file (if requested). */
3258 if (TREE_CODE (decl) == FUNCTION_DECL)
3259 gen_aux_info_record (decl, 0, 0, TYPE_ARG_TYPES (TREE_TYPE (decl)) != 0);
3261 /* ANSI specifies that a tentative definition which is not merged with
3262 a non-tentative definition behaves exactly like a definition with an
3263 initializer equal to zero. (Section 3.7.2)
3265 -fno-common gives strict ANSI behavior, though this tends to break
3266 a large body of code that grew up without this rule.
3268 Thread-local variables are never common, since there's no entrenched
3269 body of code to break, and it allows more efficient variable references
3270 in the presence of dynamic linking. */
3272 if (TREE_CODE (decl) == VAR_DECL
3273 && !initialized
3274 && TREE_PUBLIC (decl)
3275 && !DECL_THREAD_LOCAL_P (decl)
3276 && !flag_no_common)
3277 DECL_COMMON (decl) = 1;
3279 /* Set attributes here so if duplicate decl, will have proper attributes. */
3280 decl_attributes (&decl, attributes, 0);
3282 /* Handle gnu_inline attribute. */
3283 if (declspecs->inline_p
3284 && !flag_gnu89_inline
3285 && TREE_CODE (decl) == FUNCTION_DECL
3286 && (lookup_attribute ("gnu_inline", DECL_ATTRIBUTES (decl))
3287 || current_function_decl))
3289 if (declspecs->storage_class == csc_auto && current_scope != file_scope)
3291 else if (declspecs->storage_class != csc_static)
3292 DECL_EXTERNAL (decl) = !DECL_EXTERNAL (decl);
3295 if (TREE_CODE (decl) == FUNCTION_DECL
3296 && targetm.calls.promote_prototypes (TREE_TYPE (decl)))
3298 struct c_declarator *ce = declarator;
3300 if (ce->kind == cdk_pointer)
3301 ce = declarator->declarator;
3302 if (ce->kind == cdk_function)
3304 tree args = ce->u.arg_info->parms;
3305 for (; args; args = TREE_CHAIN (args))
3307 tree type = TREE_TYPE (args);
3308 if (type && INTEGRAL_TYPE_P (type)
3309 && TYPE_PRECISION (type) < TYPE_PRECISION (integer_type_node))
3310 DECL_ARG_TYPE (args) = integer_type_node;
3315 if (TREE_CODE (decl) == FUNCTION_DECL
3316 && DECL_DECLARED_INLINE_P (decl)
3317 && DECL_UNINLINABLE (decl)
3318 && lookup_attribute ("noinline", DECL_ATTRIBUTES (decl)))
3319 warning (OPT_Wattributes, "inline function %q+D given attribute noinline",
3320 decl);
3322 /* C99 6.7.4p3: An inline definition of a function with external
3323 linkage shall not contain a definition of a modifiable object
3324 with static storage duration... */
3325 if (TREE_CODE (decl) == VAR_DECL
3326 && current_scope != file_scope
3327 && TREE_STATIC (decl)
3328 && !TREE_READONLY (decl)
3329 && DECL_DECLARED_INLINE_P (current_function_decl)
3330 && DECL_EXTERNAL (current_function_decl))
3331 pedwarn (input_location, 0,
3332 "%q+D is static but declared in inline function %qD "
3333 "which is not static", decl, current_function_decl);
3335 /* Add this decl to the current scope.
3336 TEM may equal DECL or it may be a previous decl of the same name. */
3337 tem = pushdecl (decl);
3339 if (initialized && DECL_EXTERNAL (tem))
3341 DECL_EXTERNAL (tem) = 0;
3342 TREE_STATIC (tem) = 1;
3345 return tem;
3348 /* Initialize EH if not initialized yet and exceptions are enabled. */
3350 void
3351 c_maybe_initialize_eh (void)
3353 if (!flag_exceptions || c_eh_initialized_p)
3354 return;
3356 c_eh_initialized_p = true;
3357 eh_personality_libfunc
3358 = init_one_libfunc (USING_SJLJ_EXCEPTIONS
3359 ? "__gcc_personality_sj0"
3360 : "__gcc_personality_v0");
3361 default_init_unwind_resume_libfunc ();
3362 using_eh_for_cleanups ();
3365 /* Finish processing of a declaration;
3366 install its initial value.
3367 If ORIGTYPE is not NULL_TREE, it is the original type of INIT.
3368 If the length of an array type is not known before,
3369 it must be determined now, from the initial value, or it is an error. */
3371 void
3372 finish_decl (tree decl, tree init, tree origtype, tree asmspec_tree)
3374 tree type;
3375 int was_incomplete = (DECL_SIZE (decl) == 0);
3376 const char *asmspec = 0;
3378 /* If a name was specified, get the string. */
3379 if ((TREE_CODE (decl) == FUNCTION_DECL || TREE_CODE (decl) == VAR_DECL)
3380 && DECL_FILE_SCOPE_P (decl))
3381 asmspec_tree = maybe_apply_renaming_pragma (decl, asmspec_tree);
3382 if (asmspec_tree)
3383 asmspec = TREE_STRING_POINTER (asmspec_tree);
3385 /* If `start_decl' didn't like having an initialization, ignore it now. */
3386 if (init != 0 && DECL_INITIAL (decl) == 0)
3387 init = 0;
3389 /* Don't crash if parm is initialized. */
3390 if (TREE_CODE (decl) == PARM_DECL)
3391 init = 0;
3393 if (init)
3394 store_init_value (decl, init, origtype);
3396 if (c_dialect_objc () && (TREE_CODE (decl) == VAR_DECL
3397 || TREE_CODE (decl) == FUNCTION_DECL
3398 || TREE_CODE (decl) == FIELD_DECL))
3399 objc_check_decl (decl);
3401 type = TREE_TYPE (decl);
3403 /* Deduce size of array from initialization, if not already known. */
3404 if (TREE_CODE (type) == ARRAY_TYPE
3405 && TYPE_DOMAIN (type) == 0
3406 && TREE_CODE (decl) != TYPE_DECL)
3408 bool do_default
3409 = (TREE_STATIC (decl)
3410 /* Even if pedantic, an external linkage array
3411 may have incomplete type at first. */
3412 ? pedantic && !TREE_PUBLIC (decl)
3413 : !DECL_EXTERNAL (decl));
3414 int failure
3415 = complete_array_type (&TREE_TYPE (decl), DECL_INITIAL (decl),
3416 do_default);
3418 /* Get the completed type made by complete_array_type. */
3419 type = TREE_TYPE (decl);
3421 switch (failure)
3423 case 1:
3424 error ("initializer fails to determine size of %q+D", decl);
3425 break;
3427 case 2:
3428 if (do_default)
3429 error ("array size missing in %q+D", decl);
3430 /* If a `static' var's size isn't known,
3431 make it extern as well as static, so it does not get
3432 allocated.
3433 If it is not `static', then do not mark extern;
3434 finish_incomplete_decl will give it a default size
3435 and it will get allocated. */
3436 else if (!pedantic && TREE_STATIC (decl) && !TREE_PUBLIC (decl))
3437 DECL_EXTERNAL (decl) = 1;
3438 break;
3440 case 3:
3441 error ("zero or negative size array %q+D", decl);
3442 break;
3444 case 0:
3445 /* For global variables, update the copy of the type that
3446 exists in the binding. */
3447 if (TREE_PUBLIC (decl))
3449 struct c_binding *b_ext = I_SYMBOL_BINDING (DECL_NAME (decl));
3450 while (b_ext && !B_IN_EXTERNAL_SCOPE (b_ext))
3451 b_ext = b_ext->shadowed;
3452 if (b_ext)
3454 if (b_ext->type)
3455 b_ext->type = composite_type (b_ext->type, type);
3456 else
3457 b_ext->type = type;
3460 break;
3462 default:
3463 gcc_unreachable ();
3466 if (DECL_INITIAL (decl))
3467 TREE_TYPE (DECL_INITIAL (decl)) = type;
3469 layout_decl (decl, 0);
3472 if (TREE_CODE (decl) == VAR_DECL)
3474 if (init && TREE_CODE (init) == CONSTRUCTOR)
3475 add_flexible_array_elts_to_size (decl, init);
3477 if (DECL_SIZE (decl) == 0 && TREE_TYPE (decl) != error_mark_node
3478 && COMPLETE_TYPE_P (TREE_TYPE (decl)))
3479 layout_decl (decl, 0);
3481 if (DECL_SIZE (decl) == 0
3482 /* Don't give an error if we already gave one earlier. */
3483 && TREE_TYPE (decl) != error_mark_node
3484 && (TREE_STATIC (decl)
3485 /* A static variable with an incomplete type
3486 is an error if it is initialized.
3487 Also if it is not file scope.
3488 Otherwise, let it through, but if it is not `extern'
3489 then it may cause an error message later. */
3490 ? (DECL_INITIAL (decl) != 0
3491 || !DECL_FILE_SCOPE_P (decl))
3492 /* An automatic variable with an incomplete type
3493 is an error. */
3494 : !DECL_EXTERNAL (decl)))
3496 error ("storage size of %q+D isn%'t known", decl);
3497 TREE_TYPE (decl) = error_mark_node;
3500 if ((DECL_EXTERNAL (decl) || TREE_STATIC (decl))
3501 && DECL_SIZE (decl) != 0)
3503 if (TREE_CODE (DECL_SIZE (decl)) == INTEGER_CST)
3504 constant_expression_warning (DECL_SIZE (decl));
3505 else
3507 error ("storage size of %q+D isn%'t constant", decl);
3508 TREE_TYPE (decl) = error_mark_node;
3512 if (TREE_USED (type))
3513 TREE_USED (decl) = 1;
3516 /* If this is a function and an assembler name is specified, reset DECL_RTL
3517 so we can give it its new name. Also, update built_in_decls if it
3518 was a normal built-in. */
3519 if (TREE_CODE (decl) == FUNCTION_DECL && asmspec)
3521 if (DECL_BUILT_IN_CLASS (decl) == BUILT_IN_NORMAL)
3522 set_builtin_user_assembler_name (decl, asmspec);
3523 set_user_assembler_name (decl, asmspec);
3526 /* If #pragma weak was used, mark the decl weak now. */
3527 maybe_apply_pragma_weak (decl);
3529 /* Output the assembler code and/or RTL code for variables and functions,
3530 unless the type is an undefined structure or union.
3531 If not, it will get done when the type is completed. */
3533 if (TREE_CODE (decl) == VAR_DECL || TREE_CODE (decl) == FUNCTION_DECL)
3535 /* Determine the ELF visibility. */
3536 if (TREE_PUBLIC (decl))
3537 c_determine_visibility (decl);
3539 /* This is a no-op in c-lang.c or something real in objc-act.c. */
3540 if (c_dialect_objc ())
3541 objc_check_decl (decl);
3543 if (asmspec)
3545 /* If this is not a static variable, issue a warning.
3546 It doesn't make any sense to give an ASMSPEC for an
3547 ordinary, non-register local variable. Historically,
3548 GCC has accepted -- but ignored -- the ASMSPEC in
3549 this case. */
3550 if (!DECL_FILE_SCOPE_P (decl)
3551 && TREE_CODE (decl) == VAR_DECL
3552 && !C_DECL_REGISTER (decl)
3553 && !TREE_STATIC (decl))
3554 warning (0, "ignoring asm-specifier for non-static local "
3555 "variable %q+D", decl);
3556 else
3557 set_user_assembler_name (decl, asmspec);
3560 if (DECL_FILE_SCOPE_P (decl))
3562 if (DECL_INITIAL (decl) == NULL_TREE
3563 || DECL_INITIAL (decl) == error_mark_node)
3564 /* Don't output anything
3565 when a tentative file-scope definition is seen.
3566 But at end of compilation, do output code for them. */
3567 DECL_DEFER_OUTPUT (decl) = 1;
3568 rest_of_decl_compilation (decl, true, 0);
3570 else
3572 /* In conjunction with an ASMSPEC, the `register'
3573 keyword indicates that we should place the variable
3574 in a particular register. */
3575 if (asmspec && C_DECL_REGISTER (decl))
3577 DECL_HARD_REGISTER (decl) = 1;
3578 /* This cannot be done for a structure with volatile
3579 fields, on which DECL_REGISTER will have been
3580 reset. */
3581 if (!DECL_REGISTER (decl))
3582 error ("cannot put object with volatile field into register");
3585 if (TREE_CODE (decl) != FUNCTION_DECL)
3587 /* If we're building a variable sized type, and we might be
3588 reachable other than via the top of the current binding
3589 level, then create a new BIND_EXPR so that we deallocate
3590 the object at the right time. */
3591 /* Note that DECL_SIZE can be null due to errors. */
3592 if (DECL_SIZE (decl)
3593 && !TREE_CONSTANT (DECL_SIZE (decl))
3594 && STATEMENT_LIST_HAS_LABEL (cur_stmt_list))
3596 tree bind;
3597 bind = build3 (BIND_EXPR, void_type_node, NULL, NULL, NULL);
3598 TREE_SIDE_EFFECTS (bind) = 1;
3599 add_stmt (bind);
3600 BIND_EXPR_BODY (bind) = push_stmt_list ();
3602 add_stmt (build_stmt (DECL_EXPR, decl));
3607 if (!DECL_FILE_SCOPE_P (decl))
3609 /* Recompute the RTL of a local array now
3610 if it used to be an incomplete type. */
3611 if (was_incomplete
3612 && !TREE_STATIC (decl) && !DECL_EXTERNAL (decl))
3614 /* If we used it already as memory, it must stay in memory. */
3615 TREE_ADDRESSABLE (decl) = TREE_USED (decl);
3616 /* If it's still incomplete now, no init will save it. */
3617 if (DECL_SIZE (decl) == 0)
3618 DECL_INITIAL (decl) = 0;
3623 if (TREE_CODE (decl) == TYPE_DECL)
3625 if (!DECL_FILE_SCOPE_P (decl)
3626 && variably_modified_type_p (TREE_TYPE (decl), NULL_TREE))
3627 add_stmt (build_stmt (DECL_EXPR, decl));
3629 rest_of_decl_compilation (decl, DECL_FILE_SCOPE_P (decl), 0);
3632 /* At the end of a declaration, throw away any variable type sizes
3633 of types defined inside that declaration. There is no use
3634 computing them in the following function definition. */
3635 if (current_scope == file_scope)
3636 get_pending_sizes ();
3638 /* Install a cleanup (aka destructor) if one was given. */
3639 if (TREE_CODE (decl) == VAR_DECL && !TREE_STATIC (decl))
3641 tree attr = lookup_attribute ("cleanup", DECL_ATTRIBUTES (decl));
3642 if (attr)
3644 tree cleanup_id = TREE_VALUE (TREE_VALUE (attr));
3645 tree cleanup_decl = lookup_name (cleanup_id);
3646 tree cleanup;
3647 VEC(tree,gc) *vec;
3649 /* Build "cleanup(&decl)" for the destructor. */
3650 cleanup = build_unary_op (input_location, ADDR_EXPR, decl, 0);
3651 vec = VEC_alloc (tree, gc, 1);
3652 VEC_quick_push (tree, vec, cleanup);
3653 cleanup = build_function_call_vec (cleanup_decl, vec, NULL);
3654 VEC_free (tree, gc, vec);
3656 /* Don't warn about decl unused; the cleanup uses it. */
3657 TREE_USED (decl) = 1;
3658 TREE_USED (cleanup_decl) = 1;
3660 /* Initialize EH, if we've been told to do so. */
3661 c_maybe_initialize_eh ();
3663 push_cleanup (decl, cleanup, false);
3668 /* Given a parsed parameter declaration, decode it into a PARM_DECL. */
3670 tree
3671 grokparm (const struct c_parm *parm)
3673 tree attrs = parm->attrs;
3674 tree decl = grokdeclarator (parm->declarator, parm->specs, PARM, false,
3675 NULL, &attrs, NULL, NULL, DEPRECATED_NORMAL);
3677 decl_attributes (&decl, attrs, 0);
3679 return decl;
3682 /* Given a parsed parameter declaration, decode it into a PARM_DECL
3683 and push that on the current scope. */
3685 void
3686 push_parm_decl (const struct c_parm *parm)
3688 tree attrs = parm->attrs;
3689 tree decl;
3691 decl = grokdeclarator (parm->declarator, parm->specs, PARM, false, NULL,
3692 &attrs, NULL, NULL, DEPRECATED_NORMAL);
3693 decl_attributes (&decl, attrs, 0);
3695 decl = pushdecl (decl);
3697 finish_decl (decl, NULL_TREE, NULL_TREE, NULL_TREE);
3700 /* Mark all the parameter declarations to date as forward decls.
3701 Also diagnose use of this extension. */
3703 void
3704 mark_forward_parm_decls (void)
3706 struct c_binding *b;
3708 if (pedantic && !current_scope->warned_forward_parm_decls)
3710 pedwarn (input_location, OPT_pedantic,
3711 "ISO C forbids forward parameter declarations");
3712 current_scope->warned_forward_parm_decls = true;
3715 for (b = current_scope->bindings; b; b = b->prev)
3716 if (TREE_CODE (b->decl) == PARM_DECL)
3717 TREE_ASM_WRITTEN (b->decl) = 1;
3720 /* Build a COMPOUND_LITERAL_EXPR. TYPE is the type given in the compound
3721 literal, which may be an incomplete array type completed by the
3722 initializer; INIT is a CONSTRUCTOR that initializes the compound
3723 literal. NON_CONST is true if the initializers contain something
3724 that cannot occur in a constant expression. */
3726 tree
3727 build_compound_literal (tree type, tree init, bool non_const)
3729 /* We do not use start_decl here because we have a type, not a declarator;
3730 and do not use finish_decl because the decl should be stored inside
3731 the COMPOUND_LITERAL_EXPR rather than added elsewhere as a DECL_EXPR. */
3732 tree decl;
3733 tree complit;
3734 tree stmt;
3736 if (type == error_mark_node)
3737 return error_mark_node;
3739 decl = build_decl (VAR_DECL, NULL_TREE, type);
3740 DECL_EXTERNAL (decl) = 0;
3741 TREE_PUBLIC (decl) = 0;
3742 TREE_STATIC (decl) = (current_scope == file_scope);
3743 DECL_CONTEXT (decl) = current_function_decl;
3744 TREE_USED (decl) = 1;
3745 TREE_TYPE (decl) = type;
3746 TREE_READONLY (decl) = TYPE_READONLY (type);
3747 store_init_value (decl, init, NULL_TREE);
3749 if (TREE_CODE (type) == ARRAY_TYPE && !COMPLETE_TYPE_P (type))
3751 int failure = complete_array_type (&TREE_TYPE (decl),
3752 DECL_INITIAL (decl), true);
3753 gcc_assert (!failure);
3755 type = TREE_TYPE (decl);
3756 TREE_TYPE (DECL_INITIAL (decl)) = type;
3759 if (type == error_mark_node || !COMPLETE_TYPE_P (type))
3760 return error_mark_node;
3762 stmt = build_stmt (DECL_EXPR, decl);
3763 complit = build1 (COMPOUND_LITERAL_EXPR, type, stmt);
3764 TREE_SIDE_EFFECTS (complit) = 1;
3766 layout_decl (decl, 0);
3768 if (TREE_STATIC (decl))
3770 /* This decl needs a name for the assembler output. */
3771 set_compound_literal_name (decl);
3772 DECL_DEFER_OUTPUT (decl) = 1;
3773 DECL_COMDAT (decl) = 1;
3774 DECL_ARTIFICIAL (decl) = 1;
3775 DECL_IGNORED_P (decl) = 1;
3776 pushdecl (decl);
3777 rest_of_decl_compilation (decl, 1, 0);
3780 if (non_const)
3782 complit = build2 (C_MAYBE_CONST_EXPR, type, NULL, complit);
3783 C_MAYBE_CONST_EXPR_NON_CONST (complit) = 1;
3786 return complit;
3789 /* Determine whether TYPE is a structure with a flexible array member,
3790 or a union containing such a structure (possibly recursively). */
3792 static bool
3793 flexible_array_type_p (tree type)
3795 tree x;
3796 switch (TREE_CODE (type))
3798 case RECORD_TYPE:
3799 x = TYPE_FIELDS (type);
3800 if (x == NULL_TREE)
3801 return false;
3802 while (TREE_CHAIN (x) != NULL_TREE)
3803 x = TREE_CHAIN (x);
3804 if (TREE_CODE (TREE_TYPE (x)) == ARRAY_TYPE
3805 && TYPE_SIZE (TREE_TYPE (x)) == NULL_TREE
3806 && TYPE_DOMAIN (TREE_TYPE (x)) != NULL_TREE
3807 && TYPE_MAX_VALUE (TYPE_DOMAIN (TREE_TYPE (x))) == NULL_TREE)
3808 return true;
3809 return false;
3810 case UNION_TYPE:
3811 for (x = TYPE_FIELDS (type); x != NULL_TREE; x = TREE_CHAIN (x))
3813 if (flexible_array_type_p (TREE_TYPE (x)))
3814 return true;
3816 return false;
3817 default:
3818 return false;
3822 /* Performs sanity checks on the TYPE and WIDTH of the bit-field NAME,
3823 replacing with appropriate values if they are invalid. */
3824 static void
3825 check_bitfield_type_and_width (tree *type, tree *width, const char *orig_name)
3827 tree type_mv;
3828 unsigned int max_width;
3829 unsigned HOST_WIDE_INT w;
3830 const char *name = orig_name ? orig_name: _("<anonymous>");
3832 /* Detect and ignore out of range field width and process valid
3833 field widths. */
3834 if (!INTEGRAL_TYPE_P (TREE_TYPE (*width))
3835 || TREE_CODE (*width) != INTEGER_CST)
3837 error ("bit-field %qs width not an integer constant", name);
3838 *width = integer_one_node;
3840 else
3842 constant_expression_warning (*width);
3843 if (tree_int_cst_sgn (*width) < 0)
3845 error ("negative width in bit-field %qs", name);
3846 *width = integer_one_node;
3848 else if (integer_zerop (*width) && orig_name)
3850 error ("zero width for bit-field %qs", name);
3851 *width = integer_one_node;
3855 /* Detect invalid bit-field type. */
3856 if (TREE_CODE (*type) != INTEGER_TYPE
3857 && TREE_CODE (*type) != BOOLEAN_TYPE
3858 && TREE_CODE (*type) != ENUMERAL_TYPE)
3860 error ("bit-field %qs has invalid type", name);
3861 *type = unsigned_type_node;
3864 type_mv = TYPE_MAIN_VARIANT (*type);
3865 if (!in_system_header
3866 && type_mv != integer_type_node
3867 && type_mv != unsigned_type_node
3868 && type_mv != boolean_type_node)
3869 pedwarn (input_location, OPT_pedantic,
3870 "type of bit-field %qs is a GCC extension", name);
3872 max_width = TYPE_PRECISION (*type);
3874 if (0 < compare_tree_int (*width, max_width))
3876 error ("width of %qs exceeds its type", name);
3877 w = max_width;
3878 *width = build_int_cst (NULL_TREE, w);
3880 else
3881 w = tree_low_cst (*width, 1);
3883 if (TREE_CODE (*type) == ENUMERAL_TYPE)
3885 struct lang_type *lt = TYPE_LANG_SPECIFIC (*type);
3886 if (!lt
3887 || w < tree_int_cst_min_precision (lt->enum_min, TYPE_UNSIGNED (*type))
3888 || w < tree_int_cst_min_precision (lt->enum_max, TYPE_UNSIGNED (*type)))
3889 warning (0, "%qs is narrower than values of its type", name);
3895 /* Print warning about variable length array if necessary. */
3897 static void
3898 warn_variable_length_array (const char *name, tree size)
3900 int const_size = TREE_CONSTANT (size);
3902 if (!flag_isoc99 && pedantic && warn_vla != 0)
3904 if (const_size)
3906 if (name)
3907 pedwarn (input_location, OPT_Wvla, "ISO C90 forbids array %qs whose size "
3908 "can%'t be evaluated",
3909 name);
3910 else
3911 pedwarn (input_location, OPT_Wvla, "ISO C90 forbids array whose size "
3912 "can%'t be evaluated");
3914 else
3916 if (name)
3917 pedwarn (input_location, OPT_Wvla, "ISO C90 forbids variable length array %qs",
3918 name);
3919 else
3920 pedwarn (input_location, OPT_Wvla, "ISO C90 forbids variable length array");
3923 else if (warn_vla > 0)
3925 if (const_size)
3927 if (name)
3928 warning (OPT_Wvla,
3929 "the size of array %qs can"
3930 "%'t be evaluated", name);
3931 else
3932 warning (OPT_Wvla,
3933 "the size of array can %'t be evaluated");
3935 else
3937 if (name)
3938 warning (OPT_Wvla,
3939 "variable length array %qs is used",
3940 name);
3941 else
3942 warning (OPT_Wvla,
3943 "variable length array is used");
3948 /* Given declspecs and a declarator,
3949 determine the name and type of the object declared
3950 and construct a ..._DECL node for it.
3951 (In one case we can return a ..._TYPE node instead.
3952 For invalid input we sometimes return 0.)
3954 DECLSPECS is a c_declspecs structure for the declaration specifiers.
3956 DECL_CONTEXT says which syntactic context this declaration is in:
3957 NORMAL for most contexts. Make a VAR_DECL or FUNCTION_DECL or TYPE_DECL.
3958 FUNCDEF for a function definition. Like NORMAL but a few different
3959 error messages in each case. Return value may be zero meaning
3960 this definition is too screwy to try to parse.
3961 PARM for a parameter declaration (either within a function prototype
3962 or before a function body). Make a PARM_DECL, or return void_type_node.
3963 TYPENAME if for a typename (in a cast or sizeof).
3964 Don't make a DECL node; just return the ..._TYPE node.
3965 FIELD for a struct or union field; make a FIELD_DECL.
3966 INITIALIZED is true if the decl has an initializer.
3967 WIDTH is non-NULL for bit-fields, and is a pointer to an INTEGER_CST node
3968 representing the width of the bit-field.
3969 DECL_ATTRS points to the list of attributes that should be added to this
3970 decl. Any nested attributes that belong on the decl itself will be
3971 added to this list.
3972 If EXPR is not NULL, any expressions that need to be evaluated as
3973 part of evaluating variably modified types will be stored in *EXPR.
3974 If EXPR_CONST_OPERANDS is not NULL, *EXPR_CONST_OPERANDS will be
3975 set to indicate whether operands in *EXPR can be used in constant
3976 expressions.
3977 DEPRECATED_STATE is a deprecated_states value indicating whether
3978 deprecation warnings should be suppressed.
3980 In the TYPENAME case, DECLARATOR is really an absolute declarator.
3981 It may also be so in the PARM case, for a prototype where the
3982 argument type is specified but not the name.
3984 This function is where the complicated C meanings of `static'
3985 and `extern' are interpreted. */
3987 static tree
3988 grokdeclarator (const struct c_declarator *declarator,
3989 struct c_declspecs *declspecs,
3990 enum decl_context decl_context, bool initialized, tree *width,
3991 tree *decl_attrs, tree *expr, bool *expr_const_operands,
3992 enum deprecated_states deprecated_state)
3994 tree type = declspecs->type;
3995 bool threadp = declspecs->thread_p;
3996 enum c_storage_class storage_class = declspecs->storage_class;
3997 int constp;
3998 int restrictp;
3999 int volatilep;
4000 int type_quals = TYPE_UNQUALIFIED;
4001 const char *name, *orig_name;
4002 bool funcdef_flag = false;
4003 bool funcdef_syntax = false;
4004 int size_varies = 0;
4005 tree decl_attr = declspecs->decl_attr;
4006 int array_ptr_quals = TYPE_UNQUALIFIED;
4007 tree array_ptr_attrs = NULL_TREE;
4008 int array_parm_static = 0;
4009 bool array_parm_vla_unspec_p = false;
4010 tree returned_attrs = NULL_TREE;
4011 bool bitfield = width != NULL;
4012 tree element_type;
4013 struct c_arg_info *arg_info = 0;
4014 tree expr_dummy;
4015 bool expr_const_operands_dummy;
4017 if (expr == NULL)
4018 expr = &expr_dummy;
4019 if (expr_const_operands == NULL)
4020 expr_const_operands = &expr_const_operands_dummy;
4022 *expr = declspecs->expr;
4023 *expr_const_operands = declspecs->expr_const_operands;
4025 if (decl_context == FUNCDEF)
4026 funcdef_flag = true, decl_context = NORMAL;
4028 /* Look inside a declarator for the name being declared
4029 and get it as a string, for an error message. */
4031 const struct c_declarator *decl = declarator;
4032 name = 0;
4034 while (decl)
4035 switch (decl->kind)
4037 case cdk_function:
4038 case cdk_array:
4039 case cdk_pointer:
4040 funcdef_syntax = (decl->kind == cdk_function);
4041 decl = decl->declarator;
4042 break;
4044 case cdk_attrs:
4045 decl = decl->declarator;
4046 break;
4048 case cdk_id:
4049 if (decl->u.id)
4050 name = IDENTIFIER_POINTER (decl->u.id);
4051 decl = 0;
4052 break;
4054 default:
4055 gcc_unreachable ();
4057 orig_name = name;
4058 if (name == 0)
4059 name = "type name";
4062 /* A function definition's declarator must have the form of
4063 a function declarator. */
4065 if (funcdef_flag && !funcdef_syntax)
4066 return 0;
4068 /* If this looks like a function definition, make it one,
4069 even if it occurs where parms are expected.
4070 Then store_parm_decls will reject it and not use it as a parm. */
4071 if (decl_context == NORMAL && !funcdef_flag && current_scope->parm_flag)
4072 decl_context = PARM;
4074 if (declspecs->deprecated_p && deprecated_state != DEPRECATED_SUPPRESS)
4075 warn_deprecated_use (declspecs->type);
4077 if ((decl_context == NORMAL || decl_context == FIELD)
4078 && current_scope == file_scope
4079 && variably_modified_type_p (type, NULL_TREE))
4081 error ("variably modified %qs at file scope", name);
4082 type = integer_type_node;
4085 size_varies = C_TYPE_VARIABLE_SIZE (type);
4087 /* Diagnose defaulting to "int". */
4089 if (declspecs->default_int_p && !in_system_header)
4091 /* Issue a warning if this is an ISO C 99 program or if
4092 -Wreturn-type and this is a function, or if -Wimplicit;
4093 prefer the former warning since it is more explicit. */
4094 if ((warn_implicit_int || warn_return_type || flag_isoc99)
4095 && funcdef_flag)
4096 warn_about_return_type = 1;
4097 else
4098 pedwarn_c99 (input_location, flag_isoc99 ? 0 : OPT_Wimplicit_int,
4099 "type defaults to %<int%> in declaration of %qs", name);
4102 /* Adjust the type if a bit-field is being declared,
4103 -funsigned-bitfields applied and the type is not explicitly
4104 "signed". */
4105 if (bitfield && !flag_signed_bitfields && !declspecs->explicit_signed_p
4106 && TREE_CODE (type) == INTEGER_TYPE)
4107 type = unsigned_type_for (type);
4109 /* Figure out the type qualifiers for the declaration. There are
4110 two ways a declaration can become qualified. One is something
4111 like `const int i' where the `const' is explicit. Another is
4112 something like `typedef const int CI; CI i' where the type of the
4113 declaration contains the `const'. A third possibility is that
4114 there is a type qualifier on the element type of a typedefed
4115 array type, in which case we should extract that qualifier so
4116 that c_apply_type_quals_to_decl receives the full list of
4117 qualifiers to work with (C90 is not entirely clear about whether
4118 duplicate qualifiers should be diagnosed in this case, but it
4119 seems most appropriate to do so). */
4120 element_type = strip_array_types (type);
4121 constp = declspecs->const_p + TYPE_READONLY (element_type);
4122 restrictp = declspecs->restrict_p + TYPE_RESTRICT (element_type);
4123 volatilep = declspecs->volatile_p + TYPE_VOLATILE (element_type);
4124 if (pedantic && !flag_isoc99)
4126 if (constp > 1)
4127 pedwarn (input_location, OPT_pedantic, "duplicate %<const%>");
4128 if (restrictp > 1)
4129 pedwarn (input_location, OPT_pedantic, "duplicate %<restrict%>");
4130 if (volatilep > 1)
4131 pedwarn (input_location, OPT_pedantic, "duplicate %<volatile%>");
4133 if (!flag_gen_aux_info && (TYPE_QUALS (element_type)))
4134 type = TYPE_MAIN_VARIANT (type);
4135 type_quals = ((constp ? TYPE_QUAL_CONST : 0)
4136 | (restrictp ? TYPE_QUAL_RESTRICT : 0)
4137 | (volatilep ? TYPE_QUAL_VOLATILE : 0));
4139 /* Warn about storage classes that are invalid for certain
4140 kinds of declarations (parameters, typenames, etc.). */
4142 if (funcdef_flag
4143 && (threadp
4144 || storage_class == csc_auto
4145 || storage_class == csc_register
4146 || storage_class == csc_typedef))
4148 if (storage_class == csc_auto)
4149 pedwarn (input_location,
4150 (current_scope == file_scope) ? 0 : OPT_pedantic,
4151 "function definition declared %<auto%>");
4152 if (storage_class == csc_register)
4153 error ("function definition declared %<register%>");
4154 if (storage_class == csc_typedef)
4155 error ("function definition declared %<typedef%>");
4156 if (threadp)
4157 error ("function definition declared %<__thread%>");
4158 threadp = false;
4159 if (storage_class == csc_auto
4160 || storage_class == csc_register
4161 || storage_class == csc_typedef)
4162 storage_class = csc_none;
4164 else if (decl_context != NORMAL && (storage_class != csc_none || threadp))
4166 if (decl_context == PARM && storage_class == csc_register)
4168 else
4170 switch (decl_context)
4172 case FIELD:
4173 error ("storage class specified for structure field %qs",
4174 name);
4175 break;
4176 case PARM:
4177 error ("storage class specified for parameter %qs", name);
4178 break;
4179 default:
4180 error ("storage class specified for typename");
4181 break;
4183 storage_class = csc_none;
4184 threadp = false;
4187 else if (storage_class == csc_extern
4188 && initialized
4189 && !funcdef_flag)
4191 /* 'extern' with initialization is invalid if not at file scope. */
4192 if (current_scope == file_scope)
4194 /* It is fine to have 'extern const' when compiling at C
4195 and C++ intersection. */
4196 if (!(warn_cxx_compat && constp))
4197 warning (0, "%qs initialized and declared %<extern%>", name);
4199 else
4200 error ("%qs has both %<extern%> and initializer", name);
4202 else if (current_scope == file_scope)
4204 if (storage_class == csc_auto)
4205 error ("file-scope declaration of %qs specifies %<auto%>", name);
4206 if (pedantic && storage_class == csc_register)
4207 pedwarn (input_location, OPT_pedantic,
4208 "file-scope declaration of %qs specifies %<register%>", name);
4210 else
4212 if (storage_class == csc_extern && funcdef_flag)
4213 error ("nested function %qs declared %<extern%>", name);
4214 else if (threadp && storage_class == csc_none)
4216 error ("function-scope %qs implicitly auto and declared "
4217 "%<__thread%>",
4218 name);
4219 threadp = false;
4223 /* Now figure out the structure of the declarator proper.
4224 Descend through it, creating more complex types, until we reach
4225 the declared identifier (or NULL_TREE, in an absolute declarator).
4226 At each stage we maintain an unqualified version of the type
4227 together with any qualifiers that should be applied to it with
4228 c_build_qualified_type; this way, array types including
4229 multidimensional array types are first built up in unqualified
4230 form and then the qualified form is created with
4231 TYPE_MAIN_VARIANT pointing to the unqualified form. */
4233 while (declarator && declarator->kind != cdk_id)
4235 if (type == error_mark_node)
4237 declarator = declarator->declarator;
4238 continue;
4241 /* Each level of DECLARATOR is either a cdk_array (for ...[..]),
4242 a cdk_pointer (for *...),
4243 a cdk_function (for ...(...)),
4244 a cdk_attrs (for nested attributes),
4245 or a cdk_id (for the name being declared
4246 or the place in an absolute declarator
4247 where the name was omitted).
4248 For the last case, we have just exited the loop.
4250 At this point, TYPE is the type of elements of an array,
4251 or for a function to return, or for a pointer to point to.
4252 After this sequence of ifs, TYPE is the type of the
4253 array or function or pointer, and DECLARATOR has had its
4254 outermost layer removed. */
4256 if (array_ptr_quals != TYPE_UNQUALIFIED
4257 || array_ptr_attrs != NULL_TREE
4258 || array_parm_static)
4260 /* Only the innermost declarator (making a parameter be of
4261 array type which is converted to pointer type)
4262 may have static or type qualifiers. */
4263 error ("static or type qualifiers in non-parameter array declarator");
4264 array_ptr_quals = TYPE_UNQUALIFIED;
4265 array_ptr_attrs = NULL_TREE;
4266 array_parm_static = 0;
4269 switch (declarator->kind)
4271 case cdk_attrs:
4273 /* A declarator with embedded attributes. */
4274 tree attrs = declarator->u.attrs;
4275 const struct c_declarator *inner_decl;
4276 int attr_flags = 0;
4277 declarator = declarator->declarator;
4278 inner_decl = declarator;
4279 while (inner_decl->kind == cdk_attrs)
4280 inner_decl = inner_decl->declarator;
4281 if (inner_decl->kind == cdk_id)
4282 attr_flags |= (int) ATTR_FLAG_DECL_NEXT;
4283 else if (inner_decl->kind == cdk_function)
4284 attr_flags |= (int) ATTR_FLAG_FUNCTION_NEXT;
4285 else if (inner_decl->kind == cdk_array)
4286 attr_flags |= (int) ATTR_FLAG_ARRAY_NEXT;
4287 returned_attrs = decl_attributes (&type,
4288 chainon (returned_attrs, attrs),
4289 attr_flags);
4290 break;
4292 case cdk_array:
4294 tree itype = NULL_TREE;
4295 tree size = declarator->u.array.dimen;
4296 /* The index is a signed object `sizetype' bits wide. */
4297 tree index_type = c_common_signed_type (sizetype);
4299 array_ptr_quals = declarator->u.array.quals;
4300 array_ptr_attrs = declarator->u.array.attrs;
4301 array_parm_static = declarator->u.array.static_p;
4302 array_parm_vla_unspec_p = declarator->u.array.vla_unspec_p;
4304 declarator = declarator->declarator;
4306 /* Check for some types that there cannot be arrays of. */
4308 if (VOID_TYPE_P (type))
4310 error ("declaration of %qs as array of voids", name);
4311 type = error_mark_node;
4314 if (TREE_CODE (type) == FUNCTION_TYPE)
4316 error ("declaration of %qs as array of functions", name);
4317 type = error_mark_node;
4320 if (pedantic && !in_system_header && flexible_array_type_p (type))
4321 pedwarn (input_location, OPT_pedantic,
4322 "invalid use of structure with flexible array member");
4324 if (size == error_mark_node)
4325 type = error_mark_node;
4327 if (type == error_mark_node)
4328 continue;
4330 /* If size was specified, set ITYPE to a range-type for
4331 that size. Otherwise, ITYPE remains null. finish_decl
4332 may figure it out from an initial value. */
4334 if (size)
4336 bool size_maybe_const = true;
4337 bool size_int_const = (TREE_CODE (size) == INTEGER_CST
4338 && !TREE_OVERFLOW (size));
4339 bool this_size_varies = false;
4341 /* Strip NON_LVALUE_EXPRs since we aren't using as an
4342 lvalue. */
4343 STRIP_TYPE_NOPS (size);
4345 if (!INTEGRAL_TYPE_P (TREE_TYPE (size)))
4347 error ("size of array %qs has non-integer type", name);
4348 size = integer_one_node;
4351 size = c_fully_fold (size, false, &size_maybe_const);
4353 if (pedantic && size_maybe_const && integer_zerop (size))
4354 pedwarn (input_location, OPT_pedantic,
4355 "ISO C forbids zero-size array %qs", name);
4357 if (TREE_CODE (size) == INTEGER_CST && size_maybe_const)
4359 constant_expression_warning (size);
4360 if (tree_int_cst_sgn (size) < 0)
4362 error ("size of array %qs is negative", name);
4363 size = integer_one_node;
4365 /* Handle a size folded to an integer constant but
4366 not an integer constant expression. */
4367 if (!size_int_const)
4369 /* If this is a file scope declaration of an
4370 ordinary identifier, this is invalid code;
4371 diagnosing it here and not subsequently
4372 treating the type as variable-length avoids
4373 more confusing diagnostics later. */
4374 if ((decl_context == NORMAL || decl_context == FIELD)
4375 && current_scope == file_scope)
4376 pedwarn (input_location, 0,
4377 "variably modified %qs at file scope", name);
4378 else
4379 this_size_varies = size_varies = 1;
4380 warn_variable_length_array (orig_name, size);
4383 else if ((decl_context == NORMAL || decl_context == FIELD)
4384 && current_scope == file_scope)
4386 error ("variably modified %qs at file scope", name);
4387 size = integer_one_node;
4389 else
4391 /* Make sure the array size remains visibly
4392 nonconstant even if it is (eg) a const variable
4393 with known value. */
4394 this_size_varies = size_varies = 1;
4395 warn_variable_length_array (orig_name, size);
4398 if (integer_zerop (size) && !this_size_varies)
4400 /* A zero-length array cannot be represented with
4401 an unsigned index type, which is what we'll
4402 get with build_index_type. Create an
4403 open-ended range instead. */
4404 itype = build_range_type (sizetype, size, NULL_TREE);
4406 else
4408 /* Arrange for the SAVE_EXPR on the inside of the
4409 MINUS_EXPR, which allows the -1 to get folded
4410 with the +1 that happens when building TYPE_SIZE. */
4411 if (size_varies)
4412 size = variable_size (size);
4413 if (this_size_varies && TREE_CODE (size) == INTEGER_CST)
4414 size = build2 (COMPOUND_EXPR, TREE_TYPE (size),
4415 integer_zero_node, size);
4417 /* Compute the maximum valid index, that is, size
4418 - 1. Do the calculation in index_type, so that
4419 if it is a variable the computations will be
4420 done in the proper mode. */
4421 itype = fold_build2 (MINUS_EXPR, index_type,
4422 convert (index_type, size),
4423 convert (index_type,
4424 size_one_node));
4426 /* If that overflowed, the array is too big. ???
4427 While a size of INT_MAX+1 technically shouldn't
4428 cause an overflow (because we subtract 1), the
4429 overflow is recorded during the conversion to
4430 index_type, before the subtraction. Handling
4431 this case seems like an unnecessary
4432 complication. */
4433 if (TREE_CODE (itype) == INTEGER_CST
4434 && TREE_OVERFLOW (itype))
4436 error ("size of array %qs is too large", name);
4437 type = error_mark_node;
4438 continue;
4441 itype = build_index_type (itype);
4443 if (this_size_varies)
4445 if (*expr)
4446 *expr = build2 (COMPOUND_EXPR, TREE_TYPE (size),
4447 *expr, size);
4448 else
4449 *expr = size;
4450 *expr_const_operands &= size_maybe_const;
4453 else if (decl_context == FIELD)
4455 bool flexible_array_member = false;
4456 if (array_parm_vla_unspec_p)
4457 /* Field names can in fact have function prototype
4458 scope so [*] is disallowed here through making
4459 the field variably modified, not through being
4460 something other than a declaration with function
4461 prototype scope. */
4462 size_varies = 1;
4463 else
4465 const struct c_declarator *t = declarator;
4466 while (t->kind == cdk_attrs)
4467 t = t->declarator;
4468 flexible_array_member = (t->kind == cdk_id);
4470 if (flexible_array_member
4471 && pedantic && !flag_isoc99 && !in_system_header)
4472 pedwarn (input_location, OPT_pedantic,
4473 "ISO C90 does not support flexible array members");
4475 /* ISO C99 Flexible array members are effectively
4476 identical to GCC's zero-length array extension. */
4477 if (flexible_array_member || array_parm_vla_unspec_p)
4478 itype = build_range_type (sizetype, size_zero_node,
4479 NULL_TREE);
4481 else if (decl_context == PARM)
4483 if (array_parm_vla_unspec_p)
4485 itype = build_range_type (sizetype, size_zero_node, NULL_TREE);
4486 size_varies = 1;
4489 else if (decl_context == TYPENAME)
4491 if (array_parm_vla_unspec_p)
4493 /* C99 6.7.5.2p4 */
4494 warning (0, "%<[*]%> not in a declaration");
4495 /* We use this to avoid messing up with incomplete
4496 array types of the same type, that would
4497 otherwise be modified below. */
4498 itype = build_range_type (sizetype, size_zero_node,
4499 NULL_TREE);
4500 size_varies = 1;
4504 /* Complain about arrays of incomplete types. */
4505 if (!COMPLETE_TYPE_P (type))
4507 error ("array type has incomplete element type");
4508 type = error_mark_node;
4510 else
4511 /* When itype is NULL, a shared incomplete array type is
4512 returned for all array of a given type. Elsewhere we
4513 make sure we don't complete that type before copying
4514 it, but here we want to make sure we don't ever
4515 modify the shared type, so we gcc_assert (itype)
4516 below. */
4517 type = build_array_type (type, itype);
4519 if (type != error_mark_node)
4521 if (size_varies)
4523 /* It is ok to modify type here even if itype is
4524 NULL: if size_varies, we're in a
4525 multi-dimensional array and the inner type has
4526 variable size, so the enclosing shared array type
4527 must too. */
4528 if (size && TREE_CODE (size) == INTEGER_CST)
4529 type
4530 = build_distinct_type_copy (TYPE_MAIN_VARIANT (type));
4531 C_TYPE_VARIABLE_SIZE (type) = 1;
4534 /* The GCC extension for zero-length arrays differs from
4535 ISO flexible array members in that sizeof yields
4536 zero. */
4537 if (size && integer_zerop (size))
4539 gcc_assert (itype);
4540 TYPE_SIZE (type) = bitsize_zero_node;
4541 TYPE_SIZE_UNIT (type) = size_zero_node;
4543 if (array_parm_vla_unspec_p)
4545 gcc_assert (itype);
4546 /* The type is complete. C99 6.7.5.2p4 */
4547 TYPE_SIZE (type) = bitsize_zero_node;
4548 TYPE_SIZE_UNIT (type) = size_zero_node;
4552 if (decl_context != PARM
4553 && (array_ptr_quals != TYPE_UNQUALIFIED
4554 || array_ptr_attrs != NULL_TREE
4555 || array_parm_static))
4557 error ("static or type qualifiers in non-parameter array declarator");
4558 array_ptr_quals = TYPE_UNQUALIFIED;
4559 array_ptr_attrs = NULL_TREE;
4560 array_parm_static = 0;
4562 break;
4564 case cdk_function:
4566 /* Say it's a definition only for the declarator closest
4567 to the identifier, apart possibly from some
4568 attributes. */
4569 bool really_funcdef = false;
4570 tree arg_types;
4571 if (funcdef_flag)
4573 const struct c_declarator *t = declarator->declarator;
4574 while (t->kind == cdk_attrs)
4575 t = t->declarator;
4576 really_funcdef = (t->kind == cdk_id);
4579 /* Declaring a function type. Make sure we have a valid
4580 type for the function to return. */
4581 if (type == error_mark_node)
4582 continue;
4584 size_varies = 0;
4586 /* Warn about some types functions can't return. */
4587 if (TREE_CODE (type) == FUNCTION_TYPE)
4589 error ("%qs declared as function returning a function", name);
4590 type = integer_type_node;
4592 if (TREE_CODE (type) == ARRAY_TYPE)
4594 error ("%qs declared as function returning an array", name);
4595 type = integer_type_node;
4598 /* Construct the function type and go to the next
4599 inner layer of declarator. */
4600 arg_info = declarator->u.arg_info;
4601 arg_types = grokparms (arg_info, really_funcdef);
4602 if (really_funcdef)
4603 put_pending_sizes (arg_info->pending_sizes);
4605 /* Type qualifiers before the return type of the function
4606 qualify the return type, not the function type. */
4607 if (type_quals)
4609 /* Type qualifiers on a function return type are
4610 normally permitted by the standard but have no
4611 effect, so give a warning at -Wreturn-type.
4612 Qualifiers on a void return type are banned on
4613 function definitions in ISO C; GCC used to used
4614 them for noreturn functions. */
4615 if (VOID_TYPE_P (type) && really_funcdef)
4616 pedwarn (input_location, 0,
4617 "function definition has qualified void return type");
4618 else
4619 warning (OPT_Wignored_qualifiers,
4620 "type qualifiers ignored on function return type");
4622 type = c_build_qualified_type (type, type_quals);
4624 type_quals = TYPE_UNQUALIFIED;
4626 type = build_function_type (type, arg_types);
4627 declarator = declarator->declarator;
4629 /* Set the TYPE_CONTEXTs for each tagged type which is local to
4630 the formal parameter list of this FUNCTION_TYPE to point to
4631 the FUNCTION_TYPE node itself. */
4633 tree link;
4635 for (link = arg_info->tags;
4636 link;
4637 link = TREE_CHAIN (link))
4638 TYPE_CONTEXT (TREE_VALUE (link)) = type;
4640 break;
4642 case cdk_pointer:
4644 /* Merge any constancy or volatility into the target type
4645 for the pointer. */
4647 if (pedantic && TREE_CODE (type) == FUNCTION_TYPE
4648 && type_quals)
4649 pedwarn (input_location, OPT_pedantic,
4650 "ISO C forbids qualified function types");
4651 if (type_quals)
4652 type = c_build_qualified_type (type, type_quals);
4653 size_varies = 0;
4655 /* When the pointed-to type involves components of variable size,
4656 care must be taken to ensure that the size evaluation code is
4657 emitted early enough to dominate all the possible later uses
4658 and late enough for the variables on which it depends to have
4659 been assigned.
4661 This is expected to happen automatically when the pointed-to
4662 type has a name/declaration of it's own, but special attention
4663 is required if the type is anonymous.
4665 We handle the NORMAL and FIELD contexts here by attaching an
4666 artificial TYPE_DECL to such pointed-to type. This forces the
4667 sizes evaluation at a safe point and ensures it is not deferred
4668 until e.g. within a deeper conditional context.
4670 We expect nothing to be needed here for PARM or TYPENAME.
4671 Pushing a TYPE_DECL at this point for TYPENAME would actually
4672 be incorrect, as we might be in the middle of an expression
4673 with side effects on the pointed-to type size "arguments" prior
4674 to the pointer declaration point and the fake TYPE_DECL in the
4675 enclosing context would force the size evaluation prior to the
4676 side effects. */
4678 if (!TYPE_NAME (type)
4679 && (decl_context == NORMAL || decl_context == FIELD)
4680 && variably_modified_type_p (type, NULL_TREE))
4682 tree decl = build_decl (TYPE_DECL, NULL_TREE, type);
4683 DECL_ARTIFICIAL (decl) = 1;
4684 pushdecl (decl);
4685 finish_decl (decl, NULL_TREE, NULL_TREE, NULL_TREE);
4686 TYPE_NAME (type) = decl;
4689 type = build_pointer_type (type);
4691 /* Process type qualifiers (such as const or volatile)
4692 that were given inside the `*'. */
4693 type_quals = declarator->u.pointer_quals;
4695 declarator = declarator->declarator;
4696 break;
4698 default:
4699 gcc_unreachable ();
4702 *decl_attrs = chainon (returned_attrs, *decl_attrs);
4704 /* Now TYPE has the actual type, apart from any qualifiers in
4705 TYPE_QUALS. */
4707 /* Check the type and width of a bit-field. */
4708 if (bitfield)
4709 check_bitfield_type_and_width (&type, width, orig_name);
4711 /* Did array size calculations overflow? */
4713 if (TREE_CODE (type) == ARRAY_TYPE
4714 && COMPLETE_TYPE_P (type)
4715 && TREE_CODE (TYPE_SIZE_UNIT (type)) == INTEGER_CST
4716 && TREE_OVERFLOW (TYPE_SIZE_UNIT (type)))
4718 error ("size of array %qs is too large", name);
4719 /* If we proceed with the array type as it is, we'll eventually
4720 crash in tree_low_cst(). */
4721 type = error_mark_node;
4724 /* If this is declaring a typedef name, return a TYPE_DECL. */
4726 if (storage_class == csc_typedef)
4728 tree decl;
4729 if (pedantic && TREE_CODE (type) == FUNCTION_TYPE
4730 && type_quals)
4731 pedwarn (input_location, OPT_pedantic,
4732 "ISO C forbids qualified function types");
4733 if (type_quals)
4734 type = c_build_qualified_type (type, type_quals);
4735 decl = build_decl (TYPE_DECL, declarator->u.id, type);
4736 DECL_SOURCE_LOCATION (decl) = declarator->id_loc;
4737 if (declspecs->explicit_signed_p)
4738 C_TYPEDEF_EXPLICITLY_SIGNED (decl) = 1;
4739 if (declspecs->inline_p)
4740 pedwarn (input_location, 0,"typedef %q+D declared %<inline%>", decl);
4741 return decl;
4744 /* If this is a type name (such as, in a cast or sizeof),
4745 compute the type and return it now. */
4747 if (decl_context == TYPENAME)
4749 /* Note that the grammar rejects storage classes in typenames
4750 and fields. */
4751 gcc_assert (storage_class == csc_none && !threadp
4752 && !declspecs->inline_p);
4753 if (pedantic && TREE_CODE (type) == FUNCTION_TYPE
4754 && type_quals)
4755 pedwarn (input_location, OPT_pedantic,
4756 "ISO C forbids const or volatile function types");
4757 if (type_quals)
4758 type = c_build_qualified_type (type, type_quals);
4759 return type;
4762 if (pedantic && decl_context == FIELD
4763 && variably_modified_type_p (type, NULL_TREE))
4765 /* C99 6.7.2.1p8 */
4766 pedwarn (input_location, OPT_pedantic,
4767 "a member of a structure or union cannot have a variably modified type");
4770 /* Aside from typedefs and type names (handle above),
4771 `void' at top level (not within pointer)
4772 is allowed only in public variables.
4773 We don't complain about parms either, but that is because
4774 a better error message can be made later. */
4776 if (VOID_TYPE_P (type) && decl_context != PARM
4777 && !((decl_context != FIELD && TREE_CODE (type) != FUNCTION_TYPE)
4778 && (storage_class == csc_extern
4779 || (current_scope == file_scope
4780 && !(storage_class == csc_static
4781 || storage_class == csc_register)))))
4783 error ("variable or field %qs declared void", name);
4784 type = integer_type_node;
4787 /* Now create the decl, which may be a VAR_DECL, a PARM_DECL
4788 or a FUNCTION_DECL, depending on DECL_CONTEXT and TYPE. */
4791 tree decl;
4793 if (decl_context == PARM)
4795 tree promoted_type;
4797 /* A parameter declared as an array of T is really a pointer to T.
4798 One declared as a function is really a pointer to a function. */
4800 if (TREE_CODE (type) == ARRAY_TYPE)
4802 /* Transfer const-ness of array into that of type pointed to. */
4803 type = TREE_TYPE (type);
4804 if (type_quals)
4805 type = c_build_qualified_type (type, type_quals);
4806 type = build_pointer_type (type);
4807 type_quals = array_ptr_quals;
4808 if (type_quals)
4809 type = c_build_qualified_type (type, type_quals);
4811 /* We don't yet implement attributes in this context. */
4812 if (array_ptr_attrs != NULL_TREE)
4813 warning (OPT_Wattributes,
4814 "attributes in parameter array declarator ignored");
4816 size_varies = 0;
4818 else if (TREE_CODE (type) == FUNCTION_TYPE)
4820 if (type_quals)
4821 pedwarn (input_location, OPT_pedantic,
4822 "ISO C forbids qualified function types");
4823 if (type_quals)
4824 type = c_build_qualified_type (type, type_quals);
4825 type = build_pointer_type (type);
4826 type_quals = TYPE_UNQUALIFIED;
4828 else if (type_quals)
4829 type = c_build_qualified_type (type, type_quals);
4831 decl = build_decl (PARM_DECL, declarator->u.id, type);
4832 DECL_SOURCE_LOCATION (decl) = declarator->id_loc;
4833 if (size_varies)
4834 C_DECL_VARIABLE_SIZE (decl) = 1;
4836 /* Compute the type actually passed in the parmlist,
4837 for the case where there is no prototype.
4838 (For example, shorts and chars are passed as ints.)
4839 When there is a prototype, this is overridden later. */
4841 if (type == error_mark_node)
4842 promoted_type = type;
4843 else
4844 promoted_type = c_type_promotes_to (type);
4846 DECL_ARG_TYPE (decl) = promoted_type;
4847 if (declspecs->inline_p)
4848 pedwarn (input_location, 0, "parameter %q+D declared %<inline%>", decl);
4850 else if (decl_context == FIELD)
4852 /* Note that the grammar rejects storage classes in typenames
4853 and fields. */
4854 gcc_assert (storage_class == csc_none && !threadp
4855 && !declspecs->inline_p);
4857 /* Structure field. It may not be a function. */
4859 if (TREE_CODE (type) == FUNCTION_TYPE)
4861 error ("field %qs declared as a function", name);
4862 type = build_pointer_type (type);
4864 else if (TREE_CODE (type) != ERROR_MARK
4865 && !COMPLETE_OR_UNBOUND_ARRAY_TYPE_P (type))
4867 error ("field %qs has incomplete type", name);
4868 type = error_mark_node;
4870 type = c_build_qualified_type (type, type_quals);
4871 decl = build_decl (FIELD_DECL, declarator->u.id, type);
4872 DECL_SOURCE_LOCATION (decl) = declarator->id_loc;
4873 DECL_NONADDRESSABLE_P (decl) = bitfield;
4874 if (bitfield && !declarator->u.id)
4875 TREE_NO_WARNING (decl) = 1;
4877 if (size_varies)
4878 C_DECL_VARIABLE_SIZE (decl) = 1;
4880 else if (TREE_CODE (type) == FUNCTION_TYPE)
4882 if (storage_class == csc_register || threadp)
4884 error ("invalid storage class for function %qs", name);
4886 else if (current_scope != file_scope)
4888 /* Function declaration not at file scope. Storage
4889 classes other than `extern' are not allowed, C99
4890 6.7.1p5, and `extern' makes no difference. However,
4891 GCC allows 'auto', perhaps with 'inline', to support
4892 nested functions. */
4893 if (storage_class == csc_auto)
4894 pedwarn (input_location, OPT_pedantic, "invalid storage class for function %qs", name);
4895 else if (storage_class == csc_static)
4897 error ("invalid storage class for function %qs", name);
4898 if (funcdef_flag)
4899 storage_class = declspecs->storage_class = csc_none;
4900 else
4901 return 0;
4905 decl = build_decl (FUNCTION_DECL, declarator->u.id, type);
4906 DECL_SOURCE_LOCATION (decl) = declarator->id_loc;
4907 decl = build_decl_attribute_variant (decl, decl_attr);
4909 if (pedantic && type_quals && !DECL_IN_SYSTEM_HEADER (decl))
4910 pedwarn (input_location, OPT_pedantic,
4911 "ISO C forbids qualified function types");
4913 /* GNU C interprets a volatile-qualified function type to indicate
4914 that the function does not return. */
4915 if ((type_quals & TYPE_QUAL_VOLATILE)
4916 && !VOID_TYPE_P (TREE_TYPE (TREE_TYPE (decl))))
4917 warning (0, "%<noreturn%> function returns non-void value");
4919 /* Every function declaration is an external reference
4920 (DECL_EXTERNAL) except for those which are not at file
4921 scope and are explicitly declared "auto". This is
4922 forbidden by standard C (C99 6.7.1p5) and is interpreted by
4923 GCC to signify a forward declaration of a nested function. */
4924 if (storage_class == csc_auto && current_scope != file_scope)
4925 DECL_EXTERNAL (decl) = 0;
4926 /* In C99, a function which is declared 'inline' with 'extern'
4927 is not an external reference (which is confusing). It
4928 means that the later definition of the function must be output
4929 in this file, C99 6.7.4p6. In GNU C89, a function declared
4930 'extern inline' is an external reference. */
4931 else if (declspecs->inline_p && storage_class != csc_static)
4932 DECL_EXTERNAL (decl) = ((storage_class == csc_extern)
4933 == flag_gnu89_inline);
4934 else
4935 DECL_EXTERNAL (decl) = !initialized;
4937 /* Record absence of global scope for `static' or `auto'. */
4938 TREE_PUBLIC (decl)
4939 = !(storage_class == csc_static || storage_class == csc_auto);
4941 /* For a function definition, record the argument information
4942 block where store_parm_decls will look for it. */
4943 if (funcdef_flag)
4944 current_function_arg_info = arg_info;
4946 if (declspecs->default_int_p)
4947 C_FUNCTION_IMPLICIT_INT (decl) = 1;
4949 /* Record presence of `inline', if it is reasonable. */
4950 if (flag_hosted && MAIN_NAME_P (declarator->u.id))
4952 if (declspecs->inline_p)
4953 pedwarn (input_location, 0, "cannot inline function %<main%>");
4955 else if (declspecs->inline_p)
4956 /* Record that the function is declared `inline'. */
4957 DECL_DECLARED_INLINE_P (decl) = 1;
4959 else
4961 /* It's a variable. */
4962 /* An uninitialized decl with `extern' is a reference. */
4963 int extern_ref = !initialized && storage_class == csc_extern;
4965 type = c_build_qualified_type (type, type_quals);
4967 /* C99 6.2.2p7: It is invalid (compile-time undefined
4968 behavior) to create an 'extern' declaration for a
4969 variable if there is a global declaration that is
4970 'static' and the global declaration is not visible.
4971 (If the static declaration _is_ currently visible,
4972 the 'extern' declaration is taken to refer to that decl.) */
4973 if (extern_ref && current_scope != file_scope)
4975 tree global_decl = identifier_global_value (declarator->u.id);
4976 tree visible_decl = lookup_name (declarator->u.id);
4978 if (global_decl
4979 && global_decl != visible_decl
4980 && TREE_CODE (global_decl) == VAR_DECL
4981 && !TREE_PUBLIC (global_decl))
4982 error ("variable previously declared %<static%> redeclared "
4983 "%<extern%>");
4986 decl = build_decl (VAR_DECL, declarator->u.id, type);
4987 DECL_SOURCE_LOCATION (decl) = declarator->id_loc;
4988 if (size_varies)
4989 C_DECL_VARIABLE_SIZE (decl) = 1;
4991 if (declspecs->inline_p)
4992 pedwarn (input_location, 0, "variable %q+D declared %<inline%>", decl);
4994 /* At file scope, an initialized extern declaration may follow
4995 a static declaration. In that case, DECL_EXTERNAL will be
4996 reset later in start_decl. */
4997 DECL_EXTERNAL (decl) = (storage_class == csc_extern);
4999 /* At file scope, the presence of a `static' or `register' storage
5000 class specifier, or the absence of all storage class specifiers
5001 makes this declaration a definition (perhaps tentative). Also,
5002 the absence of `static' makes it public. */
5003 if (current_scope == file_scope)
5005 TREE_PUBLIC (decl) = storage_class != csc_static;
5006 TREE_STATIC (decl) = !extern_ref;
5008 /* Not at file scope, only `static' makes a static definition. */
5009 else
5011 TREE_STATIC (decl) = (storage_class == csc_static);
5012 TREE_PUBLIC (decl) = extern_ref;
5015 if (threadp)
5016 DECL_TLS_MODEL (decl) = decl_default_tls_model (decl);
5019 if (storage_class == csc_extern
5020 && variably_modified_type_p (type, NULL_TREE))
5022 /* C99 6.7.5.2p2 */
5023 error ("object with variably modified type must have no linkage");
5026 /* Record `register' declaration for warnings on &
5027 and in case doing stupid register allocation. */
5029 if (storage_class == csc_register)
5031 C_DECL_REGISTER (decl) = 1;
5032 DECL_REGISTER (decl) = 1;
5035 /* Record constancy and volatility. */
5036 c_apply_type_quals_to_decl (type_quals, decl);
5038 /* If a type has volatile components, it should be stored in memory.
5039 Otherwise, the fact that those components are volatile
5040 will be ignored, and would even crash the compiler.
5041 Of course, this only makes sense on VAR,PARM, and RESULT decl's. */
5042 if (C_TYPE_FIELDS_VOLATILE (TREE_TYPE (decl))
5043 && (TREE_CODE (decl) == VAR_DECL || TREE_CODE (decl) == PARM_DECL
5044 || TREE_CODE (decl) == RESULT_DECL))
5046 /* It is not an error for a structure with volatile fields to
5047 be declared register, but reset DECL_REGISTER since it
5048 cannot actually go in a register. */
5049 int was_reg = C_DECL_REGISTER (decl);
5050 C_DECL_REGISTER (decl) = 0;
5051 DECL_REGISTER (decl) = 0;
5052 c_mark_addressable (decl);
5053 C_DECL_REGISTER (decl) = was_reg;
5056 /* This is the earliest point at which we might know the assembler
5057 name of a variable. Thus, if it's known before this, die horribly. */
5058 gcc_assert (!DECL_ASSEMBLER_NAME_SET_P (decl));
5060 return decl;
5064 /* Decode the parameter-list info for a function type or function definition.
5065 The argument is the value returned by `get_parm_info' (or made in c-parse.c
5066 if there is an identifier list instead of a parameter decl list).
5067 These two functions are separate because when a function returns
5068 or receives functions then each is called multiple times but the order
5069 of calls is different. The last call to `grokparms' is always the one
5070 that contains the formal parameter names of a function definition.
5072 Return a list of arg types to use in the FUNCTION_TYPE for this function.
5074 FUNCDEF_FLAG is true for a function definition, false for
5075 a mere declaration. A nonempty identifier-list gets an error message
5076 when FUNCDEF_FLAG is false. */
5078 static tree
5079 grokparms (struct c_arg_info *arg_info, bool funcdef_flag)
5081 tree arg_types = arg_info->types;
5083 if (funcdef_flag && arg_info->had_vla_unspec)
5085 /* A function definition isn't function prototype scope C99 6.2.1p4. */
5086 /* C99 6.7.5.2p4 */
5087 error ("%<[*]%> not allowed in other than function prototype scope");
5090 if (arg_types == 0 && !funcdef_flag && !in_system_header)
5091 warning (OPT_Wstrict_prototypes,
5092 "function declaration isn%'t a prototype");
5094 if (arg_types == error_mark_node)
5095 return 0; /* don't set TYPE_ARG_TYPES in this case */
5097 else if (arg_types && TREE_CODE (TREE_VALUE (arg_types)) == IDENTIFIER_NODE)
5099 if (!funcdef_flag)
5100 pedwarn (input_location, 0, "parameter names (without types) in function declaration");
5102 arg_info->parms = arg_info->types;
5103 arg_info->types = 0;
5104 return 0;
5106 else
5108 tree parm, type, typelt;
5109 unsigned int parmno;
5111 /* If there is a parameter of incomplete type in a definition,
5112 this is an error. In a declaration this is valid, and a
5113 struct or union type may be completed later, before any calls
5114 or definition of the function. In the case where the tag was
5115 first declared within the parameter list, a warning has
5116 already been given. If a parameter has void type, then
5117 however the function cannot be defined or called, so
5118 warn. */
5120 for (parm = arg_info->parms, typelt = arg_types, parmno = 1;
5121 parm;
5122 parm = TREE_CHAIN (parm), typelt = TREE_CHAIN (typelt), parmno++)
5124 type = TREE_VALUE (typelt);
5125 if (type == error_mark_node)
5126 continue;
5128 if (!COMPLETE_TYPE_P (type))
5130 if (funcdef_flag)
5132 if (DECL_NAME (parm))
5133 error ("parameter %u (%q+D) has incomplete type",
5134 parmno, parm);
5135 else
5136 error ("%Jparameter %u has incomplete type",
5137 parm, parmno);
5139 TREE_VALUE (typelt) = error_mark_node;
5140 TREE_TYPE (parm) = error_mark_node;
5142 else if (VOID_TYPE_P (type))
5144 if (DECL_NAME (parm))
5145 warning (0, "parameter %u (%q+D) has void type",
5146 parmno, parm);
5147 else
5148 warning (0, "%Jparameter %u has void type",
5149 parm, parmno);
5153 if (DECL_NAME (parm) && TREE_USED (parm))
5154 warn_if_shadowing (parm);
5156 return arg_types;
5160 /* Take apart the current scope and return a c_arg_info structure with
5161 info on a parameter list just parsed.
5163 This structure is later fed to 'grokparms' and 'store_parm_decls'.
5165 ELLIPSIS being true means the argument list ended in '...' so don't
5166 append a sentinel (void_list_node) to the end of the type-list. */
5168 struct c_arg_info *
5169 get_parm_info (bool ellipsis)
5171 struct c_binding *b = current_scope->bindings;
5172 struct c_arg_info *arg_info = XOBNEW (&parser_obstack,
5173 struct c_arg_info);
5174 tree parms = 0;
5175 tree tags = 0;
5176 tree types = 0;
5177 tree others = 0;
5179 static bool explained_incomplete_types = false;
5180 bool gave_void_only_once_err = false;
5182 arg_info->parms = 0;
5183 arg_info->tags = 0;
5184 arg_info->types = 0;
5185 arg_info->others = 0;
5186 arg_info->pending_sizes = 0;
5187 arg_info->had_vla_unspec = current_scope->had_vla_unspec;
5189 /* The bindings in this scope must not get put into a block.
5190 We will take care of deleting the binding nodes. */
5191 current_scope->bindings = 0;
5193 /* This function is only called if there was *something* on the
5194 parameter list. */
5195 gcc_assert (b);
5197 /* A parameter list consisting solely of 'void' indicates that the
5198 function takes no arguments. But if the 'void' is qualified
5199 (by 'const' or 'volatile'), or has a storage class specifier
5200 ('register'), then the behavior is undefined; issue an error.
5201 Typedefs for 'void' are OK (see DR#157). */
5202 if (b->prev == 0 /* one binding */
5203 && TREE_CODE (b->decl) == PARM_DECL /* which is a parameter */
5204 && !DECL_NAME (b->decl) /* anonymous */
5205 && VOID_TYPE_P (TREE_TYPE (b->decl))) /* of void type */
5207 if (TREE_THIS_VOLATILE (b->decl)
5208 || TREE_READONLY (b->decl)
5209 || C_DECL_REGISTER (b->decl))
5210 error ("%<void%> as only parameter may not be qualified");
5212 /* There cannot be an ellipsis. */
5213 if (ellipsis)
5214 error ("%<void%> must be the only parameter");
5216 arg_info->types = void_list_node;
5217 return arg_info;
5220 if (!ellipsis)
5221 types = void_list_node;
5223 /* Break up the bindings list into parms, tags, types, and others;
5224 apply sanity checks; purge the name-to-decl bindings. */
5225 while (b)
5227 tree decl = b->decl;
5228 tree type = TREE_TYPE (decl);
5229 const char *keyword;
5231 switch (TREE_CODE (decl))
5233 case PARM_DECL:
5234 if (b->id)
5236 gcc_assert (I_SYMBOL_BINDING (b->id) == b);
5237 I_SYMBOL_BINDING (b->id) = b->shadowed;
5240 /* Check for forward decls that never got their actual decl. */
5241 if (TREE_ASM_WRITTEN (decl))
5242 error ("parameter %q+D has just a forward declaration", decl);
5243 /* Check for (..., void, ...) and issue an error. */
5244 else if (VOID_TYPE_P (type) && !DECL_NAME (decl))
5246 if (!gave_void_only_once_err)
5248 error ("%<void%> must be the only parameter");
5249 gave_void_only_once_err = true;
5252 else
5254 /* Valid parameter, add it to the list. */
5255 TREE_CHAIN (decl) = parms;
5256 parms = decl;
5258 /* Since there is a prototype, args are passed in their
5259 declared types. The back end may override this later. */
5260 DECL_ARG_TYPE (decl) = type;
5261 types = tree_cons (0, type, types);
5263 break;
5265 case ENUMERAL_TYPE: keyword = "enum"; goto tag;
5266 case UNION_TYPE: keyword = "union"; goto tag;
5267 case RECORD_TYPE: keyword = "struct"; goto tag;
5268 tag:
5269 /* Types may not have tag-names, in which case the type
5270 appears in the bindings list with b->id NULL. */
5271 if (b->id)
5273 gcc_assert (I_TAG_BINDING (b->id) == b);
5274 I_TAG_BINDING (b->id) = b->shadowed;
5277 /* Warn about any struct, union or enum tags defined in a
5278 parameter list. The scope of such types is limited to
5279 the parameter list, which is rarely if ever desirable
5280 (it's impossible to call such a function with type-
5281 correct arguments). An anonymous union parm type is
5282 meaningful as a GNU extension, so don't warn for that. */
5283 if (TREE_CODE (decl) != UNION_TYPE || b->id != 0)
5285 if (b->id)
5286 /* The %s will be one of 'struct', 'union', or 'enum'. */
5287 warning (0, "%<%s %E%> declared inside parameter list",
5288 keyword, b->id);
5289 else
5290 /* The %s will be one of 'struct', 'union', or 'enum'. */
5291 warning (0, "anonymous %s declared inside parameter list",
5292 keyword);
5294 if (!explained_incomplete_types)
5296 warning (0, "its scope is only this definition or declaration,"
5297 " which is probably not what you want");
5298 explained_incomplete_types = true;
5302 tags = tree_cons (b->id, decl, tags);
5303 break;
5305 case CONST_DECL:
5306 case TYPE_DECL:
5307 case FUNCTION_DECL:
5308 /* CONST_DECLs appear here when we have an embedded enum,
5309 and TYPE_DECLs appear here when we have an embedded struct
5310 or union. No warnings for this - we already warned about the
5311 type itself. FUNCTION_DECLs appear when there is an implicit
5312 function declaration in the parameter list. */
5314 TREE_CHAIN (decl) = others;
5315 others = decl;
5316 /* fall through */
5318 case ERROR_MARK:
5319 /* error_mark_node appears here when we have an undeclared
5320 variable. Just throw it away. */
5321 if (b->id)
5323 gcc_assert (I_SYMBOL_BINDING (b->id) == b);
5324 I_SYMBOL_BINDING (b->id) = b->shadowed;
5326 break;
5328 /* Other things that might be encountered. */
5329 case LABEL_DECL:
5330 case VAR_DECL:
5331 default:
5332 gcc_unreachable ();
5335 b = free_binding_and_advance (b);
5338 arg_info->parms = parms;
5339 arg_info->tags = tags;
5340 arg_info->types = types;
5341 arg_info->others = others;
5342 arg_info->pending_sizes = get_pending_sizes ();
5343 return arg_info;
5346 /* Get the struct, enum or union (CODE says which) with tag NAME.
5347 Define the tag as a forward-reference if it is not defined.
5348 Return a c_typespec structure for the type specifier. */
5350 struct c_typespec
5351 parser_xref_tag (enum tree_code code, tree name)
5353 struct c_typespec ret;
5354 tree ref;
5356 ret.expr = NULL_TREE;
5357 ret.expr_const_operands = true;
5359 /* If a cross reference is requested, look up the type
5360 already defined for this tag and return it. */
5362 ref = lookup_tag (code, name, 0);
5363 /* If this is the right type of tag, return what we found.
5364 (This reference will be shadowed by shadow_tag later if appropriate.)
5365 If this is the wrong type of tag, do not return it. If it was the
5366 wrong type in the same scope, we will have had an error
5367 message already; if in a different scope and declaring
5368 a name, pending_xref_error will give an error message; but if in a
5369 different scope and not declaring a name, this tag should
5370 shadow the previous declaration of a different type of tag, and
5371 this would not work properly if we return the reference found.
5372 (For example, with "struct foo" in an outer scope, "union foo;"
5373 must shadow that tag with a new one of union type.) */
5374 ret.kind = (ref ? ctsk_tagref : ctsk_tagfirstref);
5375 if (ref && TREE_CODE (ref) == code)
5377 ret.spec = ref;
5378 return ret;
5381 /* If no such tag is yet defined, create a forward-reference node
5382 and record it as the "definition".
5383 When a real declaration of this type is found,
5384 the forward-reference will be altered into a real type. */
5386 ref = make_node (code);
5387 if (code == ENUMERAL_TYPE)
5389 /* Give the type a default layout like unsigned int
5390 to avoid crashing if it does not get defined. */
5391 SET_TYPE_MODE (ref, TYPE_MODE (unsigned_type_node));
5392 TYPE_ALIGN (ref) = TYPE_ALIGN (unsigned_type_node);
5393 TYPE_USER_ALIGN (ref) = 0;
5394 TYPE_UNSIGNED (ref) = 1;
5395 TYPE_PRECISION (ref) = TYPE_PRECISION (unsigned_type_node);
5396 TYPE_MIN_VALUE (ref) = TYPE_MIN_VALUE (unsigned_type_node);
5397 TYPE_MAX_VALUE (ref) = TYPE_MAX_VALUE (unsigned_type_node);
5400 pushtag (name, ref);
5402 ret.spec = ref;
5403 return ret;
5406 /* Get the struct, enum or union (CODE says which) with tag NAME.
5407 Define the tag as a forward-reference if it is not defined.
5408 Return a tree for the type. */
5410 tree
5411 xref_tag (enum tree_code code, tree name)
5413 return parser_xref_tag (code, name).spec;
5416 /* Make sure that the tag NAME is defined *in the current scope*
5417 at least as a forward reference.
5418 CODE says which kind of tag NAME ought to be. */
5420 tree
5421 start_struct (enum tree_code code, tree name)
5423 /* If there is already a tag defined at this scope
5424 (as a forward reference), just return it. */
5426 tree ref = 0;
5428 if (name != 0)
5429 ref = lookup_tag (code, name, 1);
5430 if (ref && TREE_CODE (ref) == code)
5432 if (TYPE_SIZE (ref))
5434 if (code == UNION_TYPE)
5435 error ("redefinition of %<union %E%>", name);
5436 else
5437 error ("redefinition of %<struct %E%>", name);
5438 /* Don't create structures using a name already in use. */
5439 ref = NULL_TREE;
5441 else if (C_TYPE_BEING_DEFINED (ref))
5443 if (code == UNION_TYPE)
5444 error ("nested redefinition of %<union %E%>", name);
5445 else
5446 error ("nested redefinition of %<struct %E%>", name);
5447 /* Don't create structures that contain themselves. */
5448 ref = NULL_TREE;
5452 /* Otherwise create a forward-reference just so the tag is in scope. */
5454 if (ref == NULL_TREE || TREE_CODE (ref) != code)
5456 ref = make_node (code);
5457 pushtag (name, ref);
5460 C_TYPE_BEING_DEFINED (ref) = 1;
5461 TYPE_PACKED (ref) = flag_pack_struct;
5462 return ref;
5465 /* Process the specs, declarator and width (NULL if omitted)
5466 of a structure component, returning a FIELD_DECL node.
5467 WIDTH is non-NULL for bit-fields only, and is an INTEGER_CST node.
5468 DECL_ATTRS is as for grokdeclarator.
5470 LOC is the location of the structure component.
5472 This is done during the parsing of the struct declaration.
5473 The FIELD_DECL nodes are chained together and the lot of them
5474 are ultimately passed to `build_struct' to make the RECORD_TYPE node. */
5476 tree
5477 grokfield (location_t loc,
5478 struct c_declarator *declarator, struct c_declspecs *declspecs,
5479 tree width, tree *decl_attrs)
5481 tree value;
5483 if (declarator->kind == cdk_id && declarator->u.id == NULL_TREE
5484 && width == NULL_TREE)
5486 /* This is an unnamed decl.
5488 If we have something of the form "union { list } ;" then this
5489 is the anonymous union extension. Similarly for struct.
5491 If this is something of the form "struct foo;", then
5492 If MS extensions are enabled, this is handled as an
5493 anonymous struct.
5494 Otherwise this is a forward declaration of a structure tag.
5496 If this is something of the form "foo;" and foo is a TYPE_DECL, then
5497 If MS extensions are enabled and foo names a structure, then
5498 again this is an anonymous struct.
5499 Otherwise this is an error.
5501 Oh what a horrid tangled web we weave. I wonder if MS consciously
5502 took this from Plan 9 or if it was an accident of implementation
5503 that took root before someone noticed the bug... */
5505 tree type = declspecs->type;
5506 bool type_ok = (TREE_CODE (type) == RECORD_TYPE
5507 || TREE_CODE (type) == UNION_TYPE);
5508 bool ok = false;
5510 if (type_ok
5511 && (flag_ms_extensions || !declspecs->typedef_p))
5513 if (flag_ms_extensions)
5514 ok = true;
5515 else if (flag_iso)
5516 ok = false;
5517 else if (TYPE_NAME (type) == NULL)
5518 ok = true;
5519 else
5520 ok = false;
5522 if (!ok)
5524 pedwarn (loc, 0, "declaration does not declare anything");
5525 return NULL_TREE;
5527 pedwarn (loc, OPT_pedantic, "ISO C doesn%'t support unnamed structs/unions");
5530 value = grokdeclarator (declarator, declspecs, FIELD, false,
5531 width ? &width : NULL, decl_attrs, NULL, NULL,
5532 DEPRECATED_NORMAL);
5534 finish_decl (value, NULL_TREE, NULL_TREE, NULL_TREE);
5535 DECL_INITIAL (value) = width;
5537 return value;
5540 /* Generate an error for any duplicate field names in FIELDLIST. Munge
5541 the list such that this does not present a problem later. */
5543 static void
5544 detect_field_duplicates (tree fieldlist)
5546 tree x, y;
5547 int timeout = 10;
5549 /* First, see if there are more than "a few" fields.
5550 This is trivially true if there are zero or one fields. */
5551 if (!fieldlist)
5552 return;
5553 x = TREE_CHAIN (fieldlist);
5554 if (!x)
5555 return;
5556 do {
5557 timeout--;
5558 x = TREE_CHAIN (x);
5559 } while (timeout > 0 && x);
5561 /* If there were "few" fields, avoid the overhead of allocating
5562 a hash table. Instead just do the nested traversal thing. */
5563 if (timeout > 0)
5565 for (x = TREE_CHAIN (fieldlist); x ; x = TREE_CHAIN (x))
5566 if (DECL_NAME (x))
5568 for (y = fieldlist; y != x; y = TREE_CHAIN (y))
5569 if (DECL_NAME (y) == DECL_NAME (x))
5571 error ("duplicate member %q+D", x);
5572 DECL_NAME (x) = NULL_TREE;
5576 else
5578 htab_t htab = htab_create (37, htab_hash_pointer, htab_eq_pointer, NULL);
5579 void **slot;
5581 for (x = fieldlist; x ; x = TREE_CHAIN (x))
5582 if ((y = DECL_NAME (x)) != 0)
5584 slot = htab_find_slot (htab, y, INSERT);
5585 if (*slot)
5587 error ("duplicate member %q+D", x);
5588 DECL_NAME (x) = NULL_TREE;
5590 *slot = y;
5593 htab_delete (htab);
5597 /* Fill in the fields of a RECORD_TYPE or UNION_TYPE node, T.
5598 FIELDLIST is a chain of FIELD_DECL nodes for the fields.
5599 ATTRIBUTES are attributes to be applied to the structure. */
5601 tree
5602 finish_struct (tree t, tree fieldlist, tree attributes)
5604 tree x;
5605 bool toplevel = file_scope == current_scope;
5606 int saw_named_field;
5608 /* If this type was previously laid out as a forward reference,
5609 make sure we lay it out again. */
5611 TYPE_SIZE (t) = 0;
5613 decl_attributes (&t, attributes, (int) ATTR_FLAG_TYPE_IN_PLACE);
5615 if (pedantic)
5617 for (x = fieldlist; x; x = TREE_CHAIN (x))
5618 if (DECL_NAME (x) != 0)
5619 break;
5621 if (x == 0)
5623 if (TREE_CODE (t) == UNION_TYPE)
5625 if (fieldlist)
5626 pedwarn (input_location, OPT_pedantic, "union has no named members");
5627 else
5628 pedwarn (input_location, OPT_pedantic, "union has no members");
5630 else
5632 if (fieldlist)
5633 pedwarn (input_location, OPT_pedantic, "struct has no named members");
5634 else
5635 pedwarn (input_location, OPT_pedantic, "struct has no members");
5640 /* Install struct as DECL_CONTEXT of each field decl.
5641 Also process specified field sizes, found in the DECL_INITIAL,
5642 storing 0 there after the type has been changed to precision equal
5643 to its width, rather than the precision of the specified standard
5644 type. (Correct layout requires the original type to have been preserved
5645 until now.) */
5647 saw_named_field = 0;
5648 for (x = fieldlist; x; x = TREE_CHAIN (x))
5650 if (TREE_TYPE (x) == error_mark_node)
5651 continue;
5653 DECL_CONTEXT (x) = t;
5655 /* If any field is const, the structure type is pseudo-const. */
5656 if (TREE_READONLY (x))
5657 C_TYPE_FIELDS_READONLY (t) = 1;
5658 else
5660 /* A field that is pseudo-const makes the structure likewise. */
5661 tree t1 = TREE_TYPE (x);
5662 while (TREE_CODE (t1) == ARRAY_TYPE)
5663 t1 = TREE_TYPE (t1);
5664 if ((TREE_CODE (t1) == RECORD_TYPE || TREE_CODE (t1) == UNION_TYPE)
5665 && C_TYPE_FIELDS_READONLY (t1))
5666 C_TYPE_FIELDS_READONLY (t) = 1;
5669 /* Any field that is volatile means variables of this type must be
5670 treated in some ways as volatile. */
5671 if (TREE_THIS_VOLATILE (x))
5672 C_TYPE_FIELDS_VOLATILE (t) = 1;
5674 /* Any field of nominal variable size implies structure is too. */
5675 if (C_DECL_VARIABLE_SIZE (x))
5676 C_TYPE_VARIABLE_SIZE (t) = 1;
5678 if (DECL_INITIAL (x))
5680 unsigned HOST_WIDE_INT width = tree_low_cst (DECL_INITIAL (x), 1);
5681 DECL_SIZE (x) = bitsize_int (width);
5682 DECL_BIT_FIELD (x) = 1;
5683 SET_DECL_C_BIT_FIELD (x);
5686 if (TYPE_PACKED (t)
5687 && (DECL_BIT_FIELD (x)
5688 || TYPE_ALIGN (TREE_TYPE (x)) > BITS_PER_UNIT))
5689 DECL_PACKED (x) = 1;
5691 /* Detect flexible array member in an invalid context. */
5692 if (TREE_CODE (TREE_TYPE (x)) == ARRAY_TYPE
5693 && TYPE_SIZE (TREE_TYPE (x)) == NULL_TREE
5694 && TYPE_DOMAIN (TREE_TYPE (x)) != NULL_TREE
5695 && TYPE_MAX_VALUE (TYPE_DOMAIN (TREE_TYPE (x))) == NULL_TREE)
5697 if (TREE_CODE (t) == UNION_TYPE)
5699 error ("%Jflexible array member in union", x);
5700 TREE_TYPE (x) = error_mark_node;
5702 else if (TREE_CHAIN (x) != NULL_TREE)
5704 error ("%Jflexible array member not at end of struct", x);
5705 TREE_TYPE (x) = error_mark_node;
5707 else if (!saw_named_field)
5709 error ("%Jflexible array member in otherwise empty struct", x);
5710 TREE_TYPE (x) = error_mark_node;
5714 if (pedantic && !in_system_header && TREE_CODE (t) == RECORD_TYPE
5715 && flexible_array_type_p (TREE_TYPE (x)))
5716 pedwarn (input_location, OPT_pedantic,
5717 "%Jinvalid use of structure with flexible array member", x);
5719 if (DECL_NAME (x))
5720 saw_named_field = 1;
5723 detect_field_duplicates (fieldlist);
5725 /* Now we have the nearly final fieldlist. Record it,
5726 then lay out the structure or union (including the fields). */
5728 TYPE_FIELDS (t) = fieldlist;
5730 layout_type (t);
5732 /* Give bit-fields their proper types. */
5734 tree *fieldlistp = &fieldlist;
5735 while (*fieldlistp)
5736 if (TREE_CODE (*fieldlistp) == FIELD_DECL && DECL_INITIAL (*fieldlistp)
5737 && TREE_TYPE (*fieldlistp) != error_mark_node)
5739 unsigned HOST_WIDE_INT width
5740 = tree_low_cst (DECL_INITIAL (*fieldlistp), 1);
5741 tree type = TREE_TYPE (*fieldlistp);
5742 if (width != TYPE_PRECISION (type))
5744 TREE_TYPE (*fieldlistp)
5745 = c_build_bitfield_integer_type (width, TYPE_UNSIGNED (type));
5746 DECL_MODE (*fieldlistp) = TYPE_MODE (TREE_TYPE (*fieldlistp));
5748 DECL_INITIAL (*fieldlistp) = 0;
5750 else
5751 fieldlistp = &TREE_CHAIN (*fieldlistp);
5754 /* Now we have the truly final field list.
5755 Store it in this type and in the variants. */
5757 TYPE_FIELDS (t) = fieldlist;
5759 /* If there are lots of fields, sort so we can look through them fast.
5760 We arbitrarily consider 16 or more elts to be "a lot". */
5763 int len = 0;
5765 for (x = fieldlist; x; x = TREE_CHAIN (x))
5767 if (len > 15 || DECL_NAME (x) == NULL)
5768 break;
5769 len += 1;
5772 if (len > 15)
5774 tree *field_array;
5775 struct lang_type *space;
5776 struct sorted_fields_type *space2;
5778 len += list_length (x);
5780 /* Use the same allocation policy here that make_node uses, to
5781 ensure that this lives as long as the rest of the struct decl.
5782 All decls in an inline function need to be saved. */
5784 space = GGC_CNEW (struct lang_type);
5785 space2 = GGC_NEWVAR (struct sorted_fields_type,
5786 sizeof (struct sorted_fields_type) + len * sizeof (tree));
5788 len = 0;
5789 space->s = space2;
5790 field_array = &space2->elts[0];
5791 for (x = fieldlist; x; x = TREE_CHAIN (x))
5793 field_array[len++] = x;
5795 /* If there is anonymous struct or union, break out of the loop. */
5796 if (DECL_NAME (x) == NULL)
5797 break;
5799 /* Found no anonymous struct/union. Add the TYPE_LANG_SPECIFIC. */
5800 if (x == NULL)
5802 TYPE_LANG_SPECIFIC (t) = space;
5803 TYPE_LANG_SPECIFIC (t)->s->len = len;
5804 field_array = TYPE_LANG_SPECIFIC (t)->s->elts;
5805 qsort (field_array, len, sizeof (tree), field_decl_cmp);
5810 for (x = TYPE_MAIN_VARIANT (t); x; x = TYPE_NEXT_VARIANT (x))
5812 TYPE_FIELDS (x) = TYPE_FIELDS (t);
5813 TYPE_LANG_SPECIFIC (x) = TYPE_LANG_SPECIFIC (t);
5814 C_TYPE_FIELDS_READONLY (x) = C_TYPE_FIELDS_READONLY (t);
5815 C_TYPE_FIELDS_VOLATILE (x) = C_TYPE_FIELDS_VOLATILE (t);
5816 C_TYPE_VARIABLE_SIZE (x) = C_TYPE_VARIABLE_SIZE (t);
5819 /* If this was supposed to be a transparent union, but we can't
5820 make it one, warn and turn off the flag. */
5821 if (TREE_CODE (t) == UNION_TYPE
5822 && TYPE_TRANSPARENT_UNION (t)
5823 && (!TYPE_FIELDS (t) || TYPE_MODE (t) != DECL_MODE (TYPE_FIELDS (t))))
5825 TYPE_TRANSPARENT_UNION (t) = 0;
5826 warning (0, "union cannot be made transparent");
5829 /* If this structure or union completes the type of any previous
5830 variable declaration, lay it out and output its rtl. */
5831 for (x = C_TYPE_INCOMPLETE_VARS (TYPE_MAIN_VARIANT (t));
5833 x = TREE_CHAIN (x))
5835 tree decl = TREE_VALUE (x);
5836 if (TREE_CODE (TREE_TYPE (decl)) == ARRAY_TYPE)
5837 layout_array_type (TREE_TYPE (decl));
5838 if (TREE_CODE (decl) != TYPE_DECL)
5840 layout_decl (decl, 0);
5841 if (c_dialect_objc ())
5842 objc_check_decl (decl);
5843 rest_of_decl_compilation (decl, toplevel, 0);
5844 if (!toplevel)
5845 expand_decl (decl);
5848 C_TYPE_INCOMPLETE_VARS (TYPE_MAIN_VARIANT (t)) = 0;
5850 /* Finish debugging output for this type. */
5851 rest_of_type_compilation (t, toplevel);
5853 /* If we're inside a function proper, i.e. not file-scope and not still
5854 parsing parameters, then arrange for the size of a variable sized type
5855 to be bound now. */
5856 if (cur_stmt_list && variably_modified_type_p (t, NULL_TREE))
5857 add_stmt (build_stmt (DECL_EXPR, build_decl (TYPE_DECL, NULL, t)));
5859 return t;
5862 /* Lay out the type T, and its element type, and so on. */
5864 static void
5865 layout_array_type (tree t)
5867 if (TREE_CODE (TREE_TYPE (t)) == ARRAY_TYPE)
5868 layout_array_type (TREE_TYPE (t));
5869 layout_type (t);
5872 /* Begin compiling the definition of an enumeration type.
5873 NAME is its name (or null if anonymous).
5874 Returns the type object, as yet incomplete.
5875 Also records info about it so that build_enumerator
5876 may be used to declare the individual values as they are read. */
5878 tree
5879 start_enum (struct c_enum_contents *the_enum, tree name)
5881 tree enumtype = 0;
5883 /* If this is the real definition for a previous forward reference,
5884 fill in the contents in the same object that used to be the
5885 forward reference. */
5887 if (name != 0)
5888 enumtype = lookup_tag (ENUMERAL_TYPE, name, 1);
5890 if (enumtype == 0 || TREE_CODE (enumtype) != ENUMERAL_TYPE)
5892 enumtype = make_node (ENUMERAL_TYPE);
5893 pushtag (name, enumtype);
5896 if (C_TYPE_BEING_DEFINED (enumtype))
5897 error ("nested redefinition of %<enum %E%>", name);
5899 C_TYPE_BEING_DEFINED (enumtype) = 1;
5901 if (TYPE_VALUES (enumtype) != 0)
5903 /* This enum is a named one that has been declared already. */
5904 error ("redeclaration of %<enum %E%>", name);
5906 /* Completely replace its old definition.
5907 The old enumerators remain defined, however. */
5908 TYPE_VALUES (enumtype) = 0;
5911 the_enum->enum_next_value = integer_zero_node;
5912 the_enum->enum_overflow = 0;
5914 if (flag_short_enums)
5915 TYPE_PACKED (enumtype) = 1;
5917 return enumtype;
5920 /* After processing and defining all the values of an enumeration type,
5921 install their decls in the enumeration type and finish it off.
5922 ENUMTYPE is the type object, VALUES a list of decl-value pairs,
5923 and ATTRIBUTES are the specified attributes.
5924 Returns ENUMTYPE. */
5926 tree
5927 finish_enum (tree enumtype, tree values, tree attributes)
5929 tree pair, tem;
5930 tree minnode = 0, maxnode = 0;
5931 int precision, unsign;
5932 bool toplevel = (file_scope == current_scope);
5933 struct lang_type *lt;
5935 decl_attributes (&enumtype, attributes, (int) ATTR_FLAG_TYPE_IN_PLACE);
5937 /* Calculate the maximum value of any enumerator in this type. */
5939 if (values == error_mark_node)
5940 minnode = maxnode = integer_zero_node;
5941 else
5943 minnode = maxnode = TREE_VALUE (values);
5944 for (pair = TREE_CHAIN (values); pair; pair = TREE_CHAIN (pair))
5946 tree value = TREE_VALUE (pair);
5947 if (tree_int_cst_lt (maxnode, value))
5948 maxnode = value;
5949 if (tree_int_cst_lt (value, minnode))
5950 minnode = value;
5954 /* Construct the final type of this enumeration. It is the same
5955 as one of the integral types - the narrowest one that fits, except
5956 that normally we only go as narrow as int - and signed iff any of
5957 the values are negative. */
5958 unsign = (tree_int_cst_sgn (minnode) >= 0);
5959 precision = MAX (tree_int_cst_min_precision (minnode, unsign),
5960 tree_int_cst_min_precision (maxnode, unsign));
5962 if (TYPE_PACKED (enumtype) || precision > TYPE_PRECISION (integer_type_node))
5964 tem = c_common_type_for_size (precision, unsign);
5965 if (tem == NULL)
5967 warning (0, "enumeration values exceed range of largest integer");
5968 tem = long_long_integer_type_node;
5971 else
5972 tem = unsign ? unsigned_type_node : integer_type_node;
5974 TYPE_MIN_VALUE (enumtype) = TYPE_MIN_VALUE (tem);
5975 TYPE_MAX_VALUE (enumtype) = TYPE_MAX_VALUE (tem);
5976 TYPE_UNSIGNED (enumtype) = TYPE_UNSIGNED (tem);
5977 TYPE_SIZE (enumtype) = 0;
5979 /* If the precision of the type was specific with an attribute and it
5980 was too small, give an error. Otherwise, use it. */
5981 if (TYPE_PRECISION (enumtype))
5983 if (precision > TYPE_PRECISION (enumtype))
5984 error ("specified mode too small for enumeral values");
5986 else
5987 TYPE_PRECISION (enumtype) = TYPE_PRECISION (tem);
5989 layout_type (enumtype);
5991 if (values != error_mark_node)
5993 /* Change the type of the enumerators to be the enum type. We
5994 need to do this irrespective of the size of the enum, for
5995 proper type checking. Replace the DECL_INITIALs of the
5996 enumerators, and the value slots of the list, with copies
5997 that have the enum type; they cannot be modified in place
5998 because they may be shared (e.g. integer_zero_node) Finally,
5999 change the purpose slots to point to the names of the decls. */
6000 for (pair = values; pair; pair = TREE_CHAIN (pair))
6002 tree enu = TREE_PURPOSE (pair);
6003 tree ini = DECL_INITIAL (enu);
6005 TREE_TYPE (enu) = enumtype;
6007 /* The ISO C Standard mandates enumerators to have type int,
6008 even though the underlying type of an enum type is
6009 unspecified. However, GCC allows enumerators of any
6010 integer type as an extensions. build_enumerator()
6011 converts any enumerators that fit in an int to type int,
6012 to avoid promotions to unsigned types when comparing
6013 integers with enumerators that fit in the int range.
6014 When -pedantic is given, build_enumerator() would have
6015 already warned about those that don't fit. Here we
6016 convert the rest to the enumerator type. */
6017 if (TREE_TYPE (ini) != integer_type_node)
6018 ini = convert (enumtype, ini);
6020 DECL_INITIAL (enu) = ini;
6021 TREE_PURPOSE (pair) = DECL_NAME (enu);
6022 TREE_VALUE (pair) = ini;
6025 TYPE_VALUES (enumtype) = values;
6028 /* Record the min/max values so that we can warn about bit-field
6029 enumerations that are too small for the values. */
6030 lt = GGC_CNEW (struct lang_type);
6031 lt->enum_min = minnode;
6032 lt->enum_max = maxnode;
6033 TYPE_LANG_SPECIFIC (enumtype) = lt;
6035 /* Fix up all variant types of this enum type. */
6036 for (tem = TYPE_MAIN_VARIANT (enumtype); tem; tem = TYPE_NEXT_VARIANT (tem))
6038 if (tem == enumtype)
6039 continue;
6040 TYPE_VALUES (tem) = TYPE_VALUES (enumtype);
6041 TYPE_MIN_VALUE (tem) = TYPE_MIN_VALUE (enumtype);
6042 TYPE_MAX_VALUE (tem) = TYPE_MAX_VALUE (enumtype);
6043 TYPE_SIZE (tem) = TYPE_SIZE (enumtype);
6044 TYPE_SIZE_UNIT (tem) = TYPE_SIZE_UNIT (enumtype);
6045 SET_TYPE_MODE (tem, TYPE_MODE (enumtype));
6046 TYPE_PRECISION (tem) = TYPE_PRECISION (enumtype);
6047 TYPE_ALIGN (tem) = TYPE_ALIGN (enumtype);
6048 TYPE_USER_ALIGN (tem) = TYPE_USER_ALIGN (enumtype);
6049 TYPE_UNSIGNED (tem) = TYPE_UNSIGNED (enumtype);
6050 TYPE_LANG_SPECIFIC (tem) = TYPE_LANG_SPECIFIC (enumtype);
6053 /* Finish debugging output for this type. */
6054 rest_of_type_compilation (enumtype, toplevel);
6056 return enumtype;
6059 /* Build and install a CONST_DECL for one value of the
6060 current enumeration type (one that was begun with start_enum).
6061 Return a tree-list containing the CONST_DECL and its value.
6062 Assignment of sequential values by default is handled here. */
6064 tree
6065 build_enumerator (struct c_enum_contents *the_enum, tree name, tree value,
6066 location_t value_loc)
6068 tree decl, type;
6070 /* Validate and default VALUE. */
6072 if (value != 0)
6074 /* Don't issue more errors for error_mark_node (i.e. an
6075 undeclared identifier) - just ignore the value expression. */
6076 if (value == error_mark_node)
6077 value = 0;
6078 else if (!INTEGRAL_TYPE_P (TREE_TYPE (value))
6079 || TREE_CODE (value) != INTEGER_CST)
6081 error ("enumerator value for %qE is not an integer constant", name);
6082 value = 0;
6084 else
6086 value = default_conversion (value);
6087 constant_expression_warning (value);
6091 /* Default based on previous value. */
6092 /* It should no longer be possible to have NON_LVALUE_EXPR
6093 in the default. */
6094 if (value == 0)
6096 value = the_enum->enum_next_value;
6097 if (the_enum->enum_overflow)
6098 error ("overflow in enumeration values");
6100 /* Even though the underlying type of an enum is unspecified, the
6101 type of enumeration constants is explicitly defined as int
6102 (6.4.4.3/2 in the C99 Standard). GCC allows any integer type as
6103 an extension. */
6104 else if (!int_fits_type_p (value, integer_type_node))
6105 pedwarn (value_loc, OPT_pedantic,
6106 "ISO C restricts enumerator values to range of %<int%>");
6108 /* The ISO C Standard mandates enumerators to have type int, even
6109 though the underlying type of an enum type is unspecified.
6110 However, GCC allows enumerators of any integer type as an
6111 extensions. Here we convert any enumerators that fit in an int
6112 to type int, to avoid promotions to unsigned types when comparing
6113 integers with enumerators that fit in the int range. When
6114 -pedantic is given, we would have already warned about those that
6115 don't fit. We have to do this here rather than in finish_enum
6116 because this value may be used to define more enumerators. */
6117 if (int_fits_type_p (value, integer_type_node))
6118 value = convert (integer_type_node, value);
6120 /* Set basis for default for next value. */
6121 the_enum->enum_next_value
6122 = build_binary_op
6123 (EXPR_HAS_LOCATION (value) ? EXPR_LOCATION (value) : input_location,
6124 PLUS_EXPR, value, integer_one_node, 0);
6125 the_enum->enum_overflow = tree_int_cst_lt (the_enum->enum_next_value, value);
6127 /* Now create a declaration for the enum value name. */
6129 type = TREE_TYPE (value);
6130 type = c_common_type_for_size (MAX (TYPE_PRECISION (type),
6131 TYPE_PRECISION (integer_type_node)),
6132 (TYPE_PRECISION (type)
6133 >= TYPE_PRECISION (integer_type_node)
6134 && TYPE_UNSIGNED (type)));
6136 decl = build_decl (CONST_DECL, name, type);
6137 DECL_INITIAL (decl) = convert (type, value);
6138 pushdecl (decl);
6140 return tree_cons (decl, value, NULL_TREE);
6144 /* Create the FUNCTION_DECL for a function definition.
6145 DECLSPECS, DECLARATOR and ATTRIBUTES are the parts of
6146 the declaration; they describe the function's name and the type it returns,
6147 but twisted together in a fashion that parallels the syntax of C.
6149 This function creates a binding context for the function body
6150 as well as setting up the FUNCTION_DECL in current_function_decl.
6152 Returns 1 on success. If the DECLARATOR is not suitable for a function
6153 (it defines a datum instead), we return 0, which tells
6154 yyparse to report a parse error. */
6157 start_function (struct c_declspecs *declspecs, struct c_declarator *declarator,
6158 tree attributes)
6160 tree decl1, old_decl;
6161 tree restype, resdecl;
6162 struct c_label_context_se *nstack_se;
6163 struct c_label_context_vm *nstack_vm;
6165 current_function_returns_value = 0; /* Assume, until we see it does. */
6166 current_function_returns_null = 0;
6167 current_function_returns_abnormally = 0;
6168 warn_about_return_type = 0;
6169 c_switch_stack = NULL;
6171 nstack_se = XOBNEW (&parser_obstack, struct c_label_context_se);
6172 nstack_se->labels_def = NULL;
6173 nstack_se->labels_used = NULL;
6174 nstack_se->next = label_context_stack_se;
6175 label_context_stack_se = nstack_se;
6177 nstack_vm = XOBNEW (&parser_obstack, struct c_label_context_vm);
6178 nstack_vm->labels_def = NULL;
6179 nstack_vm->labels_used = NULL;
6180 nstack_vm->scope = 0;
6181 nstack_vm->next = label_context_stack_vm;
6182 label_context_stack_vm = nstack_vm;
6184 /* Indicate no valid break/continue context by setting these variables
6185 to some non-null, non-label value. We'll notice and emit the proper
6186 error message in c_finish_bc_stmt. */
6187 c_break_label = c_cont_label = size_zero_node;
6189 decl1 = grokdeclarator (declarator, declspecs, FUNCDEF, true, NULL,
6190 &attributes, NULL, NULL, DEPRECATED_NORMAL);
6192 /* If the declarator is not suitable for a function definition,
6193 cause a syntax error. */
6194 if (decl1 == 0)
6196 label_context_stack_se = label_context_stack_se->next;
6197 label_context_stack_vm = label_context_stack_vm->next;
6198 return 0;
6201 decl_attributes (&decl1, attributes, 0);
6203 if (DECL_DECLARED_INLINE_P (decl1)
6204 && DECL_UNINLINABLE (decl1)
6205 && lookup_attribute ("noinline", DECL_ATTRIBUTES (decl1)))
6206 warning (OPT_Wattributes, "inline function %q+D given attribute noinline",
6207 decl1);
6209 /* Handle gnu_inline attribute. */
6210 if (declspecs->inline_p
6211 && !flag_gnu89_inline
6212 && TREE_CODE (decl1) == FUNCTION_DECL
6213 && (lookup_attribute ("gnu_inline", DECL_ATTRIBUTES (decl1))
6214 || current_function_decl))
6216 if (declspecs->storage_class != csc_static)
6217 DECL_EXTERNAL (decl1) = !DECL_EXTERNAL (decl1);
6220 announce_function (decl1);
6222 if (!COMPLETE_OR_VOID_TYPE_P (TREE_TYPE (TREE_TYPE (decl1))))
6224 error ("return type is an incomplete type");
6225 /* Make it return void instead. */
6226 TREE_TYPE (decl1)
6227 = build_function_type (void_type_node,
6228 TYPE_ARG_TYPES (TREE_TYPE (decl1)));
6231 if (warn_about_return_type)
6232 pedwarn_c99 (input_location, flag_isoc99 ? 0
6233 : (warn_return_type ? OPT_Wreturn_type : OPT_Wimplicit_int),
6234 "return type defaults to %<int%>");
6236 /* Make the init_value nonzero so pushdecl knows this is not tentative.
6237 error_mark_node is replaced below (in pop_scope) with the BLOCK. */
6238 DECL_INITIAL (decl1) = error_mark_node;
6240 /* If this definition isn't a prototype and we had a prototype declaration
6241 before, copy the arg type info from that prototype. */
6242 old_decl = lookup_name_in_scope (DECL_NAME (decl1), current_scope);
6243 if (old_decl && TREE_CODE (old_decl) != FUNCTION_DECL)
6244 old_decl = 0;
6245 current_function_prototype_locus = UNKNOWN_LOCATION;
6246 current_function_prototype_built_in = false;
6247 current_function_prototype_arg_types = NULL_TREE;
6248 if (TYPE_ARG_TYPES (TREE_TYPE (decl1)) == 0)
6250 if (old_decl != 0 && TREE_CODE (TREE_TYPE (old_decl)) == FUNCTION_TYPE
6251 && comptypes (TREE_TYPE (TREE_TYPE (decl1)),
6252 TREE_TYPE (TREE_TYPE (old_decl))))
6254 TREE_TYPE (decl1) = composite_type (TREE_TYPE (old_decl),
6255 TREE_TYPE (decl1));
6256 current_function_prototype_locus = DECL_SOURCE_LOCATION (old_decl);
6257 current_function_prototype_built_in
6258 = C_DECL_BUILTIN_PROTOTYPE (old_decl);
6259 current_function_prototype_arg_types
6260 = TYPE_ARG_TYPES (TREE_TYPE (decl1));
6262 if (TREE_PUBLIC (decl1))
6264 /* If there is an external prototype declaration of this
6265 function, record its location but do not copy information
6266 to this decl. This may be an invisible declaration
6267 (built-in or in a scope which has finished) or simply
6268 have more refined argument types than any declaration
6269 found above. */
6270 struct c_binding *b;
6271 for (b = I_SYMBOL_BINDING (DECL_NAME (decl1)); b; b = b->shadowed)
6272 if (B_IN_SCOPE (b, external_scope))
6273 break;
6274 if (b)
6276 tree ext_decl, ext_type;
6277 ext_decl = b->decl;
6278 ext_type = b->type ? b->type : TREE_TYPE (ext_decl);
6279 if (TREE_CODE (ext_type) == FUNCTION_TYPE
6280 && comptypes (TREE_TYPE (TREE_TYPE (decl1)),
6281 TREE_TYPE (ext_type)))
6283 current_function_prototype_locus
6284 = DECL_SOURCE_LOCATION (ext_decl);
6285 current_function_prototype_built_in
6286 = C_DECL_BUILTIN_PROTOTYPE (ext_decl);
6287 current_function_prototype_arg_types
6288 = TYPE_ARG_TYPES (ext_type);
6294 /* Optionally warn of old-fashioned def with no previous prototype. */
6295 if (warn_strict_prototypes
6296 && old_decl != error_mark_node
6297 && TYPE_ARG_TYPES (TREE_TYPE (decl1)) == 0
6298 && C_DECL_ISNT_PROTOTYPE (old_decl))
6299 warning (OPT_Wstrict_prototypes,
6300 "function declaration isn%'t a prototype");
6301 /* Optionally warn of any global def with no previous prototype. */
6302 else if (warn_missing_prototypes
6303 && old_decl != error_mark_node
6304 && TREE_PUBLIC (decl1)
6305 && !MAIN_NAME_P (DECL_NAME (decl1))
6306 && C_DECL_ISNT_PROTOTYPE (old_decl))
6307 warning (OPT_Wmissing_prototypes, "no previous prototype for %q+D", decl1);
6308 /* Optionally warn of any def with no previous prototype
6309 if the function has already been used. */
6310 else if (warn_missing_prototypes
6311 && old_decl != 0
6312 && old_decl != error_mark_node
6313 && TREE_USED (old_decl)
6314 && TYPE_ARG_TYPES (TREE_TYPE (old_decl)) == 0)
6315 warning (OPT_Wmissing_prototypes,
6316 "%q+D was used with no prototype before its definition", decl1);
6317 /* Optionally warn of any global def with no previous declaration. */
6318 else if (warn_missing_declarations
6319 && TREE_PUBLIC (decl1)
6320 && old_decl == 0
6321 && !MAIN_NAME_P (DECL_NAME (decl1)))
6322 warning (OPT_Wmissing_declarations, "no previous declaration for %q+D",
6323 decl1);
6324 /* Optionally warn of any def with no previous declaration
6325 if the function has already been used. */
6326 else if (warn_missing_declarations
6327 && old_decl != 0
6328 && old_decl != error_mark_node
6329 && TREE_USED (old_decl)
6330 && C_DECL_IMPLICIT (old_decl))
6331 warning (OPT_Wmissing_declarations,
6332 "%q+D was used with no declaration before its definition", decl1);
6334 /* This function exists in static storage.
6335 (This does not mean `static' in the C sense!) */
6336 TREE_STATIC (decl1) = 1;
6338 /* A nested function is not global. */
6339 if (current_function_decl != 0)
6340 TREE_PUBLIC (decl1) = 0;
6342 /* This is the earliest point at which we might know the assembler
6343 name of the function. Thus, if it's set before this, die horribly. */
6344 gcc_assert (!DECL_ASSEMBLER_NAME_SET_P (decl1));
6346 /* If #pragma weak was used, mark the decl weak now. */
6347 if (current_scope == file_scope)
6348 maybe_apply_pragma_weak (decl1);
6350 /* Warn for unlikely, improbable, or stupid declarations of `main'. */
6351 if (warn_main && MAIN_NAME_P (DECL_NAME (decl1)))
6353 if (TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (decl1)))
6354 != integer_type_node)
6355 pedwarn (input_location, OPT_Wmain, "return type of %q+D is not %<int%>", decl1);
6357 check_main_parameter_types (decl1);
6359 if (!TREE_PUBLIC (decl1))
6360 pedwarn (input_location, OPT_Wmain, "%q+D is normally a non-static function", decl1);
6363 /* Record the decl so that the function name is defined.
6364 If we already have a decl for this name, and it is a FUNCTION_DECL,
6365 use the old decl. */
6367 current_function_decl = pushdecl (decl1);
6369 push_scope ();
6370 declare_parm_level ();
6372 restype = TREE_TYPE (TREE_TYPE (current_function_decl));
6373 resdecl = build_decl (RESULT_DECL, NULL_TREE, restype);
6374 DECL_ARTIFICIAL (resdecl) = 1;
6375 DECL_IGNORED_P (resdecl) = 1;
6376 DECL_RESULT (current_function_decl) = resdecl;
6378 start_fname_decls ();
6380 return 1;
6383 /* Subroutine of store_parm_decls which handles new-style function
6384 definitions (prototype format). The parms already have decls, so we
6385 need only record them as in effect and complain if any redundant
6386 old-style parm decls were written. */
6387 static void
6388 store_parm_decls_newstyle (tree fndecl, const struct c_arg_info *arg_info)
6390 tree decl;
6392 if (current_scope->bindings)
6394 error ("%Jold-style parameter declarations in prototyped "
6395 "function definition", fndecl);
6397 /* Get rid of the old-style declarations. */
6398 pop_scope ();
6399 push_scope ();
6401 /* Don't issue this warning for nested functions, and don't issue this
6402 warning if we got here because ARG_INFO_TYPES was error_mark_node
6403 (this happens when a function definition has just an ellipsis in
6404 its parameter list). */
6405 else if (!in_system_header && !current_function_scope
6406 && arg_info->types != error_mark_node)
6407 warning (OPT_Wtraditional,
6408 "%Jtraditional C rejects ISO C style function definitions",
6409 fndecl);
6411 /* Now make all the parameter declarations visible in the function body.
6412 We can bypass most of the grunt work of pushdecl. */
6413 for (decl = arg_info->parms; decl; decl = TREE_CHAIN (decl))
6415 DECL_CONTEXT (decl) = current_function_decl;
6416 if (DECL_NAME (decl))
6418 bind (DECL_NAME (decl), decl, current_scope,
6419 /*invisible=*/false, /*nested=*/false,
6420 UNKNOWN_LOCATION);
6421 if (!TREE_USED (decl))
6422 warn_if_shadowing (decl);
6424 else
6425 error ("%Jparameter name omitted", decl);
6428 /* Record the parameter list in the function declaration. */
6429 DECL_ARGUMENTS (fndecl) = arg_info->parms;
6431 /* Now make all the ancillary declarations visible, likewise. */
6432 for (decl = arg_info->others; decl; decl = TREE_CHAIN (decl))
6434 DECL_CONTEXT (decl) = current_function_decl;
6435 if (DECL_NAME (decl))
6436 bind (DECL_NAME (decl), decl, current_scope,
6437 /*invisible=*/false, /*nested=*/false, UNKNOWN_LOCATION);
6440 /* And all the tag declarations. */
6441 for (decl = arg_info->tags; decl; decl = TREE_CHAIN (decl))
6442 if (TREE_PURPOSE (decl))
6443 bind (TREE_PURPOSE (decl), TREE_VALUE (decl), current_scope,
6444 /*invisible=*/false, /*nested=*/false, UNKNOWN_LOCATION);
6447 /* Subroutine of store_parm_decls which handles old-style function
6448 definitions (separate parameter list and declarations). */
6450 static void
6451 store_parm_decls_oldstyle (tree fndecl, const struct c_arg_info *arg_info)
6453 struct c_binding *b;
6454 tree parm, decl, last;
6455 tree parmids = arg_info->parms;
6456 struct pointer_set_t *seen_args = pointer_set_create ();
6458 if (!in_system_header)
6459 warning (OPT_Wold_style_definition, "%Jold-style function definition",
6460 fndecl);
6462 /* Match each formal parameter name with its declaration. Save each
6463 decl in the appropriate TREE_PURPOSE slot of the parmids chain. */
6464 for (parm = parmids; parm; parm = TREE_CHAIN (parm))
6466 if (TREE_VALUE (parm) == 0)
6468 error ("%Jparameter name missing from parameter list", fndecl);
6469 TREE_PURPOSE (parm) = 0;
6470 continue;
6473 b = I_SYMBOL_BINDING (TREE_VALUE (parm));
6474 if (b && B_IN_CURRENT_SCOPE (b))
6476 decl = b->decl;
6477 /* If we got something other than a PARM_DECL it is an error. */
6478 if (TREE_CODE (decl) != PARM_DECL)
6479 error ("%q+D declared as a non-parameter", decl);
6480 /* If the declaration is already marked, we have a duplicate
6481 name. Complain and ignore the duplicate. */
6482 else if (pointer_set_contains (seen_args, decl))
6484 error ("multiple parameters named %q+D", decl);
6485 TREE_PURPOSE (parm) = 0;
6486 continue;
6488 /* If the declaration says "void", complain and turn it into
6489 an int. */
6490 else if (VOID_TYPE_P (TREE_TYPE (decl)))
6492 error ("parameter %q+D declared with void type", decl);
6493 TREE_TYPE (decl) = integer_type_node;
6494 DECL_ARG_TYPE (decl) = integer_type_node;
6495 layout_decl (decl, 0);
6497 warn_if_shadowing (decl);
6499 /* If no declaration found, default to int. */
6500 else
6502 decl = build_decl (PARM_DECL, TREE_VALUE (parm), integer_type_node);
6503 DECL_ARG_TYPE (decl) = TREE_TYPE (decl);
6504 DECL_SOURCE_LOCATION (decl) = DECL_SOURCE_LOCATION (fndecl);
6505 pushdecl (decl);
6506 warn_if_shadowing (decl);
6508 if (flag_isoc99)
6509 pedwarn (input_location, 0, "type of %q+D defaults to %<int%>", decl);
6510 else
6511 warning (OPT_Wmissing_parameter_type, "type of %q+D defaults to %<int%>", decl);
6514 TREE_PURPOSE (parm) = decl;
6515 pointer_set_insert (seen_args, decl);
6518 /* Now examine the parms chain for incomplete declarations
6519 and declarations with no corresponding names. */
6521 for (b = current_scope->bindings; b; b = b->prev)
6523 parm = b->decl;
6524 if (TREE_CODE (parm) != PARM_DECL)
6525 continue;
6527 if (TREE_TYPE (parm) != error_mark_node
6528 && !COMPLETE_TYPE_P (TREE_TYPE (parm)))
6530 error ("parameter %q+D has incomplete type", parm);
6531 TREE_TYPE (parm) = error_mark_node;
6534 if (!pointer_set_contains (seen_args, parm))
6536 error ("declaration for parameter %q+D but no such parameter", parm);
6538 /* Pretend the parameter was not missing.
6539 This gets us to a standard state and minimizes
6540 further error messages. */
6541 parmids = chainon (parmids, tree_cons (parm, 0, 0));
6545 /* Chain the declarations together in the order of the list of
6546 names. Store that chain in the function decl, replacing the
6547 list of names. Update the current scope to match. */
6548 DECL_ARGUMENTS (fndecl) = 0;
6550 for (parm = parmids; parm; parm = TREE_CHAIN (parm))
6551 if (TREE_PURPOSE (parm))
6552 break;
6553 if (parm && TREE_PURPOSE (parm))
6555 last = TREE_PURPOSE (parm);
6556 DECL_ARGUMENTS (fndecl) = last;
6558 for (parm = TREE_CHAIN (parm); parm; parm = TREE_CHAIN (parm))
6559 if (TREE_PURPOSE (parm))
6561 TREE_CHAIN (last) = TREE_PURPOSE (parm);
6562 last = TREE_PURPOSE (parm);
6564 TREE_CHAIN (last) = 0;
6567 pointer_set_destroy (seen_args);
6569 /* If there was a previous prototype,
6570 set the DECL_ARG_TYPE of each argument according to
6571 the type previously specified, and report any mismatches. */
6573 if (current_function_prototype_arg_types)
6575 tree type;
6576 for (parm = DECL_ARGUMENTS (fndecl),
6577 type = current_function_prototype_arg_types;
6578 parm || (type && TREE_VALUE (type) != error_mark_node
6579 && (TYPE_MAIN_VARIANT (TREE_VALUE (type)) != void_type_node));
6580 parm = TREE_CHAIN (parm), type = TREE_CHAIN (type))
6582 if (parm == 0 || type == 0
6583 || TYPE_MAIN_VARIANT (TREE_VALUE (type)) == void_type_node)
6585 if (current_function_prototype_built_in)
6586 warning (0, "number of arguments doesn%'t match "
6587 "built-in prototype");
6588 else
6590 error ("number of arguments doesn%'t match prototype");
6591 error ("%Hprototype declaration",
6592 &current_function_prototype_locus);
6594 break;
6596 /* Type for passing arg must be consistent with that
6597 declared for the arg. ISO C says we take the unqualified
6598 type for parameters declared with qualified type. */
6599 if (TREE_TYPE (parm) != error_mark_node
6600 && TREE_TYPE (type) != error_mark_node
6601 && !comptypes (TYPE_MAIN_VARIANT (DECL_ARG_TYPE (parm)),
6602 TYPE_MAIN_VARIANT (TREE_VALUE (type))))
6604 if (TYPE_MAIN_VARIANT (TREE_TYPE (parm))
6605 == TYPE_MAIN_VARIANT (TREE_VALUE (type)))
6607 /* Adjust argument to match prototype. E.g. a previous
6608 `int foo(float);' prototype causes
6609 `int foo(x) float x; {...}' to be treated like
6610 `int foo(float x) {...}'. This is particularly
6611 useful for argument types like uid_t. */
6612 DECL_ARG_TYPE (parm) = TREE_TYPE (parm);
6614 if (targetm.calls.promote_prototypes (TREE_TYPE (current_function_decl))
6615 && INTEGRAL_TYPE_P (TREE_TYPE (parm))
6616 && TYPE_PRECISION (TREE_TYPE (parm))
6617 < TYPE_PRECISION (integer_type_node))
6618 DECL_ARG_TYPE (parm) = integer_type_node;
6620 /* ??? Is it possible to get here with a
6621 built-in prototype or will it always have
6622 been diagnosed as conflicting with an
6623 old-style definition and discarded? */
6624 if (current_function_prototype_built_in)
6625 warning (OPT_pedantic, "promoted argument %qD "
6626 "doesn%'t match built-in prototype", parm);
6627 else
6629 pedwarn (input_location, OPT_pedantic, "promoted argument %qD "
6630 "doesn%'t match prototype", parm);
6631 pedwarn (current_function_prototype_locus, OPT_pedantic,
6632 "prototype declaration");
6635 else
6637 if (current_function_prototype_built_in)
6638 warning (0, "argument %qD doesn%'t match "
6639 "built-in prototype", parm);
6640 else
6642 error ("argument %qD doesn%'t match prototype", parm);
6643 error ("%Hprototype declaration",
6644 &current_function_prototype_locus);
6649 TYPE_ACTUAL_ARG_TYPES (TREE_TYPE (fndecl)) = 0;
6652 /* Otherwise, create a prototype that would match. */
6654 else
6656 tree actual = 0, last = 0, type;
6658 for (parm = DECL_ARGUMENTS (fndecl); parm; parm = TREE_CHAIN (parm))
6660 type = tree_cons (NULL_TREE, DECL_ARG_TYPE (parm), NULL_TREE);
6661 if (last)
6662 TREE_CHAIN (last) = type;
6663 else
6664 actual = type;
6665 last = type;
6667 type = tree_cons (NULL_TREE, void_type_node, NULL_TREE);
6668 if (last)
6669 TREE_CHAIN (last) = type;
6670 else
6671 actual = type;
6673 /* We are going to assign a new value for the TYPE_ACTUAL_ARG_TYPES
6674 of the type of this function, but we need to avoid having this
6675 affect the types of other similarly-typed functions, so we must
6676 first force the generation of an identical (but separate) type
6677 node for the relevant function type. The new node we create
6678 will be a variant of the main variant of the original function
6679 type. */
6681 TREE_TYPE (fndecl) = build_variant_type_copy (TREE_TYPE (fndecl));
6683 TYPE_ACTUAL_ARG_TYPES (TREE_TYPE (fndecl)) = actual;
6687 /* Store parameter declarations passed in ARG_INFO into the current
6688 function declaration. */
6690 void
6691 store_parm_decls_from (struct c_arg_info *arg_info)
6693 current_function_arg_info = arg_info;
6694 store_parm_decls ();
6697 /* Store the parameter declarations into the current function declaration.
6698 This is called after parsing the parameter declarations, before
6699 digesting the body of the function.
6701 For an old-style definition, construct a prototype out of the old-style
6702 parameter declarations and inject it into the function's type. */
6704 void
6705 store_parm_decls (void)
6707 tree fndecl = current_function_decl;
6708 bool proto;
6710 /* The argument information block for FNDECL. */
6711 struct c_arg_info *arg_info = current_function_arg_info;
6712 current_function_arg_info = 0;
6714 /* True if this definition is written with a prototype. Note:
6715 despite C99 6.7.5.3p14, we can *not* treat an empty argument
6716 list in a function definition as equivalent to (void) -- an
6717 empty argument list specifies the function has no parameters,
6718 but only (void) sets up a prototype for future calls. */
6719 proto = arg_info->types != 0;
6721 if (proto)
6722 store_parm_decls_newstyle (fndecl, arg_info);
6723 else
6724 store_parm_decls_oldstyle (fndecl, arg_info);
6726 /* The next call to push_scope will be a function body. */
6728 next_is_function_body = true;
6730 /* Write a record describing this function definition to the prototypes
6731 file (if requested). */
6733 gen_aux_info_record (fndecl, 1, 0, proto);
6735 /* Initialize the RTL code for the function. */
6736 allocate_struct_function (fndecl, false);
6738 /* Begin the statement tree for this function. */
6739 DECL_SAVED_TREE (fndecl) = push_stmt_list ();
6741 /* ??? Insert the contents of the pending sizes list into the function
6742 to be evaluated. The only reason left to have this is
6743 void foo(int n, int array[n++])
6744 because we throw away the array type in favor of a pointer type, and
6745 thus won't naturally see the SAVE_EXPR containing the increment. All
6746 other pending sizes would be handled by gimplify_parameters. */
6748 tree t;
6749 for (t = nreverse (get_pending_sizes ()); t ; t = TREE_CHAIN (t))
6750 add_stmt (TREE_VALUE (t));
6753 /* Even though we're inside a function body, we still don't want to
6754 call expand_expr to calculate the size of a variable-sized array.
6755 We haven't necessarily assigned RTL to all variables yet, so it's
6756 not safe to try to expand expressions involving them. */
6757 cfun->dont_save_pending_sizes_p = 1;
6760 /* Emit diagnostics that require gimple input for detection. Operate on
6761 FNDECL and all its nested functions. */
6763 static void
6764 c_gimple_diagnostics_recursively (tree fndecl)
6766 struct cgraph_node *cgn;
6767 gimple_seq body = gimple_body (fndecl);
6769 /* Handle attribute((warn_unused_result)). Relies on gimple input. */
6770 c_warn_unused_result (body);
6772 /* Notice when OpenMP structured block constraints are violated. */
6773 if (flag_openmp)
6774 diagnose_omp_structured_block_errors (fndecl);
6776 /* Finalize all nested functions now. */
6777 cgn = cgraph_node (fndecl);
6778 for (cgn = cgn->nested; cgn ; cgn = cgn->next_nested)
6779 c_gimple_diagnostics_recursively (cgn->decl);
6782 /* Finish up a function declaration and compile that function
6783 all the way to assembler language output. The free the storage
6784 for the function definition.
6786 This is called after parsing the body of the function definition. */
6788 void
6789 finish_function (void)
6791 tree fndecl = current_function_decl;
6793 label_context_stack_se = label_context_stack_se->next;
6794 label_context_stack_vm = label_context_stack_vm->next;
6796 if (TREE_CODE (fndecl) == FUNCTION_DECL
6797 && targetm.calls.promote_prototypes (TREE_TYPE (fndecl)))
6799 tree args = DECL_ARGUMENTS (fndecl);
6800 for (; args; args = TREE_CHAIN (args))
6802 tree type = TREE_TYPE (args);
6803 if (INTEGRAL_TYPE_P (type)
6804 && TYPE_PRECISION (type) < TYPE_PRECISION (integer_type_node))
6805 DECL_ARG_TYPE (args) = integer_type_node;
6809 if (DECL_INITIAL (fndecl) && DECL_INITIAL (fndecl) != error_mark_node)
6810 BLOCK_SUPERCONTEXT (DECL_INITIAL (fndecl)) = fndecl;
6812 /* Must mark the RESULT_DECL as being in this function. */
6814 if (DECL_RESULT (fndecl) && DECL_RESULT (fndecl) != error_mark_node)
6815 DECL_CONTEXT (DECL_RESULT (fndecl)) = fndecl;
6817 if (MAIN_NAME_P (DECL_NAME (fndecl)) && flag_hosted
6818 && TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (fndecl)))
6819 == integer_type_node && flag_isoc99)
6821 tree stmt = c_finish_return (integer_zero_node, NULL_TREE);
6822 /* Hack. We don't want the middle-end to warn that this return
6823 is unreachable, so we mark its location as special. Using
6824 UNKNOWN_LOCATION has the problem that it gets clobbered in
6825 annotate_one_with_locus. A cleaner solution might be to
6826 ensure ! should_carry_locus_p (stmt), but that needs a flag.
6828 SET_EXPR_LOCATION (stmt, BUILTINS_LOCATION);
6831 /* Tie off the statement tree for this function. */
6832 DECL_SAVED_TREE (fndecl) = pop_stmt_list (DECL_SAVED_TREE (fndecl));
6834 finish_fname_decls ();
6836 /* Complain if there's just no return statement. */
6837 if (warn_return_type
6838 && TREE_CODE (TREE_TYPE (TREE_TYPE (fndecl))) != VOID_TYPE
6839 && !current_function_returns_value && !current_function_returns_null
6840 /* Don't complain if we are no-return. */
6841 && !current_function_returns_abnormally
6842 /* Don't warn for main(). */
6843 && !MAIN_NAME_P (DECL_NAME (fndecl))
6844 /* Or if they didn't actually specify a return type. */
6845 && !C_FUNCTION_IMPLICIT_INT (fndecl)
6846 /* Normally, with -Wreturn-type, flow will complain, but we might
6847 optimize out static functions. */
6848 && !TREE_PUBLIC (fndecl))
6850 warning (OPT_Wreturn_type,
6851 "no return statement in function returning non-void");
6852 TREE_NO_WARNING (fndecl) = 1;
6855 /* Store the end of the function, so that we get good line number
6856 info for the epilogue. */
6857 cfun->function_end_locus = input_location;
6859 /* Finalize the ELF visibility for the function. */
6860 c_determine_visibility (fndecl);
6862 /* For GNU C extern inline functions disregard inline limits. */
6863 if (DECL_EXTERNAL (fndecl)
6864 && DECL_DECLARED_INLINE_P (fndecl))
6865 DECL_DISREGARD_INLINE_LIMITS (fndecl) = 1;
6867 /* Genericize before inlining. Delay genericizing nested functions
6868 until their parent function is genericized. Since finalizing
6869 requires GENERIC, delay that as well. */
6871 if (DECL_INITIAL (fndecl) && DECL_INITIAL (fndecl) != error_mark_node
6872 && !undef_nested_function)
6874 if (!decl_function_context (fndecl))
6876 c_genericize (fndecl);
6877 c_gimple_diagnostics_recursively (fndecl);
6879 /* ??? Objc emits functions after finalizing the compilation unit.
6880 This should be cleaned up later and this conditional removed. */
6881 if (cgraph_global_info_ready)
6883 cgraph_add_new_function (fndecl, false);
6884 return;
6887 cgraph_finalize_function (fndecl, false);
6889 else
6891 /* Register this function with cgraph just far enough to get it
6892 added to our parent's nested function list. Handy, since the
6893 C front end doesn't have such a list. */
6894 (void) cgraph_node (fndecl);
6898 if (!decl_function_context (fndecl))
6899 undef_nested_function = false;
6901 /* We're leaving the context of this function, so zap cfun.
6902 It's still in DECL_STRUCT_FUNCTION, and we'll restore it in
6903 tree_rest_of_compilation. */
6904 set_cfun (NULL);
6905 current_function_decl = NULL;
6908 /* Check the declarations given in a for-loop for satisfying the C99
6909 constraints. If exactly one such decl is found, return it. */
6911 tree
6912 check_for_loop_decls (void)
6914 struct c_binding *b;
6915 tree one_decl = NULL_TREE;
6916 int n_decls = 0;
6918 if (!flag_isoc99)
6920 static bool hint = true;
6921 /* If we get here, declarations have been used in a for loop without
6922 the C99 for loop scope. This doesn't make much sense, so don't
6923 allow it. */
6924 error ("%<for%> loop initial declarations are only allowed in C99 mode");
6925 if (hint)
6927 inform (input_location,
6928 "use option -std=c99 or -std=gnu99 to compile your code");
6929 hint = false;
6931 return NULL_TREE;
6933 /* C99 subclause 6.8.5 paragraph 3:
6935 [#3] The declaration part of a for statement shall only
6936 declare identifiers for objects having storage class auto or
6937 register.
6939 It isn't clear whether, in this sentence, "identifiers" binds to
6940 "shall only declare" or to "objects" - that is, whether all identifiers
6941 declared must be identifiers for objects, or whether the restriction
6942 only applies to those that are. (A question on this in comp.std.c
6943 in November 2000 received no answer.) We implement the strictest
6944 interpretation, to avoid creating an extension which later causes
6945 problems. */
6947 for (b = current_scope->bindings; b; b = b->prev)
6949 tree id = b->id;
6950 tree decl = b->decl;
6952 if (!id)
6953 continue;
6955 switch (TREE_CODE (decl))
6957 case VAR_DECL:
6958 if (TREE_STATIC (decl))
6959 error ("declaration of static variable %q+D in %<for%> loop "
6960 "initial declaration", decl);
6961 else if (DECL_EXTERNAL (decl))
6962 error ("declaration of %<extern%> variable %q+D in %<for%> loop "
6963 "initial declaration", decl);
6964 break;
6966 case RECORD_TYPE:
6967 error ("%<struct %E%> declared in %<for%> loop initial declaration",
6968 id);
6969 break;
6970 case UNION_TYPE:
6971 error ("%<union %E%> declared in %<for%> loop initial declaration",
6972 id);
6973 break;
6974 case ENUMERAL_TYPE:
6975 error ("%<enum %E%> declared in %<for%> loop initial declaration",
6976 id);
6977 break;
6978 default:
6979 error ("declaration of non-variable %q+D in %<for%> loop "
6980 "initial declaration", decl);
6983 n_decls++;
6984 one_decl = decl;
6987 return n_decls == 1 ? one_decl : NULL_TREE;
6990 /* Save and reinitialize the variables
6991 used during compilation of a C function. */
6993 void
6994 c_push_function_context (void)
6996 struct language_function *p;
6997 p = GGC_NEW (struct language_function);
6998 cfun->language = p;
7000 p->base.x_stmt_tree = c_stmt_tree;
7001 p->x_break_label = c_break_label;
7002 p->x_cont_label = c_cont_label;
7003 p->x_switch_stack = c_switch_stack;
7004 p->arg_info = current_function_arg_info;
7005 p->returns_value = current_function_returns_value;
7006 p->returns_null = current_function_returns_null;
7007 p->returns_abnormally = current_function_returns_abnormally;
7008 p->warn_about_return_type = warn_about_return_type;
7010 push_function_context ();
7013 /* Restore the variables used during compilation of a C function. */
7015 void
7016 c_pop_function_context (void)
7018 struct language_function *p;
7020 pop_function_context ();
7021 p = cfun->language;
7022 cfun->language = NULL;
7024 if (DECL_STRUCT_FUNCTION (current_function_decl) == 0
7025 && DECL_SAVED_TREE (current_function_decl) == NULL_TREE)
7027 /* Stop pointing to the local nodes about to be freed. */
7028 /* But DECL_INITIAL must remain nonzero so we know this
7029 was an actual function definition. */
7030 DECL_INITIAL (current_function_decl) = error_mark_node;
7031 DECL_ARGUMENTS (current_function_decl) = 0;
7034 c_stmt_tree = p->base.x_stmt_tree;
7035 c_break_label = p->x_break_label;
7036 c_cont_label = p->x_cont_label;
7037 c_switch_stack = p->x_switch_stack;
7038 current_function_arg_info = p->arg_info;
7039 current_function_returns_value = p->returns_value;
7040 current_function_returns_null = p->returns_null;
7041 current_function_returns_abnormally = p->returns_abnormally;
7042 warn_about_return_type = p->warn_about_return_type;
7045 /* Copy the DECL_LANG_SPECIFIC data associated with DECL. */
7047 void
7048 c_dup_lang_specific_decl (tree decl)
7050 struct lang_decl *ld;
7052 if (!DECL_LANG_SPECIFIC (decl))
7053 return;
7055 ld = GGC_NEW (struct lang_decl);
7056 memcpy (ld, DECL_LANG_SPECIFIC (decl), sizeof (struct lang_decl));
7057 DECL_LANG_SPECIFIC (decl) = ld;
7060 /* The functions below are required for functionality of doing
7061 function at once processing in the C front end. Currently these
7062 functions are not called from anywhere in the C front end, but as
7063 these changes continue, that will change. */
7065 /* Returns the stmt_tree (if any) to which statements are currently
7066 being added. If there is no active statement-tree, NULL is
7067 returned. */
7069 stmt_tree
7070 current_stmt_tree (void)
7072 return &c_stmt_tree;
7075 /* Return the global value of T as a symbol. */
7077 tree
7078 identifier_global_value (tree t)
7080 struct c_binding *b;
7082 for (b = I_SYMBOL_BINDING (t); b; b = b->shadowed)
7083 if (B_IN_FILE_SCOPE (b) || B_IN_EXTERNAL_SCOPE (b))
7084 return b->decl;
7086 return 0;
7089 /* Record a builtin type for C. If NAME is non-NULL, it is the name used;
7090 otherwise the name is found in ridpointers from RID_INDEX. */
7092 void
7093 record_builtin_type (enum rid rid_index, const char *name, tree type)
7095 tree id, decl;
7096 if (name == 0)
7097 id = ridpointers[(int) rid_index];
7098 else
7099 id = get_identifier (name);
7100 decl = build_decl (TYPE_DECL, id, type);
7101 pushdecl (decl);
7102 if (debug_hooks->type_decl)
7103 debug_hooks->type_decl (decl, false);
7106 /* Build the void_list_node (void_type_node having been created). */
7107 tree
7108 build_void_list_node (void)
7110 tree t = build_tree_list (NULL_TREE, void_type_node);
7111 return t;
7114 /* Return a c_parm structure with the given SPECS, ATTRS and DECLARATOR. */
7116 struct c_parm *
7117 build_c_parm (struct c_declspecs *specs, tree attrs,
7118 struct c_declarator *declarator)
7120 struct c_parm *ret = XOBNEW (&parser_obstack, struct c_parm);
7121 ret->specs = specs;
7122 ret->attrs = attrs;
7123 ret->declarator = declarator;
7124 return ret;
7127 /* Return a declarator with nested attributes. TARGET is the inner
7128 declarator to which these attributes apply. ATTRS are the
7129 attributes. */
7131 struct c_declarator *
7132 build_attrs_declarator (tree attrs, struct c_declarator *target)
7134 struct c_declarator *ret = XOBNEW (&parser_obstack, struct c_declarator);
7135 ret->kind = cdk_attrs;
7136 ret->declarator = target;
7137 ret->u.attrs = attrs;
7138 return ret;
7141 /* Return a declarator for a function with arguments specified by ARGS
7142 and return type specified by TARGET. */
7144 struct c_declarator *
7145 build_function_declarator (struct c_arg_info *args,
7146 struct c_declarator *target)
7148 struct c_declarator *ret = XOBNEW (&parser_obstack, struct c_declarator);
7149 ret->kind = cdk_function;
7150 ret->declarator = target;
7151 ret->u.arg_info = args;
7152 return ret;
7155 /* Return a declarator for the identifier IDENT (which may be
7156 NULL_TREE for an abstract declarator). */
7158 struct c_declarator *
7159 build_id_declarator (tree ident)
7161 struct c_declarator *ret = XOBNEW (&parser_obstack, struct c_declarator);
7162 ret->kind = cdk_id;
7163 ret->declarator = 0;
7164 ret->u.id = ident;
7165 /* Default value - may get reset to a more precise location. */
7166 ret->id_loc = input_location;
7167 return ret;
7170 /* Return something to represent absolute declarators containing a *.
7171 TARGET is the absolute declarator that the * contains.
7172 TYPE_QUALS_ATTRS is a structure for type qualifiers and attributes
7173 to apply to the pointer type. */
7175 struct c_declarator *
7176 make_pointer_declarator (struct c_declspecs *type_quals_attrs,
7177 struct c_declarator *target)
7179 tree attrs;
7180 int quals = 0;
7181 struct c_declarator *itarget = target;
7182 struct c_declarator *ret = XOBNEW (&parser_obstack, struct c_declarator);
7183 if (type_quals_attrs)
7185 attrs = type_quals_attrs->attrs;
7186 quals = quals_from_declspecs (type_quals_attrs);
7187 if (attrs != NULL_TREE)
7188 itarget = build_attrs_declarator (attrs, target);
7190 ret->kind = cdk_pointer;
7191 ret->declarator = itarget;
7192 ret->u.pointer_quals = quals;
7193 return ret;
7196 /* Return a pointer to a structure for an empty list of declaration
7197 specifiers. */
7199 struct c_declspecs *
7200 build_null_declspecs (void)
7202 struct c_declspecs *ret = XOBNEW (&parser_obstack, struct c_declspecs);
7203 ret->type = 0;
7204 ret->expr = 0;
7205 ret->decl_attr = 0;
7206 ret->attrs = 0;
7207 ret->typespec_word = cts_none;
7208 ret->storage_class = csc_none;
7209 ret->expr_const_operands = true;
7210 ret->declspecs_seen_p = false;
7211 ret->type_seen_p = false;
7212 ret->non_sc_seen_p = false;
7213 ret->typedef_p = false;
7214 ret->tag_defined_p = false;
7215 ret->explicit_signed_p = false;
7216 ret->deprecated_p = false;
7217 ret->default_int_p = false;
7218 ret->long_p = false;
7219 ret->long_long_p = false;
7220 ret->short_p = false;
7221 ret->signed_p = false;
7222 ret->unsigned_p = false;
7223 ret->complex_p = false;
7224 ret->inline_p = false;
7225 ret->thread_p = false;
7226 ret->const_p = false;
7227 ret->volatile_p = false;
7228 ret->restrict_p = false;
7229 ret->saturating_p = false;
7230 return ret;
7233 /* Add the type qualifier QUAL to the declaration specifiers SPECS,
7234 returning SPECS. */
7236 struct c_declspecs *
7237 declspecs_add_qual (struct c_declspecs *specs, tree qual)
7239 enum rid i;
7240 bool dupe = false;
7241 specs->non_sc_seen_p = true;
7242 specs->declspecs_seen_p = true;
7243 gcc_assert (TREE_CODE (qual) == IDENTIFIER_NODE
7244 && C_IS_RESERVED_WORD (qual));
7245 i = C_RID_CODE (qual);
7246 switch (i)
7248 case RID_CONST:
7249 dupe = specs->const_p;
7250 specs->const_p = true;
7251 break;
7252 case RID_VOLATILE:
7253 dupe = specs->volatile_p;
7254 specs->volatile_p = true;
7255 break;
7256 case RID_RESTRICT:
7257 dupe = specs->restrict_p;
7258 specs->restrict_p = true;
7259 break;
7260 default:
7261 gcc_unreachable ();
7263 if (dupe && !flag_isoc99)
7264 pedwarn (input_location, OPT_pedantic, "duplicate %qE", qual);
7265 return specs;
7268 /* Add the type specifier TYPE to the declaration specifiers SPECS,
7269 returning SPECS. */
7271 struct c_declspecs *
7272 declspecs_add_type (struct c_declspecs *specs, struct c_typespec spec)
7274 tree type = spec.spec;
7275 specs->non_sc_seen_p = true;
7276 specs->declspecs_seen_p = true;
7277 specs->type_seen_p = true;
7278 if (TREE_DEPRECATED (type))
7279 specs->deprecated_p = true;
7281 /* Handle type specifier keywords. */
7282 if (TREE_CODE (type) == IDENTIFIER_NODE
7283 && C_IS_RESERVED_WORD (type)
7284 && C_RID_CODE (type) != RID_CXX_COMPAT_WARN)
7286 enum rid i = C_RID_CODE (type);
7287 if (specs->type)
7289 error ("two or more data types in declaration specifiers");
7290 return specs;
7292 if ((int) i <= (int) RID_LAST_MODIFIER)
7294 /* "long", "short", "signed", "unsigned", "_Complex" or "_Sat". */
7295 bool dupe = false;
7296 switch (i)
7298 case RID_LONG:
7299 if (specs->long_long_p)
7301 error ("%<long long long%> is too long for GCC");
7302 break;
7304 if (specs->long_p)
7306 if (specs->typespec_word == cts_double)
7308 error ("both %<long long%> and %<double%> in "
7309 "declaration specifiers");
7310 break;
7312 pedwarn_c90 (input_location, OPT_Wlong_long,
7313 "ISO C90 does not support %<long long%>");
7314 specs->long_long_p = 1;
7315 break;
7317 if (specs->short_p)
7318 error ("both %<long%> and %<short%> in "
7319 "declaration specifiers");
7320 else if (specs->typespec_word == cts_void)
7321 error ("both %<long%> and %<void%> in "
7322 "declaration specifiers");
7323 else if (specs->typespec_word == cts_bool)
7324 error ("both %<long%> and %<_Bool%> in "
7325 "declaration specifiers");
7326 else if (specs->typespec_word == cts_char)
7327 error ("both %<long%> and %<char%> in "
7328 "declaration specifiers");
7329 else if (specs->typespec_word == cts_float)
7330 error ("both %<long%> and %<float%> in "
7331 "declaration specifiers");
7332 else if (specs->typespec_word == cts_dfloat32)
7333 error ("both %<long%> and %<_Decimal32%> in "
7334 "declaration specifiers");
7335 else if (specs->typespec_word == cts_dfloat64)
7336 error ("both %<long%> and %<_Decimal64%> in "
7337 "declaration specifiers");
7338 else if (specs->typespec_word == cts_dfloat128)
7339 error ("both %<long%> and %<_Decimal128%> in "
7340 "declaration specifiers");
7341 else
7342 specs->long_p = true;
7343 break;
7344 case RID_SHORT:
7345 dupe = specs->short_p;
7346 if (specs->long_p)
7347 error ("both %<long%> and %<short%> in "
7348 "declaration specifiers");
7349 else if (specs->typespec_word == cts_void)
7350 error ("both %<short%> and %<void%> in "
7351 "declaration specifiers");
7352 else if (specs->typespec_word == cts_bool)
7353 error ("both %<short%> and %<_Bool%> in "
7354 "declaration specifiers");
7355 else if (specs->typespec_word == cts_char)
7356 error ("both %<short%> and %<char%> in "
7357 "declaration specifiers");
7358 else if (specs->typespec_word == cts_float)
7359 error ("both %<short%> and %<float%> in "
7360 "declaration specifiers");
7361 else if (specs->typespec_word == cts_double)
7362 error ("both %<short%> and %<double%> in "
7363 "declaration specifiers");
7364 else if (specs->typespec_word == cts_dfloat32)
7365 error ("both %<short%> and %<_Decimal32%> in "
7366 "declaration specifiers");
7367 else if (specs->typespec_word == cts_dfloat64)
7368 error ("both %<short%> and %<_Decimal64%> in "
7369 "declaration specifiers");
7370 else if (specs->typespec_word == cts_dfloat128)
7371 error ("both %<short%> and %<_Decimal128%> in "
7372 "declaration specifiers");
7373 else
7374 specs->short_p = true;
7375 break;
7376 case RID_SIGNED:
7377 dupe = specs->signed_p;
7378 if (specs->unsigned_p)
7379 error ("both %<signed%> and %<unsigned%> in "
7380 "declaration specifiers");
7381 else if (specs->typespec_word == cts_void)
7382 error ("both %<signed%> and %<void%> in "
7383 "declaration specifiers");
7384 else if (specs->typespec_word == cts_bool)
7385 error ("both %<signed%> and %<_Bool%> in "
7386 "declaration specifiers");
7387 else if (specs->typespec_word == cts_float)
7388 error ("both %<signed%> and %<float%> in "
7389 "declaration specifiers");
7390 else if (specs->typespec_word == cts_double)
7391 error ("both %<signed%> and %<double%> in "
7392 "declaration specifiers");
7393 else if (specs->typespec_word == cts_dfloat32)
7394 error ("both %<signed%> and %<_Decimal32%> in "
7395 "declaration specifiers");
7396 else if (specs->typespec_word == cts_dfloat64)
7397 error ("both %<signed%> and %<_Decimal64%> in "
7398 "declaration specifiers");
7399 else if (specs->typespec_word == cts_dfloat128)
7400 error ("both %<signed%> and %<_Decimal128%> in "
7401 "declaration specifiers");
7402 else
7403 specs->signed_p = true;
7404 break;
7405 case RID_UNSIGNED:
7406 dupe = specs->unsigned_p;
7407 if (specs->signed_p)
7408 error ("both %<signed%> and %<unsigned%> in "
7409 "declaration specifiers");
7410 else if (specs->typespec_word == cts_void)
7411 error ("both %<unsigned%> and %<void%> in "
7412 "declaration specifiers");
7413 else if (specs->typespec_word == cts_bool)
7414 error ("both %<unsigned%> and %<_Bool%> in "
7415 "declaration specifiers");
7416 else if (specs->typespec_word == cts_float)
7417 error ("both %<unsigned%> and %<float%> in "
7418 "declaration specifiers");
7419 else if (specs->typespec_word == cts_double)
7420 error ("both %<unsigned%> and %<double%> in "
7421 "declaration specifiers");
7422 else if (specs->typespec_word == cts_dfloat32)
7423 error ("both %<unsigned%> and %<_Decimal32%> in "
7424 "declaration specifiers");
7425 else if (specs->typespec_word == cts_dfloat64)
7426 error ("both %<unsigned%> and %<_Decimal64%> in "
7427 "declaration specifiers");
7428 else if (specs->typespec_word == cts_dfloat128)
7429 error ("both %<unsigned%> and %<_Decimal128%> in "
7430 "declaration specifiers");
7431 else
7432 specs->unsigned_p = true;
7433 break;
7434 case RID_COMPLEX:
7435 dupe = specs->complex_p;
7436 if (!flag_isoc99 && !in_system_header)
7437 pedwarn (input_location, OPT_pedantic, "ISO C90 does not support complex types");
7438 if (specs->typespec_word == cts_void)
7439 error ("both %<complex%> and %<void%> in "
7440 "declaration specifiers");
7441 else if (specs->typespec_word == cts_bool)
7442 error ("both %<complex%> and %<_Bool%> in "
7443 "declaration specifiers");
7444 else if (specs->typespec_word == cts_dfloat32)
7445 error ("both %<complex%> and %<_Decimal32%> in "
7446 "declaration specifiers");
7447 else if (specs->typespec_word == cts_dfloat64)
7448 error ("both %<complex%> and %<_Decimal64%> in "
7449 "declaration specifiers");
7450 else if (specs->typespec_word == cts_dfloat128)
7451 error ("both %<complex%> and %<_Decimal128%> in "
7452 "declaration specifiers");
7453 else if (specs->typespec_word == cts_fract)
7454 error ("both %<complex%> and %<_Fract%> in "
7455 "declaration specifiers");
7456 else if (specs->typespec_word == cts_accum)
7457 error ("both %<complex%> and %<_Accum%> in "
7458 "declaration specifiers");
7459 else if (specs->saturating_p)
7460 error ("both %<complex%> and %<_Sat%> in "
7461 "declaration specifiers");
7462 else
7463 specs->complex_p = true;
7464 break;
7465 case RID_SAT:
7466 dupe = specs->saturating_p;
7467 pedwarn (input_location, OPT_pedantic, "ISO C does not support saturating types");
7468 if (specs->typespec_word == cts_void)
7469 error ("both %<_Sat%> and %<void%> in "
7470 "declaration specifiers");
7471 else if (specs->typespec_word == cts_bool)
7472 error ("both %<_Sat%> and %<_Bool%> in "
7473 "declaration specifiers");
7474 else if (specs->typespec_word == cts_char)
7475 error ("both %<_Sat%> and %<char%> in "
7476 "declaration specifiers");
7477 else if (specs->typespec_word == cts_int)
7478 error ("both %<_Sat%> and %<int%> in "
7479 "declaration specifiers");
7480 else if (specs->typespec_word == cts_float)
7481 error ("both %<_Sat%> and %<float%> in "
7482 "declaration specifiers");
7483 else if (specs->typespec_word == cts_double)
7484 error ("both %<_Sat%> and %<double%> in "
7485 "declaration specifiers");
7486 else if (specs->typespec_word == cts_dfloat32)
7487 error ("both %<_Sat%> and %<_Decimal32%> in "
7488 "declaration specifiers");
7489 else if (specs->typespec_word == cts_dfloat64)
7490 error ("both %<_Sat%> and %<_Decimal64%> in "
7491 "declaration specifiers");
7492 else if (specs->typespec_word == cts_dfloat128)
7493 error ("both %<_Sat%> and %<_Decimal128%> in "
7494 "declaration specifiers");
7495 else if (specs->complex_p)
7496 error ("both %<_Sat%> and %<complex%> in "
7497 "declaration specifiers");
7498 else
7499 specs->saturating_p = true;
7500 break;
7501 default:
7502 gcc_unreachable ();
7505 if (dupe)
7506 error ("duplicate %qE", type);
7508 return specs;
7510 else
7512 /* "void", "_Bool", "char", "int", "float", "double", "_Decimal32",
7513 "_Decimal64", "_Decimal128", "_Fract" or "_Accum". */
7514 if (specs->typespec_word != cts_none)
7516 error ("two or more data types in declaration specifiers");
7517 return specs;
7519 switch (i)
7521 case RID_VOID:
7522 if (specs->long_p)
7523 error ("both %<long%> and %<void%> in "
7524 "declaration specifiers");
7525 else if (specs->short_p)
7526 error ("both %<short%> and %<void%> in "
7527 "declaration specifiers");
7528 else if (specs->signed_p)
7529 error ("both %<signed%> and %<void%> in "
7530 "declaration specifiers");
7531 else if (specs->unsigned_p)
7532 error ("both %<unsigned%> and %<void%> in "
7533 "declaration specifiers");
7534 else if (specs->complex_p)
7535 error ("both %<complex%> and %<void%> in "
7536 "declaration specifiers");
7537 else if (specs->saturating_p)
7538 error ("both %<_Sat%> and %<void%> in "
7539 "declaration specifiers");
7540 else
7541 specs->typespec_word = cts_void;
7542 return specs;
7543 case RID_BOOL:
7544 if (specs->long_p)
7545 error ("both %<long%> and %<_Bool%> in "
7546 "declaration specifiers");
7547 else if (specs->short_p)
7548 error ("both %<short%> and %<_Bool%> in "
7549 "declaration specifiers");
7550 else if (specs->signed_p)
7551 error ("both %<signed%> and %<_Bool%> in "
7552 "declaration specifiers");
7553 else if (specs->unsigned_p)
7554 error ("both %<unsigned%> and %<_Bool%> in "
7555 "declaration specifiers");
7556 else if (specs->complex_p)
7557 error ("both %<complex%> and %<_Bool%> in "
7558 "declaration specifiers");
7559 else if (specs->saturating_p)
7560 error ("both %<_Sat%> and %<_Bool%> in "
7561 "declaration specifiers");
7562 else
7563 specs->typespec_word = cts_bool;
7564 return specs;
7565 case RID_CHAR:
7566 if (specs->long_p)
7567 error ("both %<long%> and %<char%> in "
7568 "declaration specifiers");
7569 else if (specs->short_p)
7570 error ("both %<short%> and %<char%> in "
7571 "declaration specifiers");
7572 else if (specs->saturating_p)
7573 error ("both %<_Sat%> and %<char%> in "
7574 "declaration specifiers");
7575 else
7576 specs->typespec_word = cts_char;
7577 return specs;
7578 case RID_INT:
7579 if (specs->saturating_p)
7580 error ("both %<_Sat%> and %<int%> in "
7581 "declaration specifiers");
7582 else
7583 specs->typespec_word = cts_int;
7584 return specs;
7585 case RID_FLOAT:
7586 if (specs->long_p)
7587 error ("both %<long%> and %<float%> in "
7588 "declaration specifiers");
7589 else if (specs->short_p)
7590 error ("both %<short%> and %<float%> in "
7591 "declaration specifiers");
7592 else if (specs->signed_p)
7593 error ("both %<signed%> and %<float%> in "
7594 "declaration specifiers");
7595 else if (specs->unsigned_p)
7596 error ("both %<unsigned%> and %<float%> in "
7597 "declaration specifiers");
7598 else if (specs->saturating_p)
7599 error ("both %<_Sat%> and %<float%> in "
7600 "declaration specifiers");
7601 else
7602 specs->typespec_word = cts_float;
7603 return specs;
7604 case RID_DOUBLE:
7605 if (specs->long_long_p)
7606 error ("both %<long long%> and %<double%> in "
7607 "declaration specifiers");
7608 else if (specs->short_p)
7609 error ("both %<short%> and %<double%> in "
7610 "declaration specifiers");
7611 else if (specs->signed_p)
7612 error ("both %<signed%> and %<double%> in "
7613 "declaration specifiers");
7614 else if (specs->unsigned_p)
7615 error ("both %<unsigned%> and %<double%> in "
7616 "declaration specifiers");
7617 else if (specs->saturating_p)
7618 error ("both %<_Sat%> and %<double%> in "
7619 "declaration specifiers");
7620 else
7621 specs->typespec_word = cts_double;
7622 return specs;
7623 case RID_DFLOAT32:
7624 case RID_DFLOAT64:
7625 case RID_DFLOAT128:
7627 const char *str;
7628 if (i == RID_DFLOAT32)
7629 str = "_Decimal32";
7630 else if (i == RID_DFLOAT64)
7631 str = "_Decimal64";
7632 else
7633 str = "_Decimal128";
7634 if (specs->long_long_p)
7635 error ("both %<long long%> and %<%s%> in "
7636 "declaration specifiers", str);
7637 if (specs->long_p)
7638 error ("both %<long%> and %<%s%> in "
7639 "declaration specifiers", str);
7640 else if (specs->short_p)
7641 error ("both %<short%> and %<%s%> in "
7642 "declaration specifiers", str);
7643 else if (specs->signed_p)
7644 error ("both %<signed%> and %<%s%> in "
7645 "declaration specifiers", str);
7646 else if (specs->unsigned_p)
7647 error ("both %<unsigned%> and %<%s%> in "
7648 "declaration specifiers", str);
7649 else if (specs->complex_p)
7650 error ("both %<complex%> and %<%s%> in "
7651 "declaration specifiers", str);
7652 else if (specs->saturating_p)
7653 error ("both %<_Sat%> and %<%s%> in "
7654 "declaration specifiers", str);
7655 else if (i == RID_DFLOAT32)
7656 specs->typespec_word = cts_dfloat32;
7657 else if (i == RID_DFLOAT64)
7658 specs->typespec_word = cts_dfloat64;
7659 else
7660 specs->typespec_word = cts_dfloat128;
7662 if (!targetm.decimal_float_supported_p ())
7663 error ("decimal floating point not supported for this target");
7664 pedwarn (input_location, OPT_pedantic,
7665 "ISO C does not support decimal floating point");
7666 return specs;
7667 case RID_FRACT:
7668 case RID_ACCUM:
7670 const char *str;
7671 if (i == RID_FRACT)
7672 str = "_Fract";
7673 else
7674 str = "_Accum";
7675 if (specs->complex_p)
7676 error ("both %<complex%> and %<%s%> in "
7677 "declaration specifiers", str);
7678 else if (i == RID_FRACT)
7679 specs->typespec_word = cts_fract;
7680 else
7681 specs->typespec_word = cts_accum;
7683 if (!targetm.fixed_point_supported_p ())
7684 error ("fixed-point types not supported for this target");
7685 pedwarn (input_location, OPT_pedantic,
7686 "ISO C does not support fixed-point types");
7687 return specs;
7688 default:
7689 /* ObjC reserved word "id", handled below. */
7690 break;
7695 /* Now we have a typedef (a TYPE_DECL node), an identifier (some
7696 form of ObjC type, cases such as "int" and "long" being handled
7697 above), a TYPE (struct, union, enum and typeof specifiers) or an
7698 ERROR_MARK. In none of these cases may there have previously
7699 been any type specifiers. */
7700 if (specs->type || specs->typespec_word != cts_none
7701 || specs->long_p || specs->short_p || specs->signed_p
7702 || specs->unsigned_p || specs->complex_p)
7703 error ("two or more data types in declaration specifiers");
7704 else if (TREE_CODE (type) == TYPE_DECL)
7706 if (TREE_TYPE (type) == error_mark_node)
7707 ; /* Allow the type to default to int to avoid cascading errors. */
7708 else
7710 specs->type = TREE_TYPE (type);
7711 specs->decl_attr = DECL_ATTRIBUTES (type);
7712 specs->typedef_p = true;
7713 specs->explicit_signed_p = C_TYPEDEF_EXPLICITLY_SIGNED (type);
7716 else if (TREE_CODE (type) == IDENTIFIER_NODE)
7718 tree t = lookup_name (type);
7719 if (!t || TREE_CODE (t) != TYPE_DECL)
7720 error ("%qE fails to be a typedef or built in type", type);
7721 else if (TREE_TYPE (t) == error_mark_node)
7723 else
7724 specs->type = TREE_TYPE (t);
7726 else if (TREE_CODE (type) != ERROR_MARK)
7728 if (spec.kind == ctsk_tagdef || spec.kind == ctsk_tagfirstref)
7729 specs->tag_defined_p = true;
7730 if (spec.kind == ctsk_typeof)
7732 specs->typedef_p = true;
7733 if (spec.expr)
7735 if (specs->expr)
7736 specs->expr = build2 (COMPOUND_EXPR, TREE_TYPE (spec.expr),
7737 specs->expr, spec.expr);
7738 else
7739 specs->expr = spec.expr;
7740 specs->expr_const_operands &= spec.expr_const_operands;
7743 specs->type = type;
7746 return specs;
7749 /* Add the storage class specifier or function specifier SCSPEC to the
7750 declaration specifiers SPECS, returning SPECS. */
7752 struct c_declspecs *
7753 declspecs_add_scspec (struct c_declspecs *specs, tree scspec)
7755 enum rid i;
7756 enum c_storage_class n = csc_none;
7757 bool dupe = false;
7758 specs->declspecs_seen_p = true;
7759 gcc_assert (TREE_CODE (scspec) == IDENTIFIER_NODE
7760 && C_IS_RESERVED_WORD (scspec));
7761 i = C_RID_CODE (scspec);
7762 if (specs->non_sc_seen_p)
7763 warning (OPT_Wold_style_declaration,
7764 "%qE is not at beginning of declaration", scspec);
7765 switch (i)
7767 case RID_INLINE:
7768 /* C99 permits duplicate inline. Although of doubtful utility,
7769 it seems simplest to permit it in gnu89 mode as well, as
7770 there is also little utility in maintaining this as a
7771 difference between gnu89 and C99 inline. */
7772 dupe = false;
7773 specs->inline_p = true;
7774 break;
7775 case RID_THREAD:
7776 dupe = specs->thread_p;
7777 if (specs->storage_class == csc_auto)
7778 error ("%<__thread%> used with %<auto%>");
7779 else if (specs->storage_class == csc_register)
7780 error ("%<__thread%> used with %<register%>");
7781 else if (specs->storage_class == csc_typedef)
7782 error ("%<__thread%> used with %<typedef%>");
7783 else
7784 specs->thread_p = true;
7785 break;
7786 case RID_AUTO:
7787 n = csc_auto;
7788 break;
7789 case RID_EXTERN:
7790 n = csc_extern;
7791 /* Diagnose "__thread extern". */
7792 if (specs->thread_p)
7793 error ("%<__thread%> before %<extern%>");
7794 break;
7795 case RID_REGISTER:
7796 n = csc_register;
7797 break;
7798 case RID_STATIC:
7799 n = csc_static;
7800 /* Diagnose "__thread static". */
7801 if (specs->thread_p)
7802 error ("%<__thread%> before %<static%>");
7803 break;
7804 case RID_TYPEDEF:
7805 n = csc_typedef;
7806 break;
7807 default:
7808 gcc_unreachable ();
7810 if (n != csc_none && n == specs->storage_class)
7811 dupe = true;
7812 if (dupe)
7813 error ("duplicate %qE", scspec);
7814 if (n != csc_none)
7816 if (specs->storage_class != csc_none && n != specs->storage_class)
7818 error ("multiple storage classes in declaration specifiers");
7820 else
7822 specs->storage_class = n;
7823 if (n != csc_extern && n != csc_static && specs->thread_p)
7825 error ("%<__thread%> used with %qE", scspec);
7826 specs->thread_p = false;
7830 return specs;
7833 /* Add the attributes ATTRS to the declaration specifiers SPECS,
7834 returning SPECS. */
7836 struct c_declspecs *
7837 declspecs_add_attrs (struct c_declspecs *specs, tree attrs)
7839 specs->attrs = chainon (attrs, specs->attrs);
7840 specs->declspecs_seen_p = true;
7841 return specs;
7844 /* Combine "long", "short", "signed", "unsigned" and "_Complex" type
7845 specifiers with any other type specifier to determine the resulting
7846 type. This is where ISO C checks on complex types are made, since
7847 "_Complex long" is a prefix of the valid ISO C type "_Complex long
7848 double". */
7850 struct c_declspecs *
7851 finish_declspecs (struct c_declspecs *specs)
7853 /* If a type was specified as a whole, we have no modifiers and are
7854 done. */
7855 if (specs->type != NULL_TREE)
7857 gcc_assert (!specs->long_p && !specs->long_long_p && !specs->short_p
7858 && !specs->signed_p && !specs->unsigned_p
7859 && !specs->complex_p);
7860 return specs;
7863 /* If none of "void", "_Bool", "char", "int", "float" or "double"
7864 has been specified, treat it as "int" unless "_Complex" is
7865 present and there are no other specifiers. If we just have
7866 "_Complex", it is equivalent to "_Complex double", but e.g.
7867 "_Complex short" is equivalent to "_Complex short int". */
7868 if (specs->typespec_word == cts_none)
7870 if (specs->saturating_p)
7872 error ("%<_Sat%> is used without %<_Fract%> or %<_Accum%>");
7873 if (!targetm.fixed_point_supported_p ())
7874 error ("fixed-point types not supported for this target");
7875 specs->typespec_word = cts_fract;
7877 else if (specs->long_p || specs->short_p
7878 || specs->signed_p || specs->unsigned_p)
7880 specs->typespec_word = cts_int;
7882 else if (specs->complex_p)
7884 specs->typespec_word = cts_double;
7885 pedwarn (input_location, OPT_pedantic,
7886 "ISO C does not support plain %<complex%> meaning "
7887 "%<double complex%>");
7889 else
7891 specs->typespec_word = cts_int;
7892 specs->default_int_p = true;
7893 /* We don't diagnose this here because grokdeclarator will
7894 give more specific diagnostics according to whether it is
7895 a function definition. */
7899 /* If "signed" was specified, record this to distinguish "int" and
7900 "signed int" in the case of a bit-field with
7901 -funsigned-bitfields. */
7902 specs->explicit_signed_p = specs->signed_p;
7904 /* Now compute the actual type. */
7905 switch (specs->typespec_word)
7907 case cts_void:
7908 gcc_assert (!specs->long_p && !specs->short_p
7909 && !specs->signed_p && !specs->unsigned_p
7910 && !specs->complex_p);
7911 specs->type = void_type_node;
7912 break;
7913 case cts_bool:
7914 gcc_assert (!specs->long_p && !specs->short_p
7915 && !specs->signed_p && !specs->unsigned_p
7916 && !specs->complex_p);
7917 specs->type = boolean_type_node;
7918 break;
7919 case cts_char:
7920 gcc_assert (!specs->long_p && !specs->short_p);
7921 gcc_assert (!(specs->signed_p && specs->unsigned_p));
7922 if (specs->signed_p)
7923 specs->type = signed_char_type_node;
7924 else if (specs->unsigned_p)
7925 specs->type = unsigned_char_type_node;
7926 else
7927 specs->type = char_type_node;
7928 if (specs->complex_p)
7930 pedwarn (input_location, OPT_pedantic,
7931 "ISO C does not support complex integer types");
7932 specs->type = build_complex_type (specs->type);
7934 break;
7935 case cts_int:
7936 gcc_assert (!(specs->long_p && specs->short_p));
7937 gcc_assert (!(specs->signed_p && specs->unsigned_p));
7938 if (specs->long_long_p)
7939 specs->type = (specs->unsigned_p
7940 ? long_long_unsigned_type_node
7941 : long_long_integer_type_node);
7942 else if (specs->long_p)
7943 specs->type = (specs->unsigned_p
7944 ? long_unsigned_type_node
7945 : long_integer_type_node);
7946 else if (specs->short_p)
7947 specs->type = (specs->unsigned_p
7948 ? short_unsigned_type_node
7949 : short_integer_type_node);
7950 else
7951 specs->type = (specs->unsigned_p
7952 ? unsigned_type_node
7953 : integer_type_node);
7954 if (specs->complex_p)
7956 pedwarn (input_location, OPT_pedantic,
7957 "ISO C does not support complex integer types");
7958 specs->type = build_complex_type (specs->type);
7960 break;
7961 case cts_float:
7962 gcc_assert (!specs->long_p && !specs->short_p
7963 && !specs->signed_p && !specs->unsigned_p);
7964 specs->type = (specs->complex_p
7965 ? complex_float_type_node
7966 : float_type_node);
7967 break;
7968 case cts_double:
7969 gcc_assert (!specs->long_long_p && !specs->short_p
7970 && !specs->signed_p && !specs->unsigned_p);
7971 if (specs->long_p)
7973 specs->type = (specs->complex_p
7974 ? complex_long_double_type_node
7975 : long_double_type_node);
7977 else
7979 specs->type = (specs->complex_p
7980 ? complex_double_type_node
7981 : double_type_node);
7983 break;
7984 case cts_dfloat32:
7985 case cts_dfloat64:
7986 case cts_dfloat128:
7987 gcc_assert (!specs->long_p && !specs->long_long_p && !specs->short_p
7988 && !specs->signed_p && !specs->unsigned_p && !specs->complex_p);
7989 if (specs->typespec_word == cts_dfloat32)
7990 specs->type = dfloat32_type_node;
7991 else if (specs->typespec_word == cts_dfloat64)
7992 specs->type = dfloat64_type_node;
7993 else
7994 specs->type = dfloat128_type_node;
7995 break;
7996 case cts_fract:
7997 gcc_assert (!specs->complex_p);
7998 if (!targetm.fixed_point_supported_p ())
7999 specs->type = integer_type_node;
8000 else if (specs->saturating_p)
8002 if (specs->long_long_p)
8003 specs->type = specs->unsigned_p
8004 ? sat_unsigned_long_long_fract_type_node
8005 : sat_long_long_fract_type_node;
8006 else if (specs->long_p)
8007 specs->type = specs->unsigned_p
8008 ? sat_unsigned_long_fract_type_node
8009 : sat_long_fract_type_node;
8010 else if (specs->short_p)
8011 specs->type = specs->unsigned_p
8012 ? sat_unsigned_short_fract_type_node
8013 : sat_short_fract_type_node;
8014 else
8015 specs->type = specs->unsigned_p
8016 ? sat_unsigned_fract_type_node
8017 : sat_fract_type_node;
8019 else
8021 if (specs->long_long_p)
8022 specs->type = specs->unsigned_p
8023 ? unsigned_long_long_fract_type_node
8024 : long_long_fract_type_node;
8025 else if (specs->long_p)
8026 specs->type = specs->unsigned_p
8027 ? unsigned_long_fract_type_node
8028 : long_fract_type_node;
8029 else if (specs->short_p)
8030 specs->type = specs->unsigned_p
8031 ? unsigned_short_fract_type_node
8032 : short_fract_type_node;
8033 else
8034 specs->type = specs->unsigned_p
8035 ? unsigned_fract_type_node
8036 : fract_type_node;
8038 break;
8039 case cts_accum:
8040 gcc_assert (!specs->complex_p);
8041 if (!targetm.fixed_point_supported_p ())
8042 specs->type = integer_type_node;
8043 else if (specs->saturating_p)
8045 if (specs->long_long_p)
8046 specs->type = specs->unsigned_p
8047 ? sat_unsigned_long_long_accum_type_node
8048 : sat_long_long_accum_type_node;
8049 else if (specs->long_p)
8050 specs->type = specs->unsigned_p
8051 ? sat_unsigned_long_accum_type_node
8052 : sat_long_accum_type_node;
8053 else if (specs->short_p)
8054 specs->type = specs->unsigned_p
8055 ? sat_unsigned_short_accum_type_node
8056 : sat_short_accum_type_node;
8057 else
8058 specs->type = specs->unsigned_p
8059 ? sat_unsigned_accum_type_node
8060 : sat_accum_type_node;
8062 else
8064 if (specs->long_long_p)
8065 specs->type = specs->unsigned_p
8066 ? unsigned_long_long_accum_type_node
8067 : long_long_accum_type_node;
8068 else if (specs->long_p)
8069 specs->type = specs->unsigned_p
8070 ? unsigned_long_accum_type_node
8071 : long_accum_type_node;
8072 else if (specs->short_p)
8073 specs->type = specs->unsigned_p
8074 ? unsigned_short_accum_type_node
8075 : short_accum_type_node;
8076 else
8077 specs->type = specs->unsigned_p
8078 ? unsigned_accum_type_node
8079 : accum_type_node;
8081 break;
8082 default:
8083 gcc_unreachable ();
8086 return specs;
8089 /* A subroutine of c_write_global_declarations. Perform final processing
8090 on one file scope's declarations (or the external scope's declarations),
8091 GLOBALS. */
8093 static void
8094 c_write_global_declarations_1 (tree globals)
8096 tree decl;
8097 bool reconsider;
8099 /* Process the decls in the order they were written. */
8100 for (decl = globals; decl; decl = TREE_CHAIN (decl))
8102 /* Check for used but undefined static functions using the C
8103 standard's definition of "used", and set TREE_NO_WARNING so
8104 that check_global_declarations doesn't repeat the check. */
8105 if (TREE_CODE (decl) == FUNCTION_DECL
8106 && DECL_INITIAL (decl) == 0
8107 && DECL_EXTERNAL (decl)
8108 && !TREE_PUBLIC (decl)
8109 && C_DECL_USED (decl))
8111 pedwarn (input_location, 0, "%q+F used but never defined", decl);
8112 TREE_NO_WARNING (decl) = 1;
8115 wrapup_global_declaration_1 (decl);
8120 reconsider = false;
8121 for (decl = globals; decl; decl = TREE_CHAIN (decl))
8122 reconsider |= wrapup_global_declaration_2 (decl);
8124 while (reconsider);
8126 for (decl = globals; decl; decl = TREE_CHAIN (decl))
8127 check_global_declaration_1 (decl);
8130 /* A subroutine of c_write_global_declarations Emit debug information for each
8131 of the declarations in GLOBALS. */
8133 static void
8134 c_write_global_declarations_2 (tree globals)
8136 tree decl;
8138 for (decl = globals; decl ; decl = TREE_CHAIN (decl))
8139 debug_hooks->global_decl (decl);
8142 /* Preserve the external declarations scope across a garbage collect. */
8143 static GTY(()) tree ext_block;
8145 void
8146 c_write_global_declarations (void)
8148 tree t;
8150 /* We don't want to do this if generating a PCH. */
8151 if (pch_file)
8152 return;
8154 /* Don't waste time on further processing if -fsyntax-only or we've
8155 encountered errors. */
8156 if (flag_syntax_only || errorcount || sorrycount)
8157 return;
8159 /* Close the external scope. */
8160 ext_block = pop_scope ();
8161 external_scope = 0;
8162 gcc_assert (!current_scope);
8164 if (ext_block)
8166 tree tmp = BLOCK_VARS (ext_block);
8167 int flags;
8168 FILE * stream = dump_begin (TDI_tu, &flags);
8169 if (stream && tmp)
8171 dump_node (tmp, flags & ~TDF_SLIM, stream);
8172 dump_end (TDI_tu, stream);
8176 /* Process all file scopes in this compilation, and the external_scope,
8177 through wrapup_global_declarations and check_global_declarations. */
8178 for (t = all_translation_units; t; t = TREE_CHAIN (t))
8179 c_write_global_declarations_1 (BLOCK_VARS (DECL_INITIAL (t)));
8180 c_write_global_declarations_1 (BLOCK_VARS (ext_block));
8182 /* We're done parsing; proceed to optimize and emit assembly.
8183 FIXME: shouldn't be the front end's responsibility to call this. */
8184 cgraph_optimize ();
8186 /* After cgraph has had a chance to emit everything that's going to
8187 be emitted, output debug information for globals. */
8188 if (errorcount == 0 && sorrycount == 0)
8190 timevar_push (TV_SYMOUT);
8191 for (t = all_translation_units; t; t = TREE_CHAIN (t))
8192 c_write_global_declarations_2 (BLOCK_VARS (DECL_INITIAL (t)));
8193 c_write_global_declarations_2 (BLOCK_VARS (ext_block));
8194 timevar_pop (TV_SYMOUT);
8197 ext_block = NULL;
8200 #include "gt-c-decl.h"