At the suggestion of Richard Earnshaw I have changed GO_IF_LEGITIMATE_ADDRESS
[official-gcc.git] / gcc / c-decl.c
blob2b4841588548c6e044d4e436433fa3746917b961
1 /* Process declarations and variables for C compiler.
2 Copyright (C) 1988, 92-97, 1998 Free Software Foundation, Inc.
4 This file is part of GNU CC.
6 GNU CC is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2, or (at your option)
9 any later version.
11 GNU CC is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with GNU CC; see the file COPYING. If not, write to
18 the Free Software Foundation, 59 Temple Place - Suite 330,
19 Boston, MA 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 "tree.h"
32 #include "flags.h"
33 #include "output.h"
34 #include "c-tree.h"
35 #include "c-lex.h"
37 /* In grokdeclarator, distinguish syntactic contexts of declarators. */
38 enum decl_context
39 { NORMAL, /* Ordinary declaration */
40 FUNCDEF, /* Function definition */
41 PARM, /* Declaration of parm before function body */
42 FIELD, /* Declaration inside struct or union */
43 BITFIELD, /* Likewise but with specified width */
44 TYPENAME}; /* Typename (inside cast or sizeof) */
46 #ifndef CHAR_TYPE_SIZE
47 #define CHAR_TYPE_SIZE BITS_PER_UNIT
48 #endif
50 #ifndef SHORT_TYPE_SIZE
51 #define SHORT_TYPE_SIZE (BITS_PER_UNIT * MIN ((UNITS_PER_WORD + 1) / 2, 2))
52 #endif
54 #ifndef INT_TYPE_SIZE
55 #define INT_TYPE_SIZE BITS_PER_WORD
56 #endif
58 #ifndef LONG_TYPE_SIZE
59 #define LONG_TYPE_SIZE BITS_PER_WORD
60 #endif
62 #ifndef LONG_LONG_TYPE_SIZE
63 #define LONG_LONG_TYPE_SIZE (BITS_PER_WORD * 2)
64 #endif
66 #ifndef WCHAR_UNSIGNED
67 #define WCHAR_UNSIGNED 0
68 #endif
70 #ifndef FLOAT_TYPE_SIZE
71 #define FLOAT_TYPE_SIZE BITS_PER_WORD
72 #endif
74 #ifndef DOUBLE_TYPE_SIZE
75 #define DOUBLE_TYPE_SIZE (BITS_PER_WORD * 2)
76 #endif
78 #ifndef LONG_DOUBLE_TYPE_SIZE
79 #define LONG_DOUBLE_TYPE_SIZE (BITS_PER_WORD * 2)
80 #endif
82 /* We let tm.h override the types used here, to handle trivial differences
83 such as the choice of unsigned int or long unsigned int for size_t.
84 When machines start needing nontrivial differences in the size type,
85 it would be best to do something here to figure out automatically
86 from other information what type to use. */
88 #ifndef SIZE_TYPE
89 #define SIZE_TYPE "long unsigned int"
90 #endif
92 #ifndef PTRDIFF_TYPE
93 #define PTRDIFF_TYPE "long int"
94 #endif
96 #ifndef WCHAR_TYPE
97 #define WCHAR_TYPE "int"
98 #endif
100 /* a node which has tree code ERROR_MARK, and whose type is itself.
101 All erroneous expressions are replaced with this node. All functions
102 that accept nodes as arguments should avoid generating error messages
103 if this node is one of the arguments, since it is undesirable to get
104 multiple error messages from one error in the input. */
106 tree error_mark_node;
108 /* INTEGER_TYPE and REAL_TYPE nodes for the standard data types */
110 tree short_integer_type_node;
111 tree integer_type_node;
112 tree long_integer_type_node;
113 tree long_long_integer_type_node;
115 tree short_unsigned_type_node;
116 tree unsigned_type_node;
117 tree long_unsigned_type_node;
118 tree long_long_unsigned_type_node;
120 tree boolean_type_node;
121 tree boolean_false_node;
122 tree boolean_true_node;
124 tree ptrdiff_type_node;
126 tree unsigned_char_type_node;
127 tree signed_char_type_node;
128 tree char_type_node;
129 tree wchar_type_node;
130 tree signed_wchar_type_node;
131 tree unsigned_wchar_type_node;
133 tree float_type_node;
134 tree double_type_node;
135 tree long_double_type_node;
137 tree complex_integer_type_node;
138 tree complex_float_type_node;
139 tree complex_double_type_node;
140 tree complex_long_double_type_node;
142 tree intQI_type_node;
143 tree intHI_type_node;
144 tree intSI_type_node;
145 tree intDI_type_node;
146 tree intTI_type_node;
148 tree unsigned_intQI_type_node;
149 tree unsigned_intHI_type_node;
150 tree unsigned_intSI_type_node;
151 tree unsigned_intDI_type_node;
152 tree unsigned_intTI_type_node;
154 /* a VOID_TYPE node. */
156 tree void_type_node;
158 /* Nodes for types `void *' and `const void *'. */
160 tree ptr_type_node, const_ptr_type_node;
162 /* Nodes for types `char *' and `const char *'. */
164 tree string_type_node, const_string_type_node;
166 /* Type `char[SOMENUMBER]'.
167 Used when an array of char is needed and the size is irrelevant. */
169 tree char_array_type_node;
171 /* Type `int[SOMENUMBER]' or something like it.
172 Used when an array of int needed and the size is irrelevant. */
174 tree int_array_type_node;
176 /* Type `wchar_t[SOMENUMBER]' or something like it.
177 Used when a wide string literal is created. */
179 tree wchar_array_type_node;
181 /* type `int ()' -- used for implicit declaration of functions. */
183 tree default_function_type;
185 /* function types `double (double)' and `double (double, double)', etc. */
187 tree double_ftype_double, double_ftype_double_double;
188 tree int_ftype_int, long_ftype_long;
189 tree float_ftype_float;
190 tree ldouble_ftype_ldouble;
192 /* Function type `void (void *, void *, int)' and similar ones */
194 tree void_ftype_ptr_ptr_int, int_ftype_ptr_ptr_int, void_ftype_ptr_int_int;
196 /* Function type `char *(char *, char *)' and similar ones */
197 tree string_ftype_ptr_ptr, int_ftype_string_string;
199 /* Function type `int (const void *, const void *, size_t)' */
200 tree int_ftype_cptr_cptr_sizet;
202 /* Two expressions that are constants with value zero.
203 The first is of type `int', the second of type `void *'. */
205 tree integer_zero_node;
206 tree null_pointer_node;
208 /* A node for the integer constant 1. */
210 tree integer_one_node;
212 /* Nonzero if we have seen an invalid cross reference
213 to a struct, union, or enum, but not yet printed the message. */
215 tree pending_invalid_xref;
216 /* File and line to appear in the eventual error message. */
217 char *pending_invalid_xref_file;
218 int pending_invalid_xref_line;
220 /* While defining an enum type, this is 1 plus the last enumerator
221 constant value. Note that will do not have to save this or `enum_overflow'
222 around nested function definition since such a definition could only
223 occur in an enum value expression and we don't use these variables in
224 that case. */
226 static tree enum_next_value;
228 /* Nonzero means that there was overflow computing enum_next_value. */
230 static int enum_overflow;
232 /* Parsing a function declarator leaves a list of parameter names
233 or a chain or parameter decls here. */
235 static tree last_function_parms;
237 /* Parsing a function declarator leaves here a chain of structure
238 and enum types declared in the parmlist. */
240 static tree last_function_parm_tags;
242 /* After parsing the declarator that starts a function definition,
243 `start_function' puts here the list of parameter names or chain of decls.
244 `store_parm_decls' finds it here. */
246 static tree current_function_parms;
248 /* Similar, for last_function_parm_tags. */
249 static tree current_function_parm_tags;
251 /* Similar, for the file and line that the prototype came from if this is
252 an old-style definition. */
253 static char *current_function_prototype_file;
254 static int current_function_prototype_line;
256 /* A list (chain of TREE_LIST nodes) of all LABEL_DECLs in the function
257 that have names. Here so we can clear out their names' definitions
258 at the end of the function. */
260 static tree named_labels;
262 /* A list of LABEL_DECLs from outer contexts that are currently shadowed. */
264 static tree shadowed_labels;
266 /* Nonzero when store_parm_decls is called indicates a varargs function.
267 Value not meaningful after store_parm_decls. */
269 static int c_function_varargs;
271 /* The FUNCTION_DECL for the function currently being compiled,
272 or 0 if between functions. */
273 tree current_function_decl;
275 /* Set to 0 at beginning of a function definition, set to 1 if
276 a return statement that specifies a return value is seen. */
278 int current_function_returns_value;
280 /* Set to 0 at beginning of a function definition, set to 1 if
281 a return statement with no argument is seen. */
283 int current_function_returns_null;
285 /* Set to nonzero by `grokdeclarator' for a function
286 whose return type is defaulted, if warnings for this are desired. */
288 static int warn_about_return_type;
290 /* Nonzero when starting a function declared `extern inline'. */
292 static int current_extern_inline;
294 /* For each binding contour we allocate a binding_level structure
295 * which records the names defined in that contour.
296 * Contours include:
297 * 0) the global one
298 * 1) one for each function definition,
299 * where internal declarations of the parameters appear.
300 * 2) one for each compound statement,
301 * to record its declarations.
303 * The current meaning of a name can be found by searching the levels from
304 * the current one out to the global one.
307 /* Note that the information in the `names' component of the global contour
308 is duplicated in the IDENTIFIER_GLOBAL_VALUEs of all identifiers. */
310 struct binding_level
312 /* A chain of _DECL nodes for all variables, constants, functions,
313 and typedef types. These are in the reverse of the order supplied.
315 tree names;
317 /* A list of structure, union and enum definitions,
318 * for looking up tag names.
319 * It is a chain of TREE_LIST nodes, each of whose TREE_PURPOSE is a name,
320 * or NULL_TREE; and whose TREE_VALUE is a RECORD_TYPE, UNION_TYPE,
321 * or ENUMERAL_TYPE node.
323 tree tags;
325 /* For each level, a list of shadowed outer-level local definitions
326 to be restored when this level is popped.
327 Each link is a TREE_LIST whose TREE_PURPOSE is an identifier and
328 whose TREE_VALUE is its old definition (a kind of ..._DECL node). */
329 tree shadowed;
331 /* For each level (except not the global one),
332 a chain of BLOCK nodes for all the levels
333 that were entered and exited one level down. */
334 tree blocks;
336 /* The BLOCK node for this level, if one has been preallocated.
337 If 0, the BLOCK is allocated (if needed) when the level is popped. */
338 tree this_block;
340 /* The binding level which this one is contained in (inherits from). */
341 struct binding_level *level_chain;
343 /* Nonzero for the level that holds the parameters of a function. */
344 char parm_flag;
346 /* Nonzero if this level "doesn't exist" for tags. */
347 char tag_transparent;
349 /* Nonzero if sublevels of this level "don't exist" for tags.
350 This is set in the parm level of a function definition
351 while reading the function body, so that the outermost block
352 of the function body will be tag-transparent. */
353 char subblocks_tag_transparent;
355 /* Nonzero means make a BLOCK for this level regardless of all else. */
356 char keep;
358 /* Nonzero means make a BLOCK if this level has any subblocks. */
359 char keep_if_subblocks;
361 /* Number of decls in `names' that have incomplete
362 structure or union types. */
363 int n_incomplete;
365 /* A list of decls giving the (reversed) specified order of parms,
366 not including any forward-decls in the parmlist.
367 This is so we can put the parms in proper order for assign_parms. */
368 tree parm_order;
371 #define NULL_BINDING_LEVEL (struct binding_level *) NULL
373 /* The binding level currently in effect. */
375 static struct binding_level *current_binding_level;
377 /* A chain of binding_level structures awaiting reuse. */
379 static struct binding_level *free_binding_level;
381 /* The outermost binding level, for names of file scope.
382 This is created when the compiler is started and exists
383 through the entire run. */
385 static struct binding_level *global_binding_level;
387 /* Binding level structures are initialized by copying this one. */
389 static struct binding_level clear_binding_level
390 = {NULL, NULL, NULL, NULL, NULL, NULL_BINDING_LEVEL, 0, 0, 0, 0, 0, 0,
391 NULL};
393 /* Nonzero means unconditionally make a BLOCK for the next level pushed. */
395 static int keep_next_level_flag;
397 /* Nonzero means make a BLOCK for the next level pushed
398 if it has subblocks. */
400 static int keep_next_if_subblocks;
402 /* The chain of outer levels of label scopes.
403 This uses the same data structure used for binding levels,
404 but it works differently: each link in the chain records
405 saved values of named_labels and shadowed_labels for
406 a label binding level outside the current one. */
408 static struct binding_level *label_level_chain;
410 /* Functions called automatically at the beginning and end of execution. */
412 tree static_ctors, static_dtors;
414 /* Forward declarations. */
416 static struct binding_level * make_binding_level PROTO((void));
417 static void clear_limbo_values PROTO((tree));
418 static int duplicate_decls PROTO((tree, tree, int));
419 static char *redeclaration_error_message PROTO((tree, tree));
420 static void storedecls PROTO((tree));
421 static void storetags PROTO((tree));
422 static tree lookup_tag PROTO((enum tree_code, tree,
423 struct binding_level *, int));
424 static tree lookup_tag_reverse PROTO((tree));
425 static tree grokdeclarator PROTO((tree, tree, enum decl_context,
426 int));
427 static tree grokparms PROTO((tree, int));
428 static int field_decl_cmp PROTO((const GENERIC_PTR, const GENERIC_PTR));
429 static void layout_array_type PROTO((tree));
431 /* C-specific option variables. */
433 /* Nonzero means allow type mismatches in conditional expressions;
434 just make their values `void'. */
436 int flag_cond_mismatch;
438 /* Nonzero means give `double' the same size as `float'. */
440 int flag_short_double;
442 /* Nonzero means don't recognize the keyword `asm'. */
444 int flag_no_asm;
446 /* Nonzero means don't recognize any builtin functions. */
448 int flag_no_builtin;
450 /* Nonzero means don't recognize the non-ANSI builtin functions.
451 -ansi sets this. */
453 int flag_no_nonansi_builtin;
455 /* Nonzero means do some things the same way PCC does. */
457 int flag_traditional;
459 /* Nonzero means that we have builtin functions, and main is an int */
461 int flag_hosted = 1;
463 /* Nonzero means to allow single precision math even if we're generally
464 being traditional. */
465 int flag_allow_single_precision = 0;
467 /* Nonzero means to treat bitfields as signed unless they say `unsigned'. */
469 int flag_signed_bitfields = 1;
470 int explicit_flag_signed_bitfields = 0;
472 /* Nonzero means handle `#ident' directives. 0 means ignore them. */
474 int flag_no_ident = 0;
476 /* Nonzero means warn about use of implicit int. */
478 int warn_implicit_int;
480 /* Nonzero means message about use of implicit function declarations;
481 1 means warning; 2 means error. */
483 int mesg_implicit_function_declaration;
485 /* Nonzero means give string constants the type `const char *'
486 to get extra warnings from them. These warnings will be too numerous
487 to be useful, except in thoroughly ANSIfied programs. */
489 int warn_write_strings;
491 /* Nonzero means warn about pointer casts that can drop a type qualifier
492 from the pointer target type. */
494 int warn_cast_qual;
496 /* Nonzero means warn when casting a function call to a type that does
497 not match the return type (e.g. (float)sqrt() or (anything*)malloc()
498 when there is no previous declaration of sqrt or malloc. */
500 int warn_bad_function_cast;
502 /* Warn about traditional constructs whose meanings changed in ANSI C. */
504 int warn_traditional;
506 /* Nonzero means warn about sizeof(function) or addition/subtraction
507 of function pointers. */
509 int warn_pointer_arith;
511 /* Nonzero means warn for non-prototype function decls
512 or non-prototyped defs without previous prototype. */
514 int warn_strict_prototypes;
516 /* Nonzero means warn for any global function def
517 without separate previous prototype decl. */
519 int warn_missing_prototypes;
521 /* Nonzero means warn for any global function def
522 without separate previous decl. */
524 int warn_missing_declarations;
526 /* Nonzero means warn about multiple (redundant) decls for the same single
527 variable or function. */
529 int warn_redundant_decls = 0;
531 /* Nonzero means warn about extern declarations of objects not at
532 file-scope level and about *all* declarations of functions (whether
533 extern or static) not at file-scope level. Note that we exclude
534 implicit function declarations. To get warnings about those, use
535 -Wimplicit. */
537 int warn_nested_externs = 0;
539 /* Warn about *printf or *scanf format/argument anomalies. */
541 int warn_format;
543 /* Warn about a subscript that has type char. */
545 int warn_char_subscripts = 0;
547 /* Warn if a type conversion is done that might have confusing results. */
549 int warn_conversion;
551 /* Warn if adding () is suggested. */
553 int warn_parentheses;
555 /* Warn if initializer is not completely bracketed. */
557 int warn_missing_braces;
559 /* Warn if main is suspicious. */
561 int warn_main;
563 /* Warn about #pragma directives that are not recognised. */
565 int warn_unknown_pragmas = 0; /* Tri state variable. */
567 /* Warn about comparison of signed and unsigned values.
568 If -1, neither -Wsign-compare nor -Wno-sign-compare has been specified. */
570 int warn_sign_compare = -1;
572 /* Nonzero means `$' can be in an identifier. */
574 #ifndef DOLLARS_IN_IDENTIFIERS
575 #define DOLLARS_IN_IDENTIFIERS 1
576 #endif
577 int dollars_in_ident = DOLLARS_IN_IDENTIFIERS;
579 /* Decode the string P as a language-specific option for C.
580 Return 1 if it is recognized (and handle it);
581 return 0 if not recognized. */
584 c_decode_option (p)
585 char *p;
587 if (!strcmp (p, "-ftraditional") || !strcmp (p, "-traditional"))
589 flag_traditional = 1;
590 flag_writable_strings = 1;
592 else if (!strcmp (p, "-fallow-single-precision"))
593 flag_allow_single_precision = 1;
594 else if (!strcmp (p, "-fhosted") || !strcmp (p, "-fno-freestanding"))
596 flag_hosted = 1;
597 flag_no_builtin = 0;
599 else if (!strcmp (p, "-ffreestanding") || !strcmp (p, "-fno-hosted"))
601 flag_hosted = 0;
602 flag_no_builtin = 1;
603 /* warn_main will be 2 if set by -Wall, 1 if set by -Wmain */
604 if (warn_main == 2)
605 warn_main = 0;
607 else if (!strcmp (p, "-fnotraditional") || !strcmp (p, "-fno-traditional"))
609 flag_traditional = 0;
610 flag_writable_strings = 0;
612 else if (!strcmp (p, "-fdollars-in-identifiers"))
613 dollars_in_ident = 1;
614 else if (!strcmp (p, "-fno-dollars-in-identifiers"))
615 dollars_in_ident = 0;
616 else if (!strcmp (p, "-fsigned-char"))
617 flag_signed_char = 1;
618 else if (!strcmp (p, "-funsigned-char"))
619 flag_signed_char = 0;
620 else if (!strcmp (p, "-fno-signed-char"))
621 flag_signed_char = 0;
622 else if (!strcmp (p, "-fno-unsigned-char"))
623 flag_signed_char = 1;
624 else if (!strcmp (p, "-fsigned-bitfields")
625 || !strcmp (p, "-fno-unsigned-bitfields"))
627 flag_signed_bitfields = 1;
628 explicit_flag_signed_bitfields = 1;
630 else if (!strcmp (p, "-funsigned-bitfields")
631 || !strcmp (p, "-fno-signed-bitfields"))
633 flag_signed_bitfields = 0;
634 explicit_flag_signed_bitfields = 1;
636 else if (!strcmp (p, "-fshort-enums"))
637 flag_short_enums = 1;
638 else if (!strcmp (p, "-fno-short-enums"))
639 flag_short_enums = 0;
640 else if (!strcmp (p, "-fcond-mismatch"))
641 flag_cond_mismatch = 1;
642 else if (!strcmp (p, "-fno-cond-mismatch"))
643 flag_cond_mismatch = 0;
644 else if (!strcmp (p, "-fshort-double"))
645 flag_short_double = 1;
646 else if (!strcmp (p, "-fno-short-double"))
647 flag_short_double = 0;
648 else if (!strcmp (p, "-fasm"))
649 flag_no_asm = 0;
650 else if (!strcmp (p, "-fno-asm"))
651 flag_no_asm = 1;
652 else if (!strcmp (p, "-fbuiltin"))
653 flag_no_builtin = 0;
654 else if (!strcmp (p, "-fno-builtin"))
655 flag_no_builtin = 1;
656 else if (!strcmp (p, "-fno-ident"))
657 flag_no_ident = 1;
658 else if (!strcmp (p, "-fident"))
659 flag_no_ident = 0;
660 else if (!strcmp (p, "-ansi"))
661 flag_no_asm = 1, flag_no_nonansi_builtin = 1;
662 else if (!strcmp (p, "-Werror-implicit-function-declaration"))
663 mesg_implicit_function_declaration = 2;
664 else if (!strcmp (p, "-Wimplicit-function-declaration"))
665 mesg_implicit_function_declaration = 1;
666 else if (!strcmp (p, "-Wno-implicit-function-declaration"))
667 mesg_implicit_function_declaration = 0;
668 else if (!strcmp (p, "-Wimplicit-int"))
669 warn_implicit_int = 1;
670 else if (!strcmp (p, "-Wno-implicit-int"))
671 warn_implicit_int = 0;
672 else if (!strcmp (p, "-Wimplicit"))
674 warn_implicit_int = 1;
675 if (mesg_implicit_function_declaration != 2)
676 mesg_implicit_function_declaration = 1;
678 else if (!strcmp (p, "-Wno-implicit"))
679 warn_implicit_int = 0, mesg_implicit_function_declaration = 0;
680 else if (!strcmp (p, "-Wwrite-strings"))
681 warn_write_strings = 1;
682 else if (!strcmp (p, "-Wno-write-strings"))
683 warn_write_strings = 0;
684 else if (!strcmp (p, "-Wcast-qual"))
685 warn_cast_qual = 1;
686 else if (!strcmp (p, "-Wno-cast-qual"))
687 warn_cast_qual = 0;
688 else if (!strcmp (p, "-Wbad-function-cast"))
689 warn_bad_function_cast = 1;
690 else if (!strcmp (p, "-Wno-bad-function-cast"))
691 warn_bad_function_cast = 0;
692 else if (!strcmp (p, "-Wpointer-arith"))
693 warn_pointer_arith = 1;
694 else if (!strcmp (p, "-Wno-pointer-arith"))
695 warn_pointer_arith = 0;
696 else if (!strcmp (p, "-Wstrict-prototypes"))
697 warn_strict_prototypes = 1;
698 else if (!strcmp (p, "-Wno-strict-prototypes"))
699 warn_strict_prototypes = 0;
700 else if (!strcmp (p, "-Wmissing-prototypes"))
701 warn_missing_prototypes = 1;
702 else if (!strcmp (p, "-Wno-missing-prototypes"))
703 warn_missing_prototypes = 0;
704 else if (!strcmp (p, "-Wmissing-declarations"))
705 warn_missing_declarations = 1;
706 else if (!strcmp (p, "-Wno-missing-declarations"))
707 warn_missing_declarations = 0;
708 else if (!strcmp (p, "-Wredundant-decls"))
709 warn_redundant_decls = 1;
710 else if (!strcmp (p, "-Wno-redundant-decls"))
711 warn_redundant_decls = 0;
712 else if (!strcmp (p, "-Wnested-externs"))
713 warn_nested_externs = 1;
714 else if (!strcmp (p, "-Wno-nested-externs"))
715 warn_nested_externs = 0;
716 else if (!strcmp (p, "-Wtraditional"))
717 warn_traditional = 1;
718 else if (!strcmp (p, "-Wno-traditional"))
719 warn_traditional = 0;
720 else if (!strcmp (p, "-Wformat"))
721 warn_format = 1;
722 else if (!strcmp (p, "-Wno-format"))
723 warn_format = 0;
724 else if (!strcmp (p, "-Wchar-subscripts"))
725 warn_char_subscripts = 1;
726 else if (!strcmp (p, "-Wno-char-subscripts"))
727 warn_char_subscripts = 0;
728 else if (!strcmp (p, "-Wconversion"))
729 warn_conversion = 1;
730 else if (!strcmp (p, "-Wno-conversion"))
731 warn_conversion = 0;
732 else if (!strcmp (p, "-Wparentheses"))
733 warn_parentheses = 1;
734 else if (!strcmp (p, "-Wno-parentheses"))
735 warn_parentheses = 0;
736 else if (!strcmp (p, "-Wreturn-type"))
737 warn_return_type = 1;
738 else if (!strcmp (p, "-Wno-return-type"))
739 warn_return_type = 0;
740 else if (!strcmp (p, "-Wcomment"))
741 ; /* cpp handles this one. */
742 else if (!strcmp (p, "-Wno-comment"))
743 ; /* cpp handles this one. */
744 else if (!strcmp (p, "-Wcomments"))
745 ; /* cpp handles this one. */
746 else if (!strcmp (p, "-Wno-comments"))
747 ; /* cpp handles this one. */
748 else if (!strcmp (p, "-Wtrigraphs"))
749 ; /* cpp handles this one. */
750 else if (!strcmp (p, "-Wno-trigraphs"))
751 ; /* cpp handles this one. */
752 else if (!strcmp (p, "-Wundef"))
753 ; /* cpp handles this one. */
754 else if (!strcmp (p, "-Wno-undef"))
755 ; /* cpp handles this one. */
756 else if (!strcmp (p, "-Wimport"))
757 ; /* cpp handles this one. */
758 else if (!strcmp (p, "-Wno-import"))
759 ; /* cpp handles this one. */
760 else if (!strcmp (p, "-Wmissing-braces"))
761 warn_missing_braces = 1;
762 else if (!strcmp (p, "-Wno-missing-braces"))
763 warn_missing_braces = 0;
764 else if (!strcmp (p, "-Wmain"))
765 warn_main = 1;
766 else if (!strcmp (p, "-Wno-main"))
767 warn_main = 0;
768 else if (!strcmp (p, "-Wsign-compare"))
769 warn_sign_compare = 1;
770 else if (!strcmp (p, "-Wno-sign-compare"))
771 warn_sign_compare = 0;
772 else if (!strcmp (p, "-Wunknown-pragmas"))
773 /* Set to greater than 1, so that even unknown pragmas in system
774 headers will be warned about. */
775 warn_unknown_pragmas = 2;
776 else if (!strcmp (p, "-Wno-unknown-pragmas"))
777 warn_unknown_pragmas = 0;
778 else if (!strcmp (p, "-Wall"))
780 /* We save the value of warn_uninitialized, since if they put
781 -Wuninitialized on the command line, we need to generate a
782 warning about not using it without also specifying -O. */
783 if (warn_uninitialized != 1)
784 warn_uninitialized = 2;
785 warn_implicit_int = 1;
786 mesg_implicit_function_declaration = 1;
787 warn_return_type = 1;
788 warn_unused = 1;
789 warn_switch = 1;
790 warn_format = 1;
791 warn_char_subscripts = 1;
792 warn_parentheses = 1;
793 warn_missing_braces = 1;
794 /* We set this to 2 here, but 1 in -Wmain, so -ffreestanding can turn
795 it off only if it's not explicit. */
796 warn_main = 2;
797 /* Only warn about unknown pragmas that are not in system headers. */
798 warn_unknown_pragmas = 1;
800 else
801 return 0;
803 return 1;
806 /* Hooks for print_node. */
808 void
809 print_lang_decl (file, node, indent)
810 FILE *file;
811 tree node;
812 int indent;
816 void
817 print_lang_type (file, node, indent)
818 FILE *file;
819 tree node;
820 int indent;
824 void
825 print_lang_identifier (file, node, indent)
826 FILE *file;
827 tree node;
828 int indent;
830 print_node (file, "global", IDENTIFIER_GLOBAL_VALUE (node), indent + 4);
831 print_node (file, "local", IDENTIFIER_LOCAL_VALUE (node), indent + 4);
832 print_node (file, "label", IDENTIFIER_LABEL_VALUE (node), indent + 4);
833 print_node (file, "implicit", IDENTIFIER_IMPLICIT_DECL (node), indent + 4);
834 print_node (file, "error locus", IDENTIFIER_ERROR_LOCUS (node), indent + 4);
835 print_node (file, "limbo value", IDENTIFIER_LIMBO_VALUE (node), indent + 4);
838 /* Hook called at end of compilation to assume 1 elt
839 for a top-level array decl that wasn't complete before. */
841 void
842 finish_incomplete_decl (decl)
843 tree decl;
845 if (TREE_CODE (decl) == VAR_DECL)
847 tree type = TREE_TYPE (decl);
848 if (type != error_mark_node
849 && TREE_CODE (type) == ARRAY_TYPE
850 && TYPE_DOMAIN (type) == 0)
852 if (! DECL_EXTERNAL (decl))
853 warning_with_decl (decl, "array `%s' assumed to have one element");
855 complete_array_type (type, NULL_TREE, 1);
857 layout_decl (decl, 0);
862 /* Create a new `struct binding_level'. */
864 static
865 struct binding_level *
866 make_binding_level ()
868 /* NOSTRICT */
869 return (struct binding_level *) xmalloc (sizeof (struct binding_level));
872 /* Nonzero if we are currently in the global binding level. */
875 global_bindings_p ()
877 return current_binding_level == global_binding_level;
880 void
881 keep_next_level ()
883 keep_next_level_flag = 1;
886 /* Nonzero if the current level needs to have a BLOCK made. */
889 kept_level_p ()
891 return ((current_binding_level->keep_if_subblocks
892 && current_binding_level->blocks != 0)
893 || current_binding_level->keep
894 || current_binding_level->names != 0
895 || (current_binding_level->tags != 0
896 && !current_binding_level->tag_transparent));
899 /* Identify this binding level as a level of parameters.
900 DEFINITION_FLAG is 1 for a definition, 0 for a declaration.
901 But it turns out there is no way to pass the right value for
902 DEFINITION_FLAG, so we ignore it. */
904 void
905 declare_parm_level (definition_flag)
906 int definition_flag;
908 current_binding_level->parm_flag = 1;
911 /* Nonzero if currently making parm declarations. */
914 in_parm_level_p ()
916 return current_binding_level->parm_flag;
919 /* Enter a new binding level.
920 If TAG_TRANSPARENT is nonzero, do so only for the name space of variables,
921 not for that of tags. */
923 void
924 pushlevel (tag_transparent)
925 int tag_transparent;
927 register struct binding_level *newlevel = NULL_BINDING_LEVEL;
929 /* If this is the top level of a function,
930 just make sure that NAMED_LABELS is 0. */
932 if (current_binding_level == global_binding_level)
934 named_labels = 0;
937 /* Reuse or create a struct for this binding level. */
939 if (free_binding_level)
941 newlevel = free_binding_level;
942 free_binding_level = free_binding_level->level_chain;
944 else
946 newlevel = make_binding_level ();
949 /* Add this level to the front of the chain (stack) of levels that
950 are active. */
952 *newlevel = clear_binding_level;
953 newlevel->tag_transparent
954 = (tag_transparent
955 || (current_binding_level
956 ? current_binding_level->subblocks_tag_transparent
957 : 0));
958 newlevel->level_chain = current_binding_level;
959 current_binding_level = newlevel;
960 newlevel->keep = keep_next_level_flag;
961 keep_next_level_flag = 0;
962 newlevel->keep_if_subblocks = keep_next_if_subblocks;
963 keep_next_if_subblocks = 0;
966 /* Clear the limbo values of all identifiers defined in BLOCK or a subblock. */
968 static void
969 clear_limbo_values (block)
970 tree block;
972 tree tem;
974 for (tem = BLOCK_VARS (block); tem; tem = TREE_CHAIN (tem))
975 if (DECL_NAME (tem) != 0)
976 IDENTIFIER_LIMBO_VALUE (DECL_NAME (tem)) = 0;
978 for (tem = BLOCK_SUBBLOCKS (block); tem; tem = TREE_CHAIN (tem))
979 clear_limbo_values (tem);
982 /* Exit a binding level.
983 Pop the level off, and restore the state of the identifier-decl mappings
984 that were in effect when this level was entered.
986 If KEEP is nonzero, this level had explicit declarations, so
987 and create a "block" (a BLOCK node) for the level
988 to record its declarations and subblocks for symbol table output.
990 If FUNCTIONBODY is nonzero, this level is the body of a function,
991 so create a block as if KEEP were set and also clear out all
992 label names.
994 If REVERSE is nonzero, reverse the order of decls before putting
995 them into the BLOCK. */
997 tree
998 poplevel (keep, reverse, functionbody)
999 int keep;
1000 int reverse;
1001 int functionbody;
1003 register tree link;
1004 /* The chain of decls was accumulated in reverse order.
1005 Put it into forward order, just for cleanliness. */
1006 tree decls;
1007 tree tags = current_binding_level->tags;
1008 tree subblocks = current_binding_level->blocks;
1009 tree block = 0;
1010 tree decl;
1011 int block_previously_created;
1013 keep |= current_binding_level->keep;
1015 /* This warning is turned off because it causes warnings for
1016 declarations like `extern struct foo *x'. */
1017 #if 0
1018 /* Warn about incomplete structure types in this level. */
1019 for (link = tags; link; link = TREE_CHAIN (link))
1020 if (TYPE_SIZE (TREE_VALUE (link)) == 0)
1022 tree type = TREE_VALUE (link);
1023 char *errmsg;
1024 switch (TREE_CODE (type))
1026 case RECORD_TYPE:
1027 errmsg = "`struct %s' incomplete in scope ending here";
1028 break;
1029 case UNION_TYPE:
1030 errmsg = "`union %s' incomplete in scope ending here";
1031 break;
1032 case ENUMERAL_TYPE:
1033 errmsg = "`enum %s' incomplete in scope ending here";
1034 break;
1036 if (TREE_CODE (TYPE_NAME (type)) == IDENTIFIER_NODE)
1037 error (errmsg, IDENTIFIER_POINTER (TYPE_NAME (type)));
1038 else
1039 /* If this type has a typedef-name, the TYPE_NAME is a TYPE_DECL. */
1040 error (errmsg, IDENTIFIER_POINTER (DECL_NAME (TYPE_NAME (type))));
1042 #endif /* 0 */
1044 /* Get the decls in the order they were written.
1045 Usually current_binding_level->names is in reverse order.
1046 But parameter decls were previously put in forward order. */
1048 if (reverse)
1049 current_binding_level->names
1050 = decls = nreverse (current_binding_level->names);
1051 else
1052 decls = current_binding_level->names;
1054 /* Output any nested inline functions within this block
1055 if they weren't already output. */
1057 for (decl = decls; decl; decl = TREE_CHAIN (decl))
1058 if (TREE_CODE (decl) == FUNCTION_DECL
1059 && ! TREE_ASM_WRITTEN (decl)
1060 && DECL_INITIAL (decl) != 0
1061 && TREE_ADDRESSABLE (decl))
1063 /* If this decl was copied from a file-scope decl
1064 on account of a block-scope extern decl,
1065 propagate TREE_ADDRESSABLE to the file-scope decl.
1067 DECL_ABSTRACT_ORIGIN can be set to itself if warn_return_type is
1068 true, since then the decl goes through save_for_inline_copying. */
1069 if (DECL_ABSTRACT_ORIGIN (decl) != 0
1070 && DECL_ABSTRACT_ORIGIN (decl) != decl)
1071 TREE_ADDRESSABLE (DECL_ABSTRACT_ORIGIN (decl)) = 1;
1072 else if (DECL_SAVED_INSNS (decl) != 0)
1074 push_function_context ();
1075 output_inline_function (decl);
1076 pop_function_context ();
1080 /* If there were any declarations or structure tags in that level,
1081 or if this level is a function body,
1082 create a BLOCK to record them for the life of this function. */
1084 block = 0;
1085 block_previously_created = (current_binding_level->this_block != 0);
1086 if (block_previously_created)
1087 block = current_binding_level->this_block;
1088 else if (keep || functionbody
1089 || (current_binding_level->keep_if_subblocks && subblocks != 0))
1090 block = make_node (BLOCK);
1091 if (block != 0)
1093 BLOCK_VARS (block) = decls;
1094 BLOCK_TYPE_TAGS (block) = tags;
1095 BLOCK_SUBBLOCKS (block) = subblocks;
1096 remember_end_note (block);
1099 /* In each subblock, record that this is its superior. */
1101 for (link = subblocks; link; link = TREE_CHAIN (link))
1102 BLOCK_SUPERCONTEXT (link) = block;
1104 /* Clear out the meanings of the local variables of this level. */
1106 for (link = decls; link; link = TREE_CHAIN (link))
1108 if (DECL_NAME (link) != 0)
1110 /* If the ident. was used or addressed via a local extern decl,
1111 don't forget that fact. */
1112 if (DECL_EXTERNAL (link))
1114 if (TREE_USED (link))
1115 TREE_USED (DECL_NAME (link)) = 1;
1116 if (TREE_ADDRESSABLE (link))
1117 TREE_ADDRESSABLE (DECL_ASSEMBLER_NAME (link)) = 1;
1119 IDENTIFIER_LOCAL_VALUE (DECL_NAME (link)) = 0;
1123 /* Restore all name-meanings of the outer levels
1124 that were shadowed by this level. */
1126 for (link = current_binding_level->shadowed; link; link = TREE_CHAIN (link))
1127 IDENTIFIER_LOCAL_VALUE (TREE_PURPOSE (link)) = TREE_VALUE (link);
1129 /* If the level being exited is the top level of a function,
1130 check over all the labels, and clear out the current
1131 (function local) meanings of their names. */
1133 if (functionbody)
1135 clear_limbo_values (block);
1137 /* If this is the top level block of a function,
1138 the vars are the function's parameters.
1139 Don't leave them in the BLOCK because they are
1140 found in the FUNCTION_DECL instead. */
1142 BLOCK_VARS (block) = 0;
1144 /* Clear out the definitions of all label names,
1145 since their scopes end here,
1146 and add them to BLOCK_VARS. */
1148 for (link = named_labels; link; link = TREE_CHAIN (link))
1150 register tree label = TREE_VALUE (link);
1152 if (DECL_INITIAL (label) == 0)
1154 error_with_decl (label, "label `%s' used but not defined");
1155 /* Avoid crashing later. */
1156 define_label (input_filename, lineno,
1157 DECL_NAME (label));
1159 else if (warn_unused && !TREE_USED (label))
1160 warning_with_decl (label, "label `%s' defined but not used");
1161 IDENTIFIER_LABEL_VALUE (DECL_NAME (label)) = 0;
1163 /* Put the labels into the "variables" of the
1164 top-level block, so debugger can see them. */
1165 TREE_CHAIN (label) = BLOCK_VARS (block);
1166 BLOCK_VARS (block) = label;
1170 /* Pop the current level, and free the structure for reuse. */
1173 register struct binding_level *level = current_binding_level;
1174 current_binding_level = current_binding_level->level_chain;
1176 level->level_chain = free_binding_level;
1177 free_binding_level = level;
1180 /* Dispose of the block that we just made inside some higher level. */
1181 if (functionbody)
1182 DECL_INITIAL (current_function_decl) = block;
1183 else if (block)
1185 if (!block_previously_created)
1186 current_binding_level->blocks
1187 = chainon (current_binding_level->blocks, block);
1189 /* If we did not make a block for the level just exited,
1190 any blocks made for inner levels
1191 (since they cannot be recorded as subblocks in that level)
1192 must be carried forward so they will later become subblocks
1193 of something else. */
1194 else if (subblocks)
1195 current_binding_level->blocks
1196 = chainon (current_binding_level->blocks, subblocks);
1198 /* Set the TYPE_CONTEXTs for all of the tagged types belonging to this
1199 binding contour so that they point to the appropriate construct, i.e.
1200 either to the current FUNCTION_DECL node, or else to the BLOCK node
1201 we just constructed.
1203 Note that for tagged types whose scope is just the formal parameter
1204 list for some function type specification, we can't properly set
1205 their TYPE_CONTEXTs here, because we don't have a pointer to the
1206 appropriate FUNCTION_TYPE node readily available to us. For those
1207 cases, the TYPE_CONTEXTs of the relevant tagged type nodes get set
1208 in `grokdeclarator' as soon as we have created the FUNCTION_TYPE
1209 node which will represent the "scope" for these "parameter list local"
1210 tagged types.
1213 if (functionbody)
1214 for (link = tags; link; link = TREE_CHAIN (link))
1215 TYPE_CONTEXT (TREE_VALUE (link)) = current_function_decl;
1216 else if (block)
1217 for (link = tags; link; link = TREE_CHAIN (link))
1218 TYPE_CONTEXT (TREE_VALUE (link)) = block;
1220 if (block)
1221 TREE_USED (block) = 1;
1222 return block;
1225 /* Delete the node BLOCK from the current binding level.
1226 This is used for the block inside a stmt expr ({...})
1227 so that the block can be reinserted where appropriate. */
1229 void
1230 delete_block (block)
1231 tree block;
1233 tree t;
1234 if (current_binding_level->blocks == block)
1235 current_binding_level->blocks = TREE_CHAIN (block);
1236 for (t = current_binding_level->blocks; t;)
1238 if (TREE_CHAIN (t) == block)
1239 TREE_CHAIN (t) = TREE_CHAIN (block);
1240 else
1241 t = TREE_CHAIN (t);
1243 TREE_CHAIN (block) = NULL;
1244 /* Clear TREE_USED which is always set by poplevel.
1245 The flag is set again if insert_block is called. */
1246 TREE_USED (block) = 0;
1249 /* Insert BLOCK at the end of the list of subblocks of the
1250 current binding level. This is used when a BIND_EXPR is expanded,
1251 to handle the BLOCK node inside the BIND_EXPR. */
1253 void
1254 insert_block (block)
1255 tree block;
1257 TREE_USED (block) = 1;
1258 current_binding_level->blocks
1259 = chainon (current_binding_level->blocks, block);
1262 /* Set the BLOCK node for the innermost scope
1263 (the one we are currently in). */
1265 void
1266 set_block (block)
1267 register tree block;
1269 current_binding_level->this_block = block;
1272 void
1273 push_label_level ()
1275 register struct binding_level *newlevel;
1277 /* Reuse or create a struct for this binding level. */
1279 if (free_binding_level)
1281 newlevel = free_binding_level;
1282 free_binding_level = free_binding_level->level_chain;
1284 else
1286 newlevel = make_binding_level ();
1289 /* Add this level to the front of the chain (stack) of label levels. */
1291 newlevel->level_chain = label_level_chain;
1292 label_level_chain = newlevel;
1294 newlevel->names = named_labels;
1295 newlevel->shadowed = shadowed_labels;
1296 named_labels = 0;
1297 shadowed_labels = 0;
1300 void
1301 pop_label_level ()
1303 register struct binding_level *level = label_level_chain;
1304 tree link, prev;
1306 /* Clear out the definitions of the declared labels in this level.
1307 Leave in the list any ordinary, non-declared labels. */
1308 for (link = named_labels, prev = 0; link;)
1310 if (C_DECLARED_LABEL_FLAG (TREE_VALUE (link)))
1312 if (DECL_SOURCE_LINE (TREE_VALUE (link)) == 0)
1314 error_with_decl (TREE_VALUE (link),
1315 "label `%s' used but not defined");
1316 /* Avoid crashing later. */
1317 define_label (input_filename, lineno,
1318 DECL_NAME (TREE_VALUE (link)));
1320 else if (warn_unused && !TREE_USED (TREE_VALUE (link)))
1321 warning_with_decl (TREE_VALUE (link),
1322 "label `%s' defined but not used");
1323 IDENTIFIER_LABEL_VALUE (DECL_NAME (TREE_VALUE (link))) = 0;
1325 /* Delete this element from the list. */
1326 link = TREE_CHAIN (link);
1327 if (prev)
1328 TREE_CHAIN (prev) = link;
1329 else
1330 named_labels = link;
1332 else
1334 prev = link;
1335 link = TREE_CHAIN (link);
1339 /* Bring back all the labels that were shadowed. */
1340 for (link = shadowed_labels; link; link = TREE_CHAIN (link))
1341 if (DECL_NAME (TREE_VALUE (link)) != 0)
1342 IDENTIFIER_LABEL_VALUE (DECL_NAME (TREE_VALUE (link)))
1343 = TREE_VALUE (link);
1345 named_labels = chainon (named_labels, level->names);
1346 shadowed_labels = level->shadowed;
1348 /* Pop the current level, and free the structure for reuse. */
1349 label_level_chain = label_level_chain->level_chain;
1350 level->level_chain = free_binding_level;
1351 free_binding_level = level;
1354 /* Push a definition or a declaration of struct, union or enum tag "name".
1355 "type" should be the type node.
1356 We assume that the tag "name" is not already defined.
1358 Note that the definition may really be just a forward reference.
1359 In that case, the TYPE_SIZE will be zero. */
1361 void
1362 pushtag (name, type)
1363 tree name, type;
1365 register struct binding_level *b;
1367 /* Find the proper binding level for this type tag. */
1369 for (b = current_binding_level; b->tag_transparent; b = b->level_chain)
1370 continue;
1372 if (name)
1374 /* Record the identifier as the type's name if it has none. */
1376 if (TYPE_NAME (type) == 0)
1377 TYPE_NAME (type) = name;
1380 if (b == global_binding_level)
1381 b->tags = perm_tree_cons (name, type, b->tags);
1382 else
1383 b->tags = saveable_tree_cons (name, type, b->tags);
1385 /* Create a fake NULL-named TYPE_DECL node whose TREE_TYPE will be the
1386 tagged type we just added to the current binding level. This fake
1387 NULL-named TYPE_DECL node helps dwarfout.c to know when it needs
1388 to output a representation of a tagged type, and it also gives
1389 us a convenient place to record the "scope start" address for the
1390 tagged type. */
1392 TYPE_STUB_DECL (type) = pushdecl (build_decl (TYPE_DECL, NULL_TREE, type));
1394 /* An approximation for now, so we can tell this is a function-scope tag.
1395 This will be updated in poplevel. */
1396 TYPE_CONTEXT (type) = DECL_CONTEXT (TYPE_STUB_DECL (type));
1399 /* Handle when a new declaration NEWDECL
1400 has the same name as an old one OLDDECL
1401 in the same binding contour.
1402 Prints an error message if appropriate.
1404 If safely possible, alter OLDDECL to look like NEWDECL, and return 1.
1405 Otherwise, return 0.
1407 When DIFFERENT_BINDING_LEVEL is true, NEWDECL is an external declaration,
1408 and OLDDECL is in an outer binding level and should thus not be changed. */
1410 static int
1411 duplicate_decls (newdecl, olddecl, different_binding_level)
1412 register tree newdecl, olddecl;
1413 int different_binding_level;
1415 int types_match = comptypes (TREE_TYPE (newdecl), TREE_TYPE (olddecl));
1416 int new_is_definition = (TREE_CODE (newdecl) == FUNCTION_DECL
1417 && DECL_INITIAL (newdecl) != 0);
1418 tree oldtype = TREE_TYPE (olddecl);
1419 tree newtype = TREE_TYPE (newdecl);
1420 char *errmsg = 0;
1422 if (TREE_CODE_CLASS (TREE_CODE (olddecl)) == 'd')
1423 DECL_MACHINE_ATTRIBUTES (newdecl)
1424 = merge_machine_decl_attributes (olddecl, newdecl);
1426 if (TREE_CODE (newtype) == ERROR_MARK
1427 || TREE_CODE (oldtype) == ERROR_MARK)
1428 types_match = 0;
1430 /* New decl is completely inconsistent with the old one =>
1431 tell caller to replace the old one.
1432 This is always an error except in the case of shadowing a builtin. */
1433 if (TREE_CODE (olddecl) != TREE_CODE (newdecl))
1435 if (TREE_CODE (olddecl) == FUNCTION_DECL
1436 && (DECL_BUILT_IN (olddecl)
1437 || DECL_BUILT_IN_NONANSI (olddecl)))
1439 /* If you declare a built-in or predefined function name as static,
1440 the old definition is overridden,
1441 but optionally warn this was a bad choice of name. */
1442 if (!TREE_PUBLIC (newdecl))
1444 if (!warn_shadow)
1446 else if (DECL_BUILT_IN (olddecl))
1447 warning_with_decl (newdecl, "shadowing built-in function `%s'");
1448 else
1449 warning_with_decl (newdecl, "shadowing library function `%s'");
1451 /* Likewise, if the built-in is not ansi, then programs can
1452 override it even globally without an error. */
1453 else if (! DECL_BUILT_IN (olddecl))
1454 warning_with_decl (newdecl,
1455 "library function `%s' declared as non-function");
1457 else if (DECL_BUILT_IN_NONANSI (olddecl))
1458 warning_with_decl (newdecl,
1459 "built-in function `%s' declared as non-function");
1460 else
1461 warning_with_decl (newdecl,
1462 "built-in function `%s' declared as non-function");
1464 else
1466 error_with_decl (newdecl, "`%s' redeclared as different kind of symbol");
1467 error_with_decl (olddecl, "previous declaration of `%s'");
1470 return 0;
1473 /* For real parm decl following a forward decl,
1474 return 1 so old decl will be reused. */
1475 if (types_match && TREE_CODE (newdecl) == PARM_DECL
1476 && TREE_ASM_WRITTEN (olddecl) && ! TREE_ASM_WRITTEN (newdecl))
1477 return 1;
1479 /* The new declaration is the same kind of object as the old one.
1480 The declarations may partially match. Print warnings if they don't
1481 match enough. Ultimately, copy most of the information from the new
1482 decl to the old one, and keep using the old one. */
1484 if (flag_traditional && TREE_CODE (newdecl) == FUNCTION_DECL
1485 && IDENTIFIER_IMPLICIT_DECL (DECL_NAME (newdecl)) == olddecl
1486 && DECL_INITIAL (olddecl) == 0)
1487 /* If -traditional, avoid error for redeclaring fcn
1488 after implicit decl. */
1490 else if (TREE_CODE (olddecl) == FUNCTION_DECL
1491 && DECL_BUILT_IN (olddecl))
1493 /* A function declaration for a built-in function. */
1494 if (!TREE_PUBLIC (newdecl))
1496 /* If you declare a built-in function name as static, the
1497 built-in definition is overridden,
1498 but optionally warn this was a bad choice of name. */
1499 if (warn_shadow)
1500 warning_with_decl (newdecl, "shadowing built-in function `%s'");
1501 /* Discard the old built-in function. */
1502 return 0;
1504 else if (!types_match)
1506 /* Accept the return type of the new declaration if same modes. */
1507 tree oldreturntype = TREE_TYPE (oldtype);
1508 tree newreturntype = TREE_TYPE (newtype);
1510 /* Make sure we put the new type in the same obstack as the old ones.
1511 If the old types are not both in the same obstack, use the
1512 permanent one. */
1513 if (TYPE_OBSTACK (oldtype) == TYPE_OBSTACK (newtype))
1514 push_obstacks (TYPE_OBSTACK (oldtype), TYPE_OBSTACK (oldtype));
1515 else
1517 push_obstacks_nochange ();
1518 end_temporary_allocation ();
1521 if (TYPE_MODE (oldreturntype) == TYPE_MODE (newreturntype))
1523 /* Function types may be shared, so we can't just modify
1524 the return type of olddecl's function type. */
1525 tree trytype
1526 = build_function_type (newreturntype,
1527 TYPE_ARG_TYPES (oldtype));
1529 types_match = comptypes (newtype, trytype);
1530 if (types_match)
1531 oldtype = trytype;
1533 /* Accept harmless mismatch in first argument type also.
1534 This is for ffs. */
1535 if (TYPE_ARG_TYPES (TREE_TYPE (newdecl)) != 0
1536 && TYPE_ARG_TYPES (oldtype) != 0
1537 && TREE_VALUE (TYPE_ARG_TYPES (newtype)) != 0
1538 && TREE_VALUE (TYPE_ARG_TYPES (oldtype)) != 0
1539 && (TYPE_MODE (TREE_VALUE (TYPE_ARG_TYPES (newtype)))
1540 == TYPE_MODE (TREE_VALUE (TYPE_ARG_TYPES (oldtype)))))
1542 /* Function types may be shared, so we can't just modify
1543 the return type of olddecl's function type. */
1544 tree trytype
1545 = build_function_type (TREE_TYPE (oldtype),
1546 tree_cons (NULL_TREE,
1547 TREE_VALUE (TYPE_ARG_TYPES (newtype)),
1548 TREE_CHAIN (TYPE_ARG_TYPES (oldtype))));
1550 types_match = comptypes (newtype, trytype);
1551 if (types_match)
1552 oldtype = trytype;
1554 if (! different_binding_level)
1555 TREE_TYPE (olddecl) = oldtype;
1557 pop_obstacks ();
1559 if (!types_match)
1561 /* If types don't match for a built-in, throw away the built-in. */
1562 warning_with_decl (newdecl, "conflicting types for built-in function `%s'");
1563 return 0;
1566 else if (TREE_CODE (olddecl) == FUNCTION_DECL
1567 && DECL_SOURCE_LINE (olddecl) == 0)
1569 /* A function declaration for a predeclared function
1570 that isn't actually built in. */
1571 if (!TREE_PUBLIC (newdecl))
1573 /* If you declare it as static, the
1574 default definition is overridden. */
1575 return 0;
1577 else if (!types_match)
1579 /* If the types don't match, preserve volatility indication.
1580 Later on, we will discard everything else about the
1581 default declaration. */
1582 TREE_THIS_VOLATILE (newdecl) |= TREE_THIS_VOLATILE (olddecl);
1585 /* Permit char *foo () to match void *foo (...) if not pedantic,
1586 if one of them came from a system header file. */
1587 else if (!types_match
1588 && TREE_CODE (olddecl) == FUNCTION_DECL
1589 && TREE_CODE (newdecl) == FUNCTION_DECL
1590 && TREE_CODE (TREE_TYPE (oldtype)) == POINTER_TYPE
1591 && TREE_CODE (TREE_TYPE (newtype)) == POINTER_TYPE
1592 && (DECL_IN_SYSTEM_HEADER (olddecl)
1593 || DECL_IN_SYSTEM_HEADER (newdecl))
1594 && ((TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (newtype))) == void_type_node
1595 && TYPE_ARG_TYPES (oldtype) == 0
1596 && self_promoting_args_p (TYPE_ARG_TYPES (newtype))
1597 && TREE_TYPE (TREE_TYPE (oldtype)) == char_type_node)
1599 (TREE_TYPE (TREE_TYPE (newtype)) == char_type_node
1600 && TYPE_ARG_TYPES (newtype) == 0
1601 && self_promoting_args_p (TYPE_ARG_TYPES (oldtype))
1602 && TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (oldtype))) == void_type_node)))
1604 if (pedantic)
1605 pedwarn_with_decl (newdecl, "conflicting types for `%s'");
1606 /* Make sure we keep void * as ret type, not char *. */
1607 if (TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (oldtype))) == void_type_node)
1608 TREE_TYPE (newdecl) = newtype = oldtype;
1610 /* Set DECL_IN_SYSTEM_HEADER, so that if we see another declaration
1611 we will come back here again. */
1612 DECL_IN_SYSTEM_HEADER (newdecl) = 1;
1614 else if (!types_match
1615 /* Permit char *foo (int, ...); followed by char *foo ();
1616 if not pedantic. */
1617 && ! (TREE_CODE (olddecl) == FUNCTION_DECL
1618 && ! pedantic
1619 /* Return types must still match. */
1620 && comptypes (TREE_TYPE (oldtype),
1621 TREE_TYPE (newtype))
1622 && TYPE_ARG_TYPES (newtype) == 0))
1624 error_with_decl (newdecl, "conflicting types for `%s'");
1625 /* Check for function type mismatch
1626 involving an empty arglist vs a nonempty one. */
1627 if (TREE_CODE (olddecl) == FUNCTION_DECL
1628 && comptypes (TREE_TYPE (oldtype),
1629 TREE_TYPE (newtype))
1630 && ((TYPE_ARG_TYPES (oldtype) == 0
1631 && DECL_INITIAL (olddecl) == 0)
1633 (TYPE_ARG_TYPES (newtype) == 0
1634 && DECL_INITIAL (newdecl) == 0)))
1636 /* Classify the problem further. */
1637 register tree t = TYPE_ARG_TYPES (oldtype);
1638 if (t == 0)
1639 t = TYPE_ARG_TYPES (newtype);
1640 for (; t; t = TREE_CHAIN (t))
1642 register tree type = TREE_VALUE (t);
1644 if (TREE_CHAIN (t) == 0
1645 && TYPE_MAIN_VARIANT (type) != void_type_node)
1647 error ("A parameter list with an ellipsis can't match");
1648 error ("an empty parameter name list declaration.");
1649 break;
1652 if (TYPE_MAIN_VARIANT (type) == float_type_node
1653 || C_PROMOTING_INTEGER_TYPE_P (type))
1655 error ("An argument type that has a default promotion");
1656 error ("can't match an empty parameter name list declaration.");
1657 break;
1661 error_with_decl (olddecl, "previous declaration of `%s'");
1663 else
1665 errmsg = redeclaration_error_message (newdecl, olddecl);
1666 if (errmsg)
1668 error_with_decl (newdecl, errmsg);
1669 error_with_decl (olddecl,
1670 ((DECL_INITIAL (olddecl)
1671 && current_binding_level == global_binding_level)
1672 ? "`%s' previously defined here"
1673 : "`%s' previously declared here"));
1675 else if (TREE_CODE (newdecl) == TYPE_DECL
1676 && (DECL_IN_SYSTEM_HEADER (olddecl)
1677 || DECL_IN_SYSTEM_HEADER (newdecl)))
1679 warning_with_decl (newdecl, "redefinition of `%s'");
1680 warning_with_decl
1681 (olddecl,
1682 ((DECL_INITIAL (olddecl)
1683 && current_binding_level == global_binding_level)
1684 ? "`%s' previously defined here"
1685 : "`%s' previously declared here"));
1687 else if (TREE_CODE (olddecl) == FUNCTION_DECL
1688 && DECL_INITIAL (olddecl) != 0
1689 && TYPE_ARG_TYPES (oldtype) == 0
1690 && TYPE_ARG_TYPES (newtype) != 0
1691 && TYPE_ACTUAL_ARG_TYPES (oldtype) != 0)
1693 register tree type, parm;
1694 register int nargs;
1695 /* Prototype decl follows defn w/o prototype. */
1697 for (parm = TYPE_ACTUAL_ARG_TYPES (oldtype),
1698 type = TYPE_ARG_TYPES (newtype),
1699 nargs = 1;
1700 (TYPE_MAIN_VARIANT (TREE_VALUE (parm)) != void_type_node
1701 || TYPE_MAIN_VARIANT (TREE_VALUE (type)) != void_type_node);
1702 parm = TREE_CHAIN (parm), type = TREE_CHAIN (type), nargs++)
1704 if (TYPE_MAIN_VARIANT (TREE_VALUE (parm)) == void_type_node
1705 || TYPE_MAIN_VARIANT (TREE_VALUE (type)) == void_type_node)
1707 errmsg = "prototype for `%s' follows and number of arguments";
1708 break;
1710 /* Type for passing arg must be consistent
1711 with that declared for the arg. */
1712 if (! comptypes (TREE_VALUE (parm), TREE_VALUE (type))
1713 /* If -traditional, allow `unsigned int' instead of `int'
1714 in the prototype. */
1715 && (! (flag_traditional
1716 && TYPE_MAIN_VARIANT (TREE_VALUE (parm)) == integer_type_node
1717 && TYPE_MAIN_VARIANT (TREE_VALUE (type)) == unsigned_type_node)))
1719 errmsg = "prototype for `%s' follows and argument %d";
1720 break;
1723 if (errmsg)
1725 error_with_decl (newdecl, errmsg, nargs);
1726 error_with_decl (olddecl,
1727 "doesn't match non-prototype definition here");
1729 else
1731 warning_with_decl (newdecl, "prototype for `%s' follows");
1732 warning_with_decl (olddecl, "non-prototype definition here");
1735 /* Warn about mismatches in various flags. */
1736 else
1738 /* Warn if function is now inline
1739 but was previously declared not inline and has been called. */
1740 if (TREE_CODE (olddecl) == FUNCTION_DECL
1741 && ! DECL_INLINE (olddecl) && DECL_INLINE (newdecl)
1742 && TREE_USED (olddecl))
1743 warning_with_decl (newdecl,
1744 "`%s' declared inline after being called");
1745 if (TREE_CODE (olddecl) == FUNCTION_DECL
1746 && ! DECL_INLINE (olddecl) && DECL_INLINE (newdecl)
1747 && DECL_INITIAL (olddecl) != 0)
1748 warning_with_decl (newdecl,
1749 "`%s' declared inline after its definition");
1751 /* If pedantic, warn when static declaration follows a non-static
1752 declaration. Otherwise, do so only for functions. */
1753 if ((pedantic || TREE_CODE (olddecl) == FUNCTION_DECL)
1754 && TREE_PUBLIC (olddecl)
1755 && !TREE_PUBLIC (newdecl))
1756 warning_with_decl (newdecl, "static declaration for `%s' follows non-static");
1758 /* Warn when const declaration follows a non-const
1759 declaration, but not for functions. */
1760 if (TREE_CODE (olddecl) != FUNCTION_DECL
1761 && !TREE_READONLY (olddecl)
1762 && TREE_READONLY (newdecl))
1763 warning_with_decl (newdecl, "const declaration for `%s' follows non-const");
1764 /* These bits are logically part of the type, for variables.
1765 But not for functions
1766 (where qualifiers are not valid ANSI anyway). */
1767 else if (pedantic && TREE_CODE (olddecl) != FUNCTION_DECL
1768 && (TREE_READONLY (newdecl) != TREE_READONLY (olddecl)
1769 || TREE_THIS_VOLATILE (newdecl) != TREE_THIS_VOLATILE (olddecl)))
1770 pedwarn_with_decl (newdecl, "type qualifiers for `%s' conflict with previous decl");
1774 /* Optionally warn about more than one declaration for the same name. */
1775 if (errmsg == 0 && warn_redundant_decls && DECL_SOURCE_LINE (olddecl) != 0
1776 /* Don't warn about a function declaration
1777 followed by a definition. */
1778 && !(TREE_CODE (newdecl) == FUNCTION_DECL && DECL_INITIAL (newdecl) != 0
1779 && DECL_INITIAL (olddecl) == 0)
1780 /* Don't warn about extern decl followed by (tentative) definition. */
1781 && !(DECL_EXTERNAL (olddecl) && ! DECL_EXTERNAL (newdecl)))
1783 warning_with_decl (newdecl, "redundant redeclaration of `%s' in same scope");
1784 warning_with_decl (olddecl, "previous declaration of `%s'");
1787 /* Copy all the DECL_... slots specified in the new decl
1788 except for any that we copy here from the old type.
1790 Past this point, we don't change OLDTYPE and NEWTYPE
1791 even if we change the types of NEWDECL and OLDDECL. */
1793 if (types_match)
1795 /* When copying info to olddecl, we store into write_olddecl
1796 instead. This allows us to avoid modifying olddecl when
1797 different_binding_level is true. */
1798 tree write_olddecl = different_binding_level ? newdecl : olddecl;
1800 /* Make sure we put the new type in the same obstack as the old ones.
1801 If the old types are not both in the same obstack, use the permanent
1802 one. */
1803 if (TYPE_OBSTACK (oldtype) == TYPE_OBSTACK (newtype))
1804 push_obstacks (TYPE_OBSTACK (oldtype), TYPE_OBSTACK (oldtype));
1805 else
1807 push_obstacks_nochange ();
1808 end_temporary_allocation ();
1811 /* Merge the data types specified in the two decls. */
1812 if (TREE_CODE (newdecl) != FUNCTION_DECL || !DECL_BUILT_IN (olddecl))
1814 if (different_binding_level)
1815 TREE_TYPE (newdecl)
1816 = build_type_attribute_variant
1817 (newtype,
1818 merge_attributes (TYPE_ATTRIBUTES (newtype),
1819 TYPE_ATTRIBUTES (oldtype)));
1820 else
1821 TREE_TYPE (newdecl)
1822 = TREE_TYPE (olddecl)
1823 = common_type (newtype, oldtype);
1826 /* Lay the type out, unless already done. */
1827 if (oldtype != TREE_TYPE (newdecl))
1829 if (TREE_TYPE (newdecl) != error_mark_node)
1830 layout_type (TREE_TYPE (newdecl));
1831 if (TREE_CODE (newdecl) != FUNCTION_DECL
1832 && TREE_CODE (newdecl) != TYPE_DECL
1833 && TREE_CODE (newdecl) != CONST_DECL)
1834 layout_decl (newdecl, 0);
1836 else
1838 /* Since the type is OLDDECL's, make OLDDECL's size go with. */
1839 DECL_SIZE (newdecl) = DECL_SIZE (olddecl);
1840 if (TREE_CODE (olddecl) != FUNCTION_DECL)
1841 if (DECL_ALIGN (olddecl) > DECL_ALIGN (newdecl))
1842 DECL_ALIGN (newdecl) = DECL_ALIGN (olddecl);
1845 /* Keep the old rtl since we can safely use it. */
1846 DECL_RTL (newdecl) = DECL_RTL (olddecl);
1848 /* Merge the type qualifiers. */
1849 if (DECL_BUILT_IN_NONANSI (olddecl) && TREE_THIS_VOLATILE (olddecl)
1850 && !TREE_THIS_VOLATILE (newdecl))
1851 TREE_THIS_VOLATILE (write_olddecl) = 0;
1852 if (TREE_READONLY (newdecl))
1853 TREE_READONLY (write_olddecl) = 1;
1854 if (TREE_THIS_VOLATILE (newdecl))
1856 TREE_THIS_VOLATILE (write_olddecl) = 1;
1857 if (TREE_CODE (newdecl) == VAR_DECL)
1858 make_var_volatile (newdecl);
1861 /* Keep source location of definition rather than declaration. */
1862 /* When called with different_binding_level set, keep the old
1863 information so that meaningful diagnostics can be given. */
1864 if (DECL_INITIAL (newdecl) == 0 && DECL_INITIAL (olddecl) != 0
1865 && ! different_binding_level)
1867 DECL_SOURCE_LINE (newdecl) = DECL_SOURCE_LINE (olddecl);
1868 DECL_SOURCE_FILE (newdecl) = DECL_SOURCE_FILE (olddecl);
1871 /* Merge the unused-warning information. */
1872 if (DECL_IN_SYSTEM_HEADER (olddecl))
1873 DECL_IN_SYSTEM_HEADER (newdecl) = 1;
1874 else if (DECL_IN_SYSTEM_HEADER (newdecl))
1875 DECL_IN_SYSTEM_HEADER (write_olddecl) = 1;
1877 /* Merge the initialization information. */
1878 /* When called with different_binding_level set, don't copy over
1879 DECL_INITIAL, so that we don't accidentally change function
1880 declarations into function definitions. */
1881 if (DECL_INITIAL (newdecl) == 0 && ! different_binding_level)
1882 DECL_INITIAL (newdecl) = DECL_INITIAL (olddecl);
1884 /* Merge the section attribute.
1885 We want to issue an error if the sections conflict but that must be
1886 done later in decl_attributes since we are called before attributes
1887 are assigned. */
1888 if (DECL_SECTION_NAME (newdecl) == NULL_TREE)
1889 DECL_SECTION_NAME (newdecl) = DECL_SECTION_NAME (olddecl);
1891 if (TREE_CODE (newdecl) == FUNCTION_DECL)
1893 DECL_STATIC_CONSTRUCTOR(newdecl) |= DECL_STATIC_CONSTRUCTOR(olddecl);
1894 DECL_STATIC_DESTRUCTOR (newdecl) |= DECL_STATIC_DESTRUCTOR (olddecl);
1897 pop_obstacks ();
1899 /* If cannot merge, then use the new type and qualifiers,
1900 and don't preserve the old rtl. */
1901 else if (! different_binding_level)
1903 TREE_TYPE (olddecl) = TREE_TYPE (newdecl);
1904 TREE_READONLY (olddecl) = TREE_READONLY (newdecl);
1905 TREE_THIS_VOLATILE (olddecl) = TREE_THIS_VOLATILE (newdecl);
1906 TREE_SIDE_EFFECTS (olddecl) = TREE_SIDE_EFFECTS (newdecl);
1909 /* Merge the storage class information. */
1910 DECL_WEAK (newdecl) |= DECL_WEAK (olddecl);
1911 /* For functions, static overrides non-static. */
1912 if (TREE_CODE (newdecl) == FUNCTION_DECL)
1914 TREE_PUBLIC (newdecl) &= TREE_PUBLIC (olddecl);
1915 /* This is since we don't automatically
1916 copy the attributes of NEWDECL into OLDDECL. */
1917 /* No need to worry about different_binding_level here because
1918 then TREE_PUBLIC (newdecl) was true. */
1919 TREE_PUBLIC (olddecl) = TREE_PUBLIC (newdecl);
1920 /* If this clears `static', clear it in the identifier too. */
1921 if (! TREE_PUBLIC (olddecl))
1922 TREE_PUBLIC (DECL_NAME (olddecl)) = 0;
1924 if (DECL_EXTERNAL (newdecl))
1926 TREE_STATIC (newdecl) = TREE_STATIC (olddecl);
1927 DECL_EXTERNAL (newdecl) = DECL_EXTERNAL (olddecl);
1928 /* An extern decl does not override previous storage class. */
1929 TREE_PUBLIC (newdecl) = TREE_PUBLIC (olddecl);
1930 if (! DECL_EXTERNAL (newdecl))
1931 DECL_CONTEXT (newdecl) = DECL_CONTEXT (olddecl);
1933 else
1935 TREE_STATIC (olddecl) = TREE_STATIC (newdecl);
1936 TREE_PUBLIC (olddecl) = TREE_PUBLIC (newdecl);
1939 /* If either decl says `inline', this fn is inline,
1940 unless its definition was passed already. */
1941 if (DECL_INLINE (newdecl) && DECL_INITIAL (olddecl) == 0)
1942 DECL_INLINE (olddecl) = 1;
1943 DECL_INLINE (newdecl) = DECL_INLINE (olddecl);
1945 if (TREE_CODE (newdecl) == FUNCTION_DECL)
1947 if (DECL_BUILT_IN (olddecl))
1949 /* Get rid of any built-in function if new arg types don't match it
1950 or if we have a function definition. */
1951 if (! types_match || new_is_definition)
1953 if (! different_binding_level)
1955 TREE_TYPE (olddecl) = TREE_TYPE (newdecl);
1956 DECL_BUILT_IN (olddecl) = 0;
1959 else
1961 /* If redeclaring a builtin function, and not a definition,
1962 it stays built in. */
1963 DECL_BUILT_IN (newdecl) = 1;
1964 DECL_FUNCTION_CODE (newdecl) = DECL_FUNCTION_CODE (olddecl);
1967 /* Also preserve various other info from the definition. */
1968 else if (! new_is_definition)
1969 DECL_FRAME_SIZE (newdecl) = DECL_FRAME_SIZE (olddecl);
1970 if (! new_is_definition)
1972 DECL_RESULT (newdecl) = DECL_RESULT (olddecl);
1973 /* When called with different_binding_level set, don't copy over
1974 DECL_INITIAL, so that we don't accidentally change function
1975 declarations into function definitions. */
1976 if (! different_binding_level)
1977 DECL_INITIAL (newdecl) = DECL_INITIAL (olddecl);
1978 DECL_SAVED_INSNS (newdecl) = DECL_SAVED_INSNS (olddecl);
1979 DECL_ARGUMENTS (newdecl) = DECL_ARGUMENTS (olddecl);
1980 if (DECL_INLINE (newdecl))
1981 DECL_ABSTRACT_ORIGIN (newdecl) = olddecl;
1984 if (different_binding_level)
1986 /* Don't output a duplicate symbol or debugging information for this
1987 declaration. */
1988 TREE_ASM_WRITTEN (newdecl) = DECL_IGNORED_P (newdecl) = 1;
1989 return 0;
1992 /* Copy most of the decl-specific fields of NEWDECL into OLDDECL.
1993 But preserve OLDDECL's DECL_UID. */
1995 register unsigned olddecl_uid = DECL_UID (olddecl);
1997 bcopy ((char *) newdecl + sizeof (struct tree_common),
1998 (char *) olddecl + sizeof (struct tree_common),
1999 sizeof (struct tree_decl) - sizeof (struct tree_common));
2000 DECL_UID (olddecl) = olddecl_uid;
2003 /* NEWDECL contains the merged attribute lists.
2004 Update OLDDECL to be the same. */
2005 DECL_MACHINE_ATTRIBUTES (olddecl) = DECL_MACHINE_ATTRIBUTES (newdecl);
2007 return 1;
2010 /* Record a decl-node X as belonging to the current lexical scope.
2011 Check for errors (such as an incompatible declaration for the same
2012 name already seen in the same scope).
2014 Returns either X or an old decl for the same name.
2015 If an old decl is returned, it may have been smashed
2016 to agree with what X says. */
2018 tree
2019 pushdecl (x)
2020 tree x;
2022 register tree t;
2023 register tree name = DECL_NAME (x);
2024 register struct binding_level *b = current_binding_level;
2026 DECL_CONTEXT (x) = current_function_decl;
2027 /* A local extern declaration for a function doesn't constitute nesting.
2028 A local auto declaration does, since it's a forward decl
2029 for a nested function coming later. */
2030 if (TREE_CODE (x) == FUNCTION_DECL && DECL_INITIAL (x) == 0
2031 && DECL_EXTERNAL (x))
2032 DECL_CONTEXT (x) = 0;
2034 if (warn_nested_externs && DECL_EXTERNAL (x) && b != global_binding_level
2035 && x != IDENTIFIER_IMPLICIT_DECL (name)
2036 /* Don't print error messages for __FUNCTION__ and __PRETTY_FUNCTION__ */
2037 && !DECL_IN_SYSTEM_HEADER (x))
2038 warning ("nested extern declaration of `%s'", IDENTIFIER_POINTER (name));
2040 if (name)
2042 char *file;
2043 int line;
2044 int different_binding_level = 0;
2046 t = lookup_name_current_level (name);
2047 /* Don't type check externs here when -traditional. This is so that
2048 code with conflicting declarations inside blocks will get warnings
2049 not errors. X11 for instance depends on this. */
2050 if (! t && DECL_EXTERNAL (x) && TREE_PUBLIC (x) && ! flag_traditional)
2052 t = IDENTIFIER_GLOBAL_VALUE (name);
2053 /* Type decls at global scope don't conflict with externs declared
2054 inside lexical blocks. */
2055 if (t && TREE_CODE (t) == TYPE_DECL)
2056 t = 0;
2057 different_binding_level = 1;
2059 if (t != 0 && t == error_mark_node)
2060 /* error_mark_node is 0 for a while during initialization! */
2062 t = 0;
2063 error_with_decl (x, "`%s' used prior to declaration");
2066 if (t != 0)
2068 file = DECL_SOURCE_FILE (t);
2069 line = DECL_SOURCE_LINE (t);
2072 /* If this decl is `static' and an implicit decl was seen previously,
2073 warn. But don't complain if -traditional,
2074 since traditional compilers don't complain. */
2075 if (! flag_traditional && TREE_PUBLIC (name)
2076 /* Don't test for DECL_EXTERNAL, because grokdeclarator
2077 sets this for all functions. */
2078 && ! TREE_PUBLIC (x)
2079 && (TREE_CODE (x) == FUNCTION_DECL || b == global_binding_level)
2080 /* We used to warn also for explicit extern followed by static,
2081 but sometimes you need to do it that way. */
2082 && IDENTIFIER_IMPLICIT_DECL (name) != 0)
2084 pedwarn ("`%s' was declared implicitly `extern' and later `static'",
2085 IDENTIFIER_POINTER (name));
2086 pedwarn_with_file_and_line
2087 (DECL_SOURCE_FILE (IDENTIFIER_IMPLICIT_DECL (name)),
2088 DECL_SOURCE_LINE (IDENTIFIER_IMPLICIT_DECL (name)),
2089 "previous declaration of `%s'",
2090 IDENTIFIER_POINTER (name));
2093 if (t != 0 && duplicate_decls (x, t, different_binding_level))
2095 if (TREE_CODE (t) == PARM_DECL)
2097 /* Don't allow more than one "real" duplicate
2098 of a forward parm decl. */
2099 TREE_ASM_WRITTEN (t) = TREE_ASM_WRITTEN (x);
2100 return t;
2102 return t;
2105 /* If we are processing a typedef statement, generate a whole new
2106 ..._TYPE node (which will be just an variant of the existing
2107 ..._TYPE node with identical properties) and then install the
2108 TYPE_DECL node generated to represent the typedef name as the
2109 TYPE_NAME of this brand new (duplicate) ..._TYPE node.
2111 The whole point here is to end up with a situation where each
2112 and every ..._TYPE node the compiler creates will be uniquely
2113 associated with AT MOST one node representing a typedef name.
2114 This way, even though the compiler substitutes corresponding
2115 ..._TYPE nodes for TYPE_DECL (i.e. "typedef name") nodes very
2116 early on, later parts of the compiler can always do the reverse
2117 translation and get back the corresponding typedef name. For
2118 example, given:
2120 typedef struct S MY_TYPE;
2121 MY_TYPE object;
2123 Later parts of the compiler might only know that `object' was of
2124 type `struct S' if if were not for code just below. With this
2125 code however, later parts of the compiler see something like:
2127 struct S' == struct S
2128 typedef struct S' MY_TYPE;
2129 struct S' object;
2131 And they can then deduce (from the node for type struct S') that
2132 the original object declaration was:
2134 MY_TYPE object;
2136 Being able to do this is important for proper support of protoize,
2137 and also for generating precise symbolic debugging information
2138 which takes full account of the programmer's (typedef) vocabulary.
2140 Obviously, we don't want to generate a duplicate ..._TYPE node if
2141 the TYPE_DECL node that we are now processing really represents a
2142 standard built-in type.
2144 Since all standard types are effectively declared at line zero
2145 in the source file, we can easily check to see if we are working
2146 on a standard type by checking the current value of lineno. */
2148 if (TREE_CODE (x) == TYPE_DECL)
2150 if (DECL_SOURCE_LINE (x) == 0)
2152 if (TYPE_NAME (TREE_TYPE (x)) == 0)
2153 TYPE_NAME (TREE_TYPE (x)) = x;
2155 else if (TREE_TYPE (x) != error_mark_node
2156 && DECL_ORIGINAL_TYPE (x) == NULL_TREE)
2158 tree tt = TREE_TYPE (x);
2159 DECL_ORIGINAL_TYPE (x) = tt;
2160 tt = build_type_copy (tt);
2161 TYPE_NAME (tt) = x;
2162 TREE_TYPE (x) = tt;
2166 /* Multiple external decls of the same identifier ought to match.
2167 Check against both global declarations (when traditional) and out of
2168 scope (limbo) block level declarations.
2170 We get warnings about inline functions where they are defined.
2171 Avoid duplicate warnings where they are used. */
2172 if (TREE_PUBLIC (x) && ! DECL_INLINE (x))
2174 tree decl;
2176 if (flag_traditional && IDENTIFIER_GLOBAL_VALUE (name) != 0
2177 && (DECL_EXTERNAL (IDENTIFIER_GLOBAL_VALUE (name))
2178 || TREE_PUBLIC (IDENTIFIER_GLOBAL_VALUE (name))))
2179 decl = IDENTIFIER_GLOBAL_VALUE (name);
2180 else if (IDENTIFIER_LIMBO_VALUE (name) != 0)
2181 /* Decls in limbo are always extern, so no need to check that. */
2182 decl = IDENTIFIER_LIMBO_VALUE (name);
2183 else
2184 decl = 0;
2186 if (decl && ! comptypes (TREE_TYPE (x), TREE_TYPE (decl))
2187 /* If old decl is built-in, we already warned if we should. */
2188 && !DECL_BUILT_IN (decl))
2190 pedwarn_with_decl (x,
2191 "type mismatch with previous external decl");
2192 pedwarn_with_decl (decl, "previous external decl of `%s'");
2196 /* If a function has had an implicit declaration, and then is defined,
2197 make sure they are compatible. */
2199 if (IDENTIFIER_IMPLICIT_DECL (name) != 0
2200 && IDENTIFIER_GLOBAL_VALUE (name) == 0
2201 && TREE_CODE (x) == FUNCTION_DECL
2202 && ! comptypes (TREE_TYPE (x),
2203 TREE_TYPE (IDENTIFIER_IMPLICIT_DECL (name))))
2205 warning_with_decl (x, "type mismatch with previous implicit declaration");
2206 warning_with_decl (IDENTIFIER_IMPLICIT_DECL (name),
2207 "previous implicit declaration of `%s'");
2210 /* In PCC-compatibility mode, extern decls of vars with no current decl
2211 take effect at top level no matter where they are. */
2212 if (flag_traditional && DECL_EXTERNAL (x)
2213 && lookup_name (name) == 0)
2215 tree type = TREE_TYPE (x);
2217 /* But don't do this if the type contains temporary nodes. */
2218 while (type)
2220 if (type == error_mark_node)
2221 break;
2222 if (! TREE_PERMANENT (type))
2224 warning_with_decl (x, "type of external `%s' is not global");
2225 /* By exiting the loop early, we leave TYPE nonzero,
2226 and thus prevent globalization of the decl. */
2227 break;
2229 else if (TREE_CODE (type) == FUNCTION_TYPE
2230 && TYPE_ARG_TYPES (type) != 0)
2231 /* The types might not be truly local,
2232 but the list of arg types certainly is temporary.
2233 Since prototypes are nontraditional,
2234 ok not to do the traditional thing. */
2235 break;
2236 type = TREE_TYPE (type);
2239 if (type == 0)
2240 b = global_binding_level;
2243 /* This name is new in its binding level.
2244 Install the new declaration and return it. */
2245 if (b == global_binding_level)
2247 /* Install a global value. */
2249 /* If the first global decl has external linkage,
2250 warn if we later see static one. */
2251 if (IDENTIFIER_GLOBAL_VALUE (name) == 0 && TREE_PUBLIC (x))
2252 TREE_PUBLIC (name) = 1;
2254 IDENTIFIER_GLOBAL_VALUE (name) = x;
2256 /* We no longer care about any previous block level declarations. */
2257 IDENTIFIER_LIMBO_VALUE (name) = 0;
2259 /* Don't forget if the function was used via an implicit decl. */
2260 if (IDENTIFIER_IMPLICIT_DECL (name)
2261 && TREE_USED (IDENTIFIER_IMPLICIT_DECL (name)))
2262 TREE_USED (x) = 1, TREE_USED (name) = 1;
2264 /* Don't forget if its address was taken in that way. */
2265 if (IDENTIFIER_IMPLICIT_DECL (name)
2266 && TREE_ADDRESSABLE (IDENTIFIER_IMPLICIT_DECL (name)))
2267 TREE_ADDRESSABLE (x) = 1;
2269 /* Warn about mismatches against previous implicit decl. */
2270 if (IDENTIFIER_IMPLICIT_DECL (name) != 0
2271 /* If this real decl matches the implicit, don't complain. */
2272 && ! (TREE_CODE (x) == FUNCTION_DECL
2273 && (TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (x)))
2274 == integer_type_node)))
2275 pedwarn ("`%s' was previously implicitly declared to return `int'",
2276 IDENTIFIER_POINTER (name));
2278 /* If this decl is `static' and an `extern' was seen previously,
2279 that is erroneous. */
2280 if (TREE_PUBLIC (name)
2281 && ! TREE_PUBLIC (x) && ! DECL_EXTERNAL (x))
2283 /* Okay to redeclare an ANSI built-in as static. */
2284 if (t != 0 && DECL_BUILT_IN (t))
2286 /* Okay to declare a non-ANSI built-in as anything. */
2287 else if (t != 0 && DECL_BUILT_IN_NONANSI (t))
2289 /* Okay to have global type decl after an earlier extern
2290 declaration inside a lexical block. */
2291 else if (TREE_CODE (x) == TYPE_DECL)
2293 else if (IDENTIFIER_IMPLICIT_DECL (name))
2294 pedwarn ("`%s' was declared implicitly `extern' and later `static'",
2295 IDENTIFIER_POINTER (name));
2296 else
2297 pedwarn ("`%s' was declared `extern' and later `static'",
2298 IDENTIFIER_POINTER (name));
2301 else
2303 /* Here to install a non-global value. */
2304 tree oldlocal = IDENTIFIER_LOCAL_VALUE (name);
2305 tree oldglobal = IDENTIFIER_GLOBAL_VALUE (name);
2306 IDENTIFIER_LOCAL_VALUE (name) = x;
2308 /* If this is an extern function declaration, see if we
2309 have a global definition or declaration for the function. */
2310 if (oldlocal == 0
2311 && DECL_EXTERNAL (x) && !DECL_INLINE (x)
2312 && oldglobal != 0
2313 && TREE_CODE (x) == FUNCTION_DECL
2314 && TREE_CODE (oldglobal) == FUNCTION_DECL)
2316 /* We have one. Their types must agree. */
2317 if (! comptypes (TREE_TYPE (x),
2318 TREE_TYPE (IDENTIFIER_GLOBAL_VALUE (name))))
2319 pedwarn_with_decl (x, "extern declaration of `%s' doesn't match global one");
2320 else
2322 /* Inner extern decl is inline if global one is.
2323 Copy enough to really inline it. */
2324 if (DECL_INLINE (oldglobal))
2326 DECL_INLINE (x) = DECL_INLINE (oldglobal);
2327 DECL_INITIAL (x) = (current_function_decl == oldglobal
2328 ? 0 : DECL_INITIAL (oldglobal));
2329 DECL_SAVED_INSNS (x) = DECL_SAVED_INSNS (oldglobal);
2330 DECL_FRAME_SIZE (x) = DECL_FRAME_SIZE (oldglobal);
2331 DECL_ARGUMENTS (x) = DECL_ARGUMENTS (oldglobal);
2332 DECL_RESULT (x) = DECL_RESULT (oldglobal);
2333 TREE_ASM_WRITTEN (x) = TREE_ASM_WRITTEN (oldglobal);
2334 DECL_ABSTRACT_ORIGIN (x) = oldglobal;
2336 /* Inner extern decl is built-in if global one is. */
2337 if (DECL_BUILT_IN (oldglobal))
2339 DECL_BUILT_IN (x) = DECL_BUILT_IN (oldglobal);
2340 DECL_FUNCTION_CODE (x) = DECL_FUNCTION_CODE (oldglobal);
2342 /* Keep the arg types from a file-scope fcn defn. */
2343 if (TYPE_ARG_TYPES (TREE_TYPE (oldglobal)) != 0
2344 && DECL_INITIAL (oldglobal)
2345 && TYPE_ARG_TYPES (TREE_TYPE (x)) == 0)
2346 TREE_TYPE (x) = TREE_TYPE (oldglobal);
2350 #if 0 /* This case is probably sometimes the right thing to do. */
2351 /* If we have a local external declaration,
2352 then any file-scope declaration should not
2353 have been static. */
2354 if (oldlocal == 0 && oldglobal != 0
2355 && !TREE_PUBLIC (oldglobal)
2356 && DECL_EXTERNAL (x) && TREE_PUBLIC (x))
2357 warning ("`%s' locally external but globally static",
2358 IDENTIFIER_POINTER (name));
2359 #endif
2361 /* If we have a local external declaration,
2362 and no file-scope declaration has yet been seen,
2363 then if we later have a file-scope decl it must not be static. */
2364 if (oldlocal == 0
2365 && DECL_EXTERNAL (x)
2366 && TREE_PUBLIC (x))
2368 if (oldglobal == 0)
2369 TREE_PUBLIC (name) = 1;
2371 /* Save this decl, so that we can do type checking against
2372 other decls after it falls out of scope.
2374 Only save it once. This prevents temporary decls created in
2375 expand_inline_function from being used here, since this
2376 will have been set when the inline function was parsed.
2377 It also helps give slightly better warnings. */
2378 if (IDENTIFIER_LIMBO_VALUE (name) == 0)
2379 IDENTIFIER_LIMBO_VALUE (name) = x;
2382 /* Warn if shadowing an argument at the top level of the body. */
2383 if (oldlocal != 0 && !DECL_EXTERNAL (x)
2384 /* This warning doesn't apply to the parms of a nested fcn. */
2385 && ! current_binding_level->parm_flag
2386 /* Check that this is one level down from the parms. */
2387 && current_binding_level->level_chain->parm_flag
2388 /* Check that the decl being shadowed
2389 comes from the parm level, one level up. */
2390 && chain_member (oldlocal, current_binding_level->level_chain->names))
2392 if (TREE_CODE (oldlocal) == PARM_DECL)
2393 pedwarn ("declaration of `%s' shadows a parameter",
2394 IDENTIFIER_POINTER (name));
2395 else
2396 pedwarn ("declaration of `%s' shadows a symbol from the parameter list",
2397 IDENTIFIER_POINTER (name));
2400 /* Maybe warn if shadowing something else. */
2401 else if (warn_shadow && !DECL_EXTERNAL (x)
2402 /* No shadow warnings for internally generated vars. */
2403 && DECL_SOURCE_LINE (x) != 0
2404 /* No shadow warnings for vars made for inlining. */
2405 && ! DECL_FROM_INLINE (x))
2407 char *warnstring = 0;
2409 if (TREE_CODE (x) == PARM_DECL
2410 && current_binding_level->level_chain->parm_flag)
2411 /* Don't warn about the parm names in function declarator
2412 within a function declarator.
2413 It would be nice to avoid warning in any function
2414 declarator in a declaration, as opposed to a definition,
2415 but there is no way to tell it's not a definition. */
2417 else if (oldlocal != 0 && TREE_CODE (oldlocal) == PARM_DECL)
2418 warnstring = "declaration of `%s' shadows a parameter";
2419 else if (oldlocal != 0)
2420 warnstring = "declaration of `%s' shadows previous local";
2421 else if (IDENTIFIER_GLOBAL_VALUE (name) != 0
2422 && IDENTIFIER_GLOBAL_VALUE (name) != error_mark_node)
2423 warnstring = "declaration of `%s' shadows global declaration";
2425 if (warnstring)
2426 warning (warnstring, IDENTIFIER_POINTER (name));
2429 /* If storing a local value, there may already be one (inherited).
2430 If so, record it for restoration when this binding level ends. */
2431 if (oldlocal != 0)
2432 b->shadowed = tree_cons (name, oldlocal, b->shadowed);
2435 /* Keep count of variables in this level with incomplete type. */
2436 if (TYPE_SIZE (TREE_TYPE (x)) == 0)
2437 ++b->n_incomplete;
2440 /* Put decls on list in reverse order.
2441 We will reverse them later if necessary. */
2442 TREE_CHAIN (x) = b->names;
2443 b->names = x;
2445 return x;
2448 /* Like pushdecl, only it places X in GLOBAL_BINDING_LEVEL, if appropriate. */
2450 tree
2451 pushdecl_top_level (x)
2452 tree x;
2454 register tree t;
2455 register struct binding_level *b = current_binding_level;
2457 current_binding_level = global_binding_level;
2458 t = pushdecl (x);
2459 current_binding_level = b;
2460 return t;
2463 /* Generate an implicit declaration for identifier FUNCTIONID
2464 as a function of type int (). Print a warning if appropriate. */
2466 tree
2467 implicitly_declare (functionid)
2468 tree functionid;
2470 register tree decl;
2471 int traditional_warning = 0;
2472 /* Only one "implicit declaration" warning per identifier. */
2473 int implicit_warning;
2475 /* Save the decl permanently so we can warn if definition follows. */
2476 push_obstacks_nochange ();
2477 end_temporary_allocation ();
2479 /* We used to reuse an old implicit decl here,
2480 but this loses with inline functions because it can clobber
2481 the saved decl chains. */
2482 /* if (IDENTIFIER_IMPLICIT_DECL (functionid) != 0)
2483 decl = IDENTIFIER_IMPLICIT_DECL (functionid);
2484 else */
2485 decl = build_decl (FUNCTION_DECL, functionid, default_function_type);
2487 /* Warn of implicit decl following explicit local extern decl.
2488 This is probably a program designed for traditional C. */
2489 if (TREE_PUBLIC (functionid) && IDENTIFIER_GLOBAL_VALUE (functionid) == 0)
2490 traditional_warning = 1;
2492 /* Warn once of an implicit declaration. */
2493 implicit_warning = (IDENTIFIER_IMPLICIT_DECL (functionid) == 0);
2495 DECL_EXTERNAL (decl) = 1;
2496 TREE_PUBLIC (decl) = 1;
2498 /* Record that we have an implicit decl and this is it. */
2499 IDENTIFIER_IMPLICIT_DECL (functionid) = decl;
2501 /* ANSI standard says implicit declarations are in the innermost block.
2502 So we record the decl in the standard fashion.
2503 If flag_traditional is set, pushdecl does it top-level. */
2504 pushdecl (decl);
2506 /* This is a no-op in c-lang.c or something real in objc-actions.c. */
2507 maybe_objc_check_decl (decl);
2509 rest_of_decl_compilation (decl, NULL_PTR, 0, 0);
2511 if (mesg_implicit_function_declaration && implicit_warning)
2513 if (mesg_implicit_function_declaration == 2)
2514 error ("implicit declaration of function `%s'",
2515 IDENTIFIER_POINTER (functionid));
2516 else
2517 warning ("implicit declaration of function `%s'",
2518 IDENTIFIER_POINTER (functionid));
2520 else if (warn_traditional && traditional_warning)
2521 warning ("function `%s' was previously declared within a block",
2522 IDENTIFIER_POINTER (functionid));
2524 /* Write a record describing this implicit function declaration to the
2525 prototypes file (if requested). */
2527 gen_aux_info_record (decl, 0, 1, 0);
2529 pop_obstacks ();
2531 return decl;
2534 /* Return zero if the declaration NEWDECL is valid
2535 when the declaration OLDDECL (assumed to be for the same name)
2536 has already been seen.
2537 Otherwise return an error message format string with a %s
2538 where the identifier should go. */
2540 static char *
2541 redeclaration_error_message (newdecl, olddecl)
2542 tree newdecl, olddecl;
2544 if (TREE_CODE (newdecl) == TYPE_DECL)
2546 if (flag_traditional && TREE_TYPE (newdecl) == TREE_TYPE (olddecl))
2547 return 0;
2548 /* pushdecl creates distinct types for TYPE_DECLs by calling
2549 build_type_copy, so the above comparison generally fails. We do
2550 another test against the TYPE_MAIN_VARIANT of the olddecl, which
2551 is equivalent to what this code used to do before the build_type_copy
2552 call. The variant type distinction should not matter for traditional
2553 code, because it doesn't have type qualifiers. */
2554 if (flag_traditional
2555 && TYPE_MAIN_VARIANT (TREE_TYPE (olddecl)) == TREE_TYPE (newdecl))
2556 return 0;
2557 if (DECL_IN_SYSTEM_HEADER (olddecl) || DECL_IN_SYSTEM_HEADER (newdecl))
2558 return 0;
2559 return "redefinition of `%s'";
2561 else if (TREE_CODE (newdecl) == FUNCTION_DECL)
2563 /* Declarations of functions can insist on internal linkage
2564 but they can't be inconsistent with internal linkage,
2565 so there can be no error on that account.
2566 However defining the same name twice is no good. */
2567 if (DECL_INITIAL (olddecl) != 0 && DECL_INITIAL (newdecl) != 0
2568 /* However, defining once as extern inline and a second
2569 time in another way is ok. */
2570 && !(DECL_INLINE (olddecl) && DECL_EXTERNAL (olddecl)
2571 && !(DECL_INLINE (newdecl) && DECL_EXTERNAL (newdecl))))
2572 return "redefinition of `%s'";
2573 return 0;
2575 else if (current_binding_level == global_binding_level)
2577 /* Objects declared at top level: */
2578 /* If at least one is a reference, it's ok. */
2579 if (DECL_EXTERNAL (newdecl) || DECL_EXTERNAL (olddecl))
2580 return 0;
2581 /* Reject two definitions. */
2582 if (DECL_INITIAL (olddecl) != 0 && DECL_INITIAL (newdecl) != 0)
2583 return "redefinition of `%s'";
2584 /* Now we have two tentative defs, or one tentative and one real def. */
2585 /* Insist that the linkage match. */
2586 if (TREE_PUBLIC (olddecl) != TREE_PUBLIC (newdecl))
2587 return "conflicting declarations of `%s'";
2588 return 0;
2590 else if (current_binding_level->parm_flag
2591 && TREE_ASM_WRITTEN (olddecl) && !TREE_ASM_WRITTEN (newdecl))
2592 return 0;
2593 else
2595 /* Newdecl has block scope. If olddecl has block scope also, then
2596 reject two definitions, and reject a definition together with an
2597 external reference. Otherwise, it is OK, because newdecl must
2598 be an extern reference to olddecl. */
2599 if (!(DECL_EXTERNAL (newdecl) && DECL_EXTERNAL (olddecl))
2600 && DECL_CONTEXT (newdecl) == DECL_CONTEXT (olddecl))
2601 return "redeclaration of `%s'";
2602 return 0;
2606 /* Get the LABEL_DECL corresponding to identifier ID as a label.
2607 Create one if none exists so far for the current function.
2608 This function is called for both label definitions and label references. */
2610 tree
2611 lookup_label (id)
2612 tree id;
2614 register tree decl = IDENTIFIER_LABEL_VALUE (id);
2616 if (current_function_decl == 0)
2618 error ("label %s referenced outside of any function",
2619 IDENTIFIER_POINTER (id));
2620 return 0;
2623 /* Use a label already defined or ref'd with this name. */
2624 if (decl != 0)
2626 /* But not if it is inherited and wasn't declared to be inheritable. */
2627 if (DECL_CONTEXT (decl) != current_function_decl
2628 && ! C_DECLARED_LABEL_FLAG (decl))
2629 return shadow_label (id);
2630 return decl;
2633 decl = build_decl (LABEL_DECL, id, void_type_node);
2635 /* Make sure every label has an rtx. */
2636 label_rtx (decl);
2638 /* A label not explicitly declared must be local to where it's ref'd. */
2639 DECL_CONTEXT (decl) = current_function_decl;
2641 DECL_MODE (decl) = VOIDmode;
2643 /* Say where one reference is to the label,
2644 for the sake of the error if it is not defined. */
2645 DECL_SOURCE_LINE (decl) = lineno;
2646 DECL_SOURCE_FILE (decl) = input_filename;
2648 IDENTIFIER_LABEL_VALUE (id) = decl;
2650 named_labels = tree_cons (NULL_TREE, decl, named_labels);
2652 return decl;
2655 /* Make a label named NAME in the current function,
2656 shadowing silently any that may be inherited from containing functions
2657 or containing scopes.
2659 Note that valid use, if the label being shadowed
2660 comes from another scope in the same function,
2661 requires calling declare_nonlocal_label right away. */
2663 tree
2664 shadow_label (name)
2665 tree name;
2667 register tree decl = IDENTIFIER_LABEL_VALUE (name);
2669 if (decl != 0)
2671 register tree dup;
2673 /* Check to make sure that the label hasn't already been declared
2674 at this label scope */
2675 for (dup = named_labels; dup; dup = TREE_CHAIN (dup))
2676 if (TREE_VALUE (dup) == decl)
2678 error ("duplicate label declaration `%s'",
2679 IDENTIFIER_POINTER (name));
2680 error_with_decl (TREE_VALUE (dup),
2681 "this is a previous declaration");
2682 /* Just use the previous declaration. */
2683 return lookup_label (name);
2686 shadowed_labels = tree_cons (NULL_TREE, decl, shadowed_labels);
2687 IDENTIFIER_LABEL_VALUE (name) = decl = 0;
2690 return lookup_label (name);
2693 /* Define a label, specifying the location in the source file.
2694 Return the LABEL_DECL node for the label, if the definition is valid.
2695 Otherwise return 0. */
2697 tree
2698 define_label (filename, line, name)
2699 char *filename;
2700 int line;
2701 tree name;
2703 tree decl = lookup_label (name);
2705 /* If label with this name is known from an outer context, shadow it. */
2706 if (decl != 0 && DECL_CONTEXT (decl) != current_function_decl)
2708 shadowed_labels = tree_cons (NULL_TREE, decl, shadowed_labels);
2709 IDENTIFIER_LABEL_VALUE (name) = 0;
2710 decl = lookup_label (name);
2713 if (DECL_INITIAL (decl) != 0)
2715 error ("duplicate label `%s'", IDENTIFIER_POINTER (name));
2716 return 0;
2718 else
2720 /* Mark label as having been defined. */
2721 DECL_INITIAL (decl) = error_mark_node;
2722 /* Say where in the source. */
2723 DECL_SOURCE_FILE (decl) = filename;
2724 DECL_SOURCE_LINE (decl) = line;
2725 return decl;
2729 /* Return the list of declarations of the current level.
2730 Note that this list is in reverse order unless/until
2731 you nreverse it; and when you do nreverse it, you must
2732 store the result back using `storedecls' or you will lose. */
2734 tree
2735 getdecls ()
2737 return current_binding_level->names;
2740 /* Return the list of type-tags (for structs, etc) of the current level. */
2742 tree
2743 gettags ()
2745 return current_binding_level->tags;
2748 /* Store the list of declarations of the current level.
2749 This is done for the parameter declarations of a function being defined,
2750 after they are modified in the light of any missing parameters. */
2752 static void
2753 storedecls (decls)
2754 tree decls;
2756 current_binding_level->names = decls;
2759 /* Similarly, store the list of tags of the current level. */
2761 static void
2762 storetags (tags)
2763 tree tags;
2765 current_binding_level->tags = tags;
2768 /* Given NAME, an IDENTIFIER_NODE,
2769 return the structure (or union or enum) definition for that name.
2770 Searches binding levels from BINDING_LEVEL up to the global level.
2771 If THISLEVEL_ONLY is nonzero, searches only the specified context
2772 (but skips any tag-transparent contexts to find one that is
2773 meaningful for tags).
2774 CODE says which kind of type the caller wants;
2775 it is RECORD_TYPE or UNION_TYPE or ENUMERAL_TYPE.
2776 If the wrong kind of type is found, an error is reported. */
2778 static tree
2779 lookup_tag (code, name, binding_level, thislevel_only)
2780 enum tree_code code;
2781 struct binding_level *binding_level;
2782 tree name;
2783 int thislevel_only;
2785 register struct binding_level *level;
2787 for (level = binding_level; level; level = level->level_chain)
2789 register tree tail;
2790 for (tail = level->tags; tail; tail = TREE_CHAIN (tail))
2792 if (TREE_PURPOSE (tail) == name)
2794 if (TREE_CODE (TREE_VALUE (tail)) != code)
2796 /* Definition isn't the kind we were looking for. */
2797 pending_invalid_xref = name;
2798 pending_invalid_xref_file = input_filename;
2799 pending_invalid_xref_line = lineno;
2801 return TREE_VALUE (tail);
2804 if (thislevel_only && ! level->tag_transparent)
2805 return NULL_TREE;
2807 return NULL_TREE;
2810 /* Print an error message now
2811 for a recent invalid struct, union or enum cross reference.
2812 We don't print them immediately because they are not invalid
2813 when used in the `struct foo;' construct for shadowing. */
2815 void
2816 pending_xref_error ()
2818 if (pending_invalid_xref != 0)
2819 error_with_file_and_line (pending_invalid_xref_file,
2820 pending_invalid_xref_line,
2821 "`%s' defined as wrong kind of tag",
2822 IDENTIFIER_POINTER (pending_invalid_xref));
2823 pending_invalid_xref = 0;
2826 /* Given a type, find the tag that was defined for it and return the tag name.
2827 Otherwise return 0. */
2829 static tree
2830 lookup_tag_reverse (type)
2831 tree type;
2833 register struct binding_level *level;
2835 for (level = current_binding_level; level; level = level->level_chain)
2837 register tree tail;
2838 for (tail = level->tags; tail; tail = TREE_CHAIN (tail))
2840 if (TREE_VALUE (tail) == type)
2841 return TREE_PURPOSE (tail);
2844 return NULL_TREE;
2847 /* Look up NAME in the current binding level and its superiors
2848 in the namespace of variables, functions and typedefs.
2849 Return a ..._DECL node of some kind representing its definition,
2850 or return 0 if it is undefined. */
2852 tree
2853 lookup_name (name)
2854 tree name;
2856 register tree val;
2857 if (current_binding_level != global_binding_level
2858 && IDENTIFIER_LOCAL_VALUE (name))
2859 val = IDENTIFIER_LOCAL_VALUE (name);
2860 else
2861 val = IDENTIFIER_GLOBAL_VALUE (name);
2862 return val;
2865 /* Similar to `lookup_name' but look only at current binding level. */
2867 tree
2868 lookup_name_current_level (name)
2869 tree name;
2871 register tree t;
2873 if (current_binding_level == global_binding_level)
2874 return IDENTIFIER_GLOBAL_VALUE (name);
2876 if (IDENTIFIER_LOCAL_VALUE (name) == 0)
2877 return 0;
2879 for (t = current_binding_level->names; t; t = TREE_CHAIN (t))
2880 if (DECL_NAME (t) == name)
2881 break;
2883 return t;
2886 /* Create the predefined scalar types of C,
2887 and some nodes representing standard constants (0, 1, (void *) 0).
2888 Initialize the global binding level.
2889 Make definitions for built-in primitive functions. */
2891 void
2892 init_decl_processing ()
2894 register tree endlink;
2895 /* Either char* or void*. */
2896 tree traditional_ptr_type_node;
2897 /* Data types of memcpy and strlen. */
2898 tree memcpy_ftype, memset_ftype, strlen_ftype;
2899 tree void_ftype_any, ptr_ftype_void, ptr_ftype_ptr;
2900 int wchar_type_size;
2901 tree temp;
2902 tree array_domain_type;
2904 current_function_decl = NULL;
2905 named_labels = NULL;
2906 current_binding_level = NULL_BINDING_LEVEL;
2907 free_binding_level = NULL_BINDING_LEVEL;
2908 pushlevel (0); /* make the binding_level structure for global names */
2909 global_binding_level = current_binding_level;
2911 /* Define `int' and `char' first so that dbx will output them first. */
2913 integer_type_node = make_signed_type (INT_TYPE_SIZE);
2914 pushdecl (build_decl (TYPE_DECL, ridpointers[(int) RID_INT],
2915 integer_type_node));
2917 /* Define `char', which is like either `signed char' or `unsigned char'
2918 but not the same as either. */
2920 char_type_node
2921 = (flag_signed_char
2922 ? make_signed_type (CHAR_TYPE_SIZE)
2923 : make_unsigned_type (CHAR_TYPE_SIZE));
2924 pushdecl (build_decl (TYPE_DECL, get_identifier ("char"),
2925 char_type_node));
2927 long_integer_type_node = make_signed_type (LONG_TYPE_SIZE);
2928 pushdecl (build_decl (TYPE_DECL, get_identifier ("long int"),
2929 long_integer_type_node));
2931 unsigned_type_node = make_unsigned_type (INT_TYPE_SIZE);
2932 pushdecl (build_decl (TYPE_DECL, get_identifier ("unsigned int"),
2933 unsigned_type_node));
2935 long_unsigned_type_node = make_unsigned_type (LONG_TYPE_SIZE);
2936 pushdecl (build_decl (TYPE_DECL, get_identifier ("long unsigned int"),
2937 long_unsigned_type_node));
2939 long_long_integer_type_node = make_signed_type (LONG_LONG_TYPE_SIZE);
2940 pushdecl (build_decl (TYPE_DECL, get_identifier ("long long int"),
2941 long_long_integer_type_node));
2943 long_long_unsigned_type_node = make_unsigned_type (LONG_LONG_TYPE_SIZE);
2944 pushdecl (build_decl (TYPE_DECL, get_identifier ("long long unsigned int"),
2945 long_long_unsigned_type_node));
2947 short_integer_type_node = make_signed_type (SHORT_TYPE_SIZE);
2948 pushdecl (build_decl (TYPE_DECL, get_identifier ("short int"),
2949 short_integer_type_node));
2951 short_unsigned_type_node = make_unsigned_type (SHORT_TYPE_SIZE);
2952 pushdecl (build_decl (TYPE_DECL, get_identifier ("short unsigned int"),
2953 short_unsigned_type_node));
2955 /* `unsigned long' is the standard type for sizeof.
2956 Traditionally, use a signed type.
2957 Note that stddef.h uses `unsigned long',
2958 and this must agree, even if long and int are the same size. */
2959 set_sizetype
2960 (TREE_TYPE (IDENTIFIER_GLOBAL_VALUE (get_identifier (SIZE_TYPE))));
2961 if (flag_traditional && TREE_UNSIGNED (sizetype))
2962 set_sizetype (signed_type (sizetype));
2964 ptrdiff_type_node
2965 = TREE_TYPE (IDENTIFIER_GLOBAL_VALUE (get_identifier (PTRDIFF_TYPE)));
2967 error_mark_node = make_node (ERROR_MARK);
2968 TREE_TYPE (error_mark_node) = error_mark_node;
2970 /* Define both `signed char' and `unsigned char'. */
2971 signed_char_type_node = make_signed_type (CHAR_TYPE_SIZE);
2972 pushdecl (build_decl (TYPE_DECL, get_identifier ("signed char"),
2973 signed_char_type_node));
2975 unsigned_char_type_node = make_unsigned_type (CHAR_TYPE_SIZE);
2976 pushdecl (build_decl (TYPE_DECL, get_identifier ("unsigned char"),
2977 unsigned_char_type_node));
2979 intQI_type_node = make_signed_type (GET_MODE_BITSIZE (QImode));
2980 pushdecl (build_decl (TYPE_DECL, NULL_TREE, intQI_type_node));
2982 intHI_type_node = make_signed_type (GET_MODE_BITSIZE (HImode));
2983 pushdecl (build_decl (TYPE_DECL, NULL_TREE, intHI_type_node));
2985 intSI_type_node = make_signed_type (GET_MODE_BITSIZE (SImode));
2986 pushdecl (build_decl (TYPE_DECL, NULL_TREE, intSI_type_node));
2988 intDI_type_node = make_signed_type (GET_MODE_BITSIZE (DImode));
2989 pushdecl (build_decl (TYPE_DECL, NULL_TREE, intDI_type_node));
2991 intTI_type_node = make_signed_type (GET_MODE_BITSIZE (TImode));
2992 pushdecl (build_decl (TYPE_DECL, NULL_TREE, intDI_type_node));
2994 unsigned_intQI_type_node = make_unsigned_type (GET_MODE_BITSIZE (QImode));
2995 pushdecl (build_decl (TYPE_DECL, NULL_TREE, unsigned_intQI_type_node));
2997 unsigned_intHI_type_node = make_unsigned_type (GET_MODE_BITSIZE (HImode));
2998 pushdecl (build_decl (TYPE_DECL, NULL_TREE, unsigned_intHI_type_node));
3000 unsigned_intSI_type_node = make_unsigned_type (GET_MODE_BITSIZE (SImode));
3001 pushdecl (build_decl (TYPE_DECL, NULL_TREE, unsigned_intSI_type_node));
3003 unsigned_intDI_type_node = make_unsigned_type (GET_MODE_BITSIZE (DImode));
3004 pushdecl (build_decl (TYPE_DECL, NULL_TREE, unsigned_intDI_type_node));
3006 unsigned_intTI_type_node = make_unsigned_type (GET_MODE_BITSIZE (TImode));
3007 pushdecl (build_decl (TYPE_DECL, NULL_TREE, unsigned_intTI_type_node));
3009 float_type_node = make_node (REAL_TYPE);
3010 TYPE_PRECISION (float_type_node) = FLOAT_TYPE_SIZE;
3011 pushdecl (build_decl (TYPE_DECL, ridpointers[(int) RID_FLOAT],
3012 float_type_node));
3013 layout_type (float_type_node);
3015 double_type_node = make_node (REAL_TYPE);
3016 if (flag_short_double)
3017 TYPE_PRECISION (double_type_node) = FLOAT_TYPE_SIZE;
3018 else
3019 TYPE_PRECISION (double_type_node) = DOUBLE_TYPE_SIZE;
3020 pushdecl (build_decl (TYPE_DECL, ridpointers[(int) RID_DOUBLE],
3021 double_type_node));
3022 layout_type (double_type_node);
3024 long_double_type_node = make_node (REAL_TYPE);
3025 TYPE_PRECISION (long_double_type_node) = LONG_DOUBLE_TYPE_SIZE;
3026 pushdecl (build_decl (TYPE_DECL, get_identifier ("long double"),
3027 long_double_type_node));
3028 layout_type (long_double_type_node);
3030 complex_integer_type_node = make_node (COMPLEX_TYPE);
3031 pushdecl (build_decl (TYPE_DECL, get_identifier ("complex int"),
3032 complex_integer_type_node));
3033 TREE_TYPE (complex_integer_type_node) = integer_type_node;
3034 layout_type (complex_integer_type_node);
3036 complex_float_type_node = make_node (COMPLEX_TYPE);
3037 pushdecl (build_decl (TYPE_DECL, get_identifier ("complex float"),
3038 complex_float_type_node));
3039 TREE_TYPE (complex_float_type_node) = float_type_node;
3040 layout_type (complex_float_type_node);
3042 complex_double_type_node = make_node (COMPLEX_TYPE);
3043 pushdecl (build_decl (TYPE_DECL, get_identifier ("complex double"),
3044 complex_double_type_node));
3045 TREE_TYPE (complex_double_type_node) = double_type_node;
3046 layout_type (complex_double_type_node);
3048 complex_long_double_type_node = make_node (COMPLEX_TYPE);
3049 pushdecl (build_decl (TYPE_DECL, get_identifier ("complex long double"),
3050 complex_long_double_type_node));
3051 TREE_TYPE (complex_long_double_type_node) = long_double_type_node;
3052 layout_type (complex_long_double_type_node);
3054 wchar_type_node
3055 = TREE_TYPE (IDENTIFIER_GLOBAL_VALUE (get_identifier (WCHAR_TYPE)));
3056 wchar_type_size = TYPE_PRECISION (wchar_type_node);
3057 signed_wchar_type_node = signed_type (wchar_type_node);
3058 unsigned_wchar_type_node = unsigned_type (wchar_type_node);
3060 integer_zero_node = build_int_2 (0, 0);
3061 TREE_TYPE (integer_zero_node) = integer_type_node;
3062 integer_one_node = build_int_2 (1, 0);
3063 TREE_TYPE (integer_one_node) = integer_type_node;
3065 boolean_type_node = integer_type_node;
3066 boolean_true_node = integer_one_node;
3067 boolean_false_node = integer_zero_node;
3069 size_zero_node = build_int_2 (0, 0);
3070 TREE_TYPE (size_zero_node) = sizetype;
3071 size_one_node = build_int_2 (1, 0);
3072 TREE_TYPE (size_one_node) = sizetype;
3074 void_type_node = make_node (VOID_TYPE);
3075 pushdecl (build_decl (TYPE_DECL,
3076 ridpointers[(int) RID_VOID], void_type_node));
3077 layout_type (void_type_node); /* Uses integer_zero_node */
3078 /* We are not going to have real types in C with less than byte alignment,
3079 so we might as well not have any types that claim to have it. */
3080 TYPE_ALIGN (void_type_node) = BITS_PER_UNIT;
3082 null_pointer_node = build_int_2 (0, 0);
3083 TREE_TYPE (null_pointer_node) = build_pointer_type (void_type_node);
3084 layout_type (TREE_TYPE (null_pointer_node));
3086 string_type_node = build_pointer_type (char_type_node);
3087 const_string_type_node
3088 = build_pointer_type (build_type_variant (char_type_node, 1, 0));
3090 /* Make a type to be the domain of a few array types
3091 whose domains don't really matter.
3092 200 is small enough that it always fits in size_t
3093 and large enough that it can hold most function names for the
3094 initializations of __FUNCTION__ and __PRETTY_FUNCTION__. */
3095 array_domain_type = build_index_type (build_int_2 (200, 0));
3097 /* make a type for arrays of characters.
3098 With luck nothing will ever really depend on the length of this
3099 array type. */
3100 char_array_type_node
3101 = build_array_type (char_type_node, array_domain_type);
3102 /* Likewise for arrays of ints. */
3103 int_array_type_node
3104 = build_array_type (integer_type_node, array_domain_type);
3105 /* This is for wide string constants. */
3106 wchar_array_type_node
3107 = build_array_type (wchar_type_node, array_domain_type);
3109 default_function_type
3110 = build_function_type (integer_type_node, NULL_TREE);
3112 ptr_type_node = build_pointer_type (void_type_node);
3113 const_ptr_type_node
3114 = build_pointer_type (build_type_variant (void_type_node, 1, 0));
3116 endlink = tree_cons (NULL_TREE, void_type_node, NULL_TREE);
3118 void_ftype_any
3119 = build_function_type (void_type_node, NULL_TREE);
3121 float_ftype_float
3122 = build_function_type (float_type_node,
3123 tree_cons (NULL_TREE, float_type_node, endlink));
3125 double_ftype_double
3126 = build_function_type (double_type_node,
3127 tree_cons (NULL_TREE, double_type_node, endlink));
3129 ldouble_ftype_ldouble
3130 = build_function_type (long_double_type_node,
3131 tree_cons (NULL_TREE, long_double_type_node,
3132 endlink));
3134 double_ftype_double_double
3135 = build_function_type (double_type_node,
3136 tree_cons (NULL_TREE, double_type_node,
3137 tree_cons (NULL_TREE,
3138 double_type_node, endlink)));
3140 int_ftype_int
3141 = build_function_type (integer_type_node,
3142 tree_cons (NULL_TREE, integer_type_node, endlink));
3144 long_ftype_long
3145 = build_function_type (long_integer_type_node,
3146 tree_cons (NULL_TREE,
3147 long_integer_type_node, endlink));
3149 void_ftype_ptr_ptr_int
3150 = build_function_type (void_type_node,
3151 tree_cons (NULL_TREE, ptr_type_node,
3152 tree_cons (NULL_TREE, ptr_type_node,
3153 tree_cons (NULL_TREE,
3154 integer_type_node,
3155 endlink))));
3157 int_ftype_cptr_cptr_sizet
3158 = build_function_type (integer_type_node,
3159 tree_cons (NULL_TREE, const_ptr_type_node,
3160 tree_cons (NULL_TREE, const_ptr_type_node,
3161 tree_cons (NULL_TREE,
3162 sizetype,
3163 endlink))));
3165 void_ftype_ptr_int_int
3166 = build_function_type (void_type_node,
3167 tree_cons (NULL_TREE, ptr_type_node,
3168 tree_cons (NULL_TREE, integer_type_node,
3169 tree_cons (NULL_TREE,
3170 integer_type_node,
3171 endlink))));
3173 string_ftype_ptr_ptr /* strcpy prototype */
3174 = build_function_type (string_type_node,
3175 tree_cons (NULL_TREE, string_type_node,
3176 tree_cons (NULL_TREE,
3177 const_string_type_node,
3178 endlink)));
3180 int_ftype_string_string /* strcmp prototype */
3181 = build_function_type (integer_type_node,
3182 tree_cons (NULL_TREE, const_string_type_node,
3183 tree_cons (NULL_TREE,
3184 const_string_type_node,
3185 endlink)));
3187 strlen_ftype /* strlen prototype */
3188 = build_function_type (flag_traditional ? integer_type_node : sizetype,
3189 tree_cons (NULL_TREE, const_string_type_node,
3190 endlink));
3192 traditional_ptr_type_node
3193 = (flag_traditional ? string_type_node : ptr_type_node);
3195 memcpy_ftype /* memcpy prototype */
3196 = build_function_type (traditional_ptr_type_node,
3197 tree_cons (NULL_TREE, ptr_type_node,
3198 tree_cons (NULL_TREE, const_ptr_type_node,
3199 tree_cons (NULL_TREE,
3200 sizetype,
3201 endlink))));
3203 memset_ftype /* memset prototype */
3204 = build_function_type (traditional_ptr_type_node,
3205 tree_cons (NULL_TREE, ptr_type_node,
3206 tree_cons (NULL_TREE, integer_type_node,
3207 tree_cons (NULL_TREE,
3208 sizetype,
3209 endlink))));
3211 ptr_ftype_void = build_function_type (ptr_type_node, endlink);
3212 ptr_ftype_ptr
3213 = build_function_type (ptr_type_node,
3214 tree_cons (NULL_TREE, ptr_type_node, endlink));
3216 builtin_function ("__builtin_constant_p", default_function_type,
3217 BUILT_IN_CONSTANT_P, NULL_PTR);
3219 builtin_function ("__builtin_return_address",
3220 build_function_type (ptr_type_node,
3221 tree_cons (NULL_TREE,
3222 unsigned_type_node,
3223 endlink)),
3224 BUILT_IN_RETURN_ADDRESS, NULL_PTR);
3226 builtin_function ("__builtin_frame_address",
3227 build_function_type (ptr_type_node,
3228 tree_cons (NULL_TREE,
3229 unsigned_type_node,
3230 endlink)),
3231 BUILT_IN_FRAME_ADDRESS, NULL_PTR);
3233 builtin_function ("__builtin_aggregate_incoming_address",
3234 build_function_type (ptr_type_node, NULL_TREE),
3235 BUILT_IN_AGGREGATE_INCOMING_ADDRESS, NULL_PTR);
3237 /* Hooks for the DWARF 2 __throw routine. */
3238 builtin_function ("__builtin_unwind_init",
3239 build_function_type (void_type_node, endlink),
3240 BUILT_IN_UNWIND_INIT, NULL_PTR);
3241 builtin_function ("__builtin_fp", ptr_ftype_void, BUILT_IN_FP, NULL_PTR);
3242 builtin_function ("__builtin_sp", ptr_ftype_void, BUILT_IN_SP, NULL_PTR);
3243 builtin_function ("__builtin_dwarf_fp_regnum",
3244 build_function_type (unsigned_type_node, endlink),
3245 BUILT_IN_DWARF_FP_REGNUM, NULL_PTR);
3246 builtin_function ("__builtin_dwarf_reg_size", int_ftype_int,
3247 BUILT_IN_DWARF_REG_SIZE, NULL_PTR);
3248 builtin_function ("__builtin_frob_return_addr", ptr_ftype_ptr,
3249 BUILT_IN_FROB_RETURN_ADDR, NULL_PTR);
3250 builtin_function ("__builtin_extract_return_addr", ptr_ftype_ptr,
3251 BUILT_IN_EXTRACT_RETURN_ADDR, NULL_PTR);
3252 builtin_function ("__builtin_set_return_addr_reg",
3253 build_function_type (void_type_node,
3254 tree_cons (NULL_TREE,
3255 ptr_type_node,
3256 endlink)),
3257 BUILT_IN_SET_RETURN_ADDR_REG, NULL_PTR);
3258 builtin_function ("__builtin_eh_stub", ptr_ftype_void,
3259 BUILT_IN_EH_STUB, NULL_PTR);
3260 builtin_function
3261 ("__builtin_set_eh_regs",
3262 build_function_type (void_type_node,
3263 tree_cons (NULL_TREE, ptr_type_node,
3264 tree_cons (NULL_TREE,
3265 type_for_mode (ptr_mode, 0),
3266 endlink))),
3267 BUILT_IN_SET_EH_REGS, NULL_PTR);
3269 builtin_function ("__builtin_alloca",
3270 build_function_type (ptr_type_node,
3271 tree_cons (NULL_TREE,
3272 sizetype,
3273 endlink)),
3274 BUILT_IN_ALLOCA, "alloca");
3275 builtin_function ("__builtin_ffs", int_ftype_int, BUILT_IN_FFS, NULL_PTR);
3276 /* Define alloca, ffs as builtins.
3277 Declare _exit just to mark it as volatile. */
3278 if (! flag_no_builtin && !flag_no_nonansi_builtin)
3280 temp = builtin_function ("alloca",
3281 build_function_type (ptr_type_node,
3282 tree_cons (NULL_TREE,
3283 sizetype,
3284 endlink)),
3285 BUILT_IN_ALLOCA, NULL_PTR);
3286 /* Suppress error if redefined as a non-function. */
3287 DECL_BUILT_IN_NONANSI (temp) = 1;
3288 temp = builtin_function ("ffs", int_ftype_int, BUILT_IN_FFS, NULL_PTR);
3289 /* Suppress error if redefined as a non-function. */
3290 DECL_BUILT_IN_NONANSI (temp) = 1;
3291 temp = builtin_function ("_exit", void_ftype_any, NOT_BUILT_IN,
3292 NULL_PTR);
3293 TREE_THIS_VOLATILE (temp) = 1;
3294 TREE_SIDE_EFFECTS (temp) = 1;
3295 /* Suppress error if redefined as a non-function. */
3296 DECL_BUILT_IN_NONANSI (temp) = 1;
3299 builtin_function ("__builtin_abs", int_ftype_int, BUILT_IN_ABS, NULL_PTR);
3300 builtin_function ("__builtin_fabsf", float_ftype_float, BUILT_IN_FABS,
3301 NULL_PTR);
3302 builtin_function ("__builtin_fabs", double_ftype_double, BUILT_IN_FABS,
3303 NULL_PTR);
3304 builtin_function ("__builtin_fabsl", ldouble_ftype_ldouble, BUILT_IN_FABS,
3305 NULL_PTR);
3306 builtin_function ("__builtin_labs", long_ftype_long, BUILT_IN_LABS,
3307 NULL_PTR);
3308 builtin_function ("__builtin_saveregs",
3309 build_function_type (ptr_type_node, NULL_TREE),
3310 BUILT_IN_SAVEREGS, NULL_PTR);
3311 /* EXPAND_BUILTIN_VARARGS is obsolete. */
3312 #if 0
3313 builtin_function ("__builtin_varargs",
3314 build_function_type (ptr_type_node,
3315 tree_cons (NULL_TREE,
3316 integer_type_node,
3317 endlink)),
3318 BUILT_IN_VARARGS, NULL_PTR);
3319 #endif
3320 builtin_function ("__builtin_classify_type", default_function_type,
3321 BUILT_IN_CLASSIFY_TYPE, NULL_PTR);
3322 builtin_function ("__builtin_next_arg",
3323 build_function_type (ptr_type_node, NULL_TREE),
3324 BUILT_IN_NEXT_ARG, NULL_PTR);
3325 builtin_function ("__builtin_args_info",
3326 build_function_type (integer_type_node,
3327 tree_cons (NULL_TREE,
3328 integer_type_node,
3329 endlink)),
3330 BUILT_IN_ARGS_INFO, NULL_PTR);
3332 /* Untyped call and return. */
3333 builtin_function ("__builtin_apply_args",
3334 build_function_type (ptr_type_node, NULL_TREE),
3335 BUILT_IN_APPLY_ARGS, NULL_PTR);
3337 temp = tree_cons (NULL_TREE,
3338 build_pointer_type (build_function_type (void_type_node,
3339 NULL_TREE)),
3340 tree_cons (NULL_TREE,
3341 ptr_type_node,
3342 tree_cons (NULL_TREE,
3343 sizetype,
3344 endlink)));
3345 builtin_function ("__builtin_apply",
3346 build_function_type (ptr_type_node, temp),
3347 BUILT_IN_APPLY, NULL_PTR);
3348 builtin_function ("__builtin_return",
3349 build_function_type (void_type_node,
3350 tree_cons (NULL_TREE,
3351 ptr_type_node,
3352 endlink)),
3353 BUILT_IN_RETURN, NULL_PTR);
3355 /* Currently under experimentation. */
3356 builtin_function ("__builtin_memcpy", memcpy_ftype,
3357 BUILT_IN_MEMCPY, "memcpy");
3358 builtin_function ("__builtin_memcmp", int_ftype_cptr_cptr_sizet,
3359 BUILT_IN_MEMCMP, "memcmp");
3360 builtin_function ("__builtin_memset", memset_ftype,
3361 BUILT_IN_MEMSET, "memset");
3362 builtin_function ("__builtin_strcmp", int_ftype_string_string,
3363 BUILT_IN_STRCMP, "strcmp");
3364 builtin_function ("__builtin_strcpy", string_ftype_ptr_ptr,
3365 BUILT_IN_STRCPY, "strcpy");
3366 builtin_function ("__builtin_strlen", strlen_ftype,
3367 BUILT_IN_STRLEN, "strlen");
3368 builtin_function ("__builtin_sqrtf", float_ftype_float,
3369 BUILT_IN_FSQRT, "sqrtf");
3370 builtin_function ("__builtin_fsqrt", double_ftype_double,
3371 BUILT_IN_FSQRT, "sqrt");
3372 builtin_function ("__builtin_sqrtl", ldouble_ftype_ldouble,
3373 BUILT_IN_FSQRT, "sqrtl");
3374 builtin_function ("__builtin_sinf", float_ftype_float,
3375 BUILT_IN_SIN, "sinf");
3376 builtin_function ("__builtin_sin", double_ftype_double,
3377 BUILT_IN_SIN, "sin");
3378 builtin_function ("__builtin_sinl", ldouble_ftype_ldouble,
3379 BUILT_IN_SIN, "sinl");
3380 builtin_function ("__builtin_cosf", float_ftype_float,
3381 BUILT_IN_COS, "cosf");
3382 builtin_function ("__builtin_cos", double_ftype_double,
3383 BUILT_IN_COS, "cos");
3384 builtin_function ("__builtin_cosl", ldouble_ftype_ldouble,
3385 BUILT_IN_COS, "cosl");
3386 builtin_function ("__builtin_setjmp",
3387 build_function_type (integer_type_node,
3388 tree_cons (NULL_TREE,
3389 ptr_type_node, endlink)),
3390 BUILT_IN_SETJMP, NULL_PTR);
3391 builtin_function ("__builtin_longjmp",
3392 build_function_type
3393 (void_type_node,
3394 tree_cons (NULL, ptr_type_node,
3395 tree_cons (NULL_TREE,
3396 integer_type_node,
3397 endlink))),
3398 BUILT_IN_LONGJMP, NULL_PTR);
3400 /* In an ANSI C program, it is okay to supply built-in meanings
3401 for these functions, since applications cannot validly use them
3402 with any other meaning.
3403 However, honor the -fno-builtin option. */
3404 if (!flag_no_builtin)
3406 builtin_function ("abs", int_ftype_int, BUILT_IN_ABS, NULL_PTR);
3407 builtin_function ("fabsf", float_ftype_float, BUILT_IN_FABS, NULL_PTR);
3408 builtin_function ("fabs", double_ftype_double, BUILT_IN_FABS, NULL_PTR);
3409 builtin_function ("fabsl", ldouble_ftype_ldouble, BUILT_IN_FABS,
3410 NULL_PTR);
3411 builtin_function ("labs", long_ftype_long, BUILT_IN_LABS, NULL_PTR);
3412 builtin_function ("memcpy", memcpy_ftype, BUILT_IN_MEMCPY, NULL_PTR);
3413 builtin_function ("memcmp", int_ftype_cptr_cptr_sizet, BUILT_IN_MEMCMP,
3414 NULL_PTR);
3415 builtin_function ("memset", memset_ftype, BUILT_IN_MEMSET, NULL_PTR);
3416 builtin_function ("strcmp", int_ftype_string_string, BUILT_IN_STRCMP,
3417 NULL_PTR);
3418 builtin_function ("strcpy", string_ftype_ptr_ptr, BUILT_IN_STRCPY,
3419 NULL_PTR);
3420 builtin_function ("strlen", strlen_ftype, BUILT_IN_STRLEN, NULL_PTR);
3421 builtin_function ("sqrtf", float_ftype_float, BUILT_IN_FSQRT, NULL_PTR);
3422 builtin_function ("sqrt", double_ftype_double, BUILT_IN_FSQRT, NULL_PTR);
3423 builtin_function ("sqrtl", ldouble_ftype_ldouble, BUILT_IN_FSQRT,
3424 NULL_PTR);
3425 builtin_function ("sinf", float_ftype_float, BUILT_IN_SIN, NULL_PTR);
3426 builtin_function ("sin", double_ftype_double, BUILT_IN_SIN, NULL_PTR);
3427 builtin_function ("sinl", ldouble_ftype_ldouble, BUILT_IN_SIN, NULL_PTR);
3428 builtin_function ("cosf", float_ftype_float, BUILT_IN_COS, NULL_PTR);
3429 builtin_function ("cos", double_ftype_double, BUILT_IN_COS, NULL_PTR);
3430 builtin_function ("cosl", ldouble_ftype_ldouble, BUILT_IN_COS, NULL_PTR);
3432 /* Declare these functions volatile
3433 to avoid spurious "control drops through" warnings. */
3434 /* Don't specify the argument types, to avoid errors
3435 from certain code which isn't valid in ANSI but which exists. */
3436 temp = builtin_function ("abort", void_ftype_any, NOT_BUILT_IN,
3437 NULL_PTR);
3438 TREE_THIS_VOLATILE (temp) = 1;
3439 TREE_SIDE_EFFECTS (temp) = 1;
3440 temp = builtin_function ("exit", void_ftype_any, NOT_BUILT_IN, NULL_PTR);
3441 TREE_THIS_VOLATILE (temp) = 1;
3442 TREE_SIDE_EFFECTS (temp) = 1;
3445 #if 0
3446 /* Support for these has not been written in either expand_builtin
3447 or build_function_call. */
3448 builtin_function ("__builtin_div", default_ftype, BUILT_IN_DIV, NULL_PTR);
3449 builtin_function ("__builtin_ldiv", default_ftype, BUILT_IN_LDIV, NULL_PTR);
3450 builtin_function ("__builtin_ffloor", double_ftype_double, BUILT_IN_FFLOOR,
3451 NULL_PTR);
3452 builtin_function ("__builtin_fceil", double_ftype_double, BUILT_IN_FCEIL,
3453 NULL_PTR);
3454 builtin_function ("__builtin_fmod", double_ftype_double_double,
3455 BUILT_IN_FMOD, NULL_PTR);
3456 builtin_function ("__builtin_frem", double_ftype_double_double,
3457 BUILT_IN_FREM, NULL_PTR);
3458 builtin_function ("__builtin_getexp", double_ftype_double, BUILT_IN_GETEXP,
3459 NULL_PTR);
3460 builtin_function ("__builtin_getman", double_ftype_double, BUILT_IN_GETMAN,
3461 NULL_PTR);
3462 #endif
3464 pedantic_lvalues = pedantic;
3466 /* Create the global bindings for __FUNCTION__ and __PRETTY_FUNCTION__. */
3467 declare_function_name ();
3469 start_identifier_warnings ();
3471 /* Prepare to check format strings against argument lists. */
3472 init_function_format_info ();
3474 init_iterators ();
3476 incomplete_decl_finalize_hook = finish_incomplete_decl;
3479 /* Return a definition for a builtin function named NAME and whose data type
3480 is TYPE. TYPE should be a function type with argument types.
3481 FUNCTION_CODE tells later passes how to compile calls to this function.
3482 See tree.h for its possible values.
3484 If LIBRARY_NAME is nonzero, use that for DECL_ASSEMBLER_NAME,
3485 the name to be called if we can't opencode the function. */
3487 tree
3488 builtin_function (name, type, function_code, library_name)
3489 char *name;
3490 tree type;
3491 enum built_in_function function_code;
3492 char *library_name;
3494 tree decl = build_decl (FUNCTION_DECL, get_identifier (name), type);
3495 DECL_EXTERNAL (decl) = 1;
3496 TREE_PUBLIC (decl) = 1;
3497 /* If -traditional, permit redefining a builtin function any way you like.
3498 (Though really, if the program redefines these functions,
3499 it probably won't work right unless compiled with -fno-builtin.) */
3500 if (flag_traditional && name[0] != '_')
3501 DECL_BUILT_IN_NONANSI (decl) = 1;
3502 if (library_name)
3503 DECL_ASSEMBLER_NAME (decl) = get_identifier (library_name);
3504 make_decl_rtl (decl, NULL_PTR, 1);
3505 pushdecl (decl);
3506 if (function_code != NOT_BUILT_IN)
3508 DECL_BUILT_IN (decl) = 1;
3509 DECL_FUNCTION_CODE (decl) = function_code;
3511 /* Warn if a function in the namespace for users
3512 is used without an occasion to consider it declared. */
3513 if (name[0] != '_' || name[1] != '_')
3514 C_DECL_ANTICIPATED (decl) = 1;
3516 return decl;
3519 /* Called when a declaration is seen that contains no names to declare.
3520 If its type is a reference to a structure, union or enum inherited
3521 from a containing scope, shadow that tag name for the current scope
3522 with a forward reference.
3523 If its type defines a new named structure or union
3524 or defines an enum, it is valid but we need not do anything here.
3525 Otherwise, it is an error. */
3527 void
3528 shadow_tag (declspecs)
3529 tree declspecs;
3531 shadow_tag_warned (declspecs, 0);
3534 void
3535 shadow_tag_warned (declspecs, warned)
3536 tree declspecs;
3537 int warned;
3538 /* 1 => we have done a pedwarn. 2 => we have done a warning, but
3539 no pedwarn. */
3541 int found_tag = 0;
3542 register tree link;
3543 tree specs, attrs;
3545 pending_invalid_xref = 0;
3547 /* Remove the attributes from declspecs, since they will confuse the
3548 following code. */
3549 split_specs_attrs (declspecs, &specs, &attrs);
3551 for (link = declspecs; link; link = TREE_CHAIN (link))
3553 register tree value = TREE_VALUE (link);
3554 register enum tree_code code = TREE_CODE (value);
3556 if (code == RECORD_TYPE || code == UNION_TYPE || code == ENUMERAL_TYPE)
3557 /* Used to test also that TYPE_SIZE (value) != 0.
3558 That caused warning for `struct foo;' at top level in the file. */
3560 register tree name = lookup_tag_reverse (value);
3561 register tree t;
3563 found_tag++;
3565 if (name == 0)
3567 if (warned != 1 && code != ENUMERAL_TYPE)
3568 /* Empty unnamed enum OK */
3570 pedwarn ("unnamed struct/union that defines no instances");
3571 warned = 1;
3574 else
3576 t = lookup_tag (code, name, current_binding_level, 1);
3578 if (t == 0)
3580 t = make_node (code);
3581 pushtag (name, t);
3585 else
3587 if (!warned && ! in_system_header)
3589 warning ("useless keyword or type name in empty declaration");
3590 warned = 2;
3595 if (found_tag > 1)
3596 error ("two types specified in one empty declaration");
3598 if (warned != 1)
3600 if (found_tag == 0)
3601 pedwarn ("empty declaration");
3605 /* Decode a "typename", such as "int **", returning a ..._TYPE node. */
3607 tree
3608 groktypename (typename)
3609 tree typename;
3611 if (TREE_CODE (typename) != TREE_LIST)
3612 return typename;
3613 return grokdeclarator (TREE_VALUE (typename),
3614 TREE_PURPOSE (typename),
3615 TYPENAME, 0);
3618 /* Return a PARM_DECL node for a given pair of specs and declarator. */
3620 tree
3621 groktypename_in_parm_context (typename)
3622 tree typename;
3624 if (TREE_CODE (typename) != TREE_LIST)
3625 return typename;
3626 return grokdeclarator (TREE_VALUE (typename),
3627 TREE_PURPOSE (typename),
3628 PARM, 0);
3631 /* Decode a declarator in an ordinary declaration or data definition.
3632 This is called as soon as the type information and variable name
3633 have been parsed, before parsing the initializer if any.
3634 Here we create the ..._DECL node, fill in its type,
3635 and put it on the list of decls for the current context.
3636 The ..._DECL node is returned as the value.
3638 Exception: for arrays where the length is not specified,
3639 the type is left null, to be filled in by `finish_decl'.
3641 Function definitions do not come here; they go to start_function
3642 instead. However, external and forward declarations of functions
3643 do go through here. Structure field declarations are done by
3644 grokfield and not through here. */
3646 /* Set this to zero to debug not using the temporary obstack
3647 to parse initializers. */
3648 int debug_temp_inits = 1;
3650 tree
3651 start_decl (declarator, declspecs, initialized, attributes, prefix_attributes)
3652 tree declarator, declspecs;
3653 int initialized;
3654 tree attributes, prefix_attributes;
3656 register tree decl = grokdeclarator (declarator, declspecs,
3657 NORMAL, initialized);
3658 register tree tem;
3659 int init_written = initialized;
3661 /* The corresponding pop_obstacks is in finish_decl. */
3662 push_obstacks_nochange ();
3664 if (warn_main && !strcmp (IDENTIFIER_POINTER (declarator), "main"))
3665 warning_with_decl (decl, "`%s' is usually a function");
3667 if (initialized)
3668 /* Is it valid for this decl to have an initializer at all?
3669 If not, set INITIALIZED to zero, which will indirectly
3670 tell `finish_decl' to ignore the initializer once it is parsed. */
3671 switch (TREE_CODE (decl))
3673 case TYPE_DECL:
3674 /* typedef foo = bar means give foo the same type as bar.
3675 We haven't parsed bar yet, so `finish_decl' will fix that up.
3676 Any other case of an initialization in a TYPE_DECL is an error. */
3677 if (pedantic || list_length (declspecs) > 1)
3679 error ("typedef `%s' is initialized",
3680 IDENTIFIER_POINTER (DECL_NAME (decl)));
3681 initialized = 0;
3683 break;
3685 case FUNCTION_DECL:
3686 error ("function `%s' is initialized like a variable",
3687 IDENTIFIER_POINTER (DECL_NAME (decl)));
3688 initialized = 0;
3689 break;
3691 case PARM_DECL:
3692 /* DECL_INITIAL in a PARM_DECL is really DECL_ARG_TYPE. */
3693 error ("parameter `%s' is initialized",
3694 IDENTIFIER_POINTER (DECL_NAME (decl)));
3695 initialized = 0;
3696 break;
3698 default:
3699 /* Don't allow initializations for incomplete types
3700 except for arrays which might be completed by the initialization. */
3701 if (TYPE_SIZE (TREE_TYPE (decl)) != 0)
3703 /* A complete type is ok if size is fixed. */
3705 if (TREE_CODE (TYPE_SIZE (TREE_TYPE (decl))) != INTEGER_CST
3706 || C_DECL_VARIABLE_SIZE (decl))
3708 error ("variable-sized object may not be initialized");
3709 initialized = 0;
3712 else if (TREE_CODE (TREE_TYPE (decl)) != ARRAY_TYPE)
3714 error ("variable `%s' has initializer but incomplete type",
3715 IDENTIFIER_POINTER (DECL_NAME (decl)));
3716 initialized = 0;
3718 else if (TYPE_SIZE (TREE_TYPE (TREE_TYPE (decl))) == 0)
3720 error ("elements of array `%s' have incomplete type",
3721 IDENTIFIER_POINTER (DECL_NAME (decl)));
3722 initialized = 0;
3726 if (initialized)
3728 #if 0 /* Seems redundant with grokdeclarator. */
3729 if (current_binding_level != global_binding_level
3730 && DECL_EXTERNAL (decl)
3731 && TREE_CODE (decl) != FUNCTION_DECL)
3732 warning ("declaration of `%s' has `extern' and is initialized",
3733 IDENTIFIER_POINTER (DECL_NAME (decl)));
3734 #endif
3735 DECL_EXTERNAL (decl) = 0;
3736 if (current_binding_level == global_binding_level)
3737 TREE_STATIC (decl) = 1;
3739 /* Tell `pushdecl' this is an initialized decl
3740 even though we don't yet have the initializer expression.
3741 Also tell `finish_decl' it may store the real initializer. */
3742 DECL_INITIAL (decl) = error_mark_node;
3745 /* If this is a function declaration, write a record describing it to the
3746 prototypes file (if requested). */
3748 if (TREE_CODE (decl) == FUNCTION_DECL)
3749 gen_aux_info_record (decl, 0, 0, TYPE_ARG_TYPES (TREE_TYPE (decl)) != 0);
3751 /* ANSI specifies that a tentative definition which is not merged with
3752 a non-tentative definition behaves exactly like a definition with an
3753 initializer equal to zero. (Section 3.7.2)
3754 -fno-common gives strict ANSI behavior. Usually you don't want it.
3755 This matters only for variables with external linkage. */
3756 if (! flag_no_common || ! TREE_PUBLIC (decl))
3757 DECL_COMMON (decl) = 1;
3759 /* Set attributes here so if duplicate decl, will have proper attributes. */
3760 decl_attributes (decl, attributes, prefix_attributes);
3762 /* Add this decl to the current binding level.
3763 TEM may equal DECL or it may be a previous decl of the same name. */
3764 tem = pushdecl (decl);
3766 /* For a local variable, define the RTL now. */
3767 if (current_binding_level != global_binding_level
3768 /* But not if this is a duplicate decl
3769 and we preserved the rtl from the previous one
3770 (which may or may not happen). */
3771 && DECL_RTL (tem) == 0)
3773 if (TYPE_SIZE (TREE_TYPE (tem)) != 0)
3774 expand_decl (tem);
3775 else if (TREE_CODE (TREE_TYPE (tem)) == ARRAY_TYPE
3776 && DECL_INITIAL (tem) != 0)
3777 expand_decl (tem);
3780 if (init_written)
3782 /* When parsing and digesting the initializer,
3783 use temporary storage. Do this even if we will ignore the value. */
3784 if (current_binding_level == global_binding_level && debug_temp_inits)
3785 temporary_allocation ();
3788 return tem;
3791 /* Finish processing of a declaration;
3792 install its initial value.
3793 If the length of an array type is not known before,
3794 it must be determined now, from the initial value, or it is an error. */
3796 void
3797 finish_decl (decl, init, asmspec_tree)
3798 tree decl, init;
3799 tree asmspec_tree;
3801 register tree type = TREE_TYPE (decl);
3802 int was_incomplete = (DECL_SIZE (decl) == 0);
3803 int temporary = allocation_temporary_p ();
3804 char *asmspec = 0;
3806 /* If a name was specified, get the string. */
3807 if (asmspec_tree)
3808 asmspec = TREE_STRING_POINTER (asmspec_tree);
3810 /* If `start_decl' didn't like having an initialization, ignore it now. */
3812 if (init != 0 && DECL_INITIAL (decl) == 0)
3813 init = 0;
3814 /* Don't crash if parm is initialized. */
3815 if (TREE_CODE (decl) == PARM_DECL)
3816 init = 0;
3818 if (ITERATOR_P (decl))
3820 if (init == 0)
3821 error_with_decl (decl, "iterator has no initial value");
3822 else
3823 init = save_expr (init);
3826 if (init)
3828 if (TREE_CODE (decl) != TYPE_DECL)
3829 store_init_value (decl, init);
3830 else
3832 /* typedef foo = bar; store the type of bar as the type of foo. */
3833 TREE_TYPE (decl) = TREE_TYPE (init);
3834 DECL_INITIAL (decl) = init = 0;
3838 /* Pop back to the obstack that is current for this binding level.
3839 This is because MAXINDEX, rtl, etc. to be made below
3840 must go in the permanent obstack. But don't discard the
3841 temporary data yet. */
3842 pop_obstacks ();
3843 #if 0 /* pop_obstacks was near the end; this is what was here. */
3844 if (current_binding_level == global_binding_level && temporary)
3845 end_temporary_allocation ();
3846 #endif
3848 /* Deduce size of array from initialization, if not already known */
3850 if (TREE_CODE (type) == ARRAY_TYPE
3851 && TYPE_DOMAIN (type) == 0
3852 && TREE_CODE (decl) != TYPE_DECL)
3854 int do_default
3855 = (TREE_STATIC (decl)
3856 /* Even if pedantic, an external linkage array
3857 may have incomplete type at first. */
3858 ? pedantic && !TREE_PUBLIC (decl)
3859 : !DECL_EXTERNAL (decl));
3860 int failure
3861 = complete_array_type (type, DECL_INITIAL (decl), do_default);
3863 /* Get the completed type made by complete_array_type. */
3864 type = TREE_TYPE (decl);
3866 if (failure == 1)
3867 error_with_decl (decl, "initializer fails to determine size of `%s'");
3869 if (failure == 2)
3871 if (do_default)
3872 error_with_decl (decl, "array size missing in `%s'");
3873 /* If a `static' var's size isn't known,
3874 make it extern as well as static, so it does not get
3875 allocated.
3876 If it is not `static', then do not mark extern;
3877 finish_incomplete_decl will give it a default size
3878 and it will get allocated. */
3879 else if (!pedantic && TREE_STATIC (decl) && ! TREE_PUBLIC (decl))
3880 DECL_EXTERNAL (decl) = 1;
3883 /* TYPE_MAX_VALUE is always one less than the number of elements
3884 in the array, because we start counting at zero. Therefore,
3885 warn only if the value is less than zero. */
3886 if (pedantic && TYPE_DOMAIN (type) != 0
3887 && tree_int_cst_sgn (TYPE_MAX_VALUE (TYPE_DOMAIN (type))) < 0)
3888 error_with_decl (decl, "zero or negative size array `%s'");
3890 layout_decl (decl, 0);
3893 if (TREE_CODE (decl) == VAR_DECL)
3895 if (DECL_SIZE (decl) == 0
3896 && TYPE_SIZE (TREE_TYPE (decl)) != 0)
3897 layout_decl (decl, 0);
3899 if (DECL_SIZE (decl) == 0
3900 && (TREE_STATIC (decl)
3902 /* A static variable with an incomplete type
3903 is an error if it is initialized.
3904 Also if it is not file scope.
3905 Otherwise, let it through, but if it is not `extern'
3906 then it may cause an error message later. */
3907 /* A duplicate_decls call could have changed an extern
3908 declaration into a file scope one. This can be detected
3909 by TREE_ASM_WRITTEN being set. */
3910 (DECL_INITIAL (decl) != 0
3911 || (DECL_CONTEXT (decl) != 0 && ! TREE_ASM_WRITTEN (decl)))
3913 /* An automatic variable with an incomplete type
3914 is an error. */
3915 !DECL_EXTERNAL (decl)))
3917 error_with_decl (decl, "storage size of `%s' isn't known");
3918 TREE_TYPE (decl) = error_mark_node;
3921 if ((DECL_EXTERNAL (decl) || TREE_STATIC (decl))
3922 && DECL_SIZE (decl) != 0)
3924 if (TREE_CODE (DECL_SIZE (decl)) == INTEGER_CST)
3925 constant_expression_warning (DECL_SIZE (decl));
3926 else
3927 error_with_decl (decl, "storage size of `%s' isn't constant");
3930 if (TREE_USED (type))
3931 TREE_USED (decl) = 1;
3934 /* If this is a function and an assembler name is specified, it isn't
3935 builtin any more. Also reset DECL_RTL so we can give it its new
3936 name. */
3937 if (TREE_CODE (decl) == FUNCTION_DECL && asmspec)
3939 DECL_BUILT_IN (decl) = 0;
3940 DECL_RTL (decl) = 0;
3943 /* Output the assembler code and/or RTL code for variables and functions,
3944 unless the type is an undefined structure or union.
3945 If not, it will get done when the type is completed. */
3947 if (TREE_CODE (decl) == VAR_DECL || TREE_CODE (decl) == FUNCTION_DECL)
3949 if ((flag_traditional || TREE_PERMANENT (decl))
3950 && allocation_temporary_p ())
3952 push_obstacks_nochange ();
3953 end_temporary_allocation ();
3954 /* This is a no-op in c-lang.c or something real in objc-actions.c. */
3955 maybe_objc_check_decl (decl);
3956 rest_of_decl_compilation (decl, asmspec,
3957 (DECL_CONTEXT (decl) == 0
3958 || TREE_ASM_WRITTEN (decl)),
3960 pop_obstacks ();
3962 else
3964 /* This is a no-op in c-lang.c or something real in objc-actions.c. */
3965 maybe_objc_check_decl (decl);
3966 rest_of_decl_compilation (decl, asmspec, DECL_CONTEXT (decl) == 0,
3969 if (DECL_CONTEXT (decl) != 0)
3971 /* Recompute the RTL of a local array now
3972 if it used to be an incomplete type. */
3973 if (was_incomplete
3974 && ! TREE_STATIC (decl) && ! DECL_EXTERNAL (decl))
3976 /* If we used it already as memory, it must stay in memory. */
3977 TREE_ADDRESSABLE (decl) = TREE_USED (decl);
3978 /* If it's still incomplete now, no init will save it. */
3979 if (DECL_SIZE (decl) == 0)
3980 DECL_INITIAL (decl) = 0;
3981 expand_decl (decl);
3983 /* Compute and store the initial value. */
3984 if (TREE_CODE (decl) != FUNCTION_DECL)
3985 expand_decl_init (decl);
3989 if (TREE_CODE (decl) == TYPE_DECL)
3991 /* This is a no-op in c-lang.c or something real in objc-actions.c. */
3992 maybe_objc_check_decl (decl);
3993 rest_of_decl_compilation (decl, NULL_PTR, DECL_CONTEXT (decl) == 0,
3997 /* ??? After 2.3, test (init != 0) instead of TREE_CODE. */
3998 /* This test used to include TREE_PERMANENT, however, we have the same
3999 problem with initializers at the function level. Such initializers get
4000 saved until the end of the function on the momentary_obstack. */
4001 if (!(TREE_CODE (decl) == FUNCTION_DECL && DECL_INLINE (decl))
4002 && temporary
4003 /* DECL_INITIAL is not defined in PARM_DECLs, since it shares
4004 space with DECL_ARG_TYPE. */
4005 && TREE_CODE (decl) != PARM_DECL)
4007 /* We need to remember that this array HAD an initialization,
4008 but discard the actual temporary nodes,
4009 since we can't have a permanent node keep pointing to them. */
4010 /* We make an exception for inline functions, since it's
4011 normal for a local extern redeclaration of an inline function
4012 to have a copy of the top-level decl's DECL_INLINE. */
4013 if (DECL_INITIAL (decl) != 0 && DECL_INITIAL (decl) != error_mark_node)
4015 /* If this is a const variable, then preserve the
4016 initializer instead of discarding it so that we can optimize
4017 references to it. */
4018 /* This test used to include TREE_STATIC, but this won't be set
4019 for function level initializers. */
4020 if (TREE_READONLY (decl) || ITERATOR_P (decl))
4022 preserve_initializer ();
4023 /* Hack? Set the permanent bit for something that is permanent,
4024 but not on the permanent obstack, so as to convince
4025 output_constant_def to make its rtl on the permanent
4026 obstack. */
4027 TREE_PERMANENT (DECL_INITIAL (decl)) = 1;
4029 /* The initializer and DECL must have the same (or equivalent
4030 types), but if the initializer is a STRING_CST, its type
4031 might not be on the right obstack, so copy the type
4032 of DECL. */
4033 TREE_TYPE (DECL_INITIAL (decl)) = type;
4035 else
4036 DECL_INITIAL (decl) = error_mark_node;
4040 /* If requested, warn about definitions of large data objects. */
4042 if (warn_larger_than
4043 && (TREE_CODE (decl) == VAR_DECL || TREE_CODE (decl) == PARM_DECL)
4044 && !DECL_EXTERNAL (decl))
4046 register tree decl_size = DECL_SIZE (decl);
4048 if (decl_size && TREE_CODE (decl_size) == INTEGER_CST)
4050 unsigned units = TREE_INT_CST_LOW(decl_size) / BITS_PER_UNIT;
4052 if (units > larger_than_size)
4053 warning_with_decl (decl, "size of `%s' is %u bytes", units);
4057 #if 0
4058 /* Resume permanent allocation, if not within a function. */
4059 /* The corresponding push_obstacks_nochange is in start_decl,
4060 and in push_parm_decl and in grokfield. */
4061 pop_obstacks ();
4062 #endif
4064 /* If we have gone back from temporary to permanent allocation,
4065 actually free the temporary space that we no longer need. */
4066 if (temporary && !allocation_temporary_p ())
4067 permanent_allocation (0);
4069 /* At the end of a declaration, throw away any variable type sizes
4070 of types defined inside that declaration. There is no use
4071 computing them in the following function definition. */
4072 if (current_binding_level == global_binding_level)
4073 get_pending_sizes ();
4076 /* If DECL has a cleanup, build and return that cleanup here.
4077 This is a callback called by expand_expr. */
4079 tree
4080 maybe_build_cleanup (decl)
4081 tree decl;
4083 /* There are no cleanups in C. */
4084 return NULL_TREE;
4087 /* Given a parsed parameter declaration,
4088 decode it into a PARM_DECL and push that on the current binding level.
4089 Also, for the sake of forward parm decls,
4090 record the given order of parms in `parm_order'. */
4092 void
4093 push_parm_decl (parm)
4094 tree parm;
4096 tree decl;
4097 int old_immediate_size_expand = immediate_size_expand;
4098 /* Don't try computing parm sizes now -- wait till fn is called. */
4099 immediate_size_expand = 0;
4101 /* The corresponding pop_obstacks is in finish_decl. */
4102 push_obstacks_nochange ();
4104 decl = grokdeclarator (TREE_VALUE (TREE_PURPOSE (parm)),
4105 TREE_PURPOSE (TREE_PURPOSE (parm)), PARM, 0);
4106 decl_attributes (decl, TREE_VALUE (TREE_VALUE (parm)),
4107 TREE_PURPOSE (TREE_VALUE (parm)));
4109 #if 0
4110 if (DECL_NAME (decl))
4112 tree olddecl;
4113 olddecl = lookup_name (DECL_NAME (decl));
4114 if (pedantic && olddecl != 0 && TREE_CODE (olddecl) == TYPE_DECL)
4115 pedwarn_with_decl (decl, "ANSI C forbids parameter `%s' shadowing typedef");
4117 #endif
4119 decl = pushdecl (decl);
4121 immediate_size_expand = old_immediate_size_expand;
4123 current_binding_level->parm_order
4124 = tree_cons (NULL_TREE, decl, current_binding_level->parm_order);
4126 /* Add this decl to the current binding level. */
4127 finish_decl (decl, NULL_TREE, NULL_TREE);
4130 /* Clear the given order of parms in `parm_order'.
4131 Used at start of parm list,
4132 and also at semicolon terminating forward decls. */
4134 void
4135 clear_parm_order ()
4137 current_binding_level->parm_order = NULL_TREE;
4140 /* Make TYPE a complete type based on INITIAL_VALUE.
4141 Return 0 if successful, 1 if INITIAL_VALUE can't be deciphered,
4142 2 if there was no information (in which case assume 1 if DO_DEFAULT). */
4145 complete_array_type (type, initial_value, do_default)
4146 tree type;
4147 tree initial_value;
4148 int do_default;
4150 register tree maxindex = NULL_TREE;
4151 int value = 0;
4153 if (initial_value)
4155 /* Note MAXINDEX is really the maximum index,
4156 one less than the size. */
4157 if (TREE_CODE (initial_value) == STRING_CST)
4159 int eltsize
4160 = int_size_in_bytes (TREE_TYPE (TREE_TYPE (initial_value)));
4161 maxindex = build_int_2 ((TREE_STRING_LENGTH (initial_value)
4162 / eltsize) - 1, 0);
4164 else if (TREE_CODE (initial_value) == CONSTRUCTOR)
4166 tree elts = CONSTRUCTOR_ELTS (initial_value);
4167 maxindex = size_binop (MINUS_EXPR, integer_zero_node, size_one_node);
4168 for (; elts; elts = TREE_CHAIN (elts))
4170 if (TREE_PURPOSE (elts))
4171 maxindex = TREE_PURPOSE (elts);
4172 else
4173 maxindex = size_binop (PLUS_EXPR, maxindex, size_one_node);
4175 maxindex = copy_node (maxindex);
4177 else
4179 /* Make an error message unless that happened already. */
4180 if (initial_value != error_mark_node)
4181 value = 1;
4183 /* Prevent further error messages. */
4184 maxindex = build_int_2 (0, 0);
4188 if (!maxindex)
4190 if (do_default)
4191 maxindex = build_int_2 (0, 0);
4192 value = 2;
4195 if (maxindex)
4197 TYPE_DOMAIN (type) = build_index_type (maxindex);
4198 if (!TREE_TYPE (maxindex))
4199 TREE_TYPE (maxindex) = TYPE_DOMAIN (type);
4202 /* Lay out the type now that we can get the real answer. */
4204 layout_type (type);
4206 return value;
4209 /* Given declspecs and a declarator,
4210 determine the name and type of the object declared
4211 and construct a ..._DECL node for it.
4212 (In one case we can return a ..._TYPE node instead.
4213 For invalid input we sometimes return 0.)
4215 DECLSPECS is a chain of tree_list nodes whose value fields
4216 are the storage classes and type specifiers.
4218 DECL_CONTEXT says which syntactic context this declaration is in:
4219 NORMAL for most contexts. Make a VAR_DECL or FUNCTION_DECL or TYPE_DECL.
4220 FUNCDEF for a function definition. Like NORMAL but a few different
4221 error messages in each case. Return value may be zero meaning
4222 this definition is too screwy to try to parse.
4223 PARM for a parameter declaration (either within a function prototype
4224 or before a function body). Make a PARM_DECL, or return void_type_node.
4225 TYPENAME if for a typename (in a cast or sizeof).
4226 Don't make a DECL node; just return the ..._TYPE node.
4227 FIELD for a struct or union field; make a FIELD_DECL.
4228 BITFIELD for a field with specified width.
4229 INITIALIZED is 1 if the decl has an initializer.
4231 In the TYPENAME case, DECLARATOR is really an absolute declarator.
4232 It may also be so in the PARM case, for a prototype where the
4233 argument type is specified but not the name.
4235 This function is where the complicated C meanings of `static'
4236 and `extern' are interpreted. */
4238 static tree
4239 grokdeclarator (declarator, declspecs, decl_context, initialized)
4240 tree declspecs;
4241 tree declarator;
4242 enum decl_context decl_context;
4243 int initialized;
4245 int specbits = 0;
4246 tree spec;
4247 tree type = NULL_TREE;
4248 int longlong = 0;
4249 int constp;
4250 int volatilep;
4251 int inlinep;
4252 int explicit_int = 0;
4253 int explicit_char = 0;
4254 int defaulted_int = 0;
4255 tree typedef_decl = 0;
4256 char *name;
4257 tree typedef_type = 0;
4258 int funcdef_flag = 0;
4259 enum tree_code innermost_code = ERROR_MARK;
4260 int bitfield = 0;
4261 int size_varies = 0;
4262 tree decl_machine_attr = NULL_TREE;
4264 if (decl_context == BITFIELD)
4265 bitfield = 1, decl_context = FIELD;
4267 if (decl_context == FUNCDEF)
4268 funcdef_flag = 1, decl_context = NORMAL;
4270 push_obstacks_nochange ();
4272 if (flag_traditional && allocation_temporary_p ())
4273 end_temporary_allocation ();
4275 /* Look inside a declarator for the name being declared
4276 and get it as a string, for an error message. */
4278 register tree decl = declarator;
4279 name = 0;
4281 while (decl)
4282 switch (TREE_CODE (decl))
4284 case ARRAY_REF:
4285 case INDIRECT_REF:
4286 case CALL_EXPR:
4287 innermost_code = TREE_CODE (decl);
4288 decl = TREE_OPERAND (decl, 0);
4289 break;
4291 case IDENTIFIER_NODE:
4292 name = IDENTIFIER_POINTER (decl);
4293 decl = 0;
4294 break;
4296 default:
4297 abort ();
4299 if (name == 0)
4300 name = "type name";
4303 /* A function definition's declarator must have the form of
4304 a function declarator. */
4306 if (funcdef_flag && innermost_code != CALL_EXPR)
4307 return 0;
4309 /* Anything declared one level down from the top level
4310 must be one of the parameters of a function
4311 (because the body is at least two levels down). */
4313 /* If this looks like a function definition, make it one,
4314 even if it occurs where parms are expected.
4315 Then store_parm_decls will reject it and not use it as a parm. */
4316 if (decl_context == NORMAL && !funcdef_flag
4317 && current_binding_level->parm_flag)
4318 decl_context = PARM;
4320 /* Look through the decl specs and record which ones appear.
4321 Some typespecs are defined as built-in typenames.
4322 Others, the ones that are modifiers of other types,
4323 are represented by bits in SPECBITS: set the bits for
4324 the modifiers that appear. Storage class keywords are also in SPECBITS.
4326 If there is a typedef name or a type, store the type in TYPE.
4327 This includes builtin typedefs such as `int'.
4329 Set EXPLICIT_INT or EXPLICIT_CHAR if the type is `int' or `char'
4330 and did not come from a user typedef.
4332 Set LONGLONG if `long' is mentioned twice. */
4334 for (spec = declspecs; spec; spec = TREE_CHAIN (spec))
4336 register int i;
4337 register tree id = TREE_VALUE (spec);
4339 if (id == ridpointers[(int) RID_INT])
4340 explicit_int = 1;
4341 if (id == ridpointers[(int) RID_CHAR])
4342 explicit_char = 1;
4344 if (TREE_CODE (id) == IDENTIFIER_NODE)
4345 for (i = (int) RID_FIRST_MODIFIER; i < (int) RID_MAX; i++)
4347 if (ridpointers[i] == id)
4349 if (i == (int) RID_LONG && specbits & (1<<i))
4351 if (longlong)
4352 error ("`long long long' is too long for GCC");
4353 else
4355 if (pedantic && ! in_system_header)
4356 pedwarn ("ANSI C does not support `long long'");
4357 longlong = 1;
4360 else if (specbits & (1 << i))
4361 pedwarn ("duplicate `%s'", IDENTIFIER_POINTER (id));
4362 specbits |= 1 << i;
4363 goto found;
4366 if (type)
4367 error ("two or more data types in declaration of `%s'", name);
4368 /* Actual typedefs come to us as TYPE_DECL nodes. */
4369 else if (TREE_CODE (id) == TYPE_DECL)
4371 type = TREE_TYPE (id);
4372 decl_machine_attr = DECL_MACHINE_ATTRIBUTES (id);
4373 typedef_decl = id;
4375 /* Built-in types come as identifiers. */
4376 else if (TREE_CODE (id) == IDENTIFIER_NODE)
4378 register tree t = lookup_name (id);
4379 if (TREE_TYPE (t) == error_mark_node)
4381 else if (!t || TREE_CODE (t) != TYPE_DECL)
4382 error ("`%s' fails to be a typedef or built in type",
4383 IDENTIFIER_POINTER (id));
4384 else
4386 type = TREE_TYPE (t);
4387 typedef_decl = t;
4390 else if (TREE_CODE (id) != ERROR_MARK)
4391 type = id;
4393 found: {}
4396 typedef_type = type;
4397 if (type)
4398 size_varies = C_TYPE_VARIABLE_SIZE (type);
4400 /* No type at all: default to `int', and set DEFAULTED_INT
4401 because it was not a user-defined typedef. */
4403 if (type == 0)
4405 if (! (specbits & ((1 << (int) RID_LONG) | (1 << (int) RID_SHORT)
4406 | (1 << (int) RID_SIGNED)
4407 | (1 << (int) RID_UNSIGNED))))
4409 /* C9x will probably require a diagnostic here.
4410 For now, issue a warning if -Wreturn-type and this is a function,
4411 or if -Wimplicit; prefer the former warning since it is more
4412 explicit. */
4413 if ((warn_implicit_int || warn_return_type) && funcdef_flag)
4414 warn_about_return_type = 1;
4415 else if (warn_implicit_int)
4416 warning ("type defaults to `int' in declaration of `%s'", name);
4419 defaulted_int = 1;
4420 type = integer_type_node;
4423 /* Now process the modifiers that were specified
4424 and check for invalid combinations. */
4426 /* Long double is a special combination. */
4428 if ((specbits & 1 << (int) RID_LONG) && ! longlong
4429 && TYPE_MAIN_VARIANT (type) == double_type_node)
4431 specbits &= ~ (1 << (int) RID_LONG);
4432 type = long_double_type_node;
4435 /* Check all other uses of type modifiers. */
4437 if (specbits & ((1 << (int) RID_LONG) | (1 << (int) RID_SHORT)
4438 | (1 << (int) RID_UNSIGNED) | (1 << (int) RID_SIGNED)))
4440 int ok = 0;
4442 if ((specbits & 1 << (int) RID_LONG)
4443 && (specbits & 1 << (int) RID_SHORT))
4444 error ("both long and short specified for `%s'", name);
4445 else if (((specbits & 1 << (int) RID_LONG)
4446 || (specbits & 1 << (int) RID_SHORT))
4447 && explicit_char)
4448 error ("long or short specified with char for `%s'", name);
4449 else if (((specbits & 1 << (int) RID_LONG)
4450 || (specbits & 1 << (int) RID_SHORT))
4451 && TREE_CODE (type) == REAL_TYPE)
4453 static int already = 0;
4455 error ("long or short specified with floating type for `%s'", name);
4456 if (! already && ! pedantic)
4458 error ("the only valid combination is `long double'");
4459 already = 1;
4462 else if ((specbits & 1 << (int) RID_SIGNED)
4463 && (specbits & 1 << (int) RID_UNSIGNED))
4464 error ("both signed and unsigned specified for `%s'", name);
4465 else if (TREE_CODE (type) != INTEGER_TYPE)
4466 error ("long, short, signed or unsigned invalid for `%s'", name);
4467 else
4469 ok = 1;
4470 if (!explicit_int && !defaulted_int && !explicit_char && pedantic)
4472 pedwarn ("long, short, signed or unsigned used invalidly for `%s'",
4473 name);
4474 if (flag_pedantic_errors)
4475 ok = 0;
4479 /* Discard the type modifiers if they are invalid. */
4480 if (! ok)
4482 specbits &= ~((1 << (int) RID_LONG) | (1 << (int) RID_SHORT)
4483 | (1 << (int) RID_UNSIGNED) | (1 << (int) RID_SIGNED));
4484 longlong = 0;
4488 if ((specbits & (1 << (int) RID_COMPLEX))
4489 && TREE_CODE (type) != INTEGER_TYPE && TREE_CODE (type) != REAL_TYPE)
4491 error ("complex invalid for `%s'", name);
4492 specbits &= ~ (1 << (int) RID_COMPLEX);
4495 /* Decide whether an integer type is signed or not.
4496 Optionally treat bitfields as signed by default. */
4497 if (specbits & 1 << (int) RID_UNSIGNED
4498 /* Traditionally, all bitfields are unsigned. */
4499 || (bitfield && flag_traditional
4500 && (! explicit_flag_signed_bitfields || !flag_signed_bitfields))
4501 || (bitfield && ! flag_signed_bitfields
4502 && (explicit_int || defaulted_int || explicit_char
4503 /* A typedef for plain `int' without `signed'
4504 can be controlled just like plain `int'. */
4505 || ! (typedef_decl != 0
4506 && C_TYPEDEF_EXPLICITLY_SIGNED (typedef_decl)))
4507 && TREE_CODE (type) != ENUMERAL_TYPE
4508 && !(specbits & 1 << (int) RID_SIGNED)))
4510 if (longlong)
4511 type = long_long_unsigned_type_node;
4512 else if (specbits & 1 << (int) RID_LONG)
4513 type = long_unsigned_type_node;
4514 else if (specbits & 1 << (int) RID_SHORT)
4515 type = short_unsigned_type_node;
4516 else if (type == char_type_node)
4517 type = unsigned_char_type_node;
4518 else if (typedef_decl)
4519 type = unsigned_type (type);
4520 else
4521 type = unsigned_type_node;
4523 else if ((specbits & 1 << (int) RID_SIGNED)
4524 && type == char_type_node)
4525 type = signed_char_type_node;
4526 else if (longlong)
4527 type = long_long_integer_type_node;
4528 else if (specbits & 1 << (int) RID_LONG)
4529 type = long_integer_type_node;
4530 else if (specbits & 1 << (int) RID_SHORT)
4531 type = short_integer_type_node;
4533 if (specbits & 1 << (int) RID_COMPLEX)
4535 /* If we just have "complex", it is equivalent to
4536 "complex double", but if any modifiers at all are specified it is
4537 the complex form of TYPE. E.g, "complex short" is
4538 "complex short int". */
4540 if (defaulted_int && ! longlong
4541 && ! (specbits & ((1 << (int) RID_LONG) | (1 << (int) RID_SHORT)
4542 | (1 << (int) RID_SIGNED)
4543 | (1 << (int) RID_UNSIGNED))))
4544 type = complex_double_type_node;
4545 else if (type == integer_type_node)
4546 type = complex_integer_type_node;
4547 else if (type == float_type_node)
4548 type = complex_float_type_node;
4549 else if (type == double_type_node)
4550 type = complex_double_type_node;
4551 else if (type == long_double_type_node)
4552 type = complex_long_double_type_node;
4553 else
4554 type = build_complex_type (type);
4557 /* Set CONSTP if this declaration is `const', whether by
4558 explicit specification or via a typedef.
4559 Likewise for VOLATILEP. */
4561 constp = !! (specbits & 1 << (int) RID_CONST) + TYPE_READONLY (type);
4562 volatilep = !! (specbits & 1 << (int) RID_VOLATILE) + TYPE_VOLATILE (type);
4563 inlinep = !! (specbits & (1 << (int) RID_INLINE));
4564 if (constp > 1)
4565 pedwarn ("duplicate `const'");
4566 if (volatilep > 1)
4567 pedwarn ("duplicate `volatile'");
4568 if (! flag_gen_aux_info && (TYPE_READONLY (type) || TYPE_VOLATILE (type)))
4569 type = TYPE_MAIN_VARIANT (type);
4571 /* Warn if two storage classes are given. Default to `auto'. */
4574 int nclasses = 0;
4576 if (specbits & 1 << (int) RID_AUTO) nclasses++;
4577 if (specbits & 1 << (int) RID_STATIC) nclasses++;
4578 if (specbits & 1 << (int) RID_EXTERN) nclasses++;
4579 if (specbits & 1 << (int) RID_REGISTER) nclasses++;
4580 if (specbits & 1 << (int) RID_TYPEDEF) nclasses++;
4581 if (specbits & 1 << (int) RID_ITERATOR) nclasses++;
4583 /* Warn about storage classes that are invalid for certain
4584 kinds of declarations (parameters, typenames, etc.). */
4586 if (nclasses > 1)
4587 error ("multiple storage classes in declaration of `%s'", name);
4588 else if (funcdef_flag
4589 && (specbits
4590 & ((1 << (int) RID_REGISTER)
4591 | (1 << (int) RID_AUTO)
4592 | (1 << (int) RID_TYPEDEF))))
4594 if (specbits & 1 << (int) RID_AUTO
4595 && (pedantic || current_binding_level == global_binding_level))
4596 pedwarn ("function definition declared `auto'");
4597 if (specbits & 1 << (int) RID_REGISTER)
4598 error ("function definition declared `register'");
4599 if (specbits & 1 << (int) RID_TYPEDEF)
4600 error ("function definition declared `typedef'");
4601 specbits &= ~ ((1 << (int) RID_TYPEDEF) | (1 << (int) RID_REGISTER)
4602 | (1 << (int) RID_AUTO));
4604 else if (decl_context != NORMAL && nclasses > 0)
4606 if (decl_context == PARM && specbits & 1 << (int) RID_REGISTER)
4608 else
4610 error ((decl_context == FIELD
4611 ? "storage class specified for structure field `%s'"
4612 : (decl_context == PARM
4613 ? "storage class specified for parameter `%s'"
4614 : "storage class specified for typename")),
4615 name);
4616 specbits &= ~ ((1 << (int) RID_TYPEDEF) | (1 << (int) RID_REGISTER)
4617 | (1 << (int) RID_AUTO) | (1 << (int) RID_STATIC)
4618 | (1 << (int) RID_EXTERN));
4621 else if (specbits & 1 << (int) RID_EXTERN && initialized && ! funcdef_flag)
4623 /* `extern' with initialization is invalid if not at top level. */
4624 if (current_binding_level == global_binding_level)
4625 warning ("`%s' initialized and declared `extern'", name);
4626 else
4627 error ("`%s' has both `extern' and initializer", name);
4629 else if (specbits & 1 << (int) RID_EXTERN && funcdef_flag
4630 && current_binding_level != global_binding_level)
4631 error ("nested function `%s' declared `extern'", name);
4632 else if (current_binding_level == global_binding_level
4633 && specbits & (1 << (int) RID_AUTO))
4634 error ("top-level declaration of `%s' specifies `auto'", name);
4635 else if ((specbits & 1 << (int) RID_ITERATOR)
4636 && TREE_CODE (declarator) != IDENTIFIER_NODE)
4638 error ("iterator `%s' has derived type", name);
4639 type = error_mark_node;
4641 else if ((specbits & 1 << (int) RID_ITERATOR)
4642 && TREE_CODE (type) != INTEGER_TYPE)
4644 error ("iterator `%s' has noninteger type", name);
4645 type = error_mark_node;
4649 /* Now figure out the structure of the declarator proper.
4650 Descend through it, creating more complex types, until we reach
4651 the declared identifier (or NULL_TREE, in an absolute declarator). */
4653 while (declarator && TREE_CODE (declarator) != IDENTIFIER_NODE)
4655 if (type == error_mark_node)
4657 declarator = TREE_OPERAND (declarator, 0);
4658 continue;
4661 /* Each level of DECLARATOR is either an ARRAY_REF (for ...[..]),
4662 an INDIRECT_REF (for *...),
4663 a CALL_EXPR (for ...(...)),
4664 an identifier (for the name being declared)
4665 or a null pointer (for the place in an absolute declarator
4666 where the name was omitted).
4667 For the last two cases, we have just exited the loop.
4669 At this point, TYPE is the type of elements of an array,
4670 or for a function to return, or for a pointer to point to.
4671 After this sequence of ifs, TYPE is the type of the
4672 array or function or pointer, and DECLARATOR has had its
4673 outermost layer removed. */
4675 if (TREE_CODE (declarator) == ARRAY_REF)
4677 register tree itype = NULL_TREE;
4678 register tree size = TREE_OPERAND (declarator, 1);
4679 /* An uninitialized decl with `extern' is a reference. */
4680 int extern_ref = !initialized && (specbits & (1 << (int) RID_EXTERN));
4681 /* The index is a signed object `sizetype' bits wide. */
4682 tree index_type = signed_type (sizetype);
4684 declarator = TREE_OPERAND (declarator, 0);
4686 /* Check for some types that there cannot be arrays of. */
4688 if (TYPE_MAIN_VARIANT (type) == void_type_node)
4690 error ("declaration of `%s' as array of voids", name);
4691 type = error_mark_node;
4694 if (TREE_CODE (type) == FUNCTION_TYPE)
4696 error ("declaration of `%s' as array of functions", name);
4697 type = error_mark_node;
4700 if (size == error_mark_node)
4701 type = error_mark_node;
4703 if (type == error_mark_node)
4704 continue;
4706 /* If this is a block level extern, it must live past the end
4707 of the function so that we can check it against other extern
4708 declarations (IDENTIFIER_LIMBO_VALUE). */
4709 if (extern_ref && allocation_temporary_p ())
4710 end_temporary_allocation ();
4712 /* If size was specified, set ITYPE to a range-type for that size.
4713 Otherwise, ITYPE remains null. finish_decl may figure it out
4714 from an initial value. */
4716 if (size)
4718 /* Strip NON_LVALUE_EXPRs since we aren't using as an lvalue. */
4719 STRIP_TYPE_NOPS (size);
4721 if (TREE_CODE (TREE_TYPE (size)) != INTEGER_TYPE
4722 && TREE_CODE (TREE_TYPE (size)) != ENUMERAL_TYPE)
4724 error ("size of array `%s' has non-integer type", name);
4725 size = integer_one_node;
4728 if (pedantic && integer_zerop (size))
4729 pedwarn ("ANSI C forbids zero-size array `%s'", name);
4731 if (TREE_CODE (size) == INTEGER_CST)
4733 constant_expression_warning (size);
4734 if (tree_int_cst_sgn (size) < 0)
4736 error ("size of array `%s' is negative", name);
4737 size = integer_one_node;
4740 else
4742 /* Make sure the array size remains visibly nonconstant
4743 even if it is (eg) a const variable with known value. */
4744 size_varies = 1;
4746 if (pedantic)
4748 if (TREE_CONSTANT (size))
4749 pedwarn ("ANSI C forbids array `%s' whose size can't be evaluated", name);
4750 else
4751 pedwarn ("ANSI C forbids variable-size array `%s'", name);
4755 /* Convert size to index_type, so that if it is a variable
4756 the computations will be done in the proper mode. */
4757 itype = fold (build (MINUS_EXPR, index_type,
4758 convert (index_type, size),
4759 convert (index_type, size_one_node)));
4761 /* If that overflowed, the array is too big.
4762 ??? While a size of INT_MAX+1 technically shouldn't cause
4763 an overflow (because we subtract 1), the overflow is recorded
4764 during the conversion to index_type, before the subtraction.
4765 Handling this case seems like an unnecessary complication. */
4766 if (TREE_OVERFLOW (itype))
4768 error ("size of array `%s' is too large", name);
4769 type = error_mark_node;
4770 continue;
4773 if (size_varies)
4774 itype = variable_size (itype);
4775 itype = build_index_type (itype);
4778 #if 0 /* This had bad results for pointers to arrays, as in
4779 union incomplete (*foo)[4]; */
4780 /* Complain about arrays of incomplete types, except in typedefs. */
4782 if (TYPE_SIZE (type) == 0
4783 /* Avoid multiple warnings for nested array types. */
4784 && TREE_CODE (type) != ARRAY_TYPE
4785 && !(specbits & (1 << (int) RID_TYPEDEF))
4786 && !C_TYPE_BEING_DEFINED (type))
4787 warning ("array type has incomplete element type");
4788 #endif
4790 #if 0 /* We shouldn't have a function type here at all!
4791 Functions aren't allowed as array elements. */
4792 if (pedantic && TREE_CODE (type) == FUNCTION_TYPE
4793 && (constp || volatilep))
4794 pedwarn ("ANSI C forbids const or volatile function types");
4795 #endif
4797 /* Build the array type itself, then merge any constancy or
4798 volatility into the target type. We must do it in this order
4799 to ensure that the TYPE_MAIN_VARIANT field of the array type
4800 is set correctly. */
4802 type = build_array_type (type, itype);
4803 if (constp || volatilep)
4804 type = c_build_type_variant (type, constp, volatilep);
4806 #if 0 /* don't clear these; leave them set so that the array type
4807 or the variable is itself const or volatile. */
4808 constp = 0;
4809 volatilep = 0;
4810 #endif
4812 if (size_varies)
4813 C_TYPE_VARIABLE_SIZE (type) = 1;
4815 else if (TREE_CODE (declarator) == CALL_EXPR)
4817 int extern_ref = (!(specbits & (1 << (int) RID_AUTO))
4818 || current_binding_level == global_binding_level);
4819 tree arg_types;
4821 /* Declaring a function type.
4822 Make sure we have a valid type for the function to return. */
4823 if (type == error_mark_node)
4824 continue;
4826 size_varies = 0;
4828 /* Warn about some types functions can't return. */
4830 if (TREE_CODE (type) == FUNCTION_TYPE)
4832 error ("`%s' declared as function returning a function", name);
4833 type = integer_type_node;
4835 if (TREE_CODE (type) == ARRAY_TYPE)
4837 error ("`%s' declared as function returning an array", name);
4838 type = integer_type_node;
4841 #ifndef TRADITIONAL_RETURN_FLOAT
4842 /* Traditionally, declaring return type float means double. */
4844 if (flag_traditional && TYPE_MAIN_VARIANT (type) == float_type_node)
4845 type = double_type_node;
4846 #endif /* TRADITIONAL_RETURN_FLOAT */
4848 /* If this is a block level extern, it must live past the end
4849 of the function so that we can check it against other extern
4850 declarations (IDENTIFIER_LIMBO_VALUE). */
4851 if (extern_ref && allocation_temporary_p ())
4852 end_temporary_allocation ();
4854 /* Construct the function type and go to the next
4855 inner layer of declarator. */
4857 arg_types = grokparms (TREE_OPERAND (declarator, 1),
4858 funcdef_flag
4859 /* Say it's a definition
4860 only for the CALL_EXPR
4861 closest to the identifier. */
4862 && TREE_CODE (TREE_OPERAND (declarator, 0)) == IDENTIFIER_NODE);
4863 #if 0 /* This seems to be false. We turn off temporary allocation
4864 above in this function if -traditional.
4865 And this code caused inconsistent results with prototypes:
4866 callers would ignore them, and pass arguments wrong. */
4868 /* Omit the arg types if -traditional, since the arg types
4869 and the list links might not be permanent. */
4870 type = build_function_type (type,
4871 flag_traditional
4872 ? NULL_TREE : arg_types);
4873 #endif
4874 /* ANSI seems to say that `const int foo ();'
4875 does not make the function foo const. */
4876 if (constp || volatilep)
4877 type = c_build_type_variant (type, constp, volatilep);
4878 constp = 0;
4879 volatilep = 0;
4881 type = build_function_type (type, arg_types);
4882 declarator = TREE_OPERAND (declarator, 0);
4884 /* Set the TYPE_CONTEXTs for each tagged type which is local to
4885 the formal parameter list of this FUNCTION_TYPE to point to
4886 the FUNCTION_TYPE node itself. */
4889 register tree link;
4891 for (link = last_function_parm_tags;
4892 link;
4893 link = TREE_CHAIN (link))
4894 TYPE_CONTEXT (TREE_VALUE (link)) = type;
4897 else if (TREE_CODE (declarator) == INDIRECT_REF)
4899 /* Merge any constancy or volatility into the target type
4900 for the pointer. */
4902 if (pedantic && TREE_CODE (type) == FUNCTION_TYPE
4903 && (constp || volatilep))
4904 pedwarn ("ANSI C forbids const or volatile function types");
4905 if (constp || volatilep)
4906 type = c_build_type_variant (type, constp, volatilep);
4907 constp = 0;
4908 volatilep = 0;
4909 size_varies = 0;
4911 type = build_pointer_type (type);
4913 /* Process a list of type modifier keywords
4914 (such as const or volatile) that were given inside the `*'. */
4916 if (TREE_TYPE (declarator))
4918 register tree typemodlist;
4919 int erred = 0;
4920 for (typemodlist = TREE_TYPE (declarator); typemodlist;
4921 typemodlist = TREE_CHAIN (typemodlist))
4923 if (TREE_VALUE (typemodlist) == ridpointers[(int) RID_CONST])
4924 constp++;
4925 else if (TREE_VALUE (typemodlist) == ridpointers[(int) RID_VOLATILE])
4926 volatilep++;
4927 else if (!erred)
4929 erred = 1;
4930 error ("invalid type modifier within pointer declarator");
4933 if (constp > 1)
4934 pedwarn ("duplicate `const'");
4935 if (volatilep > 1)
4936 pedwarn ("duplicate `volatile'");
4939 declarator = TREE_OPERAND (declarator, 0);
4941 else
4942 abort ();
4946 /* Now TYPE has the actual type. */
4948 /* Did array size calculations overflow? */
4950 if (TREE_CODE (type) == ARRAY_TYPE
4951 && TYPE_SIZE (type)
4952 && TREE_OVERFLOW (TYPE_SIZE (type)))
4953 error ("size of array `%s' is too large", name);
4955 /* If this is declaring a typedef name, return a TYPE_DECL. */
4957 if (specbits & (1 << (int) RID_TYPEDEF))
4959 tree decl;
4960 /* Note that the grammar rejects storage classes
4961 in typenames, fields or parameters */
4962 if (pedantic && TREE_CODE (type) == FUNCTION_TYPE
4963 && (constp || volatilep))
4964 pedwarn ("ANSI C forbids const or volatile function types");
4965 if (constp || volatilep)
4966 type = c_build_type_variant (type, constp, volatilep);
4967 decl = build_decl (TYPE_DECL, declarator, type);
4968 if ((specbits & (1 << (int) RID_SIGNED))
4969 || (typedef_decl && C_TYPEDEF_EXPLICITLY_SIGNED (typedef_decl)))
4970 C_TYPEDEF_EXPLICITLY_SIGNED (decl) = 1;
4971 pop_obstacks ();
4972 return decl;
4975 /* Detect the case of an array type of unspecified size
4976 which came, as such, direct from a typedef name.
4977 We must copy the type, so that each identifier gets
4978 a distinct type, so that each identifier's size can be
4979 controlled separately by its own initializer. */
4981 if (type != 0 && typedef_type != 0
4982 && TYPE_MAIN_VARIANT (type) == TYPE_MAIN_VARIANT (typedef_type)
4983 && TREE_CODE (type) == ARRAY_TYPE && TYPE_DOMAIN (type) == 0)
4985 type = build_array_type (TREE_TYPE (type), 0);
4986 if (size_varies)
4987 C_TYPE_VARIABLE_SIZE (type) = 1;
4990 /* If this is a type name (such as, in a cast or sizeof),
4991 compute the type and return it now. */
4993 if (decl_context == TYPENAME)
4995 /* Note that the grammar rejects storage classes
4996 in typenames, fields or parameters */
4997 if (pedantic && TREE_CODE (type) == FUNCTION_TYPE
4998 && (constp || volatilep))
4999 pedwarn ("ANSI C forbids const or volatile function types");
5000 if (constp || volatilep)
5001 type = c_build_type_variant (type, constp, volatilep);
5002 pop_obstacks ();
5003 return type;
5006 /* Aside from typedefs and type names (handle above),
5007 `void' at top level (not within pointer)
5008 is allowed only in public variables.
5009 We don't complain about parms either, but that is because
5010 a better error message can be made later. */
5012 if (TYPE_MAIN_VARIANT (type) == void_type_node && decl_context != PARM
5013 && ! ((decl_context != FIELD && TREE_CODE (type) != FUNCTION_TYPE)
5014 && ((specbits & (1 << (int) RID_EXTERN))
5015 || (current_binding_level == global_binding_level
5016 && !(specbits
5017 & ((1 << (int) RID_STATIC) | (1 << (int) RID_REGISTER)))))))
5019 error ("variable or field `%s' declared void", name);
5020 type = integer_type_node;
5023 /* Now create the decl, which may be a VAR_DECL, a PARM_DECL
5024 or a FUNCTION_DECL, depending on DECL_CONTEXT and TYPE. */
5027 register tree decl;
5029 if (decl_context == PARM)
5031 tree type_as_written = type;
5032 tree main_type;
5034 /* A parameter declared as an array of T is really a pointer to T.
5035 One declared as a function is really a pointer to a function. */
5037 if (TREE_CODE (type) == ARRAY_TYPE)
5039 /* Transfer const-ness of array into that of type pointed to. */
5040 type = TREE_TYPE (type);
5041 if (constp || volatilep)
5042 type = c_build_type_variant (type, constp, volatilep);
5043 type = build_pointer_type (type);
5044 volatilep = constp = 0;
5045 size_varies = 0;
5047 else if (TREE_CODE (type) == FUNCTION_TYPE)
5049 if (pedantic && (constp || volatilep))
5050 pedwarn ("ANSI C forbids const or volatile function types");
5051 if (constp || volatilep)
5052 type = c_build_type_variant (type, constp, volatilep);
5053 type = build_pointer_type (type);
5054 volatilep = constp = 0;
5057 decl = build_decl (PARM_DECL, declarator, type);
5058 if (size_varies)
5059 C_DECL_VARIABLE_SIZE (decl) = 1;
5061 /* Compute the type actually passed in the parmlist,
5062 for the case where there is no prototype.
5063 (For example, shorts and chars are passed as ints.)
5064 When there is a prototype, this is overridden later. */
5066 DECL_ARG_TYPE (decl) = type;
5067 main_type = (type == error_mark_node
5068 ? error_mark_node
5069 : TYPE_MAIN_VARIANT (type));
5070 if (main_type == float_type_node)
5071 DECL_ARG_TYPE (decl) = double_type_node;
5072 /* Don't use TYPE_PRECISION to decide whether to promote,
5073 because we should convert short if it's the same size as int,
5074 but we should not convert long if it's the same size as int. */
5075 else if (TREE_CODE (main_type) != ERROR_MARK
5076 && C_PROMOTING_INTEGER_TYPE_P (main_type))
5078 if (TYPE_PRECISION (type) == TYPE_PRECISION (integer_type_node)
5079 && TREE_UNSIGNED (type))
5080 DECL_ARG_TYPE (decl) = unsigned_type_node;
5081 else
5082 DECL_ARG_TYPE (decl) = integer_type_node;
5085 DECL_ARG_TYPE_AS_WRITTEN (decl) = type_as_written;
5087 else if (decl_context == FIELD)
5089 /* Structure field. It may not be a function. */
5091 if (TREE_CODE (type) == FUNCTION_TYPE)
5093 error ("field `%s' declared as a function", name);
5094 type = build_pointer_type (type);
5096 else if (TREE_CODE (type) != ERROR_MARK && TYPE_SIZE (type) == 0)
5098 error ("field `%s' has incomplete type", name);
5099 type = error_mark_node;
5101 /* Move type qualifiers down to element of an array. */
5102 if (TREE_CODE (type) == ARRAY_TYPE && (constp || volatilep))
5104 type = build_array_type (c_build_type_variant (TREE_TYPE (type),
5105 constp, volatilep),
5106 TYPE_DOMAIN (type));
5107 #if 0 /* Leave the field const or volatile as well. */
5108 constp = volatilep = 0;
5109 #endif
5111 decl = build_decl (FIELD_DECL, declarator, type);
5112 if (size_varies)
5113 C_DECL_VARIABLE_SIZE (decl) = 1;
5115 else if (TREE_CODE (type) == FUNCTION_TYPE)
5117 /* Every function declaration is "external"
5118 except for those which are inside a function body
5119 in which `auto' is used.
5120 That is a case not specified by ANSI C,
5121 and we use it for forward declarations for nested functions. */
5122 int extern_ref = (!(specbits & (1 << (int) RID_AUTO))
5123 || current_binding_level == global_binding_level);
5125 if (specbits & (1 << (int) RID_AUTO)
5126 && (pedantic || current_binding_level == global_binding_level))
5127 pedwarn ("invalid storage class for function `%s'", name);
5128 if (specbits & (1 << (int) RID_REGISTER))
5129 error ("invalid storage class for function `%s'", name);
5130 /* Function declaration not at top level.
5131 Storage classes other than `extern' are not allowed
5132 and `extern' makes no difference. */
5133 if (current_binding_level != global_binding_level
5134 && (specbits & ((1 << (int) RID_STATIC) | (1 << (int) RID_INLINE)))
5135 && pedantic)
5136 pedwarn ("invalid storage class for function `%s'", name);
5138 /* If this is a block level extern, it must live past the end
5139 of the function so that we can check it against other
5140 extern declarations (IDENTIFIER_LIMBO_VALUE). */
5141 if (extern_ref && allocation_temporary_p ())
5142 end_temporary_allocation ();
5144 decl = build_decl (FUNCTION_DECL, declarator, type);
5145 decl = build_decl_attribute_variant (decl, decl_machine_attr);
5147 if (pedantic && (constp || volatilep)
5148 && ! DECL_IN_SYSTEM_HEADER (decl))
5149 pedwarn ("ANSI C forbids const or volatile functions");
5151 if (pedantic
5152 && TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (decl))) == void_type_node
5153 && (TYPE_READONLY (TREE_TYPE (TREE_TYPE (decl)))
5154 || TYPE_VOLATILE (TREE_TYPE (TREE_TYPE (decl))))
5155 && ! DECL_IN_SYSTEM_HEADER (decl))
5156 pedwarn ("ANSI C forbids const or volatile void function return type");
5158 if (volatilep
5159 && TREE_TYPE (TREE_TYPE (decl)) != void_type_node)
5160 warning ("`noreturn' function returns non-void value");
5162 if (extern_ref)
5163 DECL_EXTERNAL (decl) = 1;
5164 /* Record absence of global scope for `static' or `auto'. */
5165 TREE_PUBLIC (decl)
5166 = !(specbits & ((1 << (int) RID_STATIC) | (1 << (int) RID_AUTO)));
5168 /* Record presence of `inline', if it is reasonable. */
5169 if (inlinep)
5171 tree last = tree_last (TYPE_ARG_TYPES (type));
5173 if (! strcmp (IDENTIFIER_POINTER (declarator), "main"))
5174 warning ("cannot inline function `main'");
5175 else
5176 /* Assume that otherwise the function can be inlined. */
5177 DECL_INLINE (decl) = 1;
5179 if (specbits & (1 << (int) RID_EXTERN))
5180 current_extern_inline = 1;
5183 else
5185 /* It's a variable. */
5186 /* An uninitialized decl with `extern' is a reference. */
5187 int extern_ref = !initialized && (specbits & (1 << (int) RID_EXTERN));
5189 /* Move type qualifiers down to element of an array. */
5190 if (TREE_CODE (type) == ARRAY_TYPE && (constp || volatilep))
5192 type = build_array_type (c_build_type_variant (TREE_TYPE (type),
5193 constp, volatilep),
5194 TYPE_DOMAIN (type));
5195 #if 0 /* Leave the variable const or volatile as well. */
5196 constp = volatilep = 0;
5197 #endif
5200 /* If this is a block level extern, it must live past the end
5201 of the function so that we can check it against other
5202 extern declarations (IDENTIFIER_LIMBO_VALUE). */
5203 if (extern_ref && allocation_temporary_p ())
5204 end_temporary_allocation ();
5206 decl = build_decl (VAR_DECL, declarator, type);
5207 if (size_varies)
5208 C_DECL_VARIABLE_SIZE (decl) = 1;
5210 if (inlinep)
5211 pedwarn_with_decl (decl, "variable `%s' declared `inline'");
5213 DECL_EXTERNAL (decl) = extern_ref;
5214 /* At top level, the presence of a `static' or `register' storage
5215 class specifier, or the absence of all storage class specifiers
5216 makes this declaration a definition (perhaps tentative). Also,
5217 the absence of both `static' and `register' makes it public. */
5218 if (current_binding_level == global_binding_level)
5220 TREE_PUBLIC (decl)
5221 = !(specbits
5222 & ((1 << (int) RID_STATIC) | (1 << (int) RID_REGISTER)));
5223 TREE_STATIC (decl) = ! DECL_EXTERNAL (decl);
5225 /* Not at top level, only `static' makes a static definition. */
5226 else
5228 TREE_STATIC (decl) = (specbits & (1 << (int) RID_STATIC)) != 0;
5229 TREE_PUBLIC (decl) = DECL_EXTERNAL (decl);
5232 if (specbits & 1 << (int) RID_ITERATOR)
5233 ITERATOR_P (decl) = 1;
5236 /* Record `register' declaration for warnings on &
5237 and in case doing stupid register allocation. */
5239 if (specbits & (1 << (int) RID_REGISTER))
5240 DECL_REGISTER (decl) = 1;
5242 /* Record constancy and volatility. */
5244 if (constp)
5245 TREE_READONLY (decl) = 1;
5246 if (volatilep)
5248 TREE_SIDE_EFFECTS (decl) = 1;
5249 TREE_THIS_VOLATILE (decl) = 1;
5251 /* If a type has volatile components, it should be stored in memory.
5252 Otherwise, the fact that those components are volatile
5253 will be ignored, and would even crash the compiler. */
5254 if (C_TYPE_FIELDS_VOLATILE (TREE_TYPE (decl)))
5255 mark_addressable (decl);
5257 pop_obstacks ();
5259 return decl;
5263 /* Decode the parameter-list info for a function type or function definition.
5264 The argument is the value returned by `get_parm_info' (or made in parse.y
5265 if there is an identifier list instead of a parameter decl list).
5266 These two functions are separate because when a function returns
5267 or receives functions then each is called multiple times but the order
5268 of calls is different. The last call to `grokparms' is always the one
5269 that contains the formal parameter names of a function definition.
5271 Store in `last_function_parms' a chain of the decls of parms.
5272 Also store in `last_function_parm_tags' a chain of the struct, union,
5273 and enum tags declared among the parms.
5275 Return a list of arg types to use in the FUNCTION_TYPE for this function.
5277 FUNCDEF_FLAG is nonzero for a function definition, 0 for
5278 a mere declaration. A nonempty identifier-list gets an error message
5279 when FUNCDEF_FLAG is zero. */
5281 static tree
5282 grokparms (parms_info, funcdef_flag)
5283 tree parms_info;
5284 int funcdef_flag;
5286 tree first_parm = TREE_CHAIN (parms_info);
5288 last_function_parms = TREE_PURPOSE (parms_info);
5289 last_function_parm_tags = TREE_VALUE (parms_info);
5291 if (warn_strict_prototypes && first_parm == 0 && !funcdef_flag
5292 && !in_system_header)
5293 warning ("function declaration isn't a prototype");
5295 if (first_parm != 0
5296 && TREE_CODE (TREE_VALUE (first_parm)) == IDENTIFIER_NODE)
5298 if (! funcdef_flag)
5299 pedwarn ("parameter names (without types) in function declaration");
5301 last_function_parms = first_parm;
5302 return 0;
5304 else
5306 tree parm;
5307 tree typelt;
5308 /* We no longer test FUNCDEF_FLAG.
5309 If the arg types are incomplete in a declaration,
5310 they must include undefined tags.
5311 These tags can never be defined in the scope of the declaration,
5312 so the types can never be completed,
5313 and no call can be compiled successfully. */
5314 #if 0
5315 /* In a fcn definition, arg types must be complete. */
5316 if (funcdef_flag)
5317 #endif
5318 for (parm = last_function_parms, typelt = first_parm;
5319 parm;
5320 parm = TREE_CHAIN (parm))
5321 /* Skip over any enumeration constants declared here. */
5322 if (TREE_CODE (parm) == PARM_DECL)
5324 /* Barf if the parameter itself has an incomplete type. */
5325 tree type = TREE_VALUE (typelt);
5326 if (TYPE_SIZE (type) == 0)
5328 if (funcdef_flag && DECL_NAME (parm) != 0)
5329 error ("parameter `%s' has incomplete type",
5330 IDENTIFIER_POINTER (DECL_NAME (parm)));
5331 else
5332 warning ("parameter has incomplete type");
5333 if (funcdef_flag)
5335 TREE_VALUE (typelt) = error_mark_node;
5336 TREE_TYPE (parm) = error_mark_node;
5339 #if 0 /* This has been replaced by parm_tags_warning
5340 which uses a more accurate criterion for what to warn about. */
5341 else
5343 /* Now warn if is a pointer to an incomplete type. */
5344 while (TREE_CODE (type) == POINTER_TYPE
5345 || TREE_CODE (type) == REFERENCE_TYPE)
5346 type = TREE_TYPE (type);
5347 type = TYPE_MAIN_VARIANT (type);
5348 if (TYPE_SIZE (type) == 0)
5350 if (DECL_NAME (parm) != 0)
5351 warning ("parameter `%s' points to incomplete type",
5352 IDENTIFIER_POINTER (DECL_NAME (parm)));
5353 else
5354 warning ("parameter points to incomplete type");
5357 #endif
5358 typelt = TREE_CHAIN (typelt);
5361 /* Allocate the list of types the way we allocate a type. */
5362 if (first_parm && ! TREE_PERMANENT (first_parm))
5364 /* Construct a copy of the list of types
5365 on the saveable obstack. */
5366 tree result = NULL;
5367 for (typelt = first_parm; typelt; typelt = TREE_CHAIN (typelt))
5368 result = saveable_tree_cons (NULL_TREE, TREE_VALUE (typelt),
5369 result);
5370 return nreverse (result);
5372 else
5373 /* The list we have is permanent already. */
5374 return first_parm;
5379 /* Return a tree_list node with info on a parameter list just parsed.
5380 The TREE_PURPOSE is a chain of decls of those parms.
5381 The TREE_VALUE is a list of structure, union and enum tags defined.
5382 The TREE_CHAIN is a list of argument types to go in the FUNCTION_TYPE.
5383 This tree_list node is later fed to `grokparms'.
5385 VOID_AT_END nonzero means append `void' to the end of the type-list.
5386 Zero means the parmlist ended with an ellipsis so don't append `void'. */
5388 tree
5389 get_parm_info (void_at_end)
5390 int void_at_end;
5392 register tree decl, t;
5393 register tree types = 0;
5394 int erred = 0;
5395 tree tags = gettags ();
5396 tree parms = getdecls ();
5397 tree new_parms = 0;
5398 tree order = current_binding_level->parm_order;
5400 /* Just `void' (and no ellipsis) is special. There are really no parms. */
5401 if (void_at_end && parms != 0
5402 && TREE_CHAIN (parms) == 0
5403 && TYPE_MAIN_VARIANT (TREE_TYPE (parms)) == void_type_node
5404 && DECL_NAME (parms) == 0)
5406 parms = NULL_TREE;
5407 storedecls (NULL_TREE);
5408 return saveable_tree_cons (NULL_TREE, NULL_TREE,
5409 saveable_tree_cons (NULL_TREE, void_type_node, NULL_TREE));
5412 /* Extract enumerator values and other non-parms declared with the parms.
5413 Likewise any forward parm decls that didn't have real parm decls. */
5414 for (decl = parms; decl; )
5416 tree next = TREE_CHAIN (decl);
5418 if (TREE_CODE (decl) != PARM_DECL)
5420 TREE_CHAIN (decl) = new_parms;
5421 new_parms = decl;
5423 else if (TREE_ASM_WRITTEN (decl))
5425 error_with_decl (decl, "parameter `%s' has just a forward declaration");
5426 TREE_CHAIN (decl) = new_parms;
5427 new_parms = decl;
5429 decl = next;
5432 /* Put the parm decls back in the order they were in in the parm list. */
5433 for (t = order; t; t = TREE_CHAIN (t))
5435 if (TREE_CHAIN (t))
5436 TREE_CHAIN (TREE_VALUE (t)) = TREE_VALUE (TREE_CHAIN (t));
5437 else
5438 TREE_CHAIN (TREE_VALUE (t)) = 0;
5441 new_parms = chainon (order ? nreverse (TREE_VALUE (order)) : 0,
5442 new_parms);
5444 /* Store the parmlist in the binding level since the old one
5445 is no longer a valid list. (We have changed the chain pointers.) */
5446 storedecls (new_parms);
5448 for (decl = new_parms; decl; decl = TREE_CHAIN (decl))
5449 /* There may also be declarations for enumerators if an enumeration
5450 type is declared among the parms. Ignore them here. */
5451 if (TREE_CODE (decl) == PARM_DECL)
5453 /* Since there is a prototype,
5454 args are passed in their declared types. */
5455 tree type = TREE_TYPE (decl);
5456 DECL_ARG_TYPE (decl) = type;
5457 #ifdef PROMOTE_PROTOTYPES
5458 if ((TREE_CODE (type) == INTEGER_TYPE
5459 || TREE_CODE (type) == ENUMERAL_TYPE)
5460 && TYPE_PRECISION (type) < TYPE_PRECISION (integer_type_node))
5461 DECL_ARG_TYPE (decl) = integer_type_node;
5462 #endif
5464 types = saveable_tree_cons (NULL_TREE, TREE_TYPE (decl), types);
5465 if (TYPE_MAIN_VARIANT (TREE_VALUE (types)) == void_type_node && ! erred
5466 && DECL_NAME (decl) == 0)
5468 error ("`void' in parameter list must be the entire list");
5469 erred = 1;
5473 if (void_at_end)
5474 return saveable_tree_cons (new_parms, tags,
5475 nreverse (saveable_tree_cons (NULL_TREE, void_type_node, types)));
5477 return saveable_tree_cons (new_parms, tags, nreverse (types));
5480 /* At end of parameter list, warn about any struct, union or enum tags
5481 defined within. Do so because these types cannot ever become complete. */
5483 void
5484 parmlist_tags_warning ()
5486 tree elt;
5487 static int already;
5489 for (elt = current_binding_level->tags; elt; elt = TREE_CHAIN (elt))
5491 enum tree_code code = TREE_CODE (TREE_VALUE (elt));
5492 /* An anonymous union parm type is meaningful as a GNU extension.
5493 So don't warn for that. */
5494 if (code == UNION_TYPE && TREE_PURPOSE (elt) == 0 && !pedantic)
5495 continue;
5496 if (TREE_PURPOSE (elt) != 0)
5497 warning ("`%s %s' declared inside parameter list",
5498 (code == RECORD_TYPE ? "struct"
5499 : code == UNION_TYPE ? "union"
5500 : "enum"),
5501 IDENTIFIER_POINTER (TREE_PURPOSE (elt)));
5502 else
5503 warning ("anonymous %s declared inside parameter list",
5504 (code == RECORD_TYPE ? "struct"
5505 : code == UNION_TYPE ? "union"
5506 : "enum"));
5508 if (! already)
5510 warning ("its scope is only this definition or declaration,");
5511 warning ("which is probably not what you want.");
5512 already = 1;
5517 /* Get the struct, enum or union (CODE says which) with tag NAME.
5518 Define the tag as a forward-reference if it is not defined. */
5520 tree
5521 xref_tag (code, name)
5522 enum tree_code code;
5523 tree name;
5525 int temporary = allocation_temporary_p ();
5527 /* If a cross reference is requested, look up the type
5528 already defined for this tag and return it. */
5530 register tree ref = lookup_tag (code, name, current_binding_level, 0);
5531 /* Even if this is the wrong type of tag, return what we found.
5532 There will be an error message anyway, from pending_xref_error.
5533 If we create an empty xref just for an invalid use of the type,
5534 the main result is to create lots of superfluous error messages. */
5535 if (ref)
5536 return ref;
5538 push_obstacks_nochange ();
5540 if (current_binding_level == global_binding_level && temporary)
5541 end_temporary_allocation ();
5543 /* If no such tag is yet defined, create a forward-reference node
5544 and record it as the "definition".
5545 When a real declaration of this type is found,
5546 the forward-reference will be altered into a real type. */
5548 ref = make_node (code);
5549 if (code == ENUMERAL_TYPE)
5551 /* (In ANSI, Enums can be referred to only if already defined.) */
5552 if (pedantic)
5553 pedwarn ("ANSI C forbids forward references to `enum' types");
5554 /* Give the type a default layout like unsigned int
5555 to avoid crashing if it does not get defined. */
5556 TYPE_MODE (ref) = TYPE_MODE (unsigned_type_node);
5557 TYPE_ALIGN (ref) = TYPE_ALIGN (unsigned_type_node);
5558 TREE_UNSIGNED (ref) = 1;
5559 TYPE_PRECISION (ref) = TYPE_PRECISION (unsigned_type_node);
5560 TYPE_MIN_VALUE (ref) = TYPE_MIN_VALUE (unsigned_type_node);
5561 TYPE_MAX_VALUE (ref) = TYPE_MAX_VALUE (unsigned_type_node);
5564 pushtag (name, ref);
5566 pop_obstacks ();
5568 return ref;
5571 /* Make sure that the tag NAME is defined *in the current binding level*
5572 at least as a forward reference.
5573 CODE says which kind of tag NAME ought to be.
5575 We also do a push_obstacks_nochange
5576 whose matching pop is in finish_struct. */
5578 tree
5579 start_struct (code, name)
5580 enum tree_code code;
5581 tree name;
5583 /* If there is already a tag defined at this binding level
5584 (as a forward reference), just return it. */
5586 register tree ref = 0;
5588 push_obstacks_nochange ();
5589 if (current_binding_level == global_binding_level)
5590 end_temporary_allocation ();
5592 if (name != 0)
5593 ref = lookup_tag (code, name, current_binding_level, 1);
5594 if (ref && TREE_CODE (ref) == code)
5596 C_TYPE_BEING_DEFINED (ref) = 1;
5597 TYPE_PACKED (ref) = flag_pack_struct;
5598 if (TYPE_FIELDS (ref))
5599 error ((code == UNION_TYPE ? "redefinition of `union %s'"
5600 : "redefinition of `struct %s'"),
5601 IDENTIFIER_POINTER (name));
5603 return ref;
5606 /* Otherwise create a forward-reference just so the tag is in scope. */
5608 ref = make_node (code);
5609 pushtag (name, ref);
5610 C_TYPE_BEING_DEFINED (ref) = 1;
5611 TYPE_PACKED (ref) = flag_pack_struct;
5612 return ref;
5615 /* Process the specs, declarator (NULL if omitted) and width (NULL if omitted)
5616 of a structure component, returning a FIELD_DECL node.
5617 WIDTH is non-NULL for bit fields only, and is an INTEGER_CST node.
5619 This is done during the parsing of the struct declaration.
5620 The FIELD_DECL nodes are chained together and the lot of them
5621 are ultimately passed to `build_struct' to make the RECORD_TYPE node. */
5623 tree
5624 grokfield (filename, line, declarator, declspecs, width)
5625 char *filename;
5626 int line;
5627 tree declarator, declspecs, width;
5629 tree value;
5631 /* The corresponding pop_obstacks is in finish_decl. */
5632 push_obstacks_nochange ();
5634 value = grokdeclarator (declarator, declspecs, width ? BITFIELD : FIELD, 0);
5636 finish_decl (value, NULL_TREE, NULL_TREE);
5637 DECL_INITIAL (value) = width;
5639 maybe_objc_check_decl (value);
5640 return value;
5643 /* Function to help qsort sort FIELD_DECLs by name order. */
5645 static int
5646 field_decl_cmp (xp, yp)
5647 const GENERIC_PTR xp;
5648 const GENERIC_PTR yp;
5650 tree *x = (tree *)xp, *y = (tree *)yp;
5652 if (DECL_NAME (*x) == DECL_NAME (*y))
5653 return 0;
5654 if (DECL_NAME (*x) == NULL)
5655 return -1;
5656 if (DECL_NAME (*y) == NULL)
5657 return 1;
5658 if (DECL_NAME (*x) < DECL_NAME (*y))
5659 return -1;
5660 return 1;
5663 /* Fill in the fields of a RECORD_TYPE or UNION_TYPE node, T.
5664 FIELDLIST is a chain of FIELD_DECL nodes for the fields.
5665 ATTRIBUTES are attributes to be applied to the structure.
5667 We also do a pop_obstacks to match the push in start_struct. */
5669 tree
5670 finish_struct (t, fieldlist, attributes)
5671 tree t;
5672 tree fieldlist;
5673 tree attributes;
5675 register tree x;
5676 int old_momentary;
5677 int toplevel = global_binding_level == current_binding_level;
5679 /* If this type was previously laid out as a forward reference,
5680 make sure we lay it out again. */
5682 TYPE_SIZE (t) = 0;
5684 decl_attributes (t, attributes, NULL_TREE);
5686 /* Nameless union parm types are useful as GCC extension. */
5687 if (! (TREE_CODE (t) == UNION_TYPE && TYPE_NAME (t) == 0) && !pedantic)
5688 /* Otherwise, warn about any struct or union def. in parmlist. */
5689 if (in_parm_level_p ())
5691 if (pedantic)
5692 pedwarn ((TREE_CODE (t) == UNION_TYPE ? "union defined inside parms"
5693 : "structure defined inside parms"));
5694 else if (! flag_traditional)
5695 warning ((TREE_CODE (t) == UNION_TYPE ? "union defined inside parms"
5696 : "structure defined inside parms"));
5699 old_momentary = suspend_momentary ();
5701 if (pedantic)
5703 for (x = fieldlist; x; x = TREE_CHAIN (x))
5704 if (DECL_NAME (x) != 0)
5705 break;
5707 if (x == 0)
5708 pedwarn ("%s has no %smembers",
5709 (TREE_CODE (t) == UNION_TYPE ? "union" : "structure"),
5710 (fieldlist ? "named " : ""));
5713 /* Install struct as DECL_CONTEXT of each field decl.
5714 Also process specified field sizes.
5715 Set DECL_FIELD_SIZE to the specified size, or 0 if none specified.
5716 The specified size is found in the DECL_INITIAL.
5717 Store 0 there, except for ": 0" fields (so we can find them
5718 and delete them, below). */
5720 for (x = fieldlist; x; x = TREE_CHAIN (x))
5722 DECL_CONTEXT (x) = t;
5723 DECL_PACKED (x) |= TYPE_PACKED (t);
5724 DECL_FIELD_SIZE (x) = 0;
5726 /* If any field is const, the structure type is pseudo-const. */
5727 if (TREE_READONLY (x))
5728 C_TYPE_FIELDS_READONLY (t) = 1;
5729 else
5731 /* A field that is pseudo-const makes the structure likewise. */
5732 tree t1 = TREE_TYPE (x);
5733 while (TREE_CODE (t1) == ARRAY_TYPE)
5734 t1 = TREE_TYPE (t1);
5735 if ((TREE_CODE (t1) == RECORD_TYPE || TREE_CODE (t1) == UNION_TYPE)
5736 && C_TYPE_FIELDS_READONLY (t1))
5737 C_TYPE_FIELDS_READONLY (t) = 1;
5740 /* Any field that is volatile means variables of this type must be
5741 treated in some ways as volatile. */
5742 if (TREE_THIS_VOLATILE (x))
5743 C_TYPE_FIELDS_VOLATILE (t) = 1;
5745 /* Any field of nominal variable size implies structure is too. */
5746 if (C_DECL_VARIABLE_SIZE (x))
5747 C_TYPE_VARIABLE_SIZE (t) = 1;
5749 /* Detect invalid nested redefinition. */
5750 if (TREE_TYPE (x) == t)
5751 error ("nested redefinition of `%s'",
5752 IDENTIFIER_POINTER (TYPE_NAME (t)));
5754 /* Detect invalid bit-field size. */
5755 if (DECL_INITIAL (x))
5756 STRIP_NOPS (DECL_INITIAL (x));
5757 if (DECL_INITIAL (x))
5759 if (TREE_CODE (DECL_INITIAL (x)) == INTEGER_CST)
5760 constant_expression_warning (DECL_INITIAL (x));
5761 else
5763 error_with_decl (x, "bit-field `%s' width not an integer constant");
5764 DECL_INITIAL (x) = NULL;
5768 /* Detect invalid bit-field type. */
5769 if (DECL_INITIAL (x)
5770 && TREE_CODE (TREE_TYPE (x)) != INTEGER_TYPE
5771 && TREE_CODE (TREE_TYPE (x)) != ENUMERAL_TYPE)
5773 error_with_decl (x, "bit-field `%s' has invalid type");
5774 DECL_INITIAL (x) = NULL;
5776 if (DECL_INITIAL (x) && pedantic
5777 && TYPE_MAIN_VARIANT (TREE_TYPE (x)) != integer_type_node
5778 && TYPE_MAIN_VARIANT (TREE_TYPE (x)) != unsigned_type_node
5779 /* Accept an enum that's equivalent to int or unsigned int. */
5780 && !(TREE_CODE (TREE_TYPE (x)) == ENUMERAL_TYPE
5781 && (TYPE_PRECISION (TREE_TYPE (x))
5782 == TYPE_PRECISION (integer_type_node))))
5783 pedwarn_with_decl (x, "bit-field `%s' type invalid in ANSI C");
5785 /* Detect and ignore out of range field width. */
5786 if (DECL_INITIAL (x))
5788 unsigned HOST_WIDE_INT width = TREE_INT_CST_LOW (DECL_INITIAL (x));
5790 if (tree_int_cst_sgn (DECL_INITIAL (x)) < 0)
5792 DECL_INITIAL (x) = NULL;
5793 error_with_decl (x, "negative width in bit-field `%s'");
5795 else if (TREE_INT_CST_HIGH (DECL_INITIAL (x)) != 0
5796 || width > TYPE_PRECISION (TREE_TYPE (x)))
5798 DECL_INITIAL (x) = NULL;
5799 pedwarn_with_decl (x, "width of `%s' exceeds its type");
5801 else if (width == 0 && DECL_NAME (x) != 0)
5803 error_with_decl (x, "zero width for bit-field `%s'");
5804 DECL_INITIAL (x) = NULL;
5808 /* Process valid field width. */
5809 if (DECL_INITIAL (x))
5811 register int width = TREE_INT_CST_LOW (DECL_INITIAL (x));
5813 if (TREE_CODE (TREE_TYPE (x)) == ENUMERAL_TYPE
5814 && (width < min_precision (TYPE_MIN_VALUE (TREE_TYPE (x)),
5815 TREE_UNSIGNED (TREE_TYPE (x)))
5816 || width < min_precision (TYPE_MAX_VALUE (TREE_TYPE (x)),
5817 TREE_UNSIGNED (TREE_TYPE (x)))))
5818 warning_with_decl (x, "`%s' is narrower than values of its type");
5820 DECL_FIELD_SIZE (x) = width;
5821 DECL_BIT_FIELD (x) = DECL_C_BIT_FIELD (x) = 1;
5822 DECL_INITIAL (x) = NULL;
5824 if (width == 0)
5826 /* field size 0 => force desired amount of alignment. */
5827 #ifdef EMPTY_FIELD_BOUNDARY
5828 DECL_ALIGN (x) = MAX (DECL_ALIGN (x), EMPTY_FIELD_BOUNDARY);
5829 #endif
5830 #ifdef PCC_BITFIELD_TYPE_MATTERS
5831 if (PCC_BITFIELD_TYPE_MATTERS)
5832 DECL_ALIGN (x) = MAX (DECL_ALIGN (x),
5833 TYPE_ALIGN (TREE_TYPE (x)));
5834 #endif
5837 else if (TREE_TYPE (x) != error_mark_node)
5839 unsigned int min_align = (DECL_PACKED (x) ? BITS_PER_UNIT
5840 : TYPE_ALIGN (TREE_TYPE (x)));
5841 /* Non-bit-fields are aligned for their type, except packed
5842 fields which require only BITS_PER_UNIT alignment. */
5843 DECL_ALIGN (x) = MAX (DECL_ALIGN (x), min_align);
5847 /* Now DECL_INITIAL is null on all members. */
5849 /* Delete all duplicate fields from the fieldlist */
5850 for (x = fieldlist; x && TREE_CHAIN (x);)
5851 /* Anonymous fields aren't duplicates. */
5852 if (DECL_NAME (TREE_CHAIN (x)) == 0)
5853 x = TREE_CHAIN (x);
5854 else
5856 register tree y = fieldlist;
5858 while (1)
5860 if (DECL_NAME (y) == DECL_NAME (TREE_CHAIN (x)))
5861 break;
5862 if (y == x)
5863 break;
5864 y = TREE_CHAIN (y);
5866 if (DECL_NAME (y) == DECL_NAME (TREE_CHAIN (x)))
5868 error_with_decl (TREE_CHAIN (x), "duplicate member `%s'");
5869 TREE_CHAIN (x) = TREE_CHAIN (TREE_CHAIN (x));
5871 else x = TREE_CHAIN (x);
5874 /* Now we have the nearly final fieldlist. Record it,
5875 then lay out the structure or union (including the fields). */
5877 TYPE_FIELDS (t) = fieldlist;
5879 layout_type (t);
5881 /* Delete all zero-width bit-fields from the front of the fieldlist */
5882 while (fieldlist
5883 && DECL_INITIAL (fieldlist))
5884 fieldlist = TREE_CHAIN (fieldlist);
5885 /* Delete all such members from the rest of the fieldlist */
5886 for (x = fieldlist; x;)
5888 if (TREE_CHAIN (x) && DECL_INITIAL (TREE_CHAIN (x)))
5889 TREE_CHAIN (x) = TREE_CHAIN (TREE_CHAIN (x));
5890 else x = TREE_CHAIN (x);
5893 /* Now we have the truly final field list.
5894 Store it in this type and in the variants. */
5896 TYPE_FIELDS (t) = fieldlist;
5898 /* If there are lots of fields, sort so we can look through them fast.
5899 We arbitrarily consider 16 or more elts to be "a lot". */
5901 int len = 0;
5903 for (x = fieldlist; x; x = TREE_CHAIN (x))
5905 if (len > 15)
5906 break;
5907 len += 1;
5909 if (len > 15)
5911 tree *field_array;
5912 char *space;
5914 len += list_length (x);
5915 /* Use the same allocation policy here that make_node uses, to
5916 ensure that this lives as long as the rest of the struct decl.
5917 All decls in an inline function need to be saved. */
5918 if (allocation_temporary_p ())
5919 space = savealloc (sizeof (struct lang_type) + len * sizeof (tree));
5920 else
5921 space = oballoc (sizeof (struct lang_type) + len * sizeof (tree));
5923 TYPE_LANG_SPECIFIC (t) = (struct lang_type *) space;
5924 TYPE_LANG_SPECIFIC (t)->len = len;
5926 field_array = &TYPE_LANG_SPECIFIC (t)->elts[0];
5927 len = 0;
5928 for (x = fieldlist; x; x = TREE_CHAIN (x))
5929 field_array[len++] = x;
5931 qsort (field_array, len, sizeof (tree), field_decl_cmp);
5935 for (x = TYPE_MAIN_VARIANT (t); x; x = TYPE_NEXT_VARIANT (x))
5937 TYPE_FIELDS (x) = TYPE_FIELDS (t);
5938 TYPE_LANG_SPECIFIC (x) = TYPE_LANG_SPECIFIC (t);
5939 TYPE_ALIGN (x) = TYPE_ALIGN (t);
5942 /* If this was supposed to be a transparent union, but we can't
5943 make it one, warn and turn off the flag. */
5944 if (TREE_CODE (t) == UNION_TYPE
5945 && TYPE_TRANSPARENT_UNION (t)
5946 && TYPE_MODE (t) != DECL_MODE (TYPE_FIELDS (t)))
5948 TYPE_TRANSPARENT_UNION (t) = 0;
5949 warning ("union cannot be made transparent");
5952 /* If this structure or union completes the type of any previous
5953 variable declaration, lay it out and output its rtl. */
5955 if (current_binding_level->n_incomplete != 0)
5957 tree decl;
5958 for (decl = current_binding_level->names; decl; decl = TREE_CHAIN (decl))
5960 if (TREE_TYPE (decl) == t
5961 && TREE_CODE (decl) != TYPE_DECL)
5963 layout_decl (decl, 0);
5964 /* This is a no-op in c-lang.c or something real in objc-actions.c. */
5965 maybe_objc_check_decl (decl);
5966 rest_of_decl_compilation (decl, NULL_PTR, toplevel, 0);
5967 if (! toplevel)
5968 expand_decl (decl);
5969 --current_binding_level->n_incomplete;
5971 else if (TYPE_SIZE (TREE_TYPE (decl)) == 0
5972 && TREE_CODE (TREE_TYPE (decl)) == ARRAY_TYPE)
5974 tree element = TREE_TYPE (decl);
5975 while (TREE_CODE (element) == ARRAY_TYPE)
5976 element = TREE_TYPE (element);
5977 if (element == t)
5978 layout_array_type (TREE_TYPE (decl));
5983 resume_momentary (old_momentary);
5985 /* Finish debugging output for this type. */
5986 rest_of_type_compilation (t, toplevel);
5988 /* The matching push is in start_struct. */
5989 pop_obstacks ();
5991 return t;
5994 /* Lay out the type T, and its element type, and so on. */
5996 static void
5997 layout_array_type (t)
5998 tree t;
6000 if (TREE_CODE (TREE_TYPE (t)) == ARRAY_TYPE)
6001 layout_array_type (TREE_TYPE (t));
6002 layout_type (t);
6005 /* Begin compiling the definition of an enumeration type.
6006 NAME is its name (or null if anonymous).
6007 Returns the type object, as yet incomplete.
6008 Also records info about it so that build_enumerator
6009 may be used to declare the individual values as they are read. */
6011 tree
6012 start_enum (name)
6013 tree name;
6015 register tree enumtype = 0;
6017 /* If this is the real definition for a previous forward reference,
6018 fill in the contents in the same object that used to be the
6019 forward reference. */
6021 if (name != 0)
6022 enumtype = lookup_tag (ENUMERAL_TYPE, name, current_binding_level, 1);
6024 /* The corresponding pop_obstacks is in finish_enum. */
6025 push_obstacks_nochange ();
6026 /* If these symbols and types are global, make them permanent. */
6027 if (current_binding_level == global_binding_level)
6028 end_temporary_allocation ();
6030 if (enumtype == 0 || TREE_CODE (enumtype) != ENUMERAL_TYPE)
6032 enumtype = make_node (ENUMERAL_TYPE);
6033 pushtag (name, enumtype);
6036 C_TYPE_BEING_DEFINED (enumtype) = 1;
6038 if (TYPE_VALUES (enumtype) != 0)
6040 /* This enum is a named one that has been declared already. */
6041 error ("redeclaration of `enum %s'", IDENTIFIER_POINTER (name));
6043 /* Completely replace its old definition.
6044 The old enumerators remain defined, however. */
6045 TYPE_VALUES (enumtype) = 0;
6048 enum_next_value = integer_zero_node;
6049 enum_overflow = 0;
6051 if (flag_short_enums)
6052 TYPE_PACKED (enumtype) = 1;
6054 return enumtype;
6057 /* After processing and defining all the values of an enumeration type,
6058 install their decls in the enumeration type and finish it off.
6059 ENUMTYPE is the type object, VALUES a list of decl-value pairs,
6060 and ATTRIBUTES are the specified attributes.
6061 Returns ENUMTYPE. */
6063 tree
6064 finish_enum (enumtype, values, attributes)
6065 tree enumtype;
6066 tree values;
6067 tree attributes;
6069 register tree pair, tem;
6070 tree minnode = 0, maxnode = 0;
6071 int lowprec, highprec, precision;
6072 int toplevel = global_binding_level == current_binding_level;
6074 if (in_parm_level_p ())
6075 warning ("enum defined inside parms");
6077 decl_attributes (enumtype, attributes, NULL_TREE);
6079 /* Calculate the maximum value of any enumerator in this type. */
6081 if (values == error_mark_node)
6082 minnode = maxnode = integer_zero_node;
6083 else
6084 for (pair = values; pair; pair = TREE_CHAIN (pair))
6086 tree value = TREE_VALUE (pair);
6087 if (pair == values)
6088 minnode = maxnode = TREE_VALUE (pair);
6089 else
6091 if (tree_int_cst_lt (maxnode, value))
6092 maxnode = value;
6093 if (tree_int_cst_lt (value, minnode))
6094 minnode = value;
6098 TYPE_MIN_VALUE (enumtype) = minnode;
6099 TYPE_MAX_VALUE (enumtype) = maxnode;
6101 /* An enum can have some negative values; then it is signed. */
6102 TREE_UNSIGNED (enumtype) = tree_int_cst_sgn (minnode) >= 0;
6104 /* Determine the precision this type needs. */
6106 lowprec = min_precision (minnode, TREE_UNSIGNED (enumtype));
6107 highprec = min_precision (maxnode, TREE_UNSIGNED (enumtype));
6108 precision = MAX (lowprec, highprec);
6110 if (TYPE_PACKED (enumtype) || precision > TYPE_PRECISION (integer_type_node))
6112 tree narrowest = type_for_size (precision, 1);
6113 if (narrowest == 0)
6115 warning ("enumeration values exceed range of largest integer");
6116 narrowest = long_long_integer_type_node;
6119 TYPE_PRECISION (enumtype) = TYPE_PRECISION (narrowest);
6121 else
6122 TYPE_PRECISION (enumtype) = TYPE_PRECISION (integer_type_node);
6124 TYPE_SIZE (enumtype) = 0;
6125 layout_type (enumtype);
6127 if (values != error_mark_node)
6129 /* Change the type of the enumerators to be the enum type.
6130 Formerly this was done only for enums that fit in an int,
6131 but the comment said it was done only for enums wider than int.
6132 It seems necessary to do this for wide enums,
6133 and best not to change what's done for ordinary narrower ones. */
6134 for (pair = values; pair; pair = TREE_CHAIN (pair))
6136 TREE_TYPE (TREE_PURPOSE (pair)) = enumtype;
6137 DECL_SIZE (TREE_PURPOSE (pair)) = TYPE_SIZE (enumtype);
6138 if (TREE_CODE (TREE_PURPOSE (pair)) != FUNCTION_DECL)
6139 DECL_ALIGN (TREE_PURPOSE (pair)) = TYPE_ALIGN (enumtype);
6142 /* Replace the decl nodes in VALUES with their names. */
6143 for (pair = values; pair; pair = TREE_CHAIN (pair))
6144 TREE_PURPOSE (pair) = DECL_NAME (TREE_PURPOSE (pair));
6146 TYPE_VALUES (enumtype) = values;
6149 /* Fix up all variant types of this enum type. */
6150 for (tem = TYPE_MAIN_VARIANT (enumtype); tem; tem = TYPE_NEXT_VARIANT (tem))
6152 TYPE_VALUES (tem) = TYPE_VALUES (enumtype);
6153 TYPE_MIN_VALUE (tem) = TYPE_MIN_VALUE (enumtype);
6154 TYPE_MAX_VALUE (tem) = TYPE_MAX_VALUE (enumtype);
6155 TYPE_SIZE (tem) = TYPE_SIZE (enumtype);
6156 TYPE_MODE (tem) = TYPE_MODE (enumtype);
6157 TYPE_PRECISION (tem) = TYPE_PRECISION (enumtype);
6158 TYPE_ALIGN (tem) = TYPE_ALIGN (enumtype);
6159 TREE_UNSIGNED (tem) = TREE_UNSIGNED (enumtype);
6162 /* Finish debugging output for this type. */
6163 rest_of_type_compilation (enumtype, toplevel);
6165 /* This matches a push in start_enum. */
6166 pop_obstacks ();
6168 return enumtype;
6171 /* Build and install a CONST_DECL for one value of the
6172 current enumeration type (one that was begun with start_enum).
6173 Return a tree-list containing the CONST_DECL and its value.
6174 Assignment of sequential values by default is handled here. */
6176 tree
6177 build_enumerator (name, value)
6178 tree name, value;
6180 register tree decl, type;
6182 /* Validate and default VALUE. */
6184 /* Remove no-op casts from the value. */
6185 if (value)
6186 STRIP_TYPE_NOPS (value);
6188 if (value != 0)
6190 if (TREE_CODE (value) == INTEGER_CST)
6192 value = default_conversion (value);
6193 constant_expression_warning (value);
6195 else
6197 error ("enumerator value for `%s' not integer constant",
6198 IDENTIFIER_POINTER (name));
6199 value = 0;
6203 /* Default based on previous value. */
6204 /* It should no longer be possible to have NON_LVALUE_EXPR
6205 in the default. */
6206 if (value == 0)
6208 value = enum_next_value;
6209 if (enum_overflow)
6210 error ("overflow in enumeration values");
6213 if (pedantic && ! int_fits_type_p (value, integer_type_node))
6215 pedwarn ("ANSI C restricts enumerator values to range of `int'");
6216 value = integer_zero_node;
6219 /* Set basis for default for next value. */
6220 enum_next_value = build_binary_op (PLUS_EXPR, value, integer_one_node, 0);
6221 enum_overflow = tree_int_cst_lt (enum_next_value, value);
6223 /* Now create a declaration for the enum value name. */
6225 type = TREE_TYPE (value);
6226 type = type_for_size (MAX (TYPE_PRECISION (type),
6227 TYPE_PRECISION (integer_type_node)),
6228 ((flag_traditional
6229 || TYPE_PRECISION (type) >= TYPE_PRECISION (integer_type_node))
6230 && TREE_UNSIGNED (type)));
6232 decl = build_decl (CONST_DECL, name, type);
6233 DECL_INITIAL (decl) = value;
6234 TREE_TYPE (value) = type;
6235 pushdecl (decl);
6237 return saveable_tree_cons (decl, value, NULL_TREE);
6240 /* Create the FUNCTION_DECL for a function definition.
6241 DECLSPECS, DECLARATOR, PREFIX_ATTRIBUTES and ATTRIBUTES are the parts of
6242 the declaration; they describe the function's name and the type it returns,
6243 but twisted together in a fashion that parallels the syntax of C.
6245 This function creates a binding context for the function body
6246 as well as setting up the FUNCTION_DECL in current_function_decl.
6248 Returns 1 on success. If the DECLARATOR is not suitable for a function
6249 (it defines a datum instead), we return 0, which tells
6250 yyparse to report a parse error.
6252 NESTED is nonzero for a function nested within another function. */
6255 start_function (declspecs, declarator, prefix_attributes, attributes, nested)
6256 tree declarator, declspecs, prefix_attributes, attributes;
6257 int nested;
6259 tree decl1, old_decl;
6260 tree restype;
6261 int old_immediate_size_expand = immediate_size_expand;
6263 current_function_returns_value = 0; /* Assume, until we see it does. */
6264 current_function_returns_null = 0;
6265 warn_about_return_type = 0;
6266 current_extern_inline = 0;
6267 c_function_varargs = 0;
6268 named_labels = 0;
6269 shadowed_labels = 0;
6271 /* Don't expand any sizes in the return type of the function. */
6272 immediate_size_expand = 0;
6274 decl1 = grokdeclarator (declarator, declspecs, FUNCDEF, 1);
6276 /* If the declarator is not suitable for a function definition,
6277 cause a syntax error. */
6278 if (decl1 == 0)
6280 immediate_size_expand = old_immediate_size_expand;
6281 return 0;
6284 decl_attributes (decl1, prefix_attributes, attributes);
6286 announce_function (decl1);
6288 if (TYPE_SIZE (TREE_TYPE (TREE_TYPE (decl1))) == 0)
6290 error ("return-type is an incomplete type");
6291 /* Make it return void instead. */
6292 TREE_TYPE (decl1)
6293 = build_function_type (void_type_node,
6294 TYPE_ARG_TYPES (TREE_TYPE (decl1)));
6297 if (warn_about_return_type)
6298 warning ("return-type defaults to `int'");
6300 /* Save the parm names or decls from this function's declarator
6301 where store_parm_decls will find them. */
6302 current_function_parms = last_function_parms;
6303 current_function_parm_tags = last_function_parm_tags;
6305 /* Make the init_value nonzero so pushdecl knows this is not tentative.
6306 error_mark_node is replaced below (in poplevel) with the BLOCK. */
6307 DECL_INITIAL (decl1) = error_mark_node;
6309 /* If this definition isn't a prototype and we had a prototype declaration
6310 before, copy the arg type info from that prototype.
6311 But not if what we had before was a builtin function. */
6312 old_decl = lookup_name_current_level (DECL_NAME (decl1));
6313 if (old_decl != 0 && TREE_CODE (TREE_TYPE (old_decl)) == FUNCTION_TYPE
6314 && !DECL_BUILT_IN (old_decl)
6315 && (TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (decl1)))
6316 == TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (old_decl))))
6317 && TYPE_ARG_TYPES (TREE_TYPE (decl1)) == 0)
6319 TREE_TYPE (decl1) = TREE_TYPE (old_decl);
6320 current_function_prototype_file = DECL_SOURCE_FILE (old_decl);
6321 current_function_prototype_line = DECL_SOURCE_LINE (old_decl);
6324 /* If there is no explicit declaration, look for any out-of-scope implicit
6325 declarations. */
6326 if (old_decl == 0)
6327 old_decl = IDENTIFIER_IMPLICIT_DECL (DECL_NAME (decl1));
6329 /* Optionally warn of old-fashioned def with no previous prototype. */
6330 if (warn_strict_prototypes
6331 && TYPE_ARG_TYPES (TREE_TYPE (decl1)) == 0
6332 && !(old_decl != 0 && TYPE_ARG_TYPES (TREE_TYPE (old_decl)) != 0))
6333 warning ("function declaration isn't a prototype");
6334 /* Optionally warn of any global def with no previous prototype. */
6335 else if (warn_missing_prototypes
6336 && TREE_PUBLIC (decl1)
6337 && !(old_decl != 0 && TYPE_ARG_TYPES (TREE_TYPE (old_decl)) != 0)
6338 && strcmp ("main", IDENTIFIER_POINTER (DECL_NAME (decl1))))
6339 warning_with_decl (decl1, "no previous prototype for `%s'");
6340 /* Optionally warn of any def with no previous prototype
6341 if the function has already been used. */
6342 else if (warn_missing_prototypes
6343 && old_decl != 0 && TREE_USED (old_decl)
6344 && TYPE_ARG_TYPES (TREE_TYPE (old_decl)) == 0)
6345 warning_with_decl (decl1,
6346 "`%s' was used with no prototype before its definition");
6347 /* Optionally warn of any global def with no previous declaration. */
6348 else if (warn_missing_declarations
6349 && TREE_PUBLIC (decl1)
6350 && old_decl == 0
6351 && strcmp ("main", IDENTIFIER_POINTER (DECL_NAME (decl1))))
6352 warning_with_decl (decl1, "no previous declaration for `%s'");
6353 /* Optionally warn of any def with no previous declaration
6354 if the function has already been used. */
6355 else if (warn_missing_declarations
6356 && old_decl != 0 && TREE_USED (old_decl)
6357 && old_decl == IDENTIFIER_IMPLICIT_DECL (DECL_NAME (decl1)))
6358 warning_with_decl (decl1,
6359 "`%s' was used with no declaration before its definition");
6361 /* This is a definition, not a reference.
6362 So normally clear DECL_EXTERNAL.
6363 However, `extern inline' acts like a declaration
6364 except for defining how to inline. So set DECL_EXTERNAL in that case. */
6365 DECL_EXTERNAL (decl1) = current_extern_inline;
6367 /* This function exists in static storage.
6368 (This does not mean `static' in the C sense!) */
6369 TREE_STATIC (decl1) = 1;
6371 /* A nested function is not global. */
6372 if (current_function_decl != 0)
6373 TREE_PUBLIC (decl1) = 0;
6375 /* Warn for unlikely, improbable, or stupid declarations of `main'. */
6376 if (warn_main
6377 && strcmp ("main", IDENTIFIER_POINTER (DECL_NAME (decl1))) == 0)
6379 tree args;
6380 int argct = 0;
6382 if (TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (decl1)))
6383 != integer_type_node)
6384 pedwarn_with_decl (decl1, "return type of `%s' is not `int'");
6386 for (args = TYPE_ARG_TYPES (TREE_TYPE (decl1)); args;
6387 args = TREE_CHAIN (args))
6389 tree type = args ? TREE_VALUE (args) : 0;
6391 if (type == void_type_node)
6392 break;
6394 ++argct;
6395 switch (argct)
6397 case 1:
6398 if (TYPE_MAIN_VARIANT (type) != integer_type_node)
6399 pedwarn_with_decl (decl1,
6400 "first argument of `%s' should be `int'");
6401 break;
6403 case 2:
6404 if (TREE_CODE (type) != POINTER_TYPE
6405 || TREE_CODE (TREE_TYPE (type)) != POINTER_TYPE
6406 || (TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (type)))
6407 != char_type_node))
6408 pedwarn_with_decl (decl1,
6409 "second argument of `%s' should be `char **'");
6410 break;
6412 case 3:
6413 if (TREE_CODE (type) != POINTER_TYPE
6414 || TREE_CODE (TREE_TYPE (type)) != POINTER_TYPE
6415 || (TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (type)))
6416 != char_type_node))
6417 pedwarn_with_decl (decl1,
6418 "third argument of `%s' should probably be `char **'");
6419 break;
6423 /* It is intentional that this message does not mention the third
6424 argument, which is warned for only pedantically, because it's
6425 blessed by mention in an appendix of the standard. */
6426 if (argct > 0 && (argct < 2 || argct > 3))
6427 pedwarn_with_decl (decl1, "`%s' takes only zero or two arguments");
6429 if (argct == 3 && pedantic)
6430 pedwarn_with_decl (decl1, "third argument of `%s' is deprecated");
6432 if (! TREE_PUBLIC (decl1))
6433 pedwarn_with_decl (decl1, "`%s' is normally a non-static function");
6436 /* Record the decl so that the function name is defined.
6437 If we already have a decl for this name, and it is a FUNCTION_DECL,
6438 use the old decl. */
6440 current_function_decl = pushdecl (decl1);
6442 pushlevel (0);
6443 declare_parm_level (1);
6444 current_binding_level->subblocks_tag_transparent = 1;
6446 make_function_rtl (current_function_decl);
6448 restype = TREE_TYPE (TREE_TYPE (current_function_decl));
6449 /* Promote the value to int before returning it. */
6450 if (C_PROMOTING_INTEGER_TYPE_P (restype))
6452 /* It retains unsignedness if traditional
6453 or if not really getting wider. */
6454 if (TREE_UNSIGNED (restype)
6455 && (flag_traditional
6456 || (TYPE_PRECISION (restype)
6457 == TYPE_PRECISION (integer_type_node))))
6458 restype = unsigned_type_node;
6459 else
6460 restype = integer_type_node;
6462 DECL_RESULT (current_function_decl)
6463 = build_decl (RESULT_DECL, NULL_TREE, restype);
6465 if (!nested)
6466 /* Allocate further tree nodes temporarily during compilation
6467 of this function only. */
6468 temporary_allocation ();
6470 /* If this fcn was already referenced via a block-scope `extern' decl
6471 (or an implicit decl), propagate certain information about the usage. */
6472 if (TREE_ADDRESSABLE (DECL_ASSEMBLER_NAME (current_function_decl)))
6473 TREE_ADDRESSABLE (current_function_decl) = 1;
6475 immediate_size_expand = old_immediate_size_expand;
6477 return 1;
6480 /* Record that this function is going to be a varargs function.
6481 This is called before store_parm_decls, which is too early
6482 to call mark_varargs directly. */
6484 void
6485 c_mark_varargs ()
6487 c_function_varargs = 1;
6490 /* Store the parameter declarations into the current function declaration.
6491 This is called after parsing the parameter declarations, before
6492 digesting the body of the function.
6494 For an old-style definition, modify the function's type
6495 to specify at least the number of arguments. */
6497 void
6498 store_parm_decls ()
6500 register tree fndecl = current_function_decl;
6501 register tree parm;
6503 /* This is either a chain of PARM_DECLs (if a prototype was used)
6504 or a list of IDENTIFIER_NODEs (for an old-fashioned C definition). */
6505 tree specparms = current_function_parms;
6507 /* This is a list of types declared among parms in a prototype. */
6508 tree parmtags = current_function_parm_tags;
6510 /* This is a chain of PARM_DECLs from old-style parm declarations. */
6511 register tree parmdecls = getdecls ();
6513 /* This is a chain of any other decls that came in among the parm
6514 declarations. If a parm is declared with enum {foo, bar} x;
6515 then CONST_DECLs for foo and bar are put here. */
6516 tree nonparms = 0;
6518 /* Nonzero if this definition is written with a prototype. */
6519 int prototype = 0;
6521 if (specparms != 0 && TREE_CODE (specparms) != TREE_LIST)
6523 /* This case is when the function was defined with an ANSI prototype.
6524 The parms already have decls, so we need not do anything here
6525 except record them as in effect
6526 and complain if any redundant old-style parm decls were written. */
6528 register tree next;
6529 tree others = 0;
6531 prototype = 1;
6533 if (parmdecls != 0)
6535 tree decl, link;
6537 error_with_decl (fndecl,
6538 "parm types given both in parmlist and separately");
6539 /* Get rid of the erroneous decls; don't keep them on
6540 the list of parms, since they might not be PARM_DECLs. */
6541 for (decl = current_binding_level->names;
6542 decl; decl = TREE_CHAIN (decl))
6543 if (DECL_NAME (decl))
6544 IDENTIFIER_LOCAL_VALUE (DECL_NAME (decl)) = 0;
6545 for (link = current_binding_level->shadowed;
6546 link; link = TREE_CHAIN (link))
6547 IDENTIFIER_LOCAL_VALUE (TREE_PURPOSE (link)) = TREE_VALUE (link);
6548 current_binding_level->names = 0;
6549 current_binding_level->shadowed = 0;
6552 specparms = nreverse (specparms);
6553 for (parm = specparms; parm; parm = next)
6555 next = TREE_CHAIN (parm);
6556 if (TREE_CODE (parm) == PARM_DECL)
6558 if (DECL_NAME (parm) == 0)
6559 error_with_decl (parm, "parameter name omitted");
6560 else if (TYPE_MAIN_VARIANT (TREE_TYPE (parm)) == void_type_node)
6562 error_with_decl (parm, "parameter `%s' declared void");
6563 /* Change the type to error_mark_node so this parameter
6564 will be ignored by assign_parms. */
6565 TREE_TYPE (parm) = error_mark_node;
6567 pushdecl (parm);
6569 else
6571 /* If we find an enum constant or a type tag,
6572 put it aside for the moment. */
6573 TREE_CHAIN (parm) = 0;
6574 others = chainon (others, parm);
6578 /* Get the decls in their original chain order
6579 and record in the function. */
6580 DECL_ARGUMENTS (fndecl) = getdecls ();
6582 #if 0
6583 /* If this function takes a variable number of arguments,
6584 add a phony parameter to the end of the parm list,
6585 to represent the position of the first unnamed argument. */
6586 if (TREE_VALUE (tree_last (TYPE_ARG_TYPES (TREE_TYPE (fndecl))))
6587 != void_type_node)
6589 tree dummy = build_decl (PARM_DECL, NULL_TREE, void_type_node);
6590 /* Let's hope the address of the unnamed parm
6591 won't depend on its type. */
6592 TREE_TYPE (dummy) = integer_type_node;
6593 DECL_ARG_TYPE (dummy) = integer_type_node;
6594 DECL_ARGUMENTS (fndecl)
6595 = chainon (DECL_ARGUMENTS (fndecl), dummy);
6597 #endif
6599 /* Now pushdecl the enum constants. */
6600 for (parm = others; parm; parm = next)
6602 next = TREE_CHAIN (parm);
6603 if (DECL_NAME (parm) == 0)
6605 else if (TYPE_MAIN_VARIANT (TREE_TYPE (parm)) == void_type_node)
6607 else if (TREE_CODE (parm) != PARM_DECL)
6608 pushdecl (parm);
6611 storetags (chainon (parmtags, gettags ()));
6613 else
6615 /* SPECPARMS is an identifier list--a chain of TREE_LIST nodes
6616 each with a parm name as the TREE_VALUE.
6618 PARMDECLS is a chain of declarations for parameters.
6619 Warning! It can also contain CONST_DECLs which are not parameters
6620 but are names of enumerators of any enum types
6621 declared among the parameters.
6623 First match each formal parameter name with its declaration.
6624 Associate decls with the names and store the decls
6625 into the TREE_PURPOSE slots. */
6627 for (parm = parmdecls; parm; parm = TREE_CHAIN (parm))
6628 DECL_RESULT (parm) = 0;
6630 for (parm = specparms; parm; parm = TREE_CHAIN (parm))
6632 register tree tail, found = NULL;
6634 if (TREE_VALUE (parm) == 0)
6636 error_with_decl (fndecl, "parameter name missing from parameter list");
6637 TREE_PURPOSE (parm) = 0;
6638 continue;
6641 /* See if any of the parmdecls specifies this parm by name.
6642 Ignore any enumerator decls. */
6643 for (tail = parmdecls; tail; tail = TREE_CHAIN (tail))
6644 if (DECL_NAME (tail) == TREE_VALUE (parm)
6645 && TREE_CODE (tail) == PARM_DECL)
6647 found = tail;
6648 break;
6651 /* If declaration already marked, we have a duplicate name.
6652 Complain, and don't use this decl twice. */
6653 if (found && DECL_RESULT (found) != 0)
6655 error_with_decl (found, "multiple parameters named `%s'");
6656 found = 0;
6659 /* If the declaration says "void", complain and ignore it. */
6660 if (found && TYPE_MAIN_VARIANT (TREE_TYPE (found)) == void_type_node)
6662 error_with_decl (found, "parameter `%s' declared void");
6663 TREE_TYPE (found) = integer_type_node;
6664 DECL_ARG_TYPE (found) = integer_type_node;
6665 layout_decl (found, 0);
6668 /* Traditionally, a parm declared float is actually a double. */
6669 if (found && flag_traditional
6670 && TYPE_MAIN_VARIANT (TREE_TYPE (found)) == float_type_node)
6672 TREE_TYPE (found) = double_type_node;
6673 DECL_ARG_TYPE (found) = double_type_node;
6674 layout_decl (found, 0);
6677 /* If no declaration found, default to int. */
6678 if (!found)
6680 found = build_decl (PARM_DECL, TREE_VALUE (parm),
6681 integer_type_node);
6682 DECL_ARG_TYPE (found) = TREE_TYPE (found);
6683 DECL_SOURCE_LINE (found) = DECL_SOURCE_LINE (fndecl);
6684 DECL_SOURCE_FILE (found) = DECL_SOURCE_FILE (fndecl);
6685 if (extra_warnings)
6686 warning_with_decl (found, "type of `%s' defaults to `int'");
6687 pushdecl (found);
6690 TREE_PURPOSE (parm) = found;
6692 /* Mark this decl as "already found" -- see test, above.
6693 It is safe to use DECL_RESULT for this
6694 since it is not used in PARM_DECLs or CONST_DECLs. */
6695 DECL_RESULT (found) = error_mark_node;
6698 /* Put anything which is on the parmdecls chain and which is
6699 not a PARM_DECL onto the list NONPARMS. (The types of
6700 non-parm things which might appear on the list include
6701 enumerators and NULL-named TYPE_DECL nodes.) Complain about
6702 any actual PARM_DECLs not matched with any names. */
6704 nonparms = 0;
6705 for (parm = parmdecls; parm; )
6707 tree next = TREE_CHAIN (parm);
6708 TREE_CHAIN (parm) = 0;
6710 if (TREE_CODE (parm) != PARM_DECL)
6711 nonparms = chainon (nonparms, parm);
6712 else
6714 /* Complain about args with incomplete types. */
6715 if (TYPE_SIZE (TREE_TYPE (parm)) == 0)
6717 error_with_decl (parm, "parameter `%s' has incomplete type");
6718 TREE_TYPE (parm) = error_mark_node;
6721 if (DECL_RESULT (parm) == 0)
6723 error_with_decl (parm,
6724 "declaration for parameter `%s' but no such parameter");
6725 /* Pretend the parameter was not missing.
6726 This gets us to a standard state and minimizes
6727 further error messages. */
6728 specparms
6729 = chainon (specparms,
6730 tree_cons (parm, NULL_TREE, NULL_TREE));
6734 parm = next;
6737 /* Chain the declarations together in the order of the list of names. */
6738 /* Store that chain in the function decl, replacing the list of names. */
6739 parm = specparms;
6740 DECL_ARGUMENTS (fndecl) = 0;
6742 register tree last;
6743 for (last = 0; parm; parm = TREE_CHAIN (parm))
6744 if (TREE_PURPOSE (parm))
6746 if (last == 0)
6747 DECL_ARGUMENTS (fndecl) = TREE_PURPOSE (parm);
6748 else
6749 TREE_CHAIN (last) = TREE_PURPOSE (parm);
6750 last = TREE_PURPOSE (parm);
6751 TREE_CHAIN (last) = 0;
6755 /* If there was a previous prototype,
6756 set the DECL_ARG_TYPE of each argument according to
6757 the type previously specified, and report any mismatches. */
6759 if (TYPE_ARG_TYPES (TREE_TYPE (fndecl)))
6761 register tree type;
6762 for (parm = DECL_ARGUMENTS (fndecl),
6763 type = TYPE_ARG_TYPES (TREE_TYPE (fndecl));
6764 parm || (type && (TYPE_MAIN_VARIANT (TREE_VALUE (type))
6765 != void_type_node));
6766 parm = TREE_CHAIN (parm), type = TREE_CHAIN (type))
6768 if (parm == 0 || type == 0
6769 || TYPE_MAIN_VARIANT (TREE_VALUE (type)) == void_type_node)
6771 error ("number of arguments doesn't match prototype");
6772 error_with_file_and_line (current_function_prototype_file,
6773 current_function_prototype_line,
6774 "prototype declaration");
6775 break;
6777 /* Type for passing arg must be consistent
6778 with that declared for the arg. */
6779 if (! comptypes (DECL_ARG_TYPE (parm), TREE_VALUE (type)))
6781 if (TYPE_MAIN_VARIANT (TREE_TYPE (parm))
6782 == TYPE_MAIN_VARIANT (TREE_VALUE (type)))
6784 /* Adjust argument to match prototype. E.g. a previous
6785 `int foo(float);' prototype causes
6786 `int foo(x) float x; {...}' to be treated like
6787 `int foo(float x) {...}'. This is particularly
6788 useful for argument types like uid_t. */
6789 DECL_ARG_TYPE (parm) = TREE_TYPE (parm);
6790 #ifdef PROMOTE_PROTOTYPES
6791 if ((TREE_CODE (TREE_TYPE (parm)) == INTEGER_TYPE
6792 || TREE_CODE (TREE_TYPE (parm)) == ENUMERAL_TYPE)
6793 && TYPE_PRECISION (TREE_TYPE (parm))
6794 < TYPE_PRECISION (integer_type_node))
6795 DECL_ARG_TYPE (parm) = integer_type_node;
6796 #endif
6797 if (pedantic)
6799 pedwarn ("promoted argument `%s' doesn't match prototype",
6800 IDENTIFIER_POINTER (DECL_NAME (parm)));
6801 warning_with_file_and_line
6802 (current_function_prototype_file,
6803 current_function_prototype_line,
6804 "prototype declaration");
6807 /* If -traditional, allow `int' argument to match
6808 `unsigned' prototype. */
6809 else if (! (flag_traditional
6810 && TYPE_MAIN_VARIANT (TREE_TYPE (parm)) == integer_type_node
6811 && TYPE_MAIN_VARIANT (TREE_VALUE (type)) == unsigned_type_node))
6813 error ("argument `%s' doesn't match prototype",
6814 IDENTIFIER_POINTER (DECL_NAME (parm)));
6815 error_with_file_and_line (current_function_prototype_file,
6816 current_function_prototype_line,
6817 "prototype declaration");
6821 TYPE_ACTUAL_ARG_TYPES (TREE_TYPE (fndecl)) = 0;
6824 /* Otherwise, create a prototype that would match. */
6826 else
6828 tree actual = 0, last = 0, type;
6830 for (parm = DECL_ARGUMENTS (fndecl); parm; parm = TREE_CHAIN (parm))
6832 type = perm_tree_cons (NULL_TREE, DECL_ARG_TYPE (parm),
6833 NULL_TREE);
6834 if (last)
6835 TREE_CHAIN (last) = type;
6836 else
6837 actual = type;
6838 last = type;
6840 type = perm_tree_cons (NULL_TREE, void_type_node, NULL_TREE);
6841 if (last)
6842 TREE_CHAIN (last) = type;
6843 else
6844 actual = type;
6846 /* We are going to assign a new value for the TYPE_ACTUAL_ARG_TYPES
6847 of the type of this function, but we need to avoid having this
6848 affect the types of other similarly-typed functions, so we must
6849 first force the generation of an identical (but separate) type
6850 node for the relevant function type. The new node we create
6851 will be a variant of the main variant of the original function
6852 type. */
6854 TREE_TYPE (fndecl) = build_type_copy (TREE_TYPE (fndecl));
6856 TYPE_ACTUAL_ARG_TYPES (TREE_TYPE (fndecl)) = actual;
6859 /* Now store the final chain of decls for the arguments
6860 as the decl-chain of the current lexical scope.
6861 Put the enumerators in as well, at the front so that
6862 DECL_ARGUMENTS is not modified. */
6864 storedecls (chainon (nonparms, DECL_ARGUMENTS (fndecl)));
6867 /* Make sure the binding level for the top of the function body
6868 gets a BLOCK if there are any in the function.
6869 Otherwise, the dbx output is wrong. */
6871 keep_next_if_subblocks = 1;
6873 /* ??? This might be an improvement,
6874 but needs to be thought about some more. */
6875 #if 0
6876 keep_next_level_flag = 1;
6877 #endif
6879 /* Write a record describing this function definition to the prototypes
6880 file (if requested). */
6882 gen_aux_info_record (fndecl, 1, 0, prototype);
6884 /* Initialize the RTL code for the function. */
6886 init_function_start (fndecl, input_filename, lineno);
6888 /* If this is a varargs function, inform function.c. */
6890 if (c_function_varargs)
6891 mark_varargs ();
6893 /* Declare __FUNCTION__ and __PRETTY_FUNCTION__ for this function. */
6895 declare_function_name ();
6897 /* Set up parameters and prepare for return, for the function. */
6899 expand_function_start (fndecl, 0);
6901 /* If this function is `main', emit a call to `__main'
6902 to run global initializers, etc. */
6903 if (DECL_NAME (fndecl)
6904 && strcmp (IDENTIFIER_POINTER (DECL_NAME (fndecl)), "main") == 0
6905 && DECL_CONTEXT (fndecl) == NULL_TREE)
6906 expand_main_function ();
6909 /* SPECPARMS is an identifier list--a chain of TREE_LIST nodes
6910 each with a parm name as the TREE_VALUE. A null pointer as TREE_VALUE
6911 stands for an ellipsis in the identifier list.
6913 PARMLIST is the data returned by get_parm_info for the
6914 parmlist that follows the semicolon.
6916 We return a value of the same sort that get_parm_info returns,
6917 except that it describes the combination of identifiers and parmlist. */
6919 tree
6920 combine_parm_decls (specparms, parmlist, void_at_end)
6921 tree specparms, parmlist;
6922 int void_at_end;
6924 register tree fndecl = current_function_decl;
6925 register tree parm;
6927 tree parmdecls = TREE_PURPOSE (parmlist);
6929 /* This is a chain of any other decls that came in among the parm
6930 declarations. They were separated already by get_parm_info,
6931 so we just need to keep them separate. */
6932 tree nonparms = TREE_VALUE (parmlist);
6934 tree types = 0;
6936 for (parm = parmdecls; parm; parm = TREE_CHAIN (parm))
6937 DECL_RESULT (parm) = 0;
6939 for (parm = specparms; parm; parm = TREE_CHAIN (parm))
6941 register tree tail, found = NULL;
6943 /* See if any of the parmdecls specifies this parm by name. */
6944 for (tail = parmdecls; tail; tail = TREE_CHAIN (tail))
6945 if (DECL_NAME (tail) == TREE_VALUE (parm))
6947 found = tail;
6948 break;
6951 /* If declaration already marked, we have a duplicate name.
6952 Complain, and don't use this decl twice. */
6953 if (found && DECL_RESULT (found) != 0)
6955 error_with_decl (found, "multiple parameters named `%s'");
6956 found = 0;
6959 /* If the declaration says "void", complain and ignore it. */
6960 if (found && TYPE_MAIN_VARIANT (TREE_TYPE (found)) == void_type_node)
6962 error_with_decl (found, "parameter `%s' declared void");
6963 TREE_TYPE (found) = integer_type_node;
6964 DECL_ARG_TYPE (found) = integer_type_node;
6965 layout_decl (found, 0);
6968 /* Traditionally, a parm declared float is actually a double. */
6969 if (found && flag_traditional
6970 && TYPE_MAIN_VARIANT (TREE_TYPE (found)) == float_type_node)
6972 TREE_TYPE (found) = double_type_node;
6973 DECL_ARG_TYPE (found) = double_type_node;
6974 layout_decl (found, 0);
6977 /* If no declaration found, default to int. */
6978 if (!found)
6980 found = build_decl (PARM_DECL, TREE_VALUE (parm),
6981 integer_type_node);
6982 DECL_ARG_TYPE (found) = TREE_TYPE (found);
6983 DECL_SOURCE_LINE (found) = DECL_SOURCE_LINE (fndecl);
6984 DECL_SOURCE_FILE (found) = DECL_SOURCE_FILE (fndecl);
6985 error_with_decl (found, "type of parameter `%s' is not declared");
6986 pushdecl (found);
6989 TREE_PURPOSE (parm) = found;
6991 /* Mark this decl as "already found" -- see test, above.
6992 It is safe to use DECL_RESULT for this
6993 since it is not used in PARM_DECLs or CONST_DECLs. */
6994 DECL_RESULT (found) = error_mark_node;
6997 /* Complain about any actual PARM_DECLs not matched with any names. */
6999 for (parm = parmdecls; parm; )
7001 tree next = TREE_CHAIN (parm);
7002 TREE_CHAIN (parm) = 0;
7004 /* Complain about args with incomplete types. */
7005 if (TYPE_SIZE (TREE_TYPE (parm)) == 0)
7007 error_with_decl (parm, "parameter `%s' has incomplete type");
7008 TREE_TYPE (parm) = error_mark_node;
7011 if (DECL_RESULT (parm) == 0)
7013 error_with_decl (parm,
7014 "declaration for parameter `%s' but no such parameter");
7015 /* Pretend the parameter was not missing.
7016 This gets us to a standard state and minimizes
7017 further error messages. */
7018 specparms
7019 = chainon (specparms,
7020 tree_cons (parm, NULL_TREE, NULL_TREE));
7023 parm = next;
7026 /* Chain the declarations together in the order of the list of names.
7027 At the same time, build up a list of their types, in reverse order. */
7029 parm = specparms;
7030 parmdecls = 0;
7032 register tree last;
7033 for (last = 0; parm; parm = TREE_CHAIN (parm))
7034 if (TREE_PURPOSE (parm))
7036 if (last == 0)
7037 parmdecls = TREE_PURPOSE (parm);
7038 else
7039 TREE_CHAIN (last) = TREE_PURPOSE (parm);
7040 last = TREE_PURPOSE (parm);
7041 TREE_CHAIN (last) = 0;
7043 types = saveable_tree_cons (NULL_TREE, TREE_TYPE (parm), types);
7047 if (void_at_end)
7048 return saveable_tree_cons (parmdecls, nonparms,
7049 nreverse (saveable_tree_cons (NULL_TREE,
7050 void_type_node,
7051 types)));
7053 return saveable_tree_cons (parmdecls, nonparms, nreverse (types));
7056 /* Finish up a function declaration and compile that function
7057 all the way to assembler language output. The free the storage
7058 for the function definition.
7060 This is called after parsing the body of the function definition.
7062 NESTED is nonzero if the function being finished is nested in another. */
7064 void
7065 finish_function (nested)
7066 int nested;
7068 register tree fndecl = current_function_decl;
7070 /* TREE_READONLY (fndecl) = 1;
7071 This caused &foo to be of type ptr-to-const-function
7072 which then got a warning when stored in a ptr-to-function variable. */
7074 poplevel (1, 0, 1);
7075 BLOCK_SUPERCONTEXT (DECL_INITIAL (fndecl)) = fndecl;
7077 /* Must mark the RESULT_DECL as being in this function. */
7079 DECL_CONTEXT (DECL_RESULT (fndecl)) = fndecl;
7081 /* Obey `register' declarations if `setjmp' is called in this fn. */
7082 if (flag_traditional && current_function_calls_setjmp)
7084 setjmp_protect (DECL_INITIAL (fndecl));
7085 setjmp_protect_args ();
7088 if (! strcmp (IDENTIFIER_POINTER (DECL_NAME (fndecl)), "main"))
7090 if (TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (fndecl)))
7091 != integer_type_node)
7093 /* You would expect the sense of this test to be the other way
7094 around, but if warn_main is set, we will already have warned,
7095 so this would be a duplicate. This is the warning you get
7096 in some environments even if you *don't* ask for it, because
7097 these are environments where it may be more of a problem than
7098 usual. */
7099 if (! warn_main)
7100 pedwarn_with_decl (fndecl, "return type of `%s' is not `int'");
7102 else
7104 #ifdef DEFAULT_MAIN_RETURN
7105 /* Make it so that `main' always returns success by default. */
7106 DEFAULT_MAIN_RETURN;
7107 #endif
7111 /* Generate rtl for function exit. */
7112 expand_function_end (input_filename, lineno, 0);
7114 /* So we can tell if jump_optimize sets it to 1. */
7115 can_reach_end = 0;
7117 /* Run the optimizers and output the assembler code for this function. */
7118 rest_of_compilation (fndecl);
7120 current_function_returns_null |= can_reach_end;
7122 if (TREE_THIS_VOLATILE (fndecl) && current_function_returns_null)
7123 warning ("`noreturn' function does return");
7124 else if (warn_return_type && can_reach_end
7125 && TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (fndecl))) != void_type_node)
7126 /* If this function returns non-void and control can drop through,
7127 complain. */
7128 warning ("control reaches end of non-void function");
7129 /* With just -W, complain only if function returns both with
7130 and without a value. */
7131 else if (extra_warnings
7132 && current_function_returns_value && current_function_returns_null)
7133 warning ("this function may return with or without a value");
7135 /* If requested, warn about function definitions where the function will
7136 return a value (usually of some struct or union type) which itself will
7137 take up a lot of stack space. */
7139 if (warn_larger_than && !DECL_EXTERNAL (fndecl) && TREE_TYPE (fndecl))
7141 register tree ret_type = TREE_TYPE (TREE_TYPE (fndecl));
7143 if (ret_type)
7145 register tree ret_type_size = TYPE_SIZE (ret_type);
7147 if (TREE_CODE (ret_type_size) == INTEGER_CST)
7149 unsigned units
7150 = TREE_INT_CST_LOW (ret_type_size) / BITS_PER_UNIT;
7152 if (units > larger_than_size)
7153 warning_with_decl (fndecl,
7154 "size of return value of `%s' is %u bytes",
7155 units);
7160 /* Free all the tree nodes making up this function. */
7161 /* Switch back to allocating nodes permanently
7162 until we start another function. */
7163 if (! nested)
7164 permanent_allocation (1);
7166 if (DECL_SAVED_INSNS (fndecl) == 0 && ! nested)
7168 /* Stop pointing to the local nodes about to be freed. */
7169 /* But DECL_INITIAL must remain nonzero so we know this
7170 was an actual function definition. */
7171 /* For a nested function, this is done in pop_c_function_context. */
7172 /* If rest_of_compilation set this to 0, leave it 0. */
7173 if (DECL_INITIAL (fndecl) != 0)
7174 DECL_INITIAL (fndecl) = error_mark_node;
7175 DECL_ARGUMENTS (fndecl) = 0;
7178 if (DECL_STATIC_CONSTRUCTOR (fndecl))
7180 #ifndef ASM_OUTPUT_CONSTRUCTOR
7181 if (! flag_gnu_linker)
7182 static_ctors = perm_tree_cons (NULL_TREE, fndecl, static_ctors);
7183 else
7184 #endif
7185 assemble_constructor (IDENTIFIER_POINTER (DECL_NAME (fndecl)));
7187 if (DECL_STATIC_DESTRUCTOR (fndecl))
7189 #ifndef ASM_OUTPUT_DESTRUCTOR
7190 if (! flag_gnu_linker)
7191 static_dtors = perm_tree_cons (NULL_TREE, fndecl, static_dtors);
7192 else
7193 #endif
7194 assemble_destructor (IDENTIFIER_POINTER (DECL_NAME (fndecl)));
7197 if (! nested)
7199 /* Let the error reporting routines know that we're outside a
7200 function. For a nested function, this value is used in
7201 pop_c_function_context and then reset via pop_function_context. */
7202 current_function_decl = NULL;
7206 /* Save and restore the variables in this file and elsewhere
7207 that keep track of the progress of compilation of the current function.
7208 Used for nested functions. */
7210 struct c_function
7212 struct c_function *next;
7213 tree named_labels;
7214 tree shadowed_labels;
7215 int returns_value;
7216 int returns_null;
7217 int warn_about_return_type;
7218 int extern_inline;
7219 struct binding_level *binding_level;
7222 struct c_function *c_function_chain;
7224 /* Save and reinitialize the variables
7225 used during compilation of a C function. */
7227 void
7228 push_c_function_context ()
7230 struct c_function *p
7231 = (struct c_function *) xmalloc (sizeof (struct c_function));
7233 if (pedantic)
7234 pedwarn ("ANSI C forbids nested functions");
7236 push_function_context ();
7238 p->next = c_function_chain;
7239 c_function_chain = p;
7241 p->named_labels = named_labels;
7242 p->shadowed_labels = shadowed_labels;
7243 p->returns_value = current_function_returns_value;
7244 p->returns_null = current_function_returns_null;
7245 p->warn_about_return_type = warn_about_return_type;
7246 p->extern_inline = current_extern_inline;
7247 p->binding_level = current_binding_level;
7250 /* Restore the variables used during compilation of a C function. */
7252 void
7253 pop_c_function_context ()
7255 struct c_function *p = c_function_chain;
7256 tree link;
7258 /* Bring back all the labels that were shadowed. */
7259 for (link = shadowed_labels; link; link = TREE_CHAIN (link))
7260 if (DECL_NAME (TREE_VALUE (link)) != 0)
7261 IDENTIFIER_LABEL_VALUE (DECL_NAME (TREE_VALUE (link)))
7262 = TREE_VALUE (link);
7264 if (DECL_SAVED_INSNS (current_function_decl) == 0)
7266 /* Stop pointing to the local nodes about to be freed. */
7267 /* But DECL_INITIAL must remain nonzero so we know this
7268 was an actual function definition. */
7269 DECL_INITIAL (current_function_decl) = error_mark_node;
7270 DECL_ARGUMENTS (current_function_decl) = 0;
7273 pop_function_context ();
7275 c_function_chain = p->next;
7277 named_labels = p->named_labels;
7278 shadowed_labels = p->shadowed_labels;
7279 current_function_returns_value = p->returns_value;
7280 current_function_returns_null = p->returns_null;
7281 warn_about_return_type = p->warn_about_return_type;
7282 current_extern_inline = p->extern_inline;
7283 current_binding_level = p->binding_level;
7285 free (p);
7288 /* integrate_decl_tree calls this function, but since we don't use the
7289 DECL_LANG_SPECIFIC field, this is a no-op. */
7291 void
7292 copy_lang_decl (node)
7293 tree node;