cselib.c (cselib_current_insn_in_libcall): New static variable.
[official-gcc.git] / gcc / c-decl.c
blobfde8c482e12e6ef85a3ea8d1b779817013690bd8
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"
52 /* In grokdeclarator, distinguish syntactic contexts of declarators. */
53 enum decl_context
54 { NORMAL, /* Ordinary declaration */
55 FUNCDEF, /* Function definition */
56 PARM, /* Declaration of parm before function body */
57 FIELD, /* Declaration inside struct or union */
58 BITFIELD, /* Likewise but with specified width */
59 TYPENAME}; /* Typename (inside cast or sizeof) */
62 /* Nonzero if we have seen an invalid cross reference
63 to a struct, union, or enum, but not yet printed the message. */
65 tree pending_invalid_xref;
66 /* File and line to appear in the eventual error message. */
67 const char *pending_invalid_xref_file;
68 int pending_invalid_xref_line;
70 /* While defining an enum type, this is 1 plus the last enumerator
71 constant value. Note that will do not have to save this or `enum_overflow'
72 around nested function definition since such a definition could only
73 occur in an enum value expression and we don't use these variables in
74 that case. */
76 static tree enum_next_value;
78 /* Nonzero means that there was overflow computing enum_next_value. */
80 static int enum_overflow;
82 /* Parsing a function declarator leaves a list of parameter names
83 or a chain or parameter decls here. */
85 static tree last_function_parms;
87 /* Parsing a function declarator leaves here a chain of structure
88 and enum types declared in the parmlist. */
90 static tree last_function_parm_tags;
92 /* After parsing the declarator that starts a function definition,
93 `start_function' puts here the list of parameter names or chain of decls.
94 `store_parm_decls' finds it here. */
96 static tree current_function_parms;
98 /* Similar, for last_function_parm_tags. */
99 static tree current_function_parm_tags;
101 /* Similar, for the file and line that the prototype came from if this is
102 an old-style definition. */
103 static const char *current_function_prototype_file;
104 static int current_function_prototype_line;
106 /* The current statement tree. */
108 static GTY(()) struct stmt_tree_s c_stmt_tree;
110 /* The current scope statement stack. */
112 static GTY(()) tree c_scope_stmt_stack;
114 /* A list (chain of TREE_LIST nodes) of all LABEL_DECLs in the function
115 that have names. Here so we can clear out their names' definitions
116 at the end of the function. */
118 static GTY(()) tree named_labels;
120 /* A list of LABEL_DECLs from outer contexts that are currently shadowed. */
122 static GTY(()) tree shadowed_labels;
124 /* Set to 0 at beginning of a function definition, set to 1 if
125 a return statement that specifies a return value is seen. */
127 int current_function_returns_value;
129 /* Set to 0 at beginning of a function definition, set to 1 if
130 a return statement with no argument is seen. */
132 int current_function_returns_null;
134 /* Set to 0 at beginning of a function definition, set to 1 if
135 a call to a noreturn function is seen. */
137 int current_function_returns_abnormally;
139 /* Set to nonzero by `grokdeclarator' for a function
140 whose return type is defaulted, if warnings for this are desired. */
142 static int warn_about_return_type;
144 /* Nonzero when starting a function declared `extern inline'. */
146 static int current_extern_inline;
148 /* For each binding contour we allocate a binding_level structure
149 * which records the names defined in that contour.
150 * Contours include:
151 * 0) the global one
152 * 1) one for each function definition,
153 * where internal declarations of the parameters appear.
154 * 2) one for each compound statement,
155 * to record its declarations.
157 * The current meaning of a name can be found by searching the levels from
158 * the current one out to the global one.
161 /* Note that the information in the `names' component of the global contour
162 is duplicated in the IDENTIFIER_GLOBAL_VALUEs of all identifiers. */
164 struct binding_level GTY(())
166 /* A chain of _DECL nodes for all variables, constants, functions,
167 and typedef types. These are in the reverse of the order supplied.
169 tree names;
171 /* A list of structure, union and enum definitions,
172 * for looking up tag names.
173 * It is a chain of TREE_LIST nodes, each of whose TREE_PURPOSE is a name,
174 * or NULL_TREE; and whose TREE_VALUE is a RECORD_TYPE, UNION_TYPE,
175 * or ENUMERAL_TYPE node.
177 tree tags;
179 /* For each level, a list of shadowed outer-level local definitions
180 to be restored when this level is popped.
181 Each link is a TREE_LIST whose TREE_PURPOSE is an identifier and
182 whose TREE_VALUE is its old definition (a kind of ..._DECL node). */
183 tree shadowed;
185 /* For each level (except not the global one),
186 a chain of BLOCK nodes for all the levels
187 that were entered and exited one level down. */
188 tree blocks;
190 /* The BLOCK node for this level, if one has been preallocated.
191 If 0, the BLOCK is allocated (if needed) when the level is popped. */
192 tree this_block;
194 /* The binding level which this one is contained in (inherits from). */
195 struct binding_level *level_chain;
197 /* Nonzero for the level that holds the parameters of a function. */
198 char parm_flag;
200 /* Nonzero if this level "doesn't exist" for tags. */
201 char tag_transparent;
203 /* Nonzero if sublevels of this level "don't exist" for tags.
204 This is set in the parm level of a function definition
205 while reading the function body, so that the outermost block
206 of the function body will be tag-transparent. */
207 char subblocks_tag_transparent;
209 /* Nonzero means make a BLOCK for this level regardless of all else. */
210 char keep;
212 /* Nonzero means make a BLOCK if this level has any subblocks. */
213 char keep_if_subblocks;
215 /* List of decls in `names' that have incomplete structure or
216 union types. */
217 tree incomplete_list;
219 /* A list of decls giving the (reversed) specified order of parms,
220 not including any forward-decls in the parmlist.
221 This is so we can put the parms in proper order for assign_parms. */
222 tree parm_order;
225 #define NULL_BINDING_LEVEL (struct binding_level *) NULL
227 /* The binding level currently in effect. */
229 static GTY(()) struct binding_level *current_binding_level;
231 /* A chain of binding_level structures awaiting reuse. */
233 static GTY((deletable (""))) struct binding_level *free_binding_level;
235 /* The outermost binding level, for names of file scope.
236 This is created when the compiler is started and exists
237 through the entire run. */
239 static GTY(()) struct binding_level *global_binding_level;
241 /* Binding level structures are initialized by copying this one. */
243 static struct binding_level clear_binding_level
244 = {NULL, NULL, NULL, NULL, NULL, NULL_BINDING_LEVEL, 0, 0, 0, 0, 0, NULL,
245 NULL};
247 /* Nonzero means unconditionally make a BLOCK for the next level pushed. */
249 static int keep_next_level_flag;
251 /* Nonzero means make a BLOCK for the next level pushed
252 if it has subblocks. */
254 static int keep_next_if_subblocks;
256 /* The chain of outer levels of label scopes.
257 This uses the same data structure used for binding levels,
258 but it works differently: each link in the chain records
259 saved values of named_labels and shadowed_labels for
260 a label binding level outside the current one. */
262 static GTY(()) struct binding_level *label_level_chain;
264 /* Functions called automatically at the beginning and end of execution. */
266 tree static_ctors, static_dtors;
268 /* Forward declarations. */
270 static struct binding_level * make_binding_level PARAMS ((void));
271 static void pop_binding_level PARAMS ((struct binding_level **));
272 static void clear_limbo_values PARAMS ((tree));
273 static int duplicate_decls PARAMS ((tree, tree, int));
274 static int redeclaration_error_message PARAMS ((tree, tree));
275 static void storedecls PARAMS ((tree));
276 static void storetags PARAMS ((tree));
277 static tree lookup_tag PARAMS ((enum tree_code, tree,
278 struct binding_level *, int));
279 static tree lookup_tag_reverse PARAMS ((tree));
280 static tree grokdeclarator PARAMS ((tree, tree, enum decl_context,
281 int));
282 static tree grokparms PARAMS ((tree, int));
283 static void layout_array_type PARAMS ((tree));
284 static tree c_make_fname_decl PARAMS ((tree, int));
285 static void c_expand_body PARAMS ((tree, int, int));
286 static void warn_if_shadowing PARAMS ((tree, tree));
287 static bool flexible_array_type_p PARAMS ((tree));
289 /* States indicating how grokdeclarator() should handle declspecs marked
290 with __attribute__((deprecated)). An object declared as
291 __attribute__((deprecated)) suppresses warnings of uses of other
292 deprecated items. */
294 enum deprecated_states {
295 DEPRECATED_NORMAL,
296 DEPRECATED_SUPPRESS
299 static enum deprecated_states deprecated_state = DEPRECATED_NORMAL;
301 void
302 c_print_identifier (file, node, indent)
303 FILE *file;
304 tree node;
305 int indent;
307 print_node (file, "global", IDENTIFIER_GLOBAL_VALUE (node), indent + 4);
308 print_node (file, "local", IDENTIFIER_LOCAL_VALUE (node), indent + 4);
309 print_node (file, "label", IDENTIFIER_LABEL_VALUE (node), indent + 4);
310 print_node (file, "implicit", IDENTIFIER_IMPLICIT_DECL (node), indent + 4);
311 print_node (file, "error locus", IDENTIFIER_ERROR_LOCUS (node), indent + 4);
312 print_node (file, "limbo value", IDENTIFIER_LIMBO_VALUE (node), indent + 4);
313 if (C_IS_RESERVED_WORD (node))
315 tree rid = ridpointers[C_RID_CODE (node)];
316 indent_to (file, indent + 4);
317 fprintf (file, "rid ");
318 fprintf (file, HOST_PTR_PRINTF, (void *)rid);
319 fprintf (file, " \"%s\"", IDENTIFIER_POINTER (rid));
323 /* Hook called at end of compilation to assume 1 elt
324 for a top-level tentative array defn that wasn't complete before. */
326 void
327 c_finish_incomplete_decl (decl)
328 tree decl;
330 if (TREE_CODE (decl) == VAR_DECL)
332 tree type = TREE_TYPE (decl);
333 if (type != error_mark_node
334 && TREE_CODE (type) == ARRAY_TYPE
335 && ! DECL_EXTERNAL (decl)
336 && TYPE_DOMAIN (type) == 0)
338 warning_with_decl (decl, "array `%s' assumed to have one element");
340 complete_array_type (type, NULL_TREE, 1);
342 layout_decl (decl, 0);
347 /* Reuse or create a struct for this binding level. */
349 static struct binding_level *
350 make_binding_level ()
352 if (free_binding_level)
354 struct binding_level *result = free_binding_level;
355 free_binding_level = result->level_chain;
356 return result;
358 else
359 return (struct binding_level *) ggc_alloc (sizeof (struct binding_level));
362 /* Remove a binding level from a list and add it to the level chain. */
364 static void
365 pop_binding_level (lp)
366 struct binding_level **lp;
368 struct binding_level *l = *lp;
369 *lp = l->level_chain;
371 memset (l, 0, sizeof (struct binding_level));
372 l->level_chain = free_binding_level;
373 free_binding_level = l;
376 /* Nonzero if we are currently in the global binding level. */
379 global_bindings_p ()
381 return current_binding_level == global_binding_level;
384 void
385 keep_next_level ()
387 keep_next_level_flag = 1;
390 /* Nonzero if the current level needs to have a BLOCK made. */
393 kept_level_p ()
395 return ((current_binding_level->keep_if_subblocks
396 && current_binding_level->blocks != 0)
397 || current_binding_level->keep
398 || current_binding_level->names != 0
399 || (current_binding_level->tags != 0
400 && !current_binding_level->tag_transparent));
403 /* Identify this binding level as a level of parameters.
404 DEFINITION_FLAG is 1 for a definition, 0 for a declaration.
405 But it turns out there is no way to pass the right value for
406 DEFINITION_FLAG, so we ignore it. */
408 void
409 declare_parm_level (definition_flag)
410 int definition_flag ATTRIBUTE_UNUSED;
412 current_binding_level->parm_flag = 1;
415 /* Nonzero if currently making parm declarations. */
418 in_parm_level_p ()
420 return current_binding_level->parm_flag;
423 /* Enter a new binding level.
424 If TAG_TRANSPARENT is nonzero, do so only for the name space of variables,
425 not for that of tags. */
427 void
428 pushlevel (tag_transparent)
429 int tag_transparent;
431 struct binding_level *newlevel = NULL_BINDING_LEVEL;
433 /* If this is the top level of a function,
434 just make sure that NAMED_LABELS is 0. */
436 if (current_binding_level == global_binding_level)
438 named_labels = 0;
441 newlevel = make_binding_level ();
443 /* Add this level to the front of the chain (stack) of levels that
444 are active. */
446 *newlevel = clear_binding_level;
447 newlevel->tag_transparent
448 = (tag_transparent
449 || (current_binding_level
450 ? current_binding_level->subblocks_tag_transparent
451 : 0));
452 newlevel->level_chain = current_binding_level;
453 current_binding_level = newlevel;
454 newlevel->keep = keep_next_level_flag;
455 keep_next_level_flag = 0;
456 newlevel->keep_if_subblocks = keep_next_if_subblocks;
457 keep_next_if_subblocks = 0;
460 /* Clear the limbo values of all identifiers defined in BLOCK or a subblock. */
462 static void
463 clear_limbo_values (block)
464 tree block;
466 tree tem;
468 for (tem = BLOCK_VARS (block); tem; tem = TREE_CHAIN (tem))
469 if (DECL_NAME (tem) != 0)
470 IDENTIFIER_LIMBO_VALUE (DECL_NAME (tem)) = 0;
472 for (tem = BLOCK_SUBBLOCKS (block); tem; tem = TREE_CHAIN (tem))
473 clear_limbo_values (tem);
476 /* Exit a binding level.
477 Pop the level off, and restore the state of the identifier-decl mappings
478 that were in effect when this level was entered.
480 If KEEP is nonzero, this level had explicit declarations, so
481 and create a "block" (a BLOCK node) for the level
482 to record its declarations and subblocks for symbol table output.
484 If FUNCTIONBODY is nonzero, this level is the body of a function,
485 so create a block as if KEEP were set and also clear out all
486 label names.
488 If REVERSE is nonzero, reverse the order of decls before putting
489 them into the BLOCK. */
491 tree
492 poplevel (keep, reverse, functionbody)
493 int keep;
494 int reverse;
495 int functionbody;
497 tree link;
498 /* The chain of decls was accumulated in reverse order.
499 Put it into forward order, just for cleanliness. */
500 tree decls;
501 tree tags = current_binding_level->tags;
502 tree subblocks = current_binding_level->blocks;
503 tree block = 0;
504 tree decl;
505 int block_previously_created;
507 keep |= current_binding_level->keep;
509 /* This warning is turned off because it causes warnings for
510 declarations like `extern struct foo *x'. */
511 #if 0
512 /* Warn about incomplete structure types in this level. */
513 for (link = tags; link; link = TREE_CHAIN (link))
514 if (!COMPLETE_TYPE_P (TREE_VALUE (link)))
516 tree type = TREE_VALUE (link);
517 tree type_name = TYPE_NAME (type);
518 char *id = IDENTIFIER_POINTER (TREE_CODE (type_name) == IDENTIFIER_NODE
519 ? type_name
520 : DECL_NAME (type_name));
521 switch (TREE_CODE (type))
523 case RECORD_TYPE:
524 error ("`struct %s' incomplete in scope ending here", id);
525 break;
526 case UNION_TYPE:
527 error ("`union %s' incomplete in scope ending here", id);
528 break;
529 case ENUMERAL_TYPE:
530 error ("`enum %s' incomplete in scope ending here", id);
531 break;
534 #endif /* 0 */
536 /* Get the decls in the order they were written.
537 Usually current_binding_level->names is in reverse order.
538 But parameter decls were previously put in forward order. */
540 if (reverse)
541 current_binding_level->names
542 = decls = nreverse (current_binding_level->names);
543 else
544 decls = current_binding_level->names;
546 /* Output any nested inline functions within this block
547 if they weren't already output. */
549 for (decl = decls; decl; decl = TREE_CHAIN (decl))
550 if (TREE_CODE (decl) == FUNCTION_DECL
551 && ! TREE_ASM_WRITTEN (decl)
552 && DECL_INITIAL (decl) != 0
553 && TREE_ADDRESSABLE (decl))
555 /* If this decl was copied from a file-scope decl
556 on account of a block-scope extern decl,
557 propagate TREE_ADDRESSABLE to the file-scope decl.
559 DECL_ABSTRACT_ORIGIN can be set to itself if warn_return_type is
560 true, since then the decl goes through save_for_inline_copying. */
561 if (DECL_ABSTRACT_ORIGIN (decl) != 0
562 && DECL_ABSTRACT_ORIGIN (decl) != decl)
563 TREE_ADDRESSABLE (DECL_ABSTRACT_ORIGIN (decl)) = 1;
566 /* We used to warn about unused variables in expand_end_bindings,
567 i.e. while generating RTL. But in function-at-a-time mode we may
568 choose to never expand a function at all (e.g. auto inlining), so
569 we do this explicitly now. */
570 warn_about_unused_variables (getdecls ());
572 /* If there were any declarations or structure tags in that level,
573 or if this level is a function body,
574 create a BLOCK to record them for the life of this function. */
576 block = 0;
577 block_previously_created = (current_binding_level->this_block != 0);
578 if (block_previously_created)
579 block = current_binding_level->this_block;
580 else if (keep || functionbody
581 || (current_binding_level->keep_if_subblocks && subblocks != 0))
582 block = make_node (BLOCK);
583 if (block != 0)
585 BLOCK_VARS (block) = decls;
586 BLOCK_SUBBLOCKS (block) = subblocks;
589 /* In each subblock, record that this is its superior. */
591 for (link = subblocks; link; link = TREE_CHAIN (link))
592 BLOCK_SUPERCONTEXT (link) = block;
594 /* Clear out the meanings of the local variables of this level. */
596 for (link = decls; link; link = TREE_CHAIN (link))
598 if (DECL_NAME (link) != 0)
600 /* If the ident. was used or addressed via a local extern decl,
601 don't forget that fact. */
602 if (DECL_EXTERNAL (link))
604 if (TREE_USED (link))
605 TREE_USED (DECL_NAME (link)) = 1;
606 if (TREE_ADDRESSABLE (link))
607 TREE_ADDRESSABLE (DECL_ASSEMBLER_NAME (link)) = 1;
609 IDENTIFIER_LOCAL_VALUE (DECL_NAME (link)) = 0;
613 /* Restore all name-meanings of the outer levels
614 that were shadowed by this level. */
616 for (link = current_binding_level->shadowed; link; link = TREE_CHAIN (link))
617 IDENTIFIER_LOCAL_VALUE (TREE_PURPOSE (link)) = TREE_VALUE (link);
619 /* If the level being exited is the top level of a function,
620 check over all the labels, and clear out the current
621 (function local) meanings of their names. */
623 if (functionbody)
625 clear_limbo_values (block);
627 /* If this is the top level block of a function,
628 the vars are the function's parameters.
629 Don't leave them in the BLOCK because they are
630 found in the FUNCTION_DECL instead. */
632 BLOCK_VARS (block) = 0;
634 /* Clear out the definitions of all label names,
635 since their scopes end here,
636 and add them to BLOCK_VARS. */
638 for (link = named_labels; link; link = TREE_CHAIN (link))
640 tree label = TREE_VALUE (link);
642 if (DECL_INITIAL (label) == 0)
644 error_with_decl (label, "label `%s' used but not defined");
645 /* Avoid crashing later. */
646 define_label (input_filename, lineno,
647 DECL_NAME (label));
649 else if (warn_unused_label && !TREE_USED (label))
650 warning_with_decl (label, "label `%s' defined but not used");
651 IDENTIFIER_LABEL_VALUE (DECL_NAME (label)) = 0;
653 /* Put the labels into the "variables" of the
654 top-level block, so debugger can see them. */
655 TREE_CHAIN (label) = BLOCK_VARS (block);
656 BLOCK_VARS (block) = label;
660 /* Pop the current level, and free the structure for reuse. */
662 pop_binding_level (&current_binding_level);
664 /* Dispose of the block that we just made inside some higher level. */
665 if (functionbody)
666 DECL_INITIAL (current_function_decl) = block;
667 else if (block)
669 if (!block_previously_created)
670 current_binding_level->blocks
671 = chainon (current_binding_level->blocks, block);
673 /* If we did not make a block for the level just exited,
674 any blocks made for inner levels
675 (since they cannot be recorded as subblocks in that level)
676 must be carried forward so they will later become subblocks
677 of something else. */
678 else if (subblocks)
679 current_binding_level->blocks
680 = chainon (current_binding_level->blocks, subblocks);
682 /* Set the TYPE_CONTEXTs for all of the tagged types belonging to this
683 binding contour so that they point to the appropriate construct, i.e.
684 either to the current FUNCTION_DECL node, or else to the BLOCK node
685 we just constructed.
687 Note that for tagged types whose scope is just the formal parameter
688 list for some function type specification, we can't properly set
689 their TYPE_CONTEXTs here, because we don't have a pointer to the
690 appropriate FUNCTION_TYPE node readily available to us. For those
691 cases, the TYPE_CONTEXTs of the relevant tagged type nodes get set
692 in `grokdeclarator' as soon as we have created the FUNCTION_TYPE
693 node which will represent the "scope" for these "parameter list local"
694 tagged types. */
696 if (functionbody)
697 for (link = tags; link; link = TREE_CHAIN (link))
698 TYPE_CONTEXT (TREE_VALUE (link)) = current_function_decl;
699 else if (block)
700 for (link = tags; link; link = TREE_CHAIN (link))
701 TYPE_CONTEXT (TREE_VALUE (link)) = block;
703 if (block)
704 TREE_USED (block) = 1;
706 return block;
709 /* Insert BLOCK at the end of the list of subblocks of the
710 current binding level. This is used when a BIND_EXPR is expanded,
711 to handle the BLOCK node inside the BIND_EXPR. */
713 void
714 insert_block (block)
715 tree block;
717 TREE_USED (block) = 1;
718 current_binding_level->blocks
719 = chainon (current_binding_level->blocks, block);
722 /* Set the BLOCK node for the innermost scope
723 (the one we are currently in). */
725 void
726 set_block (block)
727 tree block;
729 current_binding_level->this_block = block;
730 current_binding_level->names = chainon (current_binding_level->names,
731 BLOCK_VARS (block));
732 current_binding_level->blocks = chainon (current_binding_level->blocks,
733 BLOCK_SUBBLOCKS (block));
736 void
737 push_label_level ()
739 struct binding_level *newlevel;
741 newlevel = make_binding_level ();
743 /* Add this level to the front of the chain (stack) of label levels. */
745 newlevel->level_chain = label_level_chain;
746 label_level_chain = newlevel;
748 newlevel->names = named_labels;
749 newlevel->shadowed = shadowed_labels;
750 named_labels = 0;
751 shadowed_labels = 0;
754 void
755 pop_label_level ()
757 struct binding_level *level = label_level_chain;
758 tree link, prev;
760 /* Clear out the definitions of the declared labels in this level.
761 Leave in the list any ordinary, non-declared labels. */
762 for (link = named_labels, prev = 0; link;)
764 if (C_DECLARED_LABEL_FLAG (TREE_VALUE (link)))
766 if (DECL_SOURCE_LINE (TREE_VALUE (link)) == 0)
768 error_with_decl (TREE_VALUE (link),
769 "label `%s' used but not defined");
770 /* Avoid crashing later. */
771 define_label (input_filename, lineno,
772 DECL_NAME (TREE_VALUE (link)));
774 else if (warn_unused_label && !TREE_USED (TREE_VALUE (link)))
775 warning_with_decl (TREE_VALUE (link),
776 "label `%s' defined but not used");
777 IDENTIFIER_LABEL_VALUE (DECL_NAME (TREE_VALUE (link))) = 0;
779 /* Delete this element from the list. */
780 link = TREE_CHAIN (link);
781 if (prev)
782 TREE_CHAIN (prev) = link;
783 else
784 named_labels = link;
786 else
788 prev = link;
789 link = TREE_CHAIN (link);
793 /* Bring back all the labels that were shadowed. */
794 for (link = shadowed_labels; link; link = TREE_CHAIN (link))
795 if (DECL_NAME (TREE_VALUE (link)) != 0)
796 IDENTIFIER_LABEL_VALUE (DECL_NAME (TREE_VALUE (link)))
797 = TREE_VALUE (link);
799 named_labels = chainon (named_labels, level->names);
800 shadowed_labels = level->shadowed;
802 /* Pop the current level, and free the structure for reuse. */
803 pop_binding_level (&label_level_chain);
806 /* Push a definition or a declaration of struct, union or enum tag "name".
807 "type" should be the type node.
808 We assume that the tag "name" is not already defined.
810 Note that the definition may really be just a forward reference.
811 In that case, the TYPE_SIZE will be zero. */
813 void
814 pushtag (name, type)
815 tree name, type;
817 struct binding_level *b;
819 /* Find the proper binding level for this type tag. */
821 for (b = current_binding_level; b->tag_transparent; b = b->level_chain)
822 continue;
824 if (name)
826 /* Record the identifier as the type's name if it has none. */
828 if (TYPE_NAME (type) == 0)
829 TYPE_NAME (type) = name;
832 b->tags = tree_cons (name, type, b->tags);
834 /* Create a fake NULL-named TYPE_DECL node whose TREE_TYPE will be the
835 tagged type we just added to the current binding level. This fake
836 NULL-named TYPE_DECL node helps dwarfout.c to know when it needs
837 to output a representation of a tagged type, and it also gives
838 us a convenient place to record the "scope start" address for the
839 tagged type. */
841 TYPE_STUB_DECL (type) = pushdecl (build_decl (TYPE_DECL, NULL_TREE, type));
843 /* An approximation for now, so we can tell this is a function-scope tag.
844 This will be updated in poplevel. */
845 TYPE_CONTEXT (type) = DECL_CONTEXT (TYPE_STUB_DECL (type));
848 /* Handle when a new declaration NEWDECL
849 has the same name as an old one OLDDECL
850 in the same binding contour.
851 Prints an error message if appropriate.
853 If safely possible, alter OLDDECL to look like NEWDECL, and return 1.
854 Otherwise, return 0.
856 When DIFFERENT_BINDING_LEVEL is true, NEWDECL is an external declaration,
857 and OLDDECL is in an outer binding level and should thus not be changed. */
859 static int
860 duplicate_decls (newdecl, olddecl, different_binding_level)
861 tree newdecl, olddecl;
862 int different_binding_level;
864 int types_match = comptypes (TREE_TYPE (newdecl), TREE_TYPE (olddecl));
865 int new_is_definition = (TREE_CODE (newdecl) == FUNCTION_DECL
866 && DECL_INITIAL (newdecl) != 0);
867 tree oldtype = TREE_TYPE (olddecl);
868 tree newtype = TREE_TYPE (newdecl);
869 int errmsg = 0;
871 if (DECL_P (olddecl))
873 if (TREE_CODE (newdecl) == FUNCTION_DECL
874 && TREE_CODE (olddecl) == FUNCTION_DECL
875 && (DECL_UNINLINABLE (newdecl) || DECL_UNINLINABLE (olddecl)))
877 if (DECL_DECLARED_INLINE_P (newdecl)
878 && DECL_UNINLINABLE (newdecl)
879 && lookup_attribute ("noinline", DECL_ATTRIBUTES (newdecl)))
880 /* Already warned elsewhere. */;
881 else if (DECL_DECLARED_INLINE_P (olddecl)
882 && DECL_UNINLINABLE (olddecl)
883 && lookup_attribute ("noinline", DECL_ATTRIBUTES (olddecl)))
884 /* Already warned. */;
885 else if (DECL_DECLARED_INLINE_P (newdecl)
886 && ! DECL_DECLARED_INLINE_P (olddecl)
887 && DECL_UNINLINABLE (olddecl)
888 && lookup_attribute ("noinline", DECL_ATTRIBUTES (olddecl)))
890 warning_with_decl (newdecl,
891 "function `%s' redeclared as inline");
892 warning_with_decl (olddecl,
893 "previous declaration of function `%s' with attribute noinline");
895 else if (DECL_DECLARED_INLINE_P (olddecl)
896 && DECL_UNINLINABLE (newdecl)
897 && lookup_attribute ("noinline", DECL_ATTRIBUTES (newdecl)))
899 warning_with_decl (newdecl,
900 "function `%s' redeclared with attribute noinline");
901 warning_with_decl (olddecl,
902 "previous declaration of function `%s' was inline");
906 DECL_ATTRIBUTES (newdecl)
907 = (*targetm.merge_decl_attributes) (olddecl, newdecl);
910 if (TREE_CODE (newtype) == ERROR_MARK
911 || TREE_CODE (oldtype) == ERROR_MARK)
912 types_match = 0;
914 /* New decl is completely inconsistent with the old one =>
915 tell caller to replace the old one.
916 This is always an error except in the case of shadowing a builtin. */
917 if (TREE_CODE (olddecl) != TREE_CODE (newdecl))
919 if (TREE_CODE (olddecl) == FUNCTION_DECL
920 && (DECL_BUILT_IN (olddecl)
921 || DECL_BUILT_IN_NONANSI (olddecl)))
923 /* If you declare a built-in or predefined function name as static,
924 the old definition is overridden,
925 but optionally warn this was a bad choice of name. */
926 if (!TREE_PUBLIC (newdecl))
928 if (!warn_shadow)
930 else if (DECL_BUILT_IN (olddecl))
931 warning_with_decl (newdecl, "shadowing built-in function `%s'");
932 else
933 warning_with_decl (newdecl, "shadowing library function `%s'");
935 /* Likewise, if the built-in is not ansi, then programs can
936 override it even globally without an error. */
937 else if (! DECL_BUILT_IN (olddecl))
938 warning_with_decl (newdecl,
939 "library function `%s' declared as non-function");
941 else if (DECL_BUILT_IN_NONANSI (olddecl))
942 warning_with_decl (newdecl,
943 "built-in function `%s' declared as non-function");
944 else
945 warning_with_decl (newdecl,
946 "built-in function `%s' declared as non-function");
948 else
950 error_with_decl (newdecl, "`%s' redeclared as different kind of symbol");
951 error_with_decl (olddecl, "previous declaration of `%s'");
954 return 0;
957 /* For real parm decl following a forward decl,
958 return 1 so old decl will be reused. */
959 if (types_match && TREE_CODE (newdecl) == PARM_DECL
960 && TREE_ASM_WRITTEN (olddecl) && ! TREE_ASM_WRITTEN (newdecl))
961 return 1;
963 /* The new declaration is the same kind of object as the old one.
964 The declarations may partially match. Print warnings if they don't
965 match enough. Ultimately, copy most of the information from the new
966 decl to the old one, and keep using the old one. */
968 if (TREE_CODE (olddecl) == FUNCTION_DECL && DECL_BUILT_IN (olddecl))
970 /* A function declaration for a built-in function. */
971 if (!TREE_PUBLIC (newdecl))
973 /* If you declare a built-in function name as static, the
974 built-in definition is overridden,
975 but optionally warn this was a bad choice of name. */
976 if (warn_shadow)
977 warning_with_decl (newdecl, "shadowing built-in function `%s'");
978 /* Discard the old built-in function. */
979 return 0;
981 else if (!types_match)
983 /* Accept the return type of the new declaration if same modes. */
984 tree oldreturntype = TREE_TYPE (oldtype);
985 tree newreturntype = TREE_TYPE (newtype);
987 if (TYPE_MODE (oldreturntype) == TYPE_MODE (newreturntype))
989 /* Function types may be shared, so we can't just modify
990 the return type of olddecl's function type. */
991 tree trytype
992 = build_function_type (newreturntype,
993 TYPE_ARG_TYPES (oldtype));
994 trytype = build_type_attribute_variant (trytype,
995 TYPE_ATTRIBUTES (oldtype));
997 types_match = comptypes (newtype, trytype);
998 if (types_match)
999 oldtype = trytype;
1001 /* Accept harmless mismatch in first argument type also.
1002 This is for the ffs and fprintf builtins. */
1003 if (TYPE_ARG_TYPES (TREE_TYPE (newdecl)) != 0
1004 && TYPE_ARG_TYPES (oldtype) != 0
1005 && TREE_VALUE (TYPE_ARG_TYPES (newtype)) != 0
1006 && TREE_VALUE (TYPE_ARG_TYPES (oldtype)) != 0
1007 && (TYPE_MODE (TREE_VALUE (TYPE_ARG_TYPES (newtype)))
1008 == TYPE_MODE (TREE_VALUE (TYPE_ARG_TYPES (oldtype)))))
1010 /* Function types may be shared, so we can't just modify
1011 the return type of olddecl's function type. */
1012 tree trytype
1013 = build_function_type (TREE_TYPE (oldtype),
1014 tree_cons (NULL_TREE,
1015 TREE_VALUE (TYPE_ARG_TYPES (newtype)),
1016 TREE_CHAIN (TYPE_ARG_TYPES (oldtype))));
1017 trytype = build_type_attribute_variant (trytype,
1018 TYPE_ATTRIBUTES (oldtype));
1020 types_match = comptypes (newtype, trytype);
1021 if (types_match)
1022 oldtype = trytype;
1024 if (! different_binding_level)
1025 TREE_TYPE (olddecl) = oldtype;
1027 else if (TYPE_ARG_TYPES (oldtype) == NULL
1028 && TYPE_ARG_TYPES (newtype) != NULL)
1030 /* For bcmp, bzero, fputs the builtin type has arguments not
1031 specified. Use the ones from the prototype so that type checking
1032 is done for them. */
1033 tree trytype
1034 = build_function_type (TREE_TYPE (oldtype),
1035 TYPE_ARG_TYPES (newtype));
1036 trytype = build_type_attribute_variant (trytype,
1037 TYPE_ATTRIBUTES (oldtype));
1039 oldtype = trytype;
1040 if (! different_binding_level)
1041 TREE_TYPE (olddecl) = oldtype;
1043 if (!types_match)
1045 /* If types don't match for a built-in, throw away the built-in. */
1046 warning_with_decl (newdecl, "conflicting types for built-in function `%s'");
1047 return 0;
1050 else if (TREE_CODE (olddecl) == FUNCTION_DECL
1051 && DECL_SOURCE_LINE (olddecl) == 0)
1053 /* A function declaration for a predeclared function
1054 that isn't actually built in. */
1055 if (!TREE_PUBLIC (newdecl))
1057 /* If you declare it as static, the
1058 default definition is overridden. */
1059 return 0;
1061 else if (!types_match)
1063 /* If the types don't match, preserve volatility indication.
1064 Later on, we will discard everything else about the
1065 default declaration. */
1066 TREE_THIS_VOLATILE (newdecl) |= TREE_THIS_VOLATILE (olddecl);
1069 /* Permit char *foo () to match void *foo (...) if not pedantic,
1070 if one of them came from a system header file. */
1071 else if (!types_match
1072 && TREE_CODE (olddecl) == FUNCTION_DECL
1073 && TREE_CODE (newdecl) == FUNCTION_DECL
1074 && TREE_CODE (TREE_TYPE (oldtype)) == POINTER_TYPE
1075 && TREE_CODE (TREE_TYPE (newtype)) == POINTER_TYPE
1076 && (DECL_IN_SYSTEM_HEADER (olddecl)
1077 || DECL_IN_SYSTEM_HEADER (newdecl))
1078 && ((TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (newtype))) == void_type_node
1079 && TYPE_ARG_TYPES (oldtype) == 0
1080 && self_promoting_args_p (TYPE_ARG_TYPES (newtype))
1081 && TREE_TYPE (TREE_TYPE (oldtype)) == char_type_node)
1083 (TREE_TYPE (TREE_TYPE (newtype)) == char_type_node
1084 && TYPE_ARG_TYPES (newtype) == 0
1085 && self_promoting_args_p (TYPE_ARG_TYPES (oldtype))
1086 && TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (oldtype))) == void_type_node)))
1088 if (pedantic)
1089 pedwarn_with_decl (newdecl, "conflicting types for `%s'");
1090 /* Make sure we keep void * as ret type, not char *. */
1091 if (TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (oldtype))) == void_type_node)
1092 TREE_TYPE (newdecl) = newtype = oldtype;
1094 /* Set DECL_IN_SYSTEM_HEADER, so that if we see another declaration
1095 we will come back here again. */
1096 DECL_IN_SYSTEM_HEADER (newdecl) = 1;
1098 else if (!types_match
1099 /* Permit char *foo (int, ...); followed by char *foo ();
1100 if not pedantic. */
1101 && ! (TREE_CODE (olddecl) == FUNCTION_DECL
1102 && ! pedantic
1103 /* Return types must still match. */
1104 && comptypes (TREE_TYPE (oldtype),
1105 TREE_TYPE (newtype))
1106 && TYPE_ARG_TYPES (newtype) == 0))
1108 error_with_decl (newdecl, "conflicting types for `%s'");
1109 /* Check for function type mismatch
1110 involving an empty arglist vs a nonempty one. */
1111 if (TREE_CODE (olddecl) == FUNCTION_DECL
1112 && comptypes (TREE_TYPE (oldtype),
1113 TREE_TYPE (newtype))
1114 && ((TYPE_ARG_TYPES (oldtype) == 0
1115 && DECL_INITIAL (olddecl) == 0)
1117 (TYPE_ARG_TYPES (newtype) == 0
1118 && DECL_INITIAL (newdecl) == 0)))
1120 /* Classify the problem further. */
1121 tree t = TYPE_ARG_TYPES (oldtype);
1122 if (t == 0)
1123 t = TYPE_ARG_TYPES (newtype);
1124 for (; t; t = TREE_CHAIN (t))
1126 tree type = TREE_VALUE (t);
1128 if (TREE_CHAIN (t) == 0
1129 && TYPE_MAIN_VARIANT (type) != void_type_node)
1131 error ("a parameter list with an ellipsis can't match an empty parameter name list declaration");
1132 break;
1135 if (c_type_promotes_to (type) != type)
1137 error ("an argument type that has a default promotion can't match an empty parameter name list declaration");
1138 break;
1142 error_with_decl (olddecl, "previous declaration of `%s'");
1144 /* TLS cannot follow non-TLS declaration. */
1145 else if (TREE_CODE (olddecl) == VAR_DECL && TREE_CODE (newdecl) == VAR_DECL
1146 && !DECL_THREAD_LOCAL (olddecl) && DECL_THREAD_LOCAL (newdecl))
1148 error_with_decl (newdecl, "thread-local declaration of `%s' follows non thread-local declaration");
1149 error_with_decl (olddecl, "previous declaration of `%s'");
1151 /* non-TLS declaration cannot follow 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, "non thread-local declaration of `%s' follows thread-local declaration");
1156 error_with_decl (olddecl, "previous declaration of `%s'");
1158 else
1160 errmsg = redeclaration_error_message (newdecl, olddecl);
1161 if (errmsg)
1163 switch (errmsg)
1165 case 1:
1166 error_with_decl (newdecl, "redefinition of `%s'");
1167 break;
1168 case 2:
1169 error_with_decl (newdecl, "redeclaration of `%s'");
1170 break;
1171 case 3:
1172 error_with_decl (newdecl, "conflicting declarations of `%s'");
1173 break;
1174 default:
1175 abort ();
1178 error_with_decl (olddecl,
1179 ((DECL_INITIAL (olddecl)
1180 && current_binding_level == global_binding_level)
1181 ? "`%s' previously defined here"
1182 : "`%s' previously declared here"));
1183 return 0;
1185 else if (TREE_CODE (newdecl) == TYPE_DECL
1186 && (DECL_IN_SYSTEM_HEADER (olddecl)
1187 || DECL_IN_SYSTEM_HEADER (newdecl)))
1189 warning_with_decl (newdecl, "redefinition of `%s'");
1190 warning_with_decl
1191 (olddecl,
1192 ((DECL_INITIAL (olddecl)
1193 && current_binding_level == global_binding_level)
1194 ? "`%s' previously defined here"
1195 : "`%s' previously declared here"));
1197 else if (TREE_CODE (olddecl) == FUNCTION_DECL
1198 && DECL_INITIAL (olddecl) != 0
1199 && TYPE_ARG_TYPES (oldtype) == 0
1200 && TYPE_ARG_TYPES (newtype) != 0
1201 && TYPE_ACTUAL_ARG_TYPES (oldtype) != 0)
1203 tree type, parm;
1204 int nargs;
1205 /* Prototype decl follows defn w/o prototype. */
1207 for (parm = TYPE_ACTUAL_ARG_TYPES (oldtype),
1208 type = TYPE_ARG_TYPES (newtype),
1209 nargs = 1;
1211 parm = TREE_CHAIN (parm), type = TREE_CHAIN (type), nargs++)
1213 if (TYPE_MAIN_VARIANT (TREE_VALUE (parm)) == void_type_node
1214 && TYPE_MAIN_VARIANT (TREE_VALUE (type)) == void_type_node)
1216 warning_with_decl (newdecl, "prototype for `%s' follows");
1217 warning_with_decl (olddecl, "non-prototype definition here");
1218 break;
1220 if (TYPE_MAIN_VARIANT (TREE_VALUE (parm)) == void_type_node
1221 || TYPE_MAIN_VARIANT (TREE_VALUE (type)) == void_type_node)
1223 error_with_decl (newdecl,
1224 "prototype for `%s' follows and number of arguments doesn't match");
1225 error_with_decl (olddecl, "non-prototype definition here");
1226 errmsg = 1;
1227 break;
1229 /* Type for passing arg must be consistent
1230 with that declared for the arg. */
1231 if (! comptypes (TREE_VALUE (parm), TREE_VALUE (type)))
1233 error_with_decl (newdecl,
1234 "prototype for `%s' follows and argument %d doesn't match",
1235 nargs);
1236 error_with_decl (olddecl, "non-prototype definition here");
1237 errmsg = 1;
1238 break;
1242 /* Warn about mismatches in various flags. */
1243 else
1245 /* Warn if function is now inline
1246 but was previously declared not inline and has been called. */
1247 if (TREE_CODE (olddecl) == FUNCTION_DECL
1248 && ! DECL_DECLARED_INLINE_P (olddecl)
1249 && DECL_DECLARED_INLINE_P (newdecl)
1250 && TREE_USED (olddecl))
1251 warning_with_decl (newdecl,
1252 "`%s' declared inline after being called");
1253 if (TREE_CODE (olddecl) == FUNCTION_DECL
1254 && ! DECL_DECLARED_INLINE_P (olddecl)
1255 && DECL_DECLARED_INLINE_P (newdecl)
1256 && DECL_INITIAL (olddecl) != 0)
1257 warning_with_decl (newdecl,
1258 "`%s' declared inline after its definition");
1260 /* If pedantic, warn when static declaration follows a non-static
1261 declaration. Otherwise, do so only for functions. */
1262 if ((pedantic || TREE_CODE (olddecl) == FUNCTION_DECL)
1263 && TREE_PUBLIC (olddecl)
1264 && !TREE_PUBLIC (newdecl))
1265 warning_with_decl (newdecl, "static declaration for `%s' follows non-static");
1267 /* If warn_traditional, warn when a non-static function
1268 declaration follows a static one. */
1269 if (warn_traditional && !in_system_header
1270 && TREE_CODE (olddecl) == FUNCTION_DECL
1271 && !TREE_PUBLIC (olddecl)
1272 && TREE_PUBLIC (newdecl))
1273 warning_with_decl (newdecl, "non-static declaration for `%s' follows static");
1275 /* Warn when const declaration follows a non-const
1276 declaration, but not for functions. */
1277 if (TREE_CODE (olddecl) != FUNCTION_DECL
1278 && !TREE_READONLY (olddecl)
1279 && TREE_READONLY (newdecl))
1280 warning_with_decl (newdecl, "const declaration for `%s' follows non-const");
1281 /* These bits are logically part of the type, for variables.
1282 But not for functions
1283 (where qualifiers are not valid ANSI anyway). */
1284 else if (pedantic && TREE_CODE (olddecl) != FUNCTION_DECL
1285 && (TREE_READONLY (newdecl) != TREE_READONLY (olddecl)
1286 || TREE_THIS_VOLATILE (newdecl) != TREE_THIS_VOLATILE (olddecl)))
1287 pedwarn_with_decl (newdecl, "type qualifiers for `%s' conflict with previous decl");
1291 /* Optionally warn about more than one declaration for the same name. */
1292 if (errmsg == 0 && warn_redundant_decls && DECL_SOURCE_LINE (olddecl) != 0
1293 /* Don't warn about a function declaration
1294 followed by a definition. */
1295 && !(TREE_CODE (newdecl) == FUNCTION_DECL && DECL_INITIAL (newdecl) != 0
1296 && DECL_INITIAL (olddecl) == 0)
1297 /* Don't warn about extern decl followed by (tentative) definition. */
1298 && !(DECL_EXTERNAL (olddecl) && ! DECL_EXTERNAL (newdecl)))
1300 warning_with_decl (newdecl, "redundant redeclaration of `%s' in same scope");
1301 warning_with_decl (olddecl, "previous declaration of `%s'");
1304 /* Copy all the DECL_... slots specified in the new decl
1305 except for any that we copy here from the old type.
1307 Past this point, we don't change OLDTYPE and NEWTYPE
1308 even if we change the types of NEWDECL and OLDDECL. */
1310 if (types_match)
1312 /* When copying info to olddecl, we store into write_olddecl
1313 instead. This allows us to avoid modifying olddecl when
1314 different_binding_level is true. */
1315 tree write_olddecl = different_binding_level ? newdecl : olddecl;
1317 /* Merge the data types specified in the two decls. */
1318 if (TREE_CODE (newdecl) != FUNCTION_DECL || !DECL_BUILT_IN (olddecl))
1320 if (different_binding_level)
1322 if (TYPE_ARG_TYPES (oldtype) != 0
1323 && TYPE_ARG_TYPES (newtype) == 0)
1324 TREE_TYPE (newdecl) = common_type (newtype, oldtype);
1325 else
1326 TREE_TYPE (newdecl)
1327 = build_type_attribute_variant
1328 (newtype,
1329 merge_attributes (TYPE_ATTRIBUTES (newtype),
1330 TYPE_ATTRIBUTES (oldtype)));
1332 else
1333 TREE_TYPE (newdecl)
1334 = TREE_TYPE (olddecl)
1335 = common_type (newtype, oldtype);
1338 /* Lay the type out, unless already done. */
1339 if (oldtype != TREE_TYPE (newdecl))
1341 if (TREE_TYPE (newdecl) != error_mark_node)
1342 layout_type (TREE_TYPE (newdecl));
1343 if (TREE_CODE (newdecl) != FUNCTION_DECL
1344 && TREE_CODE (newdecl) != TYPE_DECL
1345 && TREE_CODE (newdecl) != CONST_DECL)
1346 layout_decl (newdecl, 0);
1348 else
1350 /* Since the type is OLDDECL's, make OLDDECL's size go with. */
1351 DECL_SIZE (newdecl) = DECL_SIZE (olddecl);
1352 DECL_SIZE_UNIT (newdecl) = DECL_SIZE_UNIT (olddecl);
1353 DECL_MODE (newdecl) = DECL_MODE (olddecl);
1354 if (TREE_CODE (olddecl) != FUNCTION_DECL)
1355 if (DECL_ALIGN (olddecl) > DECL_ALIGN (newdecl))
1357 DECL_ALIGN (newdecl) = DECL_ALIGN (olddecl);
1358 DECL_USER_ALIGN (newdecl) |= DECL_ALIGN (olddecl);
1362 /* Keep the old rtl since we can safely use it. */
1363 COPY_DECL_RTL (olddecl, newdecl);
1365 /* Merge the type qualifiers. */
1366 if (TREE_READONLY (newdecl))
1367 TREE_READONLY (write_olddecl) = 1;
1369 if (TREE_THIS_VOLATILE (newdecl))
1371 TREE_THIS_VOLATILE (write_olddecl) = 1;
1372 if (TREE_CODE (newdecl) == VAR_DECL
1373 /* If an automatic variable is re-declared in the same
1374 function scope, but the old declaration was not
1375 volatile, make_var_volatile() would crash because the
1376 variable would have been assigned to a pseudo, not a
1377 MEM. Since this duplicate declaration is invalid
1378 anyway, we just skip the call. */
1379 && errmsg == 0)
1380 make_var_volatile (newdecl);
1383 /* Keep source location of definition rather than declaration. */
1384 /* When called with different_binding_level set, keep the old
1385 information so that meaningful diagnostics can be given. */
1386 if (DECL_INITIAL (newdecl) == 0 && DECL_INITIAL (olddecl) != 0
1387 && ! different_binding_level)
1389 DECL_SOURCE_LINE (newdecl) = DECL_SOURCE_LINE (olddecl);
1390 DECL_SOURCE_FILE (newdecl) = DECL_SOURCE_FILE (olddecl);
1393 /* Merge the unused-warning information. */
1394 if (DECL_IN_SYSTEM_HEADER (olddecl))
1395 DECL_IN_SYSTEM_HEADER (newdecl) = 1;
1396 else if (DECL_IN_SYSTEM_HEADER (newdecl))
1397 DECL_IN_SYSTEM_HEADER (write_olddecl) = 1;
1399 /* Merge the initialization information. */
1400 /* When called with different_binding_level set, don't copy over
1401 DECL_INITIAL, so that we don't accidentally change function
1402 declarations into function definitions. */
1403 if (DECL_INITIAL (newdecl) == 0 && ! different_binding_level)
1404 DECL_INITIAL (newdecl) = DECL_INITIAL (olddecl);
1406 /* Merge the section attribute.
1407 We want to issue an error if the sections conflict but that must be
1408 done later in decl_attributes since we are called before attributes
1409 are assigned. */
1410 if (DECL_SECTION_NAME (newdecl) == NULL_TREE)
1411 DECL_SECTION_NAME (newdecl) = DECL_SECTION_NAME (olddecl);
1413 /* Copy the assembler name.
1414 Currently, it can only be defined in the prototype. */
1415 COPY_DECL_ASSEMBLER_NAME (olddecl, newdecl);
1417 if (TREE_CODE (newdecl) == FUNCTION_DECL)
1419 DECL_STATIC_CONSTRUCTOR(newdecl) |= DECL_STATIC_CONSTRUCTOR(olddecl);
1420 DECL_STATIC_DESTRUCTOR (newdecl) |= DECL_STATIC_DESTRUCTOR (olddecl);
1421 DECL_NO_LIMIT_STACK (newdecl) |= DECL_NO_LIMIT_STACK (olddecl);
1422 DECL_NO_INSTRUMENT_FUNCTION_ENTRY_EXIT (newdecl)
1423 |= DECL_NO_INSTRUMENT_FUNCTION_ENTRY_EXIT (olddecl);
1426 /* If cannot merge, then use the new type and qualifiers,
1427 and don't preserve the old rtl. */
1428 else if (! different_binding_level)
1430 TREE_TYPE (olddecl) = TREE_TYPE (newdecl);
1431 TREE_READONLY (olddecl) = TREE_READONLY (newdecl);
1432 TREE_THIS_VOLATILE (olddecl) = TREE_THIS_VOLATILE (newdecl);
1433 TREE_SIDE_EFFECTS (olddecl) = TREE_SIDE_EFFECTS (newdecl);
1436 /* Merge the storage class information. */
1437 merge_weak (newdecl, olddecl);
1439 /* For functions, static overrides non-static. */
1440 if (TREE_CODE (newdecl) == FUNCTION_DECL)
1442 TREE_PUBLIC (newdecl) &= TREE_PUBLIC (olddecl);
1443 /* This is since we don't automatically
1444 copy the attributes of NEWDECL into OLDDECL. */
1445 /* No need to worry about different_binding_level here because
1446 then TREE_PUBLIC (newdecl) was true. */
1447 TREE_PUBLIC (olddecl) = TREE_PUBLIC (newdecl);
1448 /* If this clears `static', clear it in the identifier too. */
1449 if (! TREE_PUBLIC (olddecl))
1450 TREE_PUBLIC (DECL_NAME (olddecl)) = 0;
1452 if (DECL_EXTERNAL (newdecl))
1454 if (! different_binding_level)
1456 /* Don't mess with these flags on local externs; they remain
1457 external even if there's a declaration at file scope which
1458 isn't. */
1459 TREE_STATIC (newdecl) = TREE_STATIC (olddecl);
1460 DECL_EXTERNAL (newdecl) = DECL_EXTERNAL (olddecl);
1462 /* An extern decl does not override previous storage class. */
1463 TREE_PUBLIC (newdecl) = TREE_PUBLIC (olddecl);
1464 if (! DECL_EXTERNAL (newdecl))
1465 DECL_CONTEXT (newdecl) = DECL_CONTEXT (olddecl);
1467 else
1469 TREE_STATIC (olddecl) = TREE_STATIC (newdecl);
1470 TREE_PUBLIC (olddecl) = TREE_PUBLIC (newdecl);
1473 if (TREE_CODE (newdecl) == FUNCTION_DECL)
1475 /* If we're redefining a function previously defined as extern
1476 inline, make sure we emit debug info for the inline before we
1477 throw it away, in case it was inlined into a function that hasn't
1478 been written out yet. */
1479 if (new_is_definition && DECL_INITIAL (olddecl))
1481 if (TREE_USED (olddecl))
1482 (*debug_hooks->outlining_inline_function) (olddecl);
1484 /* The new defn must not be inline. */
1485 DECL_INLINE (newdecl) = 0;
1486 DECL_UNINLINABLE (newdecl) = 1;
1488 else
1490 /* If either decl says `inline', this fn is inline,
1491 unless its definition was passed already. */
1492 if (DECL_DECLARED_INLINE_P (newdecl)
1493 || DECL_DECLARED_INLINE_P (olddecl))
1494 DECL_DECLARED_INLINE_P (newdecl) = 1;
1496 DECL_UNINLINABLE (newdecl) = DECL_UNINLINABLE (olddecl)
1497 = (DECL_UNINLINABLE (newdecl) || DECL_UNINLINABLE (olddecl));
1500 if (DECL_BUILT_IN (olddecl))
1502 /* Get rid of any built-in function if new arg types don't match it
1503 or if we have a function definition. */
1504 if (! types_match || new_is_definition)
1506 if (! different_binding_level)
1508 TREE_TYPE (olddecl) = TREE_TYPE (newdecl);
1509 DECL_BUILT_IN_CLASS (olddecl) = NOT_BUILT_IN;
1512 else
1514 /* If redeclaring a builtin function, and not a definition,
1515 it stays built in. */
1516 DECL_BUILT_IN_CLASS (newdecl) = DECL_BUILT_IN_CLASS (olddecl);
1517 DECL_FUNCTION_CODE (newdecl) = DECL_FUNCTION_CODE (olddecl);
1521 /* Also preserve various other info from the definition. */
1522 if (! new_is_definition)
1524 DECL_RESULT (newdecl) = DECL_RESULT (olddecl);
1525 /* When called with different_binding_level set, don't copy over
1526 DECL_INITIAL, so that we don't accidentally change function
1527 declarations into function definitions. */
1528 if (! different_binding_level)
1529 DECL_INITIAL (newdecl) = DECL_INITIAL (olddecl);
1530 DECL_SAVED_INSNS (newdecl) = DECL_SAVED_INSNS (olddecl);
1531 DECL_SAVED_TREE (newdecl) = DECL_SAVED_TREE (olddecl);
1532 DECL_NUM_STMTS (newdecl) = DECL_NUM_STMTS (olddecl);
1533 DECL_ARGUMENTS (newdecl) = DECL_ARGUMENTS (olddecl);
1535 /* Set DECL_INLINE on the declaration if we've got a body
1536 from which to instantiate. */
1537 if (DECL_INLINE (olddecl) && ! DECL_UNINLINABLE (newdecl))
1539 DECL_INLINE (newdecl) = 1;
1540 DECL_ABSTRACT_ORIGIN (newdecl)
1541 = (different_binding_level
1542 ? DECL_ORIGIN (olddecl)
1543 : DECL_ABSTRACT_ORIGIN (olddecl));
1546 else
1548 /* If a previous declaration said inline, mark the
1549 definition as inlinable. */
1550 if (DECL_DECLARED_INLINE_P (newdecl)
1551 && ! DECL_UNINLINABLE (newdecl))
1552 DECL_INLINE (newdecl) = 1;
1555 if (different_binding_level)
1556 return 0;
1558 /* Copy most of the decl-specific fields of NEWDECL into OLDDECL.
1559 But preserve OLDDECL's DECL_UID. */
1561 unsigned olddecl_uid = DECL_UID (olddecl);
1563 memcpy ((char *) olddecl + sizeof (struct tree_common),
1564 (char *) newdecl + sizeof (struct tree_common),
1565 sizeof (struct tree_decl) - sizeof (struct tree_common));
1566 DECL_UID (olddecl) = olddecl_uid;
1569 /* NEWDECL contains the merged attribute lists.
1570 Update OLDDECL to be the same. */
1571 DECL_ATTRIBUTES (olddecl) = DECL_ATTRIBUTES (newdecl);
1573 return 1;
1576 /* Check whether decl-node X shadows an existing declaration.
1577 OLDLOCAL is the old IDENTIFIER_LOCAL_VALUE of the DECL_NAME of X,
1578 which might be a NULL_TREE. */
1579 static void
1580 warn_if_shadowing (x, oldlocal)
1581 tree x, oldlocal;
1583 tree name;
1585 if (DECL_EXTERNAL (x))
1586 return;
1588 name = DECL_NAME (x);
1590 /* Warn if shadowing an argument at the top level of the body. */
1591 if (oldlocal != 0
1592 /* This warning doesn't apply to the parms of a nested fcn. */
1593 && ! current_binding_level->parm_flag
1594 /* Check that this is one level down from the parms. */
1595 && current_binding_level->level_chain->parm_flag
1596 /* Check that the decl being shadowed
1597 comes from the parm level, one level up. */
1598 && chain_member (oldlocal, current_binding_level->level_chain->names))
1600 if (TREE_CODE (oldlocal) == PARM_DECL)
1601 pedwarn ("declaration of `%s' shadows a parameter",
1602 IDENTIFIER_POINTER (name));
1603 else
1604 pedwarn ("declaration of `%s' shadows a symbol from the parameter list",
1605 IDENTIFIER_POINTER (name));
1607 /* Maybe warn if shadowing something else. */
1608 else if (warn_shadow
1609 /* No shadow warnings for internally generated vars. */
1610 && DECL_SOURCE_LINE (x) != 0
1611 /* No shadow warnings for vars made for inlining. */
1612 && ! DECL_FROM_INLINE (x))
1614 if (TREE_CODE (x) == PARM_DECL
1615 && current_binding_level->level_chain->parm_flag)
1616 /* Don't warn about the parm names in function declarator
1617 within a function declarator.
1618 It would be nice to avoid warning in any function
1619 declarator in a declaration, as opposed to a definition,
1620 but there is no way to tell it's not a definition. */
1622 else if (oldlocal)
1624 if (TREE_CODE (oldlocal) == PARM_DECL)
1625 shadow_warning ("a parameter", name, oldlocal);
1626 else
1627 shadow_warning ("a previous local", name, oldlocal);
1629 else if (IDENTIFIER_GLOBAL_VALUE (name) != 0
1630 && IDENTIFIER_GLOBAL_VALUE (name) != error_mark_node)
1631 shadow_warning ("a global declaration", name,
1632 IDENTIFIER_GLOBAL_VALUE (name));
1636 /* Record a decl-node X as belonging to the current lexical scope.
1637 Check for errors (such as an incompatible declaration for the same
1638 name already seen in the same scope).
1640 Returns either X or an old decl for the same name.
1641 If an old decl is returned, it may have been smashed
1642 to agree with what X says. */
1644 tree
1645 pushdecl (x)
1646 tree x;
1648 tree t;
1649 tree name = DECL_NAME (x);
1650 struct binding_level *b = current_binding_level;
1652 /* Functions need the lang_decl data. */
1653 if (TREE_CODE (x) == FUNCTION_DECL && ! DECL_LANG_SPECIFIC (x))
1654 DECL_LANG_SPECIFIC (x) = (struct lang_decl *)
1655 ggc_alloc_cleared (sizeof (struct lang_decl));
1657 DECL_CONTEXT (x) = current_function_decl;
1658 /* A local extern declaration for a function doesn't constitute nesting.
1659 A local auto declaration does, since it's a forward decl
1660 for a nested function coming later. */
1661 if ((TREE_CODE (x) == FUNCTION_DECL || TREE_CODE (x) == VAR_DECL)
1662 && DECL_INITIAL (x) == 0 && DECL_EXTERNAL (x))
1663 DECL_CONTEXT (x) = 0;
1665 if (name)
1667 int different_binding_level = 0;
1669 if (warn_nested_externs
1670 && DECL_EXTERNAL (x)
1671 && b != global_binding_level
1672 && x != IDENTIFIER_IMPLICIT_DECL (name)
1673 /* No error messages for __FUNCTION__ and __PRETTY_FUNCTION__. */
1674 && !DECL_IN_SYSTEM_HEADER (x))
1675 warning ("nested extern declaration of `%s'",
1676 IDENTIFIER_POINTER (name));
1678 t = lookup_name_current_level (name);
1679 if (! t && DECL_EXTERNAL (x) && TREE_PUBLIC (x))
1681 t = IDENTIFIER_GLOBAL_VALUE (name);
1682 /* Type decls at global scope don't conflict with externs declared
1683 inside lexical blocks. */
1684 if (! t || TREE_CODE (t) == TYPE_DECL)
1685 /* If there's no visible global declaration, try for an
1686 invisible one. */
1687 t = IDENTIFIER_LIMBO_VALUE (name);
1688 different_binding_level = 1;
1690 if (t != 0 && t == error_mark_node)
1691 /* error_mark_node is 0 for a while during initialization! */
1693 t = 0;
1694 error_with_decl (x, "`%s' used prior to declaration");
1697 /* If this decl is `static' and an implicit decl was seen previously,
1698 warn. */
1699 if (TREE_PUBLIC (name)
1700 /* Don't test for DECL_EXTERNAL, because grokdeclarator
1701 sets this for all functions. */
1702 && ! TREE_PUBLIC (x)
1703 && (TREE_CODE (x) == FUNCTION_DECL || b == global_binding_level)
1704 /* We used to warn also for explicit extern followed by static,
1705 but sometimes you need to do it that way. */
1706 && IDENTIFIER_IMPLICIT_DECL (name) != 0)
1708 pedwarn ("`%s' was declared implicitly `extern' and later `static'",
1709 IDENTIFIER_POINTER (name));
1710 pedwarn_with_file_and_line
1711 (DECL_SOURCE_FILE (IDENTIFIER_IMPLICIT_DECL (name)),
1712 DECL_SOURCE_LINE (IDENTIFIER_IMPLICIT_DECL (name)),
1713 "previous declaration of `%s'",
1714 IDENTIFIER_POINTER (name));
1715 TREE_THIS_VOLATILE (name) = 1;
1718 if (t != 0 && duplicate_decls (x, t, different_binding_level))
1720 if (TREE_CODE (t) == PARM_DECL)
1722 /* Don't allow more than one "real" duplicate
1723 of a forward parm decl. */
1724 TREE_ASM_WRITTEN (t) = TREE_ASM_WRITTEN (x);
1725 return t;
1727 return t;
1730 /* If we are processing a typedef statement, generate a whole new
1731 ..._TYPE node (which will be just a variant of the existing
1732 ..._TYPE node with identical properties) and then install the
1733 TYPE_DECL node generated to represent the typedef name as the
1734 TYPE_NAME of this brand new (duplicate) ..._TYPE node.
1736 The whole point here is to end up with a situation where each
1737 and every ..._TYPE node the compiler creates will be uniquely
1738 associated with AT MOST one node representing a typedef name.
1739 This way, even though the compiler substitutes corresponding
1740 ..._TYPE nodes for TYPE_DECL (i.e. "typedef name") nodes very
1741 early on, later parts of the compiler can always do the reverse
1742 translation and get back the corresponding typedef name. For
1743 example, given:
1745 typedef struct S MY_TYPE;
1746 MY_TYPE object;
1748 Later parts of the compiler might only know that `object' was of
1749 type `struct S' if it were not for code just below. With this
1750 code however, later parts of the compiler see something like:
1752 struct S' == struct S
1753 typedef struct S' MY_TYPE;
1754 struct S' object;
1756 And they can then deduce (from the node for type struct S') that
1757 the original object declaration was:
1759 MY_TYPE object;
1761 Being able to do this is important for proper support of protoize,
1762 and also for generating precise symbolic debugging information
1763 which takes full account of the programmer's (typedef) vocabulary.
1765 Obviously, we don't want to generate a duplicate ..._TYPE node if
1766 the TYPE_DECL node that we are now processing really represents a
1767 standard built-in type.
1769 Since all standard types are effectively declared at line zero
1770 in the source file, we can easily check to see if we are working
1771 on a standard type by checking the current value of lineno. */
1773 if (TREE_CODE (x) == TYPE_DECL)
1775 if (DECL_SOURCE_LINE (x) == 0)
1777 if (TYPE_NAME (TREE_TYPE (x)) == 0)
1778 TYPE_NAME (TREE_TYPE (x)) = x;
1780 else if (TREE_TYPE (x) != error_mark_node
1781 && DECL_ORIGINAL_TYPE (x) == NULL_TREE)
1783 tree tt = TREE_TYPE (x);
1784 DECL_ORIGINAL_TYPE (x) = tt;
1785 tt = build_type_copy (tt);
1786 TYPE_NAME (tt) = x;
1787 TREE_USED (tt) = TREE_USED (x);
1788 TREE_TYPE (x) = tt;
1792 /* Multiple external decls of the same identifier ought to match.
1793 We get warnings about inline functions where they are defined.
1794 Avoid duplicate warnings where they are used. */
1795 if (TREE_PUBLIC (x)
1796 && ! (TREE_CODE (x) == FUNCTION_DECL && DECL_INLINE (x)))
1798 tree decl;
1800 if (IDENTIFIER_LIMBO_VALUE (name) != 0)
1801 /* Decls in limbo are always extern, so no need to check that. */
1802 decl = IDENTIFIER_LIMBO_VALUE (name);
1803 else
1804 decl = 0;
1806 if (decl && ! comptypes (TREE_TYPE (x), TREE_TYPE (decl))
1807 /* If old decl is built-in, we already warned if we should. */
1808 && !DECL_BUILT_IN (decl))
1810 pedwarn_with_decl (x,
1811 "type mismatch with previous external decl");
1812 pedwarn_with_decl (decl, "previous external decl of `%s'");
1816 /* If a function has had an implicit declaration, and then is defined,
1817 make sure they are compatible. */
1819 if (IDENTIFIER_IMPLICIT_DECL (name) != 0
1820 && IDENTIFIER_GLOBAL_VALUE (name) == 0
1821 && TREE_CODE (x) == FUNCTION_DECL
1822 && ! comptypes (TREE_TYPE (x),
1823 TREE_TYPE (IDENTIFIER_IMPLICIT_DECL (name))))
1825 warning_with_decl (x, "type mismatch with previous implicit declaration");
1826 warning_with_decl (IDENTIFIER_IMPLICIT_DECL (name),
1827 "previous implicit declaration of `%s'");
1830 /* This name is new in its binding level.
1831 Install the new declaration and return it. */
1832 if (b == global_binding_level)
1834 /* Install a global value. */
1836 /* If the first global decl has external linkage,
1837 warn if we later see static one. */
1838 if (IDENTIFIER_GLOBAL_VALUE (name) == 0 && TREE_PUBLIC (x))
1839 TREE_PUBLIC (name) = 1;
1841 IDENTIFIER_GLOBAL_VALUE (name) = x;
1843 /* We no longer care about any previous block level declarations. */
1844 IDENTIFIER_LIMBO_VALUE (name) = 0;
1846 /* Don't forget if the function was used via an implicit decl. */
1847 if (IDENTIFIER_IMPLICIT_DECL (name)
1848 && TREE_USED (IDENTIFIER_IMPLICIT_DECL (name)))
1849 TREE_USED (x) = 1, TREE_USED (name) = 1;
1851 /* Don't forget if its address was taken in that way. */
1852 if (IDENTIFIER_IMPLICIT_DECL (name)
1853 && TREE_ADDRESSABLE (IDENTIFIER_IMPLICIT_DECL (name)))
1854 TREE_ADDRESSABLE (x) = 1;
1856 /* Warn about mismatches against previous implicit decl. */
1857 if (IDENTIFIER_IMPLICIT_DECL (name) != 0
1858 /* If this real decl matches the implicit, don't complain. */
1859 && ! (TREE_CODE (x) == FUNCTION_DECL
1860 && (TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (x)))
1861 == integer_type_node)))
1862 pedwarn ("`%s' was previously implicitly declared to return `int'",
1863 IDENTIFIER_POINTER (name));
1865 /* If this decl is `static' and an `extern' was seen previously,
1866 that is erroneous. */
1867 if (TREE_PUBLIC (name)
1868 && ! TREE_PUBLIC (x) && ! DECL_EXTERNAL (x))
1870 /* Okay to redeclare an ANSI built-in as static. */
1871 if (t != 0 && DECL_BUILT_IN (t))
1873 /* Okay to declare a non-ANSI built-in as anything. */
1874 else if (t != 0 && DECL_BUILT_IN_NONANSI (t))
1876 /* Okay to have global type decl after an earlier extern
1877 declaration inside a lexical block. */
1878 else if (TREE_CODE (x) == TYPE_DECL)
1880 else if (IDENTIFIER_IMPLICIT_DECL (name))
1882 if (! TREE_THIS_VOLATILE (name))
1883 pedwarn ("`%s' was declared implicitly `extern' and later `static'",
1884 IDENTIFIER_POINTER (name));
1886 else
1887 pedwarn ("`%s' was declared `extern' and later `static'",
1888 IDENTIFIER_POINTER (name));
1891 else
1893 /* Here to install a non-global value. */
1894 tree oldlocal = IDENTIFIER_LOCAL_VALUE (name);
1895 tree oldglobal = IDENTIFIER_GLOBAL_VALUE (name);
1897 IDENTIFIER_LOCAL_VALUE (name) = x;
1899 /* If this is an extern function declaration, see if we
1900 have a global definition or declaration for the function. */
1901 if (oldlocal == 0
1902 && oldglobal != 0
1903 && TREE_CODE (x) == FUNCTION_DECL
1904 && TREE_CODE (oldglobal) == FUNCTION_DECL
1905 && DECL_EXTERNAL (x)
1906 && ! DECL_DECLARED_INLINE_P (x))
1908 /* We have one. Their types must agree. */
1909 if (! comptypes (TREE_TYPE (x),
1910 TREE_TYPE (IDENTIFIER_GLOBAL_VALUE (name))))
1911 pedwarn_with_decl (x, "extern declaration of `%s' doesn't match global one");
1912 else
1914 /* Inner extern decl is inline if global one is.
1915 Copy enough to really inline it. */
1916 if (DECL_DECLARED_INLINE_P (oldglobal))
1918 DECL_DECLARED_INLINE_P (x)
1919 = DECL_DECLARED_INLINE_P (oldglobal);
1920 DECL_INLINE (x) = DECL_INLINE (oldglobal);
1921 DECL_INITIAL (x) = (current_function_decl == oldglobal
1922 ? 0 : DECL_INITIAL (oldglobal));
1923 DECL_SAVED_INSNS (x) = DECL_SAVED_INSNS (oldglobal);
1924 DECL_NUM_STMTS (x) = DECL_NUM_STMTS (oldglobal);
1925 DECL_ARGUMENTS (x) = DECL_ARGUMENTS (oldglobal);
1926 DECL_RESULT (x) = DECL_RESULT (oldglobal);
1927 TREE_ASM_WRITTEN (x) = TREE_ASM_WRITTEN (oldglobal);
1928 DECL_ABSTRACT_ORIGIN (x)
1929 = DECL_ABSTRACT_ORIGIN (oldglobal);
1931 /* Inner extern decl is built-in if global one is. */
1932 if (DECL_BUILT_IN (oldglobal))
1934 DECL_BUILT_IN_CLASS (x) = DECL_BUILT_IN_CLASS (oldglobal);
1935 DECL_FUNCTION_CODE (x) = DECL_FUNCTION_CODE (oldglobal);
1937 /* Keep the arg types from a file-scope fcn defn. */
1938 if (TYPE_ARG_TYPES (TREE_TYPE (oldglobal)) != 0
1939 && DECL_INITIAL (oldglobal)
1940 && TYPE_ARG_TYPES (TREE_TYPE (x)) == 0)
1941 TREE_TYPE (x) = TREE_TYPE (oldglobal);
1945 #if 0
1946 /* This case is probably sometimes the right thing to do. */
1947 /* If we have a local external declaration,
1948 then any file-scope declaration should not
1949 have been static. */
1950 if (oldlocal == 0 && oldglobal != 0
1951 && !TREE_PUBLIC (oldglobal)
1952 && DECL_EXTERNAL (x) && TREE_PUBLIC (x))
1953 warning ("`%s' locally external but globally static",
1954 IDENTIFIER_POINTER (name));
1955 #endif
1957 /* If we have a local external declaration,
1958 and no file-scope declaration has yet been seen,
1959 then if we later have a file-scope decl it must not be static. */
1960 if (oldlocal == 0
1961 && DECL_EXTERNAL (x)
1962 && TREE_PUBLIC (x))
1964 if (oldglobal == 0)
1965 TREE_PUBLIC (name) = 1;
1967 /* Save this decl, so that we can do type checking against
1968 other decls after it falls out of scope.
1970 Only save it once. This prevents temporary decls created in
1971 expand_inline_function from being used here, since this
1972 will have been set when the inline function was parsed.
1973 It also helps give slightly better warnings. */
1974 if (IDENTIFIER_LIMBO_VALUE (name) == 0)
1975 IDENTIFIER_LIMBO_VALUE (name) = x;
1978 warn_if_shadowing (x, oldlocal);
1980 /* If storing a local value, there may already be one (inherited).
1981 If so, record it for restoration when this binding level ends. */
1982 if (oldlocal != 0)
1983 b->shadowed = tree_cons (name, oldlocal, b->shadowed);
1986 /* Keep list of variables in this level with incomplete type.
1987 If the input is erroneous, we can have error_mark in the type
1988 slot (e.g. "f(void a, ...)") - that doesn't count as an
1989 incomplete type. */
1990 if (TREE_TYPE (x) != error_mark_node
1991 && !COMPLETE_TYPE_P (TREE_TYPE (x)))
1993 tree element = TREE_TYPE (x);
1995 while (TREE_CODE (element) == ARRAY_TYPE)
1996 element = TREE_TYPE (element);
1997 if (TREE_CODE (element) == RECORD_TYPE
1998 || TREE_CODE (element) == UNION_TYPE)
1999 b->incomplete_list = tree_cons (NULL_TREE, x, b->incomplete_list);
2003 /* Put decls on list in reverse order.
2004 We will reverse them later if necessary. */
2005 TREE_CHAIN (x) = b->names;
2006 b->names = x;
2008 return x;
2011 /* Like pushdecl, only it places X in GLOBAL_BINDING_LEVEL, if appropriate. */
2013 tree
2014 pushdecl_top_level (x)
2015 tree x;
2017 tree t;
2018 struct binding_level *b = current_binding_level;
2020 current_binding_level = global_binding_level;
2021 t = pushdecl (x);
2022 current_binding_level = b;
2023 return t;
2026 /* Generate an implicit declaration for identifier FUNCTIONID
2027 as a function of type int (). Print a warning if appropriate. */
2029 tree
2030 implicitly_declare (functionid)
2031 tree functionid;
2033 tree decl;
2034 int traditional_warning = 0;
2035 /* Only one "implicit declaration" warning per identifier. */
2036 int implicit_warning;
2038 /* We used to reuse an old implicit decl here,
2039 but this loses with inline functions because it can clobber
2040 the saved decl chains. */
2041 #if 0
2042 if (IDENTIFIER_IMPLICIT_DECL (functionid) != 0)
2043 decl = IDENTIFIER_IMPLICIT_DECL (functionid);
2044 else
2045 #endif
2046 decl = build_decl (FUNCTION_DECL, functionid, default_function_type);
2048 /* Warn of implicit decl following explicit local extern decl.
2049 This is probably a program designed for traditional C. */
2050 if (TREE_PUBLIC (functionid) && IDENTIFIER_GLOBAL_VALUE (functionid) == 0)
2051 traditional_warning = 1;
2053 /* Warn once of an implicit declaration. */
2054 implicit_warning = (IDENTIFIER_IMPLICIT_DECL (functionid) == 0);
2056 DECL_EXTERNAL (decl) = 1;
2057 TREE_PUBLIC (decl) = 1;
2059 /* Record that we have an implicit decl and this is it. */
2060 IDENTIFIER_IMPLICIT_DECL (functionid) = decl;
2062 /* ANSI standard says implicit declarations are in the innermost block.
2063 So we record the decl in the standard fashion. */
2064 pushdecl (decl);
2066 /* This is a no-op in c-lang.c or something real in objc-act.c. */
2067 if (flag_objc)
2068 objc_check_decl (decl);
2070 rest_of_decl_compilation (decl, NULL, 0, 0);
2072 if (implicit_warning)
2073 implicit_decl_warning (functionid);
2074 else if (warn_traditional && traditional_warning)
2075 warning ("function `%s' was previously declared within a block",
2076 IDENTIFIER_POINTER (functionid));
2078 /* Write a record describing this implicit function declaration to the
2079 prototypes file (if requested). */
2081 gen_aux_info_record (decl, 0, 1, 0);
2083 /* Possibly apply some default attributes to this implicit declaration. */
2084 decl_attributes (&decl, NULL_TREE, 0);
2086 return decl;
2089 void
2090 implicit_decl_warning (id)
2091 tree id;
2093 const char *name = IDENTIFIER_POINTER (id);
2094 if (mesg_implicit_function_declaration == 2)
2095 error ("implicit declaration of function `%s'", name);
2096 else if (mesg_implicit_function_declaration == 1)
2097 warning ("implicit declaration of function `%s'", name);
2100 /* Return zero if the declaration NEWDECL is valid
2101 when the declaration OLDDECL (assumed to be for the same name)
2102 has already been seen.
2103 Otherwise return 1 if NEWDECL is a redefinition, 2 if it is a redeclaration,
2104 and 3 if it is a conflicting declaration. */
2106 static int
2107 redeclaration_error_message (newdecl, olddecl)
2108 tree newdecl, olddecl;
2110 if (TREE_CODE (newdecl) == TYPE_DECL)
2112 /* Do not complain about type redeclarations where at least one
2113 declaration was in a system header. */
2114 if (DECL_IN_SYSTEM_HEADER (olddecl) || DECL_IN_SYSTEM_HEADER (newdecl))
2115 return 0;
2116 return 1;
2118 else if (TREE_CODE (newdecl) == FUNCTION_DECL)
2120 /* Declarations of functions can insist on internal linkage
2121 but they can't be inconsistent with internal linkage,
2122 so there can be no error on that account.
2123 However defining the same name twice is no good. */
2124 if (DECL_INITIAL (olddecl) != 0 && DECL_INITIAL (newdecl) != 0
2125 /* However, defining once as extern inline and a second
2126 time in another way is ok. */
2127 && ! (DECL_DECLARED_INLINE_P (olddecl) && DECL_EXTERNAL (olddecl)
2128 && ! (DECL_DECLARED_INLINE_P (newdecl)
2129 && DECL_EXTERNAL (newdecl))))
2130 return 1;
2131 return 0;
2133 else if (DECL_CONTEXT (newdecl) == NULL_TREE)
2135 /* Objects declared at top level: */
2136 /* If at least one is a reference, it's ok. */
2137 if (DECL_EXTERNAL (newdecl) || DECL_EXTERNAL (olddecl))
2138 return 0;
2139 /* Reject two definitions. */
2140 if (DECL_INITIAL (olddecl) != 0 && DECL_INITIAL (newdecl) != 0)
2141 return 1;
2142 /* Now we have two tentative defs, or one tentative and one real def. */
2143 /* Insist that the linkage match. */
2144 if (TREE_PUBLIC (olddecl) != TREE_PUBLIC (newdecl))
2145 return 3;
2146 return 0;
2148 else if (current_binding_level->parm_flag
2149 && TREE_ASM_WRITTEN (olddecl) && !TREE_ASM_WRITTEN (newdecl))
2150 return 0;
2151 else
2153 /* Newdecl has block scope. If olddecl has block scope also, then
2154 reject two definitions, and reject a definition together with an
2155 external reference. Otherwise, it is OK, because newdecl must
2156 be an extern reference to olddecl. */
2157 if (!(DECL_EXTERNAL (newdecl) && DECL_EXTERNAL (olddecl))
2158 && DECL_CONTEXT (newdecl) == DECL_CONTEXT (olddecl))
2159 return 2;
2160 return 0;
2164 /* Get the LABEL_DECL corresponding to identifier ID as a label.
2165 Create one if none exists so far for the current function.
2166 This function is called for both label definitions and label references. */
2168 tree
2169 lookup_label (id)
2170 tree id;
2172 tree decl = IDENTIFIER_LABEL_VALUE (id);
2174 if (current_function_decl == 0)
2176 error ("label %s referenced outside of any function",
2177 IDENTIFIER_POINTER (id));
2178 return 0;
2181 /* Use a label already defined or ref'd with this name. */
2182 if (decl != 0)
2184 /* But not if it is inherited and wasn't declared to be inheritable. */
2185 if (DECL_CONTEXT (decl) != current_function_decl
2186 && ! C_DECLARED_LABEL_FLAG (decl))
2187 return shadow_label (id);
2188 return decl;
2191 decl = build_decl (LABEL_DECL, id, void_type_node);
2193 /* A label not explicitly declared must be local to where it's ref'd. */
2194 DECL_CONTEXT (decl) = current_function_decl;
2196 DECL_MODE (decl) = VOIDmode;
2198 /* Say where one reference is to the label,
2199 for the sake of the error if it is not defined. */
2200 DECL_SOURCE_LINE (decl) = lineno;
2201 DECL_SOURCE_FILE (decl) = input_filename;
2203 IDENTIFIER_LABEL_VALUE (id) = decl;
2205 named_labels = tree_cons (NULL_TREE, decl, named_labels);
2207 return decl;
2210 /* Make a label named NAME in the current function,
2211 shadowing silently any that may be inherited from containing functions
2212 or containing scopes.
2214 Note that valid use, if the label being shadowed
2215 comes from another scope in the same function,
2216 requires calling declare_nonlocal_label right away. */
2218 tree
2219 shadow_label (name)
2220 tree name;
2222 tree decl = IDENTIFIER_LABEL_VALUE (name);
2224 if (decl != 0)
2226 tree dup;
2228 /* Check to make sure that the label hasn't already been declared
2229 at this label scope */
2230 for (dup = named_labels; dup; dup = TREE_CHAIN (dup))
2231 if (TREE_VALUE (dup) == decl)
2233 error ("duplicate label declaration `%s'",
2234 IDENTIFIER_POINTER (name));
2235 error_with_decl (TREE_VALUE (dup),
2236 "this is a previous declaration");
2237 /* Just use the previous declaration. */
2238 return lookup_label (name);
2241 shadowed_labels = tree_cons (NULL_TREE, decl, shadowed_labels);
2242 IDENTIFIER_LABEL_VALUE (name) = decl = 0;
2245 return lookup_label (name);
2248 /* Define a label, specifying the location in the source file.
2249 Return the LABEL_DECL node for the label, if the definition is valid.
2250 Otherwise return 0. */
2252 tree
2253 define_label (filename, line, name)
2254 const char *filename;
2255 int line;
2256 tree name;
2258 tree decl = lookup_label (name);
2260 /* If label with this name is known from an outer context, shadow it. */
2261 if (decl != 0 && DECL_CONTEXT (decl) != current_function_decl)
2263 shadowed_labels = tree_cons (NULL_TREE, decl, shadowed_labels);
2264 IDENTIFIER_LABEL_VALUE (name) = 0;
2265 decl = lookup_label (name);
2268 if (warn_traditional && !in_system_header && lookup_name (name))
2269 warning_with_file_and_line (filename, line,
2270 "traditional C lacks a separate namespace for labels, identifier `%s' conflicts",
2271 IDENTIFIER_POINTER (name));
2273 if (DECL_INITIAL (decl) != 0)
2275 error_with_file_and_line (filename, line, "duplicate label `%s'",
2276 IDENTIFIER_POINTER (name));
2277 return 0;
2279 else
2281 /* Mark label as having been defined. */
2282 DECL_INITIAL (decl) = error_mark_node;
2283 /* Say where in the source. */
2284 DECL_SOURCE_FILE (decl) = filename;
2285 DECL_SOURCE_LINE (decl) = line;
2286 return decl;
2290 /* Return the list of declarations of the current level.
2291 Note that this list is in reverse order unless/until
2292 you nreverse it; and when you do nreverse it, you must
2293 store the result back using `storedecls' or you will lose. */
2295 tree
2296 getdecls ()
2298 return current_binding_level->names;
2301 /* Return the list of type-tags (for structs, etc) of the current level. */
2303 tree
2304 gettags ()
2306 return current_binding_level->tags;
2309 /* Store the list of declarations of the current level.
2310 This is done for the parameter declarations of a function being defined,
2311 after they are modified in the light of any missing parameters. */
2313 static void
2314 storedecls (decls)
2315 tree decls;
2317 current_binding_level->names = decls;
2320 /* Similarly, store the list of tags of the current level. */
2322 static void
2323 storetags (tags)
2324 tree tags;
2326 current_binding_level->tags = tags;
2329 /* Given NAME, an IDENTIFIER_NODE,
2330 return the structure (or union or enum) definition for that name.
2331 Searches binding levels from BINDING_LEVEL up to the global level.
2332 If THISLEVEL_ONLY is nonzero, searches only the specified context
2333 (but skips any tag-transparent contexts to find one that is
2334 meaningful for tags).
2335 CODE says which kind of type the caller wants;
2336 it is RECORD_TYPE or UNION_TYPE or ENUMERAL_TYPE.
2337 If the wrong kind of type is found, an error is reported. */
2339 static tree
2340 lookup_tag (code, name, binding_level, thislevel_only)
2341 enum tree_code code;
2342 struct binding_level *binding_level;
2343 tree name;
2344 int thislevel_only;
2346 struct binding_level *level;
2347 int thislevel = 1;
2349 for (level = binding_level; level; level = level->level_chain)
2351 tree tail;
2352 for (tail = level->tags; tail; tail = TREE_CHAIN (tail))
2354 if (TREE_PURPOSE (tail) == name)
2356 if (TREE_CODE (TREE_VALUE (tail)) != code)
2358 /* Definition isn't the kind we were looking for. */
2359 pending_invalid_xref = name;
2360 pending_invalid_xref_file = input_filename;
2361 pending_invalid_xref_line = lineno;
2362 /* If in the same binding level as a declaration as a tag
2363 of a different type, this must not be allowed to
2364 shadow that tag, so give the error immediately.
2365 (For example, "struct foo; union foo;" is invalid.) */
2366 if (thislevel)
2367 pending_xref_error ();
2369 return TREE_VALUE (tail);
2372 if (! level->tag_transparent)
2374 if (thislevel_only)
2375 return NULL_TREE;
2376 thislevel = 0;
2379 return NULL_TREE;
2382 /* Print an error message now
2383 for a recent invalid struct, union or enum cross reference.
2384 We don't print them immediately because they are not invalid
2385 when used in the `struct foo;' construct for shadowing. */
2387 void
2388 pending_xref_error ()
2390 if (pending_invalid_xref != 0)
2391 error_with_file_and_line (pending_invalid_xref_file,
2392 pending_invalid_xref_line,
2393 "`%s' defined as wrong kind of tag",
2394 IDENTIFIER_POINTER (pending_invalid_xref));
2395 pending_invalid_xref = 0;
2398 /* Given a type, find the tag that was defined for it and return the tag name.
2399 Otherwise return 0. */
2401 static tree
2402 lookup_tag_reverse (type)
2403 tree type;
2405 struct binding_level *level;
2407 for (level = current_binding_level; level; level = level->level_chain)
2409 tree tail;
2410 for (tail = level->tags; tail; tail = TREE_CHAIN (tail))
2412 if (TREE_VALUE (tail) == type)
2413 return TREE_PURPOSE (tail);
2416 return NULL_TREE;
2419 /* Look up NAME in the current binding level and its superiors
2420 in the namespace of variables, functions and typedefs.
2421 Return a ..._DECL node of some kind representing its definition,
2422 or return 0 if it is undefined. */
2424 tree
2425 lookup_name (name)
2426 tree name;
2428 tree val;
2430 if (current_binding_level != global_binding_level
2431 && IDENTIFIER_LOCAL_VALUE (name))
2432 val = IDENTIFIER_LOCAL_VALUE (name);
2433 else
2434 val = IDENTIFIER_GLOBAL_VALUE (name);
2435 return val;
2438 /* Similar to `lookup_name' but look only at current binding level. */
2440 tree
2441 lookup_name_current_level (name)
2442 tree name;
2444 tree t;
2446 if (current_binding_level == global_binding_level)
2447 return IDENTIFIER_GLOBAL_VALUE (name);
2449 if (IDENTIFIER_LOCAL_VALUE (name) == 0)
2450 return 0;
2452 for (t = current_binding_level->names; t; t = TREE_CHAIN (t))
2453 if (DECL_NAME (t) == name)
2454 break;
2456 return t;
2459 /* Create the predefined scalar types of C,
2460 and some nodes representing standard constants (0, 1, (void *) 0).
2461 Initialize the global binding level.
2462 Make definitions for built-in primitive functions. */
2464 void
2465 c_init_decl_processing ()
2467 tree endlink;
2468 tree ptr_ftype_void, ptr_ftype_ptr;
2470 /* Adds some ggc roots, and reserved words for c-parse.in. */
2471 c_parse_init ();
2473 current_function_decl = NULL;
2474 named_labels = NULL;
2475 current_binding_level = NULL_BINDING_LEVEL;
2476 free_binding_level = NULL_BINDING_LEVEL;
2478 /* Make the binding_level structure for global names. */
2479 pushlevel (0);
2480 global_binding_level = current_binding_level;
2482 build_common_tree_nodes (flag_signed_char);
2484 c_common_nodes_and_builtins ();
2486 boolean_type_node = integer_type_node;
2487 boolean_true_node = integer_one_node;
2488 boolean_false_node = integer_zero_node;
2490 c_bool_type_node = make_unsigned_type (BOOL_TYPE_SIZE);
2491 TREE_SET_CODE (c_bool_type_node, BOOLEAN_TYPE);
2492 TYPE_MAX_VALUE (c_bool_type_node) = build_int_2 (1, 0);
2493 TREE_TYPE (TYPE_MAX_VALUE (c_bool_type_node)) = c_bool_type_node;
2494 TYPE_PRECISION (c_bool_type_node) = 1;
2495 pushdecl (build_decl (TYPE_DECL, get_identifier ("_Bool"),
2496 c_bool_type_node));
2497 c_bool_false_node = build_int_2 (0, 0);
2498 TREE_TYPE (c_bool_false_node) = c_bool_type_node;
2499 c_bool_true_node = build_int_2 (1, 0);
2500 TREE_TYPE (c_bool_true_node) = c_bool_type_node;
2502 endlink = void_list_node;
2503 ptr_ftype_void = build_function_type (ptr_type_node, endlink);
2504 ptr_ftype_ptr
2505 = build_function_type (ptr_type_node,
2506 tree_cons (NULL_TREE, ptr_type_node, endlink));
2508 pedantic_lvalues = pedantic;
2510 make_fname_decl = c_make_fname_decl;
2511 start_fname_decls ();
2514 /* Create the VAR_DECL for __FUNCTION__ etc. ID is the name to give the
2515 decl, NAME is the initialization string and TYPE_DEP indicates whether
2516 NAME depended on the type of the function. As we don't yet implement
2517 delayed emission of static data, we mark the decl as emitted
2518 so it is not placed in the output. Anything using it must therefore pull
2519 out the STRING_CST initializer directly. This does mean that these names
2520 are string merging candidates, which is wrong for C99's __func__. FIXME. */
2522 static tree
2523 c_make_fname_decl (id, type_dep)
2524 tree id;
2525 int type_dep;
2527 const char *name = fname_as_string (type_dep);
2528 tree decl, type, init;
2529 size_t length = strlen (name);
2531 type = build_array_type
2532 (build_qualified_type (char_type_node, TYPE_QUAL_CONST),
2533 build_index_type (size_int (length)));
2535 decl = build_decl (VAR_DECL, id, type);
2536 /* We don't push the decl, so have to set its context here. */
2537 DECL_CONTEXT (decl) = current_function_decl;
2539 TREE_STATIC (decl) = 1;
2540 TREE_READONLY (decl) = 1;
2541 DECL_ARTIFICIAL (decl) = 1;
2543 init = build_string (length + 1, name);
2544 TREE_TYPE (init) = type;
2545 DECL_INITIAL (decl) = init;
2547 TREE_USED (decl) = 1;
2549 if (current_function_decl)
2551 /* Add the decls to the outermost block. */
2552 struct binding_level *b = current_binding_level;
2553 struct binding_level *old = b;
2554 while (b->level_chain->parm_flag == 0)
2555 b = b->level_chain;
2556 current_binding_level = b;
2557 pushdecl (decl);
2558 current_binding_level = old;
2561 finish_decl (decl, init, NULL_TREE);
2563 return decl;
2566 /* Return a definition for a builtin function named NAME and whose data type
2567 is TYPE. TYPE should be a function type with argument types.
2568 FUNCTION_CODE tells later passes how to compile calls to this function.
2569 See tree.h for its possible values.
2571 If LIBRARY_NAME is nonzero, use that for DECL_ASSEMBLER_NAME,
2572 the name to be called if we can't opencode the function. If
2573 ATTRS is nonzero, use that for the function's attribute list. */
2575 tree
2576 builtin_function (name, type, function_code, class, library_name, attrs)
2577 const char *name;
2578 tree type;
2579 int function_code;
2580 enum built_in_class class;
2581 const char *library_name;
2582 tree attrs;
2584 tree decl = build_decl (FUNCTION_DECL, get_identifier (name), type);
2585 DECL_EXTERNAL (decl) = 1;
2586 TREE_PUBLIC (decl) = 1;
2587 if (library_name)
2588 SET_DECL_ASSEMBLER_NAME (decl, get_identifier (library_name));
2589 make_decl_rtl (decl, NULL);
2590 pushdecl (decl);
2591 DECL_BUILT_IN_CLASS (decl) = class;
2592 DECL_FUNCTION_CODE (decl) = function_code;
2594 /* Warn if a function in the namespace for users
2595 is used without an occasion to consider it declared. */
2596 if (name[0] != '_' || name[1] != '_')
2597 C_DECL_ANTICIPATED (decl) = 1;
2599 /* Possibly apply some default attributes to this built-in function. */
2600 if (attrs)
2601 decl_attributes (&decl, attrs, ATTR_FLAG_BUILT_IN);
2602 else
2603 decl_attributes (&decl, NULL_TREE, 0);
2605 return decl;
2608 /* Apply default attributes to a function, if a system function with default
2609 attributes. */
2611 void
2612 c_insert_default_attributes (decl)
2613 tree decl;
2615 if (!TREE_PUBLIC (decl))
2616 return;
2617 c_common_insert_default_attributes (decl);
2620 /* Called when a declaration is seen that contains no names to declare.
2621 If its type is a reference to a structure, union or enum inherited
2622 from a containing scope, shadow that tag name for the current scope
2623 with a forward reference.
2624 If its type defines a new named structure or union
2625 or defines an enum, it is valid but we need not do anything here.
2626 Otherwise, it is an error. */
2628 void
2629 shadow_tag (declspecs)
2630 tree declspecs;
2632 shadow_tag_warned (declspecs, 0);
2635 void
2636 shadow_tag_warned (declspecs, warned)
2637 tree declspecs;
2638 int warned;
2639 /* 1 => we have done a pedwarn. 2 => we have done a warning, but
2640 no pedwarn. */
2642 int found_tag = 0;
2643 tree link;
2644 tree specs, attrs;
2646 pending_invalid_xref = 0;
2648 /* Remove the attributes from declspecs, since they will confuse the
2649 following code. */
2650 split_specs_attrs (declspecs, &specs, &attrs);
2652 for (link = specs; link; link = TREE_CHAIN (link))
2654 tree value = TREE_VALUE (link);
2655 enum tree_code code = TREE_CODE (value);
2657 if (code == RECORD_TYPE || code == UNION_TYPE || code == ENUMERAL_TYPE)
2658 /* Used to test also that TYPE_SIZE (value) != 0.
2659 That caused warning for `struct foo;' at top level in the file. */
2661 tree name = lookup_tag_reverse (value);
2662 tree t;
2664 found_tag++;
2666 if (name == 0)
2668 if (warned != 1 && code != ENUMERAL_TYPE)
2669 /* Empty unnamed enum OK */
2671 pedwarn ("unnamed struct/union that defines no instances");
2672 warned = 1;
2675 else
2677 t = lookup_tag (code, name, current_binding_level, 1);
2679 if (t == 0)
2681 t = make_node (code);
2682 pushtag (name, t);
2686 else
2688 if (!warned && ! in_system_header)
2690 warning ("useless keyword or type name in empty declaration");
2691 warned = 2;
2696 if (found_tag > 1)
2697 error ("two types specified in one empty declaration");
2699 if (warned != 1)
2701 if (found_tag == 0)
2702 pedwarn ("empty declaration");
2706 /* Construct an array declarator. EXPR is the expression inside [], or
2707 NULL_TREE. QUALS are the type qualifiers inside the [] (to be applied
2708 to the pointer to which a parameter array is converted). STATIC_P is
2709 nonzero if "static" is inside the [], zero otherwise. VLA_UNSPEC_P
2710 is nonzero is the array is [*], a VLA of unspecified length which is
2711 nevertheless a complete type (not currently implemented by GCC),
2712 zero otherwise. The declarator is constructed as an ARRAY_REF
2713 (to be decoded by grokdeclarator), whose operand 0 is what's on the
2714 left of the [] (filled by in set_array_declarator_type) and operand 1
2715 is the expression inside; whose TREE_TYPE is the type qualifiers and
2716 which has TREE_STATIC set if "static" is used. */
2718 tree
2719 build_array_declarator (expr, quals, static_p, vla_unspec_p)
2720 tree expr;
2721 tree quals;
2722 int static_p;
2723 int vla_unspec_p;
2725 tree decl;
2726 decl = build_nt (ARRAY_REF, NULL_TREE, expr);
2727 TREE_TYPE (decl) = quals;
2728 TREE_STATIC (decl) = (static_p ? 1 : 0);
2729 if (pedantic && !flag_isoc99)
2731 if (static_p || quals != NULL_TREE)
2732 pedwarn ("ISO C90 does not support `static' or type qualifiers in parameter array declarators");
2733 if (vla_unspec_p)
2734 pedwarn ("ISO C90 does not support `[*]' array declarators");
2736 if (vla_unspec_p)
2737 warning ("GCC does not yet properly implement `[*]' array declarators");
2738 return decl;
2741 /* Set the type of an array declarator. DECL is the declarator, as
2742 constructed by build_array_declarator; TYPE is what appears on the left
2743 of the [] and goes in operand 0. ABSTRACT_P is nonzero if it is an
2744 abstract declarator, zero otherwise; this is used to reject static and
2745 type qualifiers in abstract declarators, where they are not in the
2746 C99 grammar. */
2748 tree
2749 set_array_declarator_type (decl, type, abstract_p)
2750 tree decl;
2751 tree type;
2752 int abstract_p;
2754 TREE_OPERAND (decl, 0) = type;
2755 if (abstract_p && (TREE_TYPE (decl) != NULL_TREE || TREE_STATIC (decl)))
2756 error ("static or type qualifiers in abstract declarator");
2757 return decl;
2760 /* Decode a "typename", such as "int **", returning a ..._TYPE node. */
2762 tree
2763 groktypename (typename)
2764 tree typename;
2766 tree specs, attrs;
2768 if (TREE_CODE (typename) != TREE_LIST)
2769 return typename;
2771 split_specs_attrs (TREE_PURPOSE (typename), &specs, &attrs);
2773 typename = grokdeclarator (TREE_VALUE (typename), specs, TYPENAME, 0);
2775 /* Apply attributes. */
2776 decl_attributes (&typename, attrs, 0);
2778 return typename;
2781 /* Return a PARM_DECL node for a given pair of specs and declarator. */
2783 tree
2784 groktypename_in_parm_context (typename)
2785 tree typename;
2787 if (TREE_CODE (typename) != TREE_LIST)
2788 return typename;
2789 return grokdeclarator (TREE_VALUE (typename),
2790 TREE_PURPOSE (typename),
2791 PARM, 0);
2794 /* Decode a declarator in an ordinary declaration or data definition.
2795 This is called as soon as the type information and variable name
2796 have been parsed, before parsing the initializer if any.
2797 Here we create the ..._DECL node, fill in its type,
2798 and put it on the list of decls for the current context.
2799 The ..._DECL node is returned as the value.
2801 Exception: for arrays where the length is not specified,
2802 the type is left null, to be filled in by `finish_decl'.
2804 Function definitions do not come here; they go to start_function
2805 instead. However, external and forward declarations of functions
2806 do go through here. Structure field declarations are done by
2807 grokfield and not through here. */
2809 tree
2810 start_decl (declarator, declspecs, initialized, attributes)
2811 tree declarator, declspecs;
2812 int initialized;
2813 tree attributes;
2815 tree decl;
2816 tree tem;
2818 /* An object declared as __attribute__((deprecated)) suppresses
2819 warnings of uses of other deprecated items. */
2820 if (lookup_attribute ("deprecated", attributes))
2821 deprecated_state = DEPRECATED_SUPPRESS;
2823 decl = grokdeclarator (declarator, declspecs,
2824 NORMAL, initialized);
2826 deprecated_state = DEPRECATED_NORMAL;
2828 if (warn_main > 0 && TREE_CODE (decl) != FUNCTION_DECL
2829 && MAIN_NAME_P (DECL_NAME (decl)))
2830 warning_with_decl (decl, "`%s' is usually a function");
2832 if (initialized)
2833 /* Is it valid for this decl to have an initializer at all?
2834 If not, set INITIALIZED to zero, which will indirectly
2835 tell `finish_decl' to ignore the initializer once it is parsed. */
2836 switch (TREE_CODE (decl))
2838 case TYPE_DECL:
2839 error ("typedef `%s' is initialized (use __typeof__ instead)",
2840 IDENTIFIER_POINTER (DECL_NAME (decl)));
2841 initialized = 0;
2842 break;
2844 case FUNCTION_DECL:
2845 error ("function `%s' is initialized like a variable",
2846 IDENTIFIER_POINTER (DECL_NAME (decl)));
2847 initialized = 0;
2848 break;
2850 case PARM_DECL:
2851 /* DECL_INITIAL in a PARM_DECL is really DECL_ARG_TYPE. */
2852 error ("parameter `%s' is initialized",
2853 IDENTIFIER_POINTER (DECL_NAME (decl)));
2854 initialized = 0;
2855 break;
2857 default:
2858 /* Don't allow initializations for incomplete types
2859 except for arrays which might be completed by the initialization. */
2861 /* This can happen if the array size is an undefined macro. We already
2862 gave a warning, so we don't need another one. */
2863 if (TREE_TYPE (decl) == error_mark_node)
2864 initialized = 0;
2865 else if (COMPLETE_TYPE_P (TREE_TYPE (decl)))
2867 /* A complete type is ok if size is fixed. */
2869 if (TREE_CODE (TYPE_SIZE (TREE_TYPE (decl))) != INTEGER_CST
2870 || C_DECL_VARIABLE_SIZE (decl))
2872 error ("variable-sized object may not be initialized");
2873 initialized = 0;
2876 else if (TREE_CODE (TREE_TYPE (decl)) != ARRAY_TYPE)
2878 error ("variable `%s' has initializer but incomplete type",
2879 IDENTIFIER_POINTER (DECL_NAME (decl)));
2880 initialized = 0;
2882 else if (!COMPLETE_TYPE_P (TREE_TYPE (TREE_TYPE (decl))))
2884 error ("elements of array `%s' have incomplete type",
2885 IDENTIFIER_POINTER (DECL_NAME (decl)));
2886 initialized = 0;
2890 if (initialized)
2892 #if 0
2893 /* Seems redundant with grokdeclarator. */
2894 if (current_binding_level != global_binding_level
2895 && DECL_EXTERNAL (decl)
2896 && TREE_CODE (decl) != FUNCTION_DECL)
2897 warning ("declaration of `%s' has `extern' and is initialized",
2898 IDENTIFIER_POINTER (DECL_NAME (decl)));
2899 #endif
2900 DECL_EXTERNAL (decl) = 0;
2901 if (current_binding_level == global_binding_level)
2902 TREE_STATIC (decl) = 1;
2904 /* Tell `pushdecl' this is an initialized decl
2905 even though we don't yet have the initializer expression.
2906 Also tell `finish_decl' it may store the real initializer. */
2907 DECL_INITIAL (decl) = error_mark_node;
2910 /* If this is a function declaration, write a record describing it to the
2911 prototypes file (if requested). */
2913 if (TREE_CODE (decl) == FUNCTION_DECL)
2914 gen_aux_info_record (decl, 0, 0, TYPE_ARG_TYPES (TREE_TYPE (decl)) != 0);
2916 /* ANSI specifies that a tentative definition which is not merged with
2917 a non-tentative definition behaves exactly like a definition with an
2918 initializer equal to zero. (Section 3.7.2)
2920 -fno-common gives strict ANSI behavior, though this tends to break
2921 a large body of code that grew up without this rule.
2923 Thread-local variables are never common, since there's no entrenched
2924 body of code to break, and it allows more efficient variable references
2925 in the presense of dynamic linking. */
2927 if (TREE_CODE (decl) == VAR_DECL
2928 && !initialized
2929 && TREE_PUBLIC (decl)
2930 && !DECL_THREAD_LOCAL (decl)
2931 && !flag_no_common)
2932 DECL_COMMON (decl) = 1;
2934 /* Set attributes here so if duplicate decl, will have proper attributes. */
2935 decl_attributes (&decl, attributes, 0);
2937 /* If #pragma weak was used, mark the decl weak now. */
2938 if (current_binding_level == global_binding_level)
2939 maybe_apply_pragma_weak (decl);
2941 if (TREE_CODE (decl) == FUNCTION_DECL
2942 && DECL_DECLARED_INLINE_P (decl)
2943 && DECL_UNINLINABLE (decl)
2944 && lookup_attribute ("noinline", DECL_ATTRIBUTES (decl)))
2945 warning_with_decl (decl,
2946 "inline function `%s' given attribute noinline");
2948 /* Add this decl to the current binding level.
2949 TEM may equal DECL or it may be a previous decl of the same name. */
2950 tem = pushdecl (decl);
2952 /* For a local variable, define the RTL now. */
2953 if (current_binding_level != global_binding_level
2954 /* But not if this is a duplicate decl
2955 and we preserved the rtl from the previous one
2956 (which may or may not happen). */
2957 && !DECL_RTL_SET_P (tem)
2958 && !DECL_CONTEXT (tem))
2960 if (TREE_TYPE (tem) != error_mark_node
2961 && COMPLETE_TYPE_P (TREE_TYPE (tem)))
2962 expand_decl (tem);
2963 else if (TREE_CODE (TREE_TYPE (tem)) == ARRAY_TYPE
2964 && DECL_INITIAL (tem) != 0)
2965 expand_decl (tem);
2968 return tem;
2971 /* Finish processing of a declaration;
2972 install its initial value.
2973 If the length of an array type is not known before,
2974 it must be determined now, from the initial value, or it is an error. */
2976 void
2977 finish_decl (decl, init, asmspec_tree)
2978 tree decl, init;
2979 tree asmspec_tree;
2981 tree type = TREE_TYPE (decl);
2982 int was_incomplete = (DECL_SIZE (decl) == 0);
2983 const char *asmspec = 0;
2985 /* If a name was specified, get the string. */
2986 if (current_binding_level == global_binding_level)
2987 asmspec_tree = maybe_apply_renaming_pragma (decl, asmspec_tree);
2988 if (asmspec_tree)
2989 asmspec = TREE_STRING_POINTER (asmspec_tree);
2991 /* If `start_decl' didn't like having an initialization, ignore it now. */
2992 if (init != 0 && DECL_INITIAL (decl) == 0)
2993 init = 0;
2995 /* Don't crash if parm is initialized. */
2996 if (TREE_CODE (decl) == PARM_DECL)
2997 init = 0;
2999 if (init)
3000 store_init_value (decl, init);
3002 /* Deduce size of array from initialization, if not already known */
3003 if (TREE_CODE (type) == ARRAY_TYPE
3004 && TYPE_DOMAIN (type) == 0
3005 && TREE_CODE (decl) != TYPE_DECL)
3007 int do_default
3008 = (TREE_STATIC (decl)
3009 /* Even if pedantic, an external linkage array
3010 may have incomplete type at first. */
3011 ? pedantic && !TREE_PUBLIC (decl)
3012 : !DECL_EXTERNAL (decl));
3013 int failure
3014 = complete_array_type (type, DECL_INITIAL (decl), do_default);
3016 /* Get the completed type made by complete_array_type. */
3017 type = TREE_TYPE (decl);
3019 if (failure == 1)
3020 error_with_decl (decl, "initializer fails to determine size of `%s'");
3022 else if (failure == 2)
3024 if (do_default)
3025 error_with_decl (decl, "array size missing in `%s'");
3026 /* If a `static' var's size isn't known,
3027 make it extern as well as static, so it does not get
3028 allocated.
3029 If it is not `static', then do not mark extern;
3030 finish_incomplete_decl will give it a default size
3031 and it will get allocated. */
3032 else if (!pedantic && TREE_STATIC (decl) && ! TREE_PUBLIC (decl))
3033 DECL_EXTERNAL (decl) = 1;
3036 /* TYPE_MAX_VALUE is always one less than the number of elements
3037 in the array, because we start counting at zero. Therefore,
3038 warn only if the value is less than zero. */
3039 else if (pedantic && TYPE_DOMAIN (type) != 0
3040 && tree_int_cst_sgn (TYPE_MAX_VALUE (TYPE_DOMAIN (type))) < 0)
3041 error_with_decl (decl, "zero or negative size array `%s'");
3043 layout_decl (decl, 0);
3046 if (TREE_CODE (decl) == VAR_DECL)
3048 if (DECL_SIZE (decl) == 0 && TREE_TYPE (decl) != error_mark_node
3049 && COMPLETE_TYPE_P (TREE_TYPE (decl)))
3050 layout_decl (decl, 0);
3052 if (DECL_SIZE (decl) == 0
3053 /* Don't give an error if we already gave one earlier. */
3054 && TREE_TYPE (decl) != error_mark_node
3055 && (TREE_STATIC (decl)
3057 /* A static variable with an incomplete type
3058 is an error if it is initialized.
3059 Also if it is not file scope.
3060 Otherwise, let it through, but if it is not `extern'
3061 then it may cause an error message later. */
3062 (DECL_INITIAL (decl) != 0
3063 || DECL_CONTEXT (decl) != 0)
3065 /* An automatic variable with an incomplete type
3066 is an error. */
3067 !DECL_EXTERNAL (decl)))
3069 error_with_decl (decl, "storage size of `%s' isn't known");
3070 TREE_TYPE (decl) = error_mark_node;
3073 if ((DECL_EXTERNAL (decl) || TREE_STATIC (decl))
3074 && DECL_SIZE (decl) != 0)
3076 if (TREE_CODE (DECL_SIZE (decl)) == INTEGER_CST)
3077 constant_expression_warning (DECL_SIZE (decl));
3078 else
3079 error_with_decl (decl, "storage size of `%s' isn't constant");
3082 if (TREE_USED (type))
3083 TREE_USED (decl) = 1;
3086 /* If this is a function and an assembler name is specified, it isn't
3087 builtin any more. Also reset DECL_RTL so we can give it its new
3088 name. */
3089 if (TREE_CODE (decl) == FUNCTION_DECL && asmspec)
3091 DECL_BUILT_IN_CLASS (decl) = NOT_BUILT_IN;
3092 SET_DECL_RTL (decl, NULL_RTX);
3093 SET_DECL_ASSEMBLER_NAME (decl, get_identifier (asmspec));
3096 /* Output the assembler code and/or RTL code for variables and functions,
3097 unless the type is an undefined structure or union.
3098 If not, it will get done when the type is completed. */
3100 if (TREE_CODE (decl) == VAR_DECL || TREE_CODE (decl) == FUNCTION_DECL)
3102 /* This is a no-op in c-lang.c or something real in objc-act.c. */
3103 if (flag_objc)
3104 objc_check_decl (decl);
3106 if (!DECL_CONTEXT (decl))
3108 if (DECL_INITIAL (decl) == NULL_TREE
3109 || DECL_INITIAL (decl) == error_mark_node)
3110 /* Don't output anything
3111 when a tentative file-scope definition is seen.
3112 But at end of compilation, do output code for them. */
3113 DECL_DEFER_OUTPUT (decl) = 1;
3114 rest_of_decl_compilation (decl, asmspec,
3115 (DECL_CONTEXT (decl) == 0
3116 || TREE_ASM_WRITTEN (decl)), 0);
3118 else
3120 /* This is a local variable. If there is an ASMSPEC, the
3121 user has requested that we handle it specially. */
3122 if (asmspec)
3124 /* In conjunction with an ASMSPEC, the `register'
3125 keyword indicates that we should place the variable
3126 in a particular register. */
3127 if (DECL_REGISTER (decl))
3128 DECL_C_HARD_REGISTER (decl) = 1;
3130 /* If this is not a static variable, issue a warning.
3131 It doesn't make any sense to give an ASMSPEC for an
3132 ordinary, non-register local variable. Historically,
3133 GCC has accepted -- but ignored -- the ASMSPEC in
3134 this case. */
3135 if (TREE_CODE (decl) == VAR_DECL
3136 && !DECL_REGISTER (decl)
3137 && !TREE_STATIC (decl))
3138 warning_with_decl (decl,
3139 "ignoring asm-specifier for non-static local variable `%s'");
3140 else
3141 SET_DECL_ASSEMBLER_NAME (decl, get_identifier (asmspec));
3144 if (TREE_CODE (decl) != FUNCTION_DECL)
3145 add_decl_stmt (decl);
3148 if (DECL_CONTEXT (decl) != 0)
3150 /* Recompute the RTL of a local array now
3151 if it used to be an incomplete type. */
3152 if (was_incomplete
3153 && ! TREE_STATIC (decl) && ! DECL_EXTERNAL (decl))
3155 /* If we used it already as memory, it must stay in memory. */
3156 TREE_ADDRESSABLE (decl) = TREE_USED (decl);
3157 /* If it's still incomplete now, no init will save it. */
3158 if (DECL_SIZE (decl) == 0)
3159 DECL_INITIAL (decl) = 0;
3164 if (TREE_CODE (decl) == TYPE_DECL)
3166 /* This is a no-op in c-lang.c or something real in objc-act.c. */
3167 if (flag_objc)
3168 objc_check_decl (decl);
3169 rest_of_decl_compilation (decl, NULL, DECL_CONTEXT (decl) == 0, 0);
3172 /* At the end of a declaration, throw away any variable type sizes
3173 of types defined inside that declaration. There is no use
3174 computing them in the following function definition. */
3175 if (current_binding_level == global_binding_level)
3176 get_pending_sizes ();
3179 /* Given a parsed parameter declaration,
3180 decode it into a PARM_DECL and push that on the current binding level.
3181 Also, for the sake of forward parm decls,
3182 record the given order of parms in `parm_order'. */
3184 void
3185 push_parm_decl (parm)
3186 tree parm;
3188 tree decl;
3189 int old_immediate_size_expand = immediate_size_expand;
3190 /* Don't try computing parm sizes now -- wait till fn is called. */
3191 immediate_size_expand = 0;
3193 decl = grokdeclarator (TREE_VALUE (TREE_PURPOSE (parm)),
3194 TREE_PURPOSE (TREE_PURPOSE (parm)), PARM, 0);
3195 decl_attributes (&decl, TREE_VALUE (parm), 0);
3197 #if 0
3198 if (DECL_NAME (decl))
3200 tree olddecl;
3201 olddecl = lookup_name (DECL_NAME (decl));
3202 if (pedantic && olddecl != 0 && TREE_CODE (olddecl) == TYPE_DECL)
3203 pedwarn_with_decl (decl,
3204 "ISO C forbids parameter `%s' shadowing typedef");
3206 #endif
3208 decl = pushdecl (decl);
3210 immediate_size_expand = old_immediate_size_expand;
3212 current_binding_level->parm_order
3213 = tree_cons (NULL_TREE, decl, current_binding_level->parm_order);
3215 /* Add this decl to the current binding level. */
3216 finish_decl (decl, NULL_TREE, NULL_TREE);
3219 /* Clear the given order of parms in `parm_order'.
3220 Used at start of parm list,
3221 and also at semicolon terminating forward decls. */
3223 void
3224 clear_parm_order ()
3226 current_binding_level->parm_order = NULL_TREE;
3229 /* Build a COMPOUND_LITERAL_EXPR. TYPE is the type given in the compound
3230 literal, which may be an incomplete array type completed by the
3231 initializer; INIT is a CONSTRUCTOR that initializes the compound
3232 literal. */
3234 tree
3235 build_compound_literal (type, init)
3236 tree type;
3237 tree init;
3239 /* We do not use start_decl here because we have a type, not a declarator;
3240 and do not use finish_decl because the decl should be stored inside
3241 the COMPOUND_LITERAL_EXPR rather than added elsewhere as a DECL_STMT. */
3242 tree decl = build_decl (VAR_DECL, NULL_TREE, type);
3243 tree complit;
3244 tree stmt;
3245 DECL_EXTERNAL (decl) = 0;
3246 TREE_PUBLIC (decl) = 0;
3247 TREE_STATIC (decl) = (current_binding_level == global_binding_level);
3248 DECL_CONTEXT (decl) = current_function_decl;
3249 TREE_USED (decl) = 1;
3250 TREE_TYPE (decl) = type;
3251 TREE_READONLY (decl) = TREE_READONLY (type);
3252 store_init_value (decl, init);
3254 if (TREE_CODE (type) == ARRAY_TYPE && !COMPLETE_TYPE_P (type))
3256 int failure = complete_array_type (type, DECL_INITIAL (decl), 1);
3257 if (failure)
3258 abort ();
3261 type = TREE_TYPE (decl);
3262 if (type == error_mark_node || !COMPLETE_TYPE_P (type))
3263 return error_mark_node;
3265 stmt = build_stmt (DECL_STMT, decl);
3266 complit = build1 (COMPOUND_LITERAL_EXPR, TREE_TYPE (decl), stmt);
3267 TREE_SIDE_EFFECTS (complit) = 1;
3269 layout_decl (decl, 0);
3271 if (TREE_STATIC (decl))
3273 /* This decl needs a name for the assembler output. We also need
3274 a unique suffix to be added to the name. */
3275 char *name;
3276 extern int var_labelno;
3278 ASM_FORMAT_PRIVATE_NAME (name, "__compound_literal", var_labelno);
3279 var_labelno++;
3280 DECL_NAME (decl) = get_identifier (name);
3281 DECL_DEFER_OUTPUT (decl) = 1;
3282 DECL_COMDAT (decl) = 1;
3283 DECL_ARTIFICIAL (decl) = 1;
3284 pushdecl (decl);
3285 rest_of_decl_compilation (decl, NULL, 1, 0);
3288 return complit;
3291 /* Make TYPE a complete type based on INITIAL_VALUE.
3292 Return 0 if successful, 1 if INITIAL_VALUE can't be deciphered,
3293 2 if there was no information (in which case assume 1 if DO_DEFAULT). */
3296 complete_array_type (type, initial_value, do_default)
3297 tree type;
3298 tree initial_value;
3299 int do_default;
3301 tree maxindex = NULL_TREE;
3302 int value = 0;
3304 if (initial_value)
3306 /* Note MAXINDEX is really the maximum index,
3307 one less than the size. */
3308 if (TREE_CODE (initial_value) == STRING_CST)
3310 int eltsize
3311 = int_size_in_bytes (TREE_TYPE (TREE_TYPE (initial_value)));
3312 maxindex = build_int_2 ((TREE_STRING_LENGTH (initial_value)
3313 / eltsize) - 1, 0);
3315 else if (TREE_CODE (initial_value) == CONSTRUCTOR)
3317 tree elts = CONSTRUCTOR_ELTS (initial_value);
3318 maxindex = build_int_2 (-1, -1);
3319 for (; elts; elts = TREE_CHAIN (elts))
3321 if (TREE_PURPOSE (elts))
3322 maxindex = TREE_PURPOSE (elts);
3323 else
3324 maxindex = fold (build (PLUS_EXPR, integer_type_node,
3325 maxindex, integer_one_node));
3327 maxindex = copy_node (maxindex);
3329 else
3331 /* Make an error message unless that happened already. */
3332 if (initial_value != error_mark_node)
3333 value = 1;
3335 /* Prevent further error messages. */
3336 maxindex = build_int_2 (0, 0);
3340 if (!maxindex)
3342 if (do_default)
3343 maxindex = build_int_2 (0, 0);
3344 value = 2;
3347 if (maxindex)
3349 TYPE_DOMAIN (type) = build_index_type (maxindex);
3350 if (!TREE_TYPE (maxindex))
3351 TREE_TYPE (maxindex) = TYPE_DOMAIN (type);
3354 /* Lay out the type now that we can get the real answer. */
3356 layout_type (type);
3358 return value;
3361 /* Determine whether TYPE is a structure with a flexible array member,
3362 or a union containing such a structure (possibly recursively). */
3364 static bool
3365 flexible_array_type_p (type)
3366 tree type;
3368 tree x;
3369 switch (TREE_CODE (type))
3371 case RECORD_TYPE:
3372 x = TYPE_FIELDS (type);
3373 if (x == NULL_TREE)
3374 return false;
3375 while (TREE_CHAIN (x) != NULL_TREE)
3376 x = TREE_CHAIN (x);
3377 if (TREE_CODE (TREE_TYPE (x)) == ARRAY_TYPE
3378 && TYPE_SIZE (TREE_TYPE (x)) == NULL_TREE
3379 && TYPE_DOMAIN (TREE_TYPE (x)) != NULL_TREE
3380 && TYPE_MAX_VALUE (TYPE_DOMAIN (TREE_TYPE (x))) == NULL_TREE)
3381 return true;
3382 return false;
3383 case UNION_TYPE:
3384 for (x = TYPE_FIELDS (type); x != NULL_TREE; x = TREE_CHAIN (x))
3386 if (flexible_array_type_p (TREE_TYPE (x)))
3387 return true;
3389 return false;
3390 default:
3391 return false;
3395 /* Given declspecs and a declarator,
3396 determine the name and type of the object declared
3397 and construct a ..._DECL node for it.
3398 (In one case we can return a ..._TYPE node instead.
3399 For invalid input we sometimes return 0.)
3401 DECLSPECS is a chain of tree_list nodes whose value fields
3402 are the storage classes and type specifiers.
3404 DECL_CONTEXT says which syntactic context this declaration is in:
3405 NORMAL for most contexts. Make a VAR_DECL or FUNCTION_DECL or TYPE_DECL.
3406 FUNCDEF for a function definition. Like NORMAL but a few different
3407 error messages in each case. Return value may be zero meaning
3408 this definition is too screwy to try to parse.
3409 PARM for a parameter declaration (either within a function prototype
3410 or before a function body). Make a PARM_DECL, or return void_type_node.
3411 TYPENAME if for a typename (in a cast or sizeof).
3412 Don't make a DECL node; just return the ..._TYPE node.
3413 FIELD for a struct or union field; make a FIELD_DECL.
3414 BITFIELD for a field with specified width.
3415 INITIALIZED is 1 if the decl has an initializer.
3417 In the TYPENAME case, DECLARATOR is really an absolute declarator.
3418 It may also be so in the PARM case, for a prototype where the
3419 argument type is specified but not the name.
3421 This function is where the complicated C meanings of `static'
3422 and `extern' are interpreted. */
3424 static tree
3425 grokdeclarator (declarator, declspecs, decl_context, initialized)
3426 tree declspecs;
3427 tree declarator;
3428 enum decl_context decl_context;
3429 int initialized;
3431 int specbits = 0;
3432 tree spec;
3433 tree type = NULL_TREE;
3434 int longlong = 0;
3435 int constp;
3436 int restrictp;
3437 int volatilep;
3438 int type_quals = TYPE_UNQUALIFIED;
3439 int inlinep;
3440 int explicit_int = 0;
3441 int explicit_char = 0;
3442 int defaulted_int = 0;
3443 tree typedef_decl = 0;
3444 const char *name;
3445 tree typedef_type = 0;
3446 int funcdef_flag = 0;
3447 enum tree_code innermost_code = ERROR_MARK;
3448 int bitfield = 0;
3449 int size_varies = 0;
3450 tree decl_attr = NULL_TREE;
3451 tree array_ptr_quals = NULL_TREE;
3452 int array_parm_static = 0;
3453 tree returned_attrs = NULL_TREE;
3455 if (decl_context == BITFIELD)
3456 bitfield = 1, decl_context = FIELD;
3458 if (decl_context == FUNCDEF)
3459 funcdef_flag = 1, decl_context = NORMAL;
3461 /* Look inside a declarator for the name being declared
3462 and get it as a string, for an error message. */
3464 tree decl = declarator;
3465 name = 0;
3467 while (decl)
3468 switch (TREE_CODE (decl))
3470 case ARRAY_REF:
3471 case INDIRECT_REF:
3472 case CALL_EXPR:
3473 innermost_code = TREE_CODE (decl);
3474 decl = TREE_OPERAND (decl, 0);
3475 break;
3477 case TREE_LIST:
3478 decl = TREE_VALUE (decl);
3479 break;
3481 case IDENTIFIER_NODE:
3482 name = IDENTIFIER_POINTER (decl);
3483 decl = 0;
3484 break;
3486 default:
3487 abort ();
3489 if (name == 0)
3490 name = "type name";
3493 /* A function definition's declarator must have the form of
3494 a function declarator. */
3496 if (funcdef_flag && innermost_code != CALL_EXPR)
3497 return 0;
3499 /* Anything declared one level down from the top level
3500 must be one of the parameters of a function
3501 (because the body is at least two levels down). */
3503 /* If this looks like a function definition, make it one,
3504 even if it occurs where parms are expected.
3505 Then store_parm_decls will reject it and not use it as a parm. */
3506 if (decl_context == NORMAL && !funcdef_flag
3507 && current_binding_level->parm_flag)
3508 decl_context = PARM;
3510 /* Look through the decl specs and record which ones appear.
3511 Some typespecs are defined as built-in typenames.
3512 Others, the ones that are modifiers of other types,
3513 are represented by bits in SPECBITS: set the bits for
3514 the modifiers that appear. Storage class keywords are also in SPECBITS.
3516 If there is a typedef name or a type, store the type in TYPE.
3517 This includes builtin typedefs such as `int'.
3519 Set EXPLICIT_INT or EXPLICIT_CHAR if the type is `int' or `char'
3520 and did not come from a user typedef.
3522 Set LONGLONG if `long' is mentioned twice. */
3524 for (spec = declspecs; spec; spec = TREE_CHAIN (spec))
3526 tree id = TREE_VALUE (spec);
3528 /* If the entire declaration is itself tagged as deprecated then
3529 suppress reports of deprecated items. */
3530 if (id && TREE_DEPRECATED (id))
3532 if (deprecated_state != DEPRECATED_SUPPRESS)
3533 warn_deprecated_use (id);
3536 if (id == ridpointers[(int) RID_INT])
3537 explicit_int = 1;
3538 if (id == ridpointers[(int) RID_CHAR])
3539 explicit_char = 1;
3541 if (TREE_CODE (id) == IDENTIFIER_NODE && C_IS_RESERVED_WORD (id))
3543 enum rid i = C_RID_CODE (id);
3544 if ((int) i <= (int) RID_LAST_MODIFIER)
3546 if (i == RID_LONG && (specbits & (1 << (int) RID_LONG)))
3548 if (longlong)
3549 error ("`long long long' is too long for GCC");
3550 else
3552 if (pedantic && !flag_isoc99 && ! in_system_header
3553 && warn_long_long)
3554 pedwarn ("ISO C90 does not support `long long'");
3555 longlong = 1;
3558 else if (specbits & (1 << (int) i))
3560 if (i == RID_CONST || i == RID_VOLATILE || i == RID_RESTRICT)
3562 if (!flag_isoc99)
3563 pedwarn ("duplicate `%s'", IDENTIFIER_POINTER (id));
3565 else
3566 error ("duplicate `%s'", IDENTIFIER_POINTER (id));
3569 /* Diagnose "__thread extern". Recall that this list
3570 is in the reverse order seen in the text. */
3571 if (i == RID_THREAD
3572 && (specbits & (1 << (int) RID_EXTERN
3573 | 1 << (int) RID_STATIC)))
3575 if (specbits & 1 << (int) RID_EXTERN)
3576 error ("`__thread' before `extern'");
3577 else
3578 error ("`__thread' before `static'");
3581 specbits |= 1 << (int) i;
3582 goto found;
3585 if (type)
3586 error ("two or more data types in declaration of `%s'", name);
3587 /* Actual typedefs come to us as TYPE_DECL nodes. */
3588 else if (TREE_CODE (id) == TYPE_DECL)
3590 if (TREE_TYPE (id) == error_mark_node)
3591 ; /* Allow the type to default to int to avoid cascading errors. */
3592 else
3594 type = TREE_TYPE (id);
3595 decl_attr = DECL_ATTRIBUTES (id);
3596 typedef_decl = id;
3599 /* Built-in types come as identifiers. */
3600 else if (TREE_CODE (id) == IDENTIFIER_NODE)
3602 tree t = lookup_name (id);
3603 if (TREE_TYPE (t) == error_mark_node)
3605 else if (!t || TREE_CODE (t) != TYPE_DECL)
3606 error ("`%s' fails to be a typedef or built in type",
3607 IDENTIFIER_POINTER (id));
3608 else
3610 type = TREE_TYPE (t);
3611 typedef_decl = t;
3614 else if (TREE_CODE (id) != ERROR_MARK)
3615 type = id;
3617 found:
3621 typedef_type = type;
3622 if (type)
3623 size_varies = C_TYPE_VARIABLE_SIZE (type);
3625 /* No type at all: default to `int', and set DEFAULTED_INT
3626 because it was not a user-defined typedef. */
3628 if (type == 0)
3630 if ((! (specbits & ((1 << (int) RID_LONG) | (1 << (int) RID_SHORT)
3631 | (1 << (int) RID_SIGNED)
3632 | (1 << (int) RID_UNSIGNED)
3633 | (1 << (int) RID_COMPLEX))))
3634 /* Don't warn about typedef foo = bar. */
3635 && ! (specbits & (1 << (int) RID_TYPEDEF) && initialized)
3636 && ! in_system_header)
3638 /* Issue a warning if this is an ISO C 99 program or if -Wreturn-type
3639 and this is a function, or if -Wimplicit; prefer the former
3640 warning since it is more explicit. */
3641 if ((warn_implicit_int || warn_return_type || flag_isoc99)
3642 && funcdef_flag)
3643 warn_about_return_type = 1;
3644 else if (warn_implicit_int || flag_isoc99)
3645 pedwarn_c99 ("type defaults to `int' in declaration of `%s'",
3646 name);
3649 defaulted_int = 1;
3650 type = integer_type_node;
3653 /* Now process the modifiers that were specified
3654 and check for invalid combinations. */
3656 /* Long double is a special combination. */
3658 if ((specbits & 1 << (int) RID_LONG) && ! longlong
3659 && TYPE_MAIN_VARIANT (type) == double_type_node)
3661 specbits &= ~(1 << (int) RID_LONG);
3662 type = long_double_type_node;
3665 /* Check all other uses of type modifiers. */
3667 if (specbits & ((1 << (int) RID_LONG) | (1 << (int) RID_SHORT)
3668 | (1 << (int) RID_UNSIGNED) | (1 << (int) RID_SIGNED)))
3670 int ok = 0;
3672 if ((specbits & 1 << (int) RID_LONG)
3673 && (specbits & 1 << (int) RID_SHORT))
3674 error ("both long and short specified for `%s'", name);
3675 else if (((specbits & 1 << (int) RID_LONG)
3676 || (specbits & 1 << (int) RID_SHORT))
3677 && explicit_char)
3678 error ("long or short specified with char for `%s'", name);
3679 else if (((specbits & 1 << (int) RID_LONG)
3680 || (specbits & 1 << (int) RID_SHORT))
3681 && TREE_CODE (type) == REAL_TYPE)
3683 static int already = 0;
3685 error ("long or short specified with floating type for `%s'", name);
3686 if (! already && ! pedantic)
3688 error ("the only valid combination is `long double'");
3689 already = 1;
3692 else if ((specbits & 1 << (int) RID_SIGNED)
3693 && (specbits & 1 << (int) RID_UNSIGNED))
3694 error ("both signed and unsigned specified for `%s'", name);
3695 else if (TREE_CODE (type) != INTEGER_TYPE)
3696 error ("long, short, signed or unsigned invalid for `%s'", name);
3697 else
3699 ok = 1;
3700 if (!explicit_int && !defaulted_int && !explicit_char)
3702 error ("long, short, signed or unsigned used invalidly for `%s'",
3703 name);
3704 ok = 0;
3708 /* Discard the type modifiers if they are invalid. */
3709 if (! ok)
3711 specbits &= ~((1 << (int) RID_LONG) | (1 << (int) RID_SHORT)
3712 | (1 << (int) RID_UNSIGNED) | (1 << (int) RID_SIGNED));
3713 longlong = 0;
3717 if ((specbits & (1 << (int) RID_COMPLEX))
3718 && TREE_CODE (type) != INTEGER_TYPE && TREE_CODE (type) != REAL_TYPE)
3720 error ("complex invalid for `%s'", name);
3721 specbits &= ~(1 << (int) RID_COMPLEX);
3724 /* Decide whether an integer type is signed or not.
3725 Optionally treat bitfields as signed by default. */
3726 if (specbits & 1 << (int) RID_UNSIGNED
3727 || (bitfield && ! flag_signed_bitfields
3728 && (explicit_int || defaulted_int || explicit_char
3729 /* A typedef for plain `int' without `signed'
3730 can be controlled just like plain `int'. */
3731 || ! (typedef_decl != 0
3732 && C_TYPEDEF_EXPLICITLY_SIGNED (typedef_decl)))
3733 && TREE_CODE (type) != ENUMERAL_TYPE
3734 && !(specbits & 1 << (int) RID_SIGNED)))
3736 if (longlong)
3737 type = long_long_unsigned_type_node;
3738 else if (specbits & 1 << (int) RID_LONG)
3739 type = long_unsigned_type_node;
3740 else if (specbits & 1 << (int) RID_SHORT)
3741 type = short_unsigned_type_node;
3742 else if (type == char_type_node)
3743 type = unsigned_char_type_node;
3744 else if (typedef_decl)
3745 type = c_common_unsigned_type (type);
3746 else
3747 type = unsigned_type_node;
3749 else if ((specbits & 1 << (int) RID_SIGNED)
3750 && type == char_type_node)
3751 type = signed_char_type_node;
3752 else if (longlong)
3753 type = long_long_integer_type_node;
3754 else if (specbits & 1 << (int) RID_LONG)
3755 type = long_integer_type_node;
3756 else if (specbits & 1 << (int) RID_SHORT)
3757 type = short_integer_type_node;
3759 if (specbits & 1 << (int) RID_COMPLEX)
3761 if (pedantic && !flag_isoc99)
3762 pedwarn ("ISO C90 does not support complex types");
3763 /* If we just have "complex", it is equivalent to
3764 "complex double", but if any modifiers at all are specified it is
3765 the complex form of TYPE. E.g, "complex short" is
3766 "complex short int". */
3768 if (defaulted_int && ! longlong
3769 && ! (specbits & ((1 << (int) RID_LONG) | (1 << (int) RID_SHORT)
3770 | (1 << (int) RID_SIGNED)
3771 | (1 << (int) RID_UNSIGNED))))
3773 if (pedantic)
3774 pedwarn ("ISO C does not support plain `complex' meaning `double complex'");
3775 type = complex_double_type_node;
3777 else if (type == integer_type_node)
3779 if (pedantic)
3780 pedwarn ("ISO C does not support complex integer types");
3781 type = complex_integer_type_node;
3783 else if (type == float_type_node)
3784 type = complex_float_type_node;
3785 else if (type == double_type_node)
3786 type = complex_double_type_node;
3787 else if (type == long_double_type_node)
3788 type = complex_long_double_type_node;
3789 else
3791 if (pedantic)
3792 pedwarn ("ISO C does not support complex integer types");
3793 type = build_complex_type (type);
3797 /* Figure out the type qualifiers for the declaration. There are
3798 two ways a declaration can become qualified. One is something
3799 like `const int i' where the `const' is explicit. Another is
3800 something like `typedef const int CI; CI i' where the type of the
3801 declaration contains the `const'. */
3802 constp = !! (specbits & 1 << (int) RID_CONST) + TYPE_READONLY (type);
3803 restrictp = !! (specbits & 1 << (int) RID_RESTRICT) + TYPE_RESTRICT (type);
3804 volatilep = !! (specbits & 1 << (int) RID_VOLATILE) + TYPE_VOLATILE (type);
3805 inlinep = !! (specbits & (1 << (int) RID_INLINE));
3806 if (constp > 1 && ! flag_isoc99)
3807 pedwarn ("duplicate `const'");
3808 if (restrictp > 1 && ! flag_isoc99)
3809 pedwarn ("duplicate `restrict'");
3810 if (volatilep > 1 && ! flag_isoc99)
3811 pedwarn ("duplicate `volatile'");
3812 if (! flag_gen_aux_info && (TYPE_QUALS (type)))
3813 type = TYPE_MAIN_VARIANT (type);
3814 type_quals = ((constp ? TYPE_QUAL_CONST : 0)
3815 | (restrictp ? TYPE_QUAL_RESTRICT : 0)
3816 | (volatilep ? TYPE_QUAL_VOLATILE : 0));
3818 /* Warn if two storage classes are given. Default to `auto'. */
3821 int nclasses = 0;
3823 if (specbits & 1 << (int) RID_AUTO) nclasses++;
3824 if (specbits & 1 << (int) RID_STATIC) nclasses++;
3825 if (specbits & 1 << (int) RID_EXTERN) nclasses++;
3826 if (specbits & 1 << (int) RID_REGISTER) nclasses++;
3827 if (specbits & 1 << (int) RID_TYPEDEF) nclasses++;
3829 /* "static __thread" and "extern __thread" are allowed. */
3830 if ((specbits & (1 << (int) RID_THREAD
3831 | 1 << (int) RID_STATIC
3832 | 1 << (int) RID_EXTERN)) == (1 << (int) RID_THREAD))
3833 nclasses++;
3835 /* Warn about storage classes that are invalid for certain
3836 kinds of declarations (parameters, typenames, etc.). */
3838 if (nclasses > 1)
3839 error ("multiple storage classes in declaration of `%s'", name);
3840 else if (funcdef_flag
3841 && (specbits
3842 & ((1 << (int) RID_REGISTER)
3843 | (1 << (int) RID_AUTO)
3844 | (1 << (int) RID_TYPEDEF)
3845 | (1 << (int) RID_THREAD))))
3847 if (specbits & 1 << (int) RID_AUTO
3848 && (pedantic || current_binding_level == global_binding_level))
3849 pedwarn ("function definition declared `auto'");
3850 if (specbits & 1 << (int) RID_REGISTER)
3851 error ("function definition declared `register'");
3852 if (specbits & 1 << (int) RID_TYPEDEF)
3853 error ("function definition declared `typedef'");
3854 if (specbits & 1 << (int) RID_THREAD)
3855 error ("function definition declared `__thread'");
3856 specbits &= ~((1 << (int) RID_TYPEDEF) | (1 << (int) RID_REGISTER)
3857 | (1 << (int) RID_AUTO) | (1 << (int) RID_THREAD));
3859 else if (decl_context != NORMAL && nclasses > 0)
3861 if (decl_context == PARM && specbits & 1 << (int) RID_REGISTER)
3863 else
3865 switch (decl_context)
3867 case FIELD:
3868 error ("storage class specified for structure field `%s'",
3869 name);
3870 break;
3871 case PARM:
3872 error ("storage class specified for parameter `%s'", name);
3873 break;
3874 default:
3875 error ("storage class specified for typename");
3876 break;
3878 specbits &= ~((1 << (int) RID_TYPEDEF) | (1 << (int) RID_REGISTER)
3879 | (1 << (int) RID_AUTO) | (1 << (int) RID_STATIC)
3880 | (1 << (int) RID_EXTERN) | (1 << (int) RID_THREAD));
3883 else if (specbits & 1 << (int) RID_EXTERN && initialized && ! funcdef_flag)
3885 /* `extern' with initialization is invalid if not at top level. */
3886 if (current_binding_level == global_binding_level)
3887 warning ("`%s' initialized and declared `extern'", name);
3888 else
3889 error ("`%s' has both `extern' and initializer", name);
3891 else if (current_binding_level == global_binding_level)
3893 if (specbits & 1 << (int) RID_AUTO)
3894 error ("top-level declaration of `%s' specifies `auto'", name);
3896 else
3898 if (specbits & 1 << (int) RID_EXTERN && funcdef_flag)
3899 error ("nested function `%s' declared `extern'", name);
3900 else if ((specbits & (1 << (int) RID_THREAD
3901 | 1 << (int) RID_EXTERN
3902 | 1 << (int) RID_STATIC))
3903 == (1 << (int) RID_THREAD))
3905 error ("function-scope `%s' implicitly auto and declared `__thread'",
3906 name);
3907 specbits &= ~(1 << (int) RID_THREAD);
3912 /* Now figure out the structure of the declarator proper.
3913 Descend through it, creating more complex types, until we reach
3914 the declared identifier (or NULL_TREE, in an absolute declarator). */
3916 while (declarator && TREE_CODE (declarator) != IDENTIFIER_NODE)
3918 if (type == error_mark_node)
3920 declarator = TREE_OPERAND (declarator, 0);
3921 continue;
3924 /* Each level of DECLARATOR is either an ARRAY_REF (for ...[..]),
3925 an INDIRECT_REF (for *...),
3926 a CALL_EXPR (for ...(...)),
3927 a TREE_LIST (for nested attributes),
3928 an identifier (for the name being declared)
3929 or a null pointer (for the place in an absolute declarator
3930 where the name was omitted).
3931 For the last two cases, we have just exited the loop.
3933 At this point, TYPE is the type of elements of an array,
3934 or for a function to return, or for a pointer to point to.
3935 After this sequence of ifs, TYPE is the type of the
3936 array or function or pointer, and DECLARATOR has had its
3937 outermost layer removed. */
3939 if (array_ptr_quals != NULL_TREE || array_parm_static)
3941 /* Only the innermost declarator (making a parameter be of
3942 array type which is converted to pointer type)
3943 may have static or type qualifiers. */
3944 error ("static or type qualifiers in non-parameter array declarator");
3945 array_ptr_quals = NULL_TREE;
3946 array_parm_static = 0;
3949 if (TREE_CODE (declarator) == TREE_LIST)
3951 /* We encode a declarator with embedded attributes using
3952 a TREE_LIST. */
3953 tree attrs = TREE_PURPOSE (declarator);
3954 tree inner_decl;
3955 int attr_flags = 0;
3956 declarator = TREE_VALUE (declarator);
3957 inner_decl = declarator;
3958 while (inner_decl != NULL_TREE
3959 && TREE_CODE (inner_decl) == TREE_LIST)
3960 inner_decl = TREE_VALUE (inner_decl);
3961 if (inner_decl == NULL_TREE
3962 || TREE_CODE (inner_decl) == IDENTIFIER_NODE)
3963 attr_flags |= (int) ATTR_FLAG_DECL_NEXT;
3964 else if (TREE_CODE (inner_decl) == CALL_EXPR)
3965 attr_flags |= (int) ATTR_FLAG_FUNCTION_NEXT;
3966 else if (TREE_CODE (inner_decl) == ARRAY_REF)
3967 attr_flags |= (int) ATTR_FLAG_ARRAY_NEXT;
3968 returned_attrs = decl_attributes (&type,
3969 chainon (returned_attrs, attrs),
3970 attr_flags);
3972 else if (TREE_CODE (declarator) == ARRAY_REF)
3974 tree itype = NULL_TREE;
3975 tree size = TREE_OPERAND (declarator, 1);
3976 /* The index is a signed object `sizetype' bits wide. */
3977 tree index_type = c_common_signed_type (sizetype);
3979 array_ptr_quals = TREE_TYPE (declarator);
3980 array_parm_static = TREE_STATIC (declarator);
3982 declarator = TREE_OPERAND (declarator, 0);
3984 /* Check for some types that there cannot be arrays of. */
3986 if (VOID_TYPE_P (type))
3988 error ("declaration of `%s' as array of voids", name);
3989 type = error_mark_node;
3992 if (TREE_CODE (type) == FUNCTION_TYPE)
3994 error ("declaration of `%s' as array of functions", name);
3995 type = error_mark_node;
3998 if (pedantic && flexible_array_type_p (type))
3999 pedwarn ("invalid use of structure with flexible array member");
4001 if (size == error_mark_node)
4002 type = error_mark_node;
4004 if (type == error_mark_node)
4005 continue;
4007 /* If size was specified, set ITYPE to a range-type for that size.
4008 Otherwise, ITYPE remains null. finish_decl may figure it out
4009 from an initial value. */
4011 if (size)
4013 /* Strip NON_LVALUE_EXPRs since we aren't using as an lvalue. */
4014 STRIP_TYPE_NOPS (size);
4016 if (! INTEGRAL_TYPE_P (TREE_TYPE (size)))
4018 error ("size of array `%s' has non-integer type", name);
4019 size = integer_one_node;
4022 if (pedantic && integer_zerop (size))
4023 pedwarn ("ISO C forbids zero-size array `%s'", name);
4025 if (TREE_CODE (size) == INTEGER_CST)
4027 constant_expression_warning (size);
4028 if (tree_int_cst_sgn (size) < 0)
4030 error ("size of array `%s' is negative", name);
4031 size = integer_one_node;
4034 else
4036 /* Make sure the array size remains visibly nonconstant
4037 even if it is (eg) a const variable with known value. */
4038 size_varies = 1;
4040 if (!flag_isoc99 && pedantic)
4042 if (TREE_CONSTANT (size))
4043 pedwarn ("ISO C90 forbids array `%s' whose size can't be evaluated",
4044 name);
4045 else
4046 pedwarn ("ISO C90 forbids variable-size array `%s'",
4047 name);
4051 if (integer_zerop (size))
4053 /* A zero-length array cannot be represented with an
4054 unsigned index type, which is what we'll get with
4055 build_index_type. Create an open-ended range instead. */
4056 itype = build_range_type (sizetype, size, NULL_TREE);
4058 else
4060 /* Compute the maximum valid index, that is, size - 1.
4061 Do the calculation in index_type, so that if it is
4062 a variable the computations will be done in the
4063 proper mode. */
4064 itype = fold (build (MINUS_EXPR, index_type,
4065 convert (index_type, size),
4066 convert (index_type, size_one_node)));
4068 /* If that overflowed, the array is too big.
4069 ??? While a size of INT_MAX+1 technically shouldn't
4070 cause an overflow (because we subtract 1), the overflow
4071 is recorded during the conversion to index_type, before
4072 the subtraction. Handling this case seems like an
4073 unnecessary complication. */
4074 if (TREE_OVERFLOW (itype))
4076 error ("size of array `%s' is too large", name);
4077 type = error_mark_node;
4078 continue;
4081 if (size_varies)
4082 itype = variable_size (itype);
4083 itype = build_index_type (itype);
4086 else if (decl_context == FIELD)
4088 if (pedantic && !flag_isoc99 && !in_system_header)
4089 pedwarn ("ISO C90 does not support flexible array members");
4091 /* ISO C99 Flexible array members are effectively identical
4092 to GCC's zero-length array extension. */
4093 itype = build_range_type (sizetype, size_zero_node, NULL_TREE);
4096 /* If pedantic, complain about arrays of incomplete types. */
4098 if (pedantic && !COMPLETE_TYPE_P (type))
4099 pedwarn ("array type has incomplete element type");
4101 #if 0
4102 /* We shouldn't have a function type here at all!
4103 Functions aren't allowed as array elements. */
4104 if (pedantic && TREE_CODE (type) == FUNCTION_TYPE
4105 && (constp || volatilep))
4106 pedwarn ("ISO C forbids const or volatile function types");
4107 #endif
4109 /* Build the array type itself, then merge any constancy or
4110 volatility into the target type. We must do it in this order
4111 to ensure that the TYPE_MAIN_VARIANT field of the array type
4112 is set correctly. */
4114 type = build_array_type (type, itype);
4115 if (type_quals)
4116 type = c_build_qualified_type (type, type_quals);
4118 if (size_varies)
4119 C_TYPE_VARIABLE_SIZE (type) = 1;
4121 /* The GCC extension for zero-length arrays differs from
4122 ISO flexible array members in that sizeof yields zero. */
4123 if (size && integer_zerop (size))
4125 layout_type (type);
4126 TYPE_SIZE (type) = bitsize_zero_node;
4127 TYPE_SIZE_UNIT (type) = size_zero_node;
4129 if (decl_context != PARM
4130 && (array_ptr_quals != NULL_TREE || array_parm_static))
4132 error ("static or type qualifiers in non-parameter array declarator");
4133 array_ptr_quals = NULL_TREE;
4134 array_parm_static = 0;
4137 else if (TREE_CODE (declarator) == CALL_EXPR)
4139 tree arg_types;
4141 /* Declaring a function type.
4142 Make sure we have a valid type for the function to return. */
4143 if (type == error_mark_node)
4144 continue;
4146 size_varies = 0;
4148 /* Warn about some types functions can't return. */
4150 if (TREE_CODE (type) == FUNCTION_TYPE)
4152 error ("`%s' declared as function returning a function", name);
4153 type = integer_type_node;
4155 if (TREE_CODE (type) == ARRAY_TYPE)
4157 error ("`%s' declared as function returning an array", name);
4158 type = integer_type_node;
4161 /* Construct the function type and go to the next
4162 inner layer of declarator. */
4164 arg_types = grokparms (TREE_OPERAND (declarator, 1),
4165 funcdef_flag
4166 /* Say it's a definition
4167 only for the CALL_EXPR
4168 closest to the identifier. */
4169 && TREE_CODE (TREE_OPERAND (declarator, 0)) == IDENTIFIER_NODE);
4170 /* Type qualifiers before the return type of the function
4171 qualify the return type, not the function type. */
4172 if (type_quals)
4174 /* Type qualifiers on a function return type are normally
4175 permitted by the standard but have no effect, so give a
4176 warning at -W. Qualifiers on a void return type have
4177 meaning as a GNU extension, and are banned on function
4178 definitions in ISO C. FIXME: strictly we shouldn't
4179 pedwarn for qualified void return types except on function
4180 definitions, but not doing so could lead to the undesirable
4181 state of a "volatile void" function return type not being
4182 warned about, and a use of the function being compiled
4183 with GNU semantics, with no diagnostics under -pedantic. */
4184 if (VOID_TYPE_P (type) && pedantic && !in_system_header)
4185 pedwarn ("ISO C forbids qualified void function return type");
4186 else if (extra_warnings
4187 && !(VOID_TYPE_P (type)
4188 && type_quals == TYPE_QUAL_VOLATILE))
4189 warning ("type qualifiers ignored on function return type");
4191 type = c_build_qualified_type (type, type_quals);
4193 type_quals = TYPE_UNQUALIFIED;
4195 type = build_function_type (type, arg_types);
4196 declarator = TREE_OPERAND (declarator, 0);
4198 /* Set the TYPE_CONTEXTs for each tagged type which is local to
4199 the formal parameter list of this FUNCTION_TYPE to point to
4200 the FUNCTION_TYPE node itself. */
4203 tree link;
4205 for (link = last_function_parm_tags;
4206 link;
4207 link = TREE_CHAIN (link))
4208 TYPE_CONTEXT (TREE_VALUE (link)) = type;
4211 else if (TREE_CODE (declarator) == INDIRECT_REF)
4213 /* Merge any constancy or volatility into the target type
4214 for the pointer. */
4216 if (pedantic && TREE_CODE (type) == FUNCTION_TYPE
4217 && type_quals)
4218 pedwarn ("ISO C forbids qualified function types");
4219 if (type_quals)
4220 type = c_build_qualified_type (type, type_quals);
4221 type_quals = TYPE_UNQUALIFIED;
4222 size_varies = 0;
4224 type = build_pointer_type (type);
4226 /* Process a list of type modifier keywords
4227 (such as const or volatile) that were given inside the `*'. */
4229 if (TREE_TYPE (declarator))
4231 tree typemodlist;
4232 int erred = 0;
4234 constp = 0;
4235 volatilep = 0;
4236 restrictp = 0;
4237 for (typemodlist = TREE_TYPE (declarator); typemodlist;
4238 typemodlist = TREE_CHAIN (typemodlist))
4240 tree qualifier = TREE_VALUE (typemodlist);
4242 if (C_IS_RESERVED_WORD (qualifier))
4244 if (C_RID_CODE (qualifier) == RID_CONST)
4245 constp++;
4246 else if (C_RID_CODE (qualifier) == RID_VOLATILE)
4247 volatilep++;
4248 else if (C_RID_CODE (qualifier) == RID_RESTRICT)
4249 restrictp++;
4250 else
4251 erred++;
4253 else
4254 erred++;
4257 if (erred)
4258 error ("invalid type modifier within pointer declarator");
4259 if (constp > 1 && ! flag_isoc99)
4260 pedwarn ("duplicate `const'");
4261 if (volatilep > 1 && ! flag_isoc99)
4262 pedwarn ("duplicate `volatile'");
4263 if (restrictp > 1 && ! flag_isoc99)
4264 pedwarn ("duplicate `restrict'");
4266 type_quals = ((constp ? TYPE_QUAL_CONST : 0)
4267 | (restrictp ? TYPE_QUAL_RESTRICT : 0)
4268 | (volatilep ? TYPE_QUAL_VOLATILE : 0));
4271 declarator = TREE_OPERAND (declarator, 0);
4273 else
4274 abort ();
4278 /* Now TYPE has the actual type. */
4280 /* Did array size calculations overflow? */
4282 if (TREE_CODE (type) == ARRAY_TYPE
4283 && COMPLETE_TYPE_P (type)
4284 && TREE_OVERFLOW (TYPE_SIZE (type)))
4286 error ("size of array `%s' is too large", name);
4287 /* If we proceed with the array type as it is, we'll eventually
4288 crash in tree_low_cst(). */
4289 type = error_mark_node;
4292 /* If this is declaring a typedef name, return a TYPE_DECL. */
4294 if (specbits & (1 << (int) RID_TYPEDEF))
4296 tree decl;
4297 /* Note that the grammar rejects storage classes
4298 in typenames, fields or parameters */
4299 if (pedantic && TREE_CODE (type) == FUNCTION_TYPE
4300 && type_quals)
4301 pedwarn ("ISO C forbids qualified function types");
4302 if (type_quals)
4303 type = c_build_qualified_type (type, type_quals);
4304 decl = build_decl (TYPE_DECL, declarator, type);
4305 if ((specbits & (1 << (int) RID_SIGNED))
4306 || (typedef_decl && C_TYPEDEF_EXPLICITLY_SIGNED (typedef_decl)))
4307 C_TYPEDEF_EXPLICITLY_SIGNED (decl) = 1;
4308 decl_attributes (&decl, returned_attrs, 0);
4309 return decl;
4312 /* Detect the case of an array type of unspecified size
4313 which came, as such, direct from a typedef name.
4314 We must copy the type, so that each identifier gets
4315 a distinct type, so that each identifier's size can be
4316 controlled separately by its own initializer. */
4318 if (type != 0 && typedef_type != 0
4319 && TREE_CODE (type) == ARRAY_TYPE && TYPE_DOMAIN (type) == 0
4320 && TYPE_MAIN_VARIANT (type) == TYPE_MAIN_VARIANT (typedef_type))
4322 type = build_array_type (TREE_TYPE (type), 0);
4323 if (size_varies)
4324 C_TYPE_VARIABLE_SIZE (type) = 1;
4327 /* If this is a type name (such as, in a cast or sizeof),
4328 compute the type and return it now. */
4330 if (decl_context == TYPENAME)
4332 /* Note that the grammar rejects storage classes
4333 in typenames, fields or parameters */
4334 if (pedantic && TREE_CODE (type) == FUNCTION_TYPE
4335 && type_quals)
4336 pedwarn ("ISO C forbids const or volatile function types");
4337 if (type_quals)
4338 type = c_build_qualified_type (type, type_quals);
4339 decl_attributes (&type, returned_attrs, 0);
4340 return type;
4343 /* Aside from typedefs and type names (handle above),
4344 `void' at top level (not within pointer)
4345 is allowed only in public variables.
4346 We don't complain about parms either, but that is because
4347 a better error message can be made later. */
4349 if (VOID_TYPE_P (type) && decl_context != PARM
4350 && ! ((decl_context != FIELD && TREE_CODE (type) != FUNCTION_TYPE)
4351 && ((specbits & (1 << (int) RID_EXTERN))
4352 || (current_binding_level == global_binding_level
4353 && !(specbits
4354 & ((1 << (int) RID_STATIC) | (1 << (int) RID_REGISTER)))))))
4356 error ("variable or field `%s' declared void", name);
4357 type = integer_type_node;
4360 /* Now create the decl, which may be a VAR_DECL, a PARM_DECL
4361 or a FUNCTION_DECL, depending on DECL_CONTEXT and TYPE. */
4364 tree decl;
4366 if (decl_context == PARM)
4368 tree type_as_written;
4369 tree promoted_type;
4371 /* A parameter declared as an array of T is really a pointer to T.
4372 One declared as a function is really a pointer to a function. */
4374 if (TREE_CODE (type) == ARRAY_TYPE)
4376 /* Transfer const-ness of array into that of type pointed to. */
4377 type = TREE_TYPE (type);
4378 if (type_quals)
4379 type = c_build_qualified_type (type, type_quals);
4380 type = build_pointer_type (type);
4381 type_quals = TYPE_UNQUALIFIED;
4382 if (array_ptr_quals)
4384 tree new_ptr_quals, new_ptr_attrs;
4385 int erred = 0;
4386 split_specs_attrs (array_ptr_quals, &new_ptr_quals, &new_ptr_attrs);
4387 /* We don't yet implement attributes in this context. */
4388 if (new_ptr_attrs != NULL_TREE)
4389 warning ("attributes in parameter array declarator ignored");
4391 constp = 0;
4392 volatilep = 0;
4393 restrictp = 0;
4394 for (; new_ptr_quals; new_ptr_quals = TREE_CHAIN (new_ptr_quals))
4396 tree qualifier = TREE_VALUE (new_ptr_quals);
4398 if (C_IS_RESERVED_WORD (qualifier))
4400 if (C_RID_CODE (qualifier) == RID_CONST)
4401 constp++;
4402 else if (C_RID_CODE (qualifier) == RID_VOLATILE)
4403 volatilep++;
4404 else if (C_RID_CODE (qualifier) == RID_RESTRICT)
4405 restrictp++;
4406 else
4407 erred++;
4409 else
4410 erred++;
4413 if (erred)
4414 error ("invalid type modifier within array declarator");
4416 type_quals = ((constp ? TYPE_QUAL_CONST : 0)
4417 | (restrictp ? TYPE_QUAL_RESTRICT : 0)
4418 | (volatilep ? TYPE_QUAL_VOLATILE : 0));
4420 size_varies = 0;
4422 else if (TREE_CODE (type) == FUNCTION_TYPE)
4424 if (pedantic && type_quals)
4425 pedwarn ("ISO C forbids qualified function types");
4426 if (type_quals)
4427 type = c_build_qualified_type (type, type_quals);
4428 type = build_pointer_type (type);
4429 type_quals = TYPE_UNQUALIFIED;
4431 else if (type_quals)
4432 type = c_build_qualified_type (type, type_quals);
4434 type_as_written = type;
4436 decl = build_decl (PARM_DECL, declarator, type);
4437 if (size_varies)
4438 C_DECL_VARIABLE_SIZE (decl) = 1;
4440 /* Compute the type actually passed in the parmlist,
4441 for the case where there is no prototype.
4442 (For example, shorts and chars are passed as ints.)
4443 When there is a prototype, this is overridden later. */
4445 if (type == error_mark_node)
4446 promoted_type = type;
4447 else
4448 promoted_type = c_type_promotes_to (type);
4450 DECL_ARG_TYPE (decl) = promoted_type;
4451 DECL_ARG_TYPE_AS_WRITTEN (decl) = type_as_written;
4453 else if (decl_context == FIELD)
4455 /* Structure field. It may not be a function. */
4457 if (TREE_CODE (type) == FUNCTION_TYPE)
4459 error ("field `%s' declared as a function", name);
4460 type = build_pointer_type (type);
4462 else if (TREE_CODE (type) != ERROR_MARK
4463 && !COMPLETE_OR_UNBOUND_ARRAY_TYPE_P (type))
4465 error ("field `%s' has incomplete type", name);
4466 type = error_mark_node;
4468 /* Move type qualifiers down to element of an array. */
4469 if (TREE_CODE (type) == ARRAY_TYPE && type_quals)
4471 type = build_array_type (c_build_qualified_type (TREE_TYPE (type),
4472 type_quals),
4473 TYPE_DOMAIN (type));
4474 #if 0
4475 /* Leave the field const or volatile as well. */
4476 type_quals = TYPE_UNQUALIFIED;
4477 #endif
4479 decl = build_decl (FIELD_DECL, declarator, type);
4480 DECL_NONADDRESSABLE_P (decl) = bitfield;
4482 if (size_varies)
4483 C_DECL_VARIABLE_SIZE (decl) = 1;
4485 else if (TREE_CODE (type) == FUNCTION_TYPE)
4487 /* Every function declaration is "external"
4488 except for those which are inside a function body
4489 in which `auto' is used.
4490 That is a case not specified by ANSI C,
4491 and we use it for forward declarations for nested functions. */
4492 int extern_ref = (!(specbits & (1 << (int) RID_AUTO))
4493 || current_binding_level == global_binding_level);
4495 if (specbits & (1 << (int) RID_AUTO)
4496 && (pedantic || current_binding_level == global_binding_level))
4497 pedwarn ("invalid storage class for function `%s'", name);
4498 if (specbits & (1 << (int) RID_REGISTER))
4499 error ("invalid storage class for function `%s'", name);
4500 if (specbits & (1 << (int) RID_THREAD))
4501 error ("invalid storage class for function `%s'", name);
4502 /* Function declaration not at top level.
4503 Storage classes other than `extern' are not allowed
4504 and `extern' makes no difference. */
4505 if (current_binding_level != global_binding_level
4506 && (specbits & ((1 << (int) RID_STATIC) | (1 << (int) RID_INLINE)))
4507 && pedantic)
4508 pedwarn ("invalid storage class for function `%s'", name);
4510 decl = build_decl (FUNCTION_DECL, declarator, type);
4511 decl = build_decl_attribute_variant (decl, decl_attr);
4513 DECL_LANG_SPECIFIC (decl) = (struct lang_decl *)
4514 ggc_alloc_cleared (sizeof (struct lang_decl));
4516 if (pedantic && type_quals && ! DECL_IN_SYSTEM_HEADER (decl))
4517 pedwarn ("ISO C forbids qualified function types");
4519 /* GNU C interprets a `volatile void' return type to indicate
4520 that the function does not return. */
4521 if ((type_quals & TYPE_QUAL_VOLATILE)
4522 && !VOID_TYPE_P (TREE_TYPE (TREE_TYPE (decl))))
4523 warning ("`noreturn' function returns non-void value");
4525 if (extern_ref)
4526 DECL_EXTERNAL (decl) = 1;
4527 /* Record absence of global scope for `static' or `auto'. */
4528 TREE_PUBLIC (decl)
4529 = !(specbits & ((1 << (int) RID_STATIC) | (1 << (int) RID_AUTO)));
4531 if (defaulted_int)
4532 C_FUNCTION_IMPLICIT_INT (decl) = 1;
4534 /* Record presence of `inline', if it is reasonable. */
4535 if (MAIN_NAME_P (declarator))
4537 if (inlinep)
4538 warning ("cannot inline function `main'");
4540 else if (inlinep)
4542 /* Assume that otherwise the function can be inlined. */
4543 DECL_DECLARED_INLINE_P (decl) = 1;
4545 /* Do not mark bare declarations as DECL_INLINE. Doing so
4546 in the presence of multiple declarations can result in
4547 the abstract origin pointing between the declarations,
4548 which will confuse dwarf2out. */
4549 if (initialized)
4551 DECL_INLINE (decl) = 1;
4552 if (specbits & (1 << (int) RID_EXTERN))
4553 current_extern_inline = 1;
4556 /* If -finline-functions, assume it can be inlined. This does
4557 two things: let the function be deferred until it is actually
4558 needed, and let dwarf2 know that the function is inlinable. */
4559 else if (flag_inline_trees == 2 && initialized)
4561 DECL_INLINE (decl) = 1;
4562 DECL_DECLARED_INLINE_P (decl) = 0;
4565 else
4567 /* It's a variable. */
4568 /* An uninitialized decl with `extern' is a reference. */
4569 int extern_ref = !initialized && (specbits & (1 << (int) RID_EXTERN));
4571 /* Move type qualifiers down to element of an array. */
4572 if (TREE_CODE (type) == ARRAY_TYPE && type_quals)
4574 int saved_align = TYPE_ALIGN(type);
4575 type = build_array_type (c_build_qualified_type (TREE_TYPE (type),
4576 type_quals),
4577 TYPE_DOMAIN (type));
4578 TYPE_ALIGN (type) = saved_align;
4579 #if 0 /* Leave the variable const or volatile as well. */
4580 type_quals = TYPE_UNQUALIFIED;
4581 #endif
4583 else if (type_quals)
4584 type = c_build_qualified_type (type, type_quals);
4586 decl = build_decl (VAR_DECL, declarator, type);
4587 if (size_varies)
4588 C_DECL_VARIABLE_SIZE (decl) = 1;
4590 if (inlinep)
4591 pedwarn_with_decl (decl, "variable `%s' declared `inline'");
4593 DECL_EXTERNAL (decl) = extern_ref;
4595 /* At top level, the presence of a `static' or `register' storage
4596 class specifier, or the absence of all storage class specifiers
4597 makes this declaration a definition (perhaps tentative). Also,
4598 the absence of both `static' and `register' makes it public. */
4599 if (current_binding_level == global_binding_level)
4601 TREE_PUBLIC (decl) = !(specbits & ((1 << (int) RID_STATIC)
4602 | (1 << (int) RID_REGISTER)));
4603 TREE_STATIC (decl) = !extern_ref;
4605 /* Not at top level, only `static' makes a static definition. */
4606 else
4608 TREE_STATIC (decl) = (specbits & (1 << (int) RID_STATIC)) != 0;
4609 TREE_PUBLIC (decl) = extern_ref;
4612 if (specbits & 1 << (int) RID_THREAD)
4614 if (targetm.have_tls)
4615 DECL_THREAD_LOCAL (decl) = 1;
4616 else
4617 /* A mere warning is sure to result in improper semantics
4618 at runtime. Don't bother to allow this to compile. */
4619 error ("thread-local storage not supported for this target");
4623 /* Record `register' declaration for warnings on &
4624 and in case doing stupid register allocation. */
4626 if (specbits & (1 << (int) RID_REGISTER))
4627 DECL_REGISTER (decl) = 1;
4629 /* Record constancy and volatility. */
4630 c_apply_type_quals_to_decl (type_quals, decl);
4632 /* If a type has volatile components, it should be stored in memory.
4633 Otherwise, the fact that those components are volatile
4634 will be ignored, and would even crash the compiler. */
4635 if (C_TYPE_FIELDS_VOLATILE (TREE_TYPE (decl)))
4636 c_mark_addressable (decl);
4638 decl_attributes (&decl, returned_attrs, 0);
4640 return decl;
4644 /* Decode the parameter-list info for a function type or function definition.
4645 The argument is the value returned by `get_parm_info' (or made in parse.y
4646 if there is an identifier list instead of a parameter decl list).
4647 These two functions are separate because when a function returns
4648 or receives functions then each is called multiple times but the order
4649 of calls is different. The last call to `grokparms' is always the one
4650 that contains the formal parameter names of a function definition.
4652 Store in `last_function_parms' a chain of the decls of parms.
4653 Also store in `last_function_parm_tags' a chain of the struct, union,
4654 and enum tags declared among the parms.
4656 Return a list of arg types to use in the FUNCTION_TYPE for this function.
4658 FUNCDEF_FLAG is nonzero for a function definition, 0 for
4659 a mere declaration. A nonempty identifier-list gets an error message
4660 when FUNCDEF_FLAG is zero. */
4662 static tree
4663 grokparms (parms_info, funcdef_flag)
4664 tree parms_info;
4665 int funcdef_flag;
4667 tree first_parm = TREE_CHAIN (parms_info);
4669 last_function_parms = TREE_PURPOSE (parms_info);
4670 last_function_parm_tags = TREE_VALUE (parms_info);
4672 if (warn_strict_prototypes && first_parm == 0 && !funcdef_flag
4673 && !in_system_header)
4674 warning ("function declaration isn't a prototype");
4676 if (first_parm != 0
4677 && TREE_CODE (TREE_VALUE (first_parm)) == IDENTIFIER_NODE)
4679 if (! funcdef_flag)
4680 pedwarn ("parameter names (without types) in function declaration");
4682 last_function_parms = first_parm;
4683 return 0;
4685 else
4687 tree parm;
4688 tree typelt;
4689 /* We no longer test FUNCDEF_FLAG.
4690 If the arg types are incomplete in a declaration,
4691 they must include undefined tags.
4692 These tags can never be defined in the scope of the declaration,
4693 so the types can never be completed,
4694 and no call can be compiled successfully. */
4695 #if 0
4696 /* In a fcn definition, arg types must be complete. */
4697 if (funcdef_flag)
4698 #endif
4699 for (parm = last_function_parms, typelt = first_parm;
4700 parm;
4701 parm = TREE_CHAIN (parm))
4702 /* Skip over any enumeration constants declared here. */
4703 if (TREE_CODE (parm) == PARM_DECL)
4705 /* Barf if the parameter itself has an incomplete type. */
4706 tree type = TREE_VALUE (typelt);
4707 if (type == error_mark_node)
4708 continue;
4709 if (!COMPLETE_TYPE_P (type))
4711 if (funcdef_flag && DECL_NAME (parm) != 0)
4712 error ("parameter `%s' has incomplete type",
4713 IDENTIFIER_POINTER (DECL_NAME (parm)));
4714 else
4715 warning ("parameter has incomplete type");
4716 if (funcdef_flag)
4718 TREE_VALUE (typelt) = error_mark_node;
4719 TREE_TYPE (parm) = error_mark_node;
4722 #if 0
4723 /* This has been replaced by parm_tags_warning, which
4724 uses a more accurate criterion for what to warn
4725 about. */
4726 else
4728 /* Now warn if is a pointer to an incomplete type. */
4729 while (TREE_CODE (type) == POINTER_TYPE
4730 || TREE_CODE (type) == REFERENCE_TYPE)
4731 type = TREE_TYPE (type);
4732 type = TYPE_MAIN_VARIANT (type);
4733 if (!COMPLETE_TYPE_P (type))
4735 if (DECL_NAME (parm) != 0)
4736 warning ("parameter `%s' points to incomplete type",
4737 IDENTIFIER_POINTER (DECL_NAME (parm)));
4738 else
4739 warning ("parameter points to incomplete type");
4742 #endif
4743 typelt = TREE_CHAIN (typelt);
4746 return first_parm;
4750 /* Return a tree_list node with info on a parameter list just parsed.
4751 The TREE_PURPOSE is a chain of decls of those parms.
4752 The TREE_VALUE is a list of structure, union and enum tags defined.
4753 The TREE_CHAIN is a list of argument types to go in the FUNCTION_TYPE.
4754 This tree_list node is later fed to `grokparms'.
4756 VOID_AT_END nonzero means append `void' to the end of the type-list.
4757 Zero means the parmlist ended with an ellipsis so don't append `void'. */
4759 tree
4760 get_parm_info (void_at_end)
4761 int void_at_end;
4763 tree decl, t;
4764 tree types = 0;
4765 int erred = 0;
4766 tree tags = gettags ();
4767 tree parms = getdecls ();
4768 tree new_parms = 0;
4769 tree order = current_binding_level->parm_order;
4771 /* Just `void' (and no ellipsis) is special. There are really no parms.
4772 But if the `void' is qualified (by `const' or `volatile') or has a
4773 storage class specifier (`register'), then the behavior is undefined;
4774 by not counting it as the special case of `void' we will cause an
4775 error later. Typedefs for `void' are OK (see DR#157). */
4776 if (void_at_end && parms != 0
4777 && TREE_CHAIN (parms) == 0
4778 && VOID_TYPE_P (TREE_TYPE (parms))
4779 && ! TREE_THIS_VOLATILE (parms)
4780 && ! TREE_READONLY (parms)
4781 && ! DECL_REGISTER (parms)
4782 && DECL_NAME (parms) == 0)
4784 parms = NULL_TREE;
4785 storedecls (NULL_TREE);
4786 return tree_cons (NULL_TREE, NULL_TREE,
4787 tree_cons (NULL_TREE, void_type_node, NULL_TREE));
4790 /* Extract enumerator values and other non-parms declared with the parms.
4791 Likewise any forward parm decls that didn't have real parm decls. */
4792 for (decl = parms; decl;)
4794 tree next = TREE_CHAIN (decl);
4796 if (TREE_CODE (decl) != PARM_DECL)
4798 TREE_CHAIN (decl) = new_parms;
4799 new_parms = decl;
4801 else if (TREE_ASM_WRITTEN (decl))
4803 error_with_decl (decl,
4804 "parameter `%s' has just a forward declaration");
4805 TREE_CHAIN (decl) = new_parms;
4806 new_parms = decl;
4808 decl = next;
4811 /* Put the parm decls back in the order they were in in the parm list. */
4812 for (t = order; t; t = TREE_CHAIN (t))
4814 if (TREE_CHAIN (t))
4815 TREE_CHAIN (TREE_VALUE (t)) = TREE_VALUE (TREE_CHAIN (t));
4816 else
4817 TREE_CHAIN (TREE_VALUE (t)) = 0;
4820 new_parms = chainon (order ? nreverse (TREE_VALUE (order)) : 0,
4821 new_parms);
4823 /* Store the parmlist in the binding level since the old one
4824 is no longer a valid list. (We have changed the chain pointers.) */
4825 storedecls (new_parms);
4827 for (decl = new_parms; decl; decl = TREE_CHAIN (decl))
4828 /* There may also be declarations for enumerators if an enumeration
4829 type is declared among the parms. Ignore them here. */
4830 if (TREE_CODE (decl) == PARM_DECL)
4832 /* Since there is a prototype,
4833 args are passed in their declared types. */
4834 tree type = TREE_TYPE (decl);
4835 DECL_ARG_TYPE (decl) = type;
4836 if (PROMOTE_PROTOTYPES
4837 && INTEGRAL_TYPE_P (type)
4838 && TYPE_PRECISION (type) < TYPE_PRECISION (integer_type_node))
4839 DECL_ARG_TYPE (decl) = integer_type_node;
4841 types = tree_cons (NULL_TREE, TREE_TYPE (decl), types);
4842 if (VOID_TYPE_P (TREE_VALUE (types)) && ! erred
4843 && DECL_NAME (decl) == 0)
4845 error ("`void' in parameter list must be the entire list");
4846 erred = 1;
4850 if (void_at_end)
4851 return tree_cons (new_parms, tags,
4852 nreverse (tree_cons (NULL_TREE, void_type_node, types)));
4854 return tree_cons (new_parms, tags, nreverse (types));
4857 /* At end of parameter list, warn about any struct, union or enum tags
4858 defined within. Do so because these types cannot ever become complete. */
4860 void
4861 parmlist_tags_warning ()
4863 tree elt;
4864 static int already;
4866 for (elt = current_binding_level->tags; elt; elt = TREE_CHAIN (elt))
4868 enum tree_code code = TREE_CODE (TREE_VALUE (elt));
4869 /* An anonymous union parm type is meaningful as a GNU extension.
4870 So don't warn for that. */
4871 if (code == UNION_TYPE && TREE_PURPOSE (elt) == 0 && !pedantic)
4872 continue;
4873 if (TREE_PURPOSE (elt) != 0)
4875 if (code == RECORD_TYPE)
4876 warning ("`struct %s' declared inside parameter list",
4877 IDENTIFIER_POINTER (TREE_PURPOSE (elt)));
4878 else if (code == UNION_TYPE)
4879 warning ("`union %s' declared inside parameter list",
4880 IDENTIFIER_POINTER (TREE_PURPOSE (elt)));
4881 else
4882 warning ("`enum %s' declared inside parameter list",
4883 IDENTIFIER_POINTER (TREE_PURPOSE (elt)));
4885 else
4887 /* For translation these need to be separate warnings */
4888 if (code == RECORD_TYPE)
4889 warning ("anonymous struct declared inside parameter list");
4890 else if (code == UNION_TYPE)
4891 warning ("anonymous union declared inside parameter list");
4892 else
4893 warning ("anonymous enum declared inside parameter list");
4895 if (! already)
4897 warning ("its scope is only this definition or declaration, which is probably not what you want");
4898 already = 1;
4903 /* Get the struct, enum or union (CODE says which) with tag NAME.
4904 Define the tag as a forward-reference if it is not defined. */
4906 tree
4907 xref_tag (code, name)
4908 enum tree_code code;
4909 tree name;
4911 /* If a cross reference is requested, look up the type
4912 already defined for this tag and return it. */
4914 tree ref = lookup_tag (code, name, current_binding_level, 0);
4915 /* If this is the right type of tag, return what we found.
4916 (This reference will be shadowed by shadow_tag later if appropriate.)
4917 If this is the wrong type of tag, do not return it. If it was the
4918 wrong type in the same binding level, we will have had an error
4919 message already; if in a different binding level and declaring
4920 a name, pending_xref_error will give an error message; but if in a
4921 different binding level and not declaring a name, this tag should
4922 shadow the previous declaration of a different type of tag, and
4923 this would not work properly if we return the reference found.
4924 (For example, with "struct foo" in an outer scope, "union foo;"
4925 must shadow that tag with a new one of union type.) */
4926 if (ref && TREE_CODE (ref) == code)
4927 return ref;
4929 /* If no such tag is yet defined, create a forward-reference node
4930 and record it as the "definition".
4931 When a real declaration of this type is found,
4932 the forward-reference will be altered into a real type. */
4934 ref = make_node (code);
4935 if (code == ENUMERAL_TYPE)
4937 /* Give the type a default layout like unsigned int
4938 to avoid crashing if it does not get defined. */
4939 TYPE_MODE (ref) = TYPE_MODE (unsigned_type_node);
4940 TYPE_ALIGN (ref) = TYPE_ALIGN (unsigned_type_node);
4941 TYPE_USER_ALIGN (ref) = 0;
4942 TREE_UNSIGNED (ref) = 1;
4943 TYPE_PRECISION (ref) = TYPE_PRECISION (unsigned_type_node);
4944 TYPE_MIN_VALUE (ref) = TYPE_MIN_VALUE (unsigned_type_node);
4945 TYPE_MAX_VALUE (ref) = TYPE_MAX_VALUE (unsigned_type_node);
4948 pushtag (name, ref);
4950 return ref;
4953 /* Make sure that the tag NAME is defined *in the current binding level*
4954 at least as a forward reference.
4955 CODE says which kind of tag NAME ought to be. */
4957 tree
4958 start_struct (code, name)
4959 enum tree_code code;
4960 tree name;
4962 /* If there is already a tag defined at this binding level
4963 (as a forward reference), just return it. */
4965 tree ref = 0;
4967 if (name != 0)
4968 ref = lookup_tag (code, name, current_binding_level, 1);
4969 if (ref && TREE_CODE (ref) == code)
4971 if (TYPE_FIELDS (ref))
4973 if (code == UNION_TYPE)
4974 error ("redefinition of `union %s'", IDENTIFIER_POINTER (name));
4975 else
4976 error ("redefinition of `struct %s'", IDENTIFIER_POINTER (name));
4979 else
4981 /* Otherwise create a forward-reference just so the tag is in scope. */
4983 ref = make_node (code);
4984 pushtag (name, ref);
4987 C_TYPE_BEING_DEFINED (ref) = 1;
4988 TYPE_PACKED (ref) = flag_pack_struct;
4989 return ref;
4992 /* Process the specs, declarator (NULL if omitted) and width (NULL if omitted)
4993 of a structure component, returning a FIELD_DECL node.
4994 WIDTH is non-NULL for bit fields only, and is an INTEGER_CST node.
4996 This is done during the parsing of the struct declaration.
4997 The FIELD_DECL nodes are chained together and the lot of them
4998 are ultimately passed to `build_struct' to make the RECORD_TYPE node. */
5000 tree
5001 grokfield (filename, line, declarator, declspecs, width)
5002 const char *filename ATTRIBUTE_UNUSED;
5003 int line ATTRIBUTE_UNUSED;
5004 tree declarator, declspecs, width;
5006 tree value;
5008 if (declarator == NULL_TREE && width == NULL_TREE)
5010 /* This is an unnamed decl.
5012 If we have something of the form "union { list } ;" then this
5013 is the anonymous union extension. Similarly for struct.
5015 If this is something of the form "struct foo;", then
5016 If MS extensions are enabled, this is handled as an
5017 anonymous struct.
5018 Otherwise this is a forward declaration of a structure tag.
5020 If this is something of the form "foo;" and foo is a TYPE_DECL, then
5021 If MS extensions are enabled and foo names a structure, then
5022 again this is an anonymous struct.
5023 Otherwise this is an error.
5025 Oh what a horrid tangled web we weave. I wonder if MS consiously
5026 took this from Plan 9 or if it was an accident of implementation
5027 that took root before someone noticed the bug... */
5029 tree type = TREE_VALUE (declspecs);
5031 if (flag_ms_extensions && TREE_CODE (type) == TYPE_DECL)
5032 type = TREE_TYPE (type);
5033 if (TREE_CODE (type) == RECORD_TYPE || TREE_CODE (type) == UNION_TYPE)
5035 if (flag_ms_extensions)
5036 ; /* ok */
5037 else if (flag_iso)
5038 goto warn_unnamed_field;
5039 else if (TYPE_NAME (type) == NULL)
5040 ; /* ok */
5041 else
5042 goto warn_unnamed_field;
5044 else
5046 warn_unnamed_field:
5047 warning ("declaration does not declare anything");
5048 return NULL_TREE;
5052 value = grokdeclarator (declarator, declspecs, width ? BITFIELD : FIELD, 0);
5054 finish_decl (value, NULL_TREE, NULL_TREE);
5055 DECL_INITIAL (value) = width;
5057 if (flag_objc)
5058 objc_check_decl (value);
5059 return value;
5062 /* Fill in the fields of a RECORD_TYPE or UNION_TYPE node, T.
5063 FIELDLIST is a chain of FIELD_DECL nodes for the fields.
5064 ATTRIBUTES are attributes to be applied to the structure. */
5066 tree
5067 finish_struct (t, fieldlist, attributes)
5068 tree t;
5069 tree fieldlist;
5070 tree attributes;
5072 tree x;
5073 int toplevel = global_binding_level == current_binding_level;
5074 int saw_named_field;
5076 /* If this type was previously laid out as a forward reference,
5077 make sure we lay it out again. */
5079 TYPE_SIZE (t) = 0;
5081 decl_attributes (&t, attributes, (int) ATTR_FLAG_TYPE_IN_PLACE);
5083 /* Nameless union parm types are useful as GCC extension. */
5084 if (! (TREE_CODE (t) == UNION_TYPE && TYPE_NAME (t) == 0) && !pedantic)
5085 /* Otherwise, warn about any struct or union def. in parmlist. */
5086 if (in_parm_level_p ())
5088 if (pedantic)
5089 pedwarn ("%s defined inside parms",
5090 TREE_CODE (t) == UNION_TYPE ? _("union") : _("structure"));
5091 else
5092 warning ("%s defined inside parms",
5093 TREE_CODE (t) == UNION_TYPE ? _("union") : _("structure"));
5096 if (pedantic)
5098 for (x = fieldlist; x; x = TREE_CHAIN (x))
5099 if (DECL_NAME (x) != 0)
5100 break;
5102 if (x == 0)
5103 pedwarn ("%s has no %s",
5104 TREE_CODE (t) == UNION_TYPE ? _("union") : _("struct"),
5105 fieldlist ? _("named members") : _("members"));
5108 /* Install struct as DECL_CONTEXT of each field decl.
5109 Also process specified field sizes,m which is found in the DECL_INITIAL.
5110 Store 0 there, except for ": 0" fields (so we can find them
5111 and delete them, below). */
5113 saw_named_field = 0;
5114 for (x = fieldlist; x; x = TREE_CHAIN (x))
5116 DECL_CONTEXT (x) = t;
5117 DECL_PACKED (x) |= TYPE_PACKED (t);
5119 /* If any field is const, the structure type is pseudo-const. */
5120 if (TREE_READONLY (x))
5121 C_TYPE_FIELDS_READONLY (t) = 1;
5122 else
5124 /* A field that is pseudo-const makes the structure likewise. */
5125 tree t1 = TREE_TYPE (x);
5126 while (TREE_CODE (t1) == ARRAY_TYPE)
5127 t1 = TREE_TYPE (t1);
5128 if ((TREE_CODE (t1) == RECORD_TYPE || TREE_CODE (t1) == UNION_TYPE)
5129 && C_TYPE_FIELDS_READONLY (t1))
5130 C_TYPE_FIELDS_READONLY (t) = 1;
5133 /* Any field that is volatile means variables of this type must be
5134 treated in some ways as volatile. */
5135 if (TREE_THIS_VOLATILE (x))
5136 C_TYPE_FIELDS_VOLATILE (t) = 1;
5138 /* Any field of nominal variable size implies structure is too. */
5139 if (C_DECL_VARIABLE_SIZE (x))
5140 C_TYPE_VARIABLE_SIZE (t) = 1;
5142 /* Detect invalid nested redefinition. */
5143 if (TREE_TYPE (x) == t)
5144 error ("nested redefinition of `%s'",
5145 IDENTIFIER_POINTER (TYPE_NAME (t)));
5147 /* Detect invalid bit-field size. */
5148 if (DECL_INITIAL (x))
5149 STRIP_NOPS (DECL_INITIAL (x));
5150 if (DECL_INITIAL (x))
5152 if (TREE_CODE (DECL_INITIAL (x)) == INTEGER_CST)
5153 constant_expression_warning (DECL_INITIAL (x));
5154 else
5156 error_with_decl (x,
5157 "bit-field `%s' width not an integer constant");
5158 DECL_INITIAL (x) = NULL;
5162 /* Detect invalid bit-field type. */
5163 if (DECL_INITIAL (x)
5164 && TREE_CODE (TREE_TYPE (x)) != INTEGER_TYPE
5165 && TREE_CODE (TREE_TYPE (x)) != BOOLEAN_TYPE
5166 && TREE_CODE (TREE_TYPE (x)) != ENUMERAL_TYPE)
5168 error_with_decl (x, "bit-field `%s' has invalid type");
5169 DECL_INITIAL (x) = NULL;
5172 if (DECL_INITIAL (x) && pedantic
5173 && TYPE_MAIN_VARIANT (TREE_TYPE (x)) != integer_type_node
5174 && TYPE_MAIN_VARIANT (TREE_TYPE (x)) != unsigned_type_node
5175 && TYPE_MAIN_VARIANT (TREE_TYPE (x)) != c_bool_type_node
5176 /* Accept an enum that's equivalent to int or unsigned int. */
5177 && !(TREE_CODE (TREE_TYPE (x)) == ENUMERAL_TYPE
5178 && (TYPE_PRECISION (TREE_TYPE (x))
5179 == TYPE_PRECISION (integer_type_node))))
5180 pedwarn_with_decl (x, "bit-field `%s' type invalid in ISO C");
5182 /* Detect and ignore out of range field width and process valid
5183 field widths. */
5184 if (DECL_INITIAL (x))
5186 int max_width
5187 = (TYPE_MAIN_VARIANT (TREE_TYPE (x)) == c_bool_type_node
5188 ? CHAR_TYPE_SIZE : TYPE_PRECISION (TREE_TYPE (x)));
5190 if (tree_int_cst_sgn (DECL_INITIAL (x)) < 0)
5191 error_with_decl (x, "negative width in bit-field `%s'");
5192 else if (0 < compare_tree_int (DECL_INITIAL (x), max_width))
5193 pedwarn_with_decl (x, "width of `%s' exceeds its type");
5194 else if (integer_zerop (DECL_INITIAL (x)) && DECL_NAME (x) != 0)
5195 error_with_decl (x, "zero width for bit-field `%s'");
5196 else
5198 /* The test above has assured us that TREE_INT_CST_HIGH is 0. */
5199 unsigned HOST_WIDE_INT width
5200 = tree_low_cst (DECL_INITIAL (x), 1);
5202 if (TREE_CODE (TREE_TYPE (x)) == ENUMERAL_TYPE
5203 && (width < min_precision (TYPE_MIN_VALUE (TREE_TYPE (x)),
5204 TREE_UNSIGNED (TREE_TYPE (x)))
5205 || (width
5206 < min_precision (TYPE_MAX_VALUE (TREE_TYPE (x)),
5207 TREE_UNSIGNED (TREE_TYPE (x))))))
5208 warning_with_decl (x,
5209 "`%s' is narrower than values of its type");
5211 DECL_SIZE (x) = bitsize_int (width);
5212 DECL_BIT_FIELD (x) = 1;
5213 SET_DECL_C_BIT_FIELD (x);
5215 if (width == 0
5216 && ! (* targetm.ms_bitfield_layout_p) (t))
5218 /* field size 0 => force desired amount of alignment. */
5219 #ifdef EMPTY_FIELD_BOUNDARY
5220 DECL_ALIGN (x) = MAX (DECL_ALIGN (x), EMPTY_FIELD_BOUNDARY);
5221 #endif
5222 #ifdef PCC_BITFIELD_TYPE_MATTERS
5223 if (PCC_BITFIELD_TYPE_MATTERS)
5225 DECL_ALIGN (x) = MAX (DECL_ALIGN (x),
5226 TYPE_ALIGN (TREE_TYPE (x)));
5227 DECL_USER_ALIGN (x) |= TYPE_USER_ALIGN (TREE_TYPE (x));
5229 #endif
5234 else if (TREE_TYPE (x) != error_mark_node)
5236 unsigned int min_align = (DECL_PACKED (x) ? BITS_PER_UNIT
5237 : TYPE_ALIGN (TREE_TYPE (x)));
5239 /* Non-bit-fields are aligned for their type, except packed
5240 fields which require only BITS_PER_UNIT alignment. */
5241 DECL_ALIGN (x) = MAX (DECL_ALIGN (x), min_align);
5242 if (! DECL_PACKED (x))
5243 DECL_USER_ALIGN (x) |= TYPE_USER_ALIGN (TREE_TYPE (x));
5246 DECL_INITIAL (x) = 0;
5248 /* Detect flexible array member in an invalid context. */
5249 if (TREE_CODE (TREE_TYPE (x)) == ARRAY_TYPE
5250 && TYPE_SIZE (TREE_TYPE (x)) == NULL_TREE
5251 && TYPE_DOMAIN (TREE_TYPE (x)) != NULL_TREE
5252 && TYPE_MAX_VALUE (TYPE_DOMAIN (TREE_TYPE (x))) == NULL_TREE)
5254 if (TREE_CODE (t) == UNION_TYPE)
5255 error_with_decl (x, "flexible array member in union");
5256 else if (TREE_CHAIN (x) != NULL_TREE)
5257 error_with_decl (x, "flexible array member not at end of struct");
5258 else if (! saw_named_field)
5259 error_with_decl (x, "flexible array member in otherwise empty struct");
5262 if (pedantic && TREE_CODE (t) == RECORD_TYPE
5263 && flexible_array_type_p (TREE_TYPE (x)))
5264 pedwarn_with_decl (x, "invalid use of structure with flexible array member");
5266 if (DECL_NAME (x))
5267 saw_named_field = 1;
5270 /* Delete all duplicate fields from the fieldlist */
5271 for (x = fieldlist; x && TREE_CHAIN (x);)
5272 /* Anonymous fields aren't duplicates. */
5273 if (DECL_NAME (TREE_CHAIN (x)) == 0)
5274 x = TREE_CHAIN (x);
5275 else
5277 tree y = fieldlist;
5279 while (1)
5281 if (DECL_NAME (y) == DECL_NAME (TREE_CHAIN (x)))
5282 break;
5283 if (y == x)
5284 break;
5285 y = TREE_CHAIN (y);
5287 if (DECL_NAME (y) == DECL_NAME (TREE_CHAIN (x)))
5289 error_with_decl (TREE_CHAIN (x), "duplicate member `%s'");
5290 TREE_CHAIN (x) = TREE_CHAIN (TREE_CHAIN (x));
5292 else
5293 x = TREE_CHAIN (x);
5296 /* Now we have the nearly final fieldlist. Record it,
5297 then lay out the structure or union (including the fields). */
5299 TYPE_FIELDS (t) = fieldlist;
5301 layout_type (t);
5303 /* Delete all zero-width bit-fields from the fieldlist */
5305 tree *fieldlistp = &fieldlist;
5306 while (*fieldlistp)
5307 if (TREE_CODE (*fieldlistp) == FIELD_DECL && DECL_INITIAL (*fieldlistp))
5308 *fieldlistp = TREE_CHAIN (*fieldlistp);
5309 else
5310 fieldlistp = &TREE_CHAIN (*fieldlistp);
5313 /* Now we have the truly final field list.
5314 Store it in this type and in the variants. */
5316 TYPE_FIELDS (t) = fieldlist;
5318 for (x = TYPE_MAIN_VARIANT (t); x; x = TYPE_NEXT_VARIANT (x))
5320 TYPE_FIELDS (x) = TYPE_FIELDS (t);
5321 TYPE_LANG_SPECIFIC (x) = TYPE_LANG_SPECIFIC (t);
5322 TYPE_ALIGN (x) = TYPE_ALIGN (t);
5323 TYPE_USER_ALIGN (x) = TYPE_USER_ALIGN (t);
5326 /* If this was supposed to be a transparent union, but we can't
5327 make it one, warn and turn off the flag. */
5328 if (TREE_CODE (t) == UNION_TYPE
5329 && TYPE_TRANSPARENT_UNION (t)
5330 && TYPE_MODE (t) != DECL_MODE (TYPE_FIELDS (t)))
5332 TYPE_TRANSPARENT_UNION (t) = 0;
5333 warning ("union cannot be made transparent");
5336 /* If this structure or union completes the type of any previous
5337 variable declaration, lay it out and output its rtl. */
5339 if (current_binding_level->incomplete_list != NULL_TREE)
5341 tree prev = NULL_TREE;
5343 for (x = current_binding_level->incomplete_list; x; x = TREE_CHAIN (x))
5345 tree decl = TREE_VALUE (x);
5347 if (TYPE_MAIN_VARIANT (TREE_TYPE (decl)) == TYPE_MAIN_VARIANT (t)
5348 && TREE_CODE (decl) != TYPE_DECL)
5350 layout_decl (decl, 0);
5351 /* This is a no-op in c-lang.c or something real in objc-act.c. */
5352 if (flag_objc)
5353 objc_check_decl (decl);
5354 rest_of_decl_compilation (decl, NULL, toplevel, 0);
5355 if (! toplevel)
5356 expand_decl (decl);
5357 /* Unlink X from the incomplete list. */
5358 if (prev)
5359 TREE_CHAIN (prev) = TREE_CHAIN (x);
5360 else
5361 current_binding_level->incomplete_list = TREE_CHAIN (x);
5363 else if (!COMPLETE_TYPE_P (TREE_TYPE (decl))
5364 && TREE_CODE (TREE_TYPE (decl)) == ARRAY_TYPE)
5366 tree element = TREE_TYPE (decl);
5367 while (TREE_CODE (element) == ARRAY_TYPE)
5368 element = TREE_TYPE (element);
5369 if (element == t)
5371 layout_array_type (TREE_TYPE (decl));
5372 if (TREE_CODE (decl) != TYPE_DECL)
5374 layout_decl (decl, 0);
5375 if (flag_objc)
5376 objc_check_decl (decl);
5377 rest_of_decl_compilation (decl, NULL, toplevel, 0);
5378 if (! toplevel)
5379 expand_decl (decl);
5381 /* Unlink X from the incomplete list. */
5382 if (prev)
5383 TREE_CHAIN (prev) = TREE_CHAIN (x);
5384 else
5385 current_binding_level->incomplete_list = TREE_CHAIN (x);
5391 /* Finish debugging output for this type. */
5392 rest_of_type_compilation (t, toplevel);
5394 return t;
5397 /* Lay out the type T, and its element type, and so on. */
5399 static void
5400 layout_array_type (t)
5401 tree t;
5403 if (TREE_CODE (TREE_TYPE (t)) == ARRAY_TYPE)
5404 layout_array_type (TREE_TYPE (t));
5405 layout_type (t);
5408 /* Begin compiling the definition of an enumeration type.
5409 NAME is its name (or null if anonymous).
5410 Returns the type object, as yet incomplete.
5411 Also records info about it so that build_enumerator
5412 may be used to declare the individual values as they are read. */
5414 tree
5415 start_enum (name)
5416 tree name;
5418 tree enumtype = 0;
5420 /* If this is the real definition for a previous forward reference,
5421 fill in the contents in the same object that used to be the
5422 forward reference. */
5424 if (name != 0)
5425 enumtype = lookup_tag (ENUMERAL_TYPE, name, current_binding_level, 1);
5427 if (enumtype == 0 || TREE_CODE (enumtype) != ENUMERAL_TYPE)
5429 enumtype = make_node (ENUMERAL_TYPE);
5430 pushtag (name, enumtype);
5433 C_TYPE_BEING_DEFINED (enumtype) = 1;
5435 if (TYPE_VALUES (enumtype) != 0)
5437 /* This enum is a named one that has been declared already. */
5438 error ("redeclaration of `enum %s'", IDENTIFIER_POINTER (name));
5440 /* Completely replace its old definition.
5441 The old enumerators remain defined, however. */
5442 TYPE_VALUES (enumtype) = 0;
5445 enum_next_value = integer_zero_node;
5446 enum_overflow = 0;
5448 if (flag_short_enums)
5449 TYPE_PACKED (enumtype) = 1;
5451 return enumtype;
5454 /* After processing and defining all the values of an enumeration type,
5455 install their decls in the enumeration type and finish it off.
5456 ENUMTYPE is the type object, VALUES a list of decl-value pairs,
5457 and ATTRIBUTES are the specified attributes.
5458 Returns ENUMTYPE. */
5460 tree
5461 finish_enum (enumtype, values, attributes)
5462 tree enumtype;
5463 tree values;
5464 tree attributes;
5466 tree pair, tem;
5467 tree minnode = 0, maxnode = 0, enum_value_type;
5468 int precision, unsign;
5469 int toplevel = (global_binding_level == current_binding_level);
5471 if (in_parm_level_p ())
5472 warning ("enum defined inside parms");
5474 decl_attributes (&enumtype, attributes, (int) ATTR_FLAG_TYPE_IN_PLACE);
5476 /* Calculate the maximum value of any enumerator in this type. */
5478 if (values == error_mark_node)
5479 minnode = maxnode = integer_zero_node;
5480 else
5482 minnode = maxnode = TREE_VALUE (values);
5483 for (pair = TREE_CHAIN (values); pair; pair = TREE_CHAIN (pair))
5485 tree value = TREE_VALUE (pair);
5486 if (tree_int_cst_lt (maxnode, value))
5487 maxnode = value;
5488 if (tree_int_cst_lt (value, minnode))
5489 minnode = value;
5493 /* Construct the final type of this enumeration. It is the same
5494 as one of the integral types - the narrowest one that fits, except
5495 that normally we only go as narrow as int - and signed iff any of
5496 the values are negative. */
5497 unsign = (tree_int_cst_sgn (minnode) >= 0);
5498 precision = MAX (min_precision (minnode, unsign),
5499 min_precision (maxnode, unsign));
5500 if (TYPE_PACKED (enumtype) || precision > TYPE_PRECISION (integer_type_node))
5502 tree narrowest = c_common_type_for_size (precision, unsign);
5503 if (narrowest == 0)
5505 warning ("enumeration values exceed range of largest integer");
5506 narrowest = long_long_integer_type_node;
5509 precision = TYPE_PRECISION (narrowest);
5511 else
5512 precision = TYPE_PRECISION (integer_type_node);
5514 if (precision == TYPE_PRECISION (integer_type_node))
5515 enum_value_type = c_common_type_for_size (precision, 0);
5516 else
5517 enum_value_type = enumtype;
5519 TYPE_MIN_VALUE (enumtype) = minnode;
5520 TYPE_MAX_VALUE (enumtype) = maxnode;
5521 TYPE_PRECISION (enumtype) = precision;
5522 TREE_UNSIGNED (enumtype) = unsign;
5523 TYPE_SIZE (enumtype) = 0;
5524 layout_type (enumtype);
5526 if (values != error_mark_node)
5528 /* Change the type of the enumerators to be the enum type. We
5529 need to do this irrespective of the size of the enum, for
5530 proper type checking. Replace the DECL_INITIALs of the
5531 enumerators, and the value slots of the list, with copies
5532 that have the enum type; they cannot be modified in place
5533 because they may be shared (e.g. integer_zero_node) Finally,
5534 change the purpose slots to point to the names of the decls. */
5535 for (pair = values; pair; pair = TREE_CHAIN (pair))
5537 tree enu = TREE_PURPOSE (pair);
5539 TREE_TYPE (enu) = enumtype;
5540 DECL_SIZE (enu) = TYPE_SIZE (enumtype);
5541 DECL_SIZE_UNIT (enu) = TYPE_SIZE_UNIT (enumtype);
5542 DECL_ALIGN (enu) = TYPE_ALIGN (enumtype);
5543 DECL_USER_ALIGN (enu) = TYPE_USER_ALIGN (enumtype);
5544 DECL_MODE (enu) = TYPE_MODE (enumtype);
5546 /* The ISO C Standard mandates enumerators to have type int,
5547 even though the underlying type of an enum type is
5548 unspecified. Here we convert any enumerators that fit in
5549 an int to type int, to avoid promotions to unsigned types
5550 when comparing integers with enumerators that fit in the
5551 int range. When -pedantic is given, build_enumerator()
5552 would have already taken care of those that don't fit. */
5553 if (int_fits_type_p (DECL_INITIAL (enu), enum_value_type))
5554 DECL_INITIAL (enu) = convert (enum_value_type, DECL_INITIAL (enu));
5555 else
5556 DECL_INITIAL (enu) = convert (enumtype, DECL_INITIAL (enu));
5558 TREE_PURPOSE (pair) = DECL_NAME (enu);
5559 TREE_VALUE (pair) = DECL_INITIAL (enu);
5562 TYPE_VALUES (enumtype) = values;
5565 /* Fix up all variant types of this enum type. */
5566 for (tem = TYPE_MAIN_VARIANT (enumtype); tem; tem = TYPE_NEXT_VARIANT (tem))
5568 if (tem == enumtype)
5569 continue;
5570 TYPE_VALUES (tem) = TYPE_VALUES (enumtype);
5571 TYPE_MIN_VALUE (tem) = TYPE_MIN_VALUE (enumtype);
5572 TYPE_MAX_VALUE (tem) = TYPE_MAX_VALUE (enumtype);
5573 TYPE_SIZE (tem) = TYPE_SIZE (enumtype);
5574 TYPE_SIZE_UNIT (tem) = TYPE_SIZE_UNIT (enumtype);
5575 TYPE_MODE (tem) = TYPE_MODE (enumtype);
5576 TYPE_PRECISION (tem) = TYPE_PRECISION (enumtype);
5577 TYPE_ALIGN (tem) = TYPE_ALIGN (enumtype);
5578 TYPE_USER_ALIGN (tem) = TYPE_USER_ALIGN (enumtype);
5579 TREE_UNSIGNED (tem) = TREE_UNSIGNED (enumtype);
5582 /* Finish debugging output for this type. */
5583 rest_of_type_compilation (enumtype, toplevel);
5585 return enumtype;
5588 /* Build and install a CONST_DECL for one value of the
5589 current enumeration type (one that was begun with start_enum).
5590 Return a tree-list containing the CONST_DECL and its value.
5591 Assignment of sequential values by default is handled here. */
5593 tree
5594 build_enumerator (name, value)
5595 tree name, value;
5597 tree decl, type;
5599 /* Validate and default VALUE. */
5601 /* Remove no-op casts from the value. */
5602 if (value)
5603 STRIP_TYPE_NOPS (value);
5605 if (value != 0)
5607 if (TREE_CODE (value) == INTEGER_CST)
5609 value = default_conversion (value);
5610 constant_expression_warning (value);
5612 else
5614 error ("enumerator value for `%s' not integer constant",
5615 IDENTIFIER_POINTER (name));
5616 value = 0;
5620 /* Default based on previous value. */
5621 /* It should no longer be possible to have NON_LVALUE_EXPR
5622 in the default. */
5623 if (value == 0)
5625 value = enum_next_value;
5626 if (enum_overflow)
5627 error ("overflow in enumeration values");
5630 if (pedantic && ! int_fits_type_p (value, integer_type_node))
5632 pedwarn ("ISO C restricts enumerator values to range of `int'");
5633 value = convert (integer_type_node, value);
5636 /* Set basis for default for next value. */
5637 enum_next_value = build_binary_op (PLUS_EXPR, value, integer_one_node, 0);
5638 enum_overflow = tree_int_cst_lt (enum_next_value, value);
5640 /* Now create a declaration for the enum value name. */
5642 type = TREE_TYPE (value);
5643 type = c_common_type_for_size (MAX (TYPE_PRECISION (type),
5644 TYPE_PRECISION (integer_type_node)),
5645 (TYPE_PRECISION (type)
5646 >= TYPE_PRECISION (integer_type_node)
5647 && TREE_UNSIGNED (type)));
5649 decl = build_decl (CONST_DECL, name, type);
5650 DECL_INITIAL (decl) = convert (type, value);
5651 pushdecl (decl);
5653 return tree_cons (decl, value, NULL_TREE);
5657 /* Create the FUNCTION_DECL for a function definition.
5658 DECLSPECS, DECLARATOR and ATTRIBUTES are the parts of
5659 the declaration; they describe the function's name and the type it returns,
5660 but twisted together in a fashion that parallels the syntax of C.
5662 This function creates a binding context for the function body
5663 as well as setting up the FUNCTION_DECL in current_function_decl.
5665 Returns 1 on success. If the DECLARATOR is not suitable for a function
5666 (it defines a datum instead), we return 0, which tells
5667 yyparse to report a parse error. */
5670 start_function (declspecs, declarator, attributes)
5671 tree declarator, declspecs, attributes;
5673 tree decl1, old_decl;
5674 tree restype;
5675 int old_immediate_size_expand = immediate_size_expand;
5677 current_function_returns_value = 0; /* Assume, until we see it does. */
5678 current_function_returns_null = 0;
5679 current_function_returns_abnormally = 0;
5680 warn_about_return_type = 0;
5681 current_extern_inline = 0;
5682 named_labels = 0;
5683 shadowed_labels = 0;
5685 /* Don't expand any sizes in the return type of the function. */
5686 immediate_size_expand = 0;
5688 decl1 = grokdeclarator (declarator, declspecs, FUNCDEF, 1);
5690 /* If the declarator is not suitable for a function definition,
5691 cause a syntax error. */
5692 if (decl1 == 0)
5694 immediate_size_expand = old_immediate_size_expand;
5695 return 0;
5698 decl_attributes (&decl1, attributes, 0);
5700 /* If #pragma weak was used, mark the decl weak now. */
5701 if (current_binding_level == global_binding_level)
5702 maybe_apply_pragma_weak (decl1);
5704 if (DECL_DECLARED_INLINE_P (decl1)
5705 && DECL_UNINLINABLE (decl1)
5706 && lookup_attribute ("noinline", DECL_ATTRIBUTES (decl1)))
5707 warning_with_decl (decl1,
5708 "inline function `%s' given attribute noinline");
5710 announce_function (decl1);
5712 if (!COMPLETE_OR_VOID_TYPE_P (TREE_TYPE (TREE_TYPE (decl1))))
5714 error ("return type is an incomplete type");
5715 /* Make it return void instead. */
5716 TREE_TYPE (decl1)
5717 = build_function_type (void_type_node,
5718 TYPE_ARG_TYPES (TREE_TYPE (decl1)));
5721 if (warn_about_return_type)
5722 pedwarn_c99 ("return type defaults to `int'");
5724 /* Save the parm names or decls from this function's declarator
5725 where store_parm_decls will find them. */
5726 current_function_parms = last_function_parms;
5727 current_function_parm_tags = last_function_parm_tags;
5729 /* Make the init_value nonzero so pushdecl knows this is not tentative.
5730 error_mark_node is replaced below (in poplevel) with the BLOCK. */
5731 DECL_INITIAL (decl1) = error_mark_node;
5733 /* If this definition isn't a prototype and we had a prototype declaration
5734 before, copy the arg type info from that prototype.
5735 But not if what we had before was a builtin function. */
5736 old_decl = lookup_name_current_level (DECL_NAME (decl1));
5737 if (old_decl != 0 && TREE_CODE (TREE_TYPE (old_decl)) == FUNCTION_TYPE
5738 && !DECL_BUILT_IN (old_decl)
5739 && (TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (decl1)))
5740 == TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (old_decl))))
5741 && TYPE_ARG_TYPES (TREE_TYPE (decl1)) == 0)
5743 TREE_TYPE (decl1) = TREE_TYPE (old_decl);
5744 current_function_prototype_file = DECL_SOURCE_FILE (old_decl);
5745 current_function_prototype_line = DECL_SOURCE_LINE (old_decl);
5748 /* If there is no explicit declaration, look for any out-of-scope implicit
5749 declarations. */
5750 if (old_decl == 0)
5751 old_decl = IDENTIFIER_IMPLICIT_DECL (DECL_NAME (decl1));
5753 /* Optionally warn of old-fashioned def with no previous prototype. */
5754 if (warn_strict_prototypes
5755 && TYPE_ARG_TYPES (TREE_TYPE (decl1)) == 0
5756 && !(old_decl != 0
5757 && (TYPE_ARG_TYPES (TREE_TYPE (old_decl)) != 0
5758 || (DECL_BUILT_IN (old_decl)
5759 && ! C_DECL_ANTICIPATED (old_decl)))))
5760 warning ("function declaration isn't a prototype");
5761 /* Optionally warn of any global def with no previous prototype. */
5762 else if (warn_missing_prototypes
5763 && TREE_PUBLIC (decl1)
5764 && !(old_decl != 0
5765 && (TYPE_ARG_TYPES (TREE_TYPE (old_decl)) != 0
5766 || (DECL_BUILT_IN (old_decl)
5767 && ! C_DECL_ANTICIPATED (old_decl))))
5768 && ! MAIN_NAME_P (DECL_NAME (decl1)))
5769 warning_with_decl (decl1, "no previous prototype for `%s'");
5770 /* Optionally warn of any def with no previous prototype
5771 if the function has already been used. */
5772 else if (warn_missing_prototypes
5773 && old_decl != 0 && TREE_USED (old_decl)
5774 && TYPE_ARG_TYPES (TREE_TYPE (old_decl)) == 0)
5775 warning_with_decl (decl1,
5776 "`%s' was used with no prototype before its definition");
5777 /* Optionally warn of any global def with no previous declaration. */
5778 else if (warn_missing_declarations
5779 && TREE_PUBLIC (decl1)
5780 && old_decl == 0
5781 && ! MAIN_NAME_P (DECL_NAME (decl1)))
5782 warning_with_decl (decl1, "no previous declaration for `%s'");
5783 /* Optionally warn of any def with no previous declaration
5784 if the function has already been used. */
5785 else if (warn_missing_declarations
5786 && old_decl != 0 && TREE_USED (old_decl)
5787 && old_decl == IDENTIFIER_IMPLICIT_DECL (DECL_NAME (decl1)))
5788 warning_with_decl (decl1,
5789 "`%s' was used with no declaration before its definition");
5791 /* This is a definition, not a reference.
5792 So normally clear DECL_EXTERNAL.
5793 However, `extern inline' acts like a declaration
5794 except for defining how to inline. So set DECL_EXTERNAL in that case. */
5795 DECL_EXTERNAL (decl1) = current_extern_inline;
5797 /* This function exists in static storage.
5798 (This does not mean `static' in the C sense!) */
5799 TREE_STATIC (decl1) = 1;
5801 /* A nested function is not global. */
5802 if (current_function_decl != 0)
5803 TREE_PUBLIC (decl1) = 0;
5805 /* Warn for unlikely, improbable, or stupid declarations of `main'. */
5806 if (warn_main > 0 && MAIN_NAME_P (DECL_NAME (decl1)))
5808 tree args;
5809 int argct = 0;
5811 if (TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (decl1)))
5812 != integer_type_node)
5813 pedwarn_with_decl (decl1, "return type of `%s' is not `int'");
5815 for (args = TYPE_ARG_TYPES (TREE_TYPE (decl1)); args;
5816 args = TREE_CHAIN (args))
5818 tree type = args ? TREE_VALUE (args) : 0;
5820 if (type == void_type_node)
5821 break;
5823 ++argct;
5824 switch (argct)
5826 case 1:
5827 if (TYPE_MAIN_VARIANT (type) != integer_type_node)
5828 pedwarn_with_decl (decl1,
5829 "first argument of `%s' should be `int'");
5830 break;
5832 case 2:
5833 if (TREE_CODE (type) != POINTER_TYPE
5834 || TREE_CODE (TREE_TYPE (type)) != POINTER_TYPE
5835 || (TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (type)))
5836 != char_type_node))
5837 pedwarn_with_decl (decl1,
5838 "second argument of `%s' should be `char **'");
5839 break;
5841 case 3:
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 "third argument of `%s' should probably be `char **'");
5848 break;
5852 /* It is intentional that this message does not mention the third
5853 argument because it's only mentioned in an appendix of the
5854 standard. */
5855 if (argct > 0 && (argct < 2 || argct > 3))
5856 pedwarn_with_decl (decl1, "`%s' takes only zero or two arguments");
5858 if (! TREE_PUBLIC (decl1))
5859 pedwarn_with_decl (decl1, "`%s' is normally a non-static function");
5862 /* Record the decl so that the function name is defined.
5863 If we already have a decl for this name, and it is a FUNCTION_DECL,
5864 use the old decl. */
5866 current_function_decl = pushdecl (decl1);
5868 pushlevel (0);
5869 declare_parm_level (1);
5870 current_binding_level->subblocks_tag_transparent = 1;
5872 make_decl_rtl (current_function_decl, NULL);
5874 restype = TREE_TYPE (TREE_TYPE (current_function_decl));
5875 /* Promote the value to int before returning it. */
5876 if (c_promoting_integer_type_p (restype))
5878 /* It retains unsignedness if not really getting wider. */
5879 if (TREE_UNSIGNED (restype)
5880 && (TYPE_PRECISION (restype)
5881 == TYPE_PRECISION (integer_type_node)))
5882 restype = unsigned_type_node;
5883 else
5884 restype = integer_type_node;
5886 DECL_RESULT (current_function_decl)
5887 = build_decl (RESULT_DECL, NULL_TREE, restype);
5889 /* If this fcn was already referenced via a block-scope `extern' decl
5890 (or an implicit decl), propagate certain information about the usage. */
5891 if (TREE_ADDRESSABLE (DECL_ASSEMBLER_NAME (current_function_decl)))
5892 TREE_ADDRESSABLE (current_function_decl) = 1;
5894 immediate_size_expand = old_immediate_size_expand;
5896 start_fname_decls ();
5898 return 1;
5901 /* Store the parameter declarations into the current function declaration.
5902 This is called after parsing the parameter declarations, before
5903 digesting the body of the function.
5905 For an old-style definition, modify the function's type
5906 to specify at least the number of arguments. */
5908 void
5909 store_parm_decls ()
5911 tree fndecl = current_function_decl;
5912 tree parm;
5914 /* This is either a chain of PARM_DECLs (if a prototype was used)
5915 or a list of IDENTIFIER_NODEs (for an old-fashioned C definition). */
5916 tree specparms = current_function_parms;
5918 /* This is a list of types declared among parms in a prototype. */
5919 tree parmtags = current_function_parm_tags;
5921 /* This is a chain of PARM_DECLs from old-style parm declarations. */
5922 tree parmdecls = getdecls ();
5924 /* This is a chain of any other decls that came in among the parm
5925 declarations. If a parm is declared with enum {foo, bar} x;
5926 then CONST_DECLs for foo and bar are put here. */
5927 tree nonparms = 0;
5929 /* The function containing FNDECL, if any. */
5930 tree context = decl_function_context (fndecl);
5932 /* Nonzero if this definition is written with a prototype. */
5933 int prototype = 0;
5935 int saved_warn_shadow = warn_shadow;
5937 /* Don't re-emit shadow warnings. */
5938 warn_shadow = 0;
5940 if (specparms != 0 && TREE_CODE (specparms) != TREE_LIST)
5942 /* This case is when the function was defined with an ANSI prototype.
5943 The parms already have decls, so we need not do anything here
5944 except record them as in effect
5945 and complain if any redundant old-style parm decls were written. */
5947 tree next;
5948 tree others = 0;
5950 prototype = 1;
5952 if (parmdecls != 0)
5954 tree decl, link;
5956 error_with_decl (fndecl,
5957 "parm types given both in parmlist and separately");
5958 /* Get rid of the erroneous decls; don't keep them on
5959 the list of parms, since they might not be PARM_DECLs. */
5960 for (decl = current_binding_level->names;
5961 decl; decl = TREE_CHAIN (decl))
5962 if (DECL_NAME (decl))
5963 IDENTIFIER_LOCAL_VALUE (DECL_NAME (decl)) = 0;
5964 for (link = current_binding_level->shadowed;
5965 link; link = TREE_CHAIN (link))
5966 IDENTIFIER_LOCAL_VALUE (TREE_PURPOSE (link)) = TREE_VALUE (link);
5967 current_binding_level->names = 0;
5968 current_binding_level->shadowed = 0;
5971 specparms = nreverse (specparms);
5972 for (parm = specparms; parm; parm = next)
5974 next = TREE_CHAIN (parm);
5975 if (TREE_CODE (parm) == PARM_DECL)
5977 if (DECL_NAME (parm) == 0)
5978 error_with_decl (parm, "parameter name omitted");
5979 else if (TREE_CODE (TREE_TYPE (parm)) != ERROR_MARK
5980 && VOID_TYPE_P (TREE_TYPE (parm)))
5982 error_with_decl (parm, "parameter `%s' declared void");
5983 /* Change the type to error_mark_node so this parameter
5984 will be ignored by assign_parms. */
5985 TREE_TYPE (parm) = error_mark_node;
5987 pushdecl (parm);
5989 else
5991 /* If we find an enum constant or a type tag,
5992 put it aside for the moment. */
5993 TREE_CHAIN (parm) = 0;
5994 others = chainon (others, parm);
5998 /* Get the decls in their original chain order
5999 and record in the function. */
6000 DECL_ARGUMENTS (fndecl) = getdecls ();
6002 #if 0
6003 /* If this function takes a variable number of arguments,
6004 add a phony parameter to the end of the parm list,
6005 to represent the position of the first unnamed argument. */
6006 if (TREE_VALUE (tree_last (TYPE_ARG_TYPES (TREE_TYPE (fndecl))))
6007 != void_type_node)
6009 tree dummy = build_decl (PARM_DECL, NULL_TREE, void_type_node);
6010 /* Let's hope the address of the unnamed parm
6011 won't depend on its type. */
6012 TREE_TYPE (dummy) = integer_type_node;
6013 DECL_ARG_TYPE (dummy) = integer_type_node;
6014 DECL_ARGUMENTS (fndecl) = chainon (DECL_ARGUMENTS (fndecl), dummy);
6016 #endif
6018 /* Now pushdecl the enum constants. */
6019 for (parm = others; parm; parm = next)
6021 next = TREE_CHAIN (parm);
6022 if (DECL_NAME (parm) == 0)
6024 else if (TYPE_MAIN_VARIANT (TREE_TYPE (parm)) == void_type_node)
6026 else if (TREE_CODE (parm) != PARM_DECL)
6027 pushdecl (parm);
6030 storetags (chainon (parmtags, gettags ()));
6032 else
6034 /* SPECPARMS is an identifier list--a chain of TREE_LIST nodes
6035 each with a parm name as the TREE_VALUE.
6037 PARMDECLS is a chain of declarations for parameters.
6038 Warning! It can also contain CONST_DECLs which are not parameters
6039 but are names of enumerators of any enum types
6040 declared among the parameters.
6042 First match each formal parameter name with its declaration.
6043 Associate decls with the names and store the decls
6044 into the TREE_PURPOSE slots. */
6046 /* We use DECL_WEAK as a flag to show which parameters have been
6047 seen already since it is not used on PARM_DECL or CONST_DECL. */
6048 for (parm = parmdecls; parm; parm = TREE_CHAIN (parm))
6049 DECL_WEAK (parm) = 0;
6051 for (parm = specparms; parm; parm = TREE_CHAIN (parm))
6053 tree tail, found = NULL;
6055 if (TREE_VALUE (parm) == 0)
6057 error_with_decl (fndecl,
6058 "parameter name missing from parameter list");
6059 TREE_PURPOSE (parm) = 0;
6060 continue;
6063 /* See if any of the parmdecls specifies this parm by name.
6064 Ignore any enumerator decls. */
6065 for (tail = parmdecls; tail; tail = TREE_CHAIN (tail))
6066 if (DECL_NAME (tail) == TREE_VALUE (parm)
6067 && TREE_CODE (tail) == PARM_DECL)
6069 found = tail;
6070 break;
6073 /* If declaration already marked, we have a duplicate name.
6074 Complain, and don't use this decl twice. */
6075 if (found && DECL_WEAK (found))
6077 error_with_decl (found, "multiple parameters named `%s'");
6078 found = 0;
6081 /* If the declaration says "void", complain and ignore it. */
6082 if (found && VOID_TYPE_P (TREE_TYPE (found)))
6084 error_with_decl (found, "parameter `%s' declared void");
6085 TREE_TYPE (found) = integer_type_node;
6086 DECL_ARG_TYPE (found) = integer_type_node;
6087 layout_decl (found, 0);
6090 /* If no declaration found, default to int. */
6091 if (!found)
6093 found = build_decl (PARM_DECL, TREE_VALUE (parm),
6094 integer_type_node);
6095 DECL_ARG_TYPE (found) = TREE_TYPE (found);
6096 DECL_SOURCE_LINE (found) = DECL_SOURCE_LINE (fndecl);
6097 DECL_SOURCE_FILE (found) = DECL_SOURCE_FILE (fndecl);
6098 if (flag_isoc99)
6099 pedwarn_with_decl (found, "type of `%s' defaults to `int'");
6100 else if (extra_warnings)
6101 warning_with_decl (found, "type of `%s' defaults to `int'");
6102 pushdecl (found);
6105 TREE_PURPOSE (parm) = found;
6107 /* Mark this decl as "already found". */
6108 DECL_WEAK (found) = 1;
6111 /* Put anything which is on the parmdecls chain and which is
6112 not a PARM_DECL onto the list NONPARMS. (The types of
6113 non-parm things which might appear on the list include
6114 enumerators and NULL-named TYPE_DECL nodes.) Complain about
6115 any actual PARM_DECLs not matched with any names. */
6117 nonparms = 0;
6118 for (parm = parmdecls; parm;)
6120 tree next = TREE_CHAIN (parm);
6121 TREE_CHAIN (parm) = 0;
6123 if (TREE_CODE (parm) != PARM_DECL)
6124 nonparms = chainon (nonparms, parm);
6125 else
6127 /* Complain about args with incomplete types. */
6128 if (!COMPLETE_TYPE_P (TREE_TYPE (parm)))
6130 error_with_decl (parm, "parameter `%s' has incomplete type");
6131 TREE_TYPE (parm) = error_mark_node;
6134 if (! DECL_WEAK (parm))
6136 error_with_decl (parm,
6137 "declaration for parameter `%s' but no such parameter");
6138 /* Pretend the parameter was not missing.
6139 This gets us to a standard state and minimizes
6140 further error messages. */
6141 specparms
6142 = chainon (specparms,
6143 tree_cons (parm, NULL_TREE, NULL_TREE));
6147 parm = next;
6150 /* Chain the declarations together in the order of the list of
6151 names. Store that chain in the function decl, replacing the
6152 list of names. */
6153 parm = specparms;
6154 DECL_ARGUMENTS (fndecl) = 0;
6156 tree last;
6157 for (last = 0; parm; parm = TREE_CHAIN (parm))
6158 if (TREE_PURPOSE (parm))
6160 if (last == 0)
6161 DECL_ARGUMENTS (fndecl) = TREE_PURPOSE (parm);
6162 else
6163 TREE_CHAIN (last) = TREE_PURPOSE (parm);
6164 last = TREE_PURPOSE (parm);
6165 TREE_CHAIN (last) = 0;
6169 /* If there was a previous prototype,
6170 set the DECL_ARG_TYPE of each argument according to
6171 the type previously specified, and report any mismatches. */
6173 if (TYPE_ARG_TYPES (TREE_TYPE (fndecl)))
6175 tree type;
6176 for (parm = DECL_ARGUMENTS (fndecl),
6177 type = TYPE_ARG_TYPES (TREE_TYPE (fndecl));
6178 parm || (type && (TYPE_MAIN_VARIANT (TREE_VALUE (type))
6179 != void_type_node));
6180 parm = TREE_CHAIN (parm), type = TREE_CHAIN (type))
6182 if (parm == 0 || type == 0
6183 || TYPE_MAIN_VARIANT (TREE_VALUE (type)) == void_type_node)
6185 error ("number of arguments doesn't match prototype");
6186 error_with_file_and_line (current_function_prototype_file,
6187 current_function_prototype_line,
6188 "prototype declaration");
6189 break;
6191 /* Type for passing arg must be consistent with that
6192 declared for the arg. ISO C says we take the unqualified
6193 type for parameters declared with qualified type. */
6194 if (! comptypes (TYPE_MAIN_VARIANT (DECL_ARG_TYPE (parm)),
6195 TYPE_MAIN_VARIANT (TREE_VALUE (type))))
6197 if (TYPE_MAIN_VARIANT (TREE_TYPE (parm))
6198 == TYPE_MAIN_VARIANT (TREE_VALUE (type)))
6200 /* Adjust argument to match prototype. E.g. a previous
6201 `int foo(float);' prototype causes
6202 `int foo(x) float x; {...}' to be treated like
6203 `int foo(float x) {...}'. This is particularly
6204 useful for argument types like uid_t. */
6205 DECL_ARG_TYPE (parm) = TREE_TYPE (parm);
6207 if (PROMOTE_PROTOTYPES
6208 && INTEGRAL_TYPE_P (TREE_TYPE (parm))
6209 && TYPE_PRECISION (TREE_TYPE (parm))
6210 < TYPE_PRECISION (integer_type_node))
6211 DECL_ARG_TYPE (parm) = integer_type_node;
6213 if (pedantic)
6215 pedwarn ("promoted argument `%s' doesn't match prototype",
6216 IDENTIFIER_POINTER (DECL_NAME (parm)));
6217 warning_with_file_and_line
6218 (current_function_prototype_file,
6219 current_function_prototype_line,
6220 "prototype declaration");
6223 else
6225 error ("argument `%s' doesn't match prototype",
6226 IDENTIFIER_POINTER (DECL_NAME (parm)));
6227 error_with_file_and_line (current_function_prototype_file,
6228 current_function_prototype_line,
6229 "prototype declaration");
6233 TYPE_ACTUAL_ARG_TYPES (TREE_TYPE (fndecl)) = 0;
6236 /* Otherwise, create a prototype that would match. */
6238 else
6240 tree actual = 0, last = 0, type;
6242 for (parm = DECL_ARGUMENTS (fndecl); parm; parm = TREE_CHAIN (parm))
6244 type = tree_cons (NULL_TREE, DECL_ARG_TYPE (parm), NULL_TREE);
6245 if (last)
6246 TREE_CHAIN (last) = type;
6247 else
6248 actual = type;
6249 last = type;
6251 type = tree_cons (NULL_TREE, void_type_node, NULL_TREE);
6252 if (last)
6253 TREE_CHAIN (last) = type;
6254 else
6255 actual = type;
6257 /* We are going to assign a new value for the TYPE_ACTUAL_ARG_TYPES
6258 of the type of this function, but we need to avoid having this
6259 affect the types of other similarly-typed functions, so we must
6260 first force the generation of an identical (but separate) type
6261 node for the relevant function type. The new node we create
6262 will be a variant of the main variant of the original function
6263 type. */
6265 TREE_TYPE (fndecl) = build_type_copy (TREE_TYPE (fndecl));
6267 TYPE_ACTUAL_ARG_TYPES (TREE_TYPE (fndecl)) = actual;
6270 /* Now store the final chain of decls for the arguments
6271 as the decl-chain of the current lexical scope.
6272 Put the enumerators in as well, at the front so that
6273 DECL_ARGUMENTS is not modified. */
6275 storedecls (chainon (nonparms, DECL_ARGUMENTS (fndecl)));
6278 /* Make sure the binding level for the top of the function body
6279 gets a BLOCK if there are any in the function.
6280 Otherwise, the dbx output is wrong. */
6282 keep_next_if_subblocks = 1;
6284 /* ??? This might be an improvement,
6285 but needs to be thought about some more. */
6286 #if 0
6287 keep_next_level_flag = 1;
6288 #endif
6290 /* Write a record describing this function definition to the prototypes
6291 file (if requested). */
6293 gen_aux_info_record (fndecl, 1, 0, prototype);
6295 /* Initialize the RTL code for the function. */
6296 init_function_start (fndecl, input_filename, lineno);
6298 /* Begin the statement tree for this function. */
6299 begin_stmt_tree (&DECL_SAVED_TREE (current_function_decl));
6301 /* If this is a nested function, save away the sizes of any
6302 variable-size types so that we can expand them when generating
6303 RTL. */
6304 if (context)
6306 tree t;
6308 DECL_LANG_SPECIFIC (fndecl)->pending_sizes
6309 = nreverse (get_pending_sizes ());
6310 for (t = DECL_LANG_SPECIFIC (fndecl)->pending_sizes;
6312 t = TREE_CHAIN (t))
6313 SAVE_EXPR_CONTEXT (TREE_VALUE (t)) = context;
6316 /* This function is being processed in whole-function mode. */
6317 cfun->x_whole_function_mode_p = 1;
6319 /* Even though we're inside a function body, we still don't want to
6320 call expand_expr to calculate the size of a variable-sized array.
6321 We haven't necessarily assigned RTL to all variables yet, so it's
6322 not safe to try to expand expressions involving them. */
6323 immediate_size_expand = 0;
6324 cfun->x_dont_save_pending_sizes_p = 1;
6326 warn_shadow = saved_warn_shadow;
6329 /* Finish up a function declaration and compile that function
6330 all the way to assembler language output. The free the storage
6331 for the function definition.
6333 This is called after parsing the body of the function definition.
6335 NESTED is nonzero if the function being finished is nested in another.
6336 CAN_DEFER_P is nonzero if the function may be deferred. */
6338 void
6339 finish_function (nested, can_defer_p)
6340 int nested;
6341 int can_defer_p;
6343 tree fndecl = current_function_decl;
6345 #if 0
6346 /* This caused &foo to be of type ptr-to-const-function which then
6347 got a warning when stored in a ptr-to-function variable. */
6348 TREE_READONLY (fndecl) = 1;
6349 #endif
6351 poplevel (1, 0, 1);
6352 BLOCK_SUPERCONTEXT (DECL_INITIAL (fndecl)) = fndecl;
6354 /* Must mark the RESULT_DECL as being in this function. */
6356 DECL_CONTEXT (DECL_RESULT (fndecl)) = fndecl;
6358 if (MAIN_NAME_P (DECL_NAME (fndecl)) && flag_hosted)
6360 if (TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (fndecl)))
6361 != integer_type_node)
6363 /* If warn_main is 1 (-Wmain) or 2 (-Wall), we have already warned.
6364 If warn_main is -1 (-Wno-main) we don't want to be warned. */
6365 if (! warn_main)
6366 pedwarn_with_decl (fndecl, "return type of `%s' is not `int'");
6368 else
6370 #ifdef DEFAULT_MAIN_RETURN
6371 /* Make it so that `main' always returns success by default. */
6372 DEFAULT_MAIN_RETURN;
6373 #else
6374 if (flag_isoc99)
6375 c_expand_return (integer_zero_node);
6376 #endif
6380 finish_fname_decls ();
6382 /* Tie off the statement tree for this function. */
6383 finish_stmt_tree (&DECL_SAVED_TREE (fndecl));
6385 /* Complain if there's just no return statement. */
6386 if (warn_return_type
6387 && TREE_CODE (TREE_TYPE (TREE_TYPE (fndecl))) != VOID_TYPE
6388 && !current_function_returns_value && !current_function_returns_null
6389 /* Don't complain if we abort. */
6390 && !current_function_returns_abnormally
6391 /* Don't warn for main(). */
6392 && !MAIN_NAME_P (DECL_NAME (fndecl))
6393 /* Or if they didn't actually specify a return type. */
6394 && !C_FUNCTION_IMPLICIT_INT (fndecl)
6395 /* Normally, with -Wreturn-type, flow will complain. Unless we're an
6396 inline function, as we might never be compiled separately. */
6397 && DECL_INLINE (fndecl))
6398 warning ("no return statement in function returning non-void");
6400 /* Clear out memory we no longer need. */
6401 free_after_parsing (cfun);
6402 /* Since we never call rest_of_compilation, we never clear
6403 CFUN. Do so explicitly. */
6404 free_after_compilation (cfun);
6405 cfun = NULL;
6407 if (! nested)
6409 /* Generate RTL for the body of this function. */
6410 c_expand_body (fndecl, nested, can_defer_p);
6412 /* Let the error reporting routines know that we're outside a
6413 function. For a nested function, this value is used in
6414 c_pop_function_context and then reset via pop_function_context. */
6415 current_function_decl = NULL;
6419 /* Generate the RTL for a deferred function FNDECL. */
6421 void
6422 c_expand_deferred_function (fndecl)
6423 tree fndecl;
6425 /* DECL_INLINE or DECL_RESULT might got cleared after the inline
6426 function was deferred, e.g. in duplicate_decls. */
6427 if (DECL_INLINE (fndecl) && DECL_RESULT (fndecl))
6429 c_expand_body (fndecl, 0, 0);
6430 current_function_decl = NULL;
6434 /* Generate the RTL for the body of FNDECL. If NESTED_P is nonzero,
6435 then we are already in the process of generating RTL for another
6436 function. If can_defer_p is zero, we won't attempt to defer the
6437 generation of RTL. */
6439 static void
6440 c_expand_body (fndecl, nested_p, can_defer_p)
6441 tree fndecl;
6442 int nested_p, can_defer_p;
6444 int uninlinable = 1;
6446 /* There's no reason to do any of the work here if we're only doing
6447 semantic analysis; this code just generates RTL. */
6448 if (flag_syntax_only)
6449 return;
6451 if (flag_inline_trees)
6453 /* First, cache whether the current function is inlinable. Some
6454 predicates depend on cfun and current_function_decl to
6455 function completely. */
6456 timevar_push (TV_INTEGRATION);
6457 uninlinable = ! tree_inlinable_function_p (fndecl);
6459 if (! uninlinable && can_defer_p
6460 /* Save function tree for inlining. Should return 0 if the
6461 language does not support function deferring or the
6462 function could not be deferred. */
6463 && defer_fn (fndecl))
6465 /* Let the back-end know that this function exists. */
6466 (*debug_hooks->deferred_inline_function) (fndecl);
6467 timevar_pop (TV_INTEGRATION);
6468 return;
6471 /* Then, inline any functions called in it. */
6472 optimize_inline_calls (fndecl);
6473 timevar_pop (TV_INTEGRATION);
6476 timevar_push (TV_EXPAND);
6478 if (nested_p)
6480 /* Make sure that we will evaluate variable-sized types involved
6481 in our function's type. */
6482 expand_pending_sizes (DECL_LANG_SPECIFIC (fndecl)->pending_sizes);
6483 /* Squirrel away our current state. */
6484 push_function_context ();
6487 /* Initialize the RTL code for the function. */
6488 current_function_decl = fndecl;
6489 input_filename = DECL_SOURCE_FILE (fndecl);
6490 init_function_start (fndecl, input_filename, DECL_SOURCE_LINE (fndecl));
6492 /* This function is being processed in whole-function mode. */
6493 cfun->x_whole_function_mode_p = 1;
6495 /* Even though we're inside a function body, we still don't want to
6496 call expand_expr to calculate the size of a variable-sized array.
6497 We haven't necessarily assigned RTL to all variables yet, so it's
6498 not safe to try to expand expressions involving them. */
6499 immediate_size_expand = 0;
6500 cfun->x_dont_save_pending_sizes_p = 1;
6502 /* Set up parameters and prepare for return, for the function. */
6503 expand_function_start (fndecl, 0);
6505 /* If this function is `main', emit a call to `__main'
6506 to run global initializers, etc. */
6507 if (DECL_NAME (fndecl)
6508 && MAIN_NAME_P (DECL_NAME (fndecl))
6509 && DECL_CONTEXT (fndecl) == NULL_TREE)
6510 expand_main_function ();
6512 /* Generate the RTL for this function. */
6513 expand_stmt (DECL_SAVED_TREE (fndecl));
6514 if (uninlinable)
6516 /* Allow the body of the function to be garbage collected. */
6517 DECL_SAVED_TREE (fndecl) = NULL_TREE;
6520 /* We hard-wired immediate_size_expand to zero above.
6521 expand_function_end will decrement this variable. So, we set the
6522 variable to one here, so that after the decrement it will remain
6523 zero. */
6524 immediate_size_expand = 1;
6526 /* Allow language dialects to perform special processing. */
6527 if (lang_expand_function_end)
6528 (*lang_expand_function_end) ();
6530 /* Generate rtl for function exit. */
6531 expand_function_end (input_filename, lineno, 0);
6533 /* If this is a nested function, protect the local variables in the stack
6534 above us from being collected while we're compiling this function. */
6535 if (nested_p)
6536 ggc_push_context ();
6538 /* Run the optimizers and output the assembler code for this function. */
6539 rest_of_compilation (fndecl);
6541 /* Undo the GC context switch. */
6542 if (nested_p)
6543 ggc_pop_context ();
6545 /* With just -W, complain only if function returns both with
6546 and without a value. */
6547 if (extra_warnings
6548 && current_function_returns_value
6549 && current_function_returns_null)
6550 warning ("this function may return with or without a value");
6552 /* If requested, warn about function definitions where the function will
6553 return a value (usually of some struct or union type) which itself will
6554 take up a lot of stack space. */
6556 if (warn_larger_than && !DECL_EXTERNAL (fndecl) && TREE_TYPE (fndecl))
6558 tree ret_type = TREE_TYPE (TREE_TYPE (fndecl));
6560 if (ret_type && TYPE_SIZE_UNIT (ret_type)
6561 && TREE_CODE (TYPE_SIZE_UNIT (ret_type)) == INTEGER_CST
6562 && 0 < compare_tree_int (TYPE_SIZE_UNIT (ret_type),
6563 larger_than_size))
6565 unsigned int size_as_int
6566 = TREE_INT_CST_LOW (TYPE_SIZE_UNIT (ret_type));
6568 if (compare_tree_int (TYPE_SIZE_UNIT (ret_type), size_as_int) == 0)
6569 warning_with_decl (fndecl,
6570 "size of return value of `%s' is %u bytes",
6571 size_as_int);
6572 else
6573 warning_with_decl (fndecl,
6574 "size of return value of `%s' is larger than %d bytes",
6575 larger_than_size);
6579 if (DECL_SAVED_INSNS (fndecl) == 0 && ! nested_p
6580 && ! flag_inline_trees)
6582 /* Stop pointing to the local nodes about to be freed.
6583 But DECL_INITIAL must remain nonzero so we know this
6584 was an actual function definition.
6585 For a nested function, this is done in c_pop_function_context.
6586 If rest_of_compilation set this to 0, leave it 0. */
6587 if (DECL_INITIAL (fndecl) != 0)
6588 DECL_INITIAL (fndecl) = error_mark_node;
6590 DECL_ARGUMENTS (fndecl) = 0;
6593 if (DECL_STATIC_CONSTRUCTOR (fndecl))
6595 if (targetm.have_ctors_dtors)
6596 (* targetm.asm_out.constructor) (XEXP (DECL_RTL (fndecl), 0),
6597 DEFAULT_INIT_PRIORITY);
6598 else
6599 static_ctors = tree_cons (NULL_TREE, fndecl, static_ctors);
6602 if (DECL_STATIC_DESTRUCTOR (fndecl))
6604 if (targetm.have_ctors_dtors)
6605 (* targetm.asm_out.destructor) (XEXP (DECL_RTL (fndecl), 0),
6606 DEFAULT_INIT_PRIORITY);
6607 else
6608 static_dtors = tree_cons (NULL_TREE, fndecl, static_dtors);
6611 if (nested_p)
6612 /* Return to the enclosing function. */
6613 pop_function_context ();
6614 timevar_pop (TV_EXPAND);
6617 /* Check the declarations given in a for-loop for satisfying the C99
6618 constraints. */
6619 void
6620 check_for_loop_decls ()
6622 tree t;
6624 if (!flag_isoc99)
6626 /* If we get here, declarations have been used in a for loop without
6627 the C99 for loop scope. This doesn't make much sense, so don't
6628 allow it. */
6629 error ("`for' loop initial declaration used outside C99 mode");
6630 return;
6632 /* C99 subclause 6.8.5 paragraph 3:
6634 [#3] The declaration part of a for statement shall only
6635 declare identifiers for objects having storage class auto or
6636 register.
6638 It isn't clear whether, in this sentence, "identifiers" binds to
6639 "shall only declare" or to "objects" - that is, whether all identifiers
6640 declared must be identifiers for objects, or whether the restriction
6641 only applies to those that are. (A question on this in comp.std.c
6642 in November 2000 received no answer.) We implement the strictest
6643 interpretation, to avoid creating an extension which later causes
6644 problems. */
6646 for (t = gettags (); t; t = TREE_CHAIN (t))
6648 if (TREE_PURPOSE (t) != 0)
6650 enum tree_code code = TREE_CODE (TREE_VALUE (t));
6652 if (code == RECORD_TYPE)
6653 error ("`struct %s' declared in `for' loop initial declaration",
6654 IDENTIFIER_POINTER (TREE_PURPOSE (t)));
6655 else if (code == UNION_TYPE)
6656 error ("`union %s' declared in `for' loop initial declaration",
6657 IDENTIFIER_POINTER (TREE_PURPOSE (t)));
6658 else
6659 error ("`enum %s' declared in `for' loop initial declaration",
6660 IDENTIFIER_POINTER (TREE_PURPOSE (t)));
6664 for (t = getdecls (); t; t = TREE_CHAIN (t))
6666 if (TREE_CODE (t) != VAR_DECL && DECL_NAME (t))
6667 error_with_decl (t, "declaration of non-variable `%s' in `for' loop initial declaration");
6668 else if (TREE_STATIC (t))
6669 error_with_decl (t, "declaration of static variable `%s' in `for' loop initial declaration");
6670 else if (DECL_EXTERNAL (t))
6671 error_with_decl (t, "declaration of `extern' variable `%s' in `for' loop initial declaration");
6675 /* Save and restore the variables in this file and elsewhere
6676 that keep track of the progress of compilation of the current function.
6677 Used for nested functions. */
6679 struct language_function GTY(())
6681 struct c_language_function base;
6682 tree named_labels;
6683 tree shadowed_labels;
6684 int returns_value;
6685 int returns_null;
6686 int returns_abnormally;
6687 int warn_about_return_type;
6688 int extern_inline;
6689 struct binding_level *binding_level;
6692 /* Save and reinitialize the variables
6693 used during compilation of a C function. */
6695 void
6696 c_push_function_context (f)
6697 struct function *f;
6699 struct language_function *p;
6700 p = ((struct language_function *)
6701 ggc_alloc (sizeof (struct language_function)));
6702 f->language = p;
6704 p->base.x_stmt_tree = c_stmt_tree;
6705 p->base.x_scope_stmt_stack = c_scope_stmt_stack;
6706 p->named_labels = named_labels;
6707 p->shadowed_labels = shadowed_labels;
6708 p->returns_value = current_function_returns_value;
6709 p->returns_null = current_function_returns_null;
6710 p->returns_abnormally = current_function_returns_abnormally;
6711 p->warn_about_return_type = warn_about_return_type;
6712 p->extern_inline = current_extern_inline;
6713 p->binding_level = current_binding_level;
6716 /* Restore the variables used during compilation of a C function. */
6718 void
6719 c_pop_function_context (f)
6720 struct function *f;
6722 struct language_function *p = f->language;
6723 tree link;
6725 /* Bring back all the labels that were shadowed. */
6726 for (link = shadowed_labels; link; link = TREE_CHAIN (link))
6727 if (DECL_NAME (TREE_VALUE (link)) != 0)
6728 IDENTIFIER_LABEL_VALUE (DECL_NAME (TREE_VALUE (link)))
6729 = TREE_VALUE (link);
6731 if (DECL_SAVED_INSNS (current_function_decl) == 0
6732 && DECL_SAVED_TREE (current_function_decl) == NULL_TREE)
6734 /* Stop pointing to the local nodes about to be freed. */
6735 /* But DECL_INITIAL must remain nonzero so we know this
6736 was an actual function definition. */
6737 DECL_INITIAL (current_function_decl) = error_mark_node;
6738 DECL_ARGUMENTS (current_function_decl) = 0;
6741 c_stmt_tree = p->base.x_stmt_tree;
6742 c_scope_stmt_stack = p->base.x_scope_stmt_stack;
6743 named_labels = p->named_labels;
6744 shadowed_labels = p->shadowed_labels;
6745 current_function_returns_value = p->returns_value;
6746 current_function_returns_null = p->returns_null;
6747 current_function_returns_abnormally = p->returns_abnormally;
6748 warn_about_return_type = p->warn_about_return_type;
6749 current_extern_inline = p->extern_inline;
6750 current_binding_level = p->binding_level;
6752 f->language = NULL;
6755 /* Copy the DECL_LANG_SPECIFIC data associated with DECL. */
6757 void
6758 c_dup_lang_specific_decl (decl)
6759 tree decl;
6761 struct lang_decl *ld;
6763 if (!DECL_LANG_SPECIFIC (decl))
6764 return;
6766 ld = (struct lang_decl *) ggc_alloc (sizeof (struct lang_decl));
6767 memcpy ((char *) ld, (char *) DECL_LANG_SPECIFIC (decl),
6768 sizeof (struct lang_decl));
6769 DECL_LANG_SPECIFIC (decl) = ld;
6772 /* The functions below are required for functionality of doing
6773 function at once processing in the C front end. Currently these
6774 functions are not called from anywhere in the C front end, but as
6775 these changes continue, that will change. */
6777 /* Returns nonzero if the current statement is a full expression,
6778 i.e. temporaries created during that statement should be destroyed
6779 at the end of the statement. */
6782 stmts_are_full_exprs_p ()
6784 return 0;
6787 /* Returns the stmt_tree (if any) to which statements are currently
6788 being added. If there is no active statement-tree, NULL is
6789 returned. */
6791 stmt_tree
6792 current_stmt_tree ()
6794 return &c_stmt_tree;
6797 /* Returns the stack of SCOPE_STMTs for the current function. */
6799 tree *
6800 current_scope_stmt_stack ()
6802 return &c_scope_stmt_stack;
6805 /* Nonzero if TYPE is an anonymous union or struct type. Always 0 in
6806 C. */
6809 anon_aggr_type_p (node)
6810 tree node ATTRIBUTE_UNUSED;
6812 return 0;
6815 /* Dummy function in place of callback used by C++. */
6817 void
6818 extract_interface_info ()
6822 /* Return a new COMPOUND_STMT, after adding it to the current
6823 statement tree. */
6825 tree
6826 c_begin_compound_stmt ()
6828 tree stmt;
6830 /* Create the COMPOUND_STMT. */
6831 stmt = add_stmt (build_stmt (COMPOUND_STMT, NULL_TREE));
6833 return stmt;
6836 /* Expand T (a DECL_STMT) if it declares an entity not handled by the
6837 common code. */
6839 void
6840 c_expand_decl_stmt (t)
6841 tree t;
6843 tree decl = DECL_STMT_DECL (t);
6845 /* Expand nested functions. */
6846 if (TREE_CODE (decl) == FUNCTION_DECL
6847 && DECL_CONTEXT (decl) == current_function_decl
6848 && DECL_SAVED_TREE (decl))
6849 c_expand_body (decl, /*nested_p=*/1, /*can_defer_p=*/0);
6852 /* Return the IDENTIFIER_GLOBAL_VALUE of T, for use in common code, since
6853 the definition of IDENTIFIER_GLOBAL_VALUE is different for C and C++. */
6855 tree
6856 identifier_global_value (t)
6857 tree t;
6859 return IDENTIFIER_GLOBAL_VALUE (t);
6862 /* Record a builtin type for C. If NAME is non-NULL, it is the name used;
6863 otherwise the name is found in ridpointers from RID_INDEX. */
6865 void
6866 record_builtin_type (rid_index, name, type)
6867 enum rid rid_index;
6868 const char *name;
6869 tree type;
6871 tree id;
6872 if (name == 0)
6873 id = ridpointers[(int) rid_index];
6874 else
6875 id = get_identifier (name);
6876 pushdecl (build_decl (TYPE_DECL, id, type));
6879 /* Build the void_list_node (void_type_node having been created). */
6880 tree
6881 build_void_list_node ()
6883 tree t = build_tree_list (NULL_TREE, void_type_node);
6884 return t;
6887 /* Return something to represent absolute declarators containing a *.
6888 TARGET is the absolute declarator that the * contains.
6889 TYPE_QUALS_ATTRS is a list of modifiers such as const or volatile
6890 to apply to the pointer type, represented as identifiers, possible mixed
6891 with attributes.
6893 We return an INDIRECT_REF whose "contents" are TARGET (inside a TREE_LIST,
6894 if attributes are present) and whose type is the modifier list. */
6896 tree
6897 make_pointer_declarator (type_quals_attrs, target)
6898 tree type_quals_attrs, target;
6900 tree quals, attrs;
6901 tree itarget = target;
6902 split_specs_attrs (type_quals_attrs, &quals, &attrs);
6903 if (attrs != NULL_TREE)
6904 itarget = tree_cons (attrs, target, NULL_TREE);
6905 return build1 (INDIRECT_REF, quals, itarget);
6908 #include "gt-c-decl.h"