PR c++/28588
[official-gcc.git] / gcc / c-decl.c
blobcf89191ae2e29caf31ae7c4f07da75ca746ec523
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 Free Software Foundation, Inc.
5 This file is part of GCC.
7 GCC is free software; you can redistribute it and/or modify it under
8 the terms of the GNU General Public License as published by the Free
9 Software Foundation; either version 2, or (at your option) any later
10 version.
12 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
13 WARRANTY; without even the implied warranty of MERCHANTABILITY or
14 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
15 for more details.
17 You should have received a copy of the GNU General Public License
18 along with GCC; see the file COPYING. If not, write to the Free
19 Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA
20 02110-1301, USA. */
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 "tree-gimple.h"
56 #include "diagnostic.h"
57 #include "tree-dump.h"
58 #include "cgraph.h"
59 #include "hashtab.h"
60 #include "libfuncs.h"
61 #include "except.h"
62 #include "langhooks-def.h"
63 #include "pointer-set.h"
65 /* In grokdeclarator, distinguish syntactic contexts of declarators. */
66 enum decl_context
67 { NORMAL, /* Ordinary declaration */
68 FUNCDEF, /* Function definition */
69 PARM, /* Declaration of parm before function body */
70 FIELD, /* Declaration inside struct or union */
71 TYPENAME}; /* Typename (inside cast or sizeof) */
74 /* Nonzero if we have seen an invalid cross reference
75 to a struct, union, or enum, but not yet printed the message. */
76 tree pending_invalid_xref;
78 /* File and line to appear in the eventual error message. */
79 location_t pending_invalid_xref_location;
81 /* True means we've initialized exception handling. */
82 bool c_eh_initialized_p;
84 /* While defining an enum type, this is 1 plus the last enumerator
85 constant value. Note that will do not have to save this or `enum_overflow'
86 around nested function definition since such a definition could only
87 occur in an enum value expression and we don't use these variables in
88 that case. */
90 static tree enum_next_value;
92 /* Nonzero means that there was overflow computing enum_next_value. */
94 static int enum_overflow;
96 /* The file and line that the prototype came from if this is an
97 old-style definition; used for diagnostics in
98 store_parm_decls_oldstyle. */
100 static location_t current_function_prototype_locus;
102 /* Whether this prototype was built-in. */
104 static bool current_function_prototype_built_in;
106 /* The argument type information of this prototype. */
108 static tree current_function_prototype_arg_types;
110 /* The argument information structure for the function currently being
111 defined. */
113 static struct c_arg_info *current_function_arg_info;
115 /* The obstack on which parser and related data structures, which are
116 not live beyond their top-level declaration or definition, are
117 allocated. */
118 struct obstack parser_obstack;
120 /* The current statement tree. */
122 static GTY(()) struct stmt_tree_s c_stmt_tree;
124 /* State saving variables. */
125 tree c_break_label;
126 tree c_cont_label;
128 /* Linked list of TRANSLATION_UNIT_DECLS for the translation units
129 included in this invocation. Note that the current translation
130 unit is not included in this list. */
132 static GTY(()) tree all_translation_units;
134 /* A list of decls to be made automatically visible in each file scope. */
135 static GTY(()) tree visible_builtins;
137 /* Set to 0 at beginning of a function definition, set to 1 if
138 a return statement that specifies a return value is seen. */
140 int current_function_returns_value;
142 /* Set to 0 at beginning of a function definition, set to 1 if
143 a return statement with no argument is seen. */
145 int current_function_returns_null;
147 /* Set to 0 at beginning of a function definition, set to 1 if
148 a call to a noreturn function is seen. */
150 int current_function_returns_abnormally;
152 /* Set to nonzero by `grokdeclarator' for a function
153 whose return type is defaulted, if warnings for this are desired. */
155 static int warn_about_return_type;
157 /* Nonzero when starting a function declared `extern inline'. */
159 static int current_extern_inline;
161 /* Nonzero when the current toplevel function contains a declaration
162 of a nested function which is never defined. */
164 static bool undef_nested_function;
166 /* True means global_bindings_p should return false even if the scope stack
167 says we are in file scope. */
168 bool c_override_global_bindings_to_false;
171 /* Each c_binding structure describes one binding of an identifier to
172 a decl. All the decls in a scope - irrespective of namespace - are
173 chained together by the ->prev field, which (as the name implies)
174 runs in reverse order. All the decls in a given namespace bound to
175 a given identifier are chained by the ->shadowed field, which runs
176 from inner to outer scopes.
178 The ->decl field usually points to a DECL node, but there are two
179 exceptions. In the namespace of type tags, the bound entity is a
180 RECORD_TYPE, UNION_TYPE, or ENUMERAL_TYPE node. If an undeclared
181 identifier is encountered, it is bound to error_mark_node to
182 suppress further errors about that identifier in the current
183 function.
185 The ->type field stores the type of the declaration in this scope;
186 if NULL, the type is the type of the ->decl field. This is only of
187 relevance for objects with external or internal linkage which may
188 be redeclared in inner scopes, forming composite types that only
189 persist for the duration of those scopes. In the external scope,
190 this stores the composite of all the types declared for this
191 object, visible or not. The ->inner_comp field (used only at file
192 scope) stores whether an incomplete array type at file scope was
193 completed at an inner scope to an array size other than 1.
195 The depth field is copied from the scope structure that holds this
196 decl. It is used to preserve the proper ordering of the ->shadowed
197 field (see bind()) and also for a handful of special-case checks.
198 Finally, the invisible bit is true for a decl which should be
199 ignored for purposes of normal name lookup, and the nested bit is
200 true for a decl that's been bound a second time in an inner scope;
201 in all such cases, the binding in the outer scope will have its
202 invisible bit true. */
204 struct c_binding GTY((chain_next ("%h.prev")))
206 tree decl; /* the decl bound */
207 tree type; /* the type in this scope */
208 tree id; /* the identifier it's bound to */
209 struct c_binding *prev; /* the previous decl in this scope */
210 struct c_binding *shadowed; /* the innermost decl shadowed by this one */
211 unsigned int depth : 28; /* depth of this scope */
212 BOOL_BITFIELD invisible : 1; /* normal lookup should ignore this binding */
213 BOOL_BITFIELD nested : 1; /* do not set DECL_CONTEXT when popping */
214 BOOL_BITFIELD inner_comp : 1; /* incomplete array completed in inner scope */
215 /* one free bit */
217 #define B_IN_SCOPE(b1, b2) ((b1)->depth == (b2)->depth)
218 #define B_IN_CURRENT_SCOPE(b) ((b)->depth == current_scope->depth)
219 #define B_IN_FILE_SCOPE(b) ((b)->depth == 1 /*file_scope->depth*/)
220 #define B_IN_EXTERNAL_SCOPE(b) ((b)->depth == 0 /*external_scope->depth*/)
222 #define I_SYMBOL_BINDING(node) \
223 (((struct lang_identifier *) IDENTIFIER_NODE_CHECK(node))->symbol_binding)
224 #define I_SYMBOL_DECL(node) \
225 (I_SYMBOL_BINDING(node) ? I_SYMBOL_BINDING(node)->decl : 0)
227 #define I_TAG_BINDING(node) \
228 (((struct lang_identifier *) IDENTIFIER_NODE_CHECK(node))->tag_binding)
229 #define I_TAG_DECL(node) \
230 (I_TAG_BINDING(node) ? I_TAG_BINDING(node)->decl : 0)
232 #define I_LABEL_BINDING(node) \
233 (((struct lang_identifier *) IDENTIFIER_NODE_CHECK(node))->label_binding)
234 #define I_LABEL_DECL(node) \
235 (I_LABEL_BINDING(node) ? I_LABEL_BINDING(node)->decl : 0)
237 /* Each C symbol points to three linked lists of c_binding structures.
238 These describe the values of the identifier in the three different
239 namespaces defined by the language. */
241 struct lang_identifier GTY(())
243 struct c_common_identifier common_id;
244 struct c_binding *symbol_binding; /* vars, funcs, constants, typedefs */
245 struct c_binding *tag_binding; /* struct/union/enum tags */
246 struct c_binding *label_binding; /* labels */
249 /* Validate c-lang.c's assumptions. */
250 extern char C_SIZEOF_STRUCT_LANG_IDENTIFIER_isnt_accurate
251 [(sizeof(struct lang_identifier) == C_SIZEOF_STRUCT_LANG_IDENTIFIER) ? 1 : -1];
253 /* The resulting tree type. */
255 union lang_tree_node
256 GTY((desc ("TREE_CODE (&%h.generic) == IDENTIFIER_NODE"),
257 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)")))
259 union tree_node GTY ((tag ("0"),
260 desc ("tree_node_structure (&%h)")))
261 generic;
262 struct lang_identifier GTY ((tag ("1"))) identifier;
265 /* Each c_scope structure describes the complete contents of one
266 scope. Four scopes are distinguished specially: the innermost or
267 current scope, the innermost function scope, the file scope (always
268 the second to outermost) and the outermost or external scope.
270 Most declarations are recorded in the current scope.
272 All normal label declarations are recorded in the innermost
273 function scope, as are bindings of undeclared identifiers to
274 error_mark_node. (GCC permits nested functions as an extension,
275 hence the 'innermost' qualifier.) Explicitly declared labels
276 (using the __label__ extension) appear in the current scope.
278 Being in the file scope (current_scope == file_scope) causes
279 special behavior in several places below. Also, under some
280 conditions the Objective-C front end records declarations in the
281 file scope even though that isn't the current scope.
283 All declarations with external linkage are recorded in the external
284 scope, even if they aren't visible there; this models the fact that
285 such declarations are visible to the entire program, and (with a
286 bit of cleverness, see pushdecl) allows diagnosis of some violations
287 of C99 6.2.2p7 and 6.2.7p2:
289 If, within the same translation unit, the same identifier appears
290 with both internal and external linkage, the behavior is
291 undefined.
293 All declarations that refer to the same object or function shall
294 have compatible type; otherwise, the behavior is undefined.
296 Initially only the built-in declarations, which describe compiler
297 intrinsic functions plus a subset of the standard library, are in
298 this scope.
300 The order of the blocks list matters, and it is frequently appended
301 to. To avoid having to walk all the way to the end of the list on
302 each insertion, or reverse the list later, we maintain a pointer to
303 the last list entry. (FIXME: It should be feasible to use a reversed
304 list here.)
306 The bindings list is strictly in reverse order of declarations;
307 pop_scope relies on this. */
310 struct c_scope GTY((chain_next ("%h.outer")))
312 /* The scope containing this one. */
313 struct c_scope *outer;
315 /* The next outermost function scope. */
316 struct c_scope *outer_function;
318 /* All bindings in this scope. */
319 struct c_binding *bindings;
321 /* For each scope (except the global one), a chain of BLOCK nodes
322 for all the scopes that were entered and exited one level down. */
323 tree blocks;
324 tree blocks_last;
326 /* The depth of this scope. Used to keep the ->shadowed chain of
327 bindings sorted innermost to outermost. */
328 unsigned int depth : 28;
330 /* True if we are currently filling this scope with parameter
331 declarations. */
332 BOOL_BITFIELD parm_flag : 1;
334 /* True if we saw [*] in this scope. Used to give an error messages
335 if these appears in a function definition. */
336 BOOL_BITFIELD had_vla_unspec : 1;
338 /* True if we already complained about forward parameter decls
339 in this scope. This prevents double warnings on
340 foo (int a; int b; ...) */
341 BOOL_BITFIELD warned_forward_parm_decls : 1;
343 /* True if this is the outermost block scope of a function body.
344 This scope contains the parameters, the local variables declared
345 in the outermost block, and all the labels (except those in
346 nested functions, or declared at block scope with __label__). */
347 BOOL_BITFIELD function_body : 1;
349 /* True means make a BLOCK for this scope no matter what. */
350 BOOL_BITFIELD keep : 1;
353 /* The scope currently in effect. */
355 static GTY(()) struct c_scope *current_scope;
357 /* The innermost function scope. Ordinary (not explicitly declared)
358 labels, bindings to error_mark_node, and the lazily-created
359 bindings of __func__ and its friends get this scope. */
361 static GTY(()) struct c_scope *current_function_scope;
363 /* The C file scope. This is reset for each input translation unit. */
365 static GTY(()) struct c_scope *file_scope;
367 /* The outermost scope. This is used for all declarations with
368 external linkage, and only these, hence the name. */
370 static GTY(()) struct c_scope *external_scope;
372 /* A chain of c_scope structures awaiting reuse. */
374 static GTY((deletable)) struct c_scope *scope_freelist;
376 /* A chain of c_binding structures awaiting reuse. */
378 static GTY((deletable)) struct c_binding *binding_freelist;
380 /* Append VAR to LIST in scope SCOPE. */
381 #define SCOPE_LIST_APPEND(scope, list, decl) do { \
382 struct c_scope *s_ = (scope); \
383 tree d_ = (decl); \
384 if (s_->list##_last) \
385 TREE_CHAIN (s_->list##_last) = d_; \
386 else \
387 s_->list = d_; \
388 s_->list##_last = d_; \
389 } while (0)
391 /* Concatenate FROM in scope FSCOPE onto TO in scope TSCOPE. */
392 #define SCOPE_LIST_CONCAT(tscope, to, fscope, from) do { \
393 struct c_scope *t_ = (tscope); \
394 struct c_scope *f_ = (fscope); \
395 if (t_->to##_last) \
396 TREE_CHAIN (t_->to##_last) = f_->from; \
397 else \
398 t_->to = f_->from; \
399 t_->to##_last = f_->from##_last; \
400 } while (0)
402 /* True means unconditionally make a BLOCK for the next scope pushed. */
404 static bool keep_next_level_flag;
406 /* True means the next call to push_scope will be the outermost scope
407 of a function body, so do not push a new scope, merely cease
408 expecting parameter decls. */
410 static bool next_is_function_body;
412 /* Functions called automatically at the beginning and end of execution. */
414 static GTY(()) tree static_ctors;
415 static GTY(()) tree static_dtors;
417 /* Forward declarations. */
418 static tree lookup_name_in_scope (tree, struct c_scope *);
419 static tree c_make_fname_decl (tree, int);
420 static tree grokdeclarator (const struct c_declarator *,
421 struct c_declspecs *,
422 enum decl_context, bool, tree *);
423 static tree grokparms (struct c_arg_info *, bool);
424 static void layout_array_type (tree);
426 /* T is a statement. Add it to the statement-tree. This is the
427 C/ObjC version--C++ has a slightly different version of this
428 function. */
430 tree
431 add_stmt (tree t)
433 enum tree_code code = TREE_CODE (t);
435 if (EXPR_P (t) && code != LABEL_EXPR)
437 if (!EXPR_HAS_LOCATION (t))
438 SET_EXPR_LOCATION (t, input_location);
441 if (code == LABEL_EXPR || code == CASE_LABEL_EXPR)
442 STATEMENT_LIST_HAS_LABEL (cur_stmt_list) = 1;
444 /* Add T to the statement-tree. Non-side-effect statements need to be
445 recorded during statement expressions. */
446 append_to_statement_list_force (t, &cur_stmt_list);
448 return t;
451 /* States indicating how grokdeclarator() should handle declspecs marked
452 with __attribute__((deprecated)). An object declared as
453 __attribute__((deprecated)) suppresses warnings of uses of other
454 deprecated items. */
456 enum deprecated_states {
457 DEPRECATED_NORMAL,
458 DEPRECATED_SUPPRESS
461 static enum deprecated_states deprecated_state = DEPRECATED_NORMAL;
463 void
464 c_print_identifier (FILE *file, tree node, int indent)
466 print_node (file, "symbol", I_SYMBOL_DECL (node), indent + 4);
467 print_node (file, "tag", I_TAG_DECL (node), indent + 4);
468 print_node (file, "label", I_LABEL_DECL (node), indent + 4);
469 if (C_IS_RESERVED_WORD (node))
471 tree rid = ridpointers[C_RID_CODE (node)];
472 indent_to (file, indent + 4);
473 fprintf (file, "rid %p \"%s\"",
474 (void *) rid, IDENTIFIER_POINTER (rid));
478 /* Establish a binding between NAME, an IDENTIFIER_NODE, and DECL,
479 which may be any of several kinds of DECL or TYPE or error_mark_node,
480 in the scope SCOPE. */
481 static void
482 bind (tree name, tree decl, struct c_scope *scope, bool invisible, bool nested)
484 struct c_binding *b, **here;
486 if (binding_freelist)
488 b = binding_freelist;
489 binding_freelist = b->prev;
491 else
492 b = GGC_NEW (struct c_binding);
494 b->shadowed = 0;
495 b->decl = decl;
496 b->id = name;
497 b->depth = scope->depth;
498 b->invisible = invisible;
499 b->nested = nested;
500 b->inner_comp = 0;
502 b->type = 0;
504 b->prev = scope->bindings;
505 scope->bindings = b;
507 if (!name)
508 return;
510 switch (TREE_CODE (decl))
512 case LABEL_DECL: here = &I_LABEL_BINDING (name); break;
513 case ENUMERAL_TYPE:
514 case UNION_TYPE:
515 case RECORD_TYPE: here = &I_TAG_BINDING (name); break;
516 case VAR_DECL:
517 case FUNCTION_DECL:
518 case TYPE_DECL:
519 case CONST_DECL:
520 case PARM_DECL:
521 case ERROR_MARK: here = &I_SYMBOL_BINDING (name); break;
523 default:
524 gcc_unreachable ();
527 /* Locate the appropriate place in the chain of shadowed decls
528 to insert this binding. Normally, scope == current_scope and
529 this does nothing. */
530 while (*here && (*here)->depth > scope->depth)
531 here = &(*here)->shadowed;
533 b->shadowed = *here;
534 *here = b;
537 /* Clear the binding structure B, stick it on the binding_freelist,
538 and return the former value of b->prev. This is used by pop_scope
539 and get_parm_info to iterate destructively over all the bindings
540 from a given scope. */
541 static struct c_binding *
542 free_binding_and_advance (struct c_binding *b)
544 struct c_binding *prev = b->prev;
546 memset (b, 0, sizeof (struct c_binding));
547 b->prev = binding_freelist;
548 binding_freelist = b;
550 return prev;
554 /* Hook called at end of compilation to assume 1 elt
555 for a file-scope tentative array defn that wasn't complete before. */
557 void
558 c_finish_incomplete_decl (tree decl)
560 if (TREE_CODE (decl) == VAR_DECL)
562 tree type = TREE_TYPE (decl);
563 if (type != error_mark_node
564 && TREE_CODE (type) == ARRAY_TYPE
565 && !DECL_EXTERNAL (decl)
566 && TYPE_DOMAIN (type) == 0)
568 warning (0, "array %q+D assumed to have one element", decl);
570 complete_array_type (&TREE_TYPE (decl), NULL_TREE, true);
572 layout_decl (decl, 0);
577 /* The Objective-C front-end often needs to determine the current scope. */
579 void *
580 objc_get_current_scope (void)
582 return current_scope;
585 /* The following function is used only by Objective-C. It needs to live here
586 because it accesses the innards of c_scope. */
588 void
589 objc_mark_locals_volatile (void *enclosing_blk)
591 struct c_scope *scope;
592 struct c_binding *b;
594 for (scope = current_scope;
595 scope && scope != enclosing_blk;
596 scope = scope->outer)
598 for (b = scope->bindings; b; b = b->prev)
599 objc_volatilize_decl (b->decl);
601 /* Do not climb up past the current function. */
602 if (scope->function_body)
603 break;
607 /* Nonzero if we are currently in file scope. */
610 global_bindings_p (void)
612 return current_scope == file_scope && !c_override_global_bindings_to_false;
615 void
616 keep_next_level (void)
618 keep_next_level_flag = true;
621 /* Identify this scope as currently being filled with parameters. */
623 void
624 declare_parm_level (void)
626 current_scope->parm_flag = true;
629 void
630 push_scope (void)
632 if (next_is_function_body)
634 /* This is the transition from the parameters to the top level
635 of the function body. These are the same scope
636 (C99 6.2.1p4,6) so we do not push another scope structure.
637 next_is_function_body is set only by store_parm_decls, which
638 in turn is called when and only when we are about to
639 encounter the opening curly brace for the function body.
641 The outermost block of a function always gets a BLOCK node,
642 because the debugging output routines expect that each
643 function has at least one BLOCK. */
644 current_scope->parm_flag = false;
645 current_scope->function_body = true;
646 current_scope->keep = true;
647 current_scope->outer_function = current_function_scope;
648 current_function_scope = current_scope;
650 keep_next_level_flag = false;
651 next_is_function_body = false;
653 else
655 struct c_scope *scope;
656 if (scope_freelist)
658 scope = scope_freelist;
659 scope_freelist = scope->outer;
661 else
662 scope = GGC_CNEW (struct c_scope);
664 scope->keep = keep_next_level_flag;
665 scope->outer = current_scope;
666 scope->depth = current_scope ? (current_scope->depth + 1) : 0;
668 /* Check for scope depth overflow. Unlikely (2^28 == 268,435,456) but
669 possible. */
670 if (current_scope && scope->depth == 0)
672 scope->depth--;
673 sorry ("GCC supports only %u nested scopes", scope->depth);
676 current_scope = scope;
677 keep_next_level_flag = false;
681 /* Set the TYPE_CONTEXT of all of TYPE's variants to CONTEXT. */
683 static void
684 set_type_context (tree type, tree context)
686 for (type = TYPE_MAIN_VARIANT (type); type;
687 type = TYPE_NEXT_VARIANT (type))
688 TYPE_CONTEXT (type) = context;
691 /* Exit a scope. Restore the state of the identifier-decl mappings
692 that were in effect when this scope was entered. Return a BLOCK
693 node containing all the DECLs in this scope that are of interest
694 to debug info generation. */
696 tree
697 pop_scope (void)
699 struct c_scope *scope = current_scope;
700 tree block, context, p;
701 struct c_binding *b;
703 bool functionbody = scope->function_body;
704 bool keep = functionbody || scope->keep || scope->bindings;
706 c_end_vm_scope (scope->depth);
708 /* If appropriate, create a BLOCK to record the decls for the life
709 of this function. */
710 block = 0;
711 if (keep)
713 block = make_node (BLOCK);
714 BLOCK_SUBBLOCKS (block) = scope->blocks;
715 TREE_USED (block) = 1;
717 /* In each subblock, record that this is its superior. */
718 for (p = scope->blocks; p; p = TREE_CHAIN (p))
719 BLOCK_SUPERCONTEXT (p) = block;
721 BLOCK_VARS (block) = 0;
724 /* The TYPE_CONTEXTs for all of the tagged types belonging to this
725 scope must be set so that they point to the appropriate
726 construct, i.e. either to the current FUNCTION_DECL node, or
727 else to the BLOCK node we just constructed.
729 Note that for tagged types whose scope is just the formal
730 parameter list for some function type specification, we can't
731 properly set their TYPE_CONTEXTs here, because we don't have a
732 pointer to the appropriate FUNCTION_TYPE node readily available
733 to us. For those cases, the TYPE_CONTEXTs of the relevant tagged
734 type nodes get set in `grokdeclarator' as soon as we have created
735 the FUNCTION_TYPE node which will represent the "scope" for these
736 "parameter list local" tagged types. */
737 if (scope->function_body)
738 context = current_function_decl;
739 else if (scope == file_scope)
741 tree file_decl = build_decl (TRANSLATION_UNIT_DECL, 0, 0);
742 TREE_CHAIN (file_decl) = all_translation_units;
743 all_translation_units = file_decl;
744 context = file_decl;
746 else
747 context = block;
749 /* Clear all bindings in this scope. */
750 for (b = scope->bindings; b; b = free_binding_and_advance (b))
752 p = b->decl;
753 switch (TREE_CODE (p))
755 case LABEL_DECL:
756 /* Warnings for unused labels, errors for undefined labels. */
757 if (TREE_USED (p) && !DECL_INITIAL (p))
759 error ("label %q+D used but not defined", p);
760 DECL_INITIAL (p) = error_mark_node;
762 else if (!TREE_USED (p) && warn_unused_label)
764 if (DECL_INITIAL (p))
765 warning (0, "label %q+D defined but not used", p);
766 else
767 warning (0, "label %q+D declared but not defined", p);
769 /* Labels go in BLOCK_VARS. */
770 TREE_CHAIN (p) = BLOCK_VARS (block);
771 BLOCK_VARS (block) = p;
772 gcc_assert (I_LABEL_BINDING (b->id) == b);
773 I_LABEL_BINDING (b->id) = b->shadowed;
774 break;
776 case ENUMERAL_TYPE:
777 case UNION_TYPE:
778 case RECORD_TYPE:
779 set_type_context (p, context);
781 /* Types may not have tag-names, in which case the type
782 appears in the bindings list with b->id NULL. */
783 if (b->id)
785 gcc_assert (I_TAG_BINDING (b->id) == b);
786 I_TAG_BINDING (b->id) = b->shadowed;
788 break;
790 case FUNCTION_DECL:
791 /* Propagate TREE_ADDRESSABLE from nested functions to their
792 containing functions. */
793 if (!TREE_ASM_WRITTEN (p)
794 && DECL_INITIAL (p) != 0
795 && TREE_ADDRESSABLE (p)
796 && DECL_ABSTRACT_ORIGIN (p) != 0
797 && DECL_ABSTRACT_ORIGIN (p) != p)
798 TREE_ADDRESSABLE (DECL_ABSTRACT_ORIGIN (p)) = 1;
799 if (!DECL_EXTERNAL (p)
800 && DECL_INITIAL (p) == 0)
802 error ("nested function %q+D declared but never defined", p);
803 undef_nested_function = true;
805 goto common_symbol;
807 case VAR_DECL:
808 /* Warnings for unused variables. */
809 if (!TREE_USED (p)
810 && !TREE_NO_WARNING (p)
811 && !DECL_IN_SYSTEM_HEADER (p)
812 && DECL_NAME (p)
813 && !DECL_ARTIFICIAL (p)
814 && scope != file_scope
815 && scope != external_scope)
816 warning (OPT_Wunused_variable, "unused variable %q+D", p);
818 if (b->inner_comp)
820 error ("type of array %q+D completed incompatibly with"
821 " implicit initialization", p);
824 /* Fall through. */
825 case TYPE_DECL:
826 case CONST_DECL:
827 common_symbol:
828 /* All of these go in BLOCK_VARS, but only if this is the
829 binding in the home scope. */
830 if (!b->nested)
832 TREE_CHAIN (p) = BLOCK_VARS (block);
833 BLOCK_VARS (block) = p;
835 /* If this is the file scope, and we are processing more
836 than one translation unit in this compilation, set
837 DECL_CONTEXT of each decl to the TRANSLATION_UNIT_DECL.
838 This makes same_translation_unit_p work, and causes
839 static declarations to be given disambiguating suffixes. */
840 if (scope == file_scope && num_in_fnames > 1)
842 DECL_CONTEXT (p) = context;
843 if (TREE_CODE (p) == TYPE_DECL)
844 set_type_context (TREE_TYPE (p), context);
847 /* Fall through. */
848 /* Parameters go in DECL_ARGUMENTS, not BLOCK_VARS, and have
849 already been put there by store_parm_decls. Unused-
850 parameter warnings are handled by function.c.
851 error_mark_node obviously does not go in BLOCK_VARS and
852 does not get unused-variable warnings. */
853 case PARM_DECL:
854 case ERROR_MARK:
855 /* It is possible for a decl not to have a name. We get
856 here with b->id NULL in this case. */
857 if (b->id)
859 gcc_assert (I_SYMBOL_BINDING (b->id) == b);
860 I_SYMBOL_BINDING (b->id) = b->shadowed;
861 if (b->shadowed && b->shadowed->type)
862 TREE_TYPE (b->shadowed->decl) = b->shadowed->type;
864 break;
866 default:
867 gcc_unreachable ();
872 /* Dispose of the block that we just made inside some higher level. */
873 if ((scope->function_body || scope == file_scope) && context)
875 DECL_INITIAL (context) = block;
876 BLOCK_SUPERCONTEXT (block) = context;
878 else if (scope->outer)
880 if (block)
881 SCOPE_LIST_APPEND (scope->outer, blocks, block);
882 /* If we did not make a block for the scope just exited, any
883 blocks made for inner scopes must be carried forward so they
884 will later become subblocks of something else. */
885 else if (scope->blocks)
886 SCOPE_LIST_CONCAT (scope->outer, blocks, scope, blocks);
889 /* Pop the current scope, and free the structure for reuse. */
890 current_scope = scope->outer;
891 if (scope->function_body)
892 current_function_scope = scope->outer_function;
894 memset (scope, 0, sizeof (struct c_scope));
895 scope->outer = scope_freelist;
896 scope_freelist = scope;
898 return block;
901 void
902 push_file_scope (void)
904 tree decl;
906 if (file_scope)
907 return;
909 push_scope ();
910 file_scope = current_scope;
912 start_fname_decls ();
914 for (decl = visible_builtins; decl; decl = TREE_CHAIN (decl))
915 bind (DECL_NAME (decl), decl, file_scope,
916 /*invisible=*/false, /*nested=*/true);
919 void
920 pop_file_scope (void)
922 /* In case there were missing closebraces, get us back to the global
923 binding level. */
924 while (current_scope != file_scope)
925 pop_scope ();
927 /* __FUNCTION__ is defined at file scope (""). This
928 call may not be necessary as my tests indicate it
929 still works without it. */
930 finish_fname_decls ();
932 /* This is the point to write out a PCH if we're doing that.
933 In that case we do not want to do anything else. */
934 if (pch_file)
936 c_common_write_pch ();
937 return;
940 /* Pop off the file scope and close this translation unit. */
941 pop_scope ();
942 file_scope = 0;
944 maybe_apply_pending_pragma_weaks ();
945 cgraph_finalize_compilation_unit ();
948 /* Insert BLOCK at the end of the list of subblocks of the current
949 scope. This is used when a BIND_EXPR is expanded, to handle the
950 BLOCK node inside the BIND_EXPR. */
952 void
953 insert_block (tree block)
955 TREE_USED (block) = 1;
956 SCOPE_LIST_APPEND (current_scope, blocks, block);
959 /* Push a definition or a declaration of struct, union or enum tag "name".
960 "type" should be the type node.
961 We assume that the tag "name" is not already defined.
963 Note that the definition may really be just a forward reference.
964 In that case, the TYPE_SIZE will be zero. */
966 static void
967 pushtag (tree name, tree type)
969 /* Record the identifier as the type's name if it has none. */
970 if (name && !TYPE_NAME (type))
971 TYPE_NAME (type) = name;
972 bind (name, type, current_scope, /*invisible=*/false, /*nested=*/false);
974 /* Create a fake NULL-named TYPE_DECL node whose TREE_TYPE will be the
975 tagged type we just added to the current scope. This fake
976 NULL-named TYPE_DECL node helps dwarfout.c to know when it needs
977 to output a representation of a tagged type, and it also gives
978 us a convenient place to record the "scope start" address for the
979 tagged type. */
981 TYPE_STUB_DECL (type) = pushdecl (build_decl (TYPE_DECL, NULL_TREE, type));
983 /* An approximation for now, so we can tell this is a function-scope tag.
984 This will be updated in pop_scope. */
985 TYPE_CONTEXT (type) = DECL_CONTEXT (TYPE_STUB_DECL (type));
988 /* Subroutine of compare_decls. Allow harmless mismatches in return
989 and argument types provided that the type modes match. This function
990 return a unified type given a suitable match, and 0 otherwise. */
992 static tree
993 match_builtin_function_types (tree newtype, tree oldtype)
995 tree newrettype, oldrettype;
996 tree newargs, oldargs;
997 tree trytype, tryargs;
999 /* Accept the return type of the new declaration if same modes. */
1000 oldrettype = TREE_TYPE (oldtype);
1001 newrettype = TREE_TYPE (newtype);
1003 if (TYPE_MODE (oldrettype) != TYPE_MODE (newrettype))
1004 return 0;
1006 oldargs = TYPE_ARG_TYPES (oldtype);
1007 newargs = TYPE_ARG_TYPES (newtype);
1008 tryargs = newargs;
1010 while (oldargs || newargs)
1012 if (!oldargs
1013 || !newargs
1014 || !TREE_VALUE (oldargs)
1015 || !TREE_VALUE (newargs)
1016 || TYPE_MODE (TREE_VALUE (oldargs))
1017 != TYPE_MODE (TREE_VALUE (newargs)))
1018 return 0;
1020 oldargs = TREE_CHAIN (oldargs);
1021 newargs = TREE_CHAIN (newargs);
1024 trytype = build_function_type (newrettype, tryargs);
1025 return build_type_attribute_variant (trytype, TYPE_ATTRIBUTES (oldtype));
1028 /* Subroutine of diagnose_mismatched_decls. Check for function type
1029 mismatch involving an empty arglist vs a nonempty one and give clearer
1030 diagnostics. */
1031 static void
1032 diagnose_arglist_conflict (tree newdecl, tree olddecl,
1033 tree newtype, tree oldtype)
1035 tree t;
1037 if (TREE_CODE (olddecl) != FUNCTION_DECL
1038 || !comptypes (TREE_TYPE (oldtype), TREE_TYPE (newtype))
1039 || !((TYPE_ARG_TYPES (oldtype) == 0 && DECL_INITIAL (olddecl) == 0)
1041 (TYPE_ARG_TYPES (newtype) == 0 && DECL_INITIAL (newdecl) == 0)))
1042 return;
1044 t = TYPE_ARG_TYPES (oldtype);
1045 if (t == 0)
1046 t = TYPE_ARG_TYPES (newtype);
1047 for (; t; t = TREE_CHAIN (t))
1049 tree type = TREE_VALUE (t);
1051 if (TREE_CHAIN (t) == 0
1052 && TYPE_MAIN_VARIANT (type) != void_type_node)
1054 inform ("a parameter list with an ellipsis can%'t match "
1055 "an empty parameter name list declaration");
1056 break;
1059 if (c_type_promotes_to (type) != type)
1061 inform ("an argument type that has a default promotion can%'t match "
1062 "an empty parameter name list declaration");
1063 break;
1068 /* Another subroutine of diagnose_mismatched_decls. OLDDECL is an
1069 old-style function definition, NEWDECL is a prototype declaration.
1070 Diagnose inconsistencies in the argument list. Returns TRUE if
1071 the prototype is compatible, FALSE if not. */
1072 static bool
1073 validate_proto_after_old_defn (tree newdecl, tree newtype, tree oldtype)
1075 tree newargs, oldargs;
1076 int i;
1078 #define END_OF_ARGLIST(t) ((t) == void_type_node)
1080 oldargs = TYPE_ACTUAL_ARG_TYPES (oldtype);
1081 newargs = TYPE_ARG_TYPES (newtype);
1082 i = 1;
1084 for (;;)
1086 tree oldargtype = TREE_VALUE (oldargs);
1087 tree newargtype = TREE_VALUE (newargs);
1089 if (oldargtype == error_mark_node || newargtype == error_mark_node)
1090 return false;
1092 oldargtype = TYPE_MAIN_VARIANT (oldargtype);
1093 newargtype = TYPE_MAIN_VARIANT (newargtype);
1095 if (END_OF_ARGLIST (oldargtype) && END_OF_ARGLIST (newargtype))
1096 break;
1098 /* Reaching the end of just one list means the two decls don't
1099 agree on the number of arguments. */
1100 if (END_OF_ARGLIST (oldargtype))
1102 error ("prototype for %q+D declares more arguments "
1103 "than previous old-style definition", newdecl);
1104 return false;
1106 else if (END_OF_ARGLIST (newargtype))
1108 error ("prototype for %q+D declares fewer arguments "
1109 "than previous old-style definition", newdecl);
1110 return false;
1113 /* Type for passing arg must be consistent with that declared
1114 for the arg. */
1115 else if (!comptypes (oldargtype, newargtype))
1117 error ("prototype for %q+D declares argument %d"
1118 " with incompatible type",
1119 newdecl, i);
1120 return false;
1123 oldargs = TREE_CHAIN (oldargs);
1124 newargs = TREE_CHAIN (newargs);
1125 i++;
1128 /* If we get here, no errors were found, but do issue a warning
1129 for this poor-style construct. */
1130 warning (0, "prototype for %q+D follows non-prototype definition",
1131 newdecl);
1132 return true;
1133 #undef END_OF_ARGLIST
1136 /* Subroutine of diagnose_mismatched_decls. Report the location of DECL,
1137 first in a pair of mismatched declarations, using the diagnostic
1138 function DIAG. */
1139 static void
1140 locate_old_decl (tree decl, void (*diag)(const char *, ...) ATTRIBUTE_GCC_CDIAG(1,2))
1142 if (TREE_CODE (decl) == FUNCTION_DECL && DECL_BUILT_IN (decl))
1144 else if (DECL_INITIAL (decl))
1145 diag (G_("previous definition of %q+D was here"), decl);
1146 else if (C_DECL_IMPLICIT (decl))
1147 diag (G_("previous implicit declaration of %q+D was here"), decl);
1148 else
1149 diag (G_("previous declaration of %q+D was here"), decl);
1152 /* Subroutine of duplicate_decls. Compare NEWDECL to OLDDECL.
1153 Returns true if the caller should proceed to merge the two, false
1154 if OLDDECL should simply be discarded. As a side effect, issues
1155 all necessary diagnostics for invalid or poor-style combinations.
1156 If it returns true, writes the types of NEWDECL and OLDDECL to
1157 *NEWTYPEP and *OLDTYPEP - these may have been adjusted from
1158 TREE_TYPE (NEWDECL, OLDDECL) respectively. */
1160 static bool
1161 diagnose_mismatched_decls (tree newdecl, tree olddecl,
1162 tree *newtypep, tree *oldtypep)
1164 tree newtype, oldtype;
1165 bool pedwarned = false;
1166 bool warned = false;
1167 bool retval = true;
1169 #define DECL_EXTERN_INLINE(DECL) (DECL_DECLARED_INLINE_P (DECL) \
1170 && DECL_EXTERNAL (DECL))
1172 /* If we have error_mark_node for either decl or type, just discard
1173 the previous decl - we're in an error cascade already. */
1174 if (olddecl == error_mark_node || newdecl == error_mark_node)
1175 return false;
1176 *oldtypep = oldtype = TREE_TYPE (olddecl);
1177 *newtypep = newtype = TREE_TYPE (newdecl);
1178 if (oldtype == error_mark_node || newtype == error_mark_node)
1179 return false;
1181 /* Two different categories of symbol altogether. This is an error
1182 unless OLDDECL is a builtin. OLDDECL will be discarded in any case. */
1183 if (TREE_CODE (olddecl) != TREE_CODE (newdecl))
1185 if (!(TREE_CODE (olddecl) == FUNCTION_DECL
1186 && DECL_BUILT_IN (olddecl)
1187 && !C_DECL_DECLARED_BUILTIN (olddecl)))
1189 error ("%q+D redeclared as different kind of symbol", newdecl);
1190 locate_old_decl (olddecl, error);
1192 else if (TREE_PUBLIC (newdecl))
1193 warning (0, "built-in function %q+D declared as non-function",
1194 newdecl);
1195 else
1196 warning (OPT_Wshadow, "declaration of %q+D shadows "
1197 "a built-in function", newdecl);
1198 return false;
1201 /* Enumerators have no linkage, so may only be declared once in a
1202 given scope. */
1203 if (TREE_CODE (olddecl) == CONST_DECL)
1205 error ("redeclaration of enumerator %q+D", newdecl);
1206 locate_old_decl (olddecl, error);
1207 return false;
1210 if (!comptypes (oldtype, newtype))
1212 if (TREE_CODE (olddecl) == FUNCTION_DECL
1213 && DECL_BUILT_IN (olddecl) && !C_DECL_DECLARED_BUILTIN (olddecl))
1215 /* Accept harmless mismatch in function types.
1216 This is for the ffs and fprintf builtins. */
1217 tree trytype = match_builtin_function_types (newtype, oldtype);
1219 if (trytype && comptypes (newtype, trytype))
1220 *oldtypep = oldtype = trytype;
1221 else
1223 /* If types don't match for a built-in, throw away the
1224 built-in. No point in calling locate_old_decl here, it
1225 won't print anything. */
1226 warning (0, "conflicting types for built-in function %q+D",
1227 newdecl);
1228 return false;
1231 else if (TREE_CODE (olddecl) == FUNCTION_DECL
1232 && DECL_IS_BUILTIN (olddecl))
1234 /* A conflicting function declaration for a predeclared
1235 function that isn't actually built in. Objective C uses
1236 these. The new declaration silently overrides everything
1237 but the volatility (i.e. noreturn) indication. See also
1238 below. FIXME: Make Objective C use normal builtins. */
1239 TREE_THIS_VOLATILE (newdecl) |= TREE_THIS_VOLATILE (olddecl);
1240 return false;
1242 /* Permit void foo (...) to match int foo (...) if the latter is
1243 the definition and implicit int was used. See
1244 c-torture/compile/920625-2.c. */
1245 else if (TREE_CODE (newdecl) == FUNCTION_DECL && DECL_INITIAL (newdecl)
1246 && TYPE_MAIN_VARIANT (TREE_TYPE (oldtype)) == void_type_node
1247 && TYPE_MAIN_VARIANT (TREE_TYPE (newtype)) == integer_type_node
1248 && C_FUNCTION_IMPLICIT_INT (newdecl) && !DECL_INITIAL (olddecl))
1250 pedwarn ("conflicting types for %q+D", newdecl);
1251 /* Make sure we keep void as the return type. */
1252 TREE_TYPE (newdecl) = *newtypep = newtype = oldtype;
1253 C_FUNCTION_IMPLICIT_INT (newdecl) = 0;
1254 pedwarned = true;
1256 /* Permit void foo (...) to match an earlier call to foo (...) with
1257 no declared type (thus, implicitly int). */
1258 else if (TREE_CODE (newdecl) == FUNCTION_DECL
1259 && TYPE_MAIN_VARIANT (TREE_TYPE (newtype)) == void_type_node
1260 && TYPE_MAIN_VARIANT (TREE_TYPE (oldtype)) == integer_type_node
1261 && C_DECL_IMPLICIT (olddecl) && !DECL_INITIAL (olddecl))
1263 pedwarn ("conflicting types for %q+D", newdecl);
1264 /* Make sure we keep void as the return type. */
1265 TREE_TYPE (olddecl) = *oldtypep = oldtype = newtype;
1266 pedwarned = true;
1268 else
1270 if (TYPE_QUALS (newtype) != TYPE_QUALS (oldtype))
1271 error ("conflicting type qualifiers for %q+D", newdecl);
1272 else
1273 error ("conflicting types for %q+D", newdecl);
1274 diagnose_arglist_conflict (newdecl, olddecl, newtype, oldtype);
1275 locate_old_decl (olddecl, error);
1276 return false;
1280 /* Redeclaration of a type is a constraint violation (6.7.2.3p1),
1281 but silently ignore the redeclaration if either is in a system
1282 header. (Conflicting redeclarations were handled above.) */
1283 if (TREE_CODE (newdecl) == TYPE_DECL)
1285 if (DECL_IN_SYSTEM_HEADER (newdecl) || DECL_IN_SYSTEM_HEADER (olddecl))
1286 return true; /* Allow OLDDECL to continue in use. */
1288 error ("redefinition of typedef %q+D", newdecl);
1289 locate_old_decl (olddecl, error);
1290 return false;
1293 /* Function declarations can either be 'static' or 'extern' (no
1294 qualifier is equivalent to 'extern' - C99 6.2.2p5) and therefore
1295 can never conflict with each other on account of linkage (6.2.2p4).
1296 Multiple definitions are not allowed (6.9p3,5) but GCC permits
1297 two definitions if one is 'extern inline' and one is not. The non-
1298 extern-inline definition supersedes the extern-inline definition. */
1300 else if (TREE_CODE (newdecl) == FUNCTION_DECL)
1302 /* If you declare a built-in function name as static, or
1303 define the built-in with an old-style definition (so we
1304 can't validate the argument list) the built-in definition is
1305 overridden, but optionally warn this was a bad choice of name. */
1306 if (DECL_BUILT_IN (olddecl)
1307 && !C_DECL_DECLARED_BUILTIN (olddecl)
1308 && (!TREE_PUBLIC (newdecl)
1309 || (DECL_INITIAL (newdecl)
1310 && !TYPE_ARG_TYPES (TREE_TYPE (newdecl)))))
1312 warning (OPT_Wshadow, "declaration of %q+D shadows "
1313 "a built-in function", newdecl);
1314 /* Discard the old built-in function. */
1315 return false;
1318 if (DECL_INITIAL (newdecl))
1320 if (DECL_INITIAL (olddecl))
1322 /* If both decls are in the same TU and the new declaration
1323 isn't overriding an extern inline reject the new decl.
1324 When we handle c99 style inline rules we'll want to reject
1325 the following:
1327 DECL_EXTERN_INLINE (olddecl)
1328 && !DECL_EXTERN_INLINE (newdecl)
1330 if they're in the same translation unit. Until we implement
1331 the full semantics we accept the construct. */
1332 if (!(DECL_EXTERN_INLINE (olddecl)
1333 && !DECL_EXTERN_INLINE (newdecl))
1334 && same_translation_unit_p (newdecl, olddecl))
1336 error ("redefinition of %q+D", newdecl);
1337 locate_old_decl (olddecl, error);
1338 return false;
1342 /* If we have a prototype after an old-style function definition,
1343 the argument types must be checked specially. */
1344 else if (DECL_INITIAL (olddecl)
1345 && !TYPE_ARG_TYPES (oldtype) && TYPE_ARG_TYPES (newtype)
1346 && TYPE_ACTUAL_ARG_TYPES (oldtype)
1347 && !validate_proto_after_old_defn (newdecl, newtype, oldtype))
1349 locate_old_decl (olddecl, error);
1350 return false;
1352 /* A non-static declaration (even an "extern") followed by a
1353 static declaration is undefined behavior per C99 6.2.2p3-5,7.
1354 The same is true for a static forward declaration at block
1355 scope followed by a non-static declaration/definition at file
1356 scope. Static followed by non-static at the same scope is
1357 not undefined behavior, and is the most convenient way to get
1358 some effects (see e.g. what unwind-dw2-fde-glibc.c does to
1359 the definition of _Unwind_Find_FDE in unwind-dw2-fde.c), but
1360 we do diagnose it if -Wtraditional. */
1361 if (TREE_PUBLIC (olddecl) && !TREE_PUBLIC (newdecl))
1363 /* Two exceptions to the rule. If olddecl is an extern
1364 inline, or a predeclared function that isn't actually
1365 built in, newdecl silently overrides olddecl. The latter
1366 occur only in Objective C; see also above. (FIXME: Make
1367 Objective C use normal builtins.) */
1368 if (!DECL_IS_BUILTIN (olddecl)
1369 && !DECL_EXTERN_INLINE (olddecl))
1371 error ("static declaration of %q+D follows "
1372 "non-static declaration", newdecl);
1373 locate_old_decl (olddecl, error);
1375 return false;
1377 else if (TREE_PUBLIC (newdecl) && !TREE_PUBLIC (olddecl))
1379 if (DECL_CONTEXT (olddecl))
1381 error ("non-static declaration of %q+D follows "
1382 "static declaration", newdecl);
1383 locate_old_decl (olddecl, error);
1384 return false;
1386 else if (warn_traditional)
1388 warning (OPT_Wtraditional, "non-static declaration of %q+D "
1389 "follows static declaration", newdecl);
1390 warned = true;
1394 else if (TREE_CODE (newdecl) == VAR_DECL)
1396 /* Only variables can be thread-local, and all declarations must
1397 agree on this property. */
1398 if (C_DECL_THREADPRIVATE_P (olddecl) && !DECL_THREAD_LOCAL_P (newdecl))
1400 /* Nothing to check. Since OLDDECL is marked threadprivate
1401 and NEWDECL does not have a thread-local attribute, we
1402 will merge the threadprivate attribute into NEWDECL. */
1405 else if (DECL_THREAD_LOCAL_P (newdecl) != DECL_THREAD_LOCAL_P (olddecl))
1407 if (DECL_THREAD_LOCAL_P (newdecl))
1408 error ("thread-local declaration of %q+D follows "
1409 "non-thread-local declaration", newdecl);
1410 else
1411 error ("non-thread-local declaration of %q+D follows "
1412 "thread-local declaration", newdecl);
1414 locate_old_decl (olddecl, error);
1415 return false;
1418 /* Multiple initialized definitions are not allowed (6.9p3,5). */
1419 if (DECL_INITIAL (newdecl) && DECL_INITIAL (olddecl))
1421 error ("redefinition of %q+D", newdecl);
1422 locate_old_decl (olddecl, error);
1423 return false;
1426 /* Objects declared at file scope: if the first declaration had
1427 external linkage (even if it was an external reference) the
1428 second must have external linkage as well, or the behavior is
1429 undefined. If the first declaration had internal linkage, then
1430 the second must too, or else be an external reference (in which
1431 case the composite declaration still has internal linkage).
1432 As for function declarations, we warn about the static-then-
1433 extern case only for -Wtraditional. See generally 6.2.2p3-5,7. */
1434 if (DECL_FILE_SCOPE_P (newdecl)
1435 && TREE_PUBLIC (newdecl) != TREE_PUBLIC (olddecl))
1437 if (DECL_EXTERNAL (newdecl))
1439 if (!DECL_FILE_SCOPE_P (olddecl))
1441 error ("extern declaration of %q+D follows "
1442 "declaration with no linkage", newdecl);
1443 locate_old_decl (olddecl, error);
1444 return false;
1446 else if (warn_traditional)
1448 warning (OPT_Wtraditional, "non-static declaration of %q+D "
1449 "follows static declaration", newdecl);
1450 warned = true;
1453 else
1455 if (TREE_PUBLIC (newdecl))
1456 error ("non-static declaration of %q+D follows "
1457 "static declaration", newdecl);
1458 else
1459 error ("static declaration of %q+D follows "
1460 "non-static declaration", newdecl);
1462 locate_old_decl (olddecl, error);
1463 return false;
1466 /* Two objects with the same name declared at the same block
1467 scope must both be external references (6.7p3). */
1468 else if (!DECL_FILE_SCOPE_P (newdecl))
1470 if (DECL_EXTERNAL (newdecl))
1472 /* Extern with initializer at block scope, which will
1473 already have received an error. */
1475 else if (DECL_EXTERNAL (olddecl))
1477 error ("declaration of %q+D with no linkage follows "
1478 "extern declaration", newdecl);
1479 locate_old_decl (olddecl, error);
1481 else
1483 error ("redeclaration of %q+D with no linkage", newdecl);
1484 locate_old_decl (olddecl, error);
1487 return false;
1491 /* warnings */
1492 /* All decls must agree on a visibility. */
1493 if (CODE_CONTAINS_STRUCT (TREE_CODE (newdecl), TS_DECL_WITH_VIS)
1494 && DECL_VISIBILITY_SPECIFIED (newdecl) && DECL_VISIBILITY_SPECIFIED (olddecl)
1495 && DECL_VISIBILITY (newdecl) != DECL_VISIBILITY (olddecl))
1497 warning (0, "redeclaration of %q+D with different visibility "
1498 "(old visibility preserved)", newdecl);
1499 warned = true;
1502 if (TREE_CODE (newdecl) == FUNCTION_DECL)
1504 /* Diagnose inline __attribute__ ((noinline)) which is silly. */
1505 if (DECL_DECLARED_INLINE_P (newdecl)
1506 && lookup_attribute ("noinline", DECL_ATTRIBUTES (olddecl)))
1508 warning (OPT_Wattributes, "inline declaration of %qD follows "
1509 "declaration with attribute noinline", newdecl);
1510 warned = true;
1512 else if (DECL_DECLARED_INLINE_P (olddecl)
1513 && lookup_attribute ("noinline", DECL_ATTRIBUTES (newdecl)))
1515 warning (OPT_Wattributes, "declaration of %q+D with attribute "
1516 "noinline follows inline declaration ", newdecl);
1517 warned = true;
1520 /* Inline declaration after use or definition.
1521 ??? Should we still warn about this now we have unit-at-a-time
1522 mode and can get it right?
1523 Definitely don't complain if the decls are in different translation
1524 units. */
1525 if (DECL_DECLARED_INLINE_P (newdecl) && !DECL_DECLARED_INLINE_P (olddecl)
1526 && same_translation_unit_p (olddecl, newdecl))
1528 if (TREE_USED (olddecl))
1530 warning (0, "%q+D declared inline after being called", olddecl);
1531 warned = true;
1533 else if (DECL_INITIAL (olddecl))
1535 warning (0, "%q+D declared inline after its definition", olddecl);
1536 warned = true;
1540 else /* PARM_DECL, VAR_DECL */
1542 /* Redeclaration of a parameter is a constraint violation (this is
1543 not explicitly stated, but follows from C99 6.7p3 [no more than
1544 one declaration of the same identifier with no linkage in the
1545 same scope, except type tags] and 6.2.2p6 [parameters have no
1546 linkage]). We must check for a forward parameter declaration,
1547 indicated by TREE_ASM_WRITTEN on the old declaration - this is
1548 an extension, the mandatory diagnostic for which is handled by
1549 mark_forward_parm_decls. */
1551 if (TREE_CODE (newdecl) == PARM_DECL
1552 && (!TREE_ASM_WRITTEN (olddecl) || TREE_ASM_WRITTEN (newdecl)))
1554 error ("redefinition of parameter %q+D", newdecl);
1555 locate_old_decl (olddecl, error);
1556 return false;
1560 /* Optional warning for completely redundant decls. */
1561 if (!warned && !pedwarned
1562 && warn_redundant_decls
1563 /* Don't warn about a function declaration followed by a
1564 definition. */
1565 && !(TREE_CODE (newdecl) == FUNCTION_DECL
1566 && DECL_INITIAL (newdecl) && !DECL_INITIAL (olddecl))
1567 /* Don't warn about redundant redeclarations of builtins. */
1568 && !(TREE_CODE (newdecl) == FUNCTION_DECL
1569 && !DECL_BUILT_IN (newdecl)
1570 && DECL_BUILT_IN (olddecl)
1571 && !C_DECL_DECLARED_BUILTIN (olddecl))
1572 /* Don't warn about an extern followed by a definition. */
1573 && !(DECL_EXTERNAL (olddecl) && !DECL_EXTERNAL (newdecl))
1574 /* Don't warn about forward parameter decls. */
1575 && !(TREE_CODE (newdecl) == PARM_DECL
1576 && TREE_ASM_WRITTEN (olddecl) && !TREE_ASM_WRITTEN (newdecl))
1577 /* Don't warn about a variable definition following a declaration. */
1578 && !(TREE_CODE (newdecl) == VAR_DECL
1579 && DECL_INITIAL (newdecl) && !DECL_INITIAL (olddecl)))
1581 warning (OPT_Wredundant_decls, "redundant redeclaration of %q+D",
1582 newdecl);
1583 warned = true;
1586 /* Report location of previous decl/defn in a consistent manner. */
1587 if (warned || pedwarned)
1588 locate_old_decl (olddecl, pedwarned ? pedwarn : warning0);
1590 #undef DECL_EXTERN_INLINE
1592 return retval;
1595 /* Subroutine of duplicate_decls. NEWDECL has been found to be
1596 consistent with OLDDECL, but carries new information. Merge the
1597 new information into OLDDECL. This function issues no
1598 diagnostics. */
1600 static void
1601 merge_decls (tree newdecl, tree olddecl, tree newtype, tree oldtype)
1603 int new_is_definition = (TREE_CODE (newdecl) == FUNCTION_DECL
1604 && DECL_INITIAL (newdecl) != 0);
1605 int new_is_prototype = (TREE_CODE (newdecl) == FUNCTION_DECL
1606 && TYPE_ARG_TYPES (TREE_TYPE (newdecl)) != 0);
1607 int old_is_prototype = (TREE_CODE (olddecl) == FUNCTION_DECL
1608 && TYPE_ARG_TYPES (TREE_TYPE (olddecl)) != 0);
1610 /* For real parm decl following a forward decl, rechain the old decl
1611 in its new location and clear TREE_ASM_WRITTEN (it's not a
1612 forward decl anymore). */
1613 if (TREE_CODE (newdecl) == PARM_DECL
1614 && TREE_ASM_WRITTEN (olddecl) && !TREE_ASM_WRITTEN (newdecl))
1616 struct c_binding *b, **here;
1618 for (here = &current_scope->bindings; *here; here = &(*here)->prev)
1619 if ((*here)->decl == olddecl)
1620 goto found;
1621 gcc_unreachable ();
1623 found:
1624 b = *here;
1625 *here = b->prev;
1626 b->prev = current_scope->bindings;
1627 current_scope->bindings = b;
1629 TREE_ASM_WRITTEN (olddecl) = 0;
1632 DECL_ATTRIBUTES (newdecl)
1633 = targetm.merge_decl_attributes (olddecl, newdecl);
1635 /* Merge the data types specified in the two decls. */
1636 TREE_TYPE (newdecl)
1637 = TREE_TYPE (olddecl)
1638 = composite_type (newtype, oldtype);
1640 /* Lay the type out, unless already done. */
1641 if (!comptypes (oldtype, TREE_TYPE (newdecl)))
1643 if (TREE_TYPE (newdecl) != error_mark_node)
1644 layout_type (TREE_TYPE (newdecl));
1645 if (TREE_CODE (newdecl) != FUNCTION_DECL
1646 && TREE_CODE (newdecl) != TYPE_DECL
1647 && TREE_CODE (newdecl) != CONST_DECL)
1648 layout_decl (newdecl, 0);
1650 else
1652 /* Since the type is OLDDECL's, make OLDDECL's size go with. */
1653 DECL_SIZE (newdecl) = DECL_SIZE (olddecl);
1654 DECL_SIZE_UNIT (newdecl) = DECL_SIZE_UNIT (olddecl);
1655 DECL_MODE (newdecl) = DECL_MODE (olddecl);
1656 if (TREE_CODE (olddecl) != FUNCTION_DECL)
1657 if (DECL_ALIGN (olddecl) > DECL_ALIGN (newdecl))
1659 DECL_ALIGN (newdecl) = DECL_ALIGN (olddecl);
1660 DECL_USER_ALIGN (newdecl) |= DECL_ALIGN (olddecl);
1665 /* Merge the type qualifiers. */
1666 if (TREE_READONLY (newdecl))
1667 TREE_READONLY (olddecl) = 1;
1669 if (TREE_THIS_VOLATILE (newdecl))
1671 TREE_THIS_VOLATILE (olddecl) = 1;
1672 if (TREE_CODE (newdecl) == VAR_DECL)
1673 make_var_volatile (newdecl);
1676 /* Merge deprecatedness. */
1677 if (TREE_DEPRECATED (newdecl))
1678 TREE_DEPRECATED (olddecl) = 1;
1680 /* Keep source location of definition rather than declaration and of
1681 prototype rather than non-prototype unless that prototype is
1682 built-in. */
1683 if ((DECL_INITIAL (newdecl) == 0 && DECL_INITIAL (olddecl) != 0)
1684 || (old_is_prototype && !new_is_prototype
1685 && !C_DECL_BUILTIN_PROTOTYPE (olddecl)))
1686 DECL_SOURCE_LOCATION (newdecl) = DECL_SOURCE_LOCATION (olddecl);
1688 /* Merge the initialization information. */
1689 if (DECL_INITIAL (newdecl) == 0)
1690 DECL_INITIAL (newdecl) = DECL_INITIAL (olddecl);
1692 /* Merge the threadprivate attribute. */
1693 if (TREE_CODE (olddecl) == VAR_DECL && C_DECL_THREADPRIVATE_P (olddecl))
1695 DECL_TLS_MODEL (newdecl) = DECL_TLS_MODEL (olddecl);
1696 C_DECL_THREADPRIVATE_P (newdecl) = 1;
1699 if (CODE_CONTAINS_STRUCT (TREE_CODE (olddecl), TS_DECL_WITH_VIS))
1701 /* Merge the unused-warning information. */
1702 if (DECL_IN_SYSTEM_HEADER (olddecl))
1703 DECL_IN_SYSTEM_HEADER (newdecl) = 1;
1704 else if (DECL_IN_SYSTEM_HEADER (newdecl))
1705 DECL_IN_SYSTEM_HEADER (olddecl) = 1;
1707 /* Merge the section attribute.
1708 We want to issue an error if the sections conflict but that
1709 must be done later in decl_attributes since we are called
1710 before attributes are assigned. */
1711 if (DECL_SECTION_NAME (newdecl) == NULL_TREE)
1712 DECL_SECTION_NAME (newdecl) = DECL_SECTION_NAME (olddecl);
1714 /* Copy the assembler name.
1715 Currently, it can only be defined in the prototype. */
1716 COPY_DECL_ASSEMBLER_NAME (olddecl, newdecl);
1718 /* Use visibility of whichever declaration had it specified */
1719 if (DECL_VISIBILITY_SPECIFIED (olddecl))
1721 DECL_VISIBILITY (newdecl) = DECL_VISIBILITY (olddecl);
1722 DECL_VISIBILITY_SPECIFIED (newdecl) = 1;
1725 if (TREE_CODE (newdecl) == FUNCTION_DECL)
1727 DECL_STATIC_CONSTRUCTOR(newdecl) |= DECL_STATIC_CONSTRUCTOR(olddecl);
1728 DECL_STATIC_DESTRUCTOR (newdecl) |= DECL_STATIC_DESTRUCTOR (olddecl);
1729 DECL_NO_LIMIT_STACK (newdecl) |= DECL_NO_LIMIT_STACK (olddecl);
1730 DECL_NO_INSTRUMENT_FUNCTION_ENTRY_EXIT (newdecl)
1731 |= DECL_NO_INSTRUMENT_FUNCTION_ENTRY_EXIT (olddecl);
1732 TREE_THIS_VOLATILE (newdecl) |= TREE_THIS_VOLATILE (olddecl);
1733 TREE_READONLY (newdecl) |= TREE_READONLY (olddecl);
1734 DECL_IS_MALLOC (newdecl) |= DECL_IS_MALLOC (olddecl);
1735 DECL_IS_PURE (newdecl) |= DECL_IS_PURE (olddecl);
1736 DECL_IS_NOVOPS (newdecl) |= DECL_IS_NOVOPS (olddecl);
1739 /* Merge the storage class information. */
1740 merge_weak (newdecl, olddecl);
1742 /* For functions, static overrides non-static. */
1743 if (TREE_CODE (newdecl) == FUNCTION_DECL)
1745 TREE_PUBLIC (newdecl) &= TREE_PUBLIC (olddecl);
1746 /* This is since we don't automatically
1747 copy the attributes of NEWDECL into OLDDECL. */
1748 TREE_PUBLIC (olddecl) = TREE_PUBLIC (newdecl);
1749 /* If this clears `static', clear it in the identifier too. */
1750 if (!TREE_PUBLIC (olddecl))
1751 TREE_PUBLIC (DECL_NAME (olddecl)) = 0;
1755 if (DECL_EXTERNAL (newdecl))
1757 TREE_STATIC (newdecl) = TREE_STATIC (olddecl);
1758 DECL_EXTERNAL (newdecl) = DECL_EXTERNAL (olddecl);
1760 /* An extern decl does not override previous storage class. */
1761 TREE_PUBLIC (newdecl) = TREE_PUBLIC (olddecl);
1762 if (!DECL_EXTERNAL (newdecl))
1764 DECL_CONTEXT (newdecl) = DECL_CONTEXT (olddecl);
1765 DECL_COMMON (newdecl) = DECL_COMMON (olddecl);
1768 else
1770 TREE_STATIC (olddecl) = TREE_STATIC (newdecl);
1771 TREE_PUBLIC (olddecl) = TREE_PUBLIC (newdecl);
1774 if (TREE_CODE (newdecl) == FUNCTION_DECL)
1776 /* If we're redefining a function previously defined as extern
1777 inline, make sure we emit debug info for the inline before we
1778 throw it away, in case it was inlined into a function that
1779 hasn't been written out yet. */
1780 if (new_is_definition && DECL_INITIAL (olddecl))
1782 if (TREE_USED (olddecl)
1783 /* In unit-at-a-time mode we never inline re-defined extern
1784 inline functions. */
1785 && !flag_unit_at_a_time
1786 && cgraph_function_possibly_inlined_p (olddecl))
1787 (*debug_hooks->outlining_inline_function) (olddecl);
1789 /* The new defn must not be inline. */
1790 DECL_INLINE (newdecl) = 0;
1791 DECL_UNINLINABLE (newdecl) = 1;
1793 else
1795 /* If either decl says `inline', this fn is inline, unless
1796 its definition was passed already. */
1797 if (DECL_DECLARED_INLINE_P (newdecl)
1798 || DECL_DECLARED_INLINE_P (olddecl))
1799 DECL_DECLARED_INLINE_P (newdecl) = 1;
1801 DECL_UNINLINABLE (newdecl) = DECL_UNINLINABLE (olddecl)
1802 = (DECL_UNINLINABLE (newdecl) || DECL_UNINLINABLE (olddecl));
1805 if (DECL_BUILT_IN (olddecl))
1807 /* If redeclaring a builtin function, it stays built in.
1808 But it gets tagged as having been declared. */
1809 DECL_BUILT_IN_CLASS (newdecl) = DECL_BUILT_IN_CLASS (olddecl);
1810 DECL_FUNCTION_CODE (newdecl) = DECL_FUNCTION_CODE (olddecl);
1811 C_DECL_DECLARED_BUILTIN (newdecl) = 1;
1812 if (new_is_prototype)
1813 C_DECL_BUILTIN_PROTOTYPE (newdecl) = 0;
1814 else
1815 C_DECL_BUILTIN_PROTOTYPE (newdecl)
1816 = C_DECL_BUILTIN_PROTOTYPE (olddecl);
1819 /* Also preserve various other info from the definition. */
1820 if (!new_is_definition)
1822 DECL_RESULT (newdecl) = DECL_RESULT (olddecl);
1823 DECL_INITIAL (newdecl) = DECL_INITIAL (olddecl);
1824 DECL_STRUCT_FUNCTION (newdecl) = DECL_STRUCT_FUNCTION (olddecl);
1825 DECL_SAVED_TREE (newdecl) = DECL_SAVED_TREE (olddecl);
1826 DECL_ARGUMENTS (newdecl) = DECL_ARGUMENTS (olddecl);
1828 /* Set DECL_INLINE on the declaration if we've got a body
1829 from which to instantiate. */
1830 if (DECL_INLINE (olddecl) && !DECL_UNINLINABLE (newdecl))
1832 DECL_INLINE (newdecl) = 1;
1833 DECL_ABSTRACT_ORIGIN (newdecl)
1834 = DECL_ABSTRACT_ORIGIN (olddecl);
1837 else
1839 /* If a previous declaration said inline, mark the
1840 definition as inlinable. */
1841 if (DECL_DECLARED_INLINE_P (newdecl)
1842 && !DECL_UNINLINABLE (newdecl))
1843 DECL_INLINE (newdecl) = 1;
1847 /* Copy most of the decl-specific fields of NEWDECL into OLDDECL.
1848 But preserve OLDDECL's DECL_UID and DECL_CONTEXT. */
1850 unsigned olddecl_uid = DECL_UID (olddecl);
1851 tree olddecl_context = DECL_CONTEXT (olddecl);
1853 memcpy ((char *) olddecl + sizeof (struct tree_common),
1854 (char *) newdecl + sizeof (struct tree_common),
1855 sizeof (struct tree_decl_common) - sizeof (struct tree_common));
1856 switch (TREE_CODE (olddecl))
1858 case FIELD_DECL:
1859 case VAR_DECL:
1860 case PARM_DECL:
1861 case LABEL_DECL:
1862 case RESULT_DECL:
1863 case CONST_DECL:
1864 case TYPE_DECL:
1865 case FUNCTION_DECL:
1866 memcpy ((char *) olddecl + sizeof (struct tree_decl_common),
1867 (char *) newdecl + sizeof (struct tree_decl_common),
1868 tree_code_size (TREE_CODE (olddecl)) - sizeof (struct tree_decl_common));
1869 break;
1871 default:
1873 memcpy ((char *) olddecl + sizeof (struct tree_decl_common),
1874 (char *) newdecl + sizeof (struct tree_decl_common),
1875 sizeof (struct tree_decl_non_common) - sizeof (struct tree_decl_common));
1877 DECL_UID (olddecl) = olddecl_uid;
1878 DECL_CONTEXT (olddecl) = olddecl_context;
1881 /* If OLDDECL had its DECL_RTL instantiated, re-invoke make_decl_rtl
1882 so that encode_section_info has a chance to look at the new decl
1883 flags and attributes. */
1884 if (DECL_RTL_SET_P (olddecl)
1885 && (TREE_CODE (olddecl) == FUNCTION_DECL
1886 || (TREE_CODE (olddecl) == VAR_DECL
1887 && TREE_STATIC (olddecl))))
1888 make_decl_rtl (olddecl);
1891 /* Handle when a new declaration NEWDECL has the same name as an old
1892 one OLDDECL in the same binding contour. Prints an error message
1893 if appropriate.
1895 If safely possible, alter OLDDECL to look like NEWDECL, and return
1896 true. Otherwise, return false. */
1898 static bool
1899 duplicate_decls (tree newdecl, tree olddecl)
1901 tree newtype = NULL, oldtype = NULL;
1903 if (!diagnose_mismatched_decls (newdecl, olddecl, &newtype, &oldtype))
1905 /* Avoid `unused variable' and other warnings warnings for OLDDECL. */
1906 TREE_NO_WARNING (olddecl) = 1;
1907 return false;
1910 merge_decls (newdecl, olddecl, newtype, oldtype);
1911 return true;
1915 /* Check whether decl-node NEW_DECL shadows an existing declaration. */
1916 static void
1917 warn_if_shadowing (tree new_decl)
1919 struct c_binding *b;
1921 /* Shadow warnings wanted? */
1922 if (!warn_shadow
1923 /* No shadow warnings for internally generated vars. */
1924 || DECL_IS_BUILTIN (new_decl)
1925 /* No shadow warnings for vars made for inlining. */
1926 || DECL_FROM_INLINE (new_decl))
1927 return;
1929 /* Is anything being shadowed? Invisible decls do not count. */
1930 for (b = I_SYMBOL_BINDING (DECL_NAME (new_decl)); b; b = b->shadowed)
1931 if (b->decl && b->decl != new_decl && !b->invisible)
1933 tree old_decl = b->decl;
1935 if (old_decl == error_mark_node)
1937 warning (OPT_Wshadow, "declaration of %q+D shadows previous "
1938 "non-variable", new_decl);
1939 break;
1941 else if (TREE_CODE (old_decl) == PARM_DECL)
1942 warning (OPT_Wshadow, "declaration of %q+D shadows a parameter",
1943 new_decl);
1944 else if (DECL_FILE_SCOPE_P (old_decl))
1945 warning (OPT_Wshadow, "declaration of %q+D shadows a global "
1946 "declaration", new_decl);
1947 else if (TREE_CODE (old_decl) == FUNCTION_DECL
1948 && DECL_BUILT_IN (old_decl))
1950 warning (OPT_Wshadow, "declaration of %q+D shadows "
1951 "a built-in function", new_decl);
1952 break;
1954 else
1955 warning (OPT_Wshadow, "declaration of %q+D shadows a previous local",
1956 new_decl);
1958 warning (OPT_Wshadow, "%Jshadowed declaration is here", old_decl);
1960 break;
1965 /* Subroutine of pushdecl.
1967 X is a TYPE_DECL for a typedef statement. Create a brand new
1968 ..._TYPE node (which will be just a variant of the existing
1969 ..._TYPE node with identical properties) and then install X
1970 as the TYPE_NAME of this brand new (duplicate) ..._TYPE node.
1972 The whole point here is to end up with a situation where each
1973 and every ..._TYPE node the compiler creates will be uniquely
1974 associated with AT MOST one node representing a typedef name.
1975 This way, even though the compiler substitutes corresponding
1976 ..._TYPE nodes for TYPE_DECL (i.e. "typedef name") nodes very
1977 early on, later parts of the compiler can always do the reverse
1978 translation and get back the corresponding typedef name. For
1979 example, given:
1981 typedef struct S MY_TYPE;
1982 MY_TYPE object;
1984 Later parts of the compiler might only know that `object' was of
1985 type `struct S' if it were not for code just below. With this
1986 code however, later parts of the compiler see something like:
1988 struct S' == struct S
1989 typedef struct S' MY_TYPE;
1990 struct S' object;
1992 And they can then deduce (from the node for type struct S') that
1993 the original object declaration was:
1995 MY_TYPE object;
1997 Being able to do this is important for proper support of protoize,
1998 and also for generating precise symbolic debugging information
1999 which takes full account of the programmer's (typedef) vocabulary.
2001 Obviously, we don't want to generate a duplicate ..._TYPE node if
2002 the TYPE_DECL node that we are now processing really represents a
2003 standard built-in type.
2005 Since all standard types are effectively declared at line zero
2006 in the source file, we can easily check to see if we are working
2007 on a standard type by checking the current value of lineno. */
2009 static void
2010 clone_underlying_type (tree x)
2012 if (DECL_IS_BUILTIN (x))
2014 if (TYPE_NAME (TREE_TYPE (x)) == 0)
2015 TYPE_NAME (TREE_TYPE (x)) = x;
2017 else if (TREE_TYPE (x) != error_mark_node
2018 && DECL_ORIGINAL_TYPE (x) == NULL_TREE)
2020 tree tt = TREE_TYPE (x);
2021 DECL_ORIGINAL_TYPE (x) = tt;
2022 tt = build_variant_type_copy (tt);
2023 TYPE_NAME (tt) = x;
2024 TREE_USED (tt) = TREE_USED (x);
2025 TREE_TYPE (x) = tt;
2029 /* Record a decl-node X as belonging to the current lexical scope.
2030 Check for errors (such as an incompatible declaration for the same
2031 name already seen in the same scope).
2033 Returns either X or an old decl for the same name.
2034 If an old decl is returned, it may have been smashed
2035 to agree with what X says. */
2037 tree
2038 pushdecl (tree x)
2040 tree name = DECL_NAME (x);
2041 struct c_scope *scope = current_scope;
2042 struct c_binding *b;
2043 bool nested = false;
2045 /* Functions need the lang_decl data. */
2046 if (TREE_CODE (x) == FUNCTION_DECL && !DECL_LANG_SPECIFIC (x))
2047 DECL_LANG_SPECIFIC (x) = GGC_CNEW (struct lang_decl);
2049 /* Must set DECL_CONTEXT for everything not at file scope or
2050 DECL_FILE_SCOPE_P won't work. Local externs don't count
2051 unless they have initializers (which generate code). */
2052 if (current_function_decl
2053 && ((TREE_CODE (x) != FUNCTION_DECL && TREE_CODE (x) != VAR_DECL)
2054 || DECL_INITIAL (x) || !DECL_EXTERNAL (x)))
2055 DECL_CONTEXT (x) = current_function_decl;
2057 /* If this is of variably modified type, prevent jumping into its
2058 scope. */
2059 if ((TREE_CODE (x) == VAR_DECL || TREE_CODE (x) == TYPE_DECL)
2060 && variably_modified_type_p (TREE_TYPE (x), NULL_TREE))
2061 c_begin_vm_scope (scope->depth);
2063 /* Anonymous decls are just inserted in the scope. */
2064 if (!name)
2066 bind (name, x, scope, /*invisible=*/false, /*nested=*/false);
2067 return x;
2070 /* First, see if there is another declaration with the same name in
2071 the current scope. If there is, duplicate_decls may do all the
2072 work for us. If duplicate_decls returns false, that indicates
2073 two incompatible decls in the same scope; we are to silently
2074 replace the old one (duplicate_decls has issued all appropriate
2075 diagnostics). In particular, we should not consider possible
2076 duplicates in the external scope, or shadowing. */
2077 b = I_SYMBOL_BINDING (name);
2078 if (b && B_IN_SCOPE (b, scope))
2080 struct c_binding *b_ext, *b_use;
2081 tree type = TREE_TYPE (x);
2082 tree visdecl = b->decl;
2083 tree vistype = TREE_TYPE (visdecl);
2084 if (TREE_CODE (TREE_TYPE (x)) == ARRAY_TYPE
2085 && COMPLETE_TYPE_P (TREE_TYPE (x)))
2086 b->inner_comp = false;
2087 b_use = b;
2088 b_ext = b;
2089 /* If this is an external linkage declaration, we should check
2090 for compatibility with the type in the external scope before
2091 setting the type at this scope based on the visible
2092 information only. */
2093 if (TREE_PUBLIC (x) && TREE_PUBLIC (visdecl))
2095 while (b_ext && !B_IN_EXTERNAL_SCOPE (b_ext))
2096 b_ext = b_ext->shadowed;
2097 if (b_ext)
2099 b_use = b_ext;
2100 if (b_use->type)
2101 TREE_TYPE (b_use->decl) = b_use->type;
2104 if (duplicate_decls (x, b_use->decl))
2106 if (b_use != b)
2108 /* Save the updated type in the external scope and
2109 restore the proper type for this scope. */
2110 tree thistype;
2111 if (comptypes (vistype, type))
2112 thistype = composite_type (vistype, type);
2113 else
2114 thistype = TREE_TYPE (b_use->decl);
2115 b_use->type = TREE_TYPE (b_use->decl);
2116 if (TREE_CODE (b_use->decl) == FUNCTION_DECL
2117 && DECL_BUILT_IN (b_use->decl))
2118 thistype
2119 = build_type_attribute_variant (thistype,
2120 TYPE_ATTRIBUTES
2121 (b_use->type));
2122 TREE_TYPE (b_use->decl) = thistype;
2124 return b_use->decl;
2126 else
2127 goto skip_external_and_shadow_checks;
2130 /* All declarations with external linkage, and all external
2131 references, go in the external scope, no matter what scope is
2132 current. However, the binding in that scope is ignored for
2133 purposes of normal name lookup. A separate binding structure is
2134 created in the requested scope; this governs the normal
2135 visibility of the symbol.
2137 The binding in the externals scope is used exclusively for
2138 detecting duplicate declarations of the same object, no matter
2139 what scope they are in; this is what we do here. (C99 6.2.7p2:
2140 All declarations that refer to the same object or function shall
2141 have compatible type; otherwise, the behavior is undefined.) */
2142 if (DECL_EXTERNAL (x) || scope == file_scope)
2144 tree type = TREE_TYPE (x);
2145 tree vistype = 0;
2146 tree visdecl = 0;
2147 bool type_saved = false;
2148 if (b && !B_IN_EXTERNAL_SCOPE (b)
2149 && (TREE_CODE (b->decl) == FUNCTION_DECL
2150 || TREE_CODE (b->decl) == VAR_DECL)
2151 && DECL_FILE_SCOPE_P (b->decl))
2153 visdecl = b->decl;
2154 vistype = TREE_TYPE (visdecl);
2156 if (scope != file_scope
2157 && !DECL_IN_SYSTEM_HEADER (x))
2158 warning (OPT_Wnested_externs, "nested extern declaration of %qD", x);
2160 while (b && !B_IN_EXTERNAL_SCOPE (b))
2162 /* If this decl might be modified, save its type. This is
2163 done here rather than when the decl is first bound
2164 because the type may change after first binding, through
2165 being completed or through attributes being added. If we
2166 encounter multiple such decls, only the first should have
2167 its type saved; the others will already have had their
2168 proper types saved and the types will not have changed as
2169 their scopes will not have been re-entered. */
2170 if (DECL_P (b->decl) && DECL_FILE_SCOPE_P (b->decl) && !type_saved)
2172 b->type = TREE_TYPE (b->decl);
2173 type_saved = true;
2175 if (B_IN_FILE_SCOPE (b)
2176 && TREE_CODE (b->decl) == VAR_DECL
2177 && TREE_STATIC (b->decl)
2178 && TREE_CODE (TREE_TYPE (b->decl)) == ARRAY_TYPE
2179 && !TYPE_DOMAIN (TREE_TYPE (b->decl))
2180 && TREE_CODE (type) == ARRAY_TYPE
2181 && TYPE_DOMAIN (type)
2182 && TYPE_MAX_VALUE (TYPE_DOMAIN (type))
2183 && !integer_zerop (TYPE_MAX_VALUE (TYPE_DOMAIN (type))))
2185 /* Array type completed in inner scope, which should be
2186 diagnosed if the completion does not have size 1 and
2187 it does not get completed in the file scope. */
2188 b->inner_comp = true;
2190 b = b->shadowed;
2193 /* If a matching external declaration has been found, set its
2194 type to the composite of all the types of that declaration.
2195 After the consistency checks, it will be reset to the
2196 composite of the visible types only. */
2197 if (b && (TREE_PUBLIC (x) || same_translation_unit_p (x, b->decl))
2198 && b->type)
2199 TREE_TYPE (b->decl) = b->type;
2201 /* The point of the same_translation_unit_p check here is,
2202 we want to detect a duplicate decl for a construct like
2203 foo() { extern bar(); } ... static bar(); but not if
2204 they are in different translation units. In any case,
2205 the static does not go in the externals scope. */
2206 if (b
2207 && (TREE_PUBLIC (x) || same_translation_unit_p (x, b->decl))
2208 && duplicate_decls (x, b->decl))
2210 tree thistype;
2211 if (vistype)
2213 if (comptypes (vistype, type))
2214 thistype = composite_type (vistype, type);
2215 else
2216 thistype = TREE_TYPE (b->decl);
2218 else
2219 thistype = type;
2220 b->type = TREE_TYPE (b->decl);
2221 if (TREE_CODE (b->decl) == FUNCTION_DECL && DECL_BUILT_IN (b->decl))
2222 thistype
2223 = build_type_attribute_variant (thistype,
2224 TYPE_ATTRIBUTES (b->type));
2225 TREE_TYPE (b->decl) = thistype;
2226 bind (name, b->decl, scope, /*invisible=*/false, /*nested=*/true);
2227 return b->decl;
2229 else if (TREE_PUBLIC (x))
2231 if (visdecl && !b && duplicate_decls (x, visdecl))
2233 /* An external declaration at block scope referring to a
2234 visible entity with internal linkage. The composite
2235 type will already be correct for this scope, so we
2236 just need to fall through to make the declaration in
2237 this scope. */
2238 nested = true;
2239 x = visdecl;
2241 else
2243 bind (name, x, external_scope, /*invisible=*/true,
2244 /*nested=*/false);
2245 nested = true;
2250 if (TREE_CODE (x) != PARM_DECL)
2251 warn_if_shadowing (x);
2253 skip_external_and_shadow_checks:
2254 if (TREE_CODE (x) == TYPE_DECL)
2255 clone_underlying_type (x);
2257 bind (name, x, scope, /*invisible=*/false, nested);
2259 /* If x's type is incomplete because it's based on a
2260 structure or union which has not yet been fully declared,
2261 attach it to that structure or union type, so we can go
2262 back and complete the variable declaration later, if the
2263 structure or union gets fully declared.
2265 If the input is erroneous, we can have error_mark in the type
2266 slot (e.g. "f(void a, ...)") - that doesn't count as an
2267 incomplete type. */
2268 if (TREE_TYPE (x) != error_mark_node
2269 && !COMPLETE_TYPE_P (TREE_TYPE (x)))
2271 tree element = TREE_TYPE (x);
2273 while (TREE_CODE (element) == ARRAY_TYPE)
2274 element = TREE_TYPE (element);
2275 element = TYPE_MAIN_VARIANT (element);
2277 if ((TREE_CODE (element) == RECORD_TYPE
2278 || TREE_CODE (element) == UNION_TYPE)
2279 && (TREE_CODE (x) != TYPE_DECL
2280 || TREE_CODE (TREE_TYPE (x)) == ARRAY_TYPE)
2281 && !COMPLETE_TYPE_P (element))
2282 C_TYPE_INCOMPLETE_VARS (element)
2283 = tree_cons (NULL_TREE, x, C_TYPE_INCOMPLETE_VARS (element));
2285 return x;
2288 /* Record X as belonging to file scope.
2289 This is used only internally by the Objective-C front end,
2290 and is limited to its needs. duplicate_decls is not called;
2291 if there is any preexisting decl for this identifier, it is an ICE. */
2293 tree
2294 pushdecl_top_level (tree x)
2296 tree name;
2297 bool nested = false;
2298 gcc_assert (TREE_CODE (x) == VAR_DECL || TREE_CODE (x) == CONST_DECL);
2300 name = DECL_NAME (x);
2302 gcc_assert (TREE_CODE (x) == CONST_DECL || !I_SYMBOL_BINDING (name));
2304 if (TREE_PUBLIC (x))
2306 bind (name, x, external_scope, /*invisible=*/true, /*nested=*/false);
2307 nested = true;
2309 if (file_scope)
2310 bind (name, x, file_scope, /*invisible=*/false, nested);
2312 return x;
2315 static void
2316 implicit_decl_warning (tree id, tree olddecl)
2318 void (*diag) (const char *, ...) ATTRIBUTE_GCC_CDIAG(1,2);
2319 switch (mesg_implicit_function_declaration)
2321 case 0: return;
2322 case 1: diag = warning0; break;
2323 case 2: diag = error; break;
2324 default: gcc_unreachable ();
2327 diag (G_("implicit declaration of function %qE"), id);
2328 if (olddecl)
2329 locate_old_decl (olddecl, diag);
2332 /* Generate an implicit declaration for identifier FUNCTIONID as a
2333 function of type int (). */
2335 tree
2336 implicitly_declare (tree functionid)
2338 struct c_binding *b;
2339 tree decl = 0;
2340 tree asmspec_tree;
2342 for (b = I_SYMBOL_BINDING (functionid); b; b = b->shadowed)
2344 if (B_IN_SCOPE (b, external_scope))
2346 decl = b->decl;
2347 break;
2351 if (decl)
2353 if (decl == error_mark_node)
2354 return decl;
2356 /* FIXME: Objective-C has weird not-really-builtin functions
2357 which are supposed to be visible automatically. They wind up
2358 in the external scope because they're pushed before the file
2359 scope gets created. Catch this here and rebind them into the
2360 file scope. */
2361 if (!DECL_BUILT_IN (decl) && DECL_IS_BUILTIN (decl))
2363 bind (functionid, decl, file_scope,
2364 /*invisible=*/false, /*nested=*/true);
2365 return decl;
2367 else
2369 tree newtype = default_function_type;
2370 if (b->type)
2371 TREE_TYPE (decl) = b->type;
2372 /* Implicit declaration of a function already declared
2373 (somehow) in a different scope, or as a built-in.
2374 If this is the first time this has happened, warn;
2375 then recycle the old declaration but with the new type. */
2376 if (!C_DECL_IMPLICIT (decl))
2378 implicit_decl_warning (functionid, decl);
2379 C_DECL_IMPLICIT (decl) = 1;
2381 if (DECL_BUILT_IN (decl))
2383 newtype = build_type_attribute_variant (newtype,
2384 TYPE_ATTRIBUTES
2385 (TREE_TYPE (decl)));
2386 if (!comptypes (newtype, TREE_TYPE (decl)))
2388 warning (0, "incompatible implicit declaration of built-in"
2389 " function %qD", decl);
2390 newtype = TREE_TYPE (decl);
2393 else
2395 if (!comptypes (newtype, TREE_TYPE (decl)))
2397 error ("incompatible implicit declaration of function %qD",
2398 decl);
2399 locate_old_decl (decl, error);
2402 b->type = TREE_TYPE (decl);
2403 TREE_TYPE (decl) = newtype;
2404 bind (functionid, decl, current_scope,
2405 /*invisible=*/false, /*nested=*/true);
2406 return decl;
2410 /* Not seen before. */
2411 decl = build_decl (FUNCTION_DECL, functionid, default_function_type);
2412 DECL_EXTERNAL (decl) = 1;
2413 TREE_PUBLIC (decl) = 1;
2414 C_DECL_IMPLICIT (decl) = 1;
2415 implicit_decl_warning (functionid, 0);
2416 asmspec_tree = maybe_apply_renaming_pragma (decl, /*asmname=*/NULL);
2417 if (asmspec_tree)
2418 set_user_assembler_name (decl, TREE_STRING_POINTER (asmspec_tree));
2420 /* C89 says implicit declarations are in the innermost block.
2421 So we record the decl in the standard fashion. */
2422 decl = pushdecl (decl);
2424 /* No need to call objc_check_decl here - it's a function type. */
2425 rest_of_decl_compilation (decl, 0, 0);
2427 /* Write a record describing this implicit function declaration
2428 to the prototypes file (if requested). */
2429 gen_aux_info_record (decl, 0, 1, 0);
2431 /* Possibly apply some default attributes to this implicit declaration. */
2432 decl_attributes (&decl, NULL_TREE, 0);
2434 return decl;
2437 /* Issue an error message for a reference to an undeclared variable
2438 ID, including a reference to a builtin outside of function-call
2439 context. Establish a binding of the identifier to error_mark_node
2440 in an appropriate scope, which will suppress further errors for the
2441 same identifier. The error message should be given location LOC. */
2442 void
2443 undeclared_variable (tree id, location_t loc)
2445 static bool already = false;
2446 struct c_scope *scope;
2448 if (current_function_decl == 0)
2450 error ("%H%qE undeclared here (not in a function)", &loc, id);
2451 scope = current_scope;
2453 else
2455 error ("%H%qE undeclared (first use in this function)", &loc, id);
2457 if (!already)
2459 error ("%H(Each undeclared identifier is reported only once", &loc);
2460 error ("%Hfor each function it appears in.)", &loc);
2461 already = true;
2464 /* If we are parsing old-style parameter decls, current_function_decl
2465 will be nonnull but current_function_scope will be null. */
2466 scope = current_function_scope ? current_function_scope : current_scope;
2468 bind (id, error_mark_node, scope, /*invisible=*/false, /*nested=*/false);
2471 /* Subroutine of lookup_label, declare_label, define_label: construct a
2472 LABEL_DECL with all the proper frills. */
2474 static tree
2475 make_label (tree name, location_t location)
2477 tree label = build_decl (LABEL_DECL, name, void_type_node);
2479 DECL_CONTEXT (label) = current_function_decl;
2480 DECL_MODE (label) = VOIDmode;
2481 DECL_SOURCE_LOCATION (label) = location;
2483 return label;
2486 /* Get the LABEL_DECL corresponding to identifier NAME as a label.
2487 Create one if none exists so far for the current function.
2488 This is called when a label is used in a goto expression or
2489 has its address taken. */
2491 tree
2492 lookup_label (tree name)
2494 tree label;
2496 if (current_function_decl == 0)
2498 error ("label %qE referenced outside of any function", name);
2499 return 0;
2502 /* Use a label already defined or ref'd with this name, but not if
2503 it is inherited from a containing function and wasn't declared
2504 using __label__. */
2505 label = I_LABEL_DECL (name);
2506 if (label && (DECL_CONTEXT (label) == current_function_decl
2507 || C_DECLARED_LABEL_FLAG (label)))
2509 /* If the label has only been declared, update its apparent
2510 location to point here, for better diagnostics if it
2511 turns out not to have been defined. */
2512 if (!TREE_USED (label))
2513 DECL_SOURCE_LOCATION (label) = input_location;
2514 return label;
2517 /* No label binding for that identifier; make one. */
2518 label = make_label (name, input_location);
2520 /* Ordinary labels go in the current function scope. */
2521 bind (name, label, current_function_scope,
2522 /*invisible=*/false, /*nested=*/false);
2523 return label;
2526 /* Make a label named NAME in the current function, shadowing silently
2527 any that may be inherited from containing functions or containing
2528 scopes. This is called for __label__ declarations. */
2530 tree
2531 declare_label (tree name)
2533 struct c_binding *b = I_LABEL_BINDING (name);
2534 tree label;
2536 /* Check to make sure that the label hasn't already been declared
2537 at this scope */
2538 if (b && B_IN_CURRENT_SCOPE (b))
2540 error ("duplicate label declaration %qE", name);
2541 locate_old_decl (b->decl, error);
2543 /* Just use the previous declaration. */
2544 return b->decl;
2547 label = make_label (name, input_location);
2548 C_DECLARED_LABEL_FLAG (label) = 1;
2550 /* Declared labels go in the current scope. */
2551 bind (name, label, current_scope,
2552 /*invisible=*/false, /*nested=*/false);
2553 return label;
2556 /* Define a label, specifying the location in the source file.
2557 Return the LABEL_DECL node for the label, if the definition is valid.
2558 Otherwise return 0. */
2560 tree
2561 define_label (location_t location, tree name)
2563 /* Find any preexisting label with this name. It is an error
2564 if that label has already been defined in this function, or
2565 if there is a containing function with a declared label with
2566 the same name. */
2567 tree label = I_LABEL_DECL (name);
2568 struct c_label_list *nlist_se, *nlist_vm;
2570 if (label
2571 && ((DECL_CONTEXT (label) == current_function_decl
2572 && DECL_INITIAL (label) != 0)
2573 || (DECL_CONTEXT (label) != current_function_decl
2574 && C_DECLARED_LABEL_FLAG (label))))
2576 error ("%Hduplicate label %qD", &location, label);
2577 locate_old_decl (label, error);
2578 return 0;
2580 else if (label && DECL_CONTEXT (label) == current_function_decl)
2582 /* The label has been used or declared already in this function,
2583 but not defined. Update its location to point to this
2584 definition. */
2585 if (C_DECL_UNDEFINABLE_STMT_EXPR (label))
2586 error ("%Jjump into statement expression", label);
2587 if (C_DECL_UNDEFINABLE_VM (label))
2588 error ("%Jjump into scope of identifier with variably modified type",
2589 label);
2590 DECL_SOURCE_LOCATION (label) = location;
2592 else
2594 /* No label binding for that identifier; make one. */
2595 label = make_label (name, location);
2597 /* Ordinary labels go in the current function scope. */
2598 bind (name, label, current_function_scope,
2599 /*invisible=*/false, /*nested=*/false);
2602 if (!in_system_header && lookup_name (name))
2603 warning (OPT_Wtraditional, "%Htraditional C lacks a separate namespace "
2604 "for labels, identifier %qE conflicts", &location, name);
2606 nlist_se = XOBNEW (&parser_obstack, struct c_label_list);
2607 nlist_se->next = label_context_stack_se->labels_def;
2608 nlist_se->label = label;
2609 label_context_stack_se->labels_def = nlist_se;
2611 nlist_vm = XOBNEW (&parser_obstack, struct c_label_list);
2612 nlist_vm->next = label_context_stack_vm->labels_def;
2613 nlist_vm->label = label;
2614 label_context_stack_vm->labels_def = nlist_vm;
2616 /* Mark label as having been defined. */
2617 DECL_INITIAL (label) = error_mark_node;
2618 return label;
2621 /* Given NAME, an IDENTIFIER_NODE,
2622 return the structure (or union or enum) definition for that name.
2623 If THISLEVEL_ONLY is nonzero, searches only the current_scope.
2624 CODE says which kind of type the caller wants;
2625 it is RECORD_TYPE or UNION_TYPE or ENUMERAL_TYPE.
2626 If the wrong kind of type is found, an error is reported. */
2628 static tree
2629 lookup_tag (enum tree_code code, tree name, int thislevel_only)
2631 struct c_binding *b = I_TAG_BINDING (name);
2632 int thislevel = 0;
2634 if (!b || !b->decl)
2635 return 0;
2637 /* We only care about whether it's in this level if
2638 thislevel_only was set or it might be a type clash. */
2639 if (thislevel_only || TREE_CODE (b->decl) != code)
2641 /* For our purposes, a tag in the external scope is the same as
2642 a tag in the file scope. (Primarily relevant to Objective-C
2643 and its builtin structure tags, which get pushed before the
2644 file scope is created.) */
2645 if (B_IN_CURRENT_SCOPE (b)
2646 || (current_scope == file_scope && B_IN_EXTERNAL_SCOPE (b)))
2647 thislevel = 1;
2650 if (thislevel_only && !thislevel)
2651 return 0;
2653 if (TREE_CODE (b->decl) != code)
2655 /* Definition isn't the kind we were looking for. */
2656 pending_invalid_xref = name;
2657 pending_invalid_xref_location = input_location;
2659 /* If in the same binding level as a declaration as a tag
2660 of a different type, this must not be allowed to
2661 shadow that tag, so give the error immediately.
2662 (For example, "struct foo; union foo;" is invalid.) */
2663 if (thislevel)
2664 pending_xref_error ();
2666 return b->decl;
2669 /* Print an error message now
2670 for a recent invalid struct, union or enum cross reference.
2671 We don't print them immediately because they are not invalid
2672 when used in the `struct foo;' construct for shadowing. */
2674 void
2675 pending_xref_error (void)
2677 if (pending_invalid_xref != 0)
2678 error ("%H%qE defined as wrong kind of tag",
2679 &pending_invalid_xref_location, pending_invalid_xref);
2680 pending_invalid_xref = 0;
2684 /* Look up NAME in the current scope and its superiors
2685 in the namespace of variables, functions and typedefs.
2686 Return a ..._DECL node of some kind representing its definition,
2687 or return 0 if it is undefined. */
2689 tree
2690 lookup_name (tree name)
2692 struct c_binding *b = I_SYMBOL_BINDING (name);
2693 if (b && !b->invisible)
2694 return b->decl;
2695 return 0;
2698 /* Similar to `lookup_name' but look only at the indicated scope. */
2700 static tree
2701 lookup_name_in_scope (tree name, struct c_scope *scope)
2703 struct c_binding *b;
2705 for (b = I_SYMBOL_BINDING (name); b; b = b->shadowed)
2706 if (B_IN_SCOPE (b, scope))
2707 return b->decl;
2708 return 0;
2711 /* Create the predefined scalar types of C,
2712 and some nodes representing standard constants (0, 1, (void *) 0).
2713 Initialize the global scope.
2714 Make definitions for built-in primitive functions. */
2716 void
2717 c_init_decl_processing (void)
2719 location_t save_loc = input_location;
2721 /* Initialize reserved words for parser. */
2722 c_parse_init ();
2724 current_function_decl = 0;
2726 gcc_obstack_init (&parser_obstack);
2728 /* Make the externals scope. */
2729 push_scope ();
2730 external_scope = current_scope;
2732 /* Declarations from c_common_nodes_and_builtins must not be associated
2733 with this input file, lest we get differences between using and not
2734 using preprocessed headers. */
2735 #ifdef USE_MAPPED_LOCATION
2736 input_location = BUILTINS_LOCATION;
2737 #else
2738 input_location.file = "<built-in>";
2739 input_location.line = 0;
2740 #endif
2742 build_common_tree_nodes (flag_signed_char, false);
2744 c_common_nodes_and_builtins ();
2746 /* In C, comparisons and TRUTH_* expressions have type int. */
2747 truthvalue_type_node = integer_type_node;
2748 truthvalue_true_node = integer_one_node;
2749 truthvalue_false_node = integer_zero_node;
2751 /* Even in C99, which has a real boolean type. */
2752 pushdecl (build_decl (TYPE_DECL, get_identifier ("_Bool"),
2753 boolean_type_node));
2755 input_location = save_loc;
2757 pedantic_lvalues = true;
2759 make_fname_decl = c_make_fname_decl;
2760 start_fname_decls ();
2763 /* Create the VAR_DECL for __FUNCTION__ etc. ID is the name to give the
2764 decl, NAME is the initialization string and TYPE_DEP indicates whether
2765 NAME depended on the type of the function. As we don't yet implement
2766 delayed emission of static data, we mark the decl as emitted
2767 so it is not placed in the output. Anything using it must therefore pull
2768 out the STRING_CST initializer directly. FIXME. */
2770 static tree
2771 c_make_fname_decl (tree id, int type_dep)
2773 const char *name = fname_as_string (type_dep);
2774 tree decl, type, init;
2775 size_t length = strlen (name);
2777 type = build_array_type (char_type_node,
2778 build_index_type (size_int (length)));
2779 type = c_build_qualified_type (type, TYPE_QUAL_CONST);
2781 decl = build_decl (VAR_DECL, id, type);
2783 TREE_STATIC (decl) = 1;
2784 TREE_READONLY (decl) = 1;
2785 DECL_ARTIFICIAL (decl) = 1;
2787 init = build_string (length + 1, name);
2788 free ((char *) name);
2789 TREE_TYPE (init) = type;
2790 DECL_INITIAL (decl) = init;
2792 TREE_USED (decl) = 1;
2794 if (current_function_decl)
2796 DECL_CONTEXT (decl) = current_function_decl;
2797 bind (id, decl, current_function_scope,
2798 /*invisible=*/false, /*nested=*/false);
2801 finish_decl (decl, init, NULL_TREE);
2803 return decl;
2806 /* Return a definition for a builtin function named NAME and whose data type
2807 is TYPE. TYPE should be a function type with argument types.
2808 FUNCTION_CODE tells later passes how to compile calls to this function.
2809 See tree.h for its possible values.
2811 If LIBRARY_NAME is nonzero, use that for DECL_ASSEMBLER_NAME,
2812 the name to be called if we can't opencode the function. If
2813 ATTRS is nonzero, use that for the function's attribute list. */
2815 tree
2816 builtin_function (const char *name, tree type, int function_code,
2817 enum built_in_class cl, const char *library_name,
2818 tree attrs)
2820 tree id = get_identifier (name);
2821 tree decl = build_decl (FUNCTION_DECL, id, type);
2822 TREE_PUBLIC (decl) = 1;
2823 DECL_EXTERNAL (decl) = 1;
2824 DECL_LANG_SPECIFIC (decl) = GGC_CNEW (struct lang_decl);
2825 DECL_BUILT_IN_CLASS (decl) = cl;
2826 DECL_FUNCTION_CODE (decl) = function_code;
2827 C_DECL_BUILTIN_PROTOTYPE (decl) = (TYPE_ARG_TYPES (type) != 0);
2828 if (library_name)
2829 SET_DECL_ASSEMBLER_NAME (decl, get_identifier (library_name));
2831 /* Should never be called on a symbol with a preexisting meaning. */
2832 gcc_assert (!I_SYMBOL_BINDING (id));
2834 bind (id, decl, external_scope, /*invisible=*/true, /*nested=*/false);
2836 /* Builtins in the implementation namespace are made visible without
2837 needing to be explicitly declared. See push_file_scope. */
2838 if (name[0] == '_' && (name[1] == '_' || ISUPPER (name[1])))
2840 TREE_CHAIN (decl) = visible_builtins;
2841 visible_builtins = decl;
2844 /* Possibly apply some default attributes to this built-in function. */
2845 if (attrs)
2846 decl_attributes (&decl, attrs, ATTR_FLAG_BUILT_IN);
2847 else
2848 decl_attributes (&decl, NULL_TREE, 0);
2850 return decl;
2853 /* Called when a declaration is seen that contains no names to declare.
2854 If its type is a reference to a structure, union or enum inherited
2855 from a containing scope, shadow that tag name for the current scope
2856 with a forward reference.
2857 If its type defines a new named structure or union
2858 or defines an enum, it is valid but we need not do anything here.
2859 Otherwise, it is an error. */
2861 void
2862 shadow_tag (const struct c_declspecs *declspecs)
2864 shadow_tag_warned (declspecs, 0);
2867 /* WARNED is 1 if we have done a pedwarn, 2 if we have done a warning,
2868 but no pedwarn. */
2869 void
2870 shadow_tag_warned (const struct c_declspecs *declspecs, int warned)
2872 bool found_tag = false;
2874 if (declspecs->type && !declspecs->default_int_p && !declspecs->typedef_p)
2876 tree value = declspecs->type;
2877 enum tree_code code = TREE_CODE (value);
2879 if (code == RECORD_TYPE || code == UNION_TYPE || code == ENUMERAL_TYPE)
2880 /* Used to test also that TYPE_SIZE (value) != 0.
2881 That caused warning for `struct foo;' at top level in the file. */
2883 tree name = TYPE_NAME (value);
2884 tree t;
2886 found_tag = true;
2888 if (name == 0)
2890 if (warned != 1 && code != ENUMERAL_TYPE)
2891 /* Empty unnamed enum OK */
2893 pedwarn ("unnamed struct/union that defines no instances");
2894 warned = 1;
2897 else if (!declspecs->tag_defined_p
2898 && declspecs->storage_class != csc_none)
2900 if (warned != 1)
2901 pedwarn ("empty declaration with storage class specifier "
2902 "does not redeclare tag");
2903 warned = 1;
2904 pending_xref_error ();
2906 else if (!declspecs->tag_defined_p
2907 && (declspecs->const_p
2908 || declspecs->volatile_p
2909 || declspecs->restrict_p))
2911 if (warned != 1)
2912 pedwarn ("empty declaration with type qualifier "
2913 "does not redeclare tag");
2914 warned = 1;
2915 pending_xref_error ();
2917 else
2919 pending_invalid_xref = 0;
2920 t = lookup_tag (code, name, 1);
2922 if (t == 0)
2924 t = make_node (code);
2925 pushtag (name, t);
2929 else
2931 if (warned != 1 && !in_system_header)
2933 pedwarn ("useless type name in empty declaration");
2934 warned = 1;
2938 else if (warned != 1 && !in_system_header && declspecs->typedef_p)
2940 pedwarn ("useless type name in empty declaration");
2941 warned = 1;
2944 pending_invalid_xref = 0;
2946 if (declspecs->inline_p)
2948 error ("%<inline%> in empty declaration");
2949 warned = 1;
2952 if (current_scope == file_scope && declspecs->storage_class == csc_auto)
2954 error ("%<auto%> in file-scope empty declaration");
2955 warned = 1;
2958 if (current_scope == file_scope && declspecs->storage_class == csc_register)
2960 error ("%<register%> in file-scope empty declaration");
2961 warned = 1;
2964 if (!warned && !in_system_header && declspecs->storage_class != csc_none)
2966 warning (0, "useless storage class specifier in empty declaration");
2967 warned = 2;
2970 if (!warned && !in_system_header && declspecs->thread_p)
2972 warning (0, "useless %<__thread%> in empty declaration");
2973 warned = 2;
2976 if (!warned && !in_system_header && (declspecs->const_p
2977 || declspecs->volatile_p
2978 || declspecs->restrict_p))
2980 warning (0, "useless type qualifier in empty declaration");
2981 warned = 2;
2984 if (warned != 1)
2986 if (!found_tag)
2987 pedwarn ("empty declaration");
2992 /* Return the qualifiers from SPECS as a bitwise OR of TYPE_QUAL_*
2993 bits. SPECS represents declaration specifiers that the grammar
2994 only permits to contain type qualifiers and attributes. */
2997 quals_from_declspecs (const struct c_declspecs *specs)
2999 int quals = ((specs->const_p ? TYPE_QUAL_CONST : 0)
3000 | (specs->volatile_p ? TYPE_QUAL_VOLATILE : 0)
3001 | (specs->restrict_p ? TYPE_QUAL_RESTRICT : 0));
3002 gcc_assert (!specs->type
3003 && !specs->decl_attr
3004 && specs->typespec_word == cts_none
3005 && specs->storage_class == csc_none
3006 && !specs->typedef_p
3007 && !specs->explicit_signed_p
3008 && !specs->deprecated_p
3009 && !specs->long_p
3010 && !specs->long_long_p
3011 && !specs->short_p
3012 && !specs->signed_p
3013 && !specs->unsigned_p
3014 && !specs->complex_p
3015 && !specs->inline_p
3016 && !specs->thread_p);
3017 return quals;
3020 /* Construct an array declarator. EXPR is the expression inside [],
3021 or NULL_TREE. QUALS are the type qualifiers inside the [] (to be
3022 applied to the pointer to which a parameter array is converted).
3023 STATIC_P is true if "static" is inside the [], false otherwise.
3024 VLA_UNSPEC_P is true if the array is [*], a VLA of unspecified
3025 length which is nevertheless a complete type, false otherwise. The
3026 field for the contained declarator is left to be filled in by
3027 set_array_declarator_inner. */
3029 struct c_declarator *
3030 build_array_declarator (tree expr, struct c_declspecs *quals, bool static_p,
3031 bool vla_unspec_p)
3033 struct c_declarator *declarator = XOBNEW (&parser_obstack,
3034 struct c_declarator);
3035 declarator->kind = cdk_array;
3036 declarator->declarator = 0;
3037 declarator->u.array.dimen = expr;
3038 if (quals)
3040 declarator->u.array.attrs = quals->attrs;
3041 declarator->u.array.quals = quals_from_declspecs (quals);
3043 else
3045 declarator->u.array.attrs = NULL_TREE;
3046 declarator->u.array.quals = 0;
3048 declarator->u.array.static_p = static_p;
3049 declarator->u.array.vla_unspec_p = vla_unspec_p;
3050 if (pedantic && !flag_isoc99)
3052 if (static_p || quals != NULL)
3053 pedwarn ("ISO C90 does not support %<static%> or type "
3054 "qualifiers in parameter array declarators");
3055 if (vla_unspec_p)
3056 pedwarn ("ISO C90 does not support %<[*]%> array declarators");
3058 if (vla_unspec_p)
3060 if (!current_scope->parm_flag)
3062 /* C99 6.7.5.2p4 */
3063 error ("%<[*]%> not allowed in other than function prototype scope");
3064 declarator->u.array.vla_unspec_p = false;
3065 return NULL;
3067 current_scope->had_vla_unspec = true;
3069 return declarator;
3072 /* Set the contained declarator of an array declarator. DECL is the
3073 declarator, as constructed by build_array_declarator; INNER is what
3074 appears on the left of the []. ABSTRACT_P is true if it is an
3075 abstract declarator, false otherwise; this is used to reject static
3076 and type qualifiers in abstract declarators, where they are not in
3077 the C99 grammar (subject to possible change in DR#289). */
3079 struct c_declarator *
3080 set_array_declarator_inner (struct c_declarator *decl,
3081 struct c_declarator *inner, bool abstract_p)
3083 decl->declarator = inner;
3084 if (abstract_p && (decl->u.array.quals != TYPE_UNQUALIFIED
3085 || decl->u.array.attrs != NULL_TREE
3086 || decl->u.array.static_p))
3087 error ("static or type qualifiers in abstract declarator");
3088 return decl;
3091 /* INIT is a constructor that forms DECL's initializer. If the final
3092 element initializes a flexible array field, add the size of that
3093 initializer to DECL's size. */
3095 static void
3096 add_flexible_array_elts_to_size (tree decl, tree init)
3098 tree elt, type;
3100 if (VEC_empty (constructor_elt, CONSTRUCTOR_ELTS (init)))
3101 return;
3103 elt = VEC_last (constructor_elt, CONSTRUCTOR_ELTS (init))->value;
3104 type = TREE_TYPE (elt);
3105 if (TREE_CODE (type) == ARRAY_TYPE
3106 && TYPE_SIZE (type) == NULL_TREE
3107 && TYPE_DOMAIN (type) != NULL_TREE
3108 && TYPE_MAX_VALUE (TYPE_DOMAIN (type)) == NULL_TREE)
3110 complete_array_type (&type, elt, false);
3111 DECL_SIZE (decl)
3112 = size_binop (PLUS_EXPR, DECL_SIZE (decl), TYPE_SIZE (type));
3113 DECL_SIZE_UNIT (decl)
3114 = size_binop (PLUS_EXPR, DECL_SIZE_UNIT (decl), TYPE_SIZE_UNIT (type));
3118 /* Decode a "typename", such as "int **", returning a ..._TYPE node. */
3120 tree
3121 groktypename (struct c_type_name *type_name)
3123 tree type;
3124 tree attrs = type_name->specs->attrs;
3126 type_name->specs->attrs = NULL_TREE;
3128 type = grokdeclarator (type_name->declarator, type_name->specs, TYPENAME,
3129 false, NULL);
3131 /* Apply attributes. */
3132 decl_attributes (&type, attrs, 0);
3134 return type;
3137 /* Decode a declarator in an ordinary declaration or data definition.
3138 This is called as soon as the type information and variable name
3139 have been parsed, before parsing the initializer if any.
3140 Here we create the ..._DECL node, fill in its type,
3141 and put it on the list of decls for the current context.
3142 The ..._DECL node is returned as the value.
3144 Exception: for arrays where the length is not specified,
3145 the type is left null, to be filled in by `finish_decl'.
3147 Function definitions do not come here; they go to start_function
3148 instead. However, external and forward declarations of functions
3149 do go through here. Structure field declarations are done by
3150 grokfield and not through here. */
3152 tree
3153 start_decl (struct c_declarator *declarator, struct c_declspecs *declspecs,
3154 bool initialized, tree attributes)
3156 tree decl;
3157 tree tem;
3159 /* An object declared as __attribute__((deprecated)) suppresses
3160 warnings of uses of other deprecated items. */
3161 if (lookup_attribute ("deprecated", attributes))
3162 deprecated_state = DEPRECATED_SUPPRESS;
3164 decl = grokdeclarator (declarator, declspecs,
3165 NORMAL, initialized, NULL);
3166 if (!decl)
3167 return 0;
3169 deprecated_state = DEPRECATED_NORMAL;
3171 if (warn_main > 0 && TREE_CODE (decl) != FUNCTION_DECL
3172 && MAIN_NAME_P (DECL_NAME (decl)))
3173 warning (OPT_Wmain, "%q+D is usually a function", decl);
3175 if (initialized)
3176 /* Is it valid for this decl to have an initializer at all?
3177 If not, set INITIALIZED to zero, which will indirectly
3178 tell 'finish_decl' to ignore the initializer once it is parsed. */
3179 switch (TREE_CODE (decl))
3181 case TYPE_DECL:
3182 error ("typedef %qD is initialized (use __typeof__ instead)", decl);
3183 initialized = 0;
3184 break;
3186 case FUNCTION_DECL:
3187 error ("function %qD is initialized like a variable", decl);
3188 initialized = 0;
3189 break;
3191 case PARM_DECL:
3192 /* DECL_INITIAL in a PARM_DECL is really DECL_ARG_TYPE. */
3193 error ("parameter %qD is initialized", decl);
3194 initialized = 0;
3195 break;
3197 default:
3198 /* Don't allow initializations for incomplete types except for
3199 arrays which might be completed by the initialization. */
3201 /* This can happen if the array size is an undefined macro.
3202 We already gave a warning, so we don't need another one. */
3203 if (TREE_TYPE (decl) == error_mark_node)
3204 initialized = 0;
3205 else if (COMPLETE_TYPE_P (TREE_TYPE (decl)))
3207 /* A complete type is ok if size is fixed. */
3209 if (TREE_CODE (TYPE_SIZE (TREE_TYPE (decl))) != INTEGER_CST
3210 || C_DECL_VARIABLE_SIZE (decl))
3212 error ("variable-sized object may not be initialized");
3213 initialized = 0;
3216 else if (TREE_CODE (TREE_TYPE (decl)) != ARRAY_TYPE)
3218 error ("variable %qD has initializer but incomplete type", decl);
3219 initialized = 0;
3221 else if (C_DECL_VARIABLE_SIZE (decl))
3223 /* Although C99 is unclear about whether incomplete arrays
3224 of VLAs themselves count as VLAs, it does not make
3225 sense to permit them to be initialized given that
3226 ordinary VLAs may not be initialized. */
3227 error ("variable-sized object may not be initialized");
3228 initialized = 0;
3232 if (initialized)
3234 if (current_scope == file_scope)
3235 TREE_STATIC (decl) = 1;
3237 /* Tell 'pushdecl' this is an initialized decl
3238 even though we don't yet have the initializer expression.
3239 Also tell 'finish_decl' it may store the real initializer. */
3240 DECL_INITIAL (decl) = error_mark_node;
3243 /* If this is a function declaration, write a record describing it to the
3244 prototypes file (if requested). */
3246 if (TREE_CODE (decl) == FUNCTION_DECL)
3247 gen_aux_info_record (decl, 0, 0, TYPE_ARG_TYPES (TREE_TYPE (decl)) != 0);
3249 /* ANSI specifies that a tentative definition which is not merged with
3250 a non-tentative definition behaves exactly like a definition with an
3251 initializer equal to zero. (Section 3.7.2)
3253 -fno-common gives strict ANSI behavior, though this tends to break
3254 a large body of code that grew up without this rule.
3256 Thread-local variables are never common, since there's no entrenched
3257 body of code to break, and it allows more efficient variable references
3258 in the presence of dynamic linking. */
3260 if (TREE_CODE (decl) == VAR_DECL
3261 && !initialized
3262 && TREE_PUBLIC (decl)
3263 && !DECL_THREAD_LOCAL_P (decl)
3264 && !flag_no_common)
3265 DECL_COMMON (decl) = 1;
3267 /* Set attributes here so if duplicate decl, will have proper attributes. */
3268 decl_attributes (&decl, attributes, 0);
3270 if (TREE_CODE (decl) == FUNCTION_DECL
3271 && targetm.calls.promote_prototypes (TREE_TYPE (decl)))
3273 struct c_declarator *ce = declarator;
3275 if (ce->kind == cdk_pointer)
3276 ce = declarator->declarator;
3277 if (ce->kind == cdk_function)
3279 tree args = ce->u.arg_info->parms;
3280 for (; args; args = TREE_CHAIN (args))
3282 tree type = TREE_TYPE (args);
3283 if (type && INTEGRAL_TYPE_P (type)
3284 && TYPE_PRECISION (type) < TYPE_PRECISION (integer_type_node))
3285 DECL_ARG_TYPE (args) = integer_type_node;
3290 if (TREE_CODE (decl) == FUNCTION_DECL
3291 && DECL_DECLARED_INLINE_P (decl)
3292 && DECL_UNINLINABLE (decl)
3293 && lookup_attribute ("noinline", DECL_ATTRIBUTES (decl)))
3294 warning (OPT_Wattributes, "inline function %q+D given attribute noinline",
3295 decl);
3297 /* Add this decl to the current scope.
3298 TEM may equal DECL or it may be a previous decl of the same name. */
3299 tem = pushdecl (decl);
3301 if (initialized && DECL_EXTERNAL (tem))
3303 DECL_EXTERNAL (tem) = 0;
3304 TREE_STATIC (tem) = 1;
3307 return tem;
3310 /* Finish processing of a declaration;
3311 install its initial value.
3312 If the length of an array type is not known before,
3313 it must be determined now, from the initial value, or it is an error. */
3315 void
3316 finish_decl (tree decl, tree init, tree asmspec_tree)
3318 tree type = TREE_TYPE (decl);
3319 int was_incomplete = (DECL_SIZE (decl) == 0);
3320 const char *asmspec = 0;
3322 /* If a name was specified, get the string. */
3323 if ((TREE_CODE (decl) == FUNCTION_DECL || TREE_CODE (decl) == VAR_DECL)
3324 && DECL_FILE_SCOPE_P (decl))
3325 asmspec_tree = maybe_apply_renaming_pragma (decl, asmspec_tree);
3326 if (asmspec_tree)
3327 asmspec = TREE_STRING_POINTER (asmspec_tree);
3329 /* If `start_decl' didn't like having an initialization, ignore it now. */
3330 if (init != 0 && DECL_INITIAL (decl) == 0)
3331 init = 0;
3333 /* Don't crash if parm is initialized. */
3334 if (TREE_CODE (decl) == PARM_DECL)
3335 init = 0;
3337 if (init)
3338 store_init_value (decl, init);
3340 if (c_dialect_objc () && (TREE_CODE (decl) == VAR_DECL
3341 || TREE_CODE (decl) == FUNCTION_DECL
3342 || TREE_CODE (decl) == FIELD_DECL))
3343 objc_check_decl (decl);
3345 /* Deduce size of array from initialization, if not already known. */
3346 if (TREE_CODE (type) == ARRAY_TYPE
3347 && TYPE_DOMAIN (type) == 0
3348 && TREE_CODE (decl) != TYPE_DECL)
3350 bool do_default
3351 = (TREE_STATIC (decl)
3352 /* Even if pedantic, an external linkage array
3353 may have incomplete type at first. */
3354 ? pedantic && !TREE_PUBLIC (decl)
3355 : !DECL_EXTERNAL (decl));
3356 int failure
3357 = complete_array_type (&TREE_TYPE (decl), DECL_INITIAL (decl),
3358 do_default);
3360 /* Get the completed type made by complete_array_type. */
3361 type = TREE_TYPE (decl);
3363 switch (failure)
3365 case 1:
3366 error ("initializer fails to determine size of %q+D", decl);
3367 break;
3369 case 2:
3370 if (do_default)
3371 error ("array size missing in %q+D", decl);
3372 /* If a `static' var's size isn't known,
3373 make it extern as well as static, so it does not get
3374 allocated.
3375 If it is not `static', then do not mark extern;
3376 finish_incomplete_decl will give it a default size
3377 and it will get allocated. */
3378 else if (!pedantic && TREE_STATIC (decl) && !TREE_PUBLIC (decl))
3379 DECL_EXTERNAL (decl) = 1;
3380 break;
3382 case 3:
3383 error ("zero or negative size array %q+D", decl);
3384 break;
3386 case 0:
3387 /* For global variables, update the copy of the type that
3388 exists in the binding. */
3389 if (TREE_PUBLIC (decl))
3391 struct c_binding *b_ext = I_SYMBOL_BINDING (DECL_NAME (decl));
3392 while (b_ext && !B_IN_EXTERNAL_SCOPE (b_ext))
3393 b_ext = b_ext->shadowed;
3394 if (b_ext)
3396 if (b_ext->type)
3397 b_ext->type = composite_type (b_ext->type, type);
3398 else
3399 b_ext->type = type;
3402 break;
3404 default:
3405 gcc_unreachable ();
3408 if (DECL_INITIAL (decl))
3409 TREE_TYPE (DECL_INITIAL (decl)) = type;
3411 layout_decl (decl, 0);
3414 if (TREE_CODE (decl) == VAR_DECL)
3416 if (init && TREE_CODE (init) == CONSTRUCTOR)
3417 add_flexible_array_elts_to_size (decl, init);
3419 if (DECL_SIZE (decl) == 0 && TREE_TYPE (decl) != error_mark_node
3420 && COMPLETE_TYPE_P (TREE_TYPE (decl)))
3421 layout_decl (decl, 0);
3423 if (DECL_SIZE (decl) == 0
3424 /* Don't give an error if we already gave one earlier. */
3425 && TREE_TYPE (decl) != error_mark_node
3426 && (TREE_STATIC (decl)
3427 /* A static variable with an incomplete type
3428 is an error if it is initialized.
3429 Also if it is not file scope.
3430 Otherwise, let it through, but if it is not `extern'
3431 then it may cause an error message later. */
3432 ? (DECL_INITIAL (decl) != 0
3433 || !DECL_FILE_SCOPE_P (decl))
3434 /* An automatic variable with an incomplete type
3435 is an error. */
3436 : !DECL_EXTERNAL (decl)))
3438 error ("storage size of %q+D isn%'t known", decl);
3439 TREE_TYPE (decl) = error_mark_node;
3442 if ((DECL_EXTERNAL (decl) || TREE_STATIC (decl))
3443 && DECL_SIZE (decl) != 0)
3445 if (TREE_CODE (DECL_SIZE (decl)) == INTEGER_CST)
3446 constant_expression_warning (DECL_SIZE (decl));
3447 else
3448 error ("storage size of %q+D isn%'t constant", decl);
3451 if (TREE_USED (type))
3452 TREE_USED (decl) = 1;
3455 /* If this is a function and an assembler name is specified, reset DECL_RTL
3456 so we can give it its new name. Also, update built_in_decls if it
3457 was a normal built-in. */
3458 if (TREE_CODE (decl) == FUNCTION_DECL && asmspec)
3460 if (DECL_BUILT_IN_CLASS (decl) == BUILT_IN_NORMAL)
3461 set_builtin_user_assembler_name (decl, asmspec);
3462 set_user_assembler_name (decl, asmspec);
3465 /* If #pragma weak was used, mark the decl weak now. */
3466 maybe_apply_pragma_weak (decl);
3468 /* Output the assembler code and/or RTL code for variables and functions,
3469 unless the type is an undefined structure or union.
3470 If not, it will get done when the type is completed. */
3472 if (TREE_CODE (decl) == VAR_DECL || TREE_CODE (decl) == FUNCTION_DECL)
3474 /* Determine the ELF visibility. */
3475 if (TREE_PUBLIC (decl))
3476 c_determine_visibility (decl);
3478 /* This is a no-op in c-lang.c or something real in objc-act.c. */
3479 if (c_dialect_objc ())
3480 objc_check_decl (decl);
3482 if (asmspec)
3484 /* If this is not a static variable, issue a warning.
3485 It doesn't make any sense to give an ASMSPEC for an
3486 ordinary, non-register local variable. Historically,
3487 GCC has accepted -- but ignored -- the ASMSPEC in
3488 this case. */
3489 if (!DECL_FILE_SCOPE_P (decl)
3490 && TREE_CODE (decl) == VAR_DECL
3491 && !C_DECL_REGISTER (decl)
3492 && !TREE_STATIC (decl))
3493 warning (0, "ignoring asm-specifier for non-static local "
3494 "variable %q+D", decl);
3495 else
3496 set_user_assembler_name (decl, asmspec);
3499 if (DECL_FILE_SCOPE_P (decl))
3501 if (DECL_INITIAL (decl) == NULL_TREE
3502 || DECL_INITIAL (decl) == error_mark_node)
3503 /* Don't output anything
3504 when a tentative file-scope definition is seen.
3505 But at end of compilation, do output code for them. */
3506 DECL_DEFER_OUTPUT (decl) = 1;
3507 rest_of_decl_compilation (decl, true, 0);
3509 else
3511 /* In conjunction with an ASMSPEC, the `register'
3512 keyword indicates that we should place the variable
3513 in a particular register. */
3514 if (asmspec && C_DECL_REGISTER (decl))
3516 DECL_HARD_REGISTER (decl) = 1;
3517 /* This cannot be done for a structure with volatile
3518 fields, on which DECL_REGISTER will have been
3519 reset. */
3520 if (!DECL_REGISTER (decl))
3521 error ("cannot put object with volatile field into register");
3524 if (TREE_CODE (decl) != FUNCTION_DECL)
3526 /* If we're building a variable sized type, and we might be
3527 reachable other than via the top of the current binding
3528 level, then create a new BIND_EXPR so that we deallocate
3529 the object at the right time. */
3530 /* Note that DECL_SIZE can be null due to errors. */
3531 if (DECL_SIZE (decl)
3532 && !TREE_CONSTANT (DECL_SIZE (decl))
3533 && STATEMENT_LIST_HAS_LABEL (cur_stmt_list))
3535 tree bind;
3536 bind = build3 (BIND_EXPR, void_type_node, NULL, NULL, NULL);
3537 TREE_SIDE_EFFECTS (bind) = 1;
3538 add_stmt (bind);
3539 BIND_EXPR_BODY (bind) = push_stmt_list ();
3541 add_stmt (build_stmt (DECL_EXPR, decl));
3546 if (!DECL_FILE_SCOPE_P (decl))
3548 /* Recompute the RTL of a local array now
3549 if it used to be an incomplete type. */
3550 if (was_incomplete
3551 && !TREE_STATIC (decl) && !DECL_EXTERNAL (decl))
3553 /* If we used it already as memory, it must stay in memory. */
3554 TREE_ADDRESSABLE (decl) = TREE_USED (decl);
3555 /* If it's still incomplete now, no init will save it. */
3556 if (DECL_SIZE (decl) == 0)
3557 DECL_INITIAL (decl) = 0;
3562 /* If this was marked 'used', be sure it will be output. */
3563 if (!flag_unit_at_a_time && lookup_attribute ("used", DECL_ATTRIBUTES (decl)))
3564 mark_decl_referenced (decl);
3566 if (TREE_CODE (decl) == TYPE_DECL)
3568 if (!DECL_FILE_SCOPE_P (decl)
3569 && variably_modified_type_p (TREE_TYPE (decl), NULL_TREE))
3570 add_stmt (build_stmt (DECL_EXPR, decl));
3572 rest_of_decl_compilation (decl, DECL_FILE_SCOPE_P (decl), 0);
3575 /* At the end of a declaration, throw away any variable type sizes
3576 of types defined inside that declaration. There is no use
3577 computing them in the following function definition. */
3578 if (current_scope == file_scope)
3579 get_pending_sizes ();
3581 /* Install a cleanup (aka destructor) if one was given. */
3582 if (TREE_CODE (decl) == VAR_DECL && !TREE_STATIC (decl))
3584 tree attr = lookup_attribute ("cleanup", DECL_ATTRIBUTES (decl));
3585 if (attr)
3587 tree cleanup_id = TREE_VALUE (TREE_VALUE (attr));
3588 tree cleanup_decl = lookup_name (cleanup_id);
3589 tree cleanup;
3591 /* Build "cleanup(&decl)" for the destructor. */
3592 cleanup = build_unary_op (ADDR_EXPR, decl, 0);
3593 cleanup = build_tree_list (NULL_TREE, cleanup);
3594 cleanup = build_function_call (cleanup_decl, cleanup);
3596 /* Don't warn about decl unused; the cleanup uses it. */
3597 TREE_USED (decl) = 1;
3598 TREE_USED (cleanup_decl) = 1;
3600 /* Initialize EH, if we've been told to do so. */
3601 if (flag_exceptions && !c_eh_initialized_p)
3603 c_eh_initialized_p = true;
3604 eh_personality_libfunc
3605 = init_one_libfunc (USING_SJLJ_EXCEPTIONS
3606 ? "__gcc_personality_sj0"
3607 : "__gcc_personality_v0");
3608 default_init_unwind_resume_libfunc ();
3609 using_eh_for_cleanups ();
3612 push_cleanup (decl, cleanup, false);
3617 /* Given a parsed parameter declaration, decode it into a PARM_DECL. */
3619 tree
3620 grokparm (const struct c_parm *parm)
3622 tree decl = grokdeclarator (parm->declarator, parm->specs, PARM, false,
3623 NULL);
3625 decl_attributes (&decl, parm->attrs, 0);
3627 return decl;
3630 /* Given a parsed parameter declaration, decode it into a PARM_DECL
3631 and push that on the current scope. */
3633 void
3634 push_parm_decl (const struct c_parm *parm)
3636 tree decl;
3638 decl = grokdeclarator (parm->declarator, parm->specs, PARM, false, NULL);
3639 decl_attributes (&decl, parm->attrs, 0);
3641 decl = pushdecl (decl);
3643 finish_decl (decl, NULL_TREE, NULL_TREE);
3646 /* Mark all the parameter declarations to date as forward decls.
3647 Also diagnose use of this extension. */
3649 void
3650 mark_forward_parm_decls (void)
3652 struct c_binding *b;
3654 if (pedantic && !current_scope->warned_forward_parm_decls)
3656 pedwarn ("ISO C forbids forward parameter declarations");
3657 current_scope->warned_forward_parm_decls = true;
3660 for (b = current_scope->bindings; b; b = b->prev)
3661 if (TREE_CODE (b->decl) == PARM_DECL)
3662 TREE_ASM_WRITTEN (b->decl) = 1;
3665 /* Build a COMPOUND_LITERAL_EXPR. TYPE is the type given in the compound
3666 literal, which may be an incomplete array type completed by the
3667 initializer; INIT is a CONSTRUCTOR that initializes the compound
3668 literal. */
3670 tree
3671 build_compound_literal (tree type, tree init)
3673 /* We do not use start_decl here because we have a type, not a declarator;
3674 and do not use finish_decl because the decl should be stored inside
3675 the COMPOUND_LITERAL_EXPR rather than added elsewhere as a DECL_EXPR. */
3676 tree decl;
3677 tree complit;
3678 tree stmt;
3680 if (type == error_mark_node)
3681 return error_mark_node;
3683 decl = build_decl (VAR_DECL, NULL_TREE, type);
3684 DECL_EXTERNAL (decl) = 0;
3685 TREE_PUBLIC (decl) = 0;
3686 TREE_STATIC (decl) = (current_scope == file_scope);
3687 DECL_CONTEXT (decl) = current_function_decl;
3688 TREE_USED (decl) = 1;
3689 TREE_TYPE (decl) = type;
3690 TREE_READONLY (decl) = TYPE_READONLY (type);
3691 store_init_value (decl, init);
3693 if (TREE_CODE (type) == ARRAY_TYPE && !COMPLETE_TYPE_P (type))
3695 int failure = complete_array_type (&TREE_TYPE (decl),
3696 DECL_INITIAL (decl), true);
3697 gcc_assert (!failure);
3699 type = TREE_TYPE (decl);
3700 TREE_TYPE (DECL_INITIAL (decl)) = type;
3703 if (type == error_mark_node || !COMPLETE_TYPE_P (type))
3704 return error_mark_node;
3706 stmt = build_stmt (DECL_EXPR, decl);
3707 complit = build1 (COMPOUND_LITERAL_EXPR, type, stmt);
3708 TREE_SIDE_EFFECTS (complit) = 1;
3710 layout_decl (decl, 0);
3712 if (TREE_STATIC (decl))
3714 /* This decl needs a name for the assembler output. */
3715 set_compound_literal_name (decl);
3716 DECL_DEFER_OUTPUT (decl) = 1;
3717 DECL_COMDAT (decl) = 1;
3718 DECL_ARTIFICIAL (decl) = 1;
3719 DECL_IGNORED_P (decl) = 1;
3720 pushdecl (decl);
3721 rest_of_decl_compilation (decl, 1, 0);
3724 return complit;
3727 /* Determine whether TYPE is a structure with a flexible array member,
3728 or a union containing such a structure (possibly recursively). */
3730 static bool
3731 flexible_array_type_p (tree type)
3733 tree x;
3734 switch (TREE_CODE (type))
3736 case RECORD_TYPE:
3737 x = TYPE_FIELDS (type);
3738 if (x == NULL_TREE)
3739 return false;
3740 while (TREE_CHAIN (x) != NULL_TREE)
3741 x = TREE_CHAIN (x);
3742 if (TREE_CODE (TREE_TYPE (x)) == ARRAY_TYPE
3743 && TYPE_SIZE (TREE_TYPE (x)) == NULL_TREE
3744 && TYPE_DOMAIN (TREE_TYPE (x)) != NULL_TREE
3745 && TYPE_MAX_VALUE (TYPE_DOMAIN (TREE_TYPE (x))) == NULL_TREE)
3746 return true;
3747 return false;
3748 case UNION_TYPE:
3749 for (x = TYPE_FIELDS (type); x != NULL_TREE; x = TREE_CHAIN (x))
3751 if (flexible_array_type_p (TREE_TYPE (x)))
3752 return true;
3754 return false;
3755 default:
3756 return false;
3760 /* Performs sanity checks on the TYPE and WIDTH of the bit-field NAME,
3761 replacing with appropriate values if they are invalid. */
3762 static void
3763 check_bitfield_type_and_width (tree *type, tree *width, const char *orig_name)
3765 tree type_mv;
3766 unsigned int max_width;
3767 unsigned HOST_WIDE_INT w;
3768 const char *name = orig_name ? orig_name: _("<anonymous>");
3770 /* Detect and ignore out of range field width and process valid
3771 field widths. */
3772 if (!INTEGRAL_TYPE_P (TREE_TYPE (*width))
3773 || TREE_CODE (*width) != INTEGER_CST)
3775 error ("bit-field %qs width not an integer constant", name);
3776 *width = integer_one_node;
3778 else
3780 constant_expression_warning (*width);
3781 if (tree_int_cst_sgn (*width) < 0)
3783 error ("negative width in bit-field %qs", name);
3784 *width = integer_one_node;
3786 else if (integer_zerop (*width) && orig_name)
3788 error ("zero width for bit-field %qs", name);
3789 *width = integer_one_node;
3793 /* Detect invalid bit-field type. */
3794 if (TREE_CODE (*type) != INTEGER_TYPE
3795 && TREE_CODE (*type) != BOOLEAN_TYPE
3796 && TREE_CODE (*type) != ENUMERAL_TYPE)
3798 error ("bit-field %qs has invalid type", name);
3799 *type = unsigned_type_node;
3802 type_mv = TYPE_MAIN_VARIANT (*type);
3803 if (pedantic
3804 && !in_system_header
3805 && type_mv != integer_type_node
3806 && type_mv != unsigned_type_node
3807 && type_mv != boolean_type_node)
3808 pedwarn ("type of bit-field %qs is a GCC extension", name);
3810 if (type_mv == boolean_type_node)
3811 max_width = CHAR_TYPE_SIZE;
3812 else
3813 max_width = TYPE_PRECISION (*type);
3815 if (0 < compare_tree_int (*width, max_width))
3817 error ("width of %qs exceeds its type", name);
3818 w = max_width;
3819 *width = build_int_cst (NULL_TREE, w);
3821 else
3822 w = tree_low_cst (*width, 1);
3824 if (TREE_CODE (*type) == ENUMERAL_TYPE)
3826 struct lang_type *lt = TYPE_LANG_SPECIFIC (*type);
3827 if (!lt
3828 || w < min_precision (lt->enum_min, TYPE_UNSIGNED (*type))
3829 || w < min_precision (lt->enum_max, TYPE_UNSIGNED (*type)))
3830 warning (0, "%qs is narrower than values of its type", name);
3835 /* Given declspecs and a declarator,
3836 determine the name and type of the object declared
3837 and construct a ..._DECL node for it.
3838 (In one case we can return a ..._TYPE node instead.
3839 For invalid input we sometimes return 0.)
3841 DECLSPECS is a c_declspecs structure for the declaration specifiers.
3843 DECL_CONTEXT says which syntactic context this declaration is in:
3844 NORMAL for most contexts. Make a VAR_DECL or FUNCTION_DECL or TYPE_DECL.
3845 FUNCDEF for a function definition. Like NORMAL but a few different
3846 error messages in each case. Return value may be zero meaning
3847 this definition is too screwy to try to parse.
3848 PARM for a parameter declaration (either within a function prototype
3849 or before a function body). Make a PARM_DECL, or return void_type_node.
3850 TYPENAME if for a typename (in a cast or sizeof).
3851 Don't make a DECL node; just return the ..._TYPE node.
3852 FIELD for a struct or union field; make a FIELD_DECL.
3853 INITIALIZED is true if the decl has an initializer.
3854 WIDTH is non-NULL for bit-fields, and is a pointer to an INTEGER_CST node
3855 representing the width of the bit-field.
3857 In the TYPENAME case, DECLARATOR is really an absolute declarator.
3858 It may also be so in the PARM case, for a prototype where the
3859 argument type is specified but not the name.
3861 This function is where the complicated C meanings of `static'
3862 and `extern' are interpreted. */
3864 static tree
3865 grokdeclarator (const struct c_declarator *declarator,
3866 struct c_declspecs *declspecs,
3867 enum decl_context decl_context, bool initialized, tree *width)
3869 tree type = declspecs->type;
3870 bool threadp = declspecs->thread_p;
3871 enum c_storage_class storage_class = declspecs->storage_class;
3872 int constp;
3873 int restrictp;
3874 int volatilep;
3875 int type_quals = TYPE_UNQUALIFIED;
3876 const char *name, *orig_name;
3877 tree typedef_type = 0;
3878 bool funcdef_flag = false;
3879 bool funcdef_syntax = false;
3880 int size_varies = 0;
3881 tree decl_attr = declspecs->decl_attr;
3882 int array_ptr_quals = TYPE_UNQUALIFIED;
3883 tree array_ptr_attrs = NULL_TREE;
3884 int array_parm_static = 0;
3885 bool array_parm_vla_unspec_p = false;
3886 tree returned_attrs = NULL_TREE;
3887 bool bitfield = width != NULL;
3888 tree element_type;
3889 struct c_arg_info *arg_info = 0;
3891 if (decl_context == FUNCDEF)
3892 funcdef_flag = true, decl_context = NORMAL;
3894 /* Look inside a declarator for the name being declared
3895 and get it as a string, for an error message. */
3897 const struct c_declarator *decl = declarator;
3898 name = 0;
3900 while (decl)
3901 switch (decl->kind)
3903 case cdk_function:
3904 case cdk_array:
3905 case cdk_pointer:
3906 funcdef_syntax = (decl->kind == cdk_function);
3907 decl = decl->declarator;
3908 break;
3910 case cdk_attrs:
3911 decl = decl->declarator;
3912 break;
3914 case cdk_id:
3915 if (decl->u.id)
3916 name = IDENTIFIER_POINTER (decl->u.id);
3917 decl = 0;
3918 break;
3920 default:
3921 gcc_unreachable ();
3923 orig_name = name;
3924 if (name == 0)
3925 name = "type name";
3928 /* A function definition's declarator must have the form of
3929 a function declarator. */
3931 if (funcdef_flag && !funcdef_syntax)
3932 return 0;
3934 /* If this looks like a function definition, make it one,
3935 even if it occurs where parms are expected.
3936 Then store_parm_decls will reject it and not use it as a parm. */
3937 if (decl_context == NORMAL && !funcdef_flag && current_scope->parm_flag)
3938 decl_context = PARM;
3940 if (declspecs->deprecated_p && deprecated_state != DEPRECATED_SUPPRESS)
3941 warn_deprecated_use (declspecs->type);
3943 if ((decl_context == NORMAL || decl_context == FIELD)
3944 && current_scope == file_scope
3945 && variably_modified_type_p (type, NULL_TREE))
3947 error ("variably modified %qs at file scope", name);
3948 type = integer_type_node;
3951 typedef_type = type;
3952 size_varies = C_TYPE_VARIABLE_SIZE (type);
3954 /* Diagnose defaulting to "int". */
3956 if (declspecs->default_int_p && !in_system_header)
3958 /* Issue a warning if this is an ISO C 99 program or if
3959 -Wreturn-type and this is a function, or if -Wimplicit;
3960 prefer the former warning since it is more explicit. */
3961 if ((warn_implicit_int || warn_return_type || flag_isoc99)
3962 && funcdef_flag)
3963 warn_about_return_type = 1;
3964 else if (warn_implicit_int || flag_isoc99)
3965 pedwarn_c99 ("type defaults to %<int%> in declaration of %qs", name);
3968 /* Adjust the type if a bit-field is being declared,
3969 -funsigned-bitfields applied and the type is not explicitly
3970 "signed". */
3971 if (bitfield && !flag_signed_bitfields && !declspecs->explicit_signed_p
3972 && TREE_CODE (type) == INTEGER_TYPE)
3973 type = c_common_unsigned_type (type);
3975 /* Figure out the type qualifiers for the declaration. There are
3976 two ways a declaration can become qualified. One is something
3977 like `const int i' where the `const' is explicit. Another is
3978 something like `typedef const int CI; CI i' where the type of the
3979 declaration contains the `const'. A third possibility is that
3980 there is a type qualifier on the element type of a typedefed
3981 array type, in which case we should extract that qualifier so
3982 that c_apply_type_quals_to_decls receives the full list of
3983 qualifiers to work with (C90 is not entirely clear about whether
3984 duplicate qualifiers should be diagnosed in this case, but it
3985 seems most appropriate to do so). */
3986 element_type = strip_array_types (type);
3987 constp = declspecs->const_p + TYPE_READONLY (element_type);
3988 restrictp = declspecs->restrict_p + TYPE_RESTRICT (element_type);
3989 volatilep = declspecs->volatile_p + TYPE_VOLATILE (element_type);
3990 if (pedantic && !flag_isoc99)
3992 if (constp > 1)
3993 pedwarn ("duplicate %<const%>");
3994 if (restrictp > 1)
3995 pedwarn ("duplicate %<restrict%>");
3996 if (volatilep > 1)
3997 pedwarn ("duplicate %<volatile%>");
3999 if (!flag_gen_aux_info && (TYPE_QUALS (element_type)))
4000 type = TYPE_MAIN_VARIANT (type);
4001 type_quals = ((constp ? TYPE_QUAL_CONST : 0)
4002 | (restrictp ? TYPE_QUAL_RESTRICT : 0)
4003 | (volatilep ? TYPE_QUAL_VOLATILE : 0));
4005 /* Warn about storage classes that are invalid for certain
4006 kinds of declarations (parameters, typenames, etc.). */
4008 if (funcdef_flag
4009 && (threadp
4010 || storage_class == csc_auto
4011 || storage_class == csc_register
4012 || storage_class == csc_typedef))
4014 if (storage_class == csc_auto
4015 && (pedantic || current_scope == file_scope))
4016 pedwarn ("function definition declared %<auto%>");
4017 if (storage_class == csc_register)
4018 error ("function definition declared %<register%>");
4019 if (storage_class == csc_typedef)
4020 error ("function definition declared %<typedef%>");
4021 if (threadp)
4022 error ("function definition declared %<__thread%>");
4023 threadp = false;
4024 if (storage_class == csc_auto
4025 || storage_class == csc_register
4026 || storage_class == csc_typedef)
4027 storage_class = csc_none;
4029 else if (decl_context != NORMAL && (storage_class != csc_none || threadp))
4031 if (decl_context == PARM && storage_class == csc_register)
4033 else
4035 switch (decl_context)
4037 case FIELD:
4038 error ("storage class specified for structure field %qs",
4039 name);
4040 break;
4041 case PARM:
4042 error ("storage class specified for parameter %qs", name);
4043 break;
4044 default:
4045 error ("storage class specified for typename");
4046 break;
4048 storage_class = csc_none;
4049 threadp = false;
4052 else if (storage_class == csc_extern
4053 && initialized
4054 && !funcdef_flag)
4056 /* 'extern' with initialization is invalid if not at file scope. */
4057 if (current_scope == file_scope)
4059 /* It is fine to have 'extern const' when compiling at C
4060 and C++ intersection. */
4061 if (!(warn_cxx_compat && constp))
4062 warning (0, "%qs initialized and declared %<extern%>", name);
4064 else
4065 error ("%qs has both %<extern%> and initializer", name);
4067 else if (current_scope == file_scope)
4069 if (storage_class == csc_auto)
4070 error ("file-scope declaration of %qs specifies %<auto%>", name);
4071 if (pedantic && storage_class == csc_register)
4072 pedwarn ("file-scope declaration of %qs specifies %<register%>", name);
4074 else
4076 if (storage_class == csc_extern && funcdef_flag)
4077 error ("nested function %qs declared %<extern%>", name);
4078 else if (threadp && storage_class == csc_none)
4080 error ("function-scope %qs implicitly auto and declared "
4081 "%<__thread%>",
4082 name);
4083 threadp = false;
4087 /* Now figure out the structure of the declarator proper.
4088 Descend through it, creating more complex types, until we reach
4089 the declared identifier (or NULL_TREE, in an absolute declarator).
4090 At each stage we maintain an unqualified version of the type
4091 together with any qualifiers that should be applied to it with
4092 c_build_qualified_type; this way, array types including
4093 multidimensional array types are first built up in unqualified
4094 form and then the qualified form is created with
4095 TYPE_MAIN_VARIANT pointing to the unqualified form. */
4097 while (declarator && declarator->kind != cdk_id)
4099 if (type == error_mark_node)
4101 declarator = declarator->declarator;
4102 continue;
4105 /* Each level of DECLARATOR is either a cdk_array (for ...[..]),
4106 a cdk_pointer (for *...),
4107 a cdk_function (for ...(...)),
4108 a cdk_attrs (for nested attributes),
4109 or a cdk_id (for the name being declared
4110 or the place in an absolute declarator
4111 where the name was omitted).
4112 For the last case, we have just exited the loop.
4114 At this point, TYPE is the type of elements of an array,
4115 or for a function to return, or for a pointer to point to.
4116 After this sequence of ifs, TYPE is the type of the
4117 array or function or pointer, and DECLARATOR has had its
4118 outermost layer removed. */
4120 if (array_ptr_quals != TYPE_UNQUALIFIED
4121 || array_ptr_attrs != NULL_TREE
4122 || array_parm_static)
4124 /* Only the innermost declarator (making a parameter be of
4125 array type which is converted to pointer type)
4126 may have static or type qualifiers. */
4127 error ("static or type qualifiers in non-parameter array declarator");
4128 array_ptr_quals = TYPE_UNQUALIFIED;
4129 array_ptr_attrs = NULL_TREE;
4130 array_parm_static = 0;
4133 switch (declarator->kind)
4135 case cdk_attrs:
4137 /* A declarator with embedded attributes. */
4138 tree attrs = declarator->u.attrs;
4139 const struct c_declarator *inner_decl;
4140 int attr_flags = 0;
4141 declarator = declarator->declarator;
4142 inner_decl = declarator;
4143 while (inner_decl->kind == cdk_attrs)
4144 inner_decl = inner_decl->declarator;
4145 if (inner_decl->kind == cdk_id)
4146 attr_flags |= (int) ATTR_FLAG_DECL_NEXT;
4147 else if (inner_decl->kind == cdk_function)
4148 attr_flags |= (int) ATTR_FLAG_FUNCTION_NEXT;
4149 else if (inner_decl->kind == cdk_array)
4150 attr_flags |= (int) ATTR_FLAG_ARRAY_NEXT;
4151 returned_attrs = decl_attributes (&type,
4152 chainon (returned_attrs, attrs),
4153 attr_flags);
4154 break;
4156 case cdk_array:
4158 tree itype = NULL_TREE;
4159 tree size = declarator->u.array.dimen;
4160 /* The index is a signed object `sizetype' bits wide. */
4161 tree index_type = c_common_signed_type (sizetype);
4163 array_ptr_quals = declarator->u.array.quals;
4164 array_ptr_attrs = declarator->u.array.attrs;
4165 array_parm_static = declarator->u.array.static_p;
4166 array_parm_vla_unspec_p = declarator->u.array.vla_unspec_p;
4168 declarator = declarator->declarator;
4170 /* Check for some types that there cannot be arrays of. */
4172 if (VOID_TYPE_P (type))
4174 error ("declaration of %qs as array of voids", name);
4175 type = error_mark_node;
4178 if (TREE_CODE (type) == FUNCTION_TYPE)
4180 error ("declaration of %qs as array of functions", name);
4181 type = error_mark_node;
4184 if (pedantic && !in_system_header && flexible_array_type_p (type))
4185 pedwarn ("invalid use of structure with flexible array member");
4187 if (size == error_mark_node)
4188 type = error_mark_node;
4190 if (type == error_mark_node)
4191 continue;
4193 /* If size was specified, set ITYPE to a range-type for
4194 that size. Otherwise, ITYPE remains null. finish_decl
4195 may figure it out from an initial value. */
4197 if (size)
4199 /* Strip NON_LVALUE_EXPRs since we aren't using as an
4200 lvalue. */
4201 STRIP_TYPE_NOPS (size);
4203 if (!INTEGRAL_TYPE_P (TREE_TYPE (size)))
4205 error ("size of array %qs has non-integer type", name);
4206 size = integer_one_node;
4209 if (pedantic && integer_zerop (size))
4210 pedwarn ("ISO C forbids zero-size array %qs", name);
4212 if (TREE_CODE (size) == INTEGER_CST)
4214 constant_expression_warning (size);
4215 if (tree_int_cst_sgn (size) < 0)
4217 error ("size of array %qs is negative", name);
4218 size = integer_one_node;
4221 else if ((decl_context == NORMAL || decl_context == FIELD)
4222 && current_scope == file_scope)
4224 error ("variably modified %qs at file scope", name);
4225 size = integer_one_node;
4227 else
4229 /* Make sure the array size remains visibly
4230 nonconstant even if it is (eg) a const variable
4231 with known value. */
4232 size_varies = 1;
4234 if (!flag_isoc99 && pedantic)
4236 if (TREE_CONSTANT (size))
4237 pedwarn ("ISO C90 forbids array %qs whose size "
4238 "can%'t be evaluated",
4239 name);
4240 else
4241 pedwarn ("ISO C90 forbids variable-size array %qs",
4242 name);
4246 if (integer_zerop (size))
4248 /* A zero-length array cannot be represented with
4249 an unsigned index type, which is what we'll
4250 get with build_index_type. Create an
4251 open-ended range instead. */
4252 itype = build_range_type (sizetype, size, NULL_TREE);
4254 else
4256 /* Arrange for the SAVE_EXPR on the inside of the
4257 MINUS_EXPR, which allows the -1 to get folded
4258 with the +1 that happens when building TYPE_SIZE. */
4259 if (size_varies)
4260 size = variable_size (size);
4262 /* Compute the maximum valid index, that is, size
4263 - 1. Do the calculation in index_type, so that
4264 if it is a variable the computations will be
4265 done in the proper mode. */
4266 itype = fold_build2 (MINUS_EXPR, index_type,
4267 convert (index_type, size),
4268 convert (index_type,
4269 size_one_node));
4271 /* If that overflowed, the array is too big. ???
4272 While a size of INT_MAX+1 technically shouldn't
4273 cause an overflow (because we subtract 1), the
4274 overflow is recorded during the conversion to
4275 index_type, before the subtraction. Handling
4276 this case seems like an unnecessary
4277 complication. */
4278 if (TREE_CODE (itype) == INTEGER_CST
4279 && TREE_OVERFLOW (itype))
4281 error ("size of array %qs is too large", name);
4282 type = error_mark_node;
4283 continue;
4286 itype = build_index_type (itype);
4289 else if (decl_context == FIELD)
4291 if (pedantic && !flag_isoc99 && !in_system_header)
4292 pedwarn ("ISO C90 does not support flexible array members");
4294 /* ISO C99 Flexible array members are effectively
4295 identical to GCC's zero-length array extension. */
4296 itype = build_range_type (sizetype, size_zero_node, NULL_TREE);
4298 else if (decl_context == PARM)
4300 if (array_parm_vla_unspec_p)
4302 if (! orig_name)
4304 /* C99 6.7.5.2p4 */
4305 error ("%<[*]%> not allowed in other than a declaration");
4308 itype = build_range_type (sizetype, size_zero_node, NULL_TREE);
4309 size_varies = 1;
4312 else if (decl_context == TYPENAME)
4314 if (array_parm_vla_unspec_p)
4316 /* The error is printed elsewhere. We use this to
4317 avoid messing up with incomplete array types of
4318 the same type, that would otherwise be modified
4319 below. */
4320 itype = build_range_type (sizetype, size_zero_node,
4321 NULL_TREE);
4325 /* Complain about arrays of incomplete types. */
4326 if (!COMPLETE_TYPE_P (type))
4328 error ("array type has incomplete element type");
4329 type = error_mark_node;
4331 else
4332 /* When itype is NULL, a shared incomplete array type is
4333 returned for all array of a given type. Elsewhere we
4334 make sure we don't complete that type before copying
4335 it, but here we want to make sure we don't ever
4336 modify the shared type, so we gcc_assert (itype)
4337 below. */
4338 type = build_array_type (type, itype);
4340 if (type != error_mark_node)
4342 if (size_varies)
4344 /* It is ok to modify type here even if itype is
4345 NULL: if size_varies, we're in a
4346 multi-dimensional array and the inner type has
4347 variable size, so the enclosing shared array type
4348 must too. */
4349 if (size && TREE_CODE (size) == INTEGER_CST)
4350 type
4351 = build_distinct_type_copy (TYPE_MAIN_VARIANT (type));
4352 C_TYPE_VARIABLE_SIZE (type) = 1;
4355 /* The GCC extension for zero-length arrays differs from
4356 ISO flexible array members in that sizeof yields
4357 zero. */
4358 if (size && integer_zerop (size))
4360 gcc_assert (itype);
4361 TYPE_SIZE (type) = bitsize_zero_node;
4362 TYPE_SIZE_UNIT (type) = size_zero_node;
4364 if (array_parm_vla_unspec_p)
4366 gcc_assert (itype);
4367 /* The type is complete. C99 6.7.5.2p4 */
4368 TYPE_SIZE (type) = bitsize_zero_node;
4369 TYPE_SIZE_UNIT (type) = size_zero_node;
4373 if (decl_context != PARM
4374 && (array_ptr_quals != TYPE_UNQUALIFIED
4375 || array_ptr_attrs != NULL_TREE
4376 || array_parm_static))
4378 error ("static or type qualifiers in non-parameter array declarator");
4379 array_ptr_quals = TYPE_UNQUALIFIED;
4380 array_ptr_attrs = NULL_TREE;
4381 array_parm_static = 0;
4383 break;
4385 case cdk_function:
4387 /* Say it's a definition only for the declarator closest
4388 to the identifier, apart possibly from some
4389 attributes. */
4390 bool really_funcdef = false;
4391 tree arg_types;
4392 if (funcdef_flag)
4394 const struct c_declarator *t = declarator->declarator;
4395 while (t->kind == cdk_attrs)
4396 t = t->declarator;
4397 really_funcdef = (t->kind == cdk_id);
4400 /* Declaring a function type. Make sure we have a valid
4401 type for the function to return. */
4402 if (type == error_mark_node)
4403 continue;
4405 size_varies = 0;
4407 /* Warn about some types functions can't return. */
4408 if (TREE_CODE (type) == FUNCTION_TYPE)
4410 error ("%qs declared as function returning a function", name);
4411 type = integer_type_node;
4413 if (TREE_CODE (type) == ARRAY_TYPE)
4415 error ("%qs declared as function returning an array", name);
4416 type = integer_type_node;
4419 /* Construct the function type and go to the next
4420 inner layer of declarator. */
4421 arg_info = declarator->u.arg_info;
4422 arg_types = grokparms (arg_info, really_funcdef);
4424 /* Type qualifiers before the return type of the function
4425 qualify the return type, not the function type. */
4426 if (type_quals)
4428 /* Type qualifiers on a function return type are
4429 normally permitted by the standard but have no
4430 effect, so give a warning at -Wreturn-type.
4431 Qualifiers on a void return type are banned on
4432 function definitions in ISO C; GCC used to used
4433 them for noreturn functions. */
4434 if (VOID_TYPE_P (type) && really_funcdef)
4435 pedwarn ("function definition has qualified void return type");
4436 else
4437 warning (OPT_Wreturn_type,
4438 "type qualifiers ignored on function return type");
4440 type = c_build_qualified_type (type, type_quals);
4442 type_quals = TYPE_UNQUALIFIED;
4444 type = build_function_type (type, arg_types);
4445 declarator = declarator->declarator;
4447 /* Set the TYPE_CONTEXTs for each tagged type which is local to
4448 the formal parameter list of this FUNCTION_TYPE to point to
4449 the FUNCTION_TYPE node itself. */
4451 tree link;
4453 for (link = arg_info->tags;
4454 link;
4455 link = TREE_CHAIN (link))
4456 TYPE_CONTEXT (TREE_VALUE (link)) = type;
4458 break;
4460 case cdk_pointer:
4462 /* Merge any constancy or volatility into the target type
4463 for the pointer. */
4465 if (pedantic && TREE_CODE (type) == FUNCTION_TYPE
4466 && type_quals)
4467 pedwarn ("ISO C forbids qualified function types");
4468 if (type_quals)
4469 type = c_build_qualified_type (type, type_quals);
4470 size_varies = 0;
4472 type = build_pointer_type (type);
4474 /* Process type qualifiers (such as const or volatile)
4475 that were given inside the `*'. */
4476 type_quals = declarator->u.pointer_quals;
4478 declarator = declarator->declarator;
4479 break;
4481 default:
4482 gcc_unreachable ();
4486 /* Now TYPE has the actual type, apart from any qualifiers in
4487 TYPE_QUALS. */
4489 /* Check the type and width of a bit-field. */
4490 if (bitfield)
4491 check_bitfield_type_and_width (&type, width, orig_name);
4493 /* Did array size calculations overflow? */
4495 if (TREE_CODE (type) == ARRAY_TYPE
4496 && COMPLETE_TYPE_P (type)
4497 && TREE_CODE (TYPE_SIZE_UNIT (type)) == INTEGER_CST
4498 && TREE_OVERFLOW (TYPE_SIZE_UNIT (type)))
4500 error ("size of array %qs is too large", name);
4501 /* If we proceed with the array type as it is, we'll eventually
4502 crash in tree_low_cst(). */
4503 type = error_mark_node;
4506 /* If this is declaring a typedef name, return a TYPE_DECL. */
4508 if (storage_class == csc_typedef)
4510 tree decl;
4511 if (pedantic && TREE_CODE (type) == FUNCTION_TYPE
4512 && type_quals)
4513 pedwarn ("ISO C forbids qualified function types");
4514 if (type_quals)
4515 type = c_build_qualified_type (type, type_quals);
4516 decl = build_decl (TYPE_DECL, declarator->u.id, type);
4517 if (declspecs->explicit_signed_p)
4518 C_TYPEDEF_EXPLICITLY_SIGNED (decl) = 1;
4519 decl_attributes (&decl, returned_attrs, 0);
4520 if (declspecs->inline_p)
4521 pedwarn ("typedef %q+D declared %<inline%>", decl);
4522 return decl;
4525 /* If this is a type name (such as, in a cast or sizeof),
4526 compute the type and return it now. */
4528 if (decl_context == TYPENAME)
4530 /* Note that the grammar rejects storage classes in typenames
4531 and fields. */
4532 gcc_assert (storage_class == csc_none && !threadp
4533 && !declspecs->inline_p);
4534 if (pedantic && TREE_CODE (type) == FUNCTION_TYPE
4535 && type_quals)
4536 pedwarn ("ISO C forbids const or volatile function types");
4537 if (type_quals)
4538 type = c_build_qualified_type (type, type_quals);
4539 decl_attributes (&type, returned_attrs, 0);
4540 return type;
4543 if (pedantic && decl_context == FIELD
4544 && variably_modified_type_p (type, NULL_TREE))
4546 /* C99 6.7.2.1p8 */
4547 pedwarn ("a member of a structure or union cannot have a variably modified type");
4550 /* Aside from typedefs and type names (handle above),
4551 `void' at top level (not within pointer)
4552 is allowed only in public variables.
4553 We don't complain about parms either, but that is because
4554 a better error message can be made later. */
4556 if (VOID_TYPE_P (type) && decl_context != PARM
4557 && !((decl_context != FIELD && TREE_CODE (type) != FUNCTION_TYPE)
4558 && (storage_class == csc_extern
4559 || (current_scope == file_scope
4560 && !(storage_class == csc_static
4561 || storage_class == csc_register)))))
4563 error ("variable or field %qs declared void", name);
4564 type = integer_type_node;
4567 /* Now create the decl, which may be a VAR_DECL, a PARM_DECL
4568 or a FUNCTION_DECL, depending on DECL_CONTEXT and TYPE. */
4571 tree decl;
4573 if (decl_context == PARM)
4575 tree type_as_written;
4576 tree promoted_type;
4578 /* A parameter declared as an array of T is really a pointer to T.
4579 One declared as a function is really a pointer to a function. */
4581 if (TREE_CODE (type) == ARRAY_TYPE)
4583 /* Transfer const-ness of array into that of type pointed to. */
4584 type = TREE_TYPE (type);
4585 if (type_quals)
4586 type = c_build_qualified_type (type, type_quals);
4587 type = build_pointer_type (type);
4588 type_quals = array_ptr_quals;
4590 /* We don't yet implement attributes in this context. */
4591 if (array_ptr_attrs != NULL_TREE)
4592 warning (OPT_Wattributes,
4593 "attributes in parameter array declarator ignored");
4595 size_varies = 0;
4597 else if (TREE_CODE (type) == FUNCTION_TYPE)
4599 if (pedantic && type_quals)
4600 pedwarn ("ISO C forbids qualified function types");
4601 if (type_quals)
4602 type = c_build_qualified_type (type, type_quals);
4603 type = build_pointer_type (type);
4604 type_quals = TYPE_UNQUALIFIED;
4606 else if (type_quals)
4607 type = c_build_qualified_type (type, type_quals);
4609 type_as_written = type;
4611 decl = build_decl (PARM_DECL, declarator->u.id, type);
4612 if (size_varies)
4613 C_DECL_VARIABLE_SIZE (decl) = 1;
4615 /* Compute the type actually passed in the parmlist,
4616 for the case where there is no prototype.
4617 (For example, shorts and chars are passed as ints.)
4618 When there is a prototype, this is overridden later. */
4620 if (type == error_mark_node)
4621 promoted_type = type;
4622 else
4623 promoted_type = c_type_promotes_to (type);
4625 DECL_ARG_TYPE (decl) = promoted_type;
4626 if (declspecs->inline_p)
4627 pedwarn ("parameter %q+D declared %<inline%>", decl);
4629 else if (decl_context == FIELD)
4631 /* Note that the grammar rejects storage classes in typenames
4632 and fields. */
4633 gcc_assert (storage_class == csc_none && !threadp
4634 && !declspecs->inline_p);
4636 /* Structure field. It may not be a function. */
4638 if (TREE_CODE (type) == FUNCTION_TYPE)
4640 error ("field %qs declared as a function", name);
4641 type = build_pointer_type (type);
4643 else if (TREE_CODE (type) != ERROR_MARK
4644 && !COMPLETE_OR_UNBOUND_ARRAY_TYPE_P (type))
4646 error ("field %qs has incomplete type", name);
4647 type = error_mark_node;
4649 type = c_build_qualified_type (type, type_quals);
4650 decl = build_decl (FIELD_DECL, declarator->u.id, type);
4651 DECL_NONADDRESSABLE_P (decl) = bitfield;
4653 if (size_varies)
4654 C_DECL_VARIABLE_SIZE (decl) = 1;
4656 else if (TREE_CODE (type) == FUNCTION_TYPE)
4658 if (storage_class == csc_register || threadp)
4660 error ("invalid storage class for function %qs", name);
4662 else if (current_scope != file_scope)
4664 /* Function declaration not at file scope. Storage
4665 classes other than `extern' are not allowed, C99
4666 6.7.1p5, and `extern' makes no difference. However,
4667 GCC allows 'auto', perhaps with 'inline', to support
4668 nested functions. */
4669 if (storage_class == csc_auto)
4671 if (pedantic)
4672 pedwarn ("invalid storage class for function %qs", name);
4674 else if (storage_class == csc_static)
4676 error ("invalid storage class for function %qs", name);
4677 if (funcdef_flag)
4678 storage_class = declspecs->storage_class = csc_none;
4679 else
4680 return 0;
4684 decl = build_decl (FUNCTION_DECL, declarator->u.id, type);
4685 decl = build_decl_attribute_variant (decl, decl_attr);
4687 DECL_LANG_SPECIFIC (decl) = GGC_CNEW (struct lang_decl);
4689 if (pedantic && type_quals && !DECL_IN_SYSTEM_HEADER (decl))
4690 pedwarn ("ISO C forbids qualified function types");
4692 /* GNU C interprets a volatile-qualified function type to indicate
4693 that the function does not return. */
4694 if ((type_quals & TYPE_QUAL_VOLATILE)
4695 && !VOID_TYPE_P (TREE_TYPE (TREE_TYPE (decl))))
4696 warning (0, "%<noreturn%> function returns non-void value");
4698 /* Every function declaration is an external reference
4699 (DECL_EXTERNAL) except for those which are not at file
4700 scope and are explicitly declared "auto". This is
4701 forbidden by standard C (C99 6.7.1p5) and is interpreted by
4702 GCC to signify a forward declaration of a nested function. */
4703 if (storage_class == csc_auto && current_scope != file_scope)
4704 DECL_EXTERNAL (decl) = 0;
4705 else
4706 DECL_EXTERNAL (decl) = 1;
4708 /* Record absence of global scope for `static' or `auto'. */
4709 TREE_PUBLIC (decl)
4710 = !(storage_class == csc_static || storage_class == csc_auto);
4712 /* For a function definition, record the argument information
4713 block where store_parm_decls will look for it. */
4714 if (funcdef_flag)
4715 current_function_arg_info = arg_info;
4717 if (declspecs->default_int_p)
4718 C_FUNCTION_IMPLICIT_INT (decl) = 1;
4720 /* Record presence of `inline', if it is reasonable. */
4721 if (flag_hosted && MAIN_NAME_P (declarator->u.id))
4723 if (declspecs->inline_p)
4724 pedwarn ("cannot inline function %<main%>");
4726 else if (declspecs->inline_p)
4728 /* Record that the function is declared `inline'. */
4729 DECL_DECLARED_INLINE_P (decl) = 1;
4731 /* Do not mark bare declarations as DECL_INLINE. Doing so
4732 in the presence of multiple declarations can result in
4733 the abstract origin pointing between the declarations,
4734 which will confuse dwarf2out. */
4735 if (initialized)
4737 DECL_INLINE (decl) = 1;
4738 if (storage_class == csc_extern)
4739 current_extern_inline = 1;
4742 /* If -finline-functions, assume it can be inlined. This does
4743 two things: let the function be deferred until it is actually
4744 needed, and let dwarf2 know that the function is inlinable. */
4745 else if (flag_inline_trees == 2 && initialized)
4746 DECL_INLINE (decl) = 1;
4748 else
4750 /* It's a variable. */
4751 /* An uninitialized decl with `extern' is a reference. */
4752 int extern_ref = !initialized && storage_class == csc_extern;
4754 type = c_build_qualified_type (type, type_quals);
4756 /* C99 6.2.2p7: It is invalid (compile-time undefined
4757 behavior) to create an 'extern' declaration for a
4758 variable if there is a global declaration that is
4759 'static' and the global declaration is not visible.
4760 (If the static declaration _is_ currently visible,
4761 the 'extern' declaration is taken to refer to that decl.) */
4762 if (extern_ref && current_scope != file_scope)
4764 tree global_decl = identifier_global_value (declarator->u.id);
4765 tree visible_decl = lookup_name (declarator->u.id);
4767 if (global_decl
4768 && global_decl != visible_decl
4769 && TREE_CODE (global_decl) == VAR_DECL
4770 && !TREE_PUBLIC (global_decl))
4771 error ("variable previously declared %<static%> redeclared "
4772 "%<extern%>");
4775 decl = build_decl (VAR_DECL, declarator->u.id, type);
4776 DECL_SOURCE_LOCATION (decl) = declarator->id_loc;
4777 if (size_varies)
4778 C_DECL_VARIABLE_SIZE (decl) = 1;
4780 if (declspecs->inline_p)
4781 pedwarn ("variable %q+D declared %<inline%>", decl);
4783 /* At file scope, an initialized extern declaration may follow
4784 a static declaration. In that case, DECL_EXTERNAL will be
4785 reset later in start_decl. */
4786 DECL_EXTERNAL (decl) = (storage_class == csc_extern);
4788 /* At file scope, the presence of a `static' or `register' storage
4789 class specifier, or the absence of all storage class specifiers
4790 makes this declaration a definition (perhaps tentative). Also,
4791 the absence of `static' makes it public. */
4792 if (current_scope == file_scope)
4794 TREE_PUBLIC (decl) = storage_class != csc_static;
4795 TREE_STATIC (decl) = !extern_ref;
4797 /* Not at file scope, only `static' makes a static definition. */
4798 else
4800 TREE_STATIC (decl) = (storage_class == csc_static);
4801 TREE_PUBLIC (decl) = extern_ref;
4804 if (threadp)
4806 if (targetm.have_tls)
4807 DECL_TLS_MODEL (decl) = decl_default_tls_model (decl);
4808 else
4809 /* A mere warning is sure to result in improper semantics
4810 at runtime. Don't bother to allow this to compile. */
4811 error ("thread-local storage not supported for this target");
4815 if (storage_class == csc_extern
4816 && variably_modified_type_p (type, NULL_TREE))
4818 /* C99 6.7.5.2p2 */
4819 error ("object with variably modified type must have no linkage");
4822 /* Record `register' declaration for warnings on &
4823 and in case doing stupid register allocation. */
4825 if (storage_class == csc_register)
4827 C_DECL_REGISTER (decl) = 1;
4828 DECL_REGISTER (decl) = 1;
4831 /* Record constancy and volatility. */
4832 c_apply_type_quals_to_decl (type_quals, decl);
4834 /* If a type has volatile components, it should be stored in memory.
4835 Otherwise, the fact that those components are volatile
4836 will be ignored, and would even crash the compiler.
4837 Of course, this only makes sense on VAR,PARM, and RESULT decl's. */
4838 if (C_TYPE_FIELDS_VOLATILE (TREE_TYPE (decl))
4839 && (TREE_CODE (decl) == VAR_DECL || TREE_CODE (decl) == PARM_DECL
4840 || TREE_CODE (decl) == RESULT_DECL))
4842 /* It is not an error for a structure with volatile fields to
4843 be declared register, but reset DECL_REGISTER since it
4844 cannot actually go in a register. */
4845 int was_reg = C_DECL_REGISTER (decl);
4846 C_DECL_REGISTER (decl) = 0;
4847 DECL_REGISTER (decl) = 0;
4848 c_mark_addressable (decl);
4849 C_DECL_REGISTER (decl) = was_reg;
4852 /* This is the earliest point at which we might know the assembler
4853 name of a variable. Thus, if it's known before this, die horribly. */
4854 gcc_assert (!DECL_ASSEMBLER_NAME_SET_P (decl));
4856 decl_attributes (&decl, returned_attrs, 0);
4858 return decl;
4862 /* Decode the parameter-list info for a function type or function definition.
4863 The argument is the value returned by `get_parm_info' (or made in c-parse.c
4864 if there is an identifier list instead of a parameter decl list).
4865 These two functions are separate because when a function returns
4866 or receives functions then each is called multiple times but the order
4867 of calls is different. The last call to `grokparms' is always the one
4868 that contains the formal parameter names of a function definition.
4870 Return a list of arg types to use in the FUNCTION_TYPE for this function.
4872 FUNCDEF_FLAG is true for a function definition, false for
4873 a mere declaration. A nonempty identifier-list gets an error message
4874 when FUNCDEF_FLAG is false. */
4876 static tree
4877 grokparms (struct c_arg_info *arg_info, bool funcdef_flag)
4879 tree arg_types = arg_info->types;
4881 if (funcdef_flag && arg_info->had_vla_unspec)
4883 /* A function definition isn't function prototype scope C99 6.2.1p4. */
4884 /* C99 6.7.5.2p4 */
4885 error ("%<[*]%> not allowed in other than function prototype scope");
4888 if (arg_types == 0 && !funcdef_flag && !in_system_header)
4889 warning (OPT_Wstrict_prototypes,
4890 "function declaration isn%'t a prototype");
4892 if (arg_types == error_mark_node)
4893 return 0; /* don't set TYPE_ARG_TYPES in this case */
4895 else if (arg_types && TREE_CODE (TREE_VALUE (arg_types)) == IDENTIFIER_NODE)
4897 if (!funcdef_flag)
4898 pedwarn ("parameter names (without types) in function declaration");
4900 arg_info->parms = arg_info->types;
4901 arg_info->types = 0;
4902 return 0;
4904 else
4906 tree parm, type, typelt;
4907 unsigned int parmno;
4909 /* If there is a parameter of incomplete type in a definition,
4910 this is an error. In a declaration this is valid, and a
4911 struct or union type may be completed later, before any calls
4912 or definition of the function. In the case where the tag was
4913 first declared within the parameter list, a warning has
4914 already been given. If a parameter has void type, then
4915 however the function cannot be defined or called, so
4916 warn. */
4918 for (parm = arg_info->parms, typelt = arg_types, parmno = 1;
4919 parm;
4920 parm = TREE_CHAIN (parm), typelt = TREE_CHAIN (typelt), parmno++)
4922 type = TREE_VALUE (typelt);
4923 if (type == error_mark_node)
4924 continue;
4926 if (!COMPLETE_TYPE_P (type))
4928 if (funcdef_flag)
4930 if (DECL_NAME (parm))
4931 error ("parameter %u (%q+D) has incomplete type",
4932 parmno, parm);
4933 else
4934 error ("%Jparameter %u has incomplete type",
4935 parm, parmno);
4937 TREE_VALUE (typelt) = error_mark_node;
4938 TREE_TYPE (parm) = error_mark_node;
4940 else if (VOID_TYPE_P (type))
4942 if (DECL_NAME (parm))
4943 warning (0, "parameter %u (%q+D) has void type",
4944 parmno, parm);
4945 else
4946 warning (0, "%Jparameter %u has void type",
4947 parm, parmno);
4951 if (DECL_NAME (parm) && TREE_USED (parm))
4952 warn_if_shadowing (parm);
4954 return arg_types;
4958 /* Take apart the current scope and return a c_arg_info structure with
4959 info on a parameter list just parsed.
4961 This structure is later fed to 'grokparms' and 'store_parm_decls'.
4963 ELLIPSIS being true means the argument list ended in '...' so don't
4964 append a sentinel (void_list_node) to the end of the type-list. */
4966 struct c_arg_info *
4967 get_parm_info (bool ellipsis)
4969 struct c_binding *b = current_scope->bindings;
4970 struct c_arg_info *arg_info = XOBNEW (&parser_obstack,
4971 struct c_arg_info);
4972 tree parms = 0;
4973 tree tags = 0;
4974 tree types = 0;
4975 tree others = 0;
4977 static bool explained_incomplete_types = false;
4978 bool gave_void_only_once_err = false;
4980 arg_info->parms = 0;
4981 arg_info->tags = 0;
4982 arg_info->types = 0;
4983 arg_info->others = 0;
4984 arg_info->had_vla_unspec = current_scope->had_vla_unspec;
4986 /* The bindings in this scope must not get put into a block.
4987 We will take care of deleting the binding nodes. */
4988 current_scope->bindings = 0;
4990 /* This function is only called if there was *something* on the
4991 parameter list. */
4992 gcc_assert (b);
4994 /* A parameter list consisting solely of 'void' indicates that the
4995 function takes no arguments. But if the 'void' is qualified
4996 (by 'const' or 'volatile'), or has a storage class specifier
4997 ('register'), then the behavior is undefined; issue an error.
4998 Typedefs for 'void' are OK (see DR#157). */
4999 if (b->prev == 0 /* one binding */
5000 && TREE_CODE (b->decl) == PARM_DECL /* which is a parameter */
5001 && !DECL_NAME (b->decl) /* anonymous */
5002 && VOID_TYPE_P (TREE_TYPE (b->decl))) /* of void type */
5004 if (TREE_THIS_VOLATILE (b->decl)
5005 || TREE_READONLY (b->decl)
5006 || C_DECL_REGISTER (b->decl))
5007 error ("%<void%> as only parameter may not be qualified");
5009 /* There cannot be an ellipsis. */
5010 if (ellipsis)
5011 error ("%<void%> must be the only parameter");
5013 arg_info->types = void_list_node;
5014 return arg_info;
5017 if (!ellipsis)
5018 types = void_list_node;
5020 /* Break up the bindings list into parms, tags, types, and others;
5021 apply sanity checks; purge the name-to-decl bindings. */
5022 while (b)
5024 tree decl = b->decl;
5025 tree type = TREE_TYPE (decl);
5026 const char *keyword;
5028 switch (TREE_CODE (decl))
5030 case PARM_DECL:
5031 if (b->id)
5033 gcc_assert (I_SYMBOL_BINDING (b->id) == b);
5034 I_SYMBOL_BINDING (b->id) = b->shadowed;
5037 /* Check for forward decls that never got their actual decl. */
5038 if (TREE_ASM_WRITTEN (decl))
5039 error ("parameter %q+D has just a forward declaration", decl);
5040 /* Check for (..., void, ...) and issue an error. */
5041 else if (VOID_TYPE_P (type) && !DECL_NAME (decl))
5043 if (!gave_void_only_once_err)
5045 error ("%<void%> must be the only parameter");
5046 gave_void_only_once_err = true;
5049 else
5051 /* Valid parameter, add it to the list. */
5052 TREE_CHAIN (decl) = parms;
5053 parms = decl;
5055 /* Since there is a prototype, args are passed in their
5056 declared types. The back end may override this later. */
5057 DECL_ARG_TYPE (decl) = type;
5058 types = tree_cons (0, type, types);
5060 break;
5062 case ENUMERAL_TYPE: keyword = "enum"; goto tag;
5063 case UNION_TYPE: keyword = "union"; goto tag;
5064 case RECORD_TYPE: keyword = "struct"; goto tag;
5065 tag:
5066 /* Types may not have tag-names, in which case the type
5067 appears in the bindings list with b->id NULL. */
5068 if (b->id)
5070 gcc_assert (I_TAG_BINDING (b->id) == b);
5071 I_TAG_BINDING (b->id) = b->shadowed;
5074 /* Warn about any struct, union or enum tags defined in a
5075 parameter list. The scope of such types is limited to
5076 the parameter list, which is rarely if ever desirable
5077 (it's impossible to call such a function with type-
5078 correct arguments). An anonymous union parm type is
5079 meaningful as a GNU extension, so don't warn for that. */
5080 if (TREE_CODE (decl) != UNION_TYPE || b->id != 0)
5082 if (b->id)
5083 /* The %s will be one of 'struct', 'union', or 'enum'. */
5084 warning (0, "%<%s %E%> declared inside parameter list",
5085 keyword, b->id);
5086 else
5087 /* The %s will be one of 'struct', 'union', or 'enum'. */
5088 warning (0, "anonymous %s declared inside parameter list",
5089 keyword);
5091 if (!explained_incomplete_types)
5093 warning (0, "its scope is only this definition or declaration,"
5094 " which is probably not what you want");
5095 explained_incomplete_types = true;
5099 tags = tree_cons (b->id, decl, tags);
5100 break;
5102 case CONST_DECL:
5103 case TYPE_DECL:
5104 case FUNCTION_DECL:
5105 /* CONST_DECLs appear here when we have an embedded enum,
5106 and TYPE_DECLs appear here when we have an embedded struct
5107 or union. No warnings for this - we already warned about the
5108 type itself. FUNCTION_DECLs appear when there is an implicit
5109 function declaration in the parameter list. */
5111 TREE_CHAIN (decl) = others;
5112 others = decl;
5113 /* fall through */
5115 case ERROR_MARK:
5116 /* error_mark_node appears here when we have an undeclared
5117 variable. Just throw it away. */
5118 if (b->id)
5120 gcc_assert (I_SYMBOL_BINDING (b->id) == b);
5121 I_SYMBOL_BINDING (b->id) = b->shadowed;
5123 break;
5125 /* Other things that might be encountered. */
5126 case LABEL_DECL:
5127 case VAR_DECL:
5128 default:
5129 gcc_unreachable ();
5132 b = free_binding_and_advance (b);
5135 arg_info->parms = parms;
5136 arg_info->tags = tags;
5137 arg_info->types = types;
5138 arg_info->others = others;
5139 return arg_info;
5142 /* Get the struct, enum or union (CODE says which) with tag NAME.
5143 Define the tag as a forward-reference if it is not defined.
5144 Return a c_typespec structure for the type specifier. */
5146 struct c_typespec
5147 parser_xref_tag (enum tree_code code, tree name)
5149 struct c_typespec ret;
5150 /* If a cross reference is requested, look up the type
5151 already defined for this tag and return it. */
5153 tree ref = lookup_tag (code, name, 0);
5154 /* If this is the right type of tag, return what we found.
5155 (This reference will be shadowed by shadow_tag later if appropriate.)
5156 If this is the wrong type of tag, do not return it. If it was the
5157 wrong type in the same scope, we will have had an error
5158 message already; if in a different scope and declaring
5159 a name, pending_xref_error will give an error message; but if in a
5160 different scope and not declaring a name, this tag should
5161 shadow the previous declaration of a different type of tag, and
5162 this would not work properly if we return the reference found.
5163 (For example, with "struct foo" in an outer scope, "union foo;"
5164 must shadow that tag with a new one of union type.) */
5165 ret.kind = (ref ? ctsk_tagref : ctsk_tagfirstref);
5166 if (ref && TREE_CODE (ref) == code)
5168 ret.spec = ref;
5169 return ret;
5172 /* If no such tag is yet defined, create a forward-reference node
5173 and record it as the "definition".
5174 When a real declaration of this type is found,
5175 the forward-reference will be altered into a real type. */
5177 ref = make_node (code);
5178 if (code == ENUMERAL_TYPE)
5180 /* Give the type a default layout like unsigned int
5181 to avoid crashing if it does not get defined. */
5182 TYPE_MODE (ref) = TYPE_MODE (unsigned_type_node);
5183 TYPE_ALIGN (ref) = TYPE_ALIGN (unsigned_type_node);
5184 TYPE_USER_ALIGN (ref) = 0;
5185 TYPE_UNSIGNED (ref) = 1;
5186 TYPE_PRECISION (ref) = TYPE_PRECISION (unsigned_type_node);
5187 TYPE_MIN_VALUE (ref) = TYPE_MIN_VALUE (unsigned_type_node);
5188 TYPE_MAX_VALUE (ref) = TYPE_MAX_VALUE (unsigned_type_node);
5191 pushtag (name, ref);
5193 ret.spec = ref;
5194 return ret;
5197 /* Get the struct, enum or union (CODE says which) with tag NAME.
5198 Define the tag as a forward-reference if it is not defined.
5199 Return a tree for the type. */
5201 tree
5202 xref_tag (enum tree_code code, tree name)
5204 return parser_xref_tag (code, name).spec;
5207 /* Make sure that the tag NAME is defined *in the current scope*
5208 at least as a forward reference.
5209 CODE says which kind of tag NAME ought to be. */
5211 tree
5212 start_struct (enum tree_code code, tree name)
5214 /* If there is already a tag defined at this scope
5215 (as a forward reference), just return it. */
5217 tree ref = 0;
5219 if (name != 0)
5220 ref = lookup_tag (code, name, 1);
5221 if (ref && TREE_CODE (ref) == code)
5223 if (TYPE_SIZE (ref))
5225 if (code == UNION_TYPE)
5226 error ("redefinition of %<union %E%>", name);
5227 else
5228 error ("redefinition of %<struct %E%>", name);
5230 else if (C_TYPE_BEING_DEFINED (ref))
5232 if (code == UNION_TYPE)
5233 error ("nested redefinition of %<union %E%>", name);
5234 else
5235 error ("nested redefinition of %<struct %E%>", name);
5238 else
5240 /* Otherwise create a forward-reference just so the tag is in scope. */
5242 ref = make_node (code);
5243 pushtag (name, ref);
5246 C_TYPE_BEING_DEFINED (ref) = 1;
5247 TYPE_PACKED (ref) = flag_pack_struct;
5248 return ref;
5251 /* Process the specs, declarator and width (NULL if omitted)
5252 of a structure component, returning a FIELD_DECL node.
5253 WIDTH is non-NULL for bit-fields only, and is an INTEGER_CST node.
5255 This is done during the parsing of the struct declaration.
5256 The FIELD_DECL nodes are chained together and the lot of them
5257 are ultimately passed to `build_struct' to make the RECORD_TYPE node. */
5259 tree
5260 grokfield (struct c_declarator *declarator, struct c_declspecs *declspecs,
5261 tree width)
5263 tree value;
5265 if (declarator->kind == cdk_id && declarator->u.id == NULL_TREE
5266 && width == NULL_TREE)
5268 /* This is an unnamed decl.
5270 If we have something of the form "union { list } ;" then this
5271 is the anonymous union extension. Similarly for struct.
5273 If this is something of the form "struct foo;", then
5274 If MS extensions are enabled, this is handled as an
5275 anonymous struct.
5276 Otherwise this is a forward declaration of a structure tag.
5278 If this is something of the form "foo;" and foo is a TYPE_DECL, then
5279 If MS extensions are enabled and foo names a structure, then
5280 again this is an anonymous struct.
5281 Otherwise this is an error.
5283 Oh what a horrid tangled web we weave. I wonder if MS consciously
5284 took this from Plan 9 or if it was an accident of implementation
5285 that took root before someone noticed the bug... */
5287 tree type = declspecs->type;
5288 bool type_ok = (TREE_CODE (type) == RECORD_TYPE
5289 || TREE_CODE (type) == UNION_TYPE);
5290 bool ok = false;
5292 if (type_ok
5293 && (flag_ms_extensions || !declspecs->typedef_p))
5295 if (flag_ms_extensions)
5296 ok = true;
5297 else if (flag_iso)
5298 ok = false;
5299 else if (TYPE_NAME (type) == NULL)
5300 ok = true;
5301 else
5302 ok = false;
5304 if (!ok)
5306 pedwarn ("declaration does not declare anything");
5307 return NULL_TREE;
5309 if (pedantic)
5310 pedwarn ("ISO C doesn%'t support unnamed structs/unions");
5313 value = grokdeclarator (declarator, declspecs, FIELD, false,
5314 width ? &width : NULL);
5316 finish_decl (value, NULL_TREE, NULL_TREE);
5317 DECL_INITIAL (value) = width;
5319 return value;
5322 /* Generate an error for any duplicate field names in FIELDLIST. Munge
5323 the list such that this does not present a problem later. */
5325 static void
5326 detect_field_duplicates (tree fieldlist)
5328 tree x, y;
5329 int timeout = 10;
5331 /* First, see if there are more than "a few" fields.
5332 This is trivially true if there are zero or one fields. */
5333 if (!fieldlist)
5334 return;
5335 x = TREE_CHAIN (fieldlist);
5336 if (!x)
5337 return;
5338 do {
5339 timeout--;
5340 x = TREE_CHAIN (x);
5341 } while (timeout > 0 && x);
5343 /* If there were "few" fields, avoid the overhead of allocating
5344 a hash table. Instead just do the nested traversal thing. */
5345 if (timeout > 0)
5347 for (x = TREE_CHAIN (fieldlist); x ; x = TREE_CHAIN (x))
5348 if (DECL_NAME (x))
5350 for (y = fieldlist; y != x; y = TREE_CHAIN (y))
5351 if (DECL_NAME (y) == DECL_NAME (x))
5353 error ("duplicate member %q+D", x);
5354 DECL_NAME (x) = NULL_TREE;
5358 else
5360 htab_t htab = htab_create (37, htab_hash_pointer, htab_eq_pointer, NULL);
5361 void **slot;
5363 for (x = fieldlist; x ; x = TREE_CHAIN (x))
5364 if ((y = DECL_NAME (x)) != 0)
5366 slot = htab_find_slot (htab, y, INSERT);
5367 if (*slot)
5369 error ("duplicate member %q+D", x);
5370 DECL_NAME (x) = NULL_TREE;
5372 *slot = y;
5375 htab_delete (htab);
5379 /* Fill in the fields of a RECORD_TYPE or UNION_TYPE node, T.
5380 FIELDLIST is a chain of FIELD_DECL nodes for the fields.
5381 ATTRIBUTES are attributes to be applied to the structure. */
5383 tree
5384 finish_struct (tree t, tree fieldlist, tree attributes)
5386 tree x;
5387 bool toplevel = file_scope == current_scope;
5388 int saw_named_field;
5390 /* If this type was previously laid out as a forward reference,
5391 make sure we lay it out again. */
5393 TYPE_SIZE (t) = 0;
5395 decl_attributes (&t, attributes, (int) ATTR_FLAG_TYPE_IN_PLACE);
5397 if (pedantic)
5399 for (x = fieldlist; x; x = TREE_CHAIN (x))
5400 if (DECL_NAME (x) != 0)
5401 break;
5403 if (x == 0)
5405 if (TREE_CODE (t) == UNION_TYPE)
5407 if (fieldlist)
5408 pedwarn ("union has no named members");
5409 else
5410 pedwarn ("union has no members");
5412 else
5414 if (fieldlist)
5415 pedwarn ("struct has no named members");
5416 else
5417 pedwarn ("struct has no members");
5422 /* Install struct as DECL_CONTEXT of each field decl.
5423 Also process specified field sizes, found in the DECL_INITIAL,
5424 storing 0 there after the type has been changed to precision equal
5425 to its width, rather than the precision of the specified standard
5426 type. (Correct layout requires the original type to have been preserved
5427 until now.) */
5429 saw_named_field = 0;
5430 for (x = fieldlist; x; x = TREE_CHAIN (x))
5432 if (TREE_TYPE (x) == error_mark_node)
5433 continue;
5435 DECL_CONTEXT (x) = t;
5437 if (TYPE_PACKED (t) && TYPE_ALIGN (TREE_TYPE (x)) > BITS_PER_UNIT)
5438 DECL_PACKED (x) = 1;
5440 /* If any field is const, the structure type is pseudo-const. */
5441 if (TREE_READONLY (x))
5442 C_TYPE_FIELDS_READONLY (t) = 1;
5443 else
5445 /* A field that is pseudo-const makes the structure likewise. */
5446 tree t1 = TREE_TYPE (x);
5447 while (TREE_CODE (t1) == ARRAY_TYPE)
5448 t1 = TREE_TYPE (t1);
5449 if ((TREE_CODE (t1) == RECORD_TYPE || TREE_CODE (t1) == UNION_TYPE)
5450 && C_TYPE_FIELDS_READONLY (t1))
5451 C_TYPE_FIELDS_READONLY (t) = 1;
5454 /* Any field that is volatile means variables of this type must be
5455 treated in some ways as volatile. */
5456 if (TREE_THIS_VOLATILE (x))
5457 C_TYPE_FIELDS_VOLATILE (t) = 1;
5459 /* Any field of nominal variable size implies structure is too. */
5460 if (C_DECL_VARIABLE_SIZE (x))
5461 C_TYPE_VARIABLE_SIZE (t) = 1;
5463 if (DECL_INITIAL (x))
5465 unsigned HOST_WIDE_INT width = tree_low_cst (DECL_INITIAL (x), 1);
5466 DECL_SIZE (x) = bitsize_int (width);
5467 DECL_BIT_FIELD (x) = 1;
5468 SET_DECL_C_BIT_FIELD (x);
5471 /* Detect flexible array member in an invalid context. */
5472 if (TREE_CODE (TREE_TYPE (x)) == ARRAY_TYPE
5473 && TYPE_SIZE (TREE_TYPE (x)) == NULL_TREE
5474 && TYPE_DOMAIN (TREE_TYPE (x)) != NULL_TREE
5475 && TYPE_MAX_VALUE (TYPE_DOMAIN (TREE_TYPE (x))) == NULL_TREE)
5477 if (TREE_CODE (t) == UNION_TYPE)
5479 error ("%Jflexible array member in union", x);
5480 TREE_TYPE (x) = error_mark_node;
5482 else if (TREE_CHAIN (x) != NULL_TREE)
5484 error ("%Jflexible array member not at end of struct", x);
5485 TREE_TYPE (x) = error_mark_node;
5487 else if (!saw_named_field)
5489 error ("%Jflexible array member in otherwise empty struct", x);
5490 TREE_TYPE (x) = error_mark_node;
5494 if (pedantic && !in_system_header && TREE_CODE (t) == RECORD_TYPE
5495 && flexible_array_type_p (TREE_TYPE (x)))
5496 pedwarn ("%Jinvalid use of structure with flexible array member", x);
5498 if (DECL_NAME (x))
5499 saw_named_field = 1;
5502 detect_field_duplicates (fieldlist);
5504 /* Now we have the nearly final fieldlist. Record it,
5505 then lay out the structure or union (including the fields). */
5507 TYPE_FIELDS (t) = fieldlist;
5509 layout_type (t);
5511 /* Give bit-fields their proper types. */
5513 tree *fieldlistp = &fieldlist;
5514 while (*fieldlistp)
5515 if (TREE_CODE (*fieldlistp) == FIELD_DECL && DECL_INITIAL (*fieldlistp)
5516 && TREE_TYPE (*fieldlistp) != error_mark_node)
5518 unsigned HOST_WIDE_INT width
5519 = tree_low_cst (DECL_INITIAL (*fieldlistp), 1);
5520 tree type = TREE_TYPE (*fieldlistp);
5521 if (width != TYPE_PRECISION (type))
5523 TREE_TYPE (*fieldlistp)
5524 = c_build_bitfield_integer_type (width, TYPE_UNSIGNED (type));
5525 DECL_MODE (*fieldlistp) = TYPE_MODE (TREE_TYPE (*fieldlistp));
5527 DECL_INITIAL (*fieldlistp) = 0;
5529 else
5530 fieldlistp = &TREE_CHAIN (*fieldlistp);
5533 /* Now we have the truly final field list.
5534 Store it in this type and in the variants. */
5536 TYPE_FIELDS (t) = fieldlist;
5538 /* If there are lots of fields, sort so we can look through them fast.
5539 We arbitrarily consider 16 or more elts to be "a lot". */
5542 int len = 0;
5544 for (x = fieldlist; x; x = TREE_CHAIN (x))
5546 if (len > 15 || DECL_NAME (x) == NULL)
5547 break;
5548 len += 1;
5551 if (len > 15)
5553 tree *field_array;
5554 struct lang_type *space;
5555 struct sorted_fields_type *space2;
5557 len += list_length (x);
5559 /* Use the same allocation policy here that make_node uses, to
5560 ensure that this lives as long as the rest of the struct decl.
5561 All decls in an inline function need to be saved. */
5563 space = GGC_CNEW (struct lang_type);
5564 space2 = GGC_NEWVAR (struct sorted_fields_type,
5565 sizeof (struct sorted_fields_type) + len * sizeof (tree));
5567 len = 0;
5568 space->s = space2;
5569 field_array = &space2->elts[0];
5570 for (x = fieldlist; x; x = TREE_CHAIN (x))
5572 field_array[len++] = x;
5574 /* If there is anonymous struct or union, break out of the loop. */
5575 if (DECL_NAME (x) == NULL)
5576 break;
5578 /* Found no anonymous struct/union. Add the TYPE_LANG_SPECIFIC. */
5579 if (x == NULL)
5581 TYPE_LANG_SPECIFIC (t) = space;
5582 TYPE_LANG_SPECIFIC (t)->s->len = len;
5583 field_array = TYPE_LANG_SPECIFIC (t)->s->elts;
5584 qsort (field_array, len, sizeof (tree), field_decl_cmp);
5589 for (x = TYPE_MAIN_VARIANT (t); x; x = TYPE_NEXT_VARIANT (x))
5591 TYPE_FIELDS (x) = TYPE_FIELDS (t);
5592 TYPE_LANG_SPECIFIC (x) = TYPE_LANG_SPECIFIC (t);
5593 C_TYPE_FIELDS_READONLY (x) = C_TYPE_FIELDS_READONLY (t);
5594 C_TYPE_FIELDS_VOLATILE (x) = C_TYPE_FIELDS_VOLATILE (t);
5595 C_TYPE_VARIABLE_SIZE (x) = C_TYPE_VARIABLE_SIZE (t);
5598 /* If this was supposed to be a transparent union, but we can't
5599 make it one, warn and turn off the flag. */
5600 if (TREE_CODE (t) == UNION_TYPE
5601 && TYPE_TRANSPARENT_UNION (t)
5602 && (!TYPE_FIELDS (t) || TYPE_MODE (t) != DECL_MODE (TYPE_FIELDS (t))))
5604 TYPE_TRANSPARENT_UNION (t) = 0;
5605 warning (0, "union cannot be made transparent");
5608 /* If this structure or union completes the type of any previous
5609 variable declaration, lay it out and output its rtl. */
5610 for (x = C_TYPE_INCOMPLETE_VARS (TYPE_MAIN_VARIANT (t));
5612 x = TREE_CHAIN (x))
5614 tree decl = TREE_VALUE (x);
5615 if (TREE_CODE (TREE_TYPE (decl)) == ARRAY_TYPE)
5616 layout_array_type (TREE_TYPE (decl));
5617 if (TREE_CODE (decl) != TYPE_DECL)
5619 layout_decl (decl, 0);
5620 if (c_dialect_objc ())
5621 objc_check_decl (decl);
5622 rest_of_decl_compilation (decl, toplevel, 0);
5623 if (!toplevel)
5624 expand_decl (decl);
5627 C_TYPE_INCOMPLETE_VARS (TYPE_MAIN_VARIANT (t)) = 0;
5629 /* Finish debugging output for this type. */
5630 rest_of_type_compilation (t, toplevel);
5632 /* If we're inside a function proper, i.e. not file-scope and not still
5633 parsing parameters, then arrange for the size of a variable sized type
5634 to be bound now. */
5635 if (cur_stmt_list && variably_modified_type_p (t, NULL_TREE))
5636 add_stmt (build_stmt (DECL_EXPR, build_decl (TYPE_DECL, NULL, t)));
5638 return t;
5641 /* Lay out the type T, and its element type, and so on. */
5643 static void
5644 layout_array_type (tree t)
5646 if (TREE_CODE (TREE_TYPE (t)) == ARRAY_TYPE)
5647 layout_array_type (TREE_TYPE (t));
5648 layout_type (t);
5651 /* Begin compiling the definition of an enumeration type.
5652 NAME is its name (or null if anonymous).
5653 Returns the type object, as yet incomplete.
5654 Also records info about it so that build_enumerator
5655 may be used to declare the individual values as they are read. */
5657 tree
5658 start_enum (tree name)
5660 tree enumtype = 0;
5662 /* If this is the real definition for a previous forward reference,
5663 fill in the contents in the same object that used to be the
5664 forward reference. */
5666 if (name != 0)
5667 enumtype = lookup_tag (ENUMERAL_TYPE, name, 1);
5669 if (enumtype == 0 || TREE_CODE (enumtype) != ENUMERAL_TYPE)
5671 enumtype = make_node (ENUMERAL_TYPE);
5672 pushtag (name, enumtype);
5675 if (C_TYPE_BEING_DEFINED (enumtype))
5676 error ("nested redefinition of %<enum %E%>", name);
5678 C_TYPE_BEING_DEFINED (enumtype) = 1;
5680 if (TYPE_VALUES (enumtype) != 0)
5682 /* This enum is a named one that has been declared already. */
5683 error ("redeclaration of %<enum %E%>", name);
5685 /* Completely replace its old definition.
5686 The old enumerators remain defined, however. */
5687 TYPE_VALUES (enumtype) = 0;
5690 enum_next_value = integer_zero_node;
5691 enum_overflow = 0;
5693 if (flag_short_enums)
5694 TYPE_PACKED (enumtype) = 1;
5696 return enumtype;
5699 /* After processing and defining all the values of an enumeration type,
5700 install their decls in the enumeration type and finish it off.
5701 ENUMTYPE is the type object, VALUES a list of decl-value pairs,
5702 and ATTRIBUTES are the specified attributes.
5703 Returns ENUMTYPE. */
5705 tree
5706 finish_enum (tree enumtype, tree values, tree attributes)
5708 tree pair, tem;
5709 tree minnode = 0, maxnode = 0;
5710 int precision, unsign;
5711 bool toplevel = (file_scope == current_scope);
5712 struct lang_type *lt;
5714 decl_attributes (&enumtype, attributes, (int) ATTR_FLAG_TYPE_IN_PLACE);
5716 /* Calculate the maximum value of any enumerator in this type. */
5718 if (values == error_mark_node)
5719 minnode = maxnode = integer_zero_node;
5720 else
5722 minnode = maxnode = TREE_VALUE (values);
5723 for (pair = TREE_CHAIN (values); pair; pair = TREE_CHAIN (pair))
5725 tree value = TREE_VALUE (pair);
5726 if (tree_int_cst_lt (maxnode, value))
5727 maxnode = value;
5728 if (tree_int_cst_lt (value, minnode))
5729 minnode = value;
5733 /* Construct the final type of this enumeration. It is the same
5734 as one of the integral types - the narrowest one that fits, except
5735 that normally we only go as narrow as int - and signed iff any of
5736 the values are negative. */
5737 unsign = (tree_int_cst_sgn (minnode) >= 0);
5738 precision = MAX (min_precision (minnode, unsign),
5739 min_precision (maxnode, unsign));
5741 if (TYPE_PACKED (enumtype) || precision > TYPE_PRECISION (integer_type_node))
5743 tem = c_common_type_for_size (precision, unsign);
5744 if (tem == NULL)
5746 warning (0, "enumeration values exceed range of largest integer");
5747 tem = long_long_integer_type_node;
5750 else
5751 tem = unsign ? unsigned_type_node : integer_type_node;
5753 TYPE_MIN_VALUE (enumtype) = TYPE_MIN_VALUE (tem);
5754 TYPE_MAX_VALUE (enumtype) = TYPE_MAX_VALUE (tem);
5755 TYPE_UNSIGNED (enumtype) = TYPE_UNSIGNED (tem);
5756 TYPE_SIZE (enumtype) = 0;
5758 /* If the precision of the type was specific with an attribute and it
5759 was too small, give an error. Otherwise, use it. */
5760 if (TYPE_PRECISION (enumtype))
5762 if (precision > TYPE_PRECISION (enumtype))
5763 error ("specified mode too small for enumeral values");
5765 else
5766 TYPE_PRECISION (enumtype) = TYPE_PRECISION (tem);
5768 layout_type (enumtype);
5770 if (values != error_mark_node)
5772 /* Change the type of the enumerators to be the enum type. We
5773 need to do this irrespective of the size of the enum, for
5774 proper type checking. Replace the DECL_INITIALs of the
5775 enumerators, and the value slots of the list, with copies
5776 that have the enum type; they cannot be modified in place
5777 because they may be shared (e.g. integer_zero_node) Finally,
5778 change the purpose slots to point to the names of the decls. */
5779 for (pair = values; pair; pair = TREE_CHAIN (pair))
5781 tree enu = TREE_PURPOSE (pair);
5782 tree ini = DECL_INITIAL (enu);
5784 TREE_TYPE (enu) = enumtype;
5786 /* The ISO C Standard mandates enumerators to have type int,
5787 even though the underlying type of an enum type is
5788 unspecified. Here we convert any enumerators that fit in
5789 an int to type int, to avoid promotions to unsigned types
5790 when comparing integers with enumerators that fit in the
5791 int range. When -pedantic is given, build_enumerator()
5792 would have already taken care of those that don't fit. */
5793 if (int_fits_type_p (ini, integer_type_node))
5794 tem = integer_type_node;
5795 else
5796 tem = enumtype;
5797 ini = convert (tem, ini);
5799 DECL_INITIAL (enu) = ini;
5800 TREE_PURPOSE (pair) = DECL_NAME (enu);
5801 TREE_VALUE (pair) = ini;
5804 TYPE_VALUES (enumtype) = values;
5807 /* Record the min/max values so that we can warn about bit-field
5808 enumerations that are too small for the values. */
5809 lt = GGC_CNEW (struct lang_type);
5810 lt->enum_min = minnode;
5811 lt->enum_max = maxnode;
5812 TYPE_LANG_SPECIFIC (enumtype) = lt;
5814 /* Fix up all variant types of this enum type. */
5815 for (tem = TYPE_MAIN_VARIANT (enumtype); tem; tem = TYPE_NEXT_VARIANT (tem))
5817 if (tem == enumtype)
5818 continue;
5819 TYPE_VALUES (tem) = TYPE_VALUES (enumtype);
5820 TYPE_MIN_VALUE (tem) = TYPE_MIN_VALUE (enumtype);
5821 TYPE_MAX_VALUE (tem) = TYPE_MAX_VALUE (enumtype);
5822 TYPE_SIZE (tem) = TYPE_SIZE (enumtype);
5823 TYPE_SIZE_UNIT (tem) = TYPE_SIZE_UNIT (enumtype);
5824 TYPE_MODE (tem) = TYPE_MODE (enumtype);
5825 TYPE_PRECISION (tem) = TYPE_PRECISION (enumtype);
5826 TYPE_ALIGN (tem) = TYPE_ALIGN (enumtype);
5827 TYPE_USER_ALIGN (tem) = TYPE_USER_ALIGN (enumtype);
5828 TYPE_UNSIGNED (tem) = TYPE_UNSIGNED (enumtype);
5829 TYPE_LANG_SPECIFIC (tem) = TYPE_LANG_SPECIFIC (enumtype);
5832 /* Finish debugging output for this type. */
5833 rest_of_type_compilation (enumtype, toplevel);
5835 return enumtype;
5838 /* Build and install a CONST_DECL for one value of the
5839 current enumeration type (one that was begun with start_enum).
5840 Return a tree-list containing the CONST_DECL and its value.
5841 Assignment of sequential values by default is handled here. */
5843 tree
5844 build_enumerator (tree name, tree value)
5846 tree decl, type;
5848 /* Validate and default VALUE. */
5850 if (value != 0)
5852 /* Don't issue more errors for error_mark_node (i.e. an
5853 undeclared identifier) - just ignore the value expression. */
5854 if (value == error_mark_node)
5855 value = 0;
5856 else if (!INTEGRAL_TYPE_P (TREE_TYPE (value))
5857 || TREE_CODE (value) != INTEGER_CST)
5859 error ("enumerator value for %qE is not an integer constant", name);
5860 value = 0;
5862 else
5864 value = default_conversion (value);
5865 constant_expression_warning (value);
5869 /* Default based on previous value. */
5870 /* It should no longer be possible to have NON_LVALUE_EXPR
5871 in the default. */
5872 if (value == 0)
5874 value = enum_next_value;
5875 if (enum_overflow)
5876 error ("overflow in enumeration values");
5879 if (pedantic && !int_fits_type_p (value, integer_type_node))
5881 pedwarn ("ISO C restricts enumerator values to range of %<int%>");
5882 /* XXX This causes -pedantic to change the meaning of the program.
5883 Remove? -zw 2004-03-15 */
5884 value = convert (integer_type_node, value);
5887 /* Set basis for default for next value. */
5888 enum_next_value = build_binary_op (PLUS_EXPR, value, integer_one_node, 0);
5889 enum_overflow = tree_int_cst_lt (enum_next_value, value);
5891 /* Now create a declaration for the enum value name. */
5893 type = TREE_TYPE (value);
5894 type = c_common_type_for_size (MAX (TYPE_PRECISION (type),
5895 TYPE_PRECISION (integer_type_node)),
5896 (TYPE_PRECISION (type)
5897 >= TYPE_PRECISION (integer_type_node)
5898 && TYPE_UNSIGNED (type)));
5900 decl = build_decl (CONST_DECL, name, type);
5901 DECL_INITIAL (decl) = convert (type, value);
5902 pushdecl (decl);
5904 return tree_cons (decl, value, NULL_TREE);
5908 /* Create the FUNCTION_DECL for a function definition.
5909 DECLSPECS, DECLARATOR and ATTRIBUTES are the parts of
5910 the declaration; they describe the function's name and the type it returns,
5911 but twisted together in a fashion that parallels the syntax of C.
5913 This function creates a binding context for the function body
5914 as well as setting up the FUNCTION_DECL in current_function_decl.
5916 Returns 1 on success. If the DECLARATOR is not suitable for a function
5917 (it defines a datum instead), we return 0, which tells
5918 yyparse to report a parse error. */
5921 start_function (struct c_declspecs *declspecs, struct c_declarator *declarator,
5922 tree attributes)
5924 tree decl1, old_decl;
5925 tree restype, resdecl;
5926 struct c_label_context_se *nstack_se;
5927 struct c_label_context_vm *nstack_vm;
5929 current_function_returns_value = 0; /* Assume, until we see it does. */
5930 current_function_returns_null = 0;
5931 current_function_returns_abnormally = 0;
5932 warn_about_return_type = 0;
5933 current_extern_inline = 0;
5934 c_switch_stack = NULL;
5936 nstack_se = XOBNEW (&parser_obstack, struct c_label_context_se);
5937 nstack_se->labels_def = NULL;
5938 nstack_se->labels_used = NULL;
5939 nstack_se->next = label_context_stack_se;
5940 label_context_stack_se = nstack_se;
5942 nstack_vm = XOBNEW (&parser_obstack, struct c_label_context_vm);
5943 nstack_vm->labels_def = NULL;
5944 nstack_vm->labels_used = NULL;
5945 nstack_vm->scope = 0;
5946 nstack_vm->next = label_context_stack_vm;
5947 label_context_stack_vm = nstack_vm;
5949 /* Indicate no valid break/continue context by setting these variables
5950 to some non-null, non-label value. We'll notice and emit the proper
5951 error message in c_finish_bc_stmt. */
5952 c_break_label = c_cont_label = size_zero_node;
5954 decl1 = grokdeclarator (declarator, declspecs, FUNCDEF, true, NULL);
5956 /* If the declarator is not suitable for a function definition,
5957 cause a syntax error. */
5958 if (decl1 == 0)
5960 label_context_stack_se = label_context_stack_se->next;
5961 label_context_stack_vm = label_context_stack_vm->next;
5962 return 0;
5965 decl_attributes (&decl1, attributes, 0);
5967 if (DECL_DECLARED_INLINE_P (decl1)
5968 && DECL_UNINLINABLE (decl1)
5969 && lookup_attribute ("noinline", DECL_ATTRIBUTES (decl1)))
5970 warning (OPT_Wattributes, "inline function %q+D given attribute noinline",
5971 decl1);
5973 announce_function (decl1);
5975 if (!COMPLETE_OR_VOID_TYPE_P (TREE_TYPE (TREE_TYPE (decl1))))
5977 error ("return type is an incomplete type");
5978 /* Make it return void instead. */
5979 TREE_TYPE (decl1)
5980 = build_function_type (void_type_node,
5981 TYPE_ARG_TYPES (TREE_TYPE (decl1)));
5984 if (warn_about_return_type)
5985 pedwarn_c99 ("return type defaults to %<int%>");
5987 /* Make the init_value nonzero so pushdecl knows this is not tentative.
5988 error_mark_node is replaced below (in pop_scope) with the BLOCK. */
5989 DECL_INITIAL (decl1) = error_mark_node;
5991 /* If this definition isn't a prototype and we had a prototype declaration
5992 before, copy the arg type info from that prototype. */
5993 old_decl = lookup_name_in_scope (DECL_NAME (decl1), current_scope);
5994 if (old_decl && TREE_CODE (old_decl) != FUNCTION_DECL)
5995 old_decl = 0;
5996 current_function_prototype_locus = UNKNOWN_LOCATION;
5997 current_function_prototype_built_in = false;
5998 current_function_prototype_arg_types = NULL_TREE;
5999 if (TYPE_ARG_TYPES (TREE_TYPE (decl1)) == 0)
6001 if (old_decl != 0 && TREE_CODE (TREE_TYPE (old_decl)) == FUNCTION_TYPE
6002 && comptypes (TREE_TYPE (TREE_TYPE (decl1)),
6003 TREE_TYPE (TREE_TYPE (old_decl))))
6005 TREE_TYPE (decl1) = composite_type (TREE_TYPE (old_decl),
6006 TREE_TYPE (decl1));
6007 current_function_prototype_locus = DECL_SOURCE_LOCATION (old_decl);
6008 current_function_prototype_built_in
6009 = C_DECL_BUILTIN_PROTOTYPE (old_decl);
6010 current_function_prototype_arg_types
6011 = TYPE_ARG_TYPES (TREE_TYPE (decl1));
6013 if (TREE_PUBLIC (decl1))
6015 /* If there is an external prototype declaration of this
6016 function, record its location but do not copy information
6017 to this decl. This may be an invisible declaration
6018 (built-in or in a scope which has finished) or simply
6019 have more refined argument types than any declaration
6020 found above. */
6021 struct c_binding *b;
6022 for (b = I_SYMBOL_BINDING (DECL_NAME (decl1)); b; b = b->shadowed)
6023 if (B_IN_SCOPE (b, external_scope))
6024 break;
6025 if (b)
6027 tree ext_decl, ext_type;
6028 ext_decl = b->decl;
6029 ext_type = b->type ? b->type : TREE_TYPE (ext_decl);
6030 if (TREE_CODE (ext_type) == FUNCTION_TYPE
6031 && comptypes (TREE_TYPE (TREE_TYPE (decl1)),
6032 TREE_TYPE (ext_type)))
6034 current_function_prototype_locus
6035 = DECL_SOURCE_LOCATION (ext_decl);
6036 current_function_prototype_built_in
6037 = C_DECL_BUILTIN_PROTOTYPE (ext_decl);
6038 current_function_prototype_arg_types
6039 = TYPE_ARG_TYPES (ext_type);
6045 /* Optionally warn of old-fashioned def with no previous prototype. */
6046 if (warn_strict_prototypes
6047 && old_decl != error_mark_node
6048 && TYPE_ARG_TYPES (TREE_TYPE (decl1)) == 0
6049 && C_DECL_ISNT_PROTOTYPE (old_decl))
6050 warning (OPT_Wstrict_prototypes,
6051 "function declaration isn%'t a prototype");
6052 /* Optionally warn of any global def with no previous prototype. */
6053 else if (warn_missing_prototypes
6054 && old_decl != error_mark_node
6055 && TREE_PUBLIC (decl1)
6056 && !MAIN_NAME_P (DECL_NAME (decl1))
6057 && C_DECL_ISNT_PROTOTYPE (old_decl))
6058 warning (OPT_Wmissing_prototypes, "no previous prototype for %q+D", decl1);
6059 /* Optionally warn of any def with no previous prototype
6060 if the function has already been used. */
6061 else if (warn_missing_prototypes
6062 && old_decl != 0
6063 && old_decl != error_mark_node
6064 && TREE_USED (old_decl)
6065 && TYPE_ARG_TYPES (TREE_TYPE (old_decl)) == 0)
6066 warning (OPT_Wmissing_prototypes,
6067 "%q+D was used with no prototype before its definition", decl1);
6068 /* Optionally warn of any global def with no previous declaration. */
6069 else if (warn_missing_declarations
6070 && TREE_PUBLIC (decl1)
6071 && old_decl == 0
6072 && !MAIN_NAME_P (DECL_NAME (decl1)))
6073 warning (OPT_Wmissing_declarations, "no previous declaration for %q+D",
6074 decl1);
6075 /* Optionally warn of any def with no previous declaration
6076 if the function has already been used. */
6077 else if (warn_missing_declarations
6078 && old_decl != 0
6079 && old_decl != error_mark_node
6080 && TREE_USED (old_decl)
6081 && C_DECL_IMPLICIT (old_decl))
6082 warning (OPT_Wmissing_declarations,
6083 "%q+D was used with no declaration before its definition", decl1);
6085 /* This is a definition, not a reference.
6086 So normally clear DECL_EXTERNAL.
6087 However, `extern inline' acts like a declaration
6088 except for defining how to inline. So set DECL_EXTERNAL in that case. */
6089 DECL_EXTERNAL (decl1) = current_extern_inline;
6091 /* This function exists in static storage.
6092 (This does not mean `static' in the C sense!) */
6093 TREE_STATIC (decl1) = 1;
6095 /* A nested function is not global. */
6096 if (current_function_decl != 0)
6097 TREE_PUBLIC (decl1) = 0;
6099 /* This is the earliest point at which we might know the assembler
6100 name of the function. Thus, if it's set before this, die horribly. */
6101 gcc_assert (!DECL_ASSEMBLER_NAME_SET_P (decl1));
6103 /* If #pragma weak was used, mark the decl weak now. */
6104 if (current_scope == file_scope)
6105 maybe_apply_pragma_weak (decl1);
6107 /* Warn for unlikely, improbable, or stupid declarations of `main'. */
6108 if (warn_main > 0 && MAIN_NAME_P (DECL_NAME (decl1)))
6110 tree args;
6111 int argct = 0;
6113 if (TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (decl1)))
6114 != integer_type_node)
6115 pedwarn ("return type of %q+D is not %<int%>", decl1);
6117 for (args = TYPE_ARG_TYPES (TREE_TYPE (decl1)); args;
6118 args = TREE_CHAIN (args))
6120 tree type = args ? TREE_VALUE (args) : 0;
6122 if (type == void_type_node)
6123 break;
6125 ++argct;
6126 switch (argct)
6128 case 1:
6129 if (TYPE_MAIN_VARIANT (type) != integer_type_node)
6130 pedwarn ("first argument of %q+D should be %<int%>", decl1);
6131 break;
6133 case 2:
6134 if (TREE_CODE (type) != POINTER_TYPE
6135 || TREE_CODE (TREE_TYPE (type)) != POINTER_TYPE
6136 || (TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (type)))
6137 != char_type_node))
6138 pedwarn ("second argument of %q+D should be %<char **%>",
6139 decl1);
6140 break;
6142 case 3:
6143 if (TREE_CODE (type) != POINTER_TYPE
6144 || TREE_CODE (TREE_TYPE (type)) != POINTER_TYPE
6145 || (TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (type)))
6146 != char_type_node))
6147 pedwarn ("third argument of %q+D should probably be "
6148 "%<char **%>", decl1);
6149 break;
6153 /* It is intentional that this message does not mention the third
6154 argument because it's only mentioned in an appendix of the
6155 standard. */
6156 if (argct > 0 && (argct < 2 || argct > 3))
6157 pedwarn ("%q+D takes only zero or two arguments", decl1);
6159 if (!TREE_PUBLIC (decl1))
6160 pedwarn ("%q+D is normally a non-static function", decl1);
6163 /* Record the decl so that the function name is defined.
6164 If we already have a decl for this name, and it is a FUNCTION_DECL,
6165 use the old decl. */
6167 current_function_decl = pushdecl (decl1);
6169 push_scope ();
6170 declare_parm_level ();
6172 restype = TREE_TYPE (TREE_TYPE (current_function_decl));
6173 /* Promote the value to int before returning it. */
6174 if (c_promoting_integer_type_p (restype))
6176 /* It retains unsignedness if not really getting wider. */
6177 if (TYPE_UNSIGNED (restype)
6178 && (TYPE_PRECISION (restype)
6179 == TYPE_PRECISION (integer_type_node)))
6180 restype = unsigned_type_node;
6181 else
6182 restype = integer_type_node;
6185 resdecl = build_decl (RESULT_DECL, NULL_TREE, restype);
6186 DECL_ARTIFICIAL (resdecl) = 1;
6187 DECL_IGNORED_P (resdecl) = 1;
6188 DECL_RESULT (current_function_decl) = resdecl;
6190 start_fname_decls ();
6192 return 1;
6195 /* Subroutine of store_parm_decls which handles new-style function
6196 definitions (prototype format). The parms already have decls, so we
6197 need only record them as in effect and complain if any redundant
6198 old-style parm decls were written. */
6199 static void
6200 store_parm_decls_newstyle (tree fndecl, const struct c_arg_info *arg_info)
6202 tree decl;
6204 if (current_scope->bindings)
6206 error ("%Jold-style parameter declarations in prototyped "
6207 "function definition", fndecl);
6209 /* Get rid of the old-style declarations. */
6210 pop_scope ();
6211 push_scope ();
6213 /* Don't issue this warning for nested functions, and don't issue this
6214 warning if we got here because ARG_INFO_TYPES was error_mark_node
6215 (this happens when a function definition has just an ellipsis in
6216 its parameter list). */
6217 else if (!in_system_header && !current_function_scope
6218 && arg_info->types != error_mark_node)
6219 warning (OPT_Wtraditional,
6220 "%Jtraditional C rejects ISO C style function definitions",
6221 fndecl);
6223 /* Now make all the parameter declarations visible in the function body.
6224 We can bypass most of the grunt work of pushdecl. */
6225 for (decl = arg_info->parms; decl; decl = TREE_CHAIN (decl))
6227 DECL_CONTEXT (decl) = current_function_decl;
6228 if (DECL_NAME (decl))
6230 bind (DECL_NAME (decl), decl, current_scope,
6231 /*invisible=*/false, /*nested=*/false);
6232 if (!TREE_USED (decl))
6233 warn_if_shadowing (decl);
6235 else
6236 error ("%Jparameter name omitted", decl);
6239 /* Record the parameter list in the function declaration. */
6240 DECL_ARGUMENTS (fndecl) = arg_info->parms;
6242 /* Now make all the ancillary declarations visible, likewise. */
6243 for (decl = arg_info->others; decl; decl = TREE_CHAIN (decl))
6245 DECL_CONTEXT (decl) = current_function_decl;
6246 if (DECL_NAME (decl))
6247 bind (DECL_NAME (decl), decl, current_scope,
6248 /*invisible=*/false, /*nested=*/false);
6251 /* And all the tag declarations. */
6252 for (decl = arg_info->tags; decl; decl = TREE_CHAIN (decl))
6253 if (TREE_PURPOSE (decl))
6254 bind (TREE_PURPOSE (decl), TREE_VALUE (decl), current_scope,
6255 /*invisible=*/false, /*nested=*/false);
6258 /* Subroutine of store_parm_decls which handles old-style function
6259 definitions (separate parameter list and declarations). */
6261 static void
6262 store_parm_decls_oldstyle (tree fndecl, const struct c_arg_info *arg_info)
6264 struct c_binding *b;
6265 tree parm, decl, last;
6266 tree parmids = arg_info->parms;
6267 struct pointer_set_t *seen_args = pointer_set_create ();
6269 if (!in_system_header)
6270 warning (OPT_Wold_style_definition, "%Jold-style function definition",
6271 fndecl);
6273 /* Match each formal parameter name with its declaration. Save each
6274 decl in the appropriate TREE_PURPOSE slot of the parmids chain. */
6275 for (parm = parmids; parm; parm = TREE_CHAIN (parm))
6277 if (TREE_VALUE (parm) == 0)
6279 error ("%Jparameter name missing from parameter list", fndecl);
6280 TREE_PURPOSE (parm) = 0;
6281 continue;
6284 b = I_SYMBOL_BINDING (TREE_VALUE (parm));
6285 if (b && B_IN_CURRENT_SCOPE (b))
6287 decl = b->decl;
6288 /* If we got something other than a PARM_DECL it is an error. */
6289 if (TREE_CODE (decl) != PARM_DECL)
6290 error ("%q+D declared as a non-parameter", decl);
6291 /* If the declaration is already marked, we have a duplicate
6292 name. Complain and ignore the duplicate. */
6293 else if (pointer_set_contains (seen_args, decl))
6295 error ("multiple parameters named %q+D", decl);
6296 TREE_PURPOSE (parm) = 0;
6297 continue;
6299 /* If the declaration says "void", complain and turn it into
6300 an int. */
6301 else if (VOID_TYPE_P (TREE_TYPE (decl)))
6303 error ("parameter %q+D declared with void type", decl);
6304 TREE_TYPE (decl) = integer_type_node;
6305 DECL_ARG_TYPE (decl) = integer_type_node;
6306 layout_decl (decl, 0);
6308 warn_if_shadowing (decl);
6310 /* If no declaration found, default to int. */
6311 else
6313 decl = build_decl (PARM_DECL, TREE_VALUE (parm), integer_type_node);
6314 DECL_ARG_TYPE (decl) = TREE_TYPE (decl);
6315 DECL_SOURCE_LOCATION (decl) = DECL_SOURCE_LOCATION (fndecl);
6316 pushdecl (decl);
6317 warn_if_shadowing (decl);
6319 if (flag_isoc99)
6320 pedwarn ("type of %q+D defaults to %<int%>", decl);
6321 else if (extra_warnings)
6322 warning (OPT_Wextra, "type of %q+D defaults to %<int%>", decl);
6325 TREE_PURPOSE (parm) = decl;
6326 pointer_set_insert (seen_args, decl);
6329 /* Now examine the parms chain for incomplete declarations
6330 and declarations with no corresponding names. */
6332 for (b = current_scope->bindings; b; b = b->prev)
6334 parm = b->decl;
6335 if (TREE_CODE (parm) != PARM_DECL)
6336 continue;
6338 if (TREE_TYPE (parm) != error_mark_node
6339 && !COMPLETE_TYPE_P (TREE_TYPE (parm)))
6341 error ("parameter %q+D has incomplete type", parm);
6342 TREE_TYPE (parm) = error_mark_node;
6345 if (!pointer_set_contains (seen_args, parm))
6347 error ("declaration for parameter %q+D but no such parameter", parm);
6349 /* Pretend the parameter was not missing.
6350 This gets us to a standard state and minimizes
6351 further error messages. */
6352 parmids = chainon (parmids, tree_cons (parm, 0, 0));
6356 /* Chain the declarations together in the order of the list of
6357 names. Store that chain in the function decl, replacing the
6358 list of names. Update the current scope to match. */
6359 DECL_ARGUMENTS (fndecl) = 0;
6361 for (parm = parmids; parm; parm = TREE_CHAIN (parm))
6362 if (TREE_PURPOSE (parm))
6363 break;
6364 if (parm && TREE_PURPOSE (parm))
6366 last = TREE_PURPOSE (parm);
6367 DECL_ARGUMENTS (fndecl) = last;
6369 for (parm = TREE_CHAIN (parm); parm; parm = TREE_CHAIN (parm))
6370 if (TREE_PURPOSE (parm))
6372 TREE_CHAIN (last) = TREE_PURPOSE (parm);
6373 last = TREE_PURPOSE (parm);
6375 TREE_CHAIN (last) = 0;
6378 pointer_set_destroy (seen_args);
6380 /* If there was a previous prototype,
6381 set the DECL_ARG_TYPE of each argument according to
6382 the type previously specified, and report any mismatches. */
6384 if (current_function_prototype_arg_types)
6386 tree type;
6387 for (parm = DECL_ARGUMENTS (fndecl),
6388 type = current_function_prototype_arg_types;
6389 parm || (type && (TYPE_MAIN_VARIANT (TREE_VALUE (type))
6390 != void_type_node));
6391 parm = TREE_CHAIN (parm), type = TREE_CHAIN (type))
6393 if (parm == 0 || type == 0
6394 || TYPE_MAIN_VARIANT (TREE_VALUE (type)) == void_type_node)
6396 if (current_function_prototype_built_in)
6397 warning (0, "number of arguments doesn%'t match "
6398 "built-in prototype");
6399 else
6401 error ("number of arguments doesn%'t match prototype");
6402 error ("%Hprototype declaration",
6403 &current_function_prototype_locus);
6405 break;
6407 /* Type for passing arg must be consistent with that
6408 declared for the arg. ISO C says we take the unqualified
6409 type for parameters declared with qualified type. */
6410 if (!comptypes (TYPE_MAIN_VARIANT (DECL_ARG_TYPE (parm)),
6411 TYPE_MAIN_VARIANT (TREE_VALUE (type))))
6413 if (TYPE_MAIN_VARIANT (TREE_TYPE (parm))
6414 == TYPE_MAIN_VARIANT (TREE_VALUE (type)))
6416 /* Adjust argument to match prototype. E.g. a previous
6417 `int foo(float);' prototype causes
6418 `int foo(x) float x; {...}' to be treated like
6419 `int foo(float x) {...}'. This is particularly
6420 useful for argument types like uid_t. */
6421 DECL_ARG_TYPE (parm) = TREE_TYPE (parm);
6423 if (targetm.calls.promote_prototypes (TREE_TYPE (current_function_decl))
6424 && INTEGRAL_TYPE_P (TREE_TYPE (parm))
6425 && TYPE_PRECISION (TREE_TYPE (parm))
6426 < TYPE_PRECISION (integer_type_node))
6427 DECL_ARG_TYPE (parm) = integer_type_node;
6429 if (pedantic)
6431 /* ??? Is it possible to get here with a
6432 built-in prototype or will it always have
6433 been diagnosed as conflicting with an
6434 old-style definition and discarded? */
6435 if (current_function_prototype_built_in)
6436 warning (0, "promoted argument %qD "
6437 "doesn%'t match built-in prototype", parm);
6438 else
6440 pedwarn ("promoted argument %qD "
6441 "doesn%'t match prototype", parm);
6442 pedwarn ("%Hprototype declaration",
6443 &current_function_prototype_locus);
6447 else
6449 if (current_function_prototype_built_in)
6450 warning (0, "argument %qD doesn%'t match "
6451 "built-in prototype", parm);
6452 else
6454 error ("argument %qD doesn%'t match prototype", parm);
6455 error ("%Hprototype declaration",
6456 &current_function_prototype_locus);
6461 TYPE_ACTUAL_ARG_TYPES (TREE_TYPE (fndecl)) = 0;
6464 /* Otherwise, create a prototype that would match. */
6466 else
6468 tree actual = 0, last = 0, type;
6470 for (parm = DECL_ARGUMENTS (fndecl); parm; parm = TREE_CHAIN (parm))
6472 type = tree_cons (NULL_TREE, DECL_ARG_TYPE (parm), NULL_TREE);
6473 if (last)
6474 TREE_CHAIN (last) = type;
6475 else
6476 actual = type;
6477 last = type;
6479 type = tree_cons (NULL_TREE, void_type_node, NULL_TREE);
6480 if (last)
6481 TREE_CHAIN (last) = type;
6482 else
6483 actual = type;
6485 /* We are going to assign a new value for the TYPE_ACTUAL_ARG_TYPES
6486 of the type of this function, but we need to avoid having this
6487 affect the types of other similarly-typed functions, so we must
6488 first force the generation of an identical (but separate) type
6489 node for the relevant function type. The new node we create
6490 will be a variant of the main variant of the original function
6491 type. */
6493 TREE_TYPE (fndecl) = build_variant_type_copy (TREE_TYPE (fndecl));
6495 TYPE_ACTUAL_ARG_TYPES (TREE_TYPE (fndecl)) = actual;
6499 /* Store parameter declarations passed in ARG_INFO into the current
6500 function declaration. */
6502 void
6503 store_parm_decls_from (struct c_arg_info *arg_info)
6505 current_function_arg_info = arg_info;
6506 store_parm_decls ();
6509 /* Store the parameter declarations into the current function declaration.
6510 This is called after parsing the parameter declarations, before
6511 digesting the body of the function.
6513 For an old-style definition, construct a prototype out of the old-style
6514 parameter declarations and inject it into the function's type. */
6516 void
6517 store_parm_decls (void)
6519 tree fndecl = current_function_decl;
6520 bool proto;
6522 /* The argument information block for FNDECL. */
6523 struct c_arg_info *arg_info = current_function_arg_info;
6524 current_function_arg_info = 0;
6526 /* True if this definition is written with a prototype. Note:
6527 despite C99 6.7.5.3p14, we can *not* treat an empty argument
6528 list in a function definition as equivalent to (void) -- an
6529 empty argument list specifies the function has no parameters,
6530 but only (void) sets up a prototype for future calls. */
6531 proto = arg_info->types != 0;
6533 if (proto)
6534 store_parm_decls_newstyle (fndecl, arg_info);
6535 else
6536 store_parm_decls_oldstyle (fndecl, arg_info);
6538 /* The next call to push_scope will be a function body. */
6540 next_is_function_body = true;
6542 /* Write a record describing this function definition to the prototypes
6543 file (if requested). */
6545 gen_aux_info_record (fndecl, 1, 0, proto);
6547 /* Initialize the RTL code for the function. */
6548 allocate_struct_function (fndecl);
6550 /* Begin the statement tree for this function. */
6551 DECL_SAVED_TREE (fndecl) = push_stmt_list ();
6553 /* ??? Insert the contents of the pending sizes list into the function
6554 to be evaluated. The only reason left to have this is
6555 void foo(int n, int array[n++])
6556 because we throw away the array type in favor of a pointer type, and
6557 thus won't naturally see the SAVE_EXPR containing the increment. All
6558 other pending sizes would be handled by gimplify_parameters. */
6560 tree t;
6561 for (t = nreverse (get_pending_sizes ()); t ; t = TREE_CHAIN (t))
6562 add_stmt (TREE_VALUE (t));
6565 /* Even though we're inside a function body, we still don't want to
6566 call expand_expr to calculate the size of a variable-sized array.
6567 We haven't necessarily assigned RTL to all variables yet, so it's
6568 not safe to try to expand expressions involving them. */
6569 cfun->x_dont_save_pending_sizes_p = 1;
6572 /* Emit diagnostics that require gimple input for detection. Operate on
6573 FNDECL and all its nested functions. */
6575 static void
6576 c_gimple_diagnostics_recursively (tree fndecl)
6578 struct cgraph_node *cgn;
6580 /* Handle attribute((warn_unused_result)). Relies on gimple input. */
6581 c_warn_unused_result (&DECL_SAVED_TREE (fndecl));
6583 /* Notice when OpenMP structured block constraints are violated. */
6584 if (flag_openmp)
6585 diagnose_omp_structured_block_errors (fndecl);
6587 /* Finalize all nested functions now. */
6588 cgn = cgraph_node (fndecl);
6589 for (cgn = cgn->nested; cgn ; cgn = cgn->next_nested)
6590 c_gimple_diagnostics_recursively (cgn->decl);
6593 /* Finish up a function declaration and compile that function
6594 all the way to assembler language output. The free the storage
6595 for the function definition.
6597 This is called after parsing the body of the function definition. */
6599 void
6600 finish_function (void)
6602 tree fndecl = current_function_decl;
6604 label_context_stack_se = label_context_stack_se->next;
6605 label_context_stack_vm = label_context_stack_vm->next;
6607 if (TREE_CODE (fndecl) == FUNCTION_DECL
6608 && targetm.calls.promote_prototypes (TREE_TYPE (fndecl)))
6610 tree args = DECL_ARGUMENTS (fndecl);
6611 for (; args; args = TREE_CHAIN (args))
6613 tree type = TREE_TYPE (args);
6614 if (INTEGRAL_TYPE_P (type)
6615 && TYPE_PRECISION (type) < TYPE_PRECISION (integer_type_node))
6616 DECL_ARG_TYPE (args) = integer_type_node;
6620 if (DECL_INITIAL (fndecl) && DECL_INITIAL (fndecl) != error_mark_node)
6621 BLOCK_SUPERCONTEXT (DECL_INITIAL (fndecl)) = fndecl;
6623 /* Must mark the RESULT_DECL as being in this function. */
6625 if (DECL_RESULT (fndecl) && DECL_RESULT (fndecl) != error_mark_node)
6626 DECL_CONTEXT (DECL_RESULT (fndecl)) = fndecl;
6628 if (MAIN_NAME_P (DECL_NAME (fndecl)) && flag_hosted)
6630 if (TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (fndecl)))
6631 != integer_type_node)
6633 /* If warn_main is 1 (-Wmain) or 2 (-Wall), we have already warned.
6634 If warn_main is -1 (-Wno-main) we don't want to be warned. */
6635 if (!warn_main)
6636 pedwarn ("return type of %q+D is not %<int%>", fndecl);
6638 else
6640 if (flag_isoc99)
6642 tree stmt = c_finish_return (integer_zero_node);
6643 #ifdef USE_MAPPED_LOCATION
6644 /* Hack. We don't want the middle-end to warn that this return
6645 is unreachable, so we mark its location as special. Using
6646 UNKNOWN_LOCATION has the problem that it gets clobbered in
6647 annotate_one_with_locus. A cleaner solution might be to
6648 ensure ! should_carry_locus_p (stmt), but that needs a flag.
6650 SET_EXPR_LOCATION (stmt, BUILTINS_LOCATION);
6651 #else
6652 /* Hack. We don't want the middle-end to warn that this
6653 return is unreachable, so put the statement on the
6654 special line 0. */
6655 annotate_with_file_line (stmt, input_filename, 0);
6656 #endif
6661 /* Tie off the statement tree for this function. */
6662 DECL_SAVED_TREE (fndecl) = pop_stmt_list (DECL_SAVED_TREE (fndecl));
6664 finish_fname_decls ();
6666 /* Complain if there's just no return statement. */
6667 if (warn_return_type
6668 && TREE_CODE (TREE_TYPE (TREE_TYPE (fndecl))) != VOID_TYPE
6669 && !current_function_returns_value && !current_function_returns_null
6670 /* Don't complain if we are no-return. */
6671 && !current_function_returns_abnormally
6672 /* Don't warn for main(). */
6673 && !MAIN_NAME_P (DECL_NAME (fndecl))
6674 /* Or if they didn't actually specify a return type. */
6675 && !C_FUNCTION_IMPLICIT_INT (fndecl)
6676 /* Normally, with -Wreturn-type, flow will complain. Unless we're an
6677 inline function, as we might never be compiled separately. */
6678 && DECL_INLINE (fndecl))
6680 warning (OPT_Wreturn_type,
6681 "no return statement in function returning non-void");
6682 TREE_NO_WARNING (fndecl) = 1;
6685 /* With just -Wextra, complain only if function returns both with
6686 and without a value. */
6687 if (extra_warnings
6688 && current_function_returns_value
6689 && current_function_returns_null)
6690 warning (OPT_Wextra, "this function may return with or without a value");
6692 /* Store the end of the function, so that we get good line number
6693 info for the epilogue. */
6694 cfun->function_end_locus = input_location;
6696 /* If we don't have ctors/dtors sections, and this is a static
6697 constructor or destructor, it must be recorded now. */
6698 if (DECL_STATIC_CONSTRUCTOR (fndecl)
6699 && !targetm.have_ctors_dtors)
6700 static_ctors = tree_cons (NULL_TREE, fndecl, static_ctors);
6701 if (DECL_STATIC_DESTRUCTOR (fndecl)
6702 && !targetm.have_ctors_dtors)
6703 static_dtors = tree_cons (NULL_TREE, fndecl, static_dtors);
6705 /* Finalize the ELF visibility for the function. */
6706 c_determine_visibility (fndecl);
6708 /* Genericize before inlining. Delay genericizing nested functions
6709 until their parent function is genericized. Since finalizing
6710 requires GENERIC, delay that as well. */
6712 if (DECL_INITIAL (fndecl) && DECL_INITIAL (fndecl) != error_mark_node
6713 && !undef_nested_function)
6715 if (!decl_function_context (fndecl))
6717 c_genericize (fndecl);
6718 c_gimple_diagnostics_recursively (fndecl);
6720 /* ??? Objc emits functions after finalizing the compilation unit.
6721 This should be cleaned up later and this conditional removed. */
6722 if (cgraph_global_info_ready)
6724 c_expand_body (fndecl);
6725 return;
6728 cgraph_finalize_function (fndecl, false);
6730 else
6732 /* Register this function with cgraph just far enough to get it
6733 added to our parent's nested function list. Handy, since the
6734 C front end doesn't have such a list. */
6735 (void) cgraph_node (fndecl);
6739 if (!decl_function_context (fndecl))
6740 undef_nested_function = false;
6742 /* We're leaving the context of this function, so zap cfun.
6743 It's still in DECL_STRUCT_FUNCTION, and we'll restore it in
6744 tree_rest_of_compilation. */
6745 cfun = NULL;
6746 current_function_decl = NULL;
6749 /* Generate the RTL for the body of FNDECL. */
6751 void
6752 c_expand_body (tree fndecl)
6755 if (!DECL_INITIAL (fndecl)
6756 || DECL_INITIAL (fndecl) == error_mark_node)
6757 return;
6759 tree_rest_of_compilation (fndecl);
6761 if (DECL_STATIC_CONSTRUCTOR (fndecl)
6762 && targetm.have_ctors_dtors)
6763 targetm.asm_out.constructor (XEXP (DECL_RTL (fndecl), 0),
6764 DEFAULT_INIT_PRIORITY);
6765 if (DECL_STATIC_DESTRUCTOR (fndecl)
6766 && targetm.have_ctors_dtors)
6767 targetm.asm_out.destructor (XEXP (DECL_RTL (fndecl), 0),
6768 DEFAULT_INIT_PRIORITY);
6771 /* Check the declarations given in a for-loop for satisfying the C99
6772 constraints. If exactly one such decl is found, return it. */
6774 tree
6775 check_for_loop_decls (void)
6777 struct c_binding *b;
6778 tree one_decl = NULL_TREE;
6779 int n_decls = 0;
6782 if (!flag_isoc99)
6784 /* If we get here, declarations have been used in a for loop without
6785 the C99 for loop scope. This doesn't make much sense, so don't
6786 allow it. */
6787 error ("%<for%> loop initial declaration used outside C99 mode");
6788 return NULL_TREE;
6790 /* C99 subclause 6.8.5 paragraph 3:
6792 [#3] The declaration part of a for statement shall only
6793 declare identifiers for objects having storage class auto or
6794 register.
6796 It isn't clear whether, in this sentence, "identifiers" binds to
6797 "shall only declare" or to "objects" - that is, whether all identifiers
6798 declared must be identifiers for objects, or whether the restriction
6799 only applies to those that are. (A question on this in comp.std.c
6800 in November 2000 received no answer.) We implement the strictest
6801 interpretation, to avoid creating an extension which later causes
6802 problems. */
6804 for (b = current_scope->bindings; b; b = b->prev)
6806 tree id = b->id;
6807 tree decl = b->decl;
6809 if (!id)
6810 continue;
6812 switch (TREE_CODE (decl))
6814 case VAR_DECL:
6815 if (TREE_STATIC (decl))
6816 error ("declaration of static variable %q+D in %<for%> loop "
6817 "initial declaration", decl);
6818 else if (DECL_EXTERNAL (decl))
6819 error ("declaration of %<extern%> variable %q+D in %<for%> loop "
6820 "initial declaration", decl);
6821 break;
6823 case RECORD_TYPE:
6824 error ("%<struct %E%> declared in %<for%> loop initial declaration",
6825 id);
6826 break;
6827 case UNION_TYPE:
6828 error ("%<union %E%> declared in %<for%> loop initial declaration",
6829 id);
6830 break;
6831 case ENUMERAL_TYPE:
6832 error ("%<enum %E%> declared in %<for%> loop initial declaration",
6833 id);
6834 break;
6835 default:
6836 error ("declaration of non-variable %q+D in %<for%> loop "
6837 "initial declaration", decl);
6840 n_decls++;
6841 one_decl = decl;
6844 return n_decls == 1 ? one_decl : NULL_TREE;
6847 /* Save and reinitialize the variables
6848 used during compilation of a C function. */
6850 void
6851 c_push_function_context (struct function *f)
6853 struct language_function *p;
6854 p = GGC_NEW (struct language_function);
6855 f->language = p;
6857 p->base.x_stmt_tree = c_stmt_tree;
6858 p->x_break_label = c_break_label;
6859 p->x_cont_label = c_cont_label;
6860 p->x_switch_stack = c_switch_stack;
6861 p->arg_info = current_function_arg_info;
6862 p->returns_value = current_function_returns_value;
6863 p->returns_null = current_function_returns_null;
6864 p->returns_abnormally = current_function_returns_abnormally;
6865 p->warn_about_return_type = warn_about_return_type;
6866 p->extern_inline = current_extern_inline;
6869 /* Restore the variables used during compilation of a C function. */
6871 void
6872 c_pop_function_context (struct function *f)
6874 struct language_function *p = f->language;
6876 if (DECL_STRUCT_FUNCTION (current_function_decl) == 0
6877 && DECL_SAVED_TREE (current_function_decl) == NULL_TREE)
6879 /* Stop pointing to the local nodes about to be freed. */
6880 /* But DECL_INITIAL must remain nonzero so we know this
6881 was an actual function definition. */
6882 DECL_INITIAL (current_function_decl) = error_mark_node;
6883 DECL_ARGUMENTS (current_function_decl) = 0;
6886 c_stmt_tree = p->base.x_stmt_tree;
6887 c_break_label = p->x_break_label;
6888 c_cont_label = p->x_cont_label;
6889 c_switch_stack = p->x_switch_stack;
6890 current_function_arg_info = p->arg_info;
6891 current_function_returns_value = p->returns_value;
6892 current_function_returns_null = p->returns_null;
6893 current_function_returns_abnormally = p->returns_abnormally;
6894 warn_about_return_type = p->warn_about_return_type;
6895 current_extern_inline = p->extern_inline;
6897 f->language = NULL;
6900 /* Copy the DECL_LANG_SPECIFIC data associated with DECL. */
6902 void
6903 c_dup_lang_specific_decl (tree decl)
6905 struct lang_decl *ld;
6907 if (!DECL_LANG_SPECIFIC (decl))
6908 return;
6910 ld = GGC_NEW (struct lang_decl);
6911 memcpy (ld, DECL_LANG_SPECIFIC (decl), sizeof (struct lang_decl));
6912 DECL_LANG_SPECIFIC (decl) = ld;
6915 /* The functions below are required for functionality of doing
6916 function at once processing in the C front end. Currently these
6917 functions are not called from anywhere in the C front end, but as
6918 these changes continue, that will change. */
6920 /* Returns the stmt_tree (if any) to which statements are currently
6921 being added. If there is no active statement-tree, NULL is
6922 returned. */
6924 stmt_tree
6925 current_stmt_tree (void)
6927 return &c_stmt_tree;
6930 /* Nonzero if TYPE is an anonymous union or struct type. Always 0 in
6931 C. */
6934 anon_aggr_type_p (tree ARG_UNUSED (node))
6936 return 0;
6939 /* Return the global value of T as a symbol. */
6941 tree
6942 identifier_global_value (tree t)
6944 struct c_binding *b;
6946 for (b = I_SYMBOL_BINDING (t); b; b = b->shadowed)
6947 if (B_IN_FILE_SCOPE (b) || B_IN_EXTERNAL_SCOPE (b))
6948 return b->decl;
6950 return 0;
6953 /* Record a builtin type for C. If NAME is non-NULL, it is the name used;
6954 otherwise the name is found in ridpointers from RID_INDEX. */
6956 void
6957 record_builtin_type (enum rid rid_index, const char *name, tree type)
6959 tree id, decl;
6960 if (name == 0)
6961 id = ridpointers[(int) rid_index];
6962 else
6963 id = get_identifier (name);
6964 decl = build_decl (TYPE_DECL, id, type);
6965 pushdecl (decl);
6966 if (debug_hooks->type_decl)
6967 debug_hooks->type_decl (decl, false);
6970 /* Build the void_list_node (void_type_node having been created). */
6971 tree
6972 build_void_list_node (void)
6974 tree t = build_tree_list (NULL_TREE, void_type_node);
6975 return t;
6978 /* Return a c_parm structure with the given SPECS, ATTRS and DECLARATOR. */
6980 struct c_parm *
6981 build_c_parm (struct c_declspecs *specs, tree attrs,
6982 struct c_declarator *declarator)
6984 struct c_parm *ret = XOBNEW (&parser_obstack, struct c_parm);
6985 ret->specs = specs;
6986 ret->attrs = attrs;
6987 ret->declarator = declarator;
6988 return ret;
6991 /* Return a declarator with nested attributes. TARGET is the inner
6992 declarator to which these attributes apply. ATTRS are the
6993 attributes. */
6995 struct c_declarator *
6996 build_attrs_declarator (tree attrs, struct c_declarator *target)
6998 struct c_declarator *ret = XOBNEW (&parser_obstack, struct c_declarator);
6999 ret->kind = cdk_attrs;
7000 ret->declarator = target;
7001 ret->u.attrs = attrs;
7002 return ret;
7005 /* Return a declarator for a function with arguments specified by ARGS
7006 and return type specified by TARGET. */
7008 struct c_declarator *
7009 build_function_declarator (struct c_arg_info *args,
7010 struct c_declarator *target)
7012 struct c_declarator *ret = XOBNEW (&parser_obstack, struct c_declarator);
7013 ret->kind = cdk_function;
7014 ret->declarator = target;
7015 ret->u.arg_info = args;
7016 return ret;
7019 /* Return a declarator for the identifier IDENT (which may be
7020 NULL_TREE for an abstract declarator). */
7022 struct c_declarator *
7023 build_id_declarator (tree ident)
7025 struct c_declarator *ret = XOBNEW (&parser_obstack, struct c_declarator);
7026 ret->kind = cdk_id;
7027 ret->declarator = 0;
7028 ret->u.id = ident;
7029 /* Default value - may get reset to a more precise location. */
7030 ret->id_loc = input_location;
7031 return ret;
7034 /* Return something to represent absolute declarators containing a *.
7035 TARGET is the absolute declarator that the * contains.
7036 TYPE_QUALS_ATTRS is a structure for type qualifiers and attributes
7037 to apply to the pointer type. */
7039 struct c_declarator *
7040 make_pointer_declarator (struct c_declspecs *type_quals_attrs,
7041 struct c_declarator *target)
7043 tree attrs;
7044 int quals = 0;
7045 struct c_declarator *itarget = target;
7046 struct c_declarator *ret = XOBNEW (&parser_obstack, struct c_declarator);
7047 if (type_quals_attrs)
7049 attrs = type_quals_attrs->attrs;
7050 quals = quals_from_declspecs (type_quals_attrs);
7051 if (attrs != NULL_TREE)
7052 itarget = build_attrs_declarator (attrs, target);
7054 ret->kind = cdk_pointer;
7055 ret->declarator = itarget;
7056 ret->u.pointer_quals = quals;
7057 return ret;
7060 /* Return a pointer to a structure for an empty list of declaration
7061 specifiers. */
7063 struct c_declspecs *
7064 build_null_declspecs (void)
7066 struct c_declspecs *ret = XOBNEW (&parser_obstack, struct c_declspecs);
7067 ret->type = 0;
7068 ret->decl_attr = 0;
7069 ret->attrs = 0;
7070 ret->typespec_word = cts_none;
7071 ret->storage_class = csc_none;
7072 ret->declspecs_seen_p = false;
7073 ret->type_seen_p = false;
7074 ret->non_sc_seen_p = false;
7075 ret->typedef_p = false;
7076 ret->tag_defined_p = false;
7077 ret->explicit_signed_p = false;
7078 ret->deprecated_p = false;
7079 ret->default_int_p = false;
7080 ret->long_p = false;
7081 ret->long_long_p = false;
7082 ret->short_p = false;
7083 ret->signed_p = false;
7084 ret->unsigned_p = false;
7085 ret->complex_p = false;
7086 ret->inline_p = false;
7087 ret->thread_p = false;
7088 ret->const_p = false;
7089 ret->volatile_p = false;
7090 ret->restrict_p = false;
7091 return ret;
7094 /* Add the type qualifier QUAL to the declaration specifiers SPECS,
7095 returning SPECS. */
7097 struct c_declspecs *
7098 declspecs_add_qual (struct c_declspecs *specs, tree qual)
7100 enum rid i;
7101 bool dupe = false;
7102 specs->non_sc_seen_p = true;
7103 specs->declspecs_seen_p = true;
7104 gcc_assert (TREE_CODE (qual) == IDENTIFIER_NODE
7105 && C_IS_RESERVED_WORD (qual));
7106 i = C_RID_CODE (qual);
7107 switch (i)
7109 case RID_CONST:
7110 dupe = specs->const_p;
7111 specs->const_p = true;
7112 break;
7113 case RID_VOLATILE:
7114 dupe = specs->volatile_p;
7115 specs->volatile_p = true;
7116 break;
7117 case RID_RESTRICT:
7118 dupe = specs->restrict_p;
7119 specs->restrict_p = true;
7120 break;
7121 default:
7122 gcc_unreachable ();
7124 if (dupe && pedantic && !flag_isoc99)
7125 pedwarn ("duplicate %qE", qual);
7126 return specs;
7129 /* Add the type specifier TYPE to the declaration specifiers SPECS,
7130 returning SPECS. */
7132 struct c_declspecs *
7133 declspecs_add_type (struct c_declspecs *specs, struct c_typespec spec)
7135 tree type = spec.spec;
7136 specs->non_sc_seen_p = true;
7137 specs->declspecs_seen_p = true;
7138 specs->type_seen_p = true;
7139 if (TREE_DEPRECATED (type))
7140 specs->deprecated_p = true;
7142 /* Handle type specifier keywords. */
7143 if (TREE_CODE (type) == IDENTIFIER_NODE && C_IS_RESERVED_WORD (type))
7145 enum rid i = C_RID_CODE (type);
7146 if (specs->type)
7148 error ("two or more data types in declaration specifiers");
7149 return specs;
7151 if ((int) i <= (int) RID_LAST_MODIFIER)
7153 /* "long", "short", "signed", "unsigned" or "_Complex". */
7154 bool dupe = false;
7155 switch (i)
7157 case RID_LONG:
7158 if (specs->long_long_p)
7160 error ("%<long long long%> is too long for GCC");
7161 break;
7163 if (specs->long_p)
7165 if (specs->typespec_word == cts_double)
7167 error ("both %<long long%> and %<double%> in "
7168 "declaration specifiers");
7169 break;
7171 if (pedantic && !flag_isoc99 && !in_system_header
7172 && warn_long_long)
7173 pedwarn ("ISO C90 does not support %<long long%>");
7174 specs->long_long_p = 1;
7175 break;
7177 if (specs->short_p)
7178 error ("both %<long%> and %<short%> in "
7179 "declaration specifiers");
7180 else if (specs->typespec_word == cts_void)
7181 error ("both %<long%> and %<void%> in "
7182 "declaration specifiers");
7183 else if (specs->typespec_word == cts_bool)
7184 error ("both %<long%> and %<_Bool%> in "
7185 "declaration specifiers");
7186 else if (specs->typespec_word == cts_char)
7187 error ("both %<long%> and %<char%> in "
7188 "declaration specifiers");
7189 else if (specs->typespec_word == cts_float)
7190 error ("both %<long%> and %<float%> in "
7191 "declaration specifiers");
7192 else if (specs->typespec_word == cts_dfloat32)
7193 error ("both %<long%> and %<_Decimal32%> in "
7194 "declaration specifiers");
7195 else if (specs->typespec_word == cts_dfloat64)
7196 error ("both %<long%> and %<_Decimal64%> in "
7197 "declaration specifiers");
7198 else if (specs->typespec_word == cts_dfloat128)
7199 error ("both %<long%> and %<_Decimal128%> in "
7200 "declaration specifiers");
7201 else
7202 specs->long_p = true;
7203 break;
7204 case RID_SHORT:
7205 dupe = specs->short_p;
7206 if (specs->long_p)
7207 error ("both %<long%> and %<short%> in "
7208 "declaration specifiers");
7209 else if (specs->typespec_word == cts_void)
7210 error ("both %<short%> and %<void%> in "
7211 "declaration specifiers");
7212 else if (specs->typespec_word == cts_bool)
7213 error ("both %<short%> and %<_Bool%> in "
7214 "declaration specifiers");
7215 else if (specs->typespec_word == cts_char)
7216 error ("both %<short%> and %<char%> in "
7217 "declaration specifiers");
7218 else if (specs->typespec_word == cts_float)
7219 error ("both %<short%> and %<float%> in "
7220 "declaration specifiers");
7221 else if (specs->typespec_word == cts_double)
7222 error ("both %<short%> and %<double%> in "
7223 "declaration specifiers");
7224 else if (specs->typespec_word == cts_dfloat32)
7225 error ("both %<short%> and %<_Decimal32%> in "
7226 "declaration specifiers");
7227 else if (specs->typespec_word == cts_dfloat64)
7228 error ("both %<short%> and %<_Decimal64%> in "
7229 "declaration specifiers");
7230 else if (specs->typespec_word == cts_dfloat128)
7231 error ("both %<short%> and %<_Decimal128%> in "
7232 "declaration specifiers");
7233 else
7234 specs->short_p = true;
7235 break;
7236 case RID_SIGNED:
7237 dupe = specs->signed_p;
7238 if (specs->unsigned_p)
7239 error ("both %<signed%> and %<unsigned%> in "
7240 "declaration specifiers");
7241 else if (specs->typespec_word == cts_void)
7242 error ("both %<signed%> and %<void%> in "
7243 "declaration specifiers");
7244 else if (specs->typespec_word == cts_bool)
7245 error ("both %<signed%> and %<_Bool%> in "
7246 "declaration specifiers");
7247 else if (specs->typespec_word == cts_float)
7248 error ("both %<signed%> and %<float%> in "
7249 "declaration specifiers");
7250 else if (specs->typespec_word == cts_double)
7251 error ("both %<signed%> and %<double%> in "
7252 "declaration specifiers");
7253 else if (specs->typespec_word == cts_dfloat32)
7254 error ("both %<signed%> and %<_Decimal32%> in "
7255 "declaration specifiers");
7256 else if (specs->typespec_word == cts_dfloat64)
7257 error ("both %<signed%> and %<_Decimal64%> in "
7258 "declaration specifiers");
7259 else if (specs->typespec_word == cts_dfloat128)
7260 error ("both %<signed%> and %<_Decimal128%> in "
7261 "declaration specifiers");
7262 else
7263 specs->signed_p = true;
7264 break;
7265 case RID_UNSIGNED:
7266 dupe = specs->unsigned_p;
7267 if (specs->signed_p)
7268 error ("both %<signed%> and %<unsigned%> in "
7269 "declaration specifiers");
7270 else if (specs->typespec_word == cts_void)
7271 error ("both %<unsigned%> and %<void%> in "
7272 "declaration specifiers");
7273 else if (specs->typespec_word == cts_bool)
7274 error ("both %<unsigned%> and %<_Bool%> in "
7275 "declaration specifiers");
7276 else if (specs->typespec_word == cts_float)
7277 error ("both %<unsigned%> and %<float%> in "
7278 "declaration specifiers");
7279 else if (specs->typespec_word == cts_double)
7280 error ("both %<unsigned%> and %<double%> in "
7281 "declaration specifiers");
7282 else if (specs->typespec_word == cts_dfloat32)
7283 error ("both %<unsigned%> and %<_Decimal32%> in "
7284 "declaration specifiers");
7285 else if (specs->typespec_word == cts_dfloat64)
7286 error ("both %<unsigned%> and %<_Decimal64%> in "
7287 "declaration specifiers");
7288 else if (specs->typespec_word == cts_dfloat128)
7289 error ("both %<unsigned%> and %<_Decimal128%> in "
7290 "declaration specifiers");
7291 else
7292 specs->unsigned_p = true;
7293 break;
7294 case RID_COMPLEX:
7295 dupe = specs->complex_p;
7296 if (pedantic && !flag_isoc99 && !in_system_header)
7297 pedwarn ("ISO C90 does not support complex types");
7298 if (specs->typespec_word == cts_void)
7299 error ("both %<complex%> and %<void%> in "
7300 "declaration specifiers");
7301 else if (specs->typespec_word == cts_bool)
7302 error ("both %<complex%> and %<_Bool%> in "
7303 "declaration specifiers");
7304 else if (specs->typespec_word == cts_dfloat32)
7305 error ("both %<complex%> and %<_Decimal32%> in "
7306 "declaration specifiers");
7307 else if (specs->typespec_word == cts_dfloat64)
7308 error ("both %<complex%> and %<_Decimal64%> in "
7309 "declaration specifiers");
7310 else if (specs->typespec_word == cts_dfloat128)
7311 error ("both %<complex%> and %<_Decimal128%> in "
7312 "declaration specifiers");
7313 else
7314 specs->complex_p = true;
7315 break;
7316 default:
7317 gcc_unreachable ();
7320 if (dupe)
7321 error ("duplicate %qE", type);
7323 return specs;
7325 else
7327 /* "void", "_Bool", "char", "int", "float" or "double". */
7328 if (specs->typespec_word != cts_none)
7330 error ("two or more data types in declaration specifiers");
7331 return specs;
7333 switch (i)
7335 case RID_VOID:
7336 if (specs->long_p)
7337 error ("both %<long%> and %<void%> in "
7338 "declaration specifiers");
7339 else if (specs->short_p)
7340 error ("both %<short%> and %<void%> in "
7341 "declaration specifiers");
7342 else if (specs->signed_p)
7343 error ("both %<signed%> and %<void%> in "
7344 "declaration specifiers");
7345 else if (specs->unsigned_p)
7346 error ("both %<unsigned%> and %<void%> in "
7347 "declaration specifiers");
7348 else if (specs->complex_p)
7349 error ("both %<complex%> and %<void%> in "
7350 "declaration specifiers");
7351 else
7352 specs->typespec_word = cts_void;
7353 return specs;
7354 case RID_BOOL:
7355 if (specs->long_p)
7356 error ("both %<long%> and %<_Bool%> in "
7357 "declaration specifiers");
7358 else if (specs->short_p)
7359 error ("both %<short%> and %<_Bool%> in "
7360 "declaration specifiers");
7361 else if (specs->signed_p)
7362 error ("both %<signed%> and %<_Bool%> in "
7363 "declaration specifiers");
7364 else if (specs->unsigned_p)
7365 error ("both %<unsigned%> and %<_Bool%> in "
7366 "declaration specifiers");
7367 else if (specs->complex_p)
7368 error ("both %<complex%> and %<_Bool%> in "
7369 "declaration specifiers");
7370 else
7371 specs->typespec_word = cts_bool;
7372 return specs;
7373 case RID_CHAR:
7374 if (specs->long_p)
7375 error ("both %<long%> and %<char%> in "
7376 "declaration specifiers");
7377 else if (specs->short_p)
7378 error ("both %<short%> and %<char%> in "
7379 "declaration specifiers");
7380 else
7381 specs->typespec_word = cts_char;
7382 return specs;
7383 case RID_INT:
7384 specs->typespec_word = cts_int;
7385 return specs;
7386 case RID_FLOAT:
7387 if (specs->long_p)
7388 error ("both %<long%> and %<float%> in "
7389 "declaration specifiers");
7390 else if (specs->short_p)
7391 error ("both %<short%> and %<float%> in "
7392 "declaration specifiers");
7393 else if (specs->signed_p)
7394 error ("both %<signed%> and %<float%> in "
7395 "declaration specifiers");
7396 else if (specs->unsigned_p)
7397 error ("both %<unsigned%> and %<float%> in "
7398 "declaration specifiers");
7399 else
7400 specs->typespec_word = cts_float;
7401 return specs;
7402 case RID_DOUBLE:
7403 if (specs->long_long_p)
7404 error ("both %<long long%> and %<double%> in "
7405 "declaration specifiers");
7406 else if (specs->short_p)
7407 error ("both %<short%> and %<double%> in "
7408 "declaration specifiers");
7409 else if (specs->signed_p)
7410 error ("both %<signed%> and %<double%> in "
7411 "declaration specifiers");
7412 else if (specs->unsigned_p)
7413 error ("both %<unsigned%> and %<double%> in "
7414 "declaration specifiers");
7415 else
7416 specs->typespec_word = cts_double;
7417 return specs;
7418 case RID_DFLOAT32:
7419 case RID_DFLOAT64:
7420 case RID_DFLOAT128:
7422 const char *str;
7423 if (i == RID_DFLOAT32)
7424 str = "_Decimal32";
7425 else if (i == RID_DFLOAT64)
7426 str = "_Decimal64";
7427 else
7428 str = "_Decimal128";
7429 if (specs->long_long_p)
7430 error ("both %<long long%> and %<%s%> in "
7431 "declaration specifiers", str);
7432 if (specs->long_p)
7433 error ("both %<long%> and %<%s%> in "
7434 "declaration specifiers", str);
7435 else if (specs->short_p)
7436 error ("both %<short%> and %<%s%> in "
7437 "declaration specifiers", str);
7438 else if (specs->signed_p)
7439 error ("both %<signed%> and %<%s%> in "
7440 "declaration specifiers", str);
7441 else if (specs->unsigned_p)
7442 error ("both %<unsigned%> and %<%s%> in "
7443 "declaration specifiers", str);
7444 else if (specs->complex_p)
7445 error ("both %<complex%> and %<%s%> in "
7446 "declaration specifiers", str);
7447 else if (i == RID_DFLOAT32)
7448 specs->typespec_word = cts_dfloat32;
7449 else if (i == RID_DFLOAT64)
7450 specs->typespec_word = cts_dfloat64;
7451 else
7452 specs->typespec_word = cts_dfloat128;
7454 if (!targetm.decimal_float_supported_p ())
7455 error ("decimal floating point not supported for this target");
7456 if (pedantic)
7457 pedwarn ("ISO C does not support decimal floating point");
7458 return specs;
7459 default:
7460 /* ObjC reserved word "id", handled below. */
7461 break;
7466 /* Now we have a typedef (a TYPE_DECL node), an identifier (some
7467 form of ObjC type, cases such as "int" and "long" being handled
7468 above), a TYPE (struct, union, enum and typeof specifiers) or an
7469 ERROR_MARK. In none of these cases may there have previously
7470 been any type specifiers. */
7471 if (specs->type || specs->typespec_word != cts_none
7472 || specs->long_p || specs->short_p || specs->signed_p
7473 || specs->unsigned_p || specs->complex_p)
7474 error ("two or more data types in declaration specifiers");
7475 else if (TREE_CODE (type) == TYPE_DECL)
7477 if (TREE_TYPE (type) == error_mark_node)
7478 ; /* Allow the type to default to int to avoid cascading errors. */
7479 else
7481 specs->type = TREE_TYPE (type);
7482 specs->decl_attr = DECL_ATTRIBUTES (type);
7483 specs->typedef_p = true;
7484 specs->explicit_signed_p = C_TYPEDEF_EXPLICITLY_SIGNED (type);
7487 else if (TREE_CODE (type) == IDENTIFIER_NODE)
7489 tree t = lookup_name (type);
7490 if (!t || TREE_CODE (t) != TYPE_DECL)
7491 error ("%qE fails to be a typedef or built in type", type);
7492 else if (TREE_TYPE (t) == error_mark_node)
7494 else
7495 specs->type = TREE_TYPE (t);
7497 else if (TREE_CODE (type) != ERROR_MARK)
7499 if (spec.kind == ctsk_tagdef || spec.kind == ctsk_tagfirstref)
7500 specs->tag_defined_p = true;
7501 if (spec.kind == ctsk_typeof)
7502 specs->typedef_p = true;
7503 specs->type = type;
7506 return specs;
7509 /* Add the storage class specifier or function specifier SCSPEC to the
7510 declaration specifiers SPECS, returning SPECS. */
7512 struct c_declspecs *
7513 declspecs_add_scspec (struct c_declspecs *specs, tree scspec)
7515 enum rid i;
7516 enum c_storage_class n = csc_none;
7517 bool dupe = false;
7518 specs->declspecs_seen_p = true;
7519 gcc_assert (TREE_CODE (scspec) == IDENTIFIER_NODE
7520 && C_IS_RESERVED_WORD (scspec));
7521 i = C_RID_CODE (scspec);
7522 if (extra_warnings && specs->non_sc_seen_p)
7523 warning (OPT_Wextra, "%qE is not at beginning of declaration", scspec);
7524 switch (i)
7526 case RID_INLINE:
7527 /* C99 permits duplicate inline. Although of doubtful utility,
7528 it seems simplest to permit it in gnu89 mode as well, as
7529 there is also little utility in maintaining this as a
7530 difference between gnu89 and C99 inline. */
7531 dupe = false;
7532 specs->inline_p = true;
7533 break;
7534 case RID_THREAD:
7535 dupe = specs->thread_p;
7536 if (specs->storage_class == csc_auto)
7537 error ("%<__thread%> used with %<auto%>");
7538 else if (specs->storage_class == csc_register)
7539 error ("%<__thread%> used with %<register%>");
7540 else if (specs->storage_class == csc_typedef)
7541 error ("%<__thread%> used with %<typedef%>");
7542 else
7543 specs->thread_p = true;
7544 break;
7545 case RID_AUTO:
7546 n = csc_auto;
7547 break;
7548 case RID_EXTERN:
7549 n = csc_extern;
7550 /* Diagnose "__thread extern". */
7551 if (specs->thread_p)
7552 error ("%<__thread%> before %<extern%>");
7553 break;
7554 case RID_REGISTER:
7555 n = csc_register;
7556 break;
7557 case RID_STATIC:
7558 n = csc_static;
7559 /* Diagnose "__thread static". */
7560 if (specs->thread_p)
7561 error ("%<__thread%> before %<static%>");
7562 break;
7563 case RID_TYPEDEF:
7564 n = csc_typedef;
7565 break;
7566 default:
7567 gcc_unreachable ();
7569 if (n != csc_none && n == specs->storage_class)
7570 dupe = true;
7571 if (dupe)
7572 error ("duplicate %qE", scspec);
7573 if (n != csc_none)
7575 if (specs->storage_class != csc_none && n != specs->storage_class)
7577 error ("multiple storage classes in declaration specifiers");
7579 else
7581 specs->storage_class = n;
7582 if (n != csc_extern && n != csc_static && specs->thread_p)
7584 error ("%<__thread%> used with %qE", scspec);
7585 specs->thread_p = false;
7589 return specs;
7592 /* Add the attributes ATTRS to the declaration specifiers SPECS,
7593 returning SPECS. */
7595 struct c_declspecs *
7596 declspecs_add_attrs (struct c_declspecs *specs, tree attrs)
7598 specs->attrs = chainon (attrs, specs->attrs);
7599 specs->declspecs_seen_p = true;
7600 return specs;
7603 /* Combine "long", "short", "signed", "unsigned" and "_Complex" type
7604 specifiers with any other type specifier to determine the resulting
7605 type. This is where ISO C checks on complex types are made, since
7606 "_Complex long" is a prefix of the valid ISO C type "_Complex long
7607 double". */
7609 struct c_declspecs *
7610 finish_declspecs (struct c_declspecs *specs)
7612 /* If a type was specified as a whole, we have no modifiers and are
7613 done. */
7614 if (specs->type != NULL_TREE)
7616 gcc_assert (!specs->long_p && !specs->long_long_p && !specs->short_p
7617 && !specs->signed_p && !specs->unsigned_p
7618 && !specs->complex_p);
7619 return specs;
7622 /* If none of "void", "_Bool", "char", "int", "float" or "double"
7623 has been specified, treat it as "int" unless "_Complex" is
7624 present and there are no other specifiers. If we just have
7625 "_Complex", it is equivalent to "_Complex double", but e.g.
7626 "_Complex short" is equivalent to "_Complex short int". */
7627 if (specs->typespec_word == cts_none)
7629 if (specs->long_p || specs->short_p
7630 || specs->signed_p || specs->unsigned_p)
7632 specs->typespec_word = cts_int;
7634 else if (specs->complex_p)
7636 specs->typespec_word = cts_double;
7637 if (pedantic)
7638 pedwarn ("ISO C does not support plain %<complex%> meaning "
7639 "%<double complex%>");
7641 else
7643 specs->typespec_word = cts_int;
7644 specs->default_int_p = true;
7645 /* We don't diagnose this here because grokdeclarator will
7646 give more specific diagnostics according to whether it is
7647 a function definition. */
7651 /* If "signed" was specified, record this to distinguish "int" and
7652 "signed int" in the case of a bit-field with
7653 -funsigned-bitfields. */
7654 specs->explicit_signed_p = specs->signed_p;
7656 /* Now compute the actual type. */
7657 switch (specs->typespec_word)
7659 case cts_void:
7660 gcc_assert (!specs->long_p && !specs->short_p
7661 && !specs->signed_p && !specs->unsigned_p
7662 && !specs->complex_p);
7663 specs->type = void_type_node;
7664 break;
7665 case cts_bool:
7666 gcc_assert (!specs->long_p && !specs->short_p
7667 && !specs->signed_p && !specs->unsigned_p
7668 && !specs->complex_p);
7669 specs->type = boolean_type_node;
7670 break;
7671 case cts_char:
7672 gcc_assert (!specs->long_p && !specs->short_p);
7673 gcc_assert (!(specs->signed_p && specs->unsigned_p));
7674 if (specs->signed_p)
7675 specs->type = signed_char_type_node;
7676 else if (specs->unsigned_p)
7677 specs->type = unsigned_char_type_node;
7678 else
7679 specs->type = char_type_node;
7680 if (specs->complex_p)
7682 if (pedantic)
7683 pedwarn ("ISO C does not support complex integer types");
7684 specs->type = build_complex_type (specs->type);
7686 break;
7687 case cts_int:
7688 gcc_assert (!(specs->long_p && specs->short_p));
7689 gcc_assert (!(specs->signed_p && specs->unsigned_p));
7690 if (specs->long_long_p)
7691 specs->type = (specs->unsigned_p
7692 ? long_long_unsigned_type_node
7693 : long_long_integer_type_node);
7694 else if (specs->long_p)
7695 specs->type = (specs->unsigned_p
7696 ? long_unsigned_type_node
7697 : long_integer_type_node);
7698 else if (specs->short_p)
7699 specs->type = (specs->unsigned_p
7700 ? short_unsigned_type_node
7701 : short_integer_type_node);
7702 else
7703 specs->type = (specs->unsigned_p
7704 ? unsigned_type_node
7705 : integer_type_node);
7706 if (specs->complex_p)
7708 if (pedantic)
7709 pedwarn ("ISO C does not support complex integer types");
7710 specs->type = build_complex_type (specs->type);
7712 break;
7713 case cts_float:
7714 gcc_assert (!specs->long_p && !specs->short_p
7715 && !specs->signed_p && !specs->unsigned_p);
7716 specs->type = (specs->complex_p
7717 ? complex_float_type_node
7718 : float_type_node);
7719 break;
7720 case cts_double:
7721 gcc_assert (!specs->long_long_p && !specs->short_p
7722 && !specs->signed_p && !specs->unsigned_p);
7723 if (specs->long_p)
7725 specs->type = (specs->complex_p
7726 ? complex_long_double_type_node
7727 : long_double_type_node);
7729 else
7731 specs->type = (specs->complex_p
7732 ? complex_double_type_node
7733 : double_type_node);
7735 break;
7736 case cts_dfloat32:
7737 case cts_dfloat64:
7738 case cts_dfloat128:
7739 gcc_assert (!specs->long_p && !specs->long_long_p && !specs->short_p
7740 && !specs->signed_p && !specs->unsigned_p && !specs->complex_p);
7741 if (specs->typespec_word == cts_dfloat32)
7742 specs->type = dfloat32_type_node;
7743 else if (specs->typespec_word == cts_dfloat64)
7744 specs->type = dfloat64_type_node;
7745 else
7746 specs->type = dfloat128_type_node;
7747 break;
7748 default:
7749 gcc_unreachable ();
7752 return specs;
7755 /* Synthesize a function which calls all the global ctors or global
7756 dtors in this file. This is only used for targets which do not
7757 support .ctors/.dtors sections. FIXME: Migrate into cgraph. */
7758 static void
7759 build_cdtor (int method_type, tree cdtors)
7761 tree body = 0;
7763 if (!cdtors)
7764 return;
7766 for (; cdtors; cdtors = TREE_CHAIN (cdtors))
7767 append_to_statement_list (build_function_call (TREE_VALUE (cdtors), 0),
7768 &body);
7770 cgraph_build_static_cdtor (method_type, body, DEFAULT_INIT_PRIORITY);
7773 /* A subroutine of c_write_global_declarations. Perform final processing
7774 on one file scope's declarations (or the external scope's declarations),
7775 GLOBALS. */
7777 static void
7778 c_write_global_declarations_1 (tree globals)
7780 tree decl;
7781 bool reconsider;
7783 /* Process the decls in the order they were written. */
7784 for (decl = globals; decl; decl = TREE_CHAIN (decl))
7786 /* Check for used but undefined static functions using the C
7787 standard's definition of "used", and set TREE_NO_WARNING so
7788 that check_global_declarations doesn't repeat the check. */
7789 if (TREE_CODE (decl) == FUNCTION_DECL
7790 && DECL_INITIAL (decl) == 0
7791 && DECL_EXTERNAL (decl)
7792 && !TREE_PUBLIC (decl)
7793 && C_DECL_USED (decl))
7795 pedwarn ("%q+F used but never defined", decl);
7796 TREE_NO_WARNING (decl) = 1;
7799 wrapup_global_declaration_1 (decl);
7804 reconsider = false;
7805 for (decl = globals; decl; decl = TREE_CHAIN (decl))
7806 reconsider |= wrapup_global_declaration_2 (decl);
7808 while (reconsider);
7810 for (decl = globals; decl; decl = TREE_CHAIN (decl))
7811 check_global_declaration_1 (decl);
7814 /* A subroutine of c_write_global_declarations Emit debug information for each
7815 of the declarations in GLOBALS. */
7817 static void
7818 c_write_global_declarations_2 (tree globals)
7820 tree decl;
7822 for (decl = globals; decl ; decl = TREE_CHAIN (decl))
7823 debug_hooks->global_decl (decl);
7826 /* Preserve the external declarations scope across a garbage collect. */
7827 static GTY(()) tree ext_block;
7829 void
7830 c_write_global_declarations (void)
7832 tree t;
7834 /* We don't want to do this if generating a PCH. */
7835 if (pch_file)
7836 return;
7838 /* Don't waste time on further processing if -fsyntax-only or we've
7839 encountered errors. */
7840 if (flag_syntax_only || errorcount || sorrycount || cpp_errors (parse_in))
7841 return;
7843 /* Close the external scope. */
7844 ext_block = pop_scope ();
7845 external_scope = 0;
7846 gcc_assert (!current_scope);
7848 if (ext_block)
7850 tree tmp = BLOCK_VARS (ext_block);
7851 int flags;
7852 FILE * stream = dump_begin (TDI_tu, &flags);
7853 if (stream && tmp)
7855 dump_node (tmp, flags & ~TDF_SLIM, stream);
7856 dump_end (TDI_tu, stream);
7860 /* Process all file scopes in this compilation, and the external_scope,
7861 through wrapup_global_declarations and check_global_declarations. */
7862 for (t = all_translation_units; t; t = TREE_CHAIN (t))
7863 c_write_global_declarations_1 (BLOCK_VARS (DECL_INITIAL (t)));
7864 c_write_global_declarations_1 (BLOCK_VARS (ext_block));
7866 /* Generate functions to call static constructors and destructors
7867 for targets that do not support .ctors/.dtors sections. These
7868 functions have magic names which are detected by collect2. */
7869 build_cdtor ('I', static_ctors); static_ctors = 0;
7870 build_cdtor ('D', static_dtors); static_dtors = 0;
7872 /* We're done parsing; proceed to optimize and emit assembly.
7873 FIXME: shouldn't be the front end's responsibility to call this. */
7874 cgraph_optimize ();
7876 /* After cgraph has had a chance to emit everything that's going to
7877 be emitted, output debug information for globals. */
7878 if (errorcount == 0 && sorrycount == 0)
7880 timevar_push (TV_SYMOUT);
7881 for (t = all_translation_units; t; t = TREE_CHAIN (t))
7882 c_write_global_declarations_2 (BLOCK_VARS (DECL_INITIAL (t)));
7883 c_write_global_declarations_2 (BLOCK_VARS (ext_block));
7884 timevar_pop (TV_SYMOUT);
7887 ext_block = NULL;
7890 #include "gt-c-decl.h"