expmed.c (expand_divmod): Undo sign extensions for unsigned operands
[official-gcc.git] / gcc / c-decl.c
blobdf3390c2121872e5d845a8a239e51a2fc4d0c1f5
1 /* Process declarations and variables for C compiler.
2 Copyright (C) 1988, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000,
3 2001, 2002 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, 59 Temple Place - Suite 330, Boston, MA
20 02111-1307, 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 "tm.h"
33 #include "intl.h"
34 #include "tree.h"
35 #include "tree-inline.h"
36 #include "rtl.h"
37 #include "flags.h"
38 #include "function.h"
39 #include "output.h"
40 #include "expr.h"
41 #include "c-tree.h"
42 #include "toplev.h"
43 #include "ggc.h"
44 #include "tm_p.h"
45 #include "cpplib.h"
46 #include "target.h"
47 #include "debug.h"
48 #include "timevar.h"
49 #include "c-common.h"
50 #include "c-pragma.h"
51 #include "cgraph.h"
53 /* In grokdeclarator, distinguish syntactic contexts of declarators. */
54 enum decl_context
55 { NORMAL, /* Ordinary declaration */
56 FUNCDEF, /* Function definition */
57 PARM, /* Declaration of parm before function body */
58 FIELD, /* Declaration inside struct or union */
59 BITFIELD, /* Likewise but with specified width */
60 TYPENAME}; /* Typename (inside cast or sizeof) */
63 /* Nonzero if we have seen an invalid cross reference
64 to a struct, union, or enum, but not yet printed the message. */
66 tree pending_invalid_xref;
67 /* File and line to appear in the eventual error message. */
68 const char *pending_invalid_xref_file;
69 int pending_invalid_xref_line;
71 /* While defining an enum type, this is 1 plus the last enumerator
72 constant value. Note that will do not have to save this or `enum_overflow'
73 around nested function definition since such a definition could only
74 occur in an enum value expression and we don't use these variables in
75 that case. */
77 static tree enum_next_value;
79 /* Nonzero means that there was overflow computing enum_next_value. */
81 static int enum_overflow;
83 /* Parsing a function declarator leaves a list of parameter names
84 or a chain or parameter decls here. */
86 static tree last_function_parms;
88 /* Parsing a function declarator leaves here a chain of structure
89 and enum types declared in the parmlist. */
91 static tree last_function_parm_tags;
93 /* After parsing the declarator that starts a function definition,
94 `start_function' puts here the list of parameter names or chain of decls.
95 `store_parm_decls' finds it here. */
97 static tree current_function_parms;
99 /* Similar, for last_function_parm_tags. */
100 static tree current_function_parm_tags;
102 /* Similar, for the file and line that the prototype came from if this is
103 an old-style definition. */
104 static const char *current_function_prototype_file;
105 static int current_function_prototype_line;
107 /* The current statement tree. */
109 static GTY(()) struct stmt_tree_s c_stmt_tree;
111 /* The current scope statement stack. */
113 static GTY(()) tree c_scope_stmt_stack;
115 /* A list (chain of TREE_LIST nodes) of all LABEL_DECLs in the function
116 that have names. Here so we can clear out their names' definitions
117 at the end of the function. */
119 static GTY(()) tree named_labels;
121 /* A list of LABEL_DECLs from outer contexts that are currently shadowed. */
123 static GTY(()) tree shadowed_labels;
125 /* Set to 0 at beginning of a function definition, set to 1 if
126 a return statement that specifies a return value is seen. */
128 int current_function_returns_value;
130 /* Set to 0 at beginning of a function definition, set to 1 if
131 a return statement with no argument is seen. */
133 int current_function_returns_null;
135 /* Set to 0 at beginning of a function definition, set to 1 if
136 a call to a noreturn function is seen. */
138 int current_function_returns_abnormally;
140 /* Set to nonzero by `grokdeclarator' for a function
141 whose return type is defaulted, if warnings for this are desired. */
143 static int warn_about_return_type;
145 /* Nonzero when starting a function declared `extern inline'. */
147 static int current_extern_inline;
149 /* For each binding contour we allocate a binding_level structure
150 * which records the names defined in that contour.
151 * Contours include:
152 * 0) the global one
153 * 1) one for each function definition,
154 * where internal declarations of the parameters appear.
155 * 2) one for each compound statement,
156 * to record its declarations.
158 * The current meaning of a name can be found by searching the levels from
159 * the current one out to the global one.
162 /* Note that the information in the `names' component of the global contour
163 is duplicated in the IDENTIFIER_GLOBAL_VALUEs of all identifiers. */
165 struct binding_level GTY(())
167 /* A chain of _DECL nodes for all variables, constants, functions,
168 and typedef types. These are in the reverse of the order supplied.
170 tree names;
172 /* A list of structure, union and enum definitions,
173 * for looking up tag names.
174 * It is a chain of TREE_LIST nodes, each of whose TREE_PURPOSE is a name,
175 * or NULL_TREE; and whose TREE_VALUE is a RECORD_TYPE, UNION_TYPE,
176 * or ENUMERAL_TYPE node.
178 tree tags;
180 /* For each level, a list of shadowed outer-level local definitions
181 to be restored when this level is popped.
182 Each link is a TREE_LIST whose TREE_PURPOSE is an identifier and
183 whose TREE_VALUE is its old definition (a kind of ..._DECL node). */
184 tree shadowed;
186 /* For each level (except not the global one),
187 a chain of BLOCK nodes for all the levels
188 that were entered and exited one level down. */
189 tree blocks;
191 /* The BLOCK node for this level, if one has been preallocated.
192 If 0, the BLOCK is allocated (if needed) when the level is popped. */
193 tree this_block;
195 /* The binding level which this one is contained in (inherits from). */
196 struct binding_level *level_chain;
198 /* Nonzero for the level that holds the parameters of a function. */
199 char parm_flag;
201 /* Nonzero if this level "doesn't exist" for tags. */
202 char tag_transparent;
204 /* Nonzero if sublevels of this level "don't exist" for tags.
205 This is set in the parm level of a function definition
206 while reading the function body, so that the outermost block
207 of the function body will be tag-transparent. */
208 char subblocks_tag_transparent;
210 /* Nonzero means make a BLOCK for this level regardless of all else. */
211 char keep;
213 /* Nonzero means make a BLOCK if this level has any subblocks. */
214 char keep_if_subblocks;
216 /* List of decls in `names' that have incomplete structure or
217 union types. */
218 tree incomplete_list;
220 /* A list of decls giving the (reversed) specified order of parms,
221 not including any forward-decls in the parmlist.
222 This is so we can put the parms in proper order for assign_parms. */
223 tree parm_order;
226 #define NULL_BINDING_LEVEL (struct binding_level *) NULL
228 /* The binding level currently in effect. */
230 static GTY(()) struct binding_level *current_binding_level;
232 /* A chain of binding_level structures awaiting reuse. */
234 static GTY((deletable (""))) struct binding_level *free_binding_level;
236 /* The outermost binding level, for names of file scope.
237 This is created when the compiler is started and exists
238 through the entire run. */
240 static GTY(()) struct binding_level *global_binding_level;
242 /* Binding level structures are initialized by copying this one. */
244 static struct binding_level clear_binding_level
245 = {NULL, NULL, NULL, NULL, NULL, NULL_BINDING_LEVEL, 0, 0, 0, 0, 0, NULL,
246 NULL};
248 /* Nonzero means unconditionally make a BLOCK for the next level pushed. */
250 static int keep_next_level_flag;
252 /* Nonzero means make a BLOCK for the next level pushed
253 if it has subblocks. */
255 static int keep_next_if_subblocks;
257 /* The chain of outer levels of label scopes.
258 This uses the same data structure used for binding levels,
259 but it works differently: each link in the chain records
260 saved values of named_labels and shadowed_labels for
261 a label binding level outside the current one. */
263 static GTY(()) struct binding_level *label_level_chain;
265 /* Functions called automatically at the beginning and end of execution. */
267 tree static_ctors, static_dtors;
269 /* Forward declarations. */
271 static struct binding_level * make_binding_level PARAMS ((void));
272 static void pop_binding_level PARAMS ((struct binding_level **));
273 static void clear_limbo_values PARAMS ((tree));
274 static int duplicate_decls PARAMS ((tree, tree, int));
275 static int redeclaration_error_message PARAMS ((tree, tree));
276 static void storedecls PARAMS ((tree));
277 static void storetags PARAMS ((tree));
278 static tree lookup_tag PARAMS ((enum tree_code, tree,
279 struct binding_level *, int));
280 static tree lookup_tag_reverse PARAMS ((tree));
281 static tree grokdeclarator PARAMS ((tree, tree, enum decl_context,
282 int));
283 static tree grokparms PARAMS ((tree, int));
284 static void layout_array_type PARAMS ((tree));
285 static tree c_make_fname_decl PARAMS ((tree, int));
286 static void c_expand_body_1 PARAMS ((tree, int));
287 static void warn_if_shadowing PARAMS ((tree, tree));
288 static bool flexible_array_type_p PARAMS ((tree));
290 /* States indicating how grokdeclarator() should handle declspecs marked
291 with __attribute__((deprecated)). An object declared as
292 __attribute__((deprecated)) suppresses warnings of uses of other
293 deprecated items. */
295 enum deprecated_states {
296 DEPRECATED_NORMAL,
297 DEPRECATED_SUPPRESS
300 static enum deprecated_states deprecated_state = DEPRECATED_NORMAL;
302 void
303 c_print_identifier (file, node, indent)
304 FILE *file;
305 tree node;
306 int indent;
308 print_node (file, "global", IDENTIFIER_GLOBAL_VALUE (node), indent + 4);
309 print_node (file, "local", IDENTIFIER_LOCAL_VALUE (node), indent + 4);
310 print_node (file, "label", IDENTIFIER_LABEL_VALUE (node), indent + 4);
311 print_node (file, "implicit", IDENTIFIER_IMPLICIT_DECL (node), indent + 4);
312 print_node (file, "error locus", IDENTIFIER_ERROR_LOCUS (node), indent + 4);
313 print_node (file, "limbo value", IDENTIFIER_LIMBO_VALUE (node), indent + 4);
314 if (C_IS_RESERVED_WORD (node))
316 tree rid = ridpointers[C_RID_CODE (node)];
317 indent_to (file, indent + 4);
318 fprintf (file, "rid ");
319 fprintf (file, HOST_PTR_PRINTF, (void *)rid);
320 fprintf (file, " \"%s\"", IDENTIFIER_POINTER (rid));
324 /* Hook called at end of compilation to assume 1 elt
325 for a top-level tentative array defn that wasn't complete before. */
327 void
328 c_finish_incomplete_decl (decl)
329 tree decl;
331 if (TREE_CODE (decl) == VAR_DECL)
333 tree type = TREE_TYPE (decl);
334 if (type != error_mark_node
335 && TREE_CODE (type) == ARRAY_TYPE
336 && ! DECL_EXTERNAL (decl)
337 && TYPE_DOMAIN (type) == 0)
339 warning_with_decl (decl, "array `%s' assumed to have one element");
341 complete_array_type (type, NULL_TREE, 1);
343 layout_decl (decl, 0);
348 /* Reuse or create a struct for this binding level. */
350 static struct binding_level *
351 make_binding_level ()
353 if (free_binding_level)
355 struct binding_level *result = free_binding_level;
356 free_binding_level = result->level_chain;
357 return result;
359 else
360 return (struct binding_level *) ggc_alloc (sizeof (struct binding_level));
363 /* Remove a binding level from a list and add it to the level chain. */
365 static void
366 pop_binding_level (lp)
367 struct binding_level **lp;
369 struct binding_level *l = *lp;
370 *lp = l->level_chain;
372 memset (l, 0, sizeof (struct binding_level));
373 l->level_chain = free_binding_level;
374 free_binding_level = l;
377 /* Nonzero if we are currently in the global binding level. */
380 global_bindings_p ()
382 return current_binding_level == global_binding_level;
385 void
386 keep_next_level ()
388 keep_next_level_flag = 1;
391 /* Nonzero if the current level needs to have a BLOCK made. */
394 kept_level_p ()
396 return ((current_binding_level->keep_if_subblocks
397 && current_binding_level->blocks != 0)
398 || current_binding_level->keep
399 || current_binding_level->names != 0
400 || (current_binding_level->tags != 0
401 && !current_binding_level->tag_transparent));
404 /* Identify this binding level as a level of parameters.
405 DEFINITION_FLAG is 1 for a definition, 0 for a declaration.
406 But it turns out there is no way to pass the right value for
407 DEFINITION_FLAG, so we ignore it. */
409 void
410 declare_parm_level (definition_flag)
411 int definition_flag ATTRIBUTE_UNUSED;
413 current_binding_level->parm_flag = 1;
416 /* Nonzero if currently making parm declarations. */
419 in_parm_level_p ()
421 return current_binding_level->parm_flag;
424 /* Enter a new binding level.
425 If TAG_TRANSPARENT is nonzero, do so only for the name space of variables,
426 not for that of tags. */
428 void
429 pushlevel (tag_transparent)
430 int tag_transparent;
432 struct binding_level *newlevel = NULL_BINDING_LEVEL;
434 /* If this is the top level of a function,
435 just make sure that NAMED_LABELS is 0. */
437 if (current_binding_level == global_binding_level)
439 named_labels = 0;
442 newlevel = make_binding_level ();
444 /* Add this level to the front of the chain (stack) of levels that
445 are active. */
447 *newlevel = clear_binding_level;
448 newlevel->tag_transparent
449 = (tag_transparent
450 || (current_binding_level
451 ? current_binding_level->subblocks_tag_transparent
452 : 0));
453 newlevel->level_chain = current_binding_level;
454 current_binding_level = newlevel;
455 newlevel->keep = keep_next_level_flag;
456 keep_next_level_flag = 0;
457 newlevel->keep_if_subblocks = keep_next_if_subblocks;
458 keep_next_if_subblocks = 0;
461 /* Clear the limbo values of all identifiers defined in BLOCK or a subblock. */
463 static void
464 clear_limbo_values (block)
465 tree block;
467 tree tem;
469 for (tem = BLOCK_VARS (block); tem; tem = TREE_CHAIN (tem))
470 if (DECL_NAME (tem) != 0)
471 IDENTIFIER_LIMBO_VALUE (DECL_NAME (tem)) = 0;
473 for (tem = BLOCK_SUBBLOCKS (block); tem; tem = TREE_CHAIN (tem))
474 clear_limbo_values (tem);
477 /* Exit a binding level.
478 Pop the level off, and restore the state of the identifier-decl mappings
479 that were in effect when this level was entered.
481 If KEEP is nonzero, this level had explicit declarations, so
482 and create a "block" (a BLOCK node) for the level
483 to record its declarations and subblocks for symbol table output.
485 If FUNCTIONBODY is nonzero, this level is the body of a function,
486 so create a block as if KEEP were set and also clear out all
487 label names.
489 If REVERSE is nonzero, reverse the order of decls before putting
490 them into the BLOCK. */
492 tree
493 poplevel (keep, reverse, functionbody)
494 int keep;
495 int reverse;
496 int functionbody;
498 tree link;
499 /* The chain of decls was accumulated in reverse order.
500 Put it into forward order, just for cleanliness. */
501 tree decls;
502 tree tags = current_binding_level->tags;
503 tree subblocks = current_binding_level->blocks;
504 tree block = 0;
505 tree decl;
506 int block_previously_created;
508 keep |= current_binding_level->keep;
510 /* This warning is turned off because it causes warnings for
511 declarations like `extern struct foo *x'. */
512 #if 0
513 /* Warn about incomplete structure types in this level. */
514 for (link = tags; link; link = TREE_CHAIN (link))
515 if (!COMPLETE_TYPE_P (TREE_VALUE (link)))
517 tree type = TREE_VALUE (link);
518 tree type_name = TYPE_NAME (type);
519 char *id = IDENTIFIER_POINTER (TREE_CODE (type_name) == IDENTIFIER_NODE
520 ? type_name
521 : DECL_NAME (type_name));
522 switch (TREE_CODE (type))
524 case RECORD_TYPE:
525 error ("`struct %s' incomplete in scope ending here", id);
526 break;
527 case UNION_TYPE:
528 error ("`union %s' incomplete in scope ending here", id);
529 break;
530 case ENUMERAL_TYPE:
531 error ("`enum %s' incomplete in scope ending here", id);
532 break;
535 #endif /* 0 */
537 /* Get the decls in the order they were written.
538 Usually current_binding_level->names is in reverse order.
539 But parameter decls were previously put in forward order. */
541 if (reverse)
542 current_binding_level->names
543 = decls = nreverse (current_binding_level->names);
544 else
545 decls = current_binding_level->names;
547 /* Output any nested inline functions within this block
548 if they weren't already output. */
550 for (decl = decls; decl; decl = TREE_CHAIN (decl))
551 if (TREE_CODE (decl) == FUNCTION_DECL
552 && ! TREE_ASM_WRITTEN (decl)
553 && DECL_INITIAL (decl) != 0
554 && TREE_ADDRESSABLE (decl))
556 /* If this decl was copied from a file-scope decl
557 on account of a block-scope extern decl,
558 propagate TREE_ADDRESSABLE to the file-scope decl.
560 DECL_ABSTRACT_ORIGIN can be set to itself if warn_return_type is
561 true, since then the decl goes through save_for_inline_copying. */
562 if (DECL_ABSTRACT_ORIGIN (decl) != 0
563 && DECL_ABSTRACT_ORIGIN (decl) != decl)
564 TREE_ADDRESSABLE (DECL_ABSTRACT_ORIGIN (decl)) = 1;
567 /* We used to warn about unused variables in expand_end_bindings,
568 i.e. while generating RTL. But in function-at-a-time mode we may
569 choose to never expand a function at all (e.g. auto inlining), so
570 we do this explicitly now. */
571 warn_about_unused_variables (getdecls ());
573 /* If there were any declarations or structure tags in that level,
574 or if this level is a function body,
575 create a BLOCK to record them for the life of this function. */
577 block = 0;
578 block_previously_created = (current_binding_level->this_block != 0);
579 if (block_previously_created)
580 block = current_binding_level->this_block;
581 else if (keep || functionbody
582 || (current_binding_level->keep_if_subblocks && subblocks != 0))
583 block = make_node (BLOCK);
584 if (block != 0)
586 BLOCK_VARS (block) = decls;
587 BLOCK_SUBBLOCKS (block) = subblocks;
590 /* In each subblock, record that this is its superior. */
592 for (link = subblocks; link; link = TREE_CHAIN (link))
593 BLOCK_SUPERCONTEXT (link) = block;
595 /* Clear out the meanings of the local variables of this level. */
597 for (link = decls; link; link = TREE_CHAIN (link))
599 if (DECL_NAME (link) != 0)
601 /* If the ident. was used or addressed via a local extern decl,
602 don't forget that fact. */
603 if (DECL_EXTERNAL (link))
605 if (TREE_USED (link))
606 TREE_USED (DECL_NAME (link)) = 1;
607 if (TREE_ADDRESSABLE (link))
608 TREE_ADDRESSABLE (DECL_ASSEMBLER_NAME (link)) = 1;
610 IDENTIFIER_LOCAL_VALUE (DECL_NAME (link)) = 0;
614 /* Restore all name-meanings of the outer levels
615 that were shadowed by this level. */
617 for (link = current_binding_level->shadowed; link; link = TREE_CHAIN (link))
618 IDENTIFIER_LOCAL_VALUE (TREE_PURPOSE (link)) = TREE_VALUE (link);
620 /* If the level being exited is the top level of a function,
621 check over all the labels, and clear out the current
622 (function local) meanings of their names. */
624 if (functionbody)
626 clear_limbo_values (block);
628 /* If this is the top level block of a function,
629 the vars are the function's parameters.
630 Don't leave them in the BLOCK because they are
631 found in the FUNCTION_DECL instead. */
633 BLOCK_VARS (block) = 0;
635 /* Clear out the definitions of all label names,
636 since their scopes end here,
637 and add them to BLOCK_VARS. */
639 for (link = named_labels; link; link = TREE_CHAIN (link))
641 tree label = TREE_VALUE (link);
643 if (DECL_INITIAL (label) == 0)
645 error_with_decl (label, "label `%s' used but not defined");
646 /* Avoid crashing later. */
647 define_label (input_filename, lineno,
648 DECL_NAME (label));
650 else if (warn_unused_label && !TREE_USED (label))
651 warning_with_decl (label, "label `%s' defined but not used");
652 IDENTIFIER_LABEL_VALUE (DECL_NAME (label)) = 0;
654 /* Put the labels into the "variables" of the
655 top-level block, so debugger can see them. */
656 TREE_CHAIN (label) = BLOCK_VARS (block);
657 BLOCK_VARS (block) = label;
661 /* Pop the current level, and free the structure for reuse. */
663 pop_binding_level (&current_binding_level);
665 /* Dispose of the block that we just made inside some higher level. */
666 if (functionbody)
667 DECL_INITIAL (current_function_decl) = block;
668 else if (block)
670 if (!block_previously_created)
671 current_binding_level->blocks
672 = chainon (current_binding_level->blocks, block);
674 /* If we did not make a block for the level just exited,
675 any blocks made for inner levels
676 (since they cannot be recorded as subblocks in that level)
677 must be carried forward so they will later become subblocks
678 of something else. */
679 else if (subblocks)
680 current_binding_level->blocks
681 = chainon (current_binding_level->blocks, subblocks);
683 /* Set the TYPE_CONTEXTs for all of the tagged types belonging to this
684 binding contour so that they point to the appropriate construct, i.e.
685 either to the current FUNCTION_DECL node, or else to the BLOCK node
686 we just constructed.
688 Note that for tagged types whose scope is just the formal parameter
689 list for some function type specification, we can't properly set
690 their TYPE_CONTEXTs here, because we don't have a pointer to the
691 appropriate FUNCTION_TYPE node readily available to us. For those
692 cases, the TYPE_CONTEXTs of the relevant tagged type nodes get set
693 in `grokdeclarator' as soon as we have created the FUNCTION_TYPE
694 node which will represent the "scope" for these "parameter list local"
695 tagged types. */
697 if (functionbody)
698 for (link = tags; link; link = TREE_CHAIN (link))
699 TYPE_CONTEXT (TREE_VALUE (link)) = current_function_decl;
700 else if (block)
701 for (link = tags; link; link = TREE_CHAIN (link))
702 TYPE_CONTEXT (TREE_VALUE (link)) = block;
704 if (block)
705 TREE_USED (block) = 1;
707 return block;
710 /* Insert BLOCK at the end of the list of subblocks of the
711 current binding level. This is used when a BIND_EXPR is expanded,
712 to handle the BLOCK node inside the BIND_EXPR. */
714 void
715 insert_block (block)
716 tree block;
718 TREE_USED (block) = 1;
719 current_binding_level->blocks
720 = chainon (current_binding_level->blocks, block);
723 /* Set the BLOCK node for the innermost scope
724 (the one we are currently in). */
726 void
727 set_block (block)
728 tree block;
730 current_binding_level->this_block = block;
731 current_binding_level->names = chainon (current_binding_level->names,
732 BLOCK_VARS (block));
733 current_binding_level->blocks = chainon (current_binding_level->blocks,
734 BLOCK_SUBBLOCKS (block));
737 void
738 push_label_level ()
740 struct binding_level *newlevel;
742 newlevel = make_binding_level ();
744 /* Add this level to the front of the chain (stack) of label levels. */
746 newlevel->level_chain = label_level_chain;
747 label_level_chain = newlevel;
749 newlevel->names = named_labels;
750 newlevel->shadowed = shadowed_labels;
751 named_labels = 0;
752 shadowed_labels = 0;
755 void
756 pop_label_level ()
758 struct binding_level *level = label_level_chain;
759 tree link, prev;
761 /* Clear out the definitions of the declared labels in this level.
762 Leave in the list any ordinary, non-declared labels. */
763 for (link = named_labels, prev = 0; link;)
765 if (C_DECLARED_LABEL_FLAG (TREE_VALUE (link)))
767 if (DECL_SOURCE_LINE (TREE_VALUE (link)) == 0)
769 error_with_decl (TREE_VALUE (link),
770 "label `%s' used but not defined");
771 /* Avoid crashing later. */
772 define_label (input_filename, lineno,
773 DECL_NAME (TREE_VALUE (link)));
775 else if (warn_unused_label && !TREE_USED (TREE_VALUE (link)))
776 warning_with_decl (TREE_VALUE (link),
777 "label `%s' defined but not used");
778 IDENTIFIER_LABEL_VALUE (DECL_NAME (TREE_VALUE (link))) = 0;
780 /* Delete this element from the list. */
781 link = TREE_CHAIN (link);
782 if (prev)
783 TREE_CHAIN (prev) = link;
784 else
785 named_labels = link;
787 else
789 prev = link;
790 link = TREE_CHAIN (link);
794 /* Bring back all the labels that were shadowed. */
795 for (link = shadowed_labels; link; link = TREE_CHAIN (link))
796 if (DECL_NAME (TREE_VALUE (link)) != 0)
797 IDENTIFIER_LABEL_VALUE (DECL_NAME (TREE_VALUE (link)))
798 = TREE_VALUE (link);
800 named_labels = chainon (named_labels, level->names);
801 shadowed_labels = level->shadowed;
803 /* Pop the current level, and free the structure for reuse. */
804 pop_binding_level (&label_level_chain);
807 /* Push a definition or a declaration of struct, union or enum tag "name".
808 "type" should be the type node.
809 We assume that the tag "name" is not already defined.
811 Note that the definition may really be just a forward reference.
812 In that case, the TYPE_SIZE will be zero. */
814 void
815 pushtag (name, type)
816 tree name, type;
818 struct binding_level *b;
820 /* Find the proper binding level for this type tag. */
822 for (b = current_binding_level; b->tag_transparent; b = b->level_chain)
823 continue;
825 if (name)
827 /* Record the identifier as the type's name if it has none. */
829 if (TYPE_NAME (type) == 0)
830 TYPE_NAME (type) = name;
833 b->tags = tree_cons (name, type, b->tags);
835 /* Create a fake NULL-named TYPE_DECL node whose TREE_TYPE will be the
836 tagged type we just added to the current binding level. This fake
837 NULL-named TYPE_DECL node helps dwarfout.c to know when it needs
838 to output a representation of a tagged type, and it also gives
839 us a convenient place to record the "scope start" address for the
840 tagged type. */
842 TYPE_STUB_DECL (type) = pushdecl (build_decl (TYPE_DECL, NULL_TREE, type));
844 /* An approximation for now, so we can tell this is a function-scope tag.
845 This will be updated in poplevel. */
846 TYPE_CONTEXT (type) = DECL_CONTEXT (TYPE_STUB_DECL (type));
849 /* Handle when a new declaration NEWDECL
850 has the same name as an old one OLDDECL
851 in the same binding contour.
852 Prints an error message if appropriate.
854 If safely possible, alter OLDDECL to look like NEWDECL, and return 1.
855 Otherwise, return 0.
857 When DIFFERENT_BINDING_LEVEL is true, NEWDECL is an external declaration,
858 and OLDDECL is in an outer binding level and should thus not be changed. */
860 static int
861 duplicate_decls (newdecl, olddecl, different_binding_level)
862 tree newdecl, olddecl;
863 int different_binding_level;
865 int types_match = comptypes (TREE_TYPE (newdecl), TREE_TYPE (olddecl));
866 int new_is_definition = (TREE_CODE (newdecl) == FUNCTION_DECL
867 && DECL_INITIAL (newdecl) != 0);
868 tree oldtype = TREE_TYPE (olddecl);
869 tree newtype = TREE_TYPE (newdecl);
870 int errmsg = 0;
872 if (DECL_P (olddecl))
874 if (TREE_CODE (newdecl) == FUNCTION_DECL
875 && TREE_CODE (olddecl) == FUNCTION_DECL
876 && (DECL_UNINLINABLE (newdecl) || DECL_UNINLINABLE (olddecl)))
878 if (DECL_DECLARED_INLINE_P (newdecl)
879 && DECL_UNINLINABLE (newdecl)
880 && lookup_attribute ("noinline", DECL_ATTRIBUTES (newdecl)))
881 /* Already warned elsewhere. */;
882 else if (DECL_DECLARED_INLINE_P (olddecl)
883 && DECL_UNINLINABLE (olddecl)
884 && lookup_attribute ("noinline", DECL_ATTRIBUTES (olddecl)))
885 /* Already warned. */;
886 else if (DECL_DECLARED_INLINE_P (newdecl)
887 && ! DECL_DECLARED_INLINE_P (olddecl)
888 && DECL_UNINLINABLE (olddecl)
889 && lookup_attribute ("noinline", DECL_ATTRIBUTES (olddecl)))
891 warning_with_decl (newdecl,
892 "function `%s' redeclared as inline");
893 warning_with_decl (olddecl,
894 "previous declaration of function `%s' with attribute noinline");
896 else if (DECL_DECLARED_INLINE_P (olddecl)
897 && DECL_UNINLINABLE (newdecl)
898 && lookup_attribute ("noinline", DECL_ATTRIBUTES (newdecl)))
900 warning_with_decl (newdecl,
901 "function `%s' redeclared with attribute noinline");
902 warning_with_decl (olddecl,
903 "previous declaration of function `%s' was inline");
907 DECL_ATTRIBUTES (newdecl)
908 = (*targetm.merge_decl_attributes) (olddecl, newdecl);
911 if (TREE_CODE (newtype) == ERROR_MARK
912 || TREE_CODE (oldtype) == ERROR_MARK)
913 types_match = 0;
915 /* New decl is completely inconsistent with the old one =>
916 tell caller to replace the old one.
917 This is always an error except in the case of shadowing a builtin. */
918 if (TREE_CODE (olddecl) != TREE_CODE (newdecl))
920 if (TREE_CODE (olddecl) == FUNCTION_DECL
921 && (DECL_BUILT_IN (olddecl)
922 || DECL_BUILT_IN_NONANSI (olddecl)))
924 /* If you declare a built-in or predefined function name as static,
925 the old definition is overridden,
926 but optionally warn this was a bad choice of name. */
927 if (!TREE_PUBLIC (newdecl))
929 if (!warn_shadow)
931 else if (DECL_BUILT_IN (olddecl))
932 warning_with_decl (newdecl, "shadowing built-in function `%s'");
933 else
934 warning_with_decl (newdecl, "shadowing library function `%s'");
936 /* Likewise, if the built-in is not ansi, then programs can
937 override it even globally without an error. */
938 else if (! DECL_BUILT_IN (olddecl))
939 warning_with_decl (newdecl,
940 "library function `%s' declared as non-function");
942 else if (DECL_BUILT_IN_NONANSI (olddecl))
943 warning_with_decl (newdecl,
944 "built-in function `%s' declared as non-function");
945 else
946 warning_with_decl (newdecl,
947 "built-in function `%s' declared as non-function");
949 else
951 error_with_decl (newdecl, "`%s' redeclared as different kind of symbol");
952 error_with_decl (olddecl, "previous declaration of `%s'");
955 return 0;
958 /* For real parm decl following a forward decl,
959 return 1 so old decl will be reused. */
960 if (types_match && TREE_CODE (newdecl) == PARM_DECL
961 && TREE_ASM_WRITTEN (olddecl) && ! TREE_ASM_WRITTEN (newdecl))
962 return 1;
964 /* The new declaration is the same kind of object as the old one.
965 The declarations may partially match. Print warnings if they don't
966 match enough. Ultimately, copy most of the information from the new
967 decl to the old one, and keep using the old one. */
969 if (TREE_CODE (olddecl) == FUNCTION_DECL && DECL_BUILT_IN (olddecl))
971 /* A function declaration for a built-in function. */
972 if (!TREE_PUBLIC (newdecl))
974 /* If you declare a built-in function name as static, the
975 built-in definition is overridden,
976 but optionally warn this was a bad choice of name. */
977 if (warn_shadow)
978 warning_with_decl (newdecl, "shadowing built-in function `%s'");
979 /* Discard the old built-in function. */
980 return 0;
982 else if (!types_match)
984 /* Accept the return type of the new declaration if same modes. */
985 tree oldreturntype = TREE_TYPE (oldtype);
986 tree newreturntype = TREE_TYPE (newtype);
988 if (TYPE_MODE (oldreturntype) == TYPE_MODE (newreturntype))
990 /* Function types may be shared, so we can't just modify
991 the return type of olddecl's function type. */
992 tree trytype
993 = build_function_type (newreturntype,
994 TYPE_ARG_TYPES (oldtype));
995 trytype = build_type_attribute_variant (trytype,
996 TYPE_ATTRIBUTES (oldtype));
998 types_match = comptypes (newtype, trytype);
999 if (types_match)
1000 oldtype = trytype;
1002 /* Accept harmless mismatch in first argument type also.
1003 This is for the ffs and fprintf builtins. */
1004 if (TYPE_ARG_TYPES (TREE_TYPE (newdecl)) != 0
1005 && TYPE_ARG_TYPES (oldtype) != 0
1006 && TREE_VALUE (TYPE_ARG_TYPES (newtype)) != 0
1007 && TREE_VALUE (TYPE_ARG_TYPES (oldtype)) != 0
1008 && (TYPE_MODE (TREE_VALUE (TYPE_ARG_TYPES (newtype)))
1009 == TYPE_MODE (TREE_VALUE (TYPE_ARG_TYPES (oldtype)))))
1011 /* Function types may be shared, so we can't just modify
1012 the return type of olddecl's function type. */
1013 tree trytype
1014 = build_function_type (TREE_TYPE (oldtype),
1015 tree_cons (NULL_TREE,
1016 TREE_VALUE (TYPE_ARG_TYPES (newtype)),
1017 TREE_CHAIN (TYPE_ARG_TYPES (oldtype))));
1018 trytype = build_type_attribute_variant (trytype,
1019 TYPE_ATTRIBUTES (oldtype));
1021 types_match = comptypes (newtype, trytype);
1022 if (types_match)
1023 oldtype = trytype;
1025 if (! different_binding_level)
1026 TREE_TYPE (olddecl) = oldtype;
1028 else if (TYPE_ARG_TYPES (oldtype) == NULL
1029 && TYPE_ARG_TYPES (newtype) != NULL)
1031 /* For bcmp, bzero, fputs the builtin type has arguments not
1032 specified. Use the ones from the prototype so that type checking
1033 is done for them. */
1034 tree trytype
1035 = build_function_type (TREE_TYPE (oldtype),
1036 TYPE_ARG_TYPES (newtype));
1037 trytype = build_type_attribute_variant (trytype,
1038 TYPE_ATTRIBUTES (oldtype));
1040 oldtype = trytype;
1041 if (! different_binding_level)
1042 TREE_TYPE (olddecl) = oldtype;
1044 if (!types_match)
1046 /* If types don't match for a built-in, throw away the built-in. */
1047 warning_with_decl (newdecl, "conflicting types for built-in function `%s'");
1048 return 0;
1051 else if (TREE_CODE (olddecl) == FUNCTION_DECL
1052 && DECL_SOURCE_LINE (olddecl) == 0)
1054 /* A function declaration for a predeclared function
1055 that isn't actually built in. */
1056 if (!TREE_PUBLIC (newdecl))
1058 /* If you declare it as static, the
1059 default definition is overridden. */
1060 return 0;
1062 else if (!types_match)
1064 /* If the types don't match, preserve volatility indication.
1065 Later on, we will discard everything else about the
1066 default declaration. */
1067 TREE_THIS_VOLATILE (newdecl) |= TREE_THIS_VOLATILE (olddecl);
1070 /* Permit char *foo () to match void *foo (...) if not pedantic,
1071 if one of them came from a system header file. */
1072 else if (!types_match
1073 && TREE_CODE (olddecl) == FUNCTION_DECL
1074 && TREE_CODE (newdecl) == FUNCTION_DECL
1075 && TREE_CODE (TREE_TYPE (oldtype)) == POINTER_TYPE
1076 && TREE_CODE (TREE_TYPE (newtype)) == POINTER_TYPE
1077 && (DECL_IN_SYSTEM_HEADER (olddecl)
1078 || DECL_IN_SYSTEM_HEADER (newdecl))
1079 && ((TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (newtype))) == void_type_node
1080 && TYPE_ARG_TYPES (oldtype) == 0
1081 && self_promoting_args_p (TYPE_ARG_TYPES (newtype))
1082 && TREE_TYPE (TREE_TYPE (oldtype)) == char_type_node)
1084 (TREE_TYPE (TREE_TYPE (newtype)) == char_type_node
1085 && TYPE_ARG_TYPES (newtype) == 0
1086 && self_promoting_args_p (TYPE_ARG_TYPES (oldtype))
1087 && TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (oldtype))) == void_type_node)))
1089 if (pedantic)
1090 pedwarn_with_decl (newdecl, "conflicting types for `%s'");
1091 /* Make sure we keep void * as ret type, not char *. */
1092 if (TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (oldtype))) == void_type_node)
1093 TREE_TYPE (newdecl) = newtype = oldtype;
1095 /* Set DECL_IN_SYSTEM_HEADER, so that if we see another declaration
1096 we will come back here again. */
1097 DECL_IN_SYSTEM_HEADER (newdecl) = 1;
1099 else if (!types_match
1100 /* Permit char *foo (int, ...); followed by char *foo ();
1101 if not pedantic. */
1102 && ! (TREE_CODE (olddecl) == FUNCTION_DECL
1103 && ! pedantic
1104 /* Return types must still match. */
1105 && comptypes (TREE_TYPE (oldtype),
1106 TREE_TYPE (newtype))
1107 && TYPE_ARG_TYPES (newtype) == 0))
1109 error_with_decl (newdecl, "conflicting types for `%s'");
1110 /* Check for function type mismatch
1111 involving an empty arglist vs a nonempty one. */
1112 if (TREE_CODE (olddecl) == FUNCTION_DECL
1113 && comptypes (TREE_TYPE (oldtype),
1114 TREE_TYPE (newtype))
1115 && ((TYPE_ARG_TYPES (oldtype) == 0
1116 && DECL_INITIAL (olddecl) == 0)
1118 (TYPE_ARG_TYPES (newtype) == 0
1119 && DECL_INITIAL (newdecl) == 0)))
1121 /* Classify the problem further. */
1122 tree t = TYPE_ARG_TYPES (oldtype);
1123 if (t == 0)
1124 t = TYPE_ARG_TYPES (newtype);
1125 for (; t; t = TREE_CHAIN (t))
1127 tree type = TREE_VALUE (t);
1129 if (TREE_CHAIN (t) == 0
1130 && TYPE_MAIN_VARIANT (type) != void_type_node)
1132 error ("a parameter list with an ellipsis can't match an empty parameter name list declaration");
1133 break;
1136 if (c_type_promotes_to (type) != type)
1138 error ("an argument type that has a default promotion can't match an empty parameter name list declaration");
1139 break;
1143 error_with_decl (olddecl, "previous declaration of `%s'");
1145 /* This is safer because the initializer might contain references
1146 to variables that were declared between olddecl and newdecl. This
1147 will make the initializer invalid for olddecl in case it gets
1148 assigned to olddecl below. */
1149 DECL_INITIAL (newdecl) = 0;
1151 /* TLS cannot follow non-TLS declaration. */
1152 else if (TREE_CODE (olddecl) == VAR_DECL && TREE_CODE (newdecl) == VAR_DECL
1153 && !DECL_THREAD_LOCAL (olddecl) && DECL_THREAD_LOCAL (newdecl))
1155 error_with_decl (newdecl, "thread-local declaration of `%s' follows non thread-local declaration");
1156 error_with_decl (olddecl, "previous declaration of `%s'");
1158 /* non-TLS declaration cannot follow TLS declaration. */
1159 else if (TREE_CODE (olddecl) == VAR_DECL && TREE_CODE (newdecl) == VAR_DECL
1160 && DECL_THREAD_LOCAL (olddecl) && !DECL_THREAD_LOCAL (newdecl))
1162 error_with_decl (newdecl, "non thread-local declaration of `%s' follows thread-local declaration");
1163 error_with_decl (olddecl, "previous declaration of `%s'");
1165 else
1167 errmsg = redeclaration_error_message (newdecl, olddecl);
1168 if (errmsg)
1170 switch (errmsg)
1172 case 1:
1173 error_with_decl (newdecl, "redefinition of `%s'");
1174 break;
1175 case 2:
1176 error_with_decl (newdecl, "redeclaration of `%s'");
1177 break;
1178 case 3:
1179 error_with_decl (newdecl, "conflicting declarations of `%s'");
1180 break;
1181 default:
1182 abort ();
1185 error_with_decl (olddecl,
1186 ((DECL_INITIAL (olddecl)
1187 && current_binding_level == global_binding_level)
1188 ? "`%s' previously defined here"
1189 : "`%s' previously declared here"));
1190 return 0;
1192 else if (TREE_CODE (newdecl) == TYPE_DECL
1193 && (DECL_IN_SYSTEM_HEADER (olddecl)
1194 || DECL_IN_SYSTEM_HEADER (newdecl)))
1196 warning_with_decl (newdecl, "redefinition of `%s'");
1197 warning_with_decl
1198 (olddecl,
1199 ((DECL_INITIAL (olddecl)
1200 && current_binding_level == global_binding_level)
1201 ? "`%s' previously defined here"
1202 : "`%s' previously declared here"));
1204 else if (TREE_CODE (olddecl) == FUNCTION_DECL
1205 && DECL_INITIAL (olddecl) != 0
1206 && TYPE_ARG_TYPES (oldtype) == 0
1207 && TYPE_ARG_TYPES (newtype) != 0
1208 && TYPE_ACTUAL_ARG_TYPES (oldtype) != 0)
1210 tree type, parm;
1211 int nargs;
1212 /* Prototype decl follows defn w/o prototype. */
1214 for (parm = TYPE_ACTUAL_ARG_TYPES (oldtype),
1215 type = TYPE_ARG_TYPES (newtype),
1216 nargs = 1;
1218 parm = TREE_CHAIN (parm), type = TREE_CHAIN (type), nargs++)
1220 if (TYPE_MAIN_VARIANT (TREE_VALUE (parm)) == void_type_node
1221 && TYPE_MAIN_VARIANT (TREE_VALUE (type)) == void_type_node)
1223 warning_with_decl (newdecl, "prototype for `%s' follows");
1224 warning_with_decl (olddecl, "non-prototype definition here");
1225 break;
1227 if (TYPE_MAIN_VARIANT (TREE_VALUE (parm)) == void_type_node
1228 || TYPE_MAIN_VARIANT (TREE_VALUE (type)) == void_type_node)
1230 error_with_decl (newdecl,
1231 "prototype for `%s' follows and number of arguments doesn't match");
1232 error_with_decl (olddecl, "non-prototype definition here");
1233 errmsg = 1;
1234 break;
1236 /* Type for passing arg must be consistent
1237 with that declared for the arg. */
1238 if (! comptypes (TREE_VALUE (parm), TREE_VALUE (type)))
1240 error_with_decl (newdecl,
1241 "prototype for `%s' follows and argument %d doesn't match",
1242 nargs);
1243 error_with_decl (olddecl, "non-prototype definition here");
1244 errmsg = 1;
1245 break;
1249 /* Warn about mismatches in various flags. */
1250 else
1252 /* Warn if function is now inline
1253 but was previously declared not inline and has been called. */
1254 if (TREE_CODE (olddecl) == FUNCTION_DECL
1255 && ! DECL_DECLARED_INLINE_P (olddecl)
1256 && DECL_DECLARED_INLINE_P (newdecl)
1257 && TREE_USED (olddecl))
1258 warning_with_decl (newdecl,
1259 "`%s' declared inline after being called");
1260 if (TREE_CODE (olddecl) == FUNCTION_DECL
1261 && ! DECL_DECLARED_INLINE_P (olddecl)
1262 && DECL_DECLARED_INLINE_P (newdecl)
1263 && DECL_INITIAL (olddecl) != 0)
1264 warning_with_decl (newdecl,
1265 "`%s' declared inline after its definition");
1267 /* If pedantic, warn when static declaration follows a non-static
1268 declaration. Otherwise, do so only for functions. */
1269 if ((pedantic || TREE_CODE (olddecl) == FUNCTION_DECL)
1270 && TREE_PUBLIC (olddecl)
1271 && !TREE_PUBLIC (newdecl))
1272 warning_with_decl (newdecl, "static declaration for `%s' follows non-static");
1274 /* If warn_traditional, warn when a non-static function
1275 declaration follows a static one. */
1276 if (warn_traditional && !in_system_header
1277 && TREE_CODE (olddecl) == FUNCTION_DECL
1278 && !TREE_PUBLIC (olddecl)
1279 && TREE_PUBLIC (newdecl))
1280 warning_with_decl (newdecl, "non-static declaration for `%s' follows static");
1282 /* Warn when const declaration follows a non-const
1283 declaration, but not for functions. */
1284 if (TREE_CODE (olddecl) != FUNCTION_DECL
1285 && !TREE_READONLY (olddecl)
1286 && TREE_READONLY (newdecl))
1287 warning_with_decl (newdecl, "const declaration for `%s' follows non-const");
1288 /* These bits are logically part of the type, for variables.
1289 But not for functions
1290 (where qualifiers are not valid ANSI anyway). */
1291 else if (pedantic && TREE_CODE (olddecl) != FUNCTION_DECL
1292 && (TREE_READONLY (newdecl) != TREE_READONLY (olddecl)
1293 || TREE_THIS_VOLATILE (newdecl) != TREE_THIS_VOLATILE (olddecl)))
1294 pedwarn_with_decl (newdecl, "type qualifiers for `%s' conflict with previous decl");
1298 /* Optionally warn about more than one declaration for the same name. */
1299 if (errmsg == 0 && warn_redundant_decls && DECL_SOURCE_LINE (olddecl) != 0
1300 /* Don't warn about a function declaration
1301 followed by a definition. */
1302 && !(TREE_CODE (newdecl) == FUNCTION_DECL && DECL_INITIAL (newdecl) != 0
1303 && DECL_INITIAL (olddecl) == 0)
1304 /* Don't warn about extern decl followed by (tentative) definition. */
1305 && !(DECL_EXTERNAL (olddecl) && ! DECL_EXTERNAL (newdecl)))
1307 warning_with_decl (newdecl, "redundant redeclaration of `%s' in same scope");
1308 warning_with_decl (olddecl, "previous declaration of `%s'");
1311 /* Copy all the DECL_... slots specified in the new decl
1312 except for any that we copy here from the old type.
1314 Past this point, we don't change OLDTYPE and NEWTYPE
1315 even if we change the types of NEWDECL and OLDDECL. */
1317 if (types_match)
1319 /* When copying info to olddecl, we store into write_olddecl
1320 instead. This allows us to avoid modifying olddecl when
1321 different_binding_level is true. */
1322 tree write_olddecl = different_binding_level ? newdecl : olddecl;
1324 /* Merge the data types specified in the two decls. */
1325 if (TREE_CODE (newdecl) != FUNCTION_DECL || !DECL_BUILT_IN (olddecl))
1327 if (different_binding_level)
1329 if (TYPE_ARG_TYPES (oldtype) != 0
1330 && TYPE_ARG_TYPES (newtype) == 0)
1331 TREE_TYPE (newdecl) = common_type (newtype, oldtype);
1332 else
1333 TREE_TYPE (newdecl)
1334 = build_type_attribute_variant
1335 (newtype,
1336 merge_attributes (TYPE_ATTRIBUTES (newtype),
1337 TYPE_ATTRIBUTES (oldtype)));
1339 else
1340 TREE_TYPE (newdecl)
1341 = TREE_TYPE (olddecl)
1342 = common_type (newtype, oldtype);
1345 /* Lay the type out, unless already done. */
1346 if (oldtype != TREE_TYPE (newdecl))
1348 if (TREE_TYPE (newdecl) != error_mark_node)
1349 layout_type (TREE_TYPE (newdecl));
1350 if (TREE_CODE (newdecl) != FUNCTION_DECL
1351 && TREE_CODE (newdecl) != TYPE_DECL
1352 && TREE_CODE (newdecl) != CONST_DECL)
1353 layout_decl (newdecl, 0);
1355 else
1357 /* Since the type is OLDDECL's, make OLDDECL's size go with. */
1358 DECL_SIZE (newdecl) = DECL_SIZE (olddecl);
1359 DECL_SIZE_UNIT (newdecl) = DECL_SIZE_UNIT (olddecl);
1360 DECL_MODE (newdecl) = DECL_MODE (olddecl);
1361 if (TREE_CODE (olddecl) != FUNCTION_DECL)
1362 if (DECL_ALIGN (olddecl) > DECL_ALIGN (newdecl))
1364 DECL_ALIGN (newdecl) = DECL_ALIGN (olddecl);
1365 DECL_USER_ALIGN (newdecl) |= DECL_ALIGN (olddecl);
1369 /* Keep the old rtl since we can safely use it. */
1370 COPY_DECL_RTL (olddecl, newdecl);
1372 /* Merge the type qualifiers. */
1373 if (TREE_READONLY (newdecl))
1374 TREE_READONLY (write_olddecl) = 1;
1376 if (TREE_THIS_VOLATILE (newdecl))
1378 TREE_THIS_VOLATILE (write_olddecl) = 1;
1379 if (TREE_CODE (newdecl) == VAR_DECL
1380 /* If an automatic variable is re-declared in the same
1381 function scope, but the old declaration was not
1382 volatile, make_var_volatile() would crash because the
1383 variable would have been assigned to a pseudo, not a
1384 MEM. Since this duplicate declaration is invalid
1385 anyway, we just skip the call. */
1386 && errmsg == 0)
1387 make_var_volatile (newdecl);
1390 /* Keep source location of definition rather than declaration. */
1391 /* When called with different_binding_level set, keep the old
1392 information so that meaningful diagnostics can be given. */
1393 if (DECL_INITIAL (newdecl) == 0 && DECL_INITIAL (olddecl) != 0
1394 && ! different_binding_level)
1396 DECL_SOURCE_LINE (newdecl) = DECL_SOURCE_LINE (olddecl);
1397 DECL_SOURCE_FILE (newdecl) = DECL_SOURCE_FILE (olddecl);
1400 /* Merge the unused-warning information. */
1401 if (DECL_IN_SYSTEM_HEADER (olddecl))
1402 DECL_IN_SYSTEM_HEADER (newdecl) = 1;
1403 else if (DECL_IN_SYSTEM_HEADER (newdecl))
1404 DECL_IN_SYSTEM_HEADER (write_olddecl) = 1;
1406 /* Merge the initialization information. */
1407 /* When called with different_binding_level set, don't copy over
1408 DECL_INITIAL, so that we don't accidentally change function
1409 declarations into function definitions. */
1410 if (DECL_INITIAL (newdecl) == 0 && ! different_binding_level)
1411 DECL_INITIAL (newdecl) = DECL_INITIAL (olddecl);
1413 /* Merge the section attribute.
1414 We want to issue an error if the sections conflict but that must be
1415 done later in decl_attributes since we are called before attributes
1416 are assigned. */
1417 if (DECL_SECTION_NAME (newdecl) == NULL_TREE)
1418 DECL_SECTION_NAME (newdecl) = DECL_SECTION_NAME (olddecl);
1420 /* Copy the assembler name.
1421 Currently, it can only be defined in the prototype. */
1422 COPY_DECL_ASSEMBLER_NAME (olddecl, newdecl);
1424 if (TREE_CODE (newdecl) == FUNCTION_DECL)
1426 DECL_STATIC_CONSTRUCTOR(newdecl) |= DECL_STATIC_CONSTRUCTOR(olddecl);
1427 DECL_STATIC_DESTRUCTOR (newdecl) |= DECL_STATIC_DESTRUCTOR (olddecl);
1428 DECL_NO_LIMIT_STACK (newdecl) |= DECL_NO_LIMIT_STACK (olddecl);
1429 DECL_NO_INSTRUMENT_FUNCTION_ENTRY_EXIT (newdecl)
1430 |= DECL_NO_INSTRUMENT_FUNCTION_ENTRY_EXIT (olddecl);
1433 /* If cannot merge, then use the new type and qualifiers,
1434 and don't preserve the old rtl. */
1435 else if (! different_binding_level)
1437 TREE_TYPE (olddecl) = TREE_TYPE (newdecl);
1438 TREE_READONLY (olddecl) = TREE_READONLY (newdecl);
1439 TREE_THIS_VOLATILE (olddecl) = TREE_THIS_VOLATILE (newdecl);
1440 TREE_SIDE_EFFECTS (olddecl) = TREE_SIDE_EFFECTS (newdecl);
1443 /* Merge the storage class information. */
1444 merge_weak (newdecl, olddecl);
1446 /* For functions, static overrides non-static. */
1447 if (TREE_CODE (newdecl) == FUNCTION_DECL)
1449 TREE_PUBLIC (newdecl) &= TREE_PUBLIC (olddecl);
1450 /* This is since we don't automatically
1451 copy the attributes of NEWDECL into OLDDECL. */
1452 /* No need to worry about different_binding_level here because
1453 then TREE_PUBLIC (newdecl) was true. */
1454 TREE_PUBLIC (olddecl) = TREE_PUBLIC (newdecl);
1455 /* If this clears `static', clear it in the identifier too. */
1456 if (! TREE_PUBLIC (olddecl))
1457 TREE_PUBLIC (DECL_NAME (olddecl)) = 0;
1459 if (DECL_EXTERNAL (newdecl))
1461 if (! different_binding_level)
1463 /* Don't mess with these flags on local externs; they remain
1464 external even if there's a declaration at file scope which
1465 isn't. */
1466 TREE_STATIC (newdecl) = TREE_STATIC (olddecl);
1467 DECL_EXTERNAL (newdecl) = DECL_EXTERNAL (olddecl);
1469 /* An extern decl does not override previous storage class. */
1470 TREE_PUBLIC (newdecl) = TREE_PUBLIC (olddecl);
1471 if (! DECL_EXTERNAL (newdecl))
1472 DECL_CONTEXT (newdecl) = DECL_CONTEXT (olddecl);
1474 else
1476 TREE_STATIC (olddecl) = TREE_STATIC (newdecl);
1477 TREE_PUBLIC (olddecl) = TREE_PUBLIC (newdecl);
1480 if (TREE_CODE (newdecl) == FUNCTION_DECL)
1482 /* If we're redefining a function previously defined as extern
1483 inline, make sure we emit debug info for the inline before we
1484 throw it away, in case it was inlined into a function that hasn't
1485 been written out yet. */
1486 if (new_is_definition && DECL_INITIAL (olddecl))
1488 if (TREE_USED (olddecl))
1489 (*debug_hooks->outlining_inline_function) (olddecl);
1491 /* The new defn must not be inline. */
1492 DECL_INLINE (newdecl) = 0;
1493 DECL_UNINLINABLE (newdecl) = 1;
1495 else
1497 /* If either decl says `inline', this fn is inline,
1498 unless its definition was passed already. */
1499 if (DECL_DECLARED_INLINE_P (newdecl)
1500 || DECL_DECLARED_INLINE_P (olddecl))
1501 DECL_DECLARED_INLINE_P (newdecl) = 1;
1503 DECL_UNINLINABLE (newdecl) = DECL_UNINLINABLE (olddecl)
1504 = (DECL_UNINLINABLE (newdecl) || DECL_UNINLINABLE (olddecl));
1507 if (DECL_BUILT_IN (olddecl))
1509 /* Get rid of any built-in function if new arg types don't match it
1510 or if we have a function definition. */
1511 if (! types_match || new_is_definition)
1513 if (! different_binding_level)
1515 TREE_TYPE (olddecl) = TREE_TYPE (newdecl);
1516 DECL_BUILT_IN_CLASS (olddecl) = NOT_BUILT_IN;
1519 else
1521 /* If redeclaring a builtin function, and not a definition,
1522 it stays built in. */
1523 DECL_BUILT_IN_CLASS (newdecl) = DECL_BUILT_IN_CLASS (olddecl);
1524 DECL_FUNCTION_CODE (newdecl) = DECL_FUNCTION_CODE (olddecl);
1528 /* Also preserve various other info from the definition. */
1529 if (! new_is_definition)
1531 DECL_RESULT (newdecl) = DECL_RESULT (olddecl);
1532 /* When called with different_binding_level set, don't copy over
1533 DECL_INITIAL, so that we don't accidentally change function
1534 declarations into function definitions. */
1535 if (! different_binding_level)
1536 DECL_INITIAL (newdecl) = DECL_INITIAL (olddecl);
1537 DECL_SAVED_INSNS (newdecl) = DECL_SAVED_INSNS (olddecl);
1538 DECL_SAVED_TREE (newdecl) = DECL_SAVED_TREE (olddecl);
1539 DECL_NUM_STMTS (newdecl) = DECL_NUM_STMTS (olddecl);
1540 DECL_ARGUMENTS (newdecl) = DECL_ARGUMENTS (olddecl);
1542 /* Set DECL_INLINE on the declaration if we've got a body
1543 from which to instantiate. */
1544 if (DECL_INLINE (olddecl) && ! DECL_UNINLINABLE (newdecl))
1546 DECL_INLINE (newdecl) = 1;
1547 DECL_ABSTRACT_ORIGIN (newdecl)
1548 = (different_binding_level
1549 ? DECL_ORIGIN (olddecl)
1550 : DECL_ABSTRACT_ORIGIN (olddecl));
1553 else
1555 /* If a previous declaration said inline, mark the
1556 definition as inlinable. */
1557 if (DECL_DECLARED_INLINE_P (newdecl)
1558 && ! DECL_UNINLINABLE (newdecl))
1559 DECL_INLINE (newdecl) = 1;
1562 if (different_binding_level)
1563 return 0;
1565 /* Copy most of the decl-specific fields of NEWDECL into OLDDECL.
1566 But preserve OLDDECL's DECL_UID. */
1568 unsigned olddecl_uid = DECL_UID (olddecl);
1570 memcpy ((char *) olddecl + sizeof (struct tree_common),
1571 (char *) newdecl + sizeof (struct tree_common),
1572 sizeof (struct tree_decl) - sizeof (struct tree_common));
1573 DECL_UID (olddecl) = olddecl_uid;
1576 /* NEWDECL contains the merged attribute lists.
1577 Update OLDDECL to be the same. */
1578 DECL_ATTRIBUTES (olddecl) = DECL_ATTRIBUTES (newdecl);
1580 return 1;
1583 /* Check whether decl-node X shadows an existing declaration.
1584 OLDLOCAL is the old IDENTIFIER_LOCAL_VALUE of the DECL_NAME of X,
1585 which might be a NULL_TREE. */
1586 static void
1587 warn_if_shadowing (x, oldlocal)
1588 tree x, oldlocal;
1590 tree name;
1592 if (DECL_EXTERNAL (x))
1593 return;
1595 name = DECL_NAME (x);
1597 /* Warn if shadowing an argument at the top level of the body. */
1598 if (oldlocal != 0
1599 /* This warning doesn't apply to the parms of a nested fcn. */
1600 && ! current_binding_level->parm_flag
1601 /* Check that this is one level down from the parms. */
1602 && current_binding_level->level_chain->parm_flag
1603 /* Check that the decl being shadowed
1604 comes from the parm level, one level up. */
1605 && chain_member (oldlocal, current_binding_level->level_chain->names))
1607 if (TREE_CODE (oldlocal) == PARM_DECL)
1608 pedwarn ("declaration of `%s' shadows a parameter",
1609 IDENTIFIER_POINTER (name));
1610 else
1611 pedwarn ("declaration of `%s' shadows a symbol from the parameter list",
1612 IDENTIFIER_POINTER (name));
1614 /* Maybe warn if shadowing something else. */
1615 else if (warn_shadow
1616 /* No shadow warnings for internally generated vars. */
1617 && DECL_SOURCE_LINE (x) != 0
1618 /* No shadow warnings for vars made for inlining. */
1619 && ! DECL_FROM_INLINE (x))
1621 if (TREE_CODE (x) == PARM_DECL
1622 && current_binding_level->level_chain->parm_flag)
1623 /* Don't warn about the parm names in function declarator
1624 within a function declarator.
1625 It would be nice to avoid warning in any function
1626 declarator in a declaration, as opposed to a definition,
1627 but there is no way to tell it's not a definition. */
1629 else if (oldlocal)
1631 if (TREE_CODE (oldlocal) == PARM_DECL)
1632 shadow_warning ("a parameter", name, oldlocal);
1633 else
1634 shadow_warning ("a previous local", name, oldlocal);
1636 else if (IDENTIFIER_GLOBAL_VALUE (name) != 0
1637 && IDENTIFIER_GLOBAL_VALUE (name) != error_mark_node)
1638 shadow_warning ("a global declaration", name,
1639 IDENTIFIER_GLOBAL_VALUE (name));
1643 /* Record a decl-node X as belonging to the current lexical scope.
1644 Check for errors (such as an incompatible declaration for the same
1645 name already seen in the same scope).
1647 Returns either X or an old decl for the same name.
1648 If an old decl is returned, it may have been smashed
1649 to agree with what X says. */
1651 tree
1652 pushdecl (x)
1653 tree x;
1655 tree t;
1656 tree name = DECL_NAME (x);
1657 struct binding_level *b = current_binding_level;
1659 /* Functions need the lang_decl data. */
1660 if (TREE_CODE (x) == FUNCTION_DECL && ! DECL_LANG_SPECIFIC (x))
1661 DECL_LANG_SPECIFIC (x) = (struct lang_decl *)
1662 ggc_alloc_cleared (sizeof (struct lang_decl));
1664 DECL_CONTEXT (x) = current_function_decl;
1665 /* A local extern declaration for a function doesn't constitute nesting.
1666 A local auto declaration does, since it's a forward decl
1667 for a nested function coming later. */
1668 if ((TREE_CODE (x) == FUNCTION_DECL || TREE_CODE (x) == VAR_DECL)
1669 && DECL_INITIAL (x) == 0 && DECL_EXTERNAL (x))
1670 DECL_CONTEXT (x) = 0;
1672 if (name)
1674 int different_binding_level = 0;
1676 if (warn_nested_externs
1677 && DECL_EXTERNAL (x)
1678 && b != global_binding_level
1679 && x != IDENTIFIER_IMPLICIT_DECL (name)
1680 /* No error messages for __FUNCTION__ and __PRETTY_FUNCTION__. */
1681 && !DECL_IN_SYSTEM_HEADER (x))
1682 warning ("nested extern declaration of `%s'",
1683 IDENTIFIER_POINTER (name));
1685 t = lookup_name_current_level (name);
1686 if (! t && DECL_EXTERNAL (x) && TREE_PUBLIC (x))
1688 t = IDENTIFIER_GLOBAL_VALUE (name);
1689 /* Type decls at global scope don't conflict with externs declared
1690 inside lexical blocks. */
1691 if (! t || TREE_CODE (t) == TYPE_DECL)
1692 /* If there's no visible global declaration, try for an
1693 invisible one. */
1694 t = IDENTIFIER_LIMBO_VALUE (name);
1695 different_binding_level = 1;
1697 if (t != 0 && t == error_mark_node)
1698 /* error_mark_node is 0 for a while during initialization! */
1700 t = 0;
1701 error_with_decl (x, "`%s' used prior to declaration");
1704 /* If this decl is `static' and an implicit decl was seen previously,
1705 warn. */
1706 if (TREE_PUBLIC (name)
1707 /* Don't test for DECL_EXTERNAL, because grokdeclarator
1708 sets this for all functions. */
1709 && ! TREE_PUBLIC (x)
1710 && (TREE_CODE (x) == FUNCTION_DECL || b == global_binding_level)
1711 /* We used to warn also for explicit extern followed by static,
1712 but sometimes you need to do it that way. */
1713 && IDENTIFIER_IMPLICIT_DECL (name) != 0)
1715 pedwarn ("`%s' was declared implicitly `extern' and later `static'",
1716 IDENTIFIER_POINTER (name));
1717 pedwarn_with_file_and_line
1718 (DECL_SOURCE_FILE (IDENTIFIER_IMPLICIT_DECL (name)),
1719 DECL_SOURCE_LINE (IDENTIFIER_IMPLICIT_DECL (name)),
1720 "previous declaration of `%s'",
1721 IDENTIFIER_POINTER (name));
1722 TREE_THIS_VOLATILE (name) = 1;
1725 if (t != 0 && duplicate_decls (x, t, different_binding_level))
1727 if (TREE_CODE (t) == PARM_DECL)
1729 /* Don't allow more than one "real" duplicate
1730 of a forward parm decl. */
1731 TREE_ASM_WRITTEN (t) = TREE_ASM_WRITTEN (x);
1732 return t;
1734 return t;
1737 /* If we are processing a typedef statement, generate a whole new
1738 ..._TYPE node (which will be just a variant of the existing
1739 ..._TYPE node with identical properties) and then install the
1740 TYPE_DECL node generated to represent the typedef name as the
1741 TYPE_NAME of this brand new (duplicate) ..._TYPE node.
1743 The whole point here is to end up with a situation where each
1744 and every ..._TYPE node the compiler creates will be uniquely
1745 associated with AT MOST one node representing a typedef name.
1746 This way, even though the compiler substitutes corresponding
1747 ..._TYPE nodes for TYPE_DECL (i.e. "typedef name") nodes very
1748 early on, later parts of the compiler can always do the reverse
1749 translation and get back the corresponding typedef name. For
1750 example, given:
1752 typedef struct S MY_TYPE;
1753 MY_TYPE object;
1755 Later parts of the compiler might only know that `object' was of
1756 type `struct S' if it were not for code just below. With this
1757 code however, later parts of the compiler see something like:
1759 struct S' == struct S
1760 typedef struct S' MY_TYPE;
1761 struct S' object;
1763 And they can then deduce (from the node for type struct S') that
1764 the original object declaration was:
1766 MY_TYPE object;
1768 Being able to do this is important for proper support of protoize,
1769 and also for generating precise symbolic debugging information
1770 which takes full account of the programmer's (typedef) vocabulary.
1772 Obviously, we don't want to generate a duplicate ..._TYPE node if
1773 the TYPE_DECL node that we are now processing really represents a
1774 standard built-in type.
1776 Since all standard types are effectively declared at line zero
1777 in the source file, we can easily check to see if we are working
1778 on a standard type by checking the current value of lineno. */
1780 if (TREE_CODE (x) == TYPE_DECL)
1782 if (DECL_SOURCE_LINE (x) == 0)
1784 if (TYPE_NAME (TREE_TYPE (x)) == 0)
1785 TYPE_NAME (TREE_TYPE (x)) = x;
1787 else if (TREE_TYPE (x) != error_mark_node
1788 && DECL_ORIGINAL_TYPE (x) == NULL_TREE)
1790 tree tt = TREE_TYPE (x);
1791 DECL_ORIGINAL_TYPE (x) = tt;
1792 tt = build_type_copy (tt);
1793 TYPE_NAME (tt) = x;
1794 TREE_USED (tt) = TREE_USED (x);
1795 TREE_TYPE (x) = tt;
1799 /* Multiple external decls of the same identifier ought to match.
1800 We get warnings about inline functions where they are defined.
1801 Avoid duplicate warnings where they are used. */
1802 if (TREE_PUBLIC (x)
1803 && ! (TREE_CODE (x) == FUNCTION_DECL && DECL_INLINE (x)))
1805 tree decl;
1807 if (IDENTIFIER_LIMBO_VALUE (name) != 0)
1808 /* Decls in limbo are always extern, so no need to check that. */
1809 decl = IDENTIFIER_LIMBO_VALUE (name);
1810 else
1811 decl = 0;
1813 if (decl && ! comptypes (TREE_TYPE (x), TREE_TYPE (decl))
1814 /* If old decl is built-in, we already warned if we should. */
1815 && !DECL_BUILT_IN (decl))
1817 pedwarn_with_decl (x,
1818 "type mismatch with previous external decl");
1819 pedwarn_with_decl (decl, "previous external decl of `%s'");
1823 /* If a function has had an implicit declaration, and then is defined,
1824 make sure they are compatible. */
1826 if (IDENTIFIER_IMPLICIT_DECL (name) != 0
1827 && IDENTIFIER_GLOBAL_VALUE (name) == 0
1828 && TREE_CODE (x) == FUNCTION_DECL
1829 && ! comptypes (TREE_TYPE (x),
1830 TREE_TYPE (IDENTIFIER_IMPLICIT_DECL (name))))
1832 warning_with_decl (x, "type mismatch with previous implicit declaration");
1833 warning_with_decl (IDENTIFIER_IMPLICIT_DECL (name),
1834 "previous implicit declaration of `%s'");
1837 /* This name is new in its binding level.
1838 Install the new declaration and return it. */
1839 if (b == global_binding_level)
1841 /* Install a global value. */
1843 /* If the first global decl has external linkage,
1844 warn if we later see static one. */
1845 if (IDENTIFIER_GLOBAL_VALUE (name) == 0 && TREE_PUBLIC (x))
1846 TREE_PUBLIC (name) = 1;
1848 IDENTIFIER_GLOBAL_VALUE (name) = x;
1850 /* We no longer care about any previous block level declarations. */
1851 IDENTIFIER_LIMBO_VALUE (name) = 0;
1853 /* Don't forget if the function was used via an implicit decl. */
1854 if (IDENTIFIER_IMPLICIT_DECL (name)
1855 && TREE_USED (IDENTIFIER_IMPLICIT_DECL (name)))
1856 TREE_USED (x) = 1, TREE_USED (name) = 1;
1858 /* Don't forget if its address was taken in that way. */
1859 if (IDENTIFIER_IMPLICIT_DECL (name)
1860 && TREE_ADDRESSABLE (IDENTIFIER_IMPLICIT_DECL (name)))
1861 TREE_ADDRESSABLE (x) = 1;
1863 /* Warn about mismatches against previous implicit decl. */
1864 if (IDENTIFIER_IMPLICIT_DECL (name) != 0
1865 /* If this real decl matches the implicit, don't complain. */
1866 && ! (TREE_CODE (x) == FUNCTION_DECL
1867 && (TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (x)))
1868 == integer_type_node)))
1869 pedwarn ("`%s' was previously implicitly declared to return `int'",
1870 IDENTIFIER_POINTER (name));
1872 /* If this decl is `static' and an `extern' was seen previously,
1873 that is erroneous. */
1874 if (TREE_PUBLIC (name)
1875 && ! TREE_PUBLIC (x) && ! DECL_EXTERNAL (x))
1877 /* Okay to redeclare an ANSI built-in as static. */
1878 if (t != 0 && DECL_BUILT_IN (t))
1880 /* Okay to declare a non-ANSI built-in as anything. */
1881 else if (t != 0 && DECL_BUILT_IN_NONANSI (t))
1883 /* Okay to have global type decl after an earlier extern
1884 declaration inside a lexical block. */
1885 else if (TREE_CODE (x) == TYPE_DECL)
1887 else if (IDENTIFIER_IMPLICIT_DECL (name))
1889 if (! TREE_THIS_VOLATILE (name))
1890 pedwarn ("`%s' was declared implicitly `extern' and later `static'",
1891 IDENTIFIER_POINTER (name));
1893 else
1894 pedwarn ("`%s' was declared `extern' and later `static'",
1895 IDENTIFIER_POINTER (name));
1898 else
1900 /* Here to install a non-global value. */
1901 tree oldlocal = IDENTIFIER_LOCAL_VALUE (name);
1902 tree oldglobal = IDENTIFIER_GLOBAL_VALUE (name);
1904 IDENTIFIER_LOCAL_VALUE (name) = x;
1906 /* If this is an extern function declaration, see if we
1907 have a global definition or declaration for the function. */
1908 if (oldlocal == 0
1909 && oldglobal != 0
1910 && TREE_CODE (x) == FUNCTION_DECL
1911 && TREE_CODE (oldglobal) == FUNCTION_DECL
1912 && DECL_EXTERNAL (x)
1913 && ! DECL_DECLARED_INLINE_P (x))
1915 /* We have one. Their types must agree. */
1916 if (! comptypes (TREE_TYPE (x),
1917 TREE_TYPE (IDENTIFIER_GLOBAL_VALUE (name))))
1918 pedwarn_with_decl (x, "extern declaration of `%s' doesn't match global one");
1919 else
1921 /* Inner extern decl is inline if global one is.
1922 Copy enough to really inline it. */
1923 if (DECL_DECLARED_INLINE_P (oldglobal))
1925 DECL_DECLARED_INLINE_P (x)
1926 = DECL_DECLARED_INLINE_P (oldglobal);
1927 DECL_INLINE (x) = DECL_INLINE (oldglobal);
1928 DECL_INITIAL (x) = (current_function_decl == oldglobal
1929 ? 0 : DECL_INITIAL (oldglobal));
1930 DECL_SAVED_INSNS (x) = DECL_SAVED_INSNS (oldglobal);
1931 DECL_NUM_STMTS (x) = DECL_NUM_STMTS (oldglobal);
1932 DECL_ARGUMENTS (x) = DECL_ARGUMENTS (oldglobal);
1933 DECL_RESULT (x) = DECL_RESULT (oldglobal);
1934 TREE_ASM_WRITTEN (x) = TREE_ASM_WRITTEN (oldglobal);
1935 DECL_ABSTRACT_ORIGIN (x)
1936 = DECL_ABSTRACT_ORIGIN (oldglobal);
1938 /* Inner extern decl is built-in if global one is. */
1939 if (DECL_BUILT_IN (oldglobal))
1941 DECL_BUILT_IN_CLASS (x) = DECL_BUILT_IN_CLASS (oldglobal);
1942 DECL_FUNCTION_CODE (x) = DECL_FUNCTION_CODE (oldglobal);
1944 /* Keep the arg types from a file-scope fcn defn. */
1945 if (TYPE_ARG_TYPES (TREE_TYPE (oldglobal)) != 0
1946 && DECL_INITIAL (oldglobal)
1947 && TYPE_ARG_TYPES (TREE_TYPE (x)) == 0)
1948 TREE_TYPE (x) = TREE_TYPE (oldglobal);
1952 #if 0
1953 /* This case is probably sometimes the right thing to do. */
1954 /* If we have a local external declaration,
1955 then any file-scope declaration should not
1956 have been static. */
1957 if (oldlocal == 0 && oldglobal != 0
1958 && !TREE_PUBLIC (oldglobal)
1959 && DECL_EXTERNAL (x) && TREE_PUBLIC (x))
1960 warning ("`%s' locally external but globally static",
1961 IDENTIFIER_POINTER (name));
1962 #endif
1964 /* If we have a local external declaration,
1965 and no file-scope declaration has yet been seen,
1966 then if we later have a file-scope decl it must not be static. */
1967 if (oldlocal == 0
1968 && DECL_EXTERNAL (x)
1969 && TREE_PUBLIC (x))
1971 if (oldglobal == 0)
1972 TREE_PUBLIC (name) = 1;
1974 /* Save this decl, so that we can do type checking against
1975 other decls after it falls out of scope.
1977 Only save it once. This prevents temporary decls created in
1978 expand_inline_function from being used here, since this
1979 will have been set when the inline function was parsed.
1980 It also helps give slightly better warnings. */
1981 if (IDENTIFIER_LIMBO_VALUE (name) == 0)
1982 IDENTIFIER_LIMBO_VALUE (name) = x;
1985 warn_if_shadowing (x, oldlocal);
1987 /* If storing a local value, there may already be one (inherited).
1988 If so, record it for restoration when this binding level ends. */
1989 if (oldlocal != 0)
1990 b->shadowed = tree_cons (name, oldlocal, b->shadowed);
1993 /* Keep list of variables in this level with incomplete type.
1994 If the input is erroneous, we can have error_mark in the type
1995 slot (e.g. "f(void a, ...)") - that doesn't count as an
1996 incomplete type. */
1997 if (TREE_TYPE (x) != error_mark_node
1998 && !COMPLETE_TYPE_P (TREE_TYPE (x)))
2000 tree element = TREE_TYPE (x);
2002 while (TREE_CODE (element) == ARRAY_TYPE)
2003 element = TREE_TYPE (element);
2004 if (TREE_CODE (element) == RECORD_TYPE
2005 || TREE_CODE (element) == UNION_TYPE)
2006 b->incomplete_list = tree_cons (NULL_TREE, x, b->incomplete_list);
2010 /* Put decls on list in reverse order.
2011 We will reverse them later if necessary. */
2012 TREE_CHAIN (x) = b->names;
2013 b->names = x;
2015 return x;
2018 /* Like pushdecl, only it places X in GLOBAL_BINDING_LEVEL, if appropriate. */
2020 tree
2021 pushdecl_top_level (x)
2022 tree x;
2024 tree t;
2025 struct binding_level *b = current_binding_level;
2027 current_binding_level = global_binding_level;
2028 t = pushdecl (x);
2029 current_binding_level = b;
2030 return t;
2033 /* Generate an implicit declaration for identifier FUNCTIONID
2034 as a function of type int (). Print a warning if appropriate. */
2036 tree
2037 implicitly_declare (functionid)
2038 tree functionid;
2040 tree decl;
2041 int traditional_warning = 0;
2042 /* Only one "implicit declaration" warning per identifier. */
2043 int implicit_warning;
2045 /* We used to reuse an old implicit decl here,
2046 but this loses with inline functions because it can clobber
2047 the saved decl chains. */
2048 #if 0
2049 if (IDENTIFIER_IMPLICIT_DECL (functionid) != 0)
2050 decl = IDENTIFIER_IMPLICIT_DECL (functionid);
2051 else
2052 #endif
2053 decl = build_decl (FUNCTION_DECL, functionid, default_function_type);
2055 /* Warn of implicit decl following explicit local extern decl.
2056 This is probably a program designed for traditional C. */
2057 if (TREE_PUBLIC (functionid) && IDENTIFIER_GLOBAL_VALUE (functionid) == 0)
2058 traditional_warning = 1;
2060 /* Warn once of an implicit declaration. */
2061 implicit_warning = (IDENTIFIER_IMPLICIT_DECL (functionid) == 0);
2063 DECL_EXTERNAL (decl) = 1;
2064 TREE_PUBLIC (decl) = 1;
2066 /* Record that we have an implicit decl and this is it. */
2067 IDENTIFIER_IMPLICIT_DECL (functionid) = decl;
2069 /* ANSI standard says implicit declarations are in the innermost block.
2070 So we record the decl in the standard fashion. */
2071 pushdecl (decl);
2073 /* This is a no-op in c-lang.c or something real in objc-act.c. */
2074 if (flag_objc)
2075 objc_check_decl (decl);
2077 rest_of_decl_compilation (decl, NULL, 0, 0);
2079 if (implicit_warning)
2080 implicit_decl_warning (functionid);
2081 else if (warn_traditional && traditional_warning)
2082 warning ("function `%s' was previously declared within a block",
2083 IDENTIFIER_POINTER (functionid));
2085 /* Write a record describing this implicit function declaration to the
2086 prototypes file (if requested). */
2088 gen_aux_info_record (decl, 0, 1, 0);
2090 /* Possibly apply some default attributes to this implicit declaration. */
2091 decl_attributes (&decl, NULL_TREE, 0);
2093 return decl;
2096 void
2097 implicit_decl_warning (id)
2098 tree id;
2100 const char *name = IDENTIFIER_POINTER (id);
2101 if (mesg_implicit_function_declaration == 2)
2102 error ("implicit declaration of function `%s'", name);
2103 else if (mesg_implicit_function_declaration == 1)
2104 warning ("implicit declaration of function `%s'", name);
2107 /* Return zero if the declaration NEWDECL is valid
2108 when the declaration OLDDECL (assumed to be for the same name)
2109 has already been seen.
2110 Otherwise return 1 if NEWDECL is a redefinition, 2 if it is a redeclaration,
2111 and 3 if it is a conflicting declaration. */
2113 static int
2114 redeclaration_error_message (newdecl, olddecl)
2115 tree newdecl, olddecl;
2117 if (TREE_CODE (newdecl) == TYPE_DECL)
2119 /* Do not complain about type redeclarations where at least one
2120 declaration was in a system header. */
2121 if (DECL_IN_SYSTEM_HEADER (olddecl) || DECL_IN_SYSTEM_HEADER (newdecl))
2122 return 0;
2123 return 1;
2125 else if (TREE_CODE (newdecl) == FUNCTION_DECL)
2127 /* Declarations of functions can insist on internal linkage
2128 but they can't be inconsistent with internal linkage,
2129 so there can be no error on that account.
2130 However defining the same name twice is no good. */
2131 if (DECL_INITIAL (olddecl) != 0 && DECL_INITIAL (newdecl) != 0
2132 /* However, defining once as extern inline and a second
2133 time in another way is ok. */
2134 && ! (DECL_DECLARED_INLINE_P (olddecl) && DECL_EXTERNAL (olddecl)
2135 && ! (DECL_DECLARED_INLINE_P (newdecl)
2136 && DECL_EXTERNAL (newdecl))))
2137 return 1;
2138 return 0;
2140 else if (DECL_CONTEXT (newdecl) == NULL_TREE)
2142 /* Objects declared at top level: */
2143 /* If at least one is a reference, it's ok. */
2144 if (DECL_EXTERNAL (newdecl) || DECL_EXTERNAL (olddecl))
2145 return 0;
2146 /* Reject two definitions. */
2147 if (DECL_INITIAL (olddecl) != 0 && DECL_INITIAL (newdecl) != 0)
2148 return 1;
2149 /* Now we have two tentative defs, or one tentative and one real def. */
2150 /* Insist that the linkage match. */
2151 if (TREE_PUBLIC (olddecl) != TREE_PUBLIC (newdecl))
2152 return 3;
2153 return 0;
2155 else if (current_binding_level->parm_flag
2156 && TREE_ASM_WRITTEN (olddecl) && !TREE_ASM_WRITTEN (newdecl))
2157 return 0;
2158 else
2160 /* Newdecl has block scope. If olddecl has block scope also, then
2161 reject two definitions, and reject a definition together with an
2162 external reference. Otherwise, it is OK, because newdecl must
2163 be an extern reference to olddecl. */
2164 if (!(DECL_EXTERNAL (newdecl) && DECL_EXTERNAL (olddecl))
2165 && DECL_CONTEXT (newdecl) == DECL_CONTEXT (olddecl))
2166 return 2;
2167 return 0;
2171 /* Get the LABEL_DECL corresponding to identifier ID as a label.
2172 Create one if none exists so far for the current function.
2173 This function is called for both label definitions and label references. */
2175 tree
2176 lookup_label (id)
2177 tree id;
2179 tree decl = IDENTIFIER_LABEL_VALUE (id);
2181 if (current_function_decl == 0)
2183 error ("label %s referenced outside of any function",
2184 IDENTIFIER_POINTER (id));
2185 return 0;
2188 /* Use a label already defined or ref'd with this name. */
2189 if (decl != 0)
2191 /* But not if it is inherited and wasn't declared to be inheritable. */
2192 if (DECL_CONTEXT (decl) != current_function_decl
2193 && ! C_DECLARED_LABEL_FLAG (decl))
2194 return shadow_label (id);
2195 return decl;
2198 decl = build_decl (LABEL_DECL, id, void_type_node);
2200 /* A label not explicitly declared must be local to where it's ref'd. */
2201 DECL_CONTEXT (decl) = current_function_decl;
2203 DECL_MODE (decl) = VOIDmode;
2205 /* Say where one reference is to the label,
2206 for the sake of the error if it is not defined. */
2207 DECL_SOURCE_LINE (decl) = lineno;
2208 DECL_SOURCE_FILE (decl) = input_filename;
2210 IDENTIFIER_LABEL_VALUE (id) = decl;
2212 named_labels = tree_cons (NULL_TREE, decl, named_labels);
2214 return decl;
2217 /* Make a label named NAME in the current function,
2218 shadowing silently any that may be inherited from containing functions
2219 or containing scopes.
2221 Note that valid use, if the label being shadowed
2222 comes from another scope in the same function,
2223 requires calling declare_nonlocal_label right away. */
2225 tree
2226 shadow_label (name)
2227 tree name;
2229 tree decl = IDENTIFIER_LABEL_VALUE (name);
2231 if (decl != 0)
2233 tree dup;
2235 /* Check to make sure that the label hasn't already been declared
2236 at this label scope */
2237 for (dup = named_labels; dup; dup = TREE_CHAIN (dup))
2238 if (TREE_VALUE (dup) == decl)
2240 error ("duplicate label declaration `%s'",
2241 IDENTIFIER_POINTER (name));
2242 error_with_decl (TREE_VALUE (dup),
2243 "this is a previous declaration");
2244 /* Just use the previous declaration. */
2245 return lookup_label (name);
2248 shadowed_labels = tree_cons (NULL_TREE, decl, shadowed_labels);
2249 IDENTIFIER_LABEL_VALUE (name) = decl = 0;
2252 return lookup_label (name);
2255 /* Define a label, specifying the location in the source file.
2256 Return the LABEL_DECL node for the label, if the definition is valid.
2257 Otherwise return 0. */
2259 tree
2260 define_label (filename, line, name)
2261 const char *filename;
2262 int line;
2263 tree name;
2265 tree decl = lookup_label (name);
2267 /* If label with this name is known from an outer context, shadow it. */
2268 if (decl != 0 && DECL_CONTEXT (decl) != current_function_decl)
2270 shadowed_labels = tree_cons (NULL_TREE, decl, shadowed_labels);
2271 IDENTIFIER_LABEL_VALUE (name) = 0;
2272 decl = lookup_label (name);
2275 if (warn_traditional && !in_system_header && lookup_name (name))
2276 warning_with_file_and_line (filename, line,
2277 "traditional C lacks a separate namespace for labels, identifier `%s' conflicts",
2278 IDENTIFIER_POINTER (name));
2280 if (DECL_INITIAL (decl) != 0)
2282 error_with_file_and_line (filename, line, "duplicate label `%s'",
2283 IDENTIFIER_POINTER (name));
2284 return 0;
2286 else
2288 /* Mark label as having been defined. */
2289 DECL_INITIAL (decl) = error_mark_node;
2290 /* Say where in the source. */
2291 DECL_SOURCE_FILE (decl) = filename;
2292 DECL_SOURCE_LINE (decl) = line;
2293 return decl;
2297 /* Return the list of declarations of the current level.
2298 Note that this list is in reverse order unless/until
2299 you nreverse it; and when you do nreverse it, you must
2300 store the result back using `storedecls' or you will lose. */
2302 tree
2303 getdecls ()
2305 return current_binding_level->names;
2308 /* Return the list of type-tags (for structs, etc) of the current level. */
2310 tree
2311 gettags ()
2313 return current_binding_level->tags;
2316 /* Store the list of declarations of the current level.
2317 This is done for the parameter declarations of a function being defined,
2318 after they are modified in the light of any missing parameters. */
2320 static void
2321 storedecls (decls)
2322 tree decls;
2324 current_binding_level->names = decls;
2327 /* Similarly, store the list of tags of the current level. */
2329 static void
2330 storetags (tags)
2331 tree tags;
2333 current_binding_level->tags = tags;
2336 /* Given NAME, an IDENTIFIER_NODE,
2337 return the structure (or union or enum) definition for that name.
2338 Searches binding levels from BINDING_LEVEL up to the global level.
2339 If THISLEVEL_ONLY is nonzero, searches only the specified context
2340 (but skips any tag-transparent contexts to find one that is
2341 meaningful for tags).
2342 CODE says which kind of type the caller wants;
2343 it is RECORD_TYPE or UNION_TYPE or ENUMERAL_TYPE.
2344 If the wrong kind of type is found, an error is reported. */
2346 static tree
2347 lookup_tag (code, name, binding_level, thislevel_only)
2348 enum tree_code code;
2349 struct binding_level *binding_level;
2350 tree name;
2351 int thislevel_only;
2353 struct binding_level *level;
2354 int thislevel = 1;
2356 for (level = binding_level; level; level = level->level_chain)
2358 tree tail;
2359 for (tail = level->tags; tail; tail = TREE_CHAIN (tail))
2361 if (TREE_PURPOSE (tail) == name)
2363 if (TREE_CODE (TREE_VALUE (tail)) != code)
2365 /* Definition isn't the kind we were looking for. */
2366 pending_invalid_xref = name;
2367 pending_invalid_xref_file = input_filename;
2368 pending_invalid_xref_line = lineno;
2369 /* If in the same binding level as a declaration as a tag
2370 of a different type, this must not be allowed to
2371 shadow that tag, so give the error immediately.
2372 (For example, "struct foo; union foo;" is invalid.) */
2373 if (thislevel)
2374 pending_xref_error ();
2376 return TREE_VALUE (tail);
2379 if (! level->tag_transparent)
2381 if (thislevel_only)
2382 return NULL_TREE;
2383 thislevel = 0;
2386 return NULL_TREE;
2389 /* Print an error message now
2390 for a recent invalid struct, union or enum cross reference.
2391 We don't print them immediately because they are not invalid
2392 when used in the `struct foo;' construct for shadowing. */
2394 void
2395 pending_xref_error ()
2397 if (pending_invalid_xref != 0)
2398 error_with_file_and_line (pending_invalid_xref_file,
2399 pending_invalid_xref_line,
2400 "`%s' defined as wrong kind of tag",
2401 IDENTIFIER_POINTER (pending_invalid_xref));
2402 pending_invalid_xref = 0;
2405 /* Given a type, find the tag that was defined for it and return the tag name.
2406 Otherwise return 0. */
2408 static tree
2409 lookup_tag_reverse (type)
2410 tree type;
2412 struct binding_level *level;
2414 for (level = current_binding_level; level; level = level->level_chain)
2416 tree tail;
2417 for (tail = level->tags; tail; tail = TREE_CHAIN (tail))
2419 if (TREE_VALUE (tail) == type)
2420 return TREE_PURPOSE (tail);
2423 return NULL_TREE;
2426 /* Look up NAME in the current binding level and its superiors
2427 in the namespace of variables, functions and typedefs.
2428 Return a ..._DECL node of some kind representing its definition,
2429 or return 0 if it is undefined. */
2431 tree
2432 lookup_name (name)
2433 tree name;
2435 tree val;
2437 if (current_binding_level != global_binding_level
2438 && IDENTIFIER_LOCAL_VALUE (name))
2439 val = IDENTIFIER_LOCAL_VALUE (name);
2440 else
2441 val = IDENTIFIER_GLOBAL_VALUE (name);
2442 return val;
2445 /* Similar to `lookup_name' but look only at current binding level. */
2447 tree
2448 lookup_name_current_level (name)
2449 tree name;
2451 tree t;
2453 if (current_binding_level == global_binding_level)
2454 return IDENTIFIER_GLOBAL_VALUE (name);
2456 if (IDENTIFIER_LOCAL_VALUE (name) == 0)
2457 return 0;
2459 for (t = current_binding_level->names; t; t = TREE_CHAIN (t))
2460 if (DECL_NAME (t) == name)
2461 break;
2463 return t;
2466 /* Create the predefined scalar types of C,
2467 and some nodes representing standard constants (0, 1, (void *) 0).
2468 Initialize the global binding level.
2469 Make definitions for built-in primitive functions. */
2471 void
2472 c_init_decl_processing ()
2474 tree endlink;
2475 tree ptr_ftype_void, ptr_ftype_ptr;
2477 /* Adds some ggc roots, and reserved words for c-parse.in. */
2478 c_parse_init ();
2480 current_function_decl = NULL;
2481 named_labels = NULL;
2482 current_binding_level = NULL_BINDING_LEVEL;
2483 free_binding_level = NULL_BINDING_LEVEL;
2485 /* Make the binding_level structure for global names. */
2486 pushlevel (0);
2487 global_binding_level = current_binding_level;
2489 build_common_tree_nodes (flag_signed_char);
2491 c_common_nodes_and_builtins ();
2493 boolean_type_node = integer_type_node;
2494 boolean_true_node = integer_one_node;
2495 boolean_false_node = integer_zero_node;
2497 c_bool_type_node = make_unsigned_type (BOOL_TYPE_SIZE);
2498 TREE_SET_CODE (c_bool_type_node, BOOLEAN_TYPE);
2499 TYPE_MAX_VALUE (c_bool_type_node) = build_int_2 (1, 0);
2500 TREE_TYPE (TYPE_MAX_VALUE (c_bool_type_node)) = c_bool_type_node;
2501 TYPE_PRECISION (c_bool_type_node) = 1;
2502 pushdecl (build_decl (TYPE_DECL, get_identifier ("_Bool"),
2503 c_bool_type_node));
2504 c_bool_false_node = build_int_2 (0, 0);
2505 TREE_TYPE (c_bool_false_node) = c_bool_type_node;
2506 c_bool_true_node = build_int_2 (1, 0);
2507 TREE_TYPE (c_bool_true_node) = c_bool_type_node;
2509 endlink = void_list_node;
2510 ptr_ftype_void = build_function_type (ptr_type_node, endlink);
2511 ptr_ftype_ptr
2512 = build_function_type (ptr_type_node,
2513 tree_cons (NULL_TREE, ptr_type_node, endlink));
2515 pedantic_lvalues = pedantic;
2517 make_fname_decl = c_make_fname_decl;
2518 start_fname_decls ();
2521 /* Create the VAR_DECL for __FUNCTION__ etc. ID is the name to give the
2522 decl, NAME is the initialization string and TYPE_DEP indicates whether
2523 NAME depended on the type of the function. As we don't yet implement
2524 delayed emission of static data, we mark the decl as emitted
2525 so it is not placed in the output. Anything using it must therefore pull
2526 out the STRING_CST initializer directly. This does mean that these names
2527 are string merging candidates, which is wrong for C99's __func__. FIXME. */
2529 static tree
2530 c_make_fname_decl (id, type_dep)
2531 tree id;
2532 int type_dep;
2534 const char *name = fname_as_string (type_dep);
2535 tree decl, type, init;
2536 size_t length = strlen (name);
2538 type = build_array_type
2539 (build_qualified_type (char_type_node, TYPE_QUAL_CONST),
2540 build_index_type (size_int (length)));
2542 decl = build_decl (VAR_DECL, id, type);
2543 /* We don't push the decl, so have to set its context here. */
2544 DECL_CONTEXT (decl) = current_function_decl;
2546 TREE_STATIC (decl) = 1;
2547 TREE_READONLY (decl) = 1;
2548 DECL_ARTIFICIAL (decl) = 1;
2550 init = build_string (length + 1, name);
2551 TREE_TYPE (init) = type;
2552 DECL_INITIAL (decl) = init;
2554 TREE_USED (decl) = 1;
2556 if (current_function_decl)
2558 /* Add the decls to the outermost block. */
2559 struct binding_level *b = current_binding_level;
2560 struct binding_level *old = b;
2561 while (b->level_chain->parm_flag == 0)
2562 b = b->level_chain;
2563 current_binding_level = b;
2564 pushdecl (decl);
2565 current_binding_level = old;
2568 finish_decl (decl, init, NULL_TREE);
2570 return decl;
2573 /* Return a definition for a builtin function named NAME and whose data type
2574 is TYPE. TYPE should be a function type with argument types.
2575 FUNCTION_CODE tells later passes how to compile calls to this function.
2576 See tree.h for its possible values.
2578 If LIBRARY_NAME is nonzero, use that for DECL_ASSEMBLER_NAME,
2579 the name to be called if we can't opencode the function. If
2580 ATTRS is nonzero, use that for the function's attribute list. */
2582 tree
2583 builtin_function (name, type, function_code, class, library_name, attrs)
2584 const char *name;
2585 tree type;
2586 int function_code;
2587 enum built_in_class class;
2588 const char *library_name;
2589 tree attrs;
2591 tree decl = build_decl (FUNCTION_DECL, get_identifier (name), type);
2592 DECL_EXTERNAL (decl) = 1;
2593 TREE_PUBLIC (decl) = 1;
2594 if (library_name)
2595 SET_DECL_ASSEMBLER_NAME (decl, get_identifier (library_name));
2596 make_decl_rtl (decl, NULL);
2597 pushdecl (decl);
2598 DECL_BUILT_IN_CLASS (decl) = class;
2599 DECL_FUNCTION_CODE (decl) = function_code;
2601 /* Warn if a function in the namespace for users
2602 is used without an occasion to consider it declared. */
2603 if (name[0] != '_' || name[1] != '_')
2604 C_DECL_ANTICIPATED (decl) = 1;
2606 /* Possibly apply some default attributes to this built-in function. */
2607 if (attrs)
2608 decl_attributes (&decl, attrs, ATTR_FLAG_BUILT_IN);
2609 else
2610 decl_attributes (&decl, NULL_TREE, 0);
2612 return decl;
2615 /* Apply default attributes to a function, if a system function with default
2616 attributes. */
2618 void
2619 c_insert_default_attributes (decl)
2620 tree decl;
2622 if (!TREE_PUBLIC (decl))
2623 return;
2624 c_common_insert_default_attributes (decl);
2627 /* Called when a declaration is seen that contains no names to declare.
2628 If its type is a reference to a structure, union or enum inherited
2629 from a containing scope, shadow that tag name for the current scope
2630 with a forward reference.
2631 If its type defines a new named structure or union
2632 or defines an enum, it is valid but we need not do anything here.
2633 Otherwise, it is an error. */
2635 void
2636 shadow_tag (declspecs)
2637 tree declspecs;
2639 shadow_tag_warned (declspecs, 0);
2642 void
2643 shadow_tag_warned (declspecs, warned)
2644 tree declspecs;
2645 int warned;
2646 /* 1 => we have done a pedwarn. 2 => we have done a warning, but
2647 no pedwarn. */
2649 int found_tag = 0;
2650 tree link;
2651 tree specs, attrs;
2653 pending_invalid_xref = 0;
2655 /* Remove the attributes from declspecs, since they will confuse the
2656 following code. */
2657 split_specs_attrs (declspecs, &specs, &attrs);
2659 for (link = specs; link; link = TREE_CHAIN (link))
2661 tree value = TREE_VALUE (link);
2662 enum tree_code code = TREE_CODE (value);
2664 if (code == RECORD_TYPE || code == UNION_TYPE || code == ENUMERAL_TYPE)
2665 /* Used to test also that TYPE_SIZE (value) != 0.
2666 That caused warning for `struct foo;' at top level in the file. */
2668 tree name = lookup_tag_reverse (value);
2669 tree t;
2671 found_tag++;
2673 if (name == 0)
2675 if (warned != 1 && code != ENUMERAL_TYPE)
2676 /* Empty unnamed enum OK */
2678 pedwarn ("unnamed struct/union that defines no instances");
2679 warned = 1;
2682 else
2684 t = lookup_tag (code, name, current_binding_level, 1);
2686 if (t == 0)
2688 t = make_node (code);
2689 pushtag (name, t);
2693 else
2695 if (!warned && ! in_system_header)
2697 warning ("useless keyword or type name in empty declaration");
2698 warned = 2;
2703 if (found_tag > 1)
2704 error ("two types specified in one empty declaration");
2706 if (warned != 1)
2708 if (found_tag == 0)
2709 pedwarn ("empty declaration");
2713 /* Construct an array declarator. EXPR is the expression inside [], or
2714 NULL_TREE. QUALS are the type qualifiers inside the [] (to be applied
2715 to the pointer to which a parameter array is converted). STATIC_P is
2716 nonzero if "static" is inside the [], zero otherwise. VLA_UNSPEC_P
2717 is nonzero is the array is [*], a VLA of unspecified length which is
2718 nevertheless a complete type (not currently implemented by GCC),
2719 zero otherwise. The declarator is constructed as an ARRAY_REF
2720 (to be decoded by grokdeclarator), whose operand 0 is what's on the
2721 left of the [] (filled by in set_array_declarator_type) and operand 1
2722 is the expression inside; whose TREE_TYPE is the type qualifiers and
2723 which has TREE_STATIC set if "static" is used. */
2725 tree
2726 build_array_declarator (expr, quals, static_p, vla_unspec_p)
2727 tree expr;
2728 tree quals;
2729 int static_p;
2730 int vla_unspec_p;
2732 tree decl;
2733 decl = build_nt (ARRAY_REF, NULL_TREE, expr);
2734 TREE_TYPE (decl) = quals;
2735 TREE_STATIC (decl) = (static_p ? 1 : 0);
2736 if (pedantic && !flag_isoc99)
2738 if (static_p || quals != NULL_TREE)
2739 pedwarn ("ISO C90 does not support `static' or type qualifiers in parameter array declarators");
2740 if (vla_unspec_p)
2741 pedwarn ("ISO C90 does not support `[*]' array declarators");
2743 if (vla_unspec_p)
2744 warning ("GCC does not yet properly implement `[*]' array declarators");
2745 return decl;
2748 /* Set the type of an array declarator. DECL is the declarator, as
2749 constructed by build_array_declarator; TYPE is what appears on the left
2750 of the [] and goes in operand 0. ABSTRACT_P is nonzero if it is an
2751 abstract declarator, zero otherwise; this is used to reject static and
2752 type qualifiers in abstract declarators, where they are not in the
2753 C99 grammar. */
2755 tree
2756 set_array_declarator_type (decl, type, abstract_p)
2757 tree decl;
2758 tree type;
2759 int abstract_p;
2761 TREE_OPERAND (decl, 0) = type;
2762 if (abstract_p && (TREE_TYPE (decl) != NULL_TREE || TREE_STATIC (decl)))
2763 error ("static or type qualifiers in abstract declarator");
2764 return decl;
2767 /* Decode a "typename", such as "int **", returning a ..._TYPE node. */
2769 tree
2770 groktypename (typename)
2771 tree typename;
2773 tree specs, attrs;
2775 if (TREE_CODE (typename) != TREE_LIST)
2776 return typename;
2778 split_specs_attrs (TREE_PURPOSE (typename), &specs, &attrs);
2780 typename = grokdeclarator (TREE_VALUE (typename), specs, TYPENAME, 0);
2782 /* Apply attributes. */
2783 decl_attributes (&typename, attrs, 0);
2785 return typename;
2788 /* Return a PARM_DECL node for a given pair of specs and declarator. */
2790 tree
2791 groktypename_in_parm_context (typename)
2792 tree typename;
2794 if (TREE_CODE (typename) != TREE_LIST)
2795 return typename;
2796 return grokdeclarator (TREE_VALUE (typename),
2797 TREE_PURPOSE (typename),
2798 PARM, 0);
2801 /* Decode a declarator in an ordinary declaration or data definition.
2802 This is called as soon as the type information and variable name
2803 have been parsed, before parsing the initializer if any.
2804 Here we create the ..._DECL node, fill in its type,
2805 and put it on the list of decls for the current context.
2806 The ..._DECL node is returned as the value.
2808 Exception: for arrays where the length is not specified,
2809 the type is left null, to be filled in by `finish_decl'.
2811 Function definitions do not come here; they go to start_function
2812 instead. However, external and forward declarations of functions
2813 do go through here. Structure field declarations are done by
2814 grokfield and not through here. */
2816 tree
2817 start_decl (declarator, declspecs, initialized, attributes)
2818 tree declarator, declspecs;
2819 int initialized;
2820 tree attributes;
2822 tree decl;
2823 tree tem;
2825 /* An object declared as __attribute__((deprecated)) suppresses
2826 warnings of uses of other deprecated items. */
2827 if (lookup_attribute ("deprecated", attributes))
2828 deprecated_state = DEPRECATED_SUPPRESS;
2830 decl = grokdeclarator (declarator, declspecs,
2831 NORMAL, initialized);
2833 deprecated_state = DEPRECATED_NORMAL;
2835 if (warn_main > 0 && TREE_CODE (decl) != FUNCTION_DECL
2836 && MAIN_NAME_P (DECL_NAME (decl)))
2837 warning_with_decl (decl, "`%s' is usually a function");
2839 if (initialized)
2840 /* Is it valid for this decl to have an initializer at all?
2841 If not, set INITIALIZED to zero, which will indirectly
2842 tell `finish_decl' to ignore the initializer once it is parsed. */
2843 switch (TREE_CODE (decl))
2845 case TYPE_DECL:
2846 error ("typedef `%s' is initialized (use __typeof__ instead)",
2847 IDENTIFIER_POINTER (DECL_NAME (decl)));
2848 initialized = 0;
2849 break;
2851 case FUNCTION_DECL:
2852 error ("function `%s' is initialized like a variable",
2853 IDENTIFIER_POINTER (DECL_NAME (decl)));
2854 initialized = 0;
2855 break;
2857 case PARM_DECL:
2858 /* DECL_INITIAL in a PARM_DECL is really DECL_ARG_TYPE. */
2859 error ("parameter `%s' is initialized",
2860 IDENTIFIER_POINTER (DECL_NAME (decl)));
2861 initialized = 0;
2862 break;
2864 default:
2865 /* Don't allow initializations for incomplete types
2866 except for arrays which might be completed by the initialization. */
2868 /* This can happen if the array size is an undefined macro. We already
2869 gave a warning, so we don't need another one. */
2870 if (TREE_TYPE (decl) == error_mark_node)
2871 initialized = 0;
2872 else if (COMPLETE_TYPE_P (TREE_TYPE (decl)))
2874 /* A complete type is ok if size is fixed. */
2876 if (TREE_CODE (TYPE_SIZE (TREE_TYPE (decl))) != INTEGER_CST
2877 || C_DECL_VARIABLE_SIZE (decl))
2879 error ("variable-sized object may not be initialized");
2880 initialized = 0;
2883 else if (TREE_CODE (TREE_TYPE (decl)) != ARRAY_TYPE)
2885 error ("variable `%s' has initializer but incomplete type",
2886 IDENTIFIER_POINTER (DECL_NAME (decl)));
2887 initialized = 0;
2889 else if (!COMPLETE_TYPE_P (TREE_TYPE (TREE_TYPE (decl))))
2891 error ("elements of array `%s' have incomplete type",
2892 IDENTIFIER_POINTER (DECL_NAME (decl)));
2893 initialized = 0;
2897 if (initialized)
2899 #if 0
2900 /* Seems redundant with grokdeclarator. */
2901 if (current_binding_level != global_binding_level
2902 && DECL_EXTERNAL (decl)
2903 && TREE_CODE (decl) != FUNCTION_DECL)
2904 warning ("declaration of `%s' has `extern' and is initialized",
2905 IDENTIFIER_POINTER (DECL_NAME (decl)));
2906 #endif
2907 DECL_EXTERNAL (decl) = 0;
2908 if (current_binding_level == global_binding_level)
2909 TREE_STATIC (decl) = 1;
2911 /* Tell `pushdecl' this is an initialized decl
2912 even though we don't yet have the initializer expression.
2913 Also tell `finish_decl' it may store the real initializer. */
2914 DECL_INITIAL (decl) = error_mark_node;
2917 /* If this is a function declaration, write a record describing it to the
2918 prototypes file (if requested). */
2920 if (TREE_CODE (decl) == FUNCTION_DECL)
2921 gen_aux_info_record (decl, 0, 0, TYPE_ARG_TYPES (TREE_TYPE (decl)) != 0);
2923 /* ANSI specifies that a tentative definition which is not merged with
2924 a non-tentative definition behaves exactly like a definition with an
2925 initializer equal to zero. (Section 3.7.2)
2927 -fno-common gives strict ANSI behavior, though this tends to break
2928 a large body of code that grew up without this rule.
2930 Thread-local variables are never common, since there's no entrenched
2931 body of code to break, and it allows more efficient variable references
2932 in the presence of dynamic linking. */
2934 if (TREE_CODE (decl) == VAR_DECL
2935 && !initialized
2936 && TREE_PUBLIC (decl)
2937 && !DECL_THREAD_LOCAL (decl)
2938 && !flag_no_common)
2939 DECL_COMMON (decl) = 1;
2941 /* Set attributes here so if duplicate decl, will have proper attributes. */
2942 decl_attributes (&decl, attributes, 0);
2944 /* If #pragma weak was used, mark the decl weak now. */
2945 if (current_binding_level == global_binding_level)
2946 maybe_apply_pragma_weak (decl);
2948 if (TREE_CODE (decl) == FUNCTION_DECL
2949 && DECL_DECLARED_INLINE_P (decl)
2950 && DECL_UNINLINABLE (decl)
2951 && lookup_attribute ("noinline", DECL_ATTRIBUTES (decl)))
2952 warning_with_decl (decl,
2953 "inline function `%s' given attribute noinline");
2955 /* Add this decl to the current binding level.
2956 TEM may equal DECL or it may be a previous decl of the same name. */
2957 tem = pushdecl (decl);
2959 /* For a local variable, define the RTL now. */
2960 if (current_binding_level != global_binding_level
2961 /* But not if this is a duplicate decl
2962 and we preserved the rtl from the previous one
2963 (which may or may not happen). */
2964 && !DECL_RTL_SET_P (tem)
2965 && !DECL_CONTEXT (tem))
2967 if (TREE_TYPE (tem) != error_mark_node
2968 && COMPLETE_TYPE_P (TREE_TYPE (tem)))
2969 expand_decl (tem);
2970 else if (TREE_CODE (TREE_TYPE (tem)) == ARRAY_TYPE
2971 && DECL_INITIAL (tem) != 0)
2972 expand_decl (tem);
2975 return tem;
2978 /* Finish processing of a declaration;
2979 install its initial value.
2980 If the length of an array type is not known before,
2981 it must be determined now, from the initial value, or it is an error. */
2983 void
2984 finish_decl (decl, init, asmspec_tree)
2985 tree decl, init;
2986 tree asmspec_tree;
2988 tree type = TREE_TYPE (decl);
2989 int was_incomplete = (DECL_SIZE (decl) == 0);
2990 const char *asmspec = 0;
2992 /* If a name was specified, get the string. */
2993 if (current_binding_level == global_binding_level)
2994 asmspec_tree = maybe_apply_renaming_pragma (decl, asmspec_tree);
2995 if (asmspec_tree)
2996 asmspec = TREE_STRING_POINTER (asmspec_tree);
2998 /* If `start_decl' didn't like having an initialization, ignore it now. */
2999 if (init != 0 && DECL_INITIAL (decl) == 0)
3000 init = 0;
3002 /* Don't crash if parm is initialized. */
3003 if (TREE_CODE (decl) == PARM_DECL)
3004 init = 0;
3006 if (init)
3007 store_init_value (decl, init);
3009 /* Deduce size of array from initialization, if not already known */
3010 if (TREE_CODE (type) == ARRAY_TYPE
3011 && TYPE_DOMAIN (type) == 0
3012 && TREE_CODE (decl) != TYPE_DECL)
3014 int do_default
3015 = (TREE_STATIC (decl)
3016 /* Even if pedantic, an external linkage array
3017 may have incomplete type at first. */
3018 ? pedantic && !TREE_PUBLIC (decl)
3019 : !DECL_EXTERNAL (decl));
3020 int failure
3021 = complete_array_type (type, DECL_INITIAL (decl), do_default);
3023 /* Get the completed type made by complete_array_type. */
3024 type = TREE_TYPE (decl);
3026 if (failure == 1)
3027 error_with_decl (decl, "initializer fails to determine size of `%s'");
3029 else if (failure == 2)
3031 if (do_default)
3032 error_with_decl (decl, "array size missing in `%s'");
3033 /* If a `static' var's size isn't known,
3034 make it extern as well as static, so it does not get
3035 allocated.
3036 If it is not `static', then do not mark extern;
3037 finish_incomplete_decl will give it a default size
3038 and it will get allocated. */
3039 else if (!pedantic && TREE_STATIC (decl) && ! TREE_PUBLIC (decl))
3040 DECL_EXTERNAL (decl) = 1;
3043 /* TYPE_MAX_VALUE is always one less than the number of elements
3044 in the array, because we start counting at zero. Therefore,
3045 warn only if the value is less than zero. */
3046 else if (pedantic && TYPE_DOMAIN (type) != 0
3047 && tree_int_cst_sgn (TYPE_MAX_VALUE (TYPE_DOMAIN (type))) < 0)
3048 error_with_decl (decl, "zero or negative size array `%s'");
3050 layout_decl (decl, 0);
3053 if (TREE_CODE (decl) == VAR_DECL)
3055 if (DECL_SIZE (decl) == 0 && TREE_TYPE (decl) != error_mark_node
3056 && COMPLETE_TYPE_P (TREE_TYPE (decl)))
3057 layout_decl (decl, 0);
3059 if (DECL_SIZE (decl) == 0
3060 /* Don't give an error if we already gave one earlier. */
3061 && TREE_TYPE (decl) != error_mark_node
3062 && (TREE_STATIC (decl)
3064 /* A static variable with an incomplete type
3065 is an error if it is initialized.
3066 Also if it is not file scope.
3067 Otherwise, let it through, but if it is not `extern'
3068 then it may cause an error message later. */
3069 (DECL_INITIAL (decl) != 0
3070 || DECL_CONTEXT (decl) != 0)
3072 /* An automatic variable with an incomplete type
3073 is an error. */
3074 !DECL_EXTERNAL (decl)))
3076 error_with_decl (decl, "storage size of `%s' isn't known");
3077 TREE_TYPE (decl) = error_mark_node;
3080 if ((DECL_EXTERNAL (decl) || TREE_STATIC (decl))
3081 && DECL_SIZE (decl) != 0)
3083 if (TREE_CODE (DECL_SIZE (decl)) == INTEGER_CST)
3084 constant_expression_warning (DECL_SIZE (decl));
3085 else
3086 error_with_decl (decl, "storage size of `%s' isn't constant");
3089 if (TREE_USED (type))
3090 TREE_USED (decl) = 1;
3093 /* If this is a function and an assembler name is specified, it isn't
3094 builtin any more. Also reset DECL_RTL so we can give it its new
3095 name. */
3096 if (TREE_CODE (decl) == FUNCTION_DECL && asmspec)
3098 DECL_BUILT_IN_CLASS (decl) = NOT_BUILT_IN;
3099 SET_DECL_RTL (decl, NULL_RTX);
3100 SET_DECL_ASSEMBLER_NAME (decl, get_identifier (asmspec));
3103 /* Output the assembler code and/or RTL code for variables and functions,
3104 unless the type is an undefined structure or union.
3105 If not, it will get done when the type is completed. */
3107 if (TREE_CODE (decl) == VAR_DECL || TREE_CODE (decl) == FUNCTION_DECL)
3109 /* This is a no-op in c-lang.c or something real in objc-act.c. */
3110 if (flag_objc)
3111 objc_check_decl (decl);
3113 if (!DECL_CONTEXT (decl))
3115 if (DECL_INITIAL (decl) == NULL_TREE
3116 || DECL_INITIAL (decl) == error_mark_node)
3117 /* Don't output anything
3118 when a tentative file-scope definition is seen.
3119 But at end of compilation, do output code for them. */
3120 DECL_DEFER_OUTPUT (decl) = 1;
3121 rest_of_decl_compilation (decl, asmspec,
3122 (DECL_CONTEXT (decl) == 0
3123 || TREE_ASM_WRITTEN (decl)), 0);
3125 else
3127 /* This is a local variable. If there is an ASMSPEC, the
3128 user has requested that we handle it specially. */
3129 if (asmspec)
3131 /* In conjunction with an ASMSPEC, the `register'
3132 keyword indicates that we should place the variable
3133 in a particular register. */
3134 if (DECL_REGISTER (decl))
3135 DECL_C_HARD_REGISTER (decl) = 1;
3137 /* If this is not a static variable, issue a warning.
3138 It doesn't make any sense to give an ASMSPEC for an
3139 ordinary, non-register local variable. Historically,
3140 GCC has accepted -- but ignored -- the ASMSPEC in
3141 this case. */
3142 if (TREE_CODE (decl) == VAR_DECL
3143 && !DECL_REGISTER (decl)
3144 && !TREE_STATIC (decl))
3145 warning_with_decl (decl,
3146 "ignoring asm-specifier for non-static local variable `%s'");
3147 else
3148 SET_DECL_ASSEMBLER_NAME (decl, get_identifier (asmspec));
3151 if (TREE_CODE (decl) != FUNCTION_DECL)
3152 add_decl_stmt (decl);
3155 if (DECL_CONTEXT (decl) != 0)
3157 /* Recompute the RTL of a local array now
3158 if it used to be an incomplete type. */
3159 if (was_incomplete
3160 && ! TREE_STATIC (decl) && ! DECL_EXTERNAL (decl))
3162 /* If we used it already as memory, it must stay in memory. */
3163 TREE_ADDRESSABLE (decl) = TREE_USED (decl);
3164 /* If it's still incomplete now, no init will save it. */
3165 if (DECL_SIZE (decl) == 0)
3166 DECL_INITIAL (decl) = 0;
3171 if (TREE_CODE (decl) == TYPE_DECL)
3173 /* This is a no-op in c-lang.c or something real in objc-act.c. */
3174 if (flag_objc)
3175 objc_check_decl (decl);
3176 rest_of_decl_compilation (decl, NULL, DECL_CONTEXT (decl) == 0, 0);
3179 /* At the end of a declaration, throw away any variable type sizes
3180 of types defined inside that declaration. There is no use
3181 computing them in the following function definition. */
3182 if (current_binding_level == global_binding_level)
3183 get_pending_sizes ();
3186 /* Given a parsed parameter declaration,
3187 decode it into a PARM_DECL and push that on the current binding level.
3188 Also, for the sake of forward parm decls,
3189 record the given order of parms in `parm_order'. */
3191 void
3192 push_parm_decl (parm)
3193 tree parm;
3195 tree decl;
3196 int old_immediate_size_expand = immediate_size_expand;
3197 /* Don't try computing parm sizes now -- wait till fn is called. */
3198 immediate_size_expand = 0;
3200 decl = grokdeclarator (TREE_VALUE (TREE_PURPOSE (parm)),
3201 TREE_PURPOSE (TREE_PURPOSE (parm)), PARM, 0);
3202 decl_attributes (&decl, TREE_VALUE (parm), 0);
3204 #if 0
3205 if (DECL_NAME (decl))
3207 tree olddecl;
3208 olddecl = lookup_name (DECL_NAME (decl));
3209 if (pedantic && olddecl != 0 && TREE_CODE (olddecl) == TYPE_DECL)
3210 pedwarn_with_decl (decl,
3211 "ISO C forbids parameter `%s' shadowing typedef");
3213 #endif
3215 decl = pushdecl (decl);
3217 immediate_size_expand = old_immediate_size_expand;
3219 current_binding_level->parm_order
3220 = tree_cons (NULL_TREE, decl, current_binding_level->parm_order);
3222 /* Add this decl to the current binding level. */
3223 finish_decl (decl, NULL_TREE, NULL_TREE);
3226 /* Clear the given order of parms in `parm_order'.
3227 Used at start of parm list,
3228 and also at semicolon terminating forward decls. */
3230 void
3231 clear_parm_order ()
3233 current_binding_level->parm_order = NULL_TREE;
3236 static GTY(()) int compound_literal_number;
3238 /* Build a COMPOUND_LITERAL_EXPR. TYPE is the type given in the compound
3239 literal, which may be an incomplete array type completed by the
3240 initializer; INIT is a CONSTRUCTOR that initializes the compound
3241 literal. */
3243 tree
3244 build_compound_literal (type, init)
3245 tree type;
3246 tree init;
3248 /* We do not use start_decl here because we have a type, not a declarator;
3249 and do not use finish_decl because the decl should be stored inside
3250 the COMPOUND_LITERAL_EXPR rather than added elsewhere as a DECL_STMT. */
3251 tree decl = build_decl (VAR_DECL, NULL_TREE, type);
3252 tree complit;
3253 tree stmt;
3254 DECL_EXTERNAL (decl) = 0;
3255 TREE_PUBLIC (decl) = 0;
3256 TREE_STATIC (decl) = (current_binding_level == global_binding_level);
3257 DECL_CONTEXT (decl) = current_function_decl;
3258 TREE_USED (decl) = 1;
3259 TREE_TYPE (decl) = type;
3260 TREE_READONLY (decl) = TREE_READONLY (type);
3261 store_init_value (decl, init);
3263 if (TREE_CODE (type) == ARRAY_TYPE && !COMPLETE_TYPE_P (type))
3265 int failure = complete_array_type (type, DECL_INITIAL (decl), 1);
3266 if (failure)
3267 abort ();
3270 type = TREE_TYPE (decl);
3271 if (type == error_mark_node || !COMPLETE_TYPE_P (type))
3272 return error_mark_node;
3274 stmt = build_stmt (DECL_STMT, decl);
3275 complit = build1 (COMPOUND_LITERAL_EXPR, TREE_TYPE (decl), stmt);
3276 TREE_SIDE_EFFECTS (complit) = 1;
3278 layout_decl (decl, 0);
3280 if (TREE_STATIC (decl))
3282 /* This decl needs a name for the assembler output. We also need
3283 a unique suffix to be added to the name. */
3284 char *name;
3286 ASM_FORMAT_PRIVATE_NAME (name, "__compound_literal",
3287 compound_literal_number);
3288 compound_literal_number++;
3289 DECL_NAME (decl) = get_identifier (name);
3290 DECL_DEFER_OUTPUT (decl) = 1;
3291 DECL_COMDAT (decl) = 1;
3292 DECL_ARTIFICIAL (decl) = 1;
3293 pushdecl (decl);
3294 rest_of_decl_compilation (decl, NULL, 1, 0);
3297 return complit;
3300 /* Make TYPE a complete type based on INITIAL_VALUE.
3301 Return 0 if successful, 1 if INITIAL_VALUE can't be deciphered,
3302 2 if there was no information (in which case assume 1 if DO_DEFAULT). */
3305 complete_array_type (type, initial_value, do_default)
3306 tree type;
3307 tree initial_value;
3308 int do_default;
3310 tree maxindex = NULL_TREE;
3311 int value = 0;
3313 if (initial_value)
3315 /* Note MAXINDEX is really the maximum index,
3316 one less than the size. */
3317 if (TREE_CODE (initial_value) == STRING_CST)
3319 int eltsize
3320 = int_size_in_bytes (TREE_TYPE (TREE_TYPE (initial_value)));
3321 maxindex = build_int_2 ((TREE_STRING_LENGTH (initial_value)
3322 / eltsize) - 1, 0);
3324 else if (TREE_CODE (initial_value) == CONSTRUCTOR)
3326 tree elts = CONSTRUCTOR_ELTS (initial_value);
3327 maxindex = build_int_2 (-1, -1);
3328 for (; elts; elts = TREE_CHAIN (elts))
3330 if (TREE_PURPOSE (elts))
3331 maxindex = TREE_PURPOSE (elts);
3332 else
3333 maxindex = fold (build (PLUS_EXPR, integer_type_node,
3334 maxindex, integer_one_node));
3336 maxindex = copy_node (maxindex);
3338 else
3340 /* Make an error message unless that happened already. */
3341 if (initial_value != error_mark_node)
3342 value = 1;
3344 /* Prevent further error messages. */
3345 maxindex = build_int_2 (0, 0);
3349 if (!maxindex)
3351 if (do_default)
3352 maxindex = build_int_2 (0, 0);
3353 value = 2;
3356 if (maxindex)
3358 TYPE_DOMAIN (type) = build_index_type (maxindex);
3359 if (!TREE_TYPE (maxindex))
3360 TREE_TYPE (maxindex) = TYPE_DOMAIN (type);
3363 /* Lay out the type now that we can get the real answer. */
3365 layout_type (type);
3367 return value;
3370 /* Determine whether TYPE is a structure with a flexible array member,
3371 or a union containing such a structure (possibly recursively). */
3373 static bool
3374 flexible_array_type_p (type)
3375 tree type;
3377 tree x;
3378 switch (TREE_CODE (type))
3380 case RECORD_TYPE:
3381 x = TYPE_FIELDS (type);
3382 if (x == NULL_TREE)
3383 return false;
3384 while (TREE_CHAIN (x) != NULL_TREE)
3385 x = TREE_CHAIN (x);
3386 if (TREE_CODE (TREE_TYPE (x)) == ARRAY_TYPE
3387 && TYPE_SIZE (TREE_TYPE (x)) == NULL_TREE
3388 && TYPE_DOMAIN (TREE_TYPE (x)) != NULL_TREE
3389 && TYPE_MAX_VALUE (TYPE_DOMAIN (TREE_TYPE (x))) == NULL_TREE)
3390 return true;
3391 return false;
3392 case UNION_TYPE:
3393 for (x = TYPE_FIELDS (type); x != NULL_TREE; x = TREE_CHAIN (x))
3395 if (flexible_array_type_p (TREE_TYPE (x)))
3396 return true;
3398 return false;
3399 default:
3400 return false;
3404 /* Given declspecs and a declarator,
3405 determine the name and type of the object declared
3406 and construct a ..._DECL node for it.
3407 (In one case we can return a ..._TYPE node instead.
3408 For invalid input we sometimes return 0.)
3410 DECLSPECS is a chain of tree_list nodes whose value fields
3411 are the storage classes and type specifiers.
3413 DECL_CONTEXT says which syntactic context this declaration is in:
3414 NORMAL for most contexts. Make a VAR_DECL or FUNCTION_DECL or TYPE_DECL.
3415 FUNCDEF for a function definition. Like NORMAL but a few different
3416 error messages in each case. Return value may be zero meaning
3417 this definition is too screwy to try to parse.
3418 PARM for a parameter declaration (either within a function prototype
3419 or before a function body). Make a PARM_DECL, or return void_type_node.
3420 TYPENAME if for a typename (in a cast or sizeof).
3421 Don't make a DECL node; just return the ..._TYPE node.
3422 FIELD for a struct or union field; make a FIELD_DECL.
3423 BITFIELD for a field with specified width.
3424 INITIALIZED is 1 if the decl has an initializer.
3426 In the TYPENAME case, DECLARATOR is really an absolute declarator.
3427 It may also be so in the PARM case, for a prototype where the
3428 argument type is specified but not the name.
3430 This function is where the complicated C meanings of `static'
3431 and `extern' are interpreted. */
3433 static tree
3434 grokdeclarator (declarator, declspecs, decl_context, initialized)
3435 tree declspecs;
3436 tree declarator;
3437 enum decl_context decl_context;
3438 int initialized;
3440 int specbits = 0;
3441 tree spec;
3442 tree type = NULL_TREE;
3443 int longlong = 0;
3444 int constp;
3445 int restrictp;
3446 int volatilep;
3447 int type_quals = TYPE_UNQUALIFIED;
3448 int inlinep;
3449 int explicit_int = 0;
3450 int explicit_char = 0;
3451 int defaulted_int = 0;
3452 tree typedef_decl = 0;
3453 const char *name;
3454 tree typedef_type = 0;
3455 int funcdef_flag = 0;
3456 enum tree_code innermost_code = ERROR_MARK;
3457 int bitfield = 0;
3458 int size_varies = 0;
3459 tree decl_attr = NULL_TREE;
3460 tree array_ptr_quals = NULL_TREE;
3461 int array_parm_static = 0;
3462 tree returned_attrs = NULL_TREE;
3464 if (decl_context == BITFIELD)
3465 bitfield = 1, decl_context = FIELD;
3467 if (decl_context == FUNCDEF)
3468 funcdef_flag = 1, decl_context = NORMAL;
3470 /* Look inside a declarator for the name being declared
3471 and get it as a string, for an error message. */
3473 tree decl = declarator;
3474 name = 0;
3476 while (decl)
3477 switch (TREE_CODE (decl))
3479 case ARRAY_REF:
3480 case INDIRECT_REF:
3481 case CALL_EXPR:
3482 innermost_code = TREE_CODE (decl);
3483 decl = TREE_OPERAND (decl, 0);
3484 break;
3486 case TREE_LIST:
3487 decl = TREE_VALUE (decl);
3488 break;
3490 case IDENTIFIER_NODE:
3491 name = IDENTIFIER_POINTER (decl);
3492 decl = 0;
3493 break;
3495 default:
3496 abort ();
3498 if (name == 0)
3499 name = "type name";
3502 /* A function definition's declarator must have the form of
3503 a function declarator. */
3505 if (funcdef_flag && innermost_code != CALL_EXPR)
3506 return 0;
3508 /* Anything declared one level down from the top level
3509 must be one of the parameters of a function
3510 (because the body is at least two levels down). */
3512 /* If this looks like a function definition, make it one,
3513 even if it occurs where parms are expected.
3514 Then store_parm_decls will reject it and not use it as a parm. */
3515 if (decl_context == NORMAL && !funcdef_flag
3516 && current_binding_level->parm_flag)
3517 decl_context = PARM;
3519 /* Look through the decl specs and record which ones appear.
3520 Some typespecs are defined as built-in typenames.
3521 Others, the ones that are modifiers of other types,
3522 are represented by bits in SPECBITS: set the bits for
3523 the modifiers that appear. Storage class keywords are also in SPECBITS.
3525 If there is a typedef name or a type, store the type in TYPE.
3526 This includes builtin typedefs such as `int'.
3528 Set EXPLICIT_INT or EXPLICIT_CHAR if the type is `int' or `char'
3529 and did not come from a user typedef.
3531 Set LONGLONG if `long' is mentioned twice. */
3533 for (spec = declspecs; spec; spec = TREE_CHAIN (spec))
3535 tree id = TREE_VALUE (spec);
3537 /* If the entire declaration is itself tagged as deprecated then
3538 suppress reports of deprecated items. */
3539 if (id && TREE_DEPRECATED (id))
3541 if (deprecated_state != DEPRECATED_SUPPRESS)
3542 warn_deprecated_use (id);
3545 if (id == ridpointers[(int) RID_INT])
3546 explicit_int = 1;
3547 if (id == ridpointers[(int) RID_CHAR])
3548 explicit_char = 1;
3550 if (TREE_CODE (id) == IDENTIFIER_NODE && C_IS_RESERVED_WORD (id))
3552 enum rid i = C_RID_CODE (id);
3553 if ((int) i <= (int) RID_LAST_MODIFIER)
3555 if (i == RID_LONG && (specbits & (1 << (int) RID_LONG)))
3557 if (longlong)
3558 error ("`long long long' is too long for GCC");
3559 else
3561 if (pedantic && !flag_isoc99 && ! in_system_header
3562 && warn_long_long)
3563 pedwarn ("ISO C90 does not support `long long'");
3564 longlong = 1;
3567 else if (specbits & (1 << (int) i))
3569 if (i == RID_CONST || i == RID_VOLATILE || i == RID_RESTRICT)
3571 if (!flag_isoc99)
3572 pedwarn ("duplicate `%s'", IDENTIFIER_POINTER (id));
3574 else
3575 error ("duplicate `%s'", IDENTIFIER_POINTER (id));
3578 /* Diagnose "__thread extern". Recall that this list
3579 is in the reverse order seen in the text. */
3580 if (i == RID_THREAD
3581 && (specbits & (1 << (int) RID_EXTERN
3582 | 1 << (int) RID_STATIC)))
3584 if (specbits & 1 << (int) RID_EXTERN)
3585 error ("`__thread' before `extern'");
3586 else
3587 error ("`__thread' before `static'");
3590 specbits |= 1 << (int) i;
3591 goto found;
3594 if (type)
3595 error ("two or more data types in declaration of `%s'", name);
3596 /* Actual typedefs come to us as TYPE_DECL nodes. */
3597 else if (TREE_CODE (id) == TYPE_DECL)
3599 if (TREE_TYPE (id) == error_mark_node)
3600 ; /* Allow the type to default to int to avoid cascading errors. */
3601 else
3603 type = TREE_TYPE (id);
3604 decl_attr = DECL_ATTRIBUTES (id);
3605 typedef_decl = id;
3608 /* Built-in types come as identifiers. */
3609 else if (TREE_CODE (id) == IDENTIFIER_NODE)
3611 tree t = lookup_name (id);
3612 if (TREE_TYPE (t) == error_mark_node)
3614 else if (!t || TREE_CODE (t) != TYPE_DECL)
3615 error ("`%s' fails to be a typedef or built in type",
3616 IDENTIFIER_POINTER (id));
3617 else
3619 type = TREE_TYPE (t);
3620 typedef_decl = t;
3623 else if (TREE_CODE (id) != ERROR_MARK)
3624 type = id;
3626 found:
3630 typedef_type = type;
3631 if (type)
3632 size_varies = C_TYPE_VARIABLE_SIZE (type);
3634 /* No type at all: default to `int', and set DEFAULTED_INT
3635 because it was not a user-defined typedef. */
3637 if (type == 0)
3639 if ((! (specbits & ((1 << (int) RID_LONG) | (1 << (int) RID_SHORT)
3640 | (1 << (int) RID_SIGNED)
3641 | (1 << (int) RID_UNSIGNED)
3642 | (1 << (int) RID_COMPLEX))))
3643 /* Don't warn about typedef foo = bar. */
3644 && ! (specbits & (1 << (int) RID_TYPEDEF) && initialized)
3645 && ! in_system_header)
3647 /* Issue a warning if this is an ISO C 99 program or if -Wreturn-type
3648 and this is a function, or if -Wimplicit; prefer the former
3649 warning since it is more explicit. */
3650 if ((warn_implicit_int || warn_return_type || flag_isoc99)
3651 && funcdef_flag)
3652 warn_about_return_type = 1;
3653 else if (warn_implicit_int || flag_isoc99)
3654 pedwarn_c99 ("type defaults to `int' in declaration of `%s'",
3655 name);
3658 defaulted_int = 1;
3659 type = integer_type_node;
3662 /* Now process the modifiers that were specified
3663 and check for invalid combinations. */
3665 /* Long double is a special combination. */
3667 if ((specbits & 1 << (int) RID_LONG) && ! longlong
3668 && TYPE_MAIN_VARIANT (type) == double_type_node)
3670 specbits &= ~(1 << (int) RID_LONG);
3671 type = long_double_type_node;
3674 /* Check all other uses of type modifiers. */
3676 if (specbits & ((1 << (int) RID_LONG) | (1 << (int) RID_SHORT)
3677 | (1 << (int) RID_UNSIGNED) | (1 << (int) RID_SIGNED)))
3679 int ok = 0;
3681 if ((specbits & 1 << (int) RID_LONG)
3682 && (specbits & 1 << (int) RID_SHORT))
3683 error ("both long and short specified for `%s'", name);
3684 else if (((specbits & 1 << (int) RID_LONG)
3685 || (specbits & 1 << (int) RID_SHORT))
3686 && explicit_char)
3687 error ("long or short specified with char for `%s'", name);
3688 else if (((specbits & 1 << (int) RID_LONG)
3689 || (specbits & 1 << (int) RID_SHORT))
3690 && TREE_CODE (type) == REAL_TYPE)
3692 static int already = 0;
3694 error ("long or short specified with floating type for `%s'", name);
3695 if (! already && ! pedantic)
3697 error ("the only valid combination is `long double'");
3698 already = 1;
3701 else if ((specbits & 1 << (int) RID_SIGNED)
3702 && (specbits & 1 << (int) RID_UNSIGNED))
3703 error ("both signed and unsigned specified for `%s'", name);
3704 else if (TREE_CODE (type) != INTEGER_TYPE)
3705 error ("long, short, signed or unsigned invalid for `%s'", name);
3706 else
3708 ok = 1;
3709 if (!explicit_int && !defaulted_int && !explicit_char)
3711 error ("long, short, signed or unsigned used invalidly for `%s'",
3712 name);
3713 ok = 0;
3717 /* Discard the type modifiers if they are invalid. */
3718 if (! ok)
3720 specbits &= ~((1 << (int) RID_LONG) | (1 << (int) RID_SHORT)
3721 | (1 << (int) RID_UNSIGNED) | (1 << (int) RID_SIGNED));
3722 longlong = 0;
3726 if ((specbits & (1 << (int) RID_COMPLEX))
3727 && TREE_CODE (type) != INTEGER_TYPE && TREE_CODE (type) != REAL_TYPE)
3729 error ("complex invalid for `%s'", name);
3730 specbits &= ~(1 << (int) RID_COMPLEX);
3733 /* Decide whether an integer type is signed or not.
3734 Optionally treat bitfields as signed by default. */
3735 if (specbits & 1 << (int) RID_UNSIGNED
3736 || (bitfield && ! flag_signed_bitfields
3737 && (explicit_int || defaulted_int || explicit_char
3738 /* A typedef for plain `int' without `signed'
3739 can be controlled just like plain `int'. */
3740 || ! (typedef_decl != 0
3741 && C_TYPEDEF_EXPLICITLY_SIGNED (typedef_decl)))
3742 && TREE_CODE (type) != ENUMERAL_TYPE
3743 && !(specbits & 1 << (int) RID_SIGNED)))
3745 if (longlong)
3746 type = long_long_unsigned_type_node;
3747 else if (specbits & 1 << (int) RID_LONG)
3748 type = long_unsigned_type_node;
3749 else if (specbits & 1 << (int) RID_SHORT)
3750 type = short_unsigned_type_node;
3751 else if (type == char_type_node)
3752 type = unsigned_char_type_node;
3753 else if (typedef_decl)
3754 type = c_common_unsigned_type (type);
3755 else
3756 type = unsigned_type_node;
3758 else if ((specbits & 1 << (int) RID_SIGNED)
3759 && type == char_type_node)
3760 type = signed_char_type_node;
3761 else if (longlong)
3762 type = long_long_integer_type_node;
3763 else if (specbits & 1 << (int) RID_LONG)
3764 type = long_integer_type_node;
3765 else if (specbits & 1 << (int) RID_SHORT)
3766 type = short_integer_type_node;
3768 if (specbits & 1 << (int) RID_COMPLEX)
3770 if (pedantic && !flag_isoc99)
3771 pedwarn ("ISO C90 does not support complex types");
3772 /* If we just have "complex", it is equivalent to
3773 "complex double", but if any modifiers at all are specified it is
3774 the complex form of TYPE. E.g, "complex short" is
3775 "complex short int". */
3777 if (defaulted_int && ! longlong
3778 && ! (specbits & ((1 << (int) RID_LONG) | (1 << (int) RID_SHORT)
3779 | (1 << (int) RID_SIGNED)
3780 | (1 << (int) RID_UNSIGNED))))
3782 if (pedantic)
3783 pedwarn ("ISO C does not support plain `complex' meaning `double complex'");
3784 type = complex_double_type_node;
3786 else if (type == integer_type_node)
3788 if (pedantic)
3789 pedwarn ("ISO C does not support complex integer types");
3790 type = complex_integer_type_node;
3792 else if (type == float_type_node)
3793 type = complex_float_type_node;
3794 else if (type == double_type_node)
3795 type = complex_double_type_node;
3796 else if (type == long_double_type_node)
3797 type = complex_long_double_type_node;
3798 else
3800 if (pedantic)
3801 pedwarn ("ISO C does not support complex integer types");
3802 type = build_complex_type (type);
3806 /* Figure out the type qualifiers for the declaration. There are
3807 two ways a declaration can become qualified. One is something
3808 like `const int i' where the `const' is explicit. Another is
3809 something like `typedef const int CI; CI i' where the type of the
3810 declaration contains the `const'. */
3811 constp = !! (specbits & 1 << (int) RID_CONST) + TYPE_READONLY (type);
3812 restrictp = !! (specbits & 1 << (int) RID_RESTRICT) + TYPE_RESTRICT (type);
3813 volatilep = !! (specbits & 1 << (int) RID_VOLATILE) + TYPE_VOLATILE (type);
3814 inlinep = !! (specbits & (1 << (int) RID_INLINE));
3815 if (constp > 1 && ! flag_isoc99)
3816 pedwarn ("duplicate `const'");
3817 if (restrictp > 1 && ! flag_isoc99)
3818 pedwarn ("duplicate `restrict'");
3819 if (volatilep > 1 && ! flag_isoc99)
3820 pedwarn ("duplicate `volatile'");
3821 if (! flag_gen_aux_info && (TYPE_QUALS (type)))
3822 type = TYPE_MAIN_VARIANT (type);
3823 type_quals = ((constp ? TYPE_QUAL_CONST : 0)
3824 | (restrictp ? TYPE_QUAL_RESTRICT : 0)
3825 | (volatilep ? TYPE_QUAL_VOLATILE : 0));
3827 /* Warn if two storage classes are given. Default to `auto'. */
3830 int nclasses = 0;
3832 if (specbits & 1 << (int) RID_AUTO) nclasses++;
3833 if (specbits & 1 << (int) RID_STATIC) nclasses++;
3834 if (specbits & 1 << (int) RID_EXTERN) nclasses++;
3835 if (specbits & 1 << (int) RID_REGISTER) nclasses++;
3836 if (specbits & 1 << (int) RID_TYPEDEF) nclasses++;
3838 /* "static __thread" and "extern __thread" are allowed. */
3839 if ((specbits & (1 << (int) RID_THREAD
3840 | 1 << (int) RID_STATIC
3841 | 1 << (int) RID_EXTERN)) == (1 << (int) RID_THREAD))
3842 nclasses++;
3844 /* Warn about storage classes that are invalid for certain
3845 kinds of declarations (parameters, typenames, etc.). */
3847 if (nclasses > 1)
3848 error ("multiple storage classes in declaration of `%s'", name);
3849 else if (funcdef_flag
3850 && (specbits
3851 & ((1 << (int) RID_REGISTER)
3852 | (1 << (int) RID_AUTO)
3853 | (1 << (int) RID_TYPEDEF)
3854 | (1 << (int) RID_THREAD))))
3856 if (specbits & 1 << (int) RID_AUTO
3857 && (pedantic || current_binding_level == global_binding_level))
3858 pedwarn ("function definition declared `auto'");
3859 if (specbits & 1 << (int) RID_REGISTER)
3860 error ("function definition declared `register'");
3861 if (specbits & 1 << (int) RID_TYPEDEF)
3862 error ("function definition declared `typedef'");
3863 if (specbits & 1 << (int) RID_THREAD)
3864 error ("function definition declared `__thread'");
3865 specbits &= ~((1 << (int) RID_TYPEDEF) | (1 << (int) RID_REGISTER)
3866 | (1 << (int) RID_AUTO) | (1 << (int) RID_THREAD));
3868 else if (decl_context != NORMAL && nclasses > 0)
3870 if (decl_context == PARM && specbits & 1 << (int) RID_REGISTER)
3872 else
3874 switch (decl_context)
3876 case FIELD:
3877 error ("storage class specified for structure field `%s'",
3878 name);
3879 break;
3880 case PARM:
3881 error ("storage class specified for parameter `%s'", name);
3882 break;
3883 default:
3884 error ("storage class specified for typename");
3885 break;
3887 specbits &= ~((1 << (int) RID_TYPEDEF) | (1 << (int) RID_REGISTER)
3888 | (1 << (int) RID_AUTO) | (1 << (int) RID_STATIC)
3889 | (1 << (int) RID_EXTERN) | (1 << (int) RID_THREAD));
3892 else if (specbits & 1 << (int) RID_EXTERN && initialized && ! funcdef_flag)
3894 /* `extern' with initialization is invalid if not at top level. */
3895 if (current_binding_level == global_binding_level)
3896 warning ("`%s' initialized and declared `extern'", name);
3897 else
3898 error ("`%s' has both `extern' and initializer", name);
3900 else if (current_binding_level == global_binding_level)
3902 if (specbits & 1 << (int) RID_AUTO)
3903 error ("top-level declaration of `%s' specifies `auto'", name);
3905 else
3907 if (specbits & 1 << (int) RID_EXTERN && funcdef_flag)
3908 error ("nested function `%s' declared `extern'", name);
3909 else if ((specbits & (1 << (int) RID_THREAD
3910 | 1 << (int) RID_EXTERN
3911 | 1 << (int) RID_STATIC))
3912 == (1 << (int) RID_THREAD))
3914 error ("function-scope `%s' implicitly auto and declared `__thread'",
3915 name);
3916 specbits &= ~(1 << (int) RID_THREAD);
3921 /* Now figure out the structure of the declarator proper.
3922 Descend through it, creating more complex types, until we reach
3923 the declared identifier (or NULL_TREE, in an absolute declarator). */
3925 while (declarator && TREE_CODE (declarator) != IDENTIFIER_NODE)
3927 if (type == error_mark_node)
3929 declarator = TREE_OPERAND (declarator, 0);
3930 continue;
3933 /* Each level of DECLARATOR is either an ARRAY_REF (for ...[..]),
3934 an INDIRECT_REF (for *...),
3935 a CALL_EXPR (for ...(...)),
3936 a TREE_LIST (for nested attributes),
3937 an identifier (for the name being declared)
3938 or a null pointer (for the place in an absolute declarator
3939 where the name was omitted).
3940 For the last two cases, we have just exited the loop.
3942 At this point, TYPE is the type of elements of an array,
3943 or for a function to return, or for a pointer to point to.
3944 After this sequence of ifs, TYPE is the type of the
3945 array or function or pointer, and DECLARATOR has had its
3946 outermost layer removed. */
3948 if (array_ptr_quals != NULL_TREE || array_parm_static)
3950 /* Only the innermost declarator (making a parameter be of
3951 array type which is converted to pointer type)
3952 may have static or type qualifiers. */
3953 error ("static or type qualifiers in non-parameter array declarator");
3954 array_ptr_quals = NULL_TREE;
3955 array_parm_static = 0;
3958 if (TREE_CODE (declarator) == TREE_LIST)
3960 /* We encode a declarator with embedded attributes using
3961 a TREE_LIST. */
3962 tree attrs = TREE_PURPOSE (declarator);
3963 tree inner_decl;
3964 int attr_flags = 0;
3965 declarator = TREE_VALUE (declarator);
3966 inner_decl = declarator;
3967 while (inner_decl != NULL_TREE
3968 && TREE_CODE (inner_decl) == TREE_LIST)
3969 inner_decl = TREE_VALUE (inner_decl);
3970 if (inner_decl == NULL_TREE
3971 || TREE_CODE (inner_decl) == IDENTIFIER_NODE)
3972 attr_flags |= (int) ATTR_FLAG_DECL_NEXT;
3973 else if (TREE_CODE (inner_decl) == CALL_EXPR)
3974 attr_flags |= (int) ATTR_FLAG_FUNCTION_NEXT;
3975 else if (TREE_CODE (inner_decl) == ARRAY_REF)
3976 attr_flags |= (int) ATTR_FLAG_ARRAY_NEXT;
3977 returned_attrs = decl_attributes (&type,
3978 chainon (returned_attrs, attrs),
3979 attr_flags);
3981 else if (TREE_CODE (declarator) == ARRAY_REF)
3983 tree itype = NULL_TREE;
3984 tree size = TREE_OPERAND (declarator, 1);
3985 /* The index is a signed object `sizetype' bits wide. */
3986 tree index_type = c_common_signed_type (sizetype);
3988 array_ptr_quals = TREE_TYPE (declarator);
3989 array_parm_static = TREE_STATIC (declarator);
3991 declarator = TREE_OPERAND (declarator, 0);
3993 /* Check for some types that there cannot be arrays of. */
3995 if (VOID_TYPE_P (type))
3997 error ("declaration of `%s' as array of voids", name);
3998 type = error_mark_node;
4001 if (TREE_CODE (type) == FUNCTION_TYPE)
4003 error ("declaration of `%s' as array of functions", name);
4004 type = error_mark_node;
4007 if (pedantic && flexible_array_type_p (type))
4008 pedwarn ("invalid use of structure with flexible array member");
4010 if (size == error_mark_node)
4011 type = error_mark_node;
4013 if (type == error_mark_node)
4014 continue;
4016 /* If size was specified, set ITYPE to a range-type for that size.
4017 Otherwise, ITYPE remains null. finish_decl may figure it out
4018 from an initial value. */
4020 if (size)
4022 /* Strip NON_LVALUE_EXPRs since we aren't using as an lvalue. */
4023 STRIP_TYPE_NOPS (size);
4025 if (! INTEGRAL_TYPE_P (TREE_TYPE (size)))
4027 error ("size of array `%s' has non-integer type", name);
4028 size = integer_one_node;
4031 if (pedantic && integer_zerop (size))
4032 pedwarn ("ISO C forbids zero-size array `%s'", name);
4034 if (TREE_CODE (size) == INTEGER_CST)
4036 constant_expression_warning (size);
4037 if (tree_int_cst_sgn (size) < 0)
4039 error ("size of array `%s' is negative", name);
4040 size = integer_one_node;
4043 else
4045 /* Make sure the array size remains visibly nonconstant
4046 even if it is (eg) a const variable with known value. */
4047 size_varies = 1;
4049 if (!flag_isoc99 && pedantic)
4051 if (TREE_CONSTANT (size))
4052 pedwarn ("ISO C90 forbids array `%s' whose size can't be evaluated",
4053 name);
4054 else
4055 pedwarn ("ISO C90 forbids variable-size array `%s'",
4056 name);
4060 if (integer_zerop (size))
4062 /* A zero-length array cannot be represented with an
4063 unsigned index type, which is what we'll get with
4064 build_index_type. Create an open-ended range instead. */
4065 itype = build_range_type (sizetype, size, NULL_TREE);
4067 else
4069 /* Compute the maximum valid index, that is, size - 1.
4070 Do the calculation in index_type, so that if it is
4071 a variable the computations will be done in the
4072 proper mode. */
4073 itype = fold (build (MINUS_EXPR, index_type,
4074 convert (index_type, size),
4075 convert (index_type, size_one_node)));
4077 /* If that overflowed, the array is too big.
4078 ??? While a size of INT_MAX+1 technically shouldn't
4079 cause an overflow (because we subtract 1), the overflow
4080 is recorded during the conversion to index_type, before
4081 the subtraction. Handling this case seems like an
4082 unnecessary complication. */
4083 if (TREE_OVERFLOW (itype))
4085 error ("size of array `%s' is too large", name);
4086 type = error_mark_node;
4087 continue;
4090 if (size_varies)
4091 itype = variable_size (itype);
4092 itype = build_index_type (itype);
4095 else if (decl_context == FIELD)
4097 if (pedantic && !flag_isoc99 && !in_system_header)
4098 pedwarn ("ISO C90 does not support flexible array members");
4100 /* ISO C99 Flexible array members are effectively identical
4101 to GCC's zero-length array extension. */
4102 itype = build_range_type (sizetype, size_zero_node, NULL_TREE);
4105 /* If pedantic, complain about arrays of incomplete types. */
4107 if (pedantic && !COMPLETE_TYPE_P (type))
4108 pedwarn ("array type has incomplete element type");
4110 #if 0
4111 /* We shouldn't have a function type here at all!
4112 Functions aren't allowed as array elements. */
4113 if (pedantic && TREE_CODE (type) == FUNCTION_TYPE
4114 && (constp || volatilep))
4115 pedwarn ("ISO C forbids const or volatile function types");
4116 #endif
4118 /* Build the array type itself, then merge any constancy or
4119 volatility into the target type. We must do it in this order
4120 to ensure that the TYPE_MAIN_VARIANT field of the array type
4121 is set correctly. */
4123 type = build_array_type (type, itype);
4124 if (type_quals)
4125 type = c_build_qualified_type (type, type_quals);
4127 if (size_varies)
4128 C_TYPE_VARIABLE_SIZE (type) = 1;
4130 /* The GCC extension for zero-length arrays differs from
4131 ISO flexible array members in that sizeof yields zero. */
4132 if (size && integer_zerop (size))
4134 layout_type (type);
4135 TYPE_SIZE (type) = bitsize_zero_node;
4136 TYPE_SIZE_UNIT (type) = size_zero_node;
4138 if (decl_context != PARM
4139 && (array_ptr_quals != NULL_TREE || array_parm_static))
4141 error ("static or type qualifiers in non-parameter array declarator");
4142 array_ptr_quals = NULL_TREE;
4143 array_parm_static = 0;
4146 else if (TREE_CODE (declarator) == CALL_EXPR)
4148 tree arg_types;
4150 /* Declaring a function type.
4151 Make sure we have a valid type for the function to return. */
4152 if (type == error_mark_node)
4153 continue;
4155 size_varies = 0;
4157 /* Warn about some types functions can't return. */
4159 if (TREE_CODE (type) == FUNCTION_TYPE)
4161 error ("`%s' declared as function returning a function", name);
4162 type = integer_type_node;
4164 if (TREE_CODE (type) == ARRAY_TYPE)
4166 error ("`%s' declared as function returning an array", name);
4167 type = integer_type_node;
4170 /* Construct the function type and go to the next
4171 inner layer of declarator. */
4173 arg_types = grokparms (TREE_OPERAND (declarator, 1),
4174 funcdef_flag
4175 /* Say it's a definition
4176 only for the CALL_EXPR
4177 closest to the identifier. */
4178 && TREE_CODE (TREE_OPERAND (declarator, 0)) == IDENTIFIER_NODE);
4179 /* Type qualifiers before the return type of the function
4180 qualify the return type, not the function type. */
4181 if (type_quals)
4183 /* Type qualifiers on a function return type are normally
4184 permitted by the standard but have no effect, so give a
4185 warning at -Wextra. Qualifiers on a void return type have
4186 meaning as a GNU extension, and are banned on function
4187 definitions in ISO C. FIXME: strictly we shouldn't
4188 pedwarn for qualified void return types except on function
4189 definitions, but not doing so could lead to the undesirable
4190 state of a "volatile void" function return type not being
4191 warned about, and a use of the function being compiled
4192 with GNU semantics, with no diagnostics under -pedantic. */
4193 if (VOID_TYPE_P (type) && pedantic && !in_system_header)
4194 pedwarn ("ISO C forbids qualified void function return type");
4195 else if (extra_warnings
4196 && !(VOID_TYPE_P (type)
4197 && type_quals == TYPE_QUAL_VOLATILE))
4198 warning ("type qualifiers ignored on function return type");
4200 type = c_build_qualified_type (type, type_quals);
4202 type_quals = TYPE_UNQUALIFIED;
4204 type = build_function_type (type, arg_types);
4205 declarator = TREE_OPERAND (declarator, 0);
4207 /* Set the TYPE_CONTEXTs for each tagged type which is local to
4208 the formal parameter list of this FUNCTION_TYPE to point to
4209 the FUNCTION_TYPE node itself. */
4212 tree link;
4214 for (link = last_function_parm_tags;
4215 link;
4216 link = TREE_CHAIN (link))
4217 TYPE_CONTEXT (TREE_VALUE (link)) = type;
4220 else if (TREE_CODE (declarator) == INDIRECT_REF)
4222 /* Merge any constancy or volatility into the target type
4223 for the pointer. */
4225 if (pedantic && TREE_CODE (type) == FUNCTION_TYPE
4226 && type_quals)
4227 pedwarn ("ISO C forbids qualified function types");
4228 if (type_quals)
4229 type = c_build_qualified_type (type, type_quals);
4230 type_quals = TYPE_UNQUALIFIED;
4231 size_varies = 0;
4233 type = build_pointer_type (type);
4235 /* Process a list of type modifier keywords
4236 (such as const or volatile) that were given inside the `*'. */
4238 if (TREE_TYPE (declarator))
4240 tree typemodlist;
4241 int erred = 0;
4243 constp = 0;
4244 volatilep = 0;
4245 restrictp = 0;
4246 for (typemodlist = TREE_TYPE (declarator); typemodlist;
4247 typemodlist = TREE_CHAIN (typemodlist))
4249 tree qualifier = TREE_VALUE (typemodlist);
4251 if (C_IS_RESERVED_WORD (qualifier))
4253 if (C_RID_CODE (qualifier) == RID_CONST)
4254 constp++;
4255 else if (C_RID_CODE (qualifier) == RID_VOLATILE)
4256 volatilep++;
4257 else if (C_RID_CODE (qualifier) == RID_RESTRICT)
4258 restrictp++;
4259 else
4260 erred++;
4262 else
4263 erred++;
4266 if (erred)
4267 error ("invalid type modifier within pointer declarator");
4268 if (constp > 1 && ! flag_isoc99)
4269 pedwarn ("duplicate `const'");
4270 if (volatilep > 1 && ! flag_isoc99)
4271 pedwarn ("duplicate `volatile'");
4272 if (restrictp > 1 && ! flag_isoc99)
4273 pedwarn ("duplicate `restrict'");
4275 type_quals = ((constp ? TYPE_QUAL_CONST : 0)
4276 | (restrictp ? TYPE_QUAL_RESTRICT : 0)
4277 | (volatilep ? TYPE_QUAL_VOLATILE : 0));
4280 declarator = TREE_OPERAND (declarator, 0);
4282 else
4283 abort ();
4287 /* Now TYPE has the actual type. */
4289 /* Did array size calculations overflow? */
4291 if (TREE_CODE (type) == ARRAY_TYPE
4292 && COMPLETE_TYPE_P (type)
4293 && TREE_OVERFLOW (TYPE_SIZE (type)))
4295 error ("size of array `%s' is too large", name);
4296 /* If we proceed with the array type as it is, we'll eventually
4297 crash in tree_low_cst(). */
4298 type = error_mark_node;
4301 /* If this is declaring a typedef name, return a TYPE_DECL. */
4303 if (specbits & (1 << (int) RID_TYPEDEF))
4305 tree decl;
4306 /* Note that the grammar rejects storage classes
4307 in typenames, fields or parameters */
4308 if (pedantic && TREE_CODE (type) == FUNCTION_TYPE
4309 && type_quals)
4310 pedwarn ("ISO C forbids qualified function types");
4311 if (type_quals)
4312 type = c_build_qualified_type (type, type_quals);
4313 decl = build_decl (TYPE_DECL, declarator, type);
4314 if ((specbits & (1 << (int) RID_SIGNED))
4315 || (typedef_decl && C_TYPEDEF_EXPLICITLY_SIGNED (typedef_decl)))
4316 C_TYPEDEF_EXPLICITLY_SIGNED (decl) = 1;
4317 decl_attributes (&decl, returned_attrs, 0);
4318 return decl;
4321 /* Detect the case of an array type of unspecified size
4322 which came, as such, direct from a typedef name.
4323 We must copy the type, so that each identifier gets
4324 a distinct type, so that each identifier's size can be
4325 controlled separately by its own initializer. */
4327 if (type != 0 && typedef_type != 0
4328 && TREE_CODE (type) == ARRAY_TYPE && TYPE_DOMAIN (type) == 0
4329 && TYPE_MAIN_VARIANT (type) == TYPE_MAIN_VARIANT (typedef_type))
4331 type = build_array_type (TREE_TYPE (type), 0);
4332 if (size_varies)
4333 C_TYPE_VARIABLE_SIZE (type) = 1;
4336 /* If this is a type name (such as, in a cast or sizeof),
4337 compute the type and return it now. */
4339 if (decl_context == TYPENAME)
4341 /* Note that the grammar rejects storage classes
4342 in typenames, fields or parameters */
4343 if (pedantic && TREE_CODE (type) == FUNCTION_TYPE
4344 && type_quals)
4345 pedwarn ("ISO C forbids const or volatile function types");
4346 if (type_quals)
4347 type = c_build_qualified_type (type, type_quals);
4348 decl_attributes (&type, returned_attrs, 0);
4349 return type;
4352 /* Aside from typedefs and type names (handle above),
4353 `void' at top level (not within pointer)
4354 is allowed only in public variables.
4355 We don't complain about parms either, but that is because
4356 a better error message can be made later. */
4358 if (VOID_TYPE_P (type) && decl_context != PARM
4359 && ! ((decl_context != FIELD && TREE_CODE (type) != FUNCTION_TYPE)
4360 && ((specbits & (1 << (int) RID_EXTERN))
4361 || (current_binding_level == global_binding_level
4362 && !(specbits
4363 & ((1 << (int) RID_STATIC) | (1 << (int) RID_REGISTER)))))))
4365 error ("variable or field `%s' declared void", name);
4366 type = integer_type_node;
4369 /* Now create the decl, which may be a VAR_DECL, a PARM_DECL
4370 or a FUNCTION_DECL, depending on DECL_CONTEXT and TYPE. */
4373 tree decl;
4375 if (decl_context == PARM)
4377 tree type_as_written;
4378 tree promoted_type;
4380 /* A parameter declared as an array of T is really a pointer to T.
4381 One declared as a function is really a pointer to a function. */
4383 if (TREE_CODE (type) == ARRAY_TYPE)
4385 /* Transfer const-ness of array into that of type pointed to. */
4386 type = TREE_TYPE (type);
4387 if (type_quals)
4388 type = c_build_qualified_type (type, type_quals);
4389 type = build_pointer_type (type);
4390 type_quals = TYPE_UNQUALIFIED;
4391 if (array_ptr_quals)
4393 tree new_ptr_quals, new_ptr_attrs;
4394 int erred = 0;
4395 split_specs_attrs (array_ptr_quals, &new_ptr_quals, &new_ptr_attrs);
4396 /* We don't yet implement attributes in this context. */
4397 if (new_ptr_attrs != NULL_TREE)
4398 warning ("attributes in parameter array declarator ignored");
4400 constp = 0;
4401 volatilep = 0;
4402 restrictp = 0;
4403 for (; new_ptr_quals; new_ptr_quals = TREE_CHAIN (new_ptr_quals))
4405 tree qualifier = TREE_VALUE (new_ptr_quals);
4407 if (C_IS_RESERVED_WORD (qualifier))
4409 if (C_RID_CODE (qualifier) == RID_CONST)
4410 constp++;
4411 else if (C_RID_CODE (qualifier) == RID_VOLATILE)
4412 volatilep++;
4413 else if (C_RID_CODE (qualifier) == RID_RESTRICT)
4414 restrictp++;
4415 else
4416 erred++;
4418 else
4419 erred++;
4422 if (erred)
4423 error ("invalid type modifier within array declarator");
4425 type_quals = ((constp ? TYPE_QUAL_CONST : 0)
4426 | (restrictp ? TYPE_QUAL_RESTRICT : 0)
4427 | (volatilep ? TYPE_QUAL_VOLATILE : 0));
4429 size_varies = 0;
4431 else if (TREE_CODE (type) == FUNCTION_TYPE)
4433 if (pedantic && type_quals)
4434 pedwarn ("ISO C forbids qualified function types");
4435 if (type_quals)
4436 type = c_build_qualified_type (type, type_quals);
4437 type = build_pointer_type (type);
4438 type_quals = TYPE_UNQUALIFIED;
4440 else if (type_quals)
4441 type = c_build_qualified_type (type, type_quals);
4443 type_as_written = type;
4445 decl = build_decl (PARM_DECL, declarator, type);
4446 if (size_varies)
4447 C_DECL_VARIABLE_SIZE (decl) = 1;
4449 /* Compute the type actually passed in the parmlist,
4450 for the case where there is no prototype.
4451 (For example, shorts and chars are passed as ints.)
4452 When there is a prototype, this is overridden later. */
4454 if (type == error_mark_node)
4455 promoted_type = type;
4456 else
4457 promoted_type = c_type_promotes_to (type);
4459 DECL_ARG_TYPE (decl) = promoted_type;
4460 DECL_ARG_TYPE_AS_WRITTEN (decl) = type_as_written;
4462 else if (decl_context == FIELD)
4464 /* Structure field. It may not be a function. */
4466 if (TREE_CODE (type) == FUNCTION_TYPE)
4468 error ("field `%s' declared as a function", name);
4469 type = build_pointer_type (type);
4471 else if (TREE_CODE (type) != ERROR_MARK
4472 && !COMPLETE_OR_UNBOUND_ARRAY_TYPE_P (type))
4474 error ("field `%s' has incomplete type", name);
4475 type = error_mark_node;
4477 /* Move type qualifiers down to element of an array. */
4478 if (TREE_CODE (type) == ARRAY_TYPE && type_quals)
4480 type = build_array_type (c_build_qualified_type (TREE_TYPE (type),
4481 type_quals),
4482 TYPE_DOMAIN (type));
4483 #if 0
4484 /* Leave the field const or volatile as well. */
4485 type_quals = TYPE_UNQUALIFIED;
4486 #endif
4488 decl = build_decl (FIELD_DECL, declarator, type);
4489 DECL_NONADDRESSABLE_P (decl) = bitfield;
4491 if (size_varies)
4492 C_DECL_VARIABLE_SIZE (decl) = 1;
4494 else if (TREE_CODE (type) == FUNCTION_TYPE)
4496 /* Every function declaration is "external"
4497 except for those which are inside a function body
4498 in which `auto' is used.
4499 That is a case not specified by ANSI C,
4500 and we use it for forward declarations for nested functions. */
4501 int extern_ref = (!(specbits & (1 << (int) RID_AUTO))
4502 || current_binding_level == global_binding_level);
4504 if (specbits & (1 << (int) RID_AUTO)
4505 && (pedantic || current_binding_level == global_binding_level))
4506 pedwarn ("invalid storage class for function `%s'", name);
4507 if (specbits & (1 << (int) RID_REGISTER))
4508 error ("invalid storage class for function `%s'", name);
4509 if (specbits & (1 << (int) RID_THREAD))
4510 error ("invalid storage class for function `%s'", name);
4511 /* Function declaration not at top level.
4512 Storage classes other than `extern' are not allowed
4513 and `extern' makes no difference. */
4514 if (current_binding_level != global_binding_level
4515 && (specbits & ((1 << (int) RID_STATIC) | (1 << (int) RID_INLINE)))
4516 && pedantic)
4517 pedwarn ("invalid storage class for function `%s'", name);
4519 decl = build_decl (FUNCTION_DECL, declarator, type);
4520 decl = build_decl_attribute_variant (decl, decl_attr);
4522 DECL_LANG_SPECIFIC (decl) = (struct lang_decl *)
4523 ggc_alloc_cleared (sizeof (struct lang_decl));
4525 if (pedantic && type_quals && ! DECL_IN_SYSTEM_HEADER (decl))
4526 pedwarn ("ISO C forbids qualified function types");
4528 /* GNU C interprets a `volatile void' return type to indicate
4529 that the function does not return. */
4530 if ((type_quals & TYPE_QUAL_VOLATILE)
4531 && !VOID_TYPE_P (TREE_TYPE (TREE_TYPE (decl))))
4532 warning ("`noreturn' function returns non-void value");
4534 if (extern_ref)
4535 DECL_EXTERNAL (decl) = 1;
4536 /* Record absence of global scope for `static' or `auto'. */
4537 TREE_PUBLIC (decl)
4538 = !(specbits & ((1 << (int) RID_STATIC) | (1 << (int) RID_AUTO)));
4540 if (defaulted_int)
4541 C_FUNCTION_IMPLICIT_INT (decl) = 1;
4543 /* Record presence of `inline', if it is reasonable. */
4544 if (MAIN_NAME_P (declarator))
4546 if (inlinep)
4547 warning ("cannot inline function `main'");
4549 else if (inlinep)
4551 /* Assume that otherwise the function can be inlined. */
4552 DECL_DECLARED_INLINE_P (decl) = 1;
4554 /* Do not mark bare declarations as DECL_INLINE. Doing so
4555 in the presence of multiple declarations can result in
4556 the abstract origin pointing between the declarations,
4557 which will confuse dwarf2out. */
4558 if (initialized)
4560 DECL_INLINE (decl) = 1;
4561 if (specbits & (1 << (int) RID_EXTERN))
4562 current_extern_inline = 1;
4565 /* If -finline-functions, assume it can be inlined. This does
4566 two things: let the function be deferred until it is actually
4567 needed, and let dwarf2 know that the function is inlinable. */
4568 else if (flag_inline_trees == 2 && initialized)
4570 DECL_INLINE (decl) = 1;
4571 DECL_DECLARED_INLINE_P (decl) = 0;
4574 else
4576 /* It's a variable. */
4577 /* An uninitialized decl with `extern' is a reference. */
4578 int extern_ref = !initialized && (specbits & (1 << (int) RID_EXTERN));
4580 /* Move type qualifiers down to element of an array. */
4581 if (TREE_CODE (type) == ARRAY_TYPE && type_quals)
4583 int saved_align = TYPE_ALIGN(type);
4584 type = build_array_type (c_build_qualified_type (TREE_TYPE (type),
4585 type_quals),
4586 TYPE_DOMAIN (type));
4587 TYPE_ALIGN (type) = saved_align;
4588 #if 0 /* Leave the variable const or volatile as well. */
4589 type_quals = TYPE_UNQUALIFIED;
4590 #endif
4592 else if (type_quals)
4593 type = c_build_qualified_type (type, type_quals);
4595 decl = build_decl (VAR_DECL, declarator, type);
4596 if (size_varies)
4597 C_DECL_VARIABLE_SIZE (decl) = 1;
4599 if (inlinep)
4600 pedwarn_with_decl (decl, "variable `%s' declared `inline'");
4602 DECL_EXTERNAL (decl) = extern_ref;
4604 /* At top level, the presence of a `static' or `register' storage
4605 class specifier, or the absence of all storage class specifiers
4606 makes this declaration a definition (perhaps tentative). Also,
4607 the absence of both `static' and `register' makes it public. */
4608 if (current_binding_level == global_binding_level)
4610 TREE_PUBLIC (decl) = !(specbits & ((1 << (int) RID_STATIC)
4611 | (1 << (int) RID_REGISTER)));
4612 TREE_STATIC (decl) = !extern_ref;
4614 /* Not at top level, only `static' makes a static definition. */
4615 else
4617 TREE_STATIC (decl) = (specbits & (1 << (int) RID_STATIC)) != 0;
4618 TREE_PUBLIC (decl) = extern_ref;
4621 if (specbits & 1 << (int) RID_THREAD)
4623 if (targetm.have_tls)
4624 DECL_THREAD_LOCAL (decl) = 1;
4625 else
4626 /* A mere warning is sure to result in improper semantics
4627 at runtime. Don't bother to allow this to compile. */
4628 error ("thread-local storage not supported for this target");
4632 /* Record `register' declaration for warnings on &
4633 and in case doing stupid register allocation. */
4635 if (specbits & (1 << (int) RID_REGISTER))
4636 DECL_REGISTER (decl) = 1;
4638 /* Record constancy and volatility. */
4639 c_apply_type_quals_to_decl (type_quals, decl);
4641 /* If a type has volatile components, it should be stored in memory.
4642 Otherwise, the fact that those components are volatile
4643 will be ignored, and would even crash the compiler. */
4644 if (C_TYPE_FIELDS_VOLATILE (TREE_TYPE (decl)))
4645 c_mark_addressable (decl);
4647 decl_attributes (&decl, returned_attrs, 0);
4649 return decl;
4653 /* Decode the parameter-list info for a function type or function definition.
4654 The argument is the value returned by `get_parm_info' (or made in parse.y
4655 if there is an identifier list instead of a parameter decl list).
4656 These two functions are separate because when a function returns
4657 or receives functions then each is called multiple times but the order
4658 of calls is different. The last call to `grokparms' is always the one
4659 that contains the formal parameter names of a function definition.
4661 Store in `last_function_parms' a chain of the decls of parms.
4662 Also store in `last_function_parm_tags' a chain of the struct, union,
4663 and enum tags declared among the parms.
4665 Return a list of arg types to use in the FUNCTION_TYPE for this function.
4667 FUNCDEF_FLAG is nonzero for a function definition, 0 for
4668 a mere declaration. A nonempty identifier-list gets an error message
4669 when FUNCDEF_FLAG is zero. */
4671 static tree
4672 grokparms (parms_info, funcdef_flag)
4673 tree parms_info;
4674 int funcdef_flag;
4676 tree first_parm = TREE_CHAIN (parms_info);
4678 last_function_parms = TREE_PURPOSE (parms_info);
4679 last_function_parm_tags = TREE_VALUE (parms_info);
4681 if (warn_strict_prototypes && first_parm == 0 && !funcdef_flag
4682 && !in_system_header)
4683 warning ("function declaration isn't a prototype");
4685 if (first_parm != 0
4686 && TREE_CODE (TREE_VALUE (first_parm)) == IDENTIFIER_NODE)
4688 if (! funcdef_flag)
4689 pedwarn ("parameter names (without types) in function declaration");
4691 last_function_parms = first_parm;
4692 return 0;
4694 else
4696 tree parm;
4697 tree typelt;
4698 /* We no longer test FUNCDEF_FLAG.
4699 If the arg types are incomplete in a declaration,
4700 they must include undefined tags.
4701 These tags can never be defined in the scope of the declaration,
4702 so the types can never be completed,
4703 and no call can be compiled successfully. */
4704 #if 0
4705 /* In a fcn definition, arg types must be complete. */
4706 if (funcdef_flag)
4707 #endif
4708 for (parm = last_function_parms, typelt = first_parm;
4709 parm;
4710 parm = TREE_CHAIN (parm))
4711 /* Skip over any enumeration constants declared here. */
4712 if (TREE_CODE (parm) == PARM_DECL)
4714 /* Barf if the parameter itself has an incomplete type. */
4715 tree type = TREE_VALUE (typelt);
4716 if (type == error_mark_node)
4717 continue;
4718 if (!COMPLETE_TYPE_P (type))
4720 if (funcdef_flag && DECL_NAME (parm) != 0)
4721 error ("parameter `%s' has incomplete type",
4722 IDENTIFIER_POINTER (DECL_NAME (parm)));
4723 else
4724 warning ("parameter has incomplete type");
4725 if (funcdef_flag)
4727 TREE_VALUE (typelt) = error_mark_node;
4728 TREE_TYPE (parm) = error_mark_node;
4731 #if 0
4732 /* This has been replaced by parm_tags_warning, which
4733 uses a more accurate criterion for what to warn
4734 about. */
4735 else
4737 /* Now warn if is a pointer to an incomplete type. */
4738 while (TREE_CODE (type) == POINTER_TYPE
4739 || TREE_CODE (type) == REFERENCE_TYPE)
4740 type = TREE_TYPE (type);
4741 type = TYPE_MAIN_VARIANT (type);
4742 if (!COMPLETE_TYPE_P (type))
4744 if (DECL_NAME (parm) != 0)
4745 warning ("parameter `%s' points to incomplete type",
4746 IDENTIFIER_POINTER (DECL_NAME (parm)));
4747 else
4748 warning ("parameter points to incomplete type");
4751 #endif
4752 typelt = TREE_CHAIN (typelt);
4755 return first_parm;
4759 /* Return a tree_list node with info on a parameter list just parsed.
4760 The TREE_PURPOSE is a chain of decls of those parms.
4761 The TREE_VALUE is a list of structure, union and enum tags defined.
4762 The TREE_CHAIN is a list of argument types to go in the FUNCTION_TYPE.
4763 This tree_list node is later fed to `grokparms'.
4765 VOID_AT_END nonzero means append `void' to the end of the type-list.
4766 Zero means the parmlist ended with an ellipsis so don't append `void'. */
4768 tree
4769 get_parm_info (void_at_end)
4770 int void_at_end;
4772 tree decl, t;
4773 tree types = 0;
4774 int erred = 0;
4775 tree tags = gettags ();
4776 tree parms = getdecls ();
4777 tree new_parms = 0;
4778 tree order = current_binding_level->parm_order;
4780 /* Just `void' (and no ellipsis) is special. There are really no parms.
4781 But if the `void' is qualified (by `const' or `volatile') or has a
4782 storage class specifier (`register'), then the behavior is undefined;
4783 by not counting it as the special case of `void' we will cause an
4784 error later. Typedefs for `void' are OK (see DR#157). */
4785 if (void_at_end && parms != 0
4786 && TREE_CHAIN (parms) == 0
4787 && VOID_TYPE_P (TREE_TYPE (parms))
4788 && ! TREE_THIS_VOLATILE (parms)
4789 && ! TREE_READONLY (parms)
4790 && ! DECL_REGISTER (parms)
4791 && DECL_NAME (parms) == 0)
4793 parms = NULL_TREE;
4794 storedecls (NULL_TREE);
4795 return tree_cons (NULL_TREE, NULL_TREE,
4796 tree_cons (NULL_TREE, void_type_node, NULL_TREE));
4799 /* Extract enumerator values and other non-parms declared with the parms.
4800 Likewise any forward parm decls that didn't have real parm decls. */
4801 for (decl = parms; decl;)
4803 tree next = TREE_CHAIN (decl);
4805 if (TREE_CODE (decl) != PARM_DECL)
4807 TREE_CHAIN (decl) = new_parms;
4808 new_parms = decl;
4810 else if (TREE_ASM_WRITTEN (decl))
4812 error_with_decl (decl,
4813 "parameter `%s' has just a forward declaration");
4814 TREE_CHAIN (decl) = new_parms;
4815 new_parms = decl;
4817 decl = next;
4820 /* Put the parm decls back in the order they were in in the parm list. */
4821 for (t = order; t; t = TREE_CHAIN (t))
4823 if (TREE_CHAIN (t))
4824 TREE_CHAIN (TREE_VALUE (t)) = TREE_VALUE (TREE_CHAIN (t));
4825 else
4826 TREE_CHAIN (TREE_VALUE (t)) = 0;
4829 new_parms = chainon (order ? nreverse (TREE_VALUE (order)) : 0,
4830 new_parms);
4832 /* Store the parmlist in the binding level since the old one
4833 is no longer a valid list. (We have changed the chain pointers.) */
4834 storedecls (new_parms);
4836 for (decl = new_parms; decl; decl = TREE_CHAIN (decl))
4837 /* There may also be declarations for enumerators if an enumeration
4838 type is declared among the parms. Ignore them here. */
4839 if (TREE_CODE (decl) == PARM_DECL)
4841 /* Since there is a prototype,
4842 args are passed in their declared types. */
4843 tree type = TREE_TYPE (decl);
4844 DECL_ARG_TYPE (decl) = type;
4845 if (PROMOTE_PROTOTYPES
4846 && INTEGRAL_TYPE_P (type)
4847 && TYPE_PRECISION (type) < TYPE_PRECISION (integer_type_node))
4848 DECL_ARG_TYPE (decl) = integer_type_node;
4850 types = tree_cons (NULL_TREE, TREE_TYPE (decl), types);
4851 if (VOID_TYPE_P (TREE_VALUE (types)) && ! erred
4852 && DECL_NAME (decl) == 0)
4854 error ("`void' in parameter list must be the entire list");
4855 erred = 1;
4859 if (void_at_end)
4860 return tree_cons (new_parms, tags,
4861 nreverse (tree_cons (NULL_TREE, void_type_node, types)));
4863 return tree_cons (new_parms, tags, nreverse (types));
4866 /* At end of parameter list, warn about any struct, union or enum tags
4867 defined within. Do so because these types cannot ever become complete. */
4869 void
4870 parmlist_tags_warning ()
4872 tree elt;
4873 static int already;
4875 for (elt = current_binding_level->tags; elt; elt = TREE_CHAIN (elt))
4877 enum tree_code code = TREE_CODE (TREE_VALUE (elt));
4878 /* An anonymous union parm type is meaningful as a GNU extension.
4879 So don't warn for that. */
4880 if (code == UNION_TYPE && TREE_PURPOSE (elt) == 0 && !pedantic)
4881 continue;
4882 if (TREE_PURPOSE (elt) != 0)
4884 if (code == RECORD_TYPE)
4885 warning ("`struct %s' declared inside parameter list",
4886 IDENTIFIER_POINTER (TREE_PURPOSE (elt)));
4887 else if (code == UNION_TYPE)
4888 warning ("`union %s' declared inside parameter list",
4889 IDENTIFIER_POINTER (TREE_PURPOSE (elt)));
4890 else
4891 warning ("`enum %s' declared inside parameter list",
4892 IDENTIFIER_POINTER (TREE_PURPOSE (elt)));
4894 else
4896 /* For translation these need to be separate warnings */
4897 if (code == RECORD_TYPE)
4898 warning ("anonymous struct declared inside parameter list");
4899 else if (code == UNION_TYPE)
4900 warning ("anonymous union declared inside parameter list");
4901 else
4902 warning ("anonymous enum declared inside parameter list");
4904 if (! already)
4906 warning ("its scope is only this definition or declaration, which is probably not what you want");
4907 already = 1;
4912 /* Get the struct, enum or union (CODE says which) with tag NAME.
4913 Define the tag as a forward-reference if it is not defined. */
4915 tree
4916 xref_tag (code, name)
4917 enum tree_code code;
4918 tree name;
4920 /* If a cross reference is requested, look up the type
4921 already defined for this tag and return it. */
4923 tree ref = lookup_tag (code, name, current_binding_level, 0);
4924 /* If this is the right type of tag, return what we found.
4925 (This reference will be shadowed by shadow_tag later if appropriate.)
4926 If this is the wrong type of tag, do not return it. If it was the
4927 wrong type in the same binding level, we will have had an error
4928 message already; if in a different binding level and declaring
4929 a name, pending_xref_error will give an error message; but if in a
4930 different binding level and not declaring a name, this tag should
4931 shadow the previous declaration of a different type of tag, and
4932 this would not work properly if we return the reference found.
4933 (For example, with "struct foo" in an outer scope, "union foo;"
4934 must shadow that tag with a new one of union type.) */
4935 if (ref && TREE_CODE (ref) == code)
4936 return ref;
4938 /* If no such tag is yet defined, create a forward-reference node
4939 and record it as the "definition".
4940 When a real declaration of this type is found,
4941 the forward-reference will be altered into a real type. */
4943 ref = make_node (code);
4944 if (code == ENUMERAL_TYPE)
4946 /* Give the type a default layout like unsigned int
4947 to avoid crashing if it does not get defined. */
4948 TYPE_MODE (ref) = TYPE_MODE (unsigned_type_node);
4949 TYPE_ALIGN (ref) = TYPE_ALIGN (unsigned_type_node);
4950 TYPE_USER_ALIGN (ref) = 0;
4951 TREE_UNSIGNED (ref) = 1;
4952 TYPE_PRECISION (ref) = TYPE_PRECISION (unsigned_type_node);
4953 TYPE_MIN_VALUE (ref) = TYPE_MIN_VALUE (unsigned_type_node);
4954 TYPE_MAX_VALUE (ref) = TYPE_MAX_VALUE (unsigned_type_node);
4957 pushtag (name, ref);
4959 return ref;
4962 /* Make sure that the tag NAME is defined *in the current binding level*
4963 at least as a forward reference.
4964 CODE says which kind of tag NAME ought to be. */
4966 tree
4967 start_struct (code, name)
4968 enum tree_code code;
4969 tree name;
4971 /* If there is already a tag defined at this binding level
4972 (as a forward reference), just return it. */
4974 tree ref = 0;
4976 if (name != 0)
4977 ref = lookup_tag (code, name, current_binding_level, 1);
4978 if (ref && TREE_CODE (ref) == code)
4980 if (TYPE_FIELDS (ref))
4982 if (code == UNION_TYPE)
4983 error ("redefinition of `union %s'", IDENTIFIER_POINTER (name));
4984 else
4985 error ("redefinition of `struct %s'", IDENTIFIER_POINTER (name));
4988 else
4990 /* Otherwise create a forward-reference just so the tag is in scope. */
4992 ref = make_node (code);
4993 pushtag (name, ref);
4996 C_TYPE_BEING_DEFINED (ref) = 1;
4997 TYPE_PACKED (ref) = flag_pack_struct;
4998 return ref;
5001 /* Process the specs, declarator (NULL if omitted) and width (NULL if omitted)
5002 of a structure component, returning a FIELD_DECL node.
5003 WIDTH is non-NULL for bit fields only, and is an INTEGER_CST node.
5005 This is done during the parsing of the struct declaration.
5006 The FIELD_DECL nodes are chained together and the lot of them
5007 are ultimately passed to `build_struct' to make the RECORD_TYPE node. */
5009 tree
5010 grokfield (filename, line, declarator, declspecs, width)
5011 const char *filename ATTRIBUTE_UNUSED;
5012 int line ATTRIBUTE_UNUSED;
5013 tree declarator, declspecs, width;
5015 tree value;
5017 if (declarator == NULL_TREE && width == NULL_TREE)
5019 /* This is an unnamed decl.
5021 If we have something of the form "union { list } ;" then this
5022 is the anonymous union extension. Similarly for struct.
5024 If this is something of the form "struct foo;", then
5025 If MS extensions are enabled, this is handled as an
5026 anonymous struct.
5027 Otherwise this is a forward declaration of a structure tag.
5029 If this is something of the form "foo;" and foo is a TYPE_DECL, then
5030 If MS extensions are enabled and foo names a structure, then
5031 again this is an anonymous struct.
5032 Otherwise this is an error.
5034 Oh what a horrid tangled web we weave. I wonder if MS consciously
5035 took this from Plan 9 or if it was an accident of implementation
5036 that took root before someone noticed the bug... */
5038 tree type = TREE_VALUE (declspecs);
5040 if (flag_ms_extensions && TREE_CODE (type) == TYPE_DECL)
5041 type = TREE_TYPE (type);
5042 if (TREE_CODE (type) == RECORD_TYPE || TREE_CODE (type) == UNION_TYPE)
5044 if (flag_ms_extensions)
5045 ; /* ok */
5046 else if (flag_iso)
5047 goto warn_unnamed_field;
5048 else if (TYPE_NAME (type) == NULL)
5049 ; /* ok */
5050 else
5051 goto warn_unnamed_field;
5053 else
5055 warn_unnamed_field:
5056 warning ("declaration does not declare anything");
5057 return NULL_TREE;
5061 value = grokdeclarator (declarator, declspecs, width ? BITFIELD : FIELD, 0);
5063 finish_decl (value, NULL_TREE, NULL_TREE);
5064 DECL_INITIAL (value) = width;
5066 if (flag_objc)
5067 objc_check_decl (value);
5068 return value;
5071 /* Fill in the fields of a RECORD_TYPE or UNION_TYPE node, T.
5072 FIELDLIST is a chain of FIELD_DECL nodes for the fields.
5073 ATTRIBUTES are attributes to be applied to the structure. */
5075 tree
5076 finish_struct (t, fieldlist, attributes)
5077 tree t;
5078 tree fieldlist;
5079 tree attributes;
5081 tree x;
5082 int toplevel = global_binding_level == current_binding_level;
5083 int saw_named_field;
5085 /* If this type was previously laid out as a forward reference,
5086 make sure we lay it out again. */
5088 TYPE_SIZE (t) = 0;
5090 decl_attributes (&t, attributes, (int) ATTR_FLAG_TYPE_IN_PLACE);
5092 /* Nameless union parm types are useful as GCC extension. */
5093 if (! (TREE_CODE (t) == UNION_TYPE && TYPE_NAME (t) == 0) && !pedantic)
5094 /* Otherwise, warn about any struct or union def. in parmlist. */
5095 if (in_parm_level_p ())
5097 if (pedantic)
5098 pedwarn ("%s defined inside parms",
5099 TREE_CODE (t) == UNION_TYPE ? _("union") : _("structure"));
5100 else
5101 warning ("%s defined inside parms",
5102 TREE_CODE (t) == UNION_TYPE ? _("union") : _("structure"));
5105 if (pedantic)
5107 for (x = fieldlist; x; x = TREE_CHAIN (x))
5108 if (DECL_NAME (x) != 0)
5109 break;
5111 if (x == 0)
5112 pedwarn ("%s has no %s",
5113 TREE_CODE (t) == UNION_TYPE ? _("union") : _("struct"),
5114 fieldlist ? _("named members") : _("members"));
5117 /* Install struct as DECL_CONTEXT of each field decl.
5118 Also process specified field sizes,m which is found in the DECL_INITIAL.
5119 Store 0 there, except for ": 0" fields (so we can find them
5120 and delete them, below). */
5122 saw_named_field = 0;
5123 for (x = fieldlist; x; x = TREE_CHAIN (x))
5125 DECL_CONTEXT (x) = t;
5126 DECL_PACKED (x) |= TYPE_PACKED (t);
5128 /* If any field is const, the structure type is pseudo-const. */
5129 if (TREE_READONLY (x))
5130 C_TYPE_FIELDS_READONLY (t) = 1;
5131 else
5133 /* A field that is pseudo-const makes the structure likewise. */
5134 tree t1 = TREE_TYPE (x);
5135 while (TREE_CODE (t1) == ARRAY_TYPE)
5136 t1 = TREE_TYPE (t1);
5137 if ((TREE_CODE (t1) == RECORD_TYPE || TREE_CODE (t1) == UNION_TYPE)
5138 && C_TYPE_FIELDS_READONLY (t1))
5139 C_TYPE_FIELDS_READONLY (t) = 1;
5142 /* Any field that is volatile means variables of this type must be
5143 treated in some ways as volatile. */
5144 if (TREE_THIS_VOLATILE (x))
5145 C_TYPE_FIELDS_VOLATILE (t) = 1;
5147 /* Any field of nominal variable size implies structure is too. */
5148 if (C_DECL_VARIABLE_SIZE (x))
5149 C_TYPE_VARIABLE_SIZE (t) = 1;
5151 /* Detect invalid nested redefinition. */
5152 if (TREE_TYPE (x) == t)
5153 error ("nested redefinition of `%s'",
5154 IDENTIFIER_POINTER (TYPE_NAME (t)));
5156 /* Detect invalid bit-field size. */
5157 if (DECL_INITIAL (x))
5158 STRIP_NOPS (DECL_INITIAL (x));
5159 if (DECL_INITIAL (x))
5161 if (TREE_CODE (DECL_INITIAL (x)) == INTEGER_CST)
5162 constant_expression_warning (DECL_INITIAL (x));
5163 else
5165 error_with_decl (x,
5166 "bit-field `%s' width not an integer constant");
5167 DECL_INITIAL (x) = NULL;
5171 /* Detect invalid bit-field type. */
5172 if (DECL_INITIAL (x)
5173 && TREE_CODE (TREE_TYPE (x)) != INTEGER_TYPE
5174 && TREE_CODE (TREE_TYPE (x)) != BOOLEAN_TYPE
5175 && TREE_CODE (TREE_TYPE (x)) != ENUMERAL_TYPE)
5177 error_with_decl (x, "bit-field `%s' has invalid type");
5178 DECL_INITIAL (x) = NULL;
5181 if (DECL_INITIAL (x) && pedantic
5182 && TYPE_MAIN_VARIANT (TREE_TYPE (x)) != integer_type_node
5183 && TYPE_MAIN_VARIANT (TREE_TYPE (x)) != unsigned_type_node
5184 && TYPE_MAIN_VARIANT (TREE_TYPE (x)) != c_bool_type_node
5185 /* Accept an enum that's equivalent to int or unsigned int. */
5186 && !(TREE_CODE (TREE_TYPE (x)) == ENUMERAL_TYPE
5187 && (TYPE_PRECISION (TREE_TYPE (x))
5188 == TYPE_PRECISION (integer_type_node))))
5189 pedwarn_with_decl (x, "bit-field `%s' type invalid in ISO C");
5191 /* Detect and ignore out of range field width and process valid
5192 field widths. */
5193 if (DECL_INITIAL (x))
5195 int max_width
5196 = (TYPE_MAIN_VARIANT (TREE_TYPE (x)) == c_bool_type_node
5197 ? CHAR_TYPE_SIZE : TYPE_PRECISION (TREE_TYPE (x)));
5199 if (tree_int_cst_sgn (DECL_INITIAL (x)) < 0)
5200 error_with_decl (x, "negative width in bit-field `%s'");
5201 else if (0 < compare_tree_int (DECL_INITIAL (x), max_width))
5202 pedwarn_with_decl (x, "width of `%s' exceeds its type");
5203 else if (integer_zerop (DECL_INITIAL (x)) && DECL_NAME (x) != 0)
5204 error_with_decl (x, "zero width for bit-field `%s'");
5205 else
5207 /* The test above has assured us that TREE_INT_CST_HIGH is 0. */
5208 unsigned HOST_WIDE_INT width
5209 = tree_low_cst (DECL_INITIAL (x), 1);
5211 if (TREE_CODE (TREE_TYPE (x)) == ENUMERAL_TYPE
5212 && (width < min_precision (TYPE_MIN_VALUE (TREE_TYPE (x)),
5213 TREE_UNSIGNED (TREE_TYPE (x)))
5214 || (width
5215 < min_precision (TYPE_MAX_VALUE (TREE_TYPE (x)),
5216 TREE_UNSIGNED (TREE_TYPE (x))))))
5217 warning_with_decl (x,
5218 "`%s' is narrower than values of its type");
5220 DECL_SIZE (x) = bitsize_int (width);
5221 DECL_BIT_FIELD (x) = 1;
5222 SET_DECL_C_BIT_FIELD (x);
5224 if (width == 0
5225 && ! (* targetm.ms_bitfield_layout_p) (t))
5227 /* field size 0 => force desired amount of alignment. */
5228 #ifdef EMPTY_FIELD_BOUNDARY
5229 DECL_ALIGN (x) = MAX (DECL_ALIGN (x), EMPTY_FIELD_BOUNDARY);
5230 #endif
5231 #ifdef PCC_BITFIELD_TYPE_MATTERS
5232 if (PCC_BITFIELD_TYPE_MATTERS)
5234 DECL_ALIGN (x) = MAX (DECL_ALIGN (x),
5235 TYPE_ALIGN (TREE_TYPE (x)));
5236 DECL_USER_ALIGN (x) |= TYPE_USER_ALIGN (TREE_TYPE (x));
5238 #endif
5243 else if (TREE_TYPE (x) != error_mark_node)
5245 unsigned int min_align = (DECL_PACKED (x) ? BITS_PER_UNIT
5246 : TYPE_ALIGN (TREE_TYPE (x)));
5248 /* Non-bit-fields are aligned for their type, except packed
5249 fields which require only BITS_PER_UNIT alignment. */
5250 DECL_ALIGN (x) = MAX (DECL_ALIGN (x), min_align);
5251 if (! DECL_PACKED (x))
5252 DECL_USER_ALIGN (x) |= TYPE_USER_ALIGN (TREE_TYPE (x));
5255 DECL_INITIAL (x) = 0;
5257 /* Detect flexible array member in an invalid context. */
5258 if (TREE_CODE (TREE_TYPE (x)) == ARRAY_TYPE
5259 && TYPE_SIZE (TREE_TYPE (x)) == NULL_TREE
5260 && TYPE_DOMAIN (TREE_TYPE (x)) != NULL_TREE
5261 && TYPE_MAX_VALUE (TYPE_DOMAIN (TREE_TYPE (x))) == NULL_TREE)
5263 if (TREE_CODE (t) == UNION_TYPE)
5264 error_with_decl (x, "flexible array member in union");
5265 else if (TREE_CHAIN (x) != NULL_TREE)
5266 error_with_decl (x, "flexible array member not at end of struct");
5267 else if (! saw_named_field)
5268 error_with_decl (x, "flexible array member in otherwise empty struct");
5271 if (pedantic && TREE_CODE (t) == RECORD_TYPE
5272 && flexible_array_type_p (TREE_TYPE (x)))
5273 pedwarn_with_decl (x, "invalid use of structure with flexible array member");
5275 if (DECL_NAME (x))
5276 saw_named_field = 1;
5279 /* Delete all duplicate fields from the fieldlist */
5280 for (x = fieldlist; x && TREE_CHAIN (x);)
5281 /* Anonymous fields aren't duplicates. */
5282 if (DECL_NAME (TREE_CHAIN (x)) == 0)
5283 x = TREE_CHAIN (x);
5284 else
5286 tree y = fieldlist;
5288 while (1)
5290 if (DECL_NAME (y) == DECL_NAME (TREE_CHAIN (x)))
5291 break;
5292 if (y == x)
5293 break;
5294 y = TREE_CHAIN (y);
5296 if (DECL_NAME (y) == DECL_NAME (TREE_CHAIN (x)))
5298 error_with_decl (TREE_CHAIN (x), "duplicate member `%s'");
5299 TREE_CHAIN (x) = TREE_CHAIN (TREE_CHAIN (x));
5301 else
5302 x = TREE_CHAIN (x);
5305 /* Now we have the nearly final fieldlist. Record it,
5306 then lay out the structure or union (including the fields). */
5308 TYPE_FIELDS (t) = fieldlist;
5310 layout_type (t);
5312 /* Delete all zero-width bit-fields from the fieldlist */
5314 tree *fieldlistp = &fieldlist;
5315 while (*fieldlistp)
5316 if (TREE_CODE (*fieldlistp) == FIELD_DECL && DECL_INITIAL (*fieldlistp))
5317 *fieldlistp = TREE_CHAIN (*fieldlistp);
5318 else
5319 fieldlistp = &TREE_CHAIN (*fieldlistp);
5322 /* Now we have the truly final field list.
5323 Store it in this type and in the variants. */
5325 TYPE_FIELDS (t) = fieldlist;
5327 for (x = TYPE_MAIN_VARIANT (t); x; x = TYPE_NEXT_VARIANT (x))
5329 TYPE_FIELDS (x) = TYPE_FIELDS (t);
5330 TYPE_LANG_SPECIFIC (x) = TYPE_LANG_SPECIFIC (t);
5331 TYPE_ALIGN (x) = TYPE_ALIGN (t);
5332 TYPE_USER_ALIGN (x) = TYPE_USER_ALIGN (t);
5335 /* If this was supposed to be a transparent union, but we can't
5336 make it one, warn and turn off the flag. */
5337 if (TREE_CODE (t) == UNION_TYPE
5338 && TYPE_TRANSPARENT_UNION (t)
5339 && TYPE_MODE (t) != DECL_MODE (TYPE_FIELDS (t)))
5341 TYPE_TRANSPARENT_UNION (t) = 0;
5342 warning ("union cannot be made transparent");
5345 /* If this structure or union completes the type of any previous
5346 variable declaration, lay it out and output its rtl. */
5348 if (current_binding_level->incomplete_list != NULL_TREE)
5350 tree prev = NULL_TREE;
5352 for (x = current_binding_level->incomplete_list; x; x = TREE_CHAIN (x))
5354 tree decl = TREE_VALUE (x);
5356 if (TYPE_MAIN_VARIANT (TREE_TYPE (decl)) == TYPE_MAIN_VARIANT (t)
5357 && TREE_CODE (decl) != TYPE_DECL)
5359 layout_decl (decl, 0);
5360 /* This is a no-op in c-lang.c or something real in objc-act.c. */
5361 if (flag_objc)
5362 objc_check_decl (decl);
5363 rest_of_decl_compilation (decl, NULL, toplevel, 0);
5364 if (! toplevel)
5365 expand_decl (decl);
5366 /* Unlink X from the incomplete list. */
5367 if (prev)
5368 TREE_CHAIN (prev) = TREE_CHAIN (x);
5369 else
5370 current_binding_level->incomplete_list = TREE_CHAIN (x);
5372 else if (!COMPLETE_TYPE_P (TREE_TYPE (decl))
5373 && TREE_CODE (TREE_TYPE (decl)) == ARRAY_TYPE)
5375 tree element = TREE_TYPE (decl);
5376 while (TREE_CODE (element) == ARRAY_TYPE)
5377 element = TREE_TYPE (element);
5378 if (element == t)
5380 layout_array_type (TREE_TYPE (decl));
5381 if (TREE_CODE (decl) != TYPE_DECL)
5383 layout_decl (decl, 0);
5384 if (flag_objc)
5385 objc_check_decl (decl);
5386 rest_of_decl_compilation (decl, NULL, toplevel, 0);
5387 if (! toplevel)
5388 expand_decl (decl);
5390 /* Unlink X from the incomplete list. */
5391 if (prev)
5392 TREE_CHAIN (prev) = TREE_CHAIN (x);
5393 else
5394 current_binding_level->incomplete_list = TREE_CHAIN (x);
5400 /* Finish debugging output for this type. */
5401 rest_of_type_compilation (t, toplevel);
5403 return t;
5406 /* Lay out the type T, and its element type, and so on. */
5408 static void
5409 layout_array_type (t)
5410 tree t;
5412 if (TREE_CODE (TREE_TYPE (t)) == ARRAY_TYPE)
5413 layout_array_type (TREE_TYPE (t));
5414 layout_type (t);
5417 /* Begin compiling the definition of an enumeration type.
5418 NAME is its name (or null if anonymous).
5419 Returns the type object, as yet incomplete.
5420 Also records info about it so that build_enumerator
5421 may be used to declare the individual values as they are read. */
5423 tree
5424 start_enum (name)
5425 tree name;
5427 tree enumtype = 0;
5429 /* If this is the real definition for a previous forward reference,
5430 fill in the contents in the same object that used to be the
5431 forward reference. */
5433 if (name != 0)
5434 enumtype = lookup_tag (ENUMERAL_TYPE, name, current_binding_level, 1);
5436 if (enumtype == 0 || TREE_CODE (enumtype) != ENUMERAL_TYPE)
5438 enumtype = make_node (ENUMERAL_TYPE);
5439 pushtag (name, enumtype);
5442 C_TYPE_BEING_DEFINED (enumtype) = 1;
5444 if (TYPE_VALUES (enumtype) != 0)
5446 /* This enum is a named one that has been declared already. */
5447 error ("redeclaration of `enum %s'", IDENTIFIER_POINTER (name));
5449 /* Completely replace its old definition.
5450 The old enumerators remain defined, however. */
5451 TYPE_VALUES (enumtype) = 0;
5454 enum_next_value = integer_zero_node;
5455 enum_overflow = 0;
5457 if (flag_short_enums)
5458 TYPE_PACKED (enumtype) = 1;
5460 return enumtype;
5463 /* After processing and defining all the values of an enumeration type,
5464 install their decls in the enumeration type and finish it off.
5465 ENUMTYPE is the type object, VALUES a list of decl-value pairs,
5466 and ATTRIBUTES are the specified attributes.
5467 Returns ENUMTYPE. */
5469 tree
5470 finish_enum (enumtype, values, attributes)
5471 tree enumtype;
5472 tree values;
5473 tree attributes;
5475 tree pair, tem;
5476 tree minnode = 0, maxnode = 0, enum_value_type;
5477 int precision, unsign;
5478 int toplevel = (global_binding_level == current_binding_level);
5480 if (in_parm_level_p ())
5481 warning ("enum defined inside parms");
5483 decl_attributes (&enumtype, attributes, (int) ATTR_FLAG_TYPE_IN_PLACE);
5485 /* Calculate the maximum value of any enumerator in this type. */
5487 if (values == error_mark_node)
5488 minnode = maxnode = integer_zero_node;
5489 else
5491 minnode = maxnode = TREE_VALUE (values);
5492 for (pair = TREE_CHAIN (values); pair; pair = TREE_CHAIN (pair))
5494 tree value = TREE_VALUE (pair);
5495 if (tree_int_cst_lt (maxnode, value))
5496 maxnode = value;
5497 if (tree_int_cst_lt (value, minnode))
5498 minnode = value;
5502 /* Construct the final type of this enumeration. It is the same
5503 as one of the integral types - the narrowest one that fits, except
5504 that normally we only go as narrow as int - and signed iff any of
5505 the values are negative. */
5506 unsign = (tree_int_cst_sgn (minnode) >= 0);
5507 precision = MAX (min_precision (minnode, unsign),
5508 min_precision (maxnode, unsign));
5509 if (TYPE_PACKED (enumtype) || precision > TYPE_PRECISION (integer_type_node))
5511 tree narrowest = c_common_type_for_size (precision, unsign);
5512 if (narrowest == 0)
5514 warning ("enumeration values exceed range of largest integer");
5515 narrowest = long_long_integer_type_node;
5518 precision = TYPE_PRECISION (narrowest);
5520 else
5521 precision = TYPE_PRECISION (integer_type_node);
5523 if (precision == TYPE_PRECISION (integer_type_node))
5524 enum_value_type = c_common_type_for_size (precision, 0);
5525 else
5526 enum_value_type = enumtype;
5528 TYPE_MIN_VALUE (enumtype) = minnode;
5529 TYPE_MAX_VALUE (enumtype) = maxnode;
5530 TYPE_PRECISION (enumtype) = precision;
5531 TREE_UNSIGNED (enumtype) = unsign;
5532 TYPE_SIZE (enumtype) = 0;
5533 layout_type (enumtype);
5535 if (values != error_mark_node)
5537 /* Change the type of the enumerators to be the enum type. We
5538 need to do this irrespective of the size of the enum, for
5539 proper type checking. Replace the DECL_INITIALs of the
5540 enumerators, and the value slots of the list, with copies
5541 that have the enum type; they cannot be modified in place
5542 because they may be shared (e.g. integer_zero_node) Finally,
5543 change the purpose slots to point to the names of the decls. */
5544 for (pair = values; pair; pair = TREE_CHAIN (pair))
5546 tree enu = TREE_PURPOSE (pair);
5548 TREE_TYPE (enu) = enumtype;
5549 DECL_SIZE (enu) = TYPE_SIZE (enumtype);
5550 DECL_SIZE_UNIT (enu) = TYPE_SIZE_UNIT (enumtype);
5551 DECL_ALIGN (enu) = TYPE_ALIGN (enumtype);
5552 DECL_USER_ALIGN (enu) = TYPE_USER_ALIGN (enumtype);
5553 DECL_MODE (enu) = TYPE_MODE (enumtype);
5555 /* The ISO C Standard mandates enumerators to have type int,
5556 even though the underlying type of an enum type is
5557 unspecified. Here we convert any enumerators that fit in
5558 an int to type int, to avoid promotions to unsigned types
5559 when comparing integers with enumerators that fit in the
5560 int range. When -pedantic is given, build_enumerator()
5561 would have already taken care of those that don't fit. */
5562 if (int_fits_type_p (DECL_INITIAL (enu), enum_value_type))
5563 DECL_INITIAL (enu) = convert (enum_value_type, DECL_INITIAL (enu));
5564 else
5565 DECL_INITIAL (enu) = convert (enumtype, DECL_INITIAL (enu));
5567 TREE_PURPOSE (pair) = DECL_NAME (enu);
5568 TREE_VALUE (pair) = DECL_INITIAL (enu);
5571 TYPE_VALUES (enumtype) = values;
5574 /* Fix up all variant types of this enum type. */
5575 for (tem = TYPE_MAIN_VARIANT (enumtype); tem; tem = TYPE_NEXT_VARIANT (tem))
5577 if (tem == enumtype)
5578 continue;
5579 TYPE_VALUES (tem) = TYPE_VALUES (enumtype);
5580 TYPE_MIN_VALUE (tem) = TYPE_MIN_VALUE (enumtype);
5581 TYPE_MAX_VALUE (tem) = TYPE_MAX_VALUE (enumtype);
5582 TYPE_SIZE (tem) = TYPE_SIZE (enumtype);
5583 TYPE_SIZE_UNIT (tem) = TYPE_SIZE_UNIT (enumtype);
5584 TYPE_MODE (tem) = TYPE_MODE (enumtype);
5585 TYPE_PRECISION (tem) = TYPE_PRECISION (enumtype);
5586 TYPE_ALIGN (tem) = TYPE_ALIGN (enumtype);
5587 TYPE_USER_ALIGN (tem) = TYPE_USER_ALIGN (enumtype);
5588 TREE_UNSIGNED (tem) = TREE_UNSIGNED (enumtype);
5591 /* Finish debugging output for this type. */
5592 rest_of_type_compilation (enumtype, toplevel);
5594 return enumtype;
5597 /* Build and install a CONST_DECL for one value of the
5598 current enumeration type (one that was begun with start_enum).
5599 Return a tree-list containing the CONST_DECL and its value.
5600 Assignment of sequential values by default is handled here. */
5602 tree
5603 build_enumerator (name, value)
5604 tree name, value;
5606 tree decl, type;
5608 /* Validate and default VALUE. */
5610 /* Remove no-op casts from the value. */
5611 if (value)
5612 STRIP_TYPE_NOPS (value);
5614 if (value != 0)
5616 if (TREE_CODE (value) == INTEGER_CST)
5618 value = default_conversion (value);
5619 constant_expression_warning (value);
5621 else
5623 error ("enumerator value for `%s' not integer constant",
5624 IDENTIFIER_POINTER (name));
5625 value = 0;
5629 /* Default based on previous value. */
5630 /* It should no longer be possible to have NON_LVALUE_EXPR
5631 in the default. */
5632 if (value == 0)
5634 value = enum_next_value;
5635 if (enum_overflow)
5636 error ("overflow in enumeration values");
5639 if (pedantic && ! int_fits_type_p (value, integer_type_node))
5641 pedwarn ("ISO C restricts enumerator values to range of `int'");
5642 value = convert (integer_type_node, value);
5645 /* Set basis for default for next value. */
5646 enum_next_value = build_binary_op (PLUS_EXPR, value, integer_one_node, 0);
5647 enum_overflow = tree_int_cst_lt (enum_next_value, value);
5649 /* Now create a declaration for the enum value name. */
5651 type = TREE_TYPE (value);
5652 type = c_common_type_for_size (MAX (TYPE_PRECISION (type),
5653 TYPE_PRECISION (integer_type_node)),
5654 (TYPE_PRECISION (type)
5655 >= TYPE_PRECISION (integer_type_node)
5656 && TREE_UNSIGNED (type)));
5658 decl = build_decl (CONST_DECL, name, type);
5659 DECL_INITIAL (decl) = convert (type, value);
5660 pushdecl (decl);
5662 return tree_cons (decl, value, NULL_TREE);
5666 /* Create the FUNCTION_DECL for a function definition.
5667 DECLSPECS, DECLARATOR and ATTRIBUTES are the parts of
5668 the declaration; they describe the function's name and the type it returns,
5669 but twisted together in a fashion that parallels the syntax of C.
5671 This function creates a binding context for the function body
5672 as well as setting up the FUNCTION_DECL in current_function_decl.
5674 Returns 1 on success. If the DECLARATOR is not suitable for a function
5675 (it defines a datum instead), we return 0, which tells
5676 yyparse to report a parse error. */
5679 start_function (declspecs, declarator, attributes)
5680 tree declarator, declspecs, attributes;
5682 tree decl1, old_decl;
5683 tree restype;
5684 int old_immediate_size_expand = immediate_size_expand;
5686 current_function_returns_value = 0; /* Assume, until we see it does. */
5687 current_function_returns_null = 0;
5688 current_function_returns_abnormally = 0;
5689 warn_about_return_type = 0;
5690 current_extern_inline = 0;
5691 named_labels = 0;
5692 shadowed_labels = 0;
5694 /* Don't expand any sizes in the return type of the function. */
5695 immediate_size_expand = 0;
5697 decl1 = grokdeclarator (declarator, declspecs, FUNCDEF, 1);
5699 /* If the declarator is not suitable for a function definition,
5700 cause a syntax error. */
5701 if (decl1 == 0)
5703 immediate_size_expand = old_immediate_size_expand;
5704 return 0;
5707 decl_attributes (&decl1, attributes, 0);
5709 /* If #pragma weak was used, mark the decl weak now. */
5710 if (current_binding_level == global_binding_level)
5711 maybe_apply_pragma_weak (decl1);
5713 if (DECL_DECLARED_INLINE_P (decl1)
5714 && DECL_UNINLINABLE (decl1)
5715 && lookup_attribute ("noinline", DECL_ATTRIBUTES (decl1)))
5716 warning_with_decl (decl1,
5717 "inline function `%s' given attribute noinline");
5719 announce_function (decl1);
5721 if (!COMPLETE_OR_VOID_TYPE_P (TREE_TYPE (TREE_TYPE (decl1))))
5723 error ("return type is an incomplete type");
5724 /* Make it return void instead. */
5725 TREE_TYPE (decl1)
5726 = build_function_type (void_type_node,
5727 TYPE_ARG_TYPES (TREE_TYPE (decl1)));
5730 if (warn_about_return_type)
5731 pedwarn_c99 ("return type defaults to `int'");
5733 /* Save the parm names or decls from this function's declarator
5734 where store_parm_decls will find them. */
5735 current_function_parms = last_function_parms;
5736 current_function_parm_tags = last_function_parm_tags;
5738 /* Make the init_value nonzero so pushdecl knows this is not tentative.
5739 error_mark_node is replaced below (in poplevel) with the BLOCK. */
5740 DECL_INITIAL (decl1) = error_mark_node;
5742 /* If this definition isn't a prototype and we had a prototype declaration
5743 before, copy the arg type info from that prototype.
5744 But not if what we had before was a builtin function. */
5745 old_decl = lookup_name_current_level (DECL_NAME (decl1));
5746 if (old_decl != 0 && TREE_CODE (TREE_TYPE (old_decl)) == FUNCTION_TYPE
5747 && !DECL_BUILT_IN (old_decl)
5748 && (TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (decl1)))
5749 == TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (old_decl))))
5750 && TYPE_ARG_TYPES (TREE_TYPE (decl1)) == 0)
5752 TREE_TYPE (decl1) = TREE_TYPE (old_decl);
5753 current_function_prototype_file = DECL_SOURCE_FILE (old_decl);
5754 current_function_prototype_line = DECL_SOURCE_LINE (old_decl);
5757 /* If there is no explicit declaration, look for any out-of-scope implicit
5758 declarations. */
5759 if (old_decl == 0)
5760 old_decl = IDENTIFIER_IMPLICIT_DECL (DECL_NAME (decl1));
5762 /* Optionally warn of old-fashioned def with no previous prototype. */
5763 if (warn_strict_prototypes
5764 && TYPE_ARG_TYPES (TREE_TYPE (decl1)) == 0
5765 && !(old_decl != 0
5766 && (TYPE_ARG_TYPES (TREE_TYPE (old_decl)) != 0
5767 || (DECL_BUILT_IN (old_decl)
5768 && ! C_DECL_ANTICIPATED (old_decl)))))
5769 warning ("function declaration isn't a prototype");
5770 /* Optionally warn of any global def with no previous prototype. */
5771 else if (warn_missing_prototypes
5772 && TREE_PUBLIC (decl1)
5773 && !(old_decl != 0
5774 && (TYPE_ARG_TYPES (TREE_TYPE (old_decl)) != 0
5775 || (DECL_BUILT_IN (old_decl)
5776 && ! C_DECL_ANTICIPATED (old_decl))))
5777 && ! MAIN_NAME_P (DECL_NAME (decl1)))
5778 warning_with_decl (decl1, "no previous prototype for `%s'");
5779 /* Optionally warn of any def with no previous prototype
5780 if the function has already been used. */
5781 else if (warn_missing_prototypes
5782 && old_decl != 0 && TREE_USED (old_decl)
5783 && TYPE_ARG_TYPES (TREE_TYPE (old_decl)) == 0)
5784 warning_with_decl (decl1,
5785 "`%s' was used with no prototype before its definition");
5786 /* Optionally warn of any global def with no previous declaration. */
5787 else if (warn_missing_declarations
5788 && TREE_PUBLIC (decl1)
5789 && old_decl == 0
5790 && ! MAIN_NAME_P (DECL_NAME (decl1)))
5791 warning_with_decl (decl1, "no previous declaration for `%s'");
5792 /* Optionally warn of any def with no previous declaration
5793 if the function has already been used. */
5794 else if (warn_missing_declarations
5795 && old_decl != 0 && TREE_USED (old_decl)
5796 && old_decl == IDENTIFIER_IMPLICIT_DECL (DECL_NAME (decl1)))
5797 warning_with_decl (decl1,
5798 "`%s' was used with no declaration before its definition");
5800 /* This is a definition, not a reference.
5801 So normally clear DECL_EXTERNAL.
5802 However, `extern inline' acts like a declaration
5803 except for defining how to inline. So set DECL_EXTERNAL in that case. */
5804 DECL_EXTERNAL (decl1) = current_extern_inline;
5806 /* This function exists in static storage.
5807 (This does not mean `static' in the C sense!) */
5808 TREE_STATIC (decl1) = 1;
5810 /* A nested function is not global. */
5811 if (current_function_decl != 0)
5812 TREE_PUBLIC (decl1) = 0;
5814 /* Warn for unlikely, improbable, or stupid declarations of `main'. */
5815 if (warn_main > 0 && MAIN_NAME_P (DECL_NAME (decl1)))
5817 tree args;
5818 int argct = 0;
5820 if (TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (decl1)))
5821 != integer_type_node)
5822 pedwarn_with_decl (decl1, "return type of `%s' is not `int'");
5824 for (args = TYPE_ARG_TYPES (TREE_TYPE (decl1)); args;
5825 args = TREE_CHAIN (args))
5827 tree type = args ? TREE_VALUE (args) : 0;
5829 if (type == void_type_node)
5830 break;
5832 ++argct;
5833 switch (argct)
5835 case 1:
5836 if (TYPE_MAIN_VARIANT (type) != integer_type_node)
5837 pedwarn_with_decl (decl1,
5838 "first argument of `%s' should be `int'");
5839 break;
5841 case 2:
5842 if (TREE_CODE (type) != POINTER_TYPE
5843 || TREE_CODE (TREE_TYPE (type)) != POINTER_TYPE
5844 || (TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (type)))
5845 != char_type_node))
5846 pedwarn_with_decl (decl1,
5847 "second argument of `%s' should be `char **'");
5848 break;
5850 case 3:
5851 if (TREE_CODE (type) != POINTER_TYPE
5852 || TREE_CODE (TREE_TYPE (type)) != POINTER_TYPE
5853 || (TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (type)))
5854 != char_type_node))
5855 pedwarn_with_decl (decl1,
5856 "third argument of `%s' should probably be `char **'");
5857 break;
5861 /* It is intentional that this message does not mention the third
5862 argument because it's only mentioned in an appendix of the
5863 standard. */
5864 if (argct > 0 && (argct < 2 || argct > 3))
5865 pedwarn_with_decl (decl1, "`%s' takes only zero or two arguments");
5867 if (! TREE_PUBLIC (decl1))
5868 pedwarn_with_decl (decl1, "`%s' is normally a non-static function");
5871 /* Record the decl so that the function name is defined.
5872 If we already have a decl for this name, and it is a FUNCTION_DECL,
5873 use the old decl. */
5875 current_function_decl = pushdecl (decl1);
5877 pushlevel (0);
5878 declare_parm_level (1);
5879 current_binding_level->subblocks_tag_transparent = 1;
5881 make_decl_rtl (current_function_decl, NULL);
5883 restype = TREE_TYPE (TREE_TYPE (current_function_decl));
5884 /* Promote the value to int before returning it. */
5885 if (c_promoting_integer_type_p (restype))
5887 /* It retains unsignedness if not really getting wider. */
5888 if (TREE_UNSIGNED (restype)
5889 && (TYPE_PRECISION (restype)
5890 == TYPE_PRECISION (integer_type_node)))
5891 restype = unsigned_type_node;
5892 else
5893 restype = integer_type_node;
5895 DECL_RESULT (current_function_decl)
5896 = build_decl (RESULT_DECL, NULL_TREE, restype);
5898 /* If this fcn was already referenced via a block-scope `extern' decl
5899 (or an implicit decl), propagate certain information about the usage. */
5900 if (TREE_ADDRESSABLE (DECL_ASSEMBLER_NAME (current_function_decl)))
5901 TREE_ADDRESSABLE (current_function_decl) = 1;
5903 immediate_size_expand = old_immediate_size_expand;
5905 start_fname_decls ();
5907 return 1;
5910 /* Store the parameter declarations into the current function declaration.
5911 This is called after parsing the parameter declarations, before
5912 digesting the body of the function.
5914 For an old-style definition, modify the function's type
5915 to specify at least the number of arguments. */
5917 void
5918 store_parm_decls ()
5920 tree fndecl = current_function_decl;
5921 tree parm;
5923 /* This is either a chain of PARM_DECLs (if a prototype was used)
5924 or a list of IDENTIFIER_NODEs (for an old-fashioned C definition). */
5925 tree specparms = current_function_parms;
5927 /* This is a list of types declared among parms in a prototype. */
5928 tree parmtags = current_function_parm_tags;
5930 /* This is a chain of PARM_DECLs from old-style parm declarations. */
5931 tree parmdecls = getdecls ();
5933 /* This is a chain of any other decls that came in among the parm
5934 declarations. If a parm is declared with enum {foo, bar} x;
5935 then CONST_DECLs for foo and bar are put here. */
5936 tree nonparms = 0;
5938 /* The function containing FNDECL, if any. */
5939 tree context = decl_function_context (fndecl);
5941 /* Nonzero if this definition is written with a prototype. */
5942 int prototype = 0;
5944 int saved_warn_shadow = warn_shadow;
5946 /* Don't re-emit shadow warnings. */
5947 warn_shadow = 0;
5949 if (specparms != 0 && TREE_CODE (specparms) != TREE_LIST)
5951 /* This case is when the function was defined with an ANSI prototype.
5952 The parms already have decls, so we need not do anything here
5953 except record them as in effect
5954 and complain if any redundant old-style parm decls were written. */
5956 tree next;
5957 tree others = 0;
5959 prototype = 1;
5961 if (parmdecls != 0)
5963 tree decl, link;
5965 error_with_decl (fndecl,
5966 "parm types given both in parmlist and separately");
5967 /* Get rid of the erroneous decls; don't keep them on
5968 the list of parms, since they might not be PARM_DECLs. */
5969 for (decl = current_binding_level->names;
5970 decl; decl = TREE_CHAIN (decl))
5971 if (DECL_NAME (decl))
5972 IDENTIFIER_LOCAL_VALUE (DECL_NAME (decl)) = 0;
5973 for (link = current_binding_level->shadowed;
5974 link; link = TREE_CHAIN (link))
5975 IDENTIFIER_LOCAL_VALUE (TREE_PURPOSE (link)) = TREE_VALUE (link);
5976 current_binding_level->names = 0;
5977 current_binding_level->shadowed = 0;
5980 specparms = nreverse (specparms);
5981 for (parm = specparms; parm; parm = next)
5983 next = TREE_CHAIN (parm);
5984 if (TREE_CODE (parm) == PARM_DECL)
5986 if (DECL_NAME (parm) == 0)
5987 error_with_decl (parm, "parameter name omitted");
5988 else if (TREE_CODE (TREE_TYPE (parm)) != ERROR_MARK
5989 && VOID_TYPE_P (TREE_TYPE (parm)))
5991 error_with_decl (parm, "parameter `%s' declared void");
5992 /* Change the type to error_mark_node so this parameter
5993 will be ignored by assign_parms. */
5994 TREE_TYPE (parm) = error_mark_node;
5996 pushdecl (parm);
5998 else
6000 /* If we find an enum constant or a type tag,
6001 put it aside for the moment. */
6002 TREE_CHAIN (parm) = 0;
6003 others = chainon (others, parm);
6007 /* Get the decls in their original chain order
6008 and record in the function. */
6009 DECL_ARGUMENTS (fndecl) = getdecls ();
6011 #if 0
6012 /* If this function takes a variable number of arguments,
6013 add a phony parameter to the end of the parm list,
6014 to represent the position of the first unnamed argument. */
6015 if (TREE_VALUE (tree_last (TYPE_ARG_TYPES (TREE_TYPE (fndecl))))
6016 != void_type_node)
6018 tree dummy = build_decl (PARM_DECL, NULL_TREE, void_type_node);
6019 /* Let's hope the address of the unnamed parm
6020 won't depend on its type. */
6021 TREE_TYPE (dummy) = integer_type_node;
6022 DECL_ARG_TYPE (dummy) = integer_type_node;
6023 DECL_ARGUMENTS (fndecl) = chainon (DECL_ARGUMENTS (fndecl), dummy);
6025 #endif
6027 /* Now pushdecl the enum constants. */
6028 for (parm = others; parm; parm = next)
6030 next = TREE_CHAIN (parm);
6031 if (DECL_NAME (parm) == 0)
6033 else if (TYPE_MAIN_VARIANT (TREE_TYPE (parm)) == void_type_node)
6035 else if (TREE_CODE (parm) != PARM_DECL)
6036 pushdecl (parm);
6039 storetags (chainon (parmtags, gettags ()));
6041 else
6043 /* SPECPARMS is an identifier list--a chain of TREE_LIST nodes
6044 each with a parm name as the TREE_VALUE.
6046 PARMDECLS is a chain of declarations for parameters.
6047 Warning! It can also contain CONST_DECLs which are not parameters
6048 but are names of enumerators of any enum types
6049 declared among the parameters.
6051 First match each formal parameter name with its declaration.
6052 Associate decls with the names and store the decls
6053 into the TREE_PURPOSE slots. */
6055 /* We use DECL_WEAK as a flag to show which parameters have been
6056 seen already since it is not used on PARM_DECL or CONST_DECL. */
6057 for (parm = parmdecls; parm; parm = TREE_CHAIN (parm))
6058 DECL_WEAK (parm) = 0;
6060 for (parm = specparms; parm; parm = TREE_CHAIN (parm))
6062 tree tail, found = NULL;
6064 if (TREE_VALUE (parm) == 0)
6066 error_with_decl (fndecl,
6067 "parameter name missing from parameter list");
6068 TREE_PURPOSE (parm) = 0;
6069 continue;
6072 /* See if any of the parmdecls specifies this parm by name.
6073 Ignore any enumerator decls. */
6074 for (tail = parmdecls; tail; tail = TREE_CHAIN (tail))
6075 if (DECL_NAME (tail) == TREE_VALUE (parm)
6076 && TREE_CODE (tail) == PARM_DECL)
6078 found = tail;
6079 break;
6082 /* If declaration already marked, we have a duplicate name.
6083 Complain, and don't use this decl twice. */
6084 if (found && DECL_WEAK (found))
6086 error_with_decl (found, "multiple parameters named `%s'");
6087 found = 0;
6090 /* If the declaration says "void", complain and ignore it. */
6091 if (found && VOID_TYPE_P (TREE_TYPE (found)))
6093 error_with_decl (found, "parameter `%s' declared void");
6094 TREE_TYPE (found) = integer_type_node;
6095 DECL_ARG_TYPE (found) = integer_type_node;
6096 layout_decl (found, 0);
6099 /* If no declaration found, default to int. */
6100 if (!found)
6102 found = build_decl (PARM_DECL, TREE_VALUE (parm),
6103 integer_type_node);
6104 DECL_ARG_TYPE (found) = TREE_TYPE (found);
6105 DECL_SOURCE_LINE (found) = DECL_SOURCE_LINE (fndecl);
6106 DECL_SOURCE_FILE (found) = DECL_SOURCE_FILE (fndecl);
6107 if (flag_isoc99)
6108 pedwarn_with_decl (found, "type of `%s' defaults to `int'");
6109 else if (extra_warnings)
6110 warning_with_decl (found, "type of `%s' defaults to `int'");
6111 pushdecl (found);
6114 TREE_PURPOSE (parm) = found;
6116 /* Mark this decl as "already found". */
6117 DECL_WEAK (found) = 1;
6120 /* Put anything which is on the parmdecls chain and which is
6121 not a PARM_DECL onto the list NONPARMS. (The types of
6122 non-parm things which might appear on the list include
6123 enumerators and NULL-named TYPE_DECL nodes.) Complain about
6124 any actual PARM_DECLs not matched with any names. */
6126 nonparms = 0;
6127 for (parm = parmdecls; parm;)
6129 tree next = TREE_CHAIN (parm);
6130 TREE_CHAIN (parm) = 0;
6132 if (TREE_CODE (parm) != PARM_DECL)
6133 nonparms = chainon (nonparms, parm);
6134 else
6136 /* Complain about args with incomplete types. */
6137 if (!COMPLETE_TYPE_P (TREE_TYPE (parm)))
6139 error_with_decl (parm, "parameter `%s' has incomplete type");
6140 TREE_TYPE (parm) = error_mark_node;
6143 if (! DECL_WEAK (parm))
6145 error_with_decl (parm,
6146 "declaration for parameter `%s' but no such parameter");
6147 /* Pretend the parameter was not missing.
6148 This gets us to a standard state and minimizes
6149 further error messages. */
6150 specparms
6151 = chainon (specparms,
6152 tree_cons (parm, NULL_TREE, NULL_TREE));
6156 parm = next;
6159 /* Chain the declarations together in the order of the list of
6160 names. Store that chain in the function decl, replacing the
6161 list of names. */
6162 parm = specparms;
6163 DECL_ARGUMENTS (fndecl) = 0;
6165 tree last;
6166 for (last = 0; parm; parm = TREE_CHAIN (parm))
6167 if (TREE_PURPOSE (parm))
6169 if (last == 0)
6170 DECL_ARGUMENTS (fndecl) = TREE_PURPOSE (parm);
6171 else
6172 TREE_CHAIN (last) = TREE_PURPOSE (parm);
6173 last = TREE_PURPOSE (parm);
6174 TREE_CHAIN (last) = 0;
6178 /* If there was a previous prototype,
6179 set the DECL_ARG_TYPE of each argument according to
6180 the type previously specified, and report any mismatches. */
6182 if (TYPE_ARG_TYPES (TREE_TYPE (fndecl)))
6184 tree type;
6185 for (parm = DECL_ARGUMENTS (fndecl),
6186 type = TYPE_ARG_TYPES (TREE_TYPE (fndecl));
6187 parm || (type && (TYPE_MAIN_VARIANT (TREE_VALUE (type))
6188 != void_type_node));
6189 parm = TREE_CHAIN (parm), type = TREE_CHAIN (type))
6191 if (parm == 0 || type == 0
6192 || TYPE_MAIN_VARIANT (TREE_VALUE (type)) == void_type_node)
6194 error ("number of arguments doesn't match prototype");
6195 error_with_file_and_line (current_function_prototype_file,
6196 current_function_prototype_line,
6197 "prototype declaration");
6198 break;
6200 /* Type for passing arg must be consistent with that
6201 declared for the arg. ISO C says we take the unqualified
6202 type for parameters declared with qualified type. */
6203 if (! comptypes (TYPE_MAIN_VARIANT (DECL_ARG_TYPE (parm)),
6204 TYPE_MAIN_VARIANT (TREE_VALUE (type))))
6206 if (TYPE_MAIN_VARIANT (TREE_TYPE (parm))
6207 == TYPE_MAIN_VARIANT (TREE_VALUE (type)))
6209 /* Adjust argument to match prototype. E.g. a previous
6210 `int foo(float);' prototype causes
6211 `int foo(x) float x; {...}' to be treated like
6212 `int foo(float x) {...}'. This is particularly
6213 useful for argument types like uid_t. */
6214 DECL_ARG_TYPE (parm) = TREE_TYPE (parm);
6216 if (PROMOTE_PROTOTYPES
6217 && INTEGRAL_TYPE_P (TREE_TYPE (parm))
6218 && TYPE_PRECISION (TREE_TYPE (parm))
6219 < TYPE_PRECISION (integer_type_node))
6220 DECL_ARG_TYPE (parm) = integer_type_node;
6222 if (pedantic)
6224 pedwarn ("promoted argument `%s' doesn't match prototype",
6225 IDENTIFIER_POINTER (DECL_NAME (parm)));
6226 warning_with_file_and_line
6227 (current_function_prototype_file,
6228 current_function_prototype_line,
6229 "prototype declaration");
6232 else
6234 error ("argument `%s' doesn't match prototype",
6235 IDENTIFIER_POINTER (DECL_NAME (parm)));
6236 error_with_file_and_line (current_function_prototype_file,
6237 current_function_prototype_line,
6238 "prototype declaration");
6242 TYPE_ACTUAL_ARG_TYPES (TREE_TYPE (fndecl)) = 0;
6245 /* Otherwise, create a prototype that would match. */
6247 else
6249 tree actual = 0, last = 0, type;
6251 for (parm = DECL_ARGUMENTS (fndecl); parm; parm = TREE_CHAIN (parm))
6253 type = tree_cons (NULL_TREE, DECL_ARG_TYPE (parm), NULL_TREE);
6254 if (last)
6255 TREE_CHAIN (last) = type;
6256 else
6257 actual = type;
6258 last = type;
6260 type = tree_cons (NULL_TREE, void_type_node, NULL_TREE);
6261 if (last)
6262 TREE_CHAIN (last) = type;
6263 else
6264 actual = type;
6266 /* We are going to assign a new value for the TYPE_ACTUAL_ARG_TYPES
6267 of the type of this function, but we need to avoid having this
6268 affect the types of other similarly-typed functions, so we must
6269 first force the generation of an identical (but separate) type
6270 node for the relevant function type. The new node we create
6271 will be a variant of the main variant of the original function
6272 type. */
6274 TREE_TYPE (fndecl) = build_type_copy (TREE_TYPE (fndecl));
6276 TYPE_ACTUAL_ARG_TYPES (TREE_TYPE (fndecl)) = actual;
6279 /* Now store the final chain of decls for the arguments
6280 as the decl-chain of the current lexical scope.
6281 Put the enumerators in as well, at the front so that
6282 DECL_ARGUMENTS is not modified. */
6284 storedecls (chainon (nonparms, DECL_ARGUMENTS (fndecl)));
6287 /* Make sure the binding level for the top of the function body
6288 gets a BLOCK if there are any in the function.
6289 Otherwise, the dbx output is wrong. */
6291 keep_next_if_subblocks = 1;
6293 /* ??? This might be an improvement,
6294 but needs to be thought about some more. */
6295 #if 0
6296 keep_next_level_flag = 1;
6297 #endif
6299 /* Write a record describing this function definition to the prototypes
6300 file (if requested). */
6302 gen_aux_info_record (fndecl, 1, 0, prototype);
6304 /* Initialize the RTL code for the function. */
6305 init_function_start (fndecl, input_filename, lineno);
6307 /* Begin the statement tree for this function. */
6308 begin_stmt_tree (&DECL_SAVED_TREE (current_function_decl));
6310 /* If this is a nested function, save away the sizes of any
6311 variable-size types so that we can expand them when generating
6312 RTL. */
6313 if (context)
6315 tree t;
6317 DECL_LANG_SPECIFIC (fndecl)->pending_sizes
6318 = nreverse (get_pending_sizes ());
6319 for (t = DECL_LANG_SPECIFIC (fndecl)->pending_sizes;
6321 t = TREE_CHAIN (t))
6322 SAVE_EXPR_CONTEXT (TREE_VALUE (t)) = context;
6325 /* This function is being processed in whole-function mode. */
6326 cfun->x_whole_function_mode_p = 1;
6328 /* Even though we're inside a function body, we still don't want to
6329 call expand_expr to calculate the size of a variable-sized array.
6330 We haven't necessarily assigned RTL to all variables yet, so it's
6331 not safe to try to expand expressions involving them. */
6332 immediate_size_expand = 0;
6333 cfun->x_dont_save_pending_sizes_p = 1;
6335 warn_shadow = saved_warn_shadow;
6338 /* Finish up a function declaration and compile that function
6339 all the way to assembler language output. The free the storage
6340 for the function definition.
6342 This is called after parsing the body of the function definition.
6344 NESTED is nonzero if the function being finished is nested in another.
6345 CAN_DEFER_P is nonzero if the function may be deferred. */
6347 void
6348 finish_function (nested, can_defer_p)
6349 int nested;
6350 int can_defer_p;
6352 tree fndecl = current_function_decl;
6354 #if 0
6355 /* This caused &foo to be of type ptr-to-const-function which then
6356 got a warning when stored in a ptr-to-function variable. */
6357 TREE_READONLY (fndecl) = 1;
6358 #endif
6360 poplevel (1, 0, 1);
6361 BLOCK_SUPERCONTEXT (DECL_INITIAL (fndecl)) = fndecl;
6363 /* Must mark the RESULT_DECL as being in this function. */
6365 DECL_CONTEXT (DECL_RESULT (fndecl)) = fndecl;
6367 if (MAIN_NAME_P (DECL_NAME (fndecl)) && flag_hosted)
6369 if (TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (fndecl)))
6370 != integer_type_node)
6372 /* If warn_main is 1 (-Wmain) or 2 (-Wall), we have already warned.
6373 If warn_main is -1 (-Wno-main) we don't want to be warned. */
6374 if (! warn_main)
6375 pedwarn_with_decl (fndecl, "return type of `%s' is not `int'");
6377 else
6379 #ifdef DEFAULT_MAIN_RETURN
6380 /* Make it so that `main' always returns success by default. */
6381 DEFAULT_MAIN_RETURN;
6382 #else
6383 if (flag_isoc99)
6384 c_expand_return (integer_zero_node);
6385 #endif
6389 finish_fname_decls ();
6391 /* Tie off the statement tree for this function. */
6392 finish_stmt_tree (&DECL_SAVED_TREE (fndecl));
6394 /* Complain if there's just no return statement. */
6395 if (warn_return_type
6396 && TREE_CODE (TREE_TYPE (TREE_TYPE (fndecl))) != VOID_TYPE
6397 && !current_function_returns_value && !current_function_returns_null
6398 /* Don't complain if we abort. */
6399 && !current_function_returns_abnormally
6400 /* Don't warn for main(). */
6401 && !MAIN_NAME_P (DECL_NAME (fndecl))
6402 /* Or if they didn't actually specify a return type. */
6403 && !C_FUNCTION_IMPLICIT_INT (fndecl)
6404 /* Normally, with -Wreturn-type, flow will complain. Unless we're an
6405 inline function, as we might never be compiled separately. */
6406 && DECL_INLINE (fndecl))
6407 warning ("no return statement in function returning non-void");
6409 /* Clear out memory we no longer need. */
6410 free_after_parsing (cfun);
6411 /* Since we never call rest_of_compilation, we never clear
6412 CFUN. Do so explicitly. */
6413 free_after_compilation (cfun);
6414 cfun = NULL;
6416 if (flag_unit_at_a_time)
6418 cgraph_finalize_function (fndecl, DECL_SAVED_TREE (fndecl));
6419 current_function_decl = NULL;
6420 return;
6423 if (! nested)
6425 /* Function is parsed.
6426 Generate RTL for the body of this function or defer
6427 it for later expansion. */
6428 int uninlinable = 1;
6430 /* There's no reason to do any of the work here if we're only doing
6431 semantic analysis; this code just generates RTL. */
6432 if (flag_syntax_only)
6434 current_function_decl = NULL;
6435 DECL_SAVED_TREE (fndecl) = NULL_TREE;
6436 return;
6439 if (flag_inline_trees)
6441 /* First, cache whether the current function is inlinable. Some
6442 predicates depend on cfun and current_function_decl to
6443 function completely. */
6444 timevar_push (TV_INTEGRATION);
6445 uninlinable = ! tree_inlinable_function_p (fndecl);
6447 if (! uninlinable && can_defer_p
6448 /* Save function tree for inlining. Should return 0 if the
6449 language does not support function deferring or the
6450 function could not be deferred. */
6451 && defer_fn (fndecl))
6453 /* Let the back-end know that this function exists. */
6454 (*debug_hooks->deferred_inline_function) (fndecl);
6455 timevar_pop (TV_INTEGRATION);
6456 current_function_decl = NULL;
6457 return;
6460 /* Then, inline any functions called in it. */
6461 optimize_inline_calls (fndecl);
6462 timevar_pop (TV_INTEGRATION);
6465 c_expand_body (fndecl);
6467 if (uninlinable)
6469 /* Allow the body of the function to be garbage collected. */
6470 DECL_SAVED_TREE (fndecl) = NULL_TREE;
6473 /* Let the error reporting routines know that we're outside a
6474 function. For a nested function, this value is used in
6475 c_pop_function_context and then reset via pop_function_context. */
6476 current_function_decl = NULL;
6480 /* Generate the RTL for a deferred function FNDECL. */
6482 void
6483 c_expand_deferred_function (fndecl)
6484 tree fndecl;
6486 /* DECL_INLINE or DECL_RESULT might got cleared after the inline
6487 function was deferred, e.g. in duplicate_decls. */
6488 if (DECL_INLINE (fndecl) && DECL_RESULT (fndecl))
6490 if (flag_inline_trees)
6492 timevar_push (TV_INTEGRATION);
6493 optimize_inline_calls (fndecl);
6494 timevar_pop (TV_INTEGRATION);
6496 c_expand_body (fndecl);
6497 current_function_decl = NULL;
6501 /* Generate the RTL for the body of FNDECL. If NESTED_P is nonzero,
6502 then we are already in the process of generating RTL for another
6503 function. If can_defer_p is zero, we won't attempt to defer the
6504 generation of RTL. */
6506 static void
6507 c_expand_body_1 (fndecl, nested_p)
6508 tree fndecl;
6509 int nested_p;
6511 timevar_push (TV_EXPAND);
6513 if (nested_p)
6515 /* Make sure that we will evaluate variable-sized types involved
6516 in our function's type. */
6517 expand_pending_sizes (DECL_LANG_SPECIFIC (fndecl)->pending_sizes);
6518 /* Squirrel away our current state. */
6519 push_function_context ();
6522 /* Initialize the RTL code for the function. */
6523 current_function_decl = fndecl;
6524 input_filename = DECL_SOURCE_FILE (fndecl);
6525 init_function_start (fndecl, input_filename, DECL_SOURCE_LINE (fndecl));
6527 /* This function is being processed in whole-function mode. */
6528 cfun->x_whole_function_mode_p = 1;
6530 /* Even though we're inside a function body, we still don't want to
6531 call expand_expr to calculate the size of a variable-sized array.
6532 We haven't necessarily assigned RTL to all variables yet, so it's
6533 not safe to try to expand expressions involving them. */
6534 immediate_size_expand = 0;
6535 cfun->x_dont_save_pending_sizes_p = 1;
6537 /* Set up parameters and prepare for return, for the function. */
6538 expand_function_start (fndecl, 0);
6540 /* If this function is `main', emit a call to `__main'
6541 to run global initializers, etc. */
6542 if (DECL_NAME (fndecl)
6543 && MAIN_NAME_P (DECL_NAME (fndecl))
6544 && DECL_CONTEXT (fndecl) == NULL_TREE)
6545 expand_main_function ();
6547 /* Generate the RTL for this function. */
6548 expand_stmt (DECL_SAVED_TREE (fndecl));
6550 /* We hard-wired immediate_size_expand to zero above.
6551 expand_function_end will decrement this variable. So, we set the
6552 variable to one here, so that after the decrement it will remain
6553 zero. */
6554 immediate_size_expand = 1;
6556 /* Allow language dialects to perform special processing. */
6557 if (lang_expand_function_end)
6558 (*lang_expand_function_end) ();
6560 /* Generate rtl for function exit. */
6561 expand_function_end (input_filename, lineno, 0);
6563 /* If this is a nested function, protect the local variables in the stack
6564 above us from being collected while we're compiling this function. */
6565 if (nested_p)
6566 ggc_push_context ();
6568 /* Run the optimizers and output the assembler code for this function. */
6569 rest_of_compilation (fndecl);
6571 /* Undo the GC context switch. */
6572 if (nested_p)
6573 ggc_pop_context ();
6575 /* With just -Wextra, complain only if function returns both with
6576 and without a value. */
6577 if (extra_warnings
6578 && current_function_returns_value
6579 && current_function_returns_null)
6580 warning ("this function may return with or without a value");
6582 /* If requested, warn about function definitions where the function will
6583 return a value (usually of some struct or union type) which itself will
6584 take up a lot of stack space. */
6586 if (warn_larger_than && !DECL_EXTERNAL (fndecl) && TREE_TYPE (fndecl))
6588 tree ret_type = TREE_TYPE (TREE_TYPE (fndecl));
6590 if (ret_type && TYPE_SIZE_UNIT (ret_type)
6591 && TREE_CODE (TYPE_SIZE_UNIT (ret_type)) == INTEGER_CST
6592 && 0 < compare_tree_int (TYPE_SIZE_UNIT (ret_type),
6593 larger_than_size))
6595 unsigned int size_as_int
6596 = TREE_INT_CST_LOW (TYPE_SIZE_UNIT (ret_type));
6598 if (compare_tree_int (TYPE_SIZE_UNIT (ret_type), size_as_int) == 0)
6599 warning_with_decl (fndecl,
6600 "size of return value of `%s' is %u bytes",
6601 size_as_int);
6602 else
6603 warning_with_decl (fndecl,
6604 "size of return value of `%s' is larger than %d bytes",
6605 larger_than_size);
6609 if (DECL_SAVED_INSNS (fndecl) == 0 && ! nested_p
6610 && ! flag_inline_trees)
6612 /* Stop pointing to the local nodes about to be freed.
6613 But DECL_INITIAL must remain nonzero so we know this
6614 was an actual function definition.
6615 For a nested function, this is done in c_pop_function_context.
6616 If rest_of_compilation set this to 0, leave it 0. */
6617 if (DECL_INITIAL (fndecl) != 0)
6618 DECL_INITIAL (fndecl) = error_mark_node;
6620 DECL_ARGUMENTS (fndecl) = 0;
6623 if (DECL_STATIC_CONSTRUCTOR (fndecl))
6625 if (targetm.have_ctors_dtors)
6626 (* targetm.asm_out.constructor) (XEXP (DECL_RTL (fndecl), 0),
6627 DEFAULT_INIT_PRIORITY);
6628 else
6629 static_ctors = tree_cons (NULL_TREE, fndecl, static_ctors);
6632 if (DECL_STATIC_DESTRUCTOR (fndecl))
6634 if (targetm.have_ctors_dtors)
6635 (* targetm.asm_out.destructor) (XEXP (DECL_RTL (fndecl), 0),
6636 DEFAULT_INIT_PRIORITY);
6637 else
6638 static_dtors = tree_cons (NULL_TREE, fndecl, static_dtors);
6641 if (nested_p)
6642 /* Return to the enclosing function. */
6643 pop_function_context ();
6644 timevar_pop (TV_EXPAND);
6647 /* Like c_expand_body_1 but only for unnested functions. */
6649 void
6650 c_expand_body (fndecl)
6651 tree fndecl;
6653 c_expand_body_1 (fndecl, 0);
6656 /* Check the declarations given in a for-loop for satisfying the C99
6657 constraints. */
6658 void
6659 check_for_loop_decls ()
6661 tree t;
6663 if (!flag_isoc99)
6665 /* If we get here, declarations have been used in a for loop without
6666 the C99 for loop scope. This doesn't make much sense, so don't
6667 allow it. */
6668 error ("`for' loop initial declaration used outside C99 mode");
6669 return;
6671 /* C99 subclause 6.8.5 paragraph 3:
6673 [#3] The declaration part of a for statement shall only
6674 declare identifiers for objects having storage class auto or
6675 register.
6677 It isn't clear whether, in this sentence, "identifiers" binds to
6678 "shall only declare" or to "objects" - that is, whether all identifiers
6679 declared must be identifiers for objects, or whether the restriction
6680 only applies to those that are. (A question on this in comp.std.c
6681 in November 2000 received no answer.) We implement the strictest
6682 interpretation, to avoid creating an extension which later causes
6683 problems. */
6685 for (t = gettags (); t; t = TREE_CHAIN (t))
6687 if (TREE_PURPOSE (t) != 0)
6689 enum tree_code code = TREE_CODE (TREE_VALUE (t));
6691 if (code == RECORD_TYPE)
6692 error ("`struct %s' declared in `for' loop initial declaration",
6693 IDENTIFIER_POINTER (TREE_PURPOSE (t)));
6694 else if (code == UNION_TYPE)
6695 error ("`union %s' declared in `for' loop initial declaration",
6696 IDENTIFIER_POINTER (TREE_PURPOSE (t)));
6697 else
6698 error ("`enum %s' declared in `for' loop initial declaration",
6699 IDENTIFIER_POINTER (TREE_PURPOSE (t)));
6703 for (t = getdecls (); t; t = TREE_CHAIN (t))
6705 if (TREE_CODE (t) != VAR_DECL && DECL_NAME (t))
6706 error_with_decl (t, "declaration of non-variable `%s' in `for' loop initial declaration");
6707 else if (TREE_STATIC (t))
6708 error_with_decl (t, "declaration of static variable `%s' in `for' loop initial declaration");
6709 else if (DECL_EXTERNAL (t))
6710 error_with_decl (t, "declaration of `extern' variable `%s' in `for' loop initial declaration");
6714 /* Save and restore the variables in this file and elsewhere
6715 that keep track of the progress of compilation of the current function.
6716 Used for nested functions. */
6718 struct language_function GTY(())
6720 struct c_language_function base;
6721 tree named_labels;
6722 tree shadowed_labels;
6723 int returns_value;
6724 int returns_null;
6725 int returns_abnormally;
6726 int warn_about_return_type;
6727 int extern_inline;
6728 struct binding_level *binding_level;
6731 /* Save and reinitialize the variables
6732 used during compilation of a C function. */
6734 void
6735 c_push_function_context (f)
6736 struct function *f;
6738 struct language_function *p;
6739 p = ((struct language_function *)
6740 ggc_alloc (sizeof (struct language_function)));
6741 f->language = p;
6743 p->base.x_stmt_tree = c_stmt_tree;
6744 p->base.x_scope_stmt_stack = c_scope_stmt_stack;
6745 p->named_labels = named_labels;
6746 p->shadowed_labels = shadowed_labels;
6747 p->returns_value = current_function_returns_value;
6748 p->returns_null = current_function_returns_null;
6749 p->returns_abnormally = current_function_returns_abnormally;
6750 p->warn_about_return_type = warn_about_return_type;
6751 p->extern_inline = current_extern_inline;
6752 p->binding_level = current_binding_level;
6755 /* Restore the variables used during compilation of a C function. */
6757 void
6758 c_pop_function_context (f)
6759 struct function *f;
6761 struct language_function *p = f->language;
6762 tree link;
6764 /* Bring back all the labels that were shadowed. */
6765 for (link = shadowed_labels; link; link = TREE_CHAIN (link))
6766 if (DECL_NAME (TREE_VALUE (link)) != 0)
6767 IDENTIFIER_LABEL_VALUE (DECL_NAME (TREE_VALUE (link)))
6768 = TREE_VALUE (link);
6770 if (DECL_SAVED_INSNS (current_function_decl) == 0
6771 && DECL_SAVED_TREE (current_function_decl) == NULL_TREE)
6773 /* Stop pointing to the local nodes about to be freed. */
6774 /* But DECL_INITIAL must remain nonzero so we know this
6775 was an actual function definition. */
6776 DECL_INITIAL (current_function_decl) = error_mark_node;
6777 DECL_ARGUMENTS (current_function_decl) = 0;
6780 c_stmt_tree = p->base.x_stmt_tree;
6781 c_scope_stmt_stack = p->base.x_scope_stmt_stack;
6782 named_labels = p->named_labels;
6783 shadowed_labels = p->shadowed_labels;
6784 current_function_returns_value = p->returns_value;
6785 current_function_returns_null = p->returns_null;
6786 current_function_returns_abnormally = p->returns_abnormally;
6787 warn_about_return_type = p->warn_about_return_type;
6788 current_extern_inline = p->extern_inline;
6789 current_binding_level = p->binding_level;
6791 f->language = NULL;
6794 /* Copy the DECL_LANG_SPECIFIC data associated with DECL. */
6796 void
6797 c_dup_lang_specific_decl (decl)
6798 tree decl;
6800 struct lang_decl *ld;
6802 if (!DECL_LANG_SPECIFIC (decl))
6803 return;
6805 ld = (struct lang_decl *) ggc_alloc (sizeof (struct lang_decl));
6806 memcpy ((char *) ld, (char *) DECL_LANG_SPECIFIC (decl),
6807 sizeof (struct lang_decl));
6808 DECL_LANG_SPECIFIC (decl) = ld;
6811 /* The functions below are required for functionality of doing
6812 function at once processing in the C front end. Currently these
6813 functions are not called from anywhere in the C front end, but as
6814 these changes continue, that will change. */
6816 /* Returns nonzero if the current statement is a full expression,
6817 i.e. temporaries created during that statement should be destroyed
6818 at the end of the statement. */
6821 stmts_are_full_exprs_p ()
6823 return 0;
6826 /* Returns the stmt_tree (if any) to which statements are currently
6827 being added. If there is no active statement-tree, NULL is
6828 returned. */
6830 stmt_tree
6831 current_stmt_tree ()
6833 return &c_stmt_tree;
6836 /* Returns the stack of SCOPE_STMTs for the current function. */
6838 tree *
6839 current_scope_stmt_stack ()
6841 return &c_scope_stmt_stack;
6844 /* Nonzero if TYPE is an anonymous union or struct type. Always 0 in
6845 C. */
6848 anon_aggr_type_p (node)
6849 tree node ATTRIBUTE_UNUSED;
6851 return 0;
6854 /* Dummy function in place of callback used by C++. */
6856 void
6857 extract_interface_info ()
6861 /* Return a new COMPOUND_STMT, after adding it to the current
6862 statement tree. */
6864 tree
6865 c_begin_compound_stmt ()
6867 tree stmt;
6869 /* Create the COMPOUND_STMT. */
6870 stmt = add_stmt (build_stmt (COMPOUND_STMT, NULL_TREE));
6872 return stmt;
6875 /* Expand T (a DECL_STMT) if it declares an entity not handled by the
6876 common code. */
6878 void
6879 c_expand_decl_stmt (t)
6880 tree t;
6882 tree decl = DECL_STMT_DECL (t);
6884 /* Expand nested functions. */
6885 if (TREE_CODE (decl) == FUNCTION_DECL
6886 && DECL_CONTEXT (decl) == current_function_decl
6887 && DECL_SAVED_TREE (decl))
6888 c_expand_body_1 (decl, 1);
6891 /* Return the IDENTIFIER_GLOBAL_VALUE of T, for use in common code, since
6892 the definition of IDENTIFIER_GLOBAL_VALUE is different for C and C++. */
6894 tree
6895 identifier_global_value (t)
6896 tree t;
6898 return IDENTIFIER_GLOBAL_VALUE (t);
6901 /* Record a builtin type for C. If NAME is non-NULL, it is the name used;
6902 otherwise the name is found in ridpointers from RID_INDEX. */
6904 void
6905 record_builtin_type (rid_index, name, type)
6906 enum rid rid_index;
6907 const char *name;
6908 tree type;
6910 tree id;
6911 if (name == 0)
6912 id = ridpointers[(int) rid_index];
6913 else
6914 id = get_identifier (name);
6915 pushdecl (build_decl (TYPE_DECL, id, type));
6918 /* Build the void_list_node (void_type_node having been created). */
6919 tree
6920 build_void_list_node ()
6922 tree t = build_tree_list (NULL_TREE, void_type_node);
6923 return t;
6926 /* Return something to represent absolute declarators containing a *.
6927 TARGET is the absolute declarator that the * contains.
6928 TYPE_QUALS_ATTRS is a list of modifiers such as const or volatile
6929 to apply to the pointer type, represented as identifiers, possible mixed
6930 with attributes.
6932 We return an INDIRECT_REF whose "contents" are TARGET (inside a TREE_LIST,
6933 if attributes are present) and whose type is the modifier list. */
6935 tree
6936 make_pointer_declarator (type_quals_attrs, target)
6937 tree type_quals_attrs, target;
6939 tree quals, attrs;
6940 tree itarget = target;
6941 split_specs_attrs (type_quals_attrs, &quals, &attrs);
6942 if (attrs != NULL_TREE)
6943 itarget = tree_cons (attrs, target, NULL_TREE);
6944 return build1 (INDIRECT_REF, quals, itarget);
6947 #include "gt-c-decl.h"