(note_mem_written): Varying structure memory access with
[official-gcc.git] / gcc / c-decl.c
blob2ed017f36305f2b00151eb4e26604e3a26172db6
1 /* Process declarations and variables for C compiler.
2 Copyright (C) 1988, 92, 93, 94, 95, 1996 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 "tree.h"
31 #include "flags.h"
32 #include "output.h"
33 #include "c-tree.h"
34 #include "c-lex.h"
35 #include <stdio.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;
147 tree unsigned_intQI_type_node;
148 tree unsigned_intHI_type_node;
149 tree unsigned_intSI_type_node;
150 tree unsigned_intDI_type_node;
152 /* a VOID_TYPE node. */
154 tree void_type_node;
156 /* Nodes for types `void *' and `const void *'. */
158 tree ptr_type_node, const_ptr_type_node;
160 /* Nodes for types `char *' and `const char *'. */
162 tree string_type_node, const_string_type_node;
164 /* Type `char[SOMENUMBER]'.
165 Used when an array of char is needed and the size is irrelevant. */
167 tree char_array_type_node;
169 /* Type `int[SOMENUMBER]' or something like it.
170 Used when an array of int needed and the size is irrelevant. */
172 tree int_array_type_node;
174 /* Type `wchar_t[SOMENUMBER]' or something like it.
175 Used when a wide string literal is created. */
177 tree wchar_array_type_node;
179 /* type `int ()' -- used for implicit declaration of functions. */
181 tree default_function_type;
183 /* function types `double (double)' and `double (double, double)', etc. */
185 tree double_ftype_double, double_ftype_double_double;
186 tree int_ftype_int, long_ftype_long;
187 tree float_ftype_float;
188 tree ldouble_ftype_ldouble;
190 /* Function type `void (void *, void *, int)' and similar ones */
192 tree void_ftype_ptr_ptr_int, int_ftype_ptr_ptr_int, void_ftype_ptr_int_int;
194 /* Function type `char *(char *, char *)' and similar ones */
195 tree string_ftype_ptr_ptr, int_ftype_string_string;
197 /* Function type `int (const void *, const void *, size_t)' */
198 tree int_ftype_cptr_cptr_sizet;
200 /* Two expressions that are constants with value zero.
201 The first is of type `int', the second of type `void *'. */
203 tree integer_zero_node;
204 tree null_pointer_node;
206 /* A node for the integer constant 1. */
208 tree integer_one_node;
210 /* Nonzero if we have seen an invalid cross reference
211 to a struct, union, or enum, but not yet printed the message. */
213 tree pending_invalid_xref;
214 /* File and line to appear in the eventual error message. */
215 char *pending_invalid_xref_file;
216 int pending_invalid_xref_line;
218 /* While defining an enum type, this is 1 plus the last enumerator
219 constant value. Note that will do not have to save this or `enum_overflow'
220 around nested function definition since such a definition could only
221 occur in an enum value expression and we don't use these variables in
222 that case. */
224 static tree enum_next_value;
226 /* Nonzero means that there was overflow computing enum_next_value. */
228 static int enum_overflow;
230 /* Parsing a function declarator leaves a list of parameter names
231 or a chain or parameter decls here. */
233 static tree last_function_parms;
235 /* Parsing a function declarator leaves here a chain of structure
236 and enum types declared in the parmlist. */
238 static tree last_function_parm_tags;
240 /* After parsing the declarator that starts a function definition,
241 `start_function' puts here the list of parameter names or chain of decls.
242 `store_parm_decls' finds it here. */
244 static tree current_function_parms;
246 /* Similar, for last_function_parm_tags. */
247 static tree current_function_parm_tags;
249 /* Similar, for the file and line that the prototype came from if this is
250 an old-style definition. */
251 static char *current_function_prototype_file;
252 static int current_function_prototype_line;
254 /* A list (chain of TREE_LIST nodes) of all LABEL_DECLs in the function
255 that have names. Here so we can clear out their names' definitions
256 at the end of the function. */
258 static tree named_labels;
260 /* A list of LABEL_DECLs from outer contexts that are currently shadowed. */
262 static tree shadowed_labels;
264 /* Nonzero when store_parm_decls is called indicates a varargs function.
265 Value not meaningful after store_parm_decls. */
267 static int c_function_varargs;
269 /* The FUNCTION_DECL for the function currently being compiled,
270 or 0 if between functions. */
271 tree current_function_decl;
273 /* Set to 0 at beginning of a function definition, set to 1 if
274 a return statement that specifies a return value is seen. */
276 int current_function_returns_value;
278 /* Set to 0 at beginning of a function definition, set to 1 if
279 a return statement with no argument is seen. */
281 int current_function_returns_null;
283 /* Set to nonzero by `grokdeclarator' for a function
284 whose return type is defaulted, if warnings for this are desired. */
286 static int warn_about_return_type;
288 /* Nonzero when starting a function declared `extern inline'. */
290 static int current_extern_inline;
292 /* For each binding contour we allocate a binding_level structure
293 * which records the names defined in that contour.
294 * Contours include:
295 * 0) the global one
296 * 1) one for each function definition,
297 * where internal declarations of the parameters appear.
298 * 2) one for each compound statement,
299 * to record its declarations.
301 * The current meaning of a name can be found by searching the levels from
302 * the current one out to the global one.
305 /* Note that the information in the `names' component of the global contour
306 is duplicated in the IDENTIFIER_GLOBAL_VALUEs of all identifiers. */
308 struct binding_level
310 /* A chain of _DECL nodes for all variables, constants, functions,
311 and typedef types. These are in the reverse of the order supplied.
313 tree names;
315 /* A list of structure, union and enum definitions,
316 * for looking up tag names.
317 * It is a chain of TREE_LIST nodes, each of whose TREE_PURPOSE is a name,
318 * or NULL_TREE; and whose TREE_VALUE is a RECORD_TYPE, UNION_TYPE,
319 * or ENUMERAL_TYPE node.
321 tree tags;
323 /* For each level, a list of shadowed outer-level local definitions
324 to be restored when this level is popped.
325 Each link is a TREE_LIST whose TREE_PURPOSE is an identifier and
326 whose TREE_VALUE is its old definition (a kind of ..._DECL node). */
327 tree shadowed;
329 /* For each level (except not the global one),
330 a chain of BLOCK nodes for all the levels
331 that were entered and exited one level down. */
332 tree blocks;
334 /* The BLOCK node for this level, if one has been preallocated.
335 If 0, the BLOCK is allocated (if needed) when the level is popped. */
336 tree this_block;
338 /* The binding level which this one is contained in (inherits from). */
339 struct binding_level *level_chain;
341 /* Nonzero for the level that holds the parameters of a function. */
342 char parm_flag;
344 /* Nonzero if this level "doesn't exist" for tags. */
345 char tag_transparent;
347 /* Nonzero if sublevels of this level "don't exist" for tags.
348 This is set in the parm level of a function definition
349 while reading the function body, so that the outermost block
350 of the function body will be tag-transparent. */
351 char subblocks_tag_transparent;
353 /* Nonzero means make a BLOCK for this level regardless of all else. */
354 char keep;
356 /* Nonzero means make a BLOCK if this level has any subblocks. */
357 char keep_if_subblocks;
359 /* Number of decls in `names' that have incomplete
360 structure or union types. */
361 int n_incomplete;
363 /* A list of decls giving the (reversed) specified order of parms,
364 not including any forward-decls in the parmlist.
365 This is so we can put the parms in proper order for assign_parms. */
366 tree parm_order;
369 #define NULL_BINDING_LEVEL (struct binding_level *) NULL
371 /* The binding level currently in effect. */
373 static struct binding_level *current_binding_level;
375 /* A chain of binding_level structures awaiting reuse. */
377 static struct binding_level *free_binding_level;
379 /* The outermost binding level, for names of file scope.
380 This is created when the compiler is started and exists
381 through the entire run. */
383 static struct binding_level *global_binding_level;
385 /* Binding level structures are initialized by copying this one. */
387 static struct binding_level clear_binding_level
388 = {NULL, NULL, NULL, NULL, NULL, NULL_BINDING_LEVEL, 0, 0, 0, 0, 0, 0,
389 NULL};
391 /* Nonzero means unconditionally make a BLOCK for the next level pushed. */
393 static int keep_next_level_flag;
395 /* Nonzero means make a BLOCK for the next level pushed
396 if it has subblocks. */
398 static int keep_next_if_subblocks;
400 /* The chain of outer levels of label scopes.
401 This uses the same data structure used for binding levels,
402 but it works differently: each link in the chain records
403 saved values of named_labels and shadowed_labels for
404 a label binding level outside the current one. */
406 static struct binding_level *label_level_chain;
408 /* Functions called automatically at the beginning and end of execution. */
410 tree static_ctors, static_dtors;
412 /* Forward declarations. */
414 static struct binding_level * make_binding_level PROTO((void));
415 static void clear_limbo_values PROTO((tree));
416 static int duplicate_decls PROTO((tree, tree, int));
417 static char *redeclaration_error_message PROTO((tree, tree));
418 static void storedecls PROTO((tree));
419 static void storetags PROTO((tree));
420 static tree lookup_tag PROTO((enum tree_code, tree,
421 struct binding_level *, int));
422 static tree lookup_tag_reverse PROTO((tree));
423 static tree grokdeclarator PROTO((tree, tree, enum decl_context,
424 int));
425 static tree grokparms PROTO((tree, int));
426 static int field_decl_cmp PROTO((tree *, tree *));
427 static void layout_array_type PROTO((tree));
429 /* C-specific option variables. */
431 /* Nonzero means allow type mismatches in conditional expressions;
432 just make their values `void'. */
434 int flag_cond_mismatch;
436 /* Nonzero means give `double' the same size as `float'. */
438 int flag_short_double;
440 /* Nonzero means don't recognize the keyword `asm'. */
442 int flag_no_asm;
444 /* Nonzero means don't recognize any builtin functions. */
446 int flag_no_builtin;
448 /* Nonzero means don't recognize the non-ANSI builtin functions.
449 -ansi sets this. */
451 int flag_no_nonansi_builtin;
453 /* Nonzero means do some things the same way PCC does. */
455 int flag_traditional;
457 /* Nonzero means to allow single precision math even if we're generally
458 being traditional. */
459 int flag_allow_single_precision = 0;
461 /* Nonzero means to treat bitfields as signed unless they say `unsigned'. */
463 int flag_signed_bitfields = 1;
464 int explicit_flag_signed_bitfields = 0;
466 /* Nonzero means handle `#ident' directives. 0 means ignore them. */
468 int flag_no_ident = 0;
470 /* Nonzero means warn about implicit declarations. */
472 int warn_implicit;
474 /* Nonzero means give string constants the type `const char *'
475 to get extra warnings from them. These warnings will be too numerous
476 to be useful, except in thoroughly ANSIfied programs. */
478 int warn_write_strings;
480 /* Nonzero means warn about pointer casts that can drop a type qualifier
481 from the pointer target type. */
483 int warn_cast_qual;
485 /* Nonzero means warn when casting a function call to a type that does
486 not match the return type (e.g. (float)sqrt() or (anything*)malloc()
487 when there is no previous declaration of sqrt or malloc. */
489 int warn_bad_function_cast;
491 /* Warn about traditional constructs whose meanings changed in ANSI C. */
493 int warn_traditional;
495 /* Nonzero means warn about sizeof(function) or addition/subtraction
496 of function pointers. */
498 int warn_pointer_arith;
500 /* Nonzero means warn for non-prototype function decls
501 or non-prototyped defs without previous prototype. */
503 int warn_strict_prototypes;
505 /* Nonzero means warn for any global function def
506 without separate previous prototype decl. */
508 int warn_missing_prototypes;
510 /* Nonzero means warn for any global function def
511 without separate previous decl. */
513 int warn_missing_declarations;
515 /* Nonzero means warn about multiple (redundant) decls for the same single
516 variable or function. */
518 int warn_redundant_decls = 0;
520 /* Nonzero means warn about extern declarations of objects not at
521 file-scope level and about *all* declarations of functions (whether
522 extern or static) not at file-scope level. Note that we exclude
523 implicit function declarations. To get warnings about those, use
524 -Wimplicit. */
526 int warn_nested_externs = 0;
528 /* Warn about *printf or *scanf format/argument anomalies. */
530 int warn_format;
532 /* Warn about a subscript that has type char. */
534 int warn_char_subscripts = 0;
536 /* Warn if a type conversion is done that might have confusing results. */
538 int warn_conversion;
540 /* Warn if adding () is suggested. */
542 int warn_parentheses;
544 /* Warn if initializer is not completely bracketed. */
546 int warn_missing_braces;
548 /* Warn about comparison of signed and unsigned values. */
550 int warn_sign_compare;
552 /* Nonzero means `$' can be in an identifier.
553 See cccp.c for reasons why this breaks some obscure ANSI C programs. */
555 #ifndef DOLLARS_IN_IDENTIFIERS
556 #define DOLLARS_IN_IDENTIFIERS 1
557 #endif
558 int dollars_in_ident = DOLLARS_IN_IDENTIFIERS > 1;
560 /* Decode the string P as a language-specific option for C.
561 Return 1 if it is recognized (and handle it);
562 return 0 if not recognized. */
565 c_decode_option (p)
566 char *p;
568 if (!strcmp (p, "-ftraditional") || !strcmp (p, "-traditional"))
570 flag_traditional = 1;
571 flag_writable_strings = 1;
572 #if DOLLARS_IN_IDENTIFIERS > 0
573 dollars_in_ident = 1;
574 #endif
576 else if (!strcmp (p, "-fallow-single-precision"))
577 flag_allow_single_precision = 1;
578 else if (!strcmp (p, "-fnotraditional") || !strcmp (p, "-fno-traditional"))
580 flag_traditional = 0;
581 flag_writable_strings = 0;
582 dollars_in_ident = DOLLARS_IN_IDENTIFIERS > 1;
584 else if (!strcmp (p, "-fdollars-in-identifiers"))
586 #if DOLLARS_IN_IDENTIFIERS > 0
587 dollars_in_ident = 1;
588 #endif
590 else if (!strcmp (p, "-fno-dollars-in-identifiers"))
591 dollars_in_ident = 0;
592 else if (!strcmp (p, "-fsigned-char"))
593 flag_signed_char = 1;
594 else if (!strcmp (p, "-funsigned-char"))
595 flag_signed_char = 0;
596 else if (!strcmp (p, "-fno-signed-char"))
597 flag_signed_char = 0;
598 else if (!strcmp (p, "-fno-unsigned-char"))
599 flag_signed_char = 1;
600 else if (!strcmp (p, "-fsigned-bitfields")
601 || !strcmp (p, "-fno-unsigned-bitfields"))
603 flag_signed_bitfields = 1;
604 explicit_flag_signed_bitfields = 1;
606 else if (!strcmp (p, "-funsigned-bitfields")
607 || !strcmp (p, "-fno-signed-bitfields"))
609 flag_signed_bitfields = 0;
610 explicit_flag_signed_bitfields = 1;
612 else if (!strcmp (p, "-fshort-enums"))
613 flag_short_enums = 1;
614 else if (!strcmp (p, "-fno-short-enums"))
615 flag_short_enums = 0;
616 else if (!strcmp (p, "-fcond-mismatch"))
617 flag_cond_mismatch = 1;
618 else if (!strcmp (p, "-fno-cond-mismatch"))
619 flag_cond_mismatch = 0;
620 else if (!strcmp (p, "-fshort-double"))
621 flag_short_double = 1;
622 else if (!strcmp (p, "-fno-short-double"))
623 flag_short_double = 0;
624 else if (!strcmp (p, "-fasm"))
625 flag_no_asm = 0;
626 else if (!strcmp (p, "-fno-asm"))
627 flag_no_asm = 1;
628 else if (!strcmp (p, "-fbuiltin"))
629 flag_no_builtin = 0;
630 else if (!strcmp (p, "-fno-builtin"))
631 flag_no_builtin = 1;
632 else if (!strcmp (p, "-fno-ident"))
633 flag_no_ident = 1;
634 else if (!strcmp (p, "-fident"))
635 flag_no_ident = 0;
636 else if (!strcmp (p, "-ansi"))
637 flag_no_asm = 1, flag_no_nonansi_builtin = 1, dollars_in_ident = 0;
638 else if (!strcmp (p, "-Wimplicit"))
639 warn_implicit = 1;
640 else if (!strcmp (p, "-Wno-implicit"))
641 warn_implicit = 0;
642 else if (!strcmp (p, "-Wwrite-strings"))
643 warn_write_strings = 1;
644 else if (!strcmp (p, "-Wno-write-strings"))
645 warn_write_strings = 0;
646 else if (!strcmp (p, "-Wcast-qual"))
647 warn_cast_qual = 1;
648 else if (!strcmp (p, "-Wno-cast-qual"))
649 warn_cast_qual = 0;
650 else if (!strcmp (p, "-Wbad-function-cast"))
651 warn_bad_function_cast = 1;
652 else if (!strcmp (p, "-Wno-bad-function-cast"))
653 warn_bad_function_cast = 0;
654 else if (!strcmp (p, "-Wpointer-arith"))
655 warn_pointer_arith = 1;
656 else if (!strcmp (p, "-Wno-pointer-arith"))
657 warn_pointer_arith = 0;
658 else if (!strcmp (p, "-Wstrict-prototypes"))
659 warn_strict_prototypes = 1;
660 else if (!strcmp (p, "-Wno-strict-prototypes"))
661 warn_strict_prototypes = 0;
662 else if (!strcmp (p, "-Wmissing-prototypes"))
663 warn_missing_prototypes = 1;
664 else if (!strcmp (p, "-Wno-missing-prototypes"))
665 warn_missing_prototypes = 0;
666 else if (!strcmp (p, "-Wmissing-declarations"))
667 warn_missing_declarations = 1;
668 else if (!strcmp (p, "-Wno-missing-declarations"))
669 warn_missing_declarations = 0;
670 else if (!strcmp (p, "-Wredundant-decls"))
671 warn_redundant_decls = 1;
672 else if (!strcmp (p, "-Wno-redundant-decls"))
673 warn_redundant_decls = 0;
674 else if (!strcmp (p, "-Wnested-externs"))
675 warn_nested_externs = 1;
676 else if (!strcmp (p, "-Wno-nested-externs"))
677 warn_nested_externs = 0;
678 else if (!strcmp (p, "-Wtraditional"))
679 warn_traditional = 1;
680 else if (!strcmp (p, "-Wno-traditional"))
681 warn_traditional = 0;
682 else if (!strcmp (p, "-Wformat"))
683 warn_format = 1;
684 else if (!strcmp (p, "-Wno-format"))
685 warn_format = 0;
686 else if (!strcmp (p, "-Wchar-subscripts"))
687 warn_char_subscripts = 1;
688 else if (!strcmp (p, "-Wno-char-subscripts"))
689 warn_char_subscripts = 0;
690 else if (!strcmp (p, "-Wconversion"))
691 warn_conversion = 1;
692 else if (!strcmp (p, "-Wno-conversion"))
693 warn_conversion = 0;
694 else if (!strcmp (p, "-Wparentheses"))
695 warn_parentheses = 1;
696 else if (!strcmp (p, "-Wno-parentheses"))
697 warn_parentheses = 0;
698 else if (!strcmp (p, "-Wreturn-type"))
699 warn_return_type = 1;
700 else if (!strcmp (p, "-Wno-return-type"))
701 warn_return_type = 0;
702 else if (!strcmp (p, "-Wcomment"))
703 ; /* cpp handles this one. */
704 else if (!strcmp (p, "-Wno-comment"))
705 ; /* cpp handles this one. */
706 else if (!strcmp (p, "-Wcomments"))
707 ; /* cpp handles this one. */
708 else if (!strcmp (p, "-Wno-comments"))
709 ; /* cpp handles this one. */
710 else if (!strcmp (p, "-Wtrigraphs"))
711 ; /* cpp handles this one. */
712 else if (!strcmp (p, "-Wno-trigraphs"))
713 ; /* cpp handles this one. */
714 else if (!strcmp (p, "-Wimport"))
715 ; /* cpp handles this one. */
716 else if (!strcmp (p, "-Wno-import"))
717 ; /* cpp handles this one. */
718 else if (!strcmp (p, "-Wmissing-braces"))
719 warn_missing_braces = 1;
720 else if (!strcmp (p, "-Wno-missing-braces"))
721 warn_missing_braces = 0;
722 else if (!strcmp (p, "-Wsign-compare"))
723 warn_sign_compare = 1;
724 else if (!strcmp (p, "-Wno-sign-compare"))
725 warn_sign_compare = 0;
726 else if (!strcmp (p, "-Wall"))
728 /* We save the value of warn_uninitialized, since if they put
729 -Wuninitialized on the command line, we need to generate a
730 warning about not using it without also specifying -O. */
731 if (warn_uninitialized != 1)
732 warn_uninitialized = 2;
733 warn_implicit = 1;
734 warn_return_type = 1;
735 warn_unused = 1;
736 warn_switch = 1;
737 warn_format = 1;
738 warn_char_subscripts = 1;
739 warn_parentheses = 1;
740 warn_missing_braces = 1;
741 warn_sign_compare = 1;
743 else
744 return 0;
746 return 1;
749 /* Hooks for print_node. */
751 void
752 print_lang_decl (file, node, indent)
753 FILE *file;
754 tree node;
755 int indent;
759 void
760 print_lang_type (file, node, indent)
761 FILE *file;
762 tree node;
763 int indent;
767 void
768 print_lang_identifier (file, node, indent)
769 FILE *file;
770 tree node;
771 int indent;
773 print_node (file, "global", IDENTIFIER_GLOBAL_VALUE (node), indent + 4);
774 print_node (file, "local", IDENTIFIER_LOCAL_VALUE (node), indent + 4);
775 print_node (file, "label", IDENTIFIER_LABEL_VALUE (node), indent + 4);
776 print_node (file, "implicit", IDENTIFIER_IMPLICIT_DECL (node), indent + 4);
777 print_node (file, "error locus", IDENTIFIER_ERROR_LOCUS (node), indent + 4);
778 print_node (file, "limbo value", IDENTIFIER_LIMBO_VALUE (node), indent + 4);
781 /* Hook called at end of compilation to assume 1 elt
782 for a top-level array decl that wasn't complete before. */
784 void
785 finish_incomplete_decl (decl)
786 tree decl;
788 if (TREE_CODE (decl) == VAR_DECL)
790 tree type = TREE_TYPE (decl);
791 if (type != error_mark_node
792 && TREE_CODE (type) == ARRAY_TYPE
793 && TYPE_DOMAIN (type) == 0)
795 if (! DECL_EXTERNAL (decl))
796 warning_with_decl (decl, "array `%s' assumed to have one element");
798 complete_array_type (type, NULL_TREE, 1);
800 layout_decl (decl, 0);
805 /* Create a new `struct binding_level'. */
807 static
808 struct binding_level *
809 make_binding_level ()
811 /* NOSTRICT */
812 return (struct binding_level *) xmalloc (sizeof (struct binding_level));
815 /* Nonzero if we are currently in the global binding level. */
818 global_bindings_p ()
820 return current_binding_level == global_binding_level;
823 void
824 keep_next_level ()
826 keep_next_level_flag = 1;
829 /* Nonzero if the current level needs to have a BLOCK made. */
832 kept_level_p ()
834 return ((current_binding_level->keep_if_subblocks
835 && current_binding_level->blocks != 0)
836 || current_binding_level->keep
837 || current_binding_level->names != 0
838 || (current_binding_level->tags != 0
839 && !current_binding_level->tag_transparent));
842 /* Identify this binding level as a level of parameters.
843 DEFINITION_FLAG is 1 for a definition, 0 for a declaration.
844 But it turns out there is no way to pass the right value for
845 DEFINITION_FLAG, so we ignore it. */
847 void
848 declare_parm_level (definition_flag)
849 int definition_flag;
851 current_binding_level->parm_flag = 1;
854 /* Nonzero if currently making parm declarations. */
857 in_parm_level_p ()
859 return current_binding_level->parm_flag;
862 /* Enter a new binding level.
863 If TAG_TRANSPARENT is nonzero, do so only for the name space of variables,
864 not for that of tags. */
866 void
867 pushlevel (tag_transparent)
868 int tag_transparent;
870 register struct binding_level *newlevel = NULL_BINDING_LEVEL;
872 /* If this is the top level of a function,
873 just make sure that NAMED_LABELS is 0. */
875 if (current_binding_level == global_binding_level)
877 named_labels = 0;
880 /* Reuse or create a struct for this binding level. */
882 if (free_binding_level)
884 newlevel = free_binding_level;
885 free_binding_level = free_binding_level->level_chain;
887 else
889 newlevel = make_binding_level ();
892 /* Add this level to the front of the chain (stack) of levels that
893 are active. */
895 *newlevel = clear_binding_level;
896 newlevel->tag_transparent
897 = (tag_transparent
898 || (current_binding_level
899 ? current_binding_level->subblocks_tag_transparent
900 : 0));
901 newlevel->level_chain = current_binding_level;
902 current_binding_level = newlevel;
903 newlevel->keep = keep_next_level_flag;
904 keep_next_level_flag = 0;
905 newlevel->keep_if_subblocks = keep_next_if_subblocks;
906 keep_next_if_subblocks = 0;
909 /* Clear the limbo values of all identifiers defined in BLOCK or a subblock. */
911 static void
912 clear_limbo_values (block)
913 tree block;
915 tree tem;
917 for (tem = BLOCK_VARS (block); tem; tem = TREE_CHAIN (tem))
918 if (DECL_NAME (tem) != 0)
919 IDENTIFIER_LIMBO_VALUE (DECL_NAME (tem)) = 0;
921 for (tem = BLOCK_SUBBLOCKS (block); tem; tem = TREE_CHAIN (tem))
922 clear_limbo_values (tem);
925 /* Exit a binding level.
926 Pop the level off, and restore the state of the identifier-decl mappings
927 that were in effect when this level was entered.
929 If KEEP is nonzero, this level had explicit declarations, so
930 and create a "block" (a BLOCK node) for the level
931 to record its declarations and subblocks for symbol table output.
933 If FUNCTIONBODY is nonzero, this level is the body of a function,
934 so create a block as if KEEP were set and also clear out all
935 label names.
937 If REVERSE is nonzero, reverse the order of decls before putting
938 them into the BLOCK. */
940 tree
941 poplevel (keep, reverse, functionbody)
942 int keep;
943 int reverse;
944 int functionbody;
946 register tree link;
947 /* The chain of decls was accumulated in reverse order.
948 Put it into forward order, just for cleanliness. */
949 tree decls;
950 tree tags = current_binding_level->tags;
951 tree subblocks = current_binding_level->blocks;
952 tree block = 0;
953 tree decl;
954 int block_previously_created;
956 keep |= current_binding_level->keep;
958 /* This warning is turned off because it causes warnings for
959 declarations like `extern struct foo *x'. */
960 #if 0
961 /* Warn about incomplete structure types in this level. */
962 for (link = tags; link; link = TREE_CHAIN (link))
963 if (TYPE_SIZE (TREE_VALUE (link)) == 0)
965 tree type = TREE_VALUE (link);
966 char *errmsg;
967 switch (TREE_CODE (type))
969 case RECORD_TYPE:
970 errmsg = "`struct %s' incomplete in scope ending here";
971 break;
972 case UNION_TYPE:
973 errmsg = "`union %s' incomplete in scope ending here";
974 break;
975 case ENUMERAL_TYPE:
976 errmsg = "`enum %s' incomplete in scope ending here";
977 break;
979 if (TREE_CODE (TYPE_NAME (type)) == IDENTIFIER_NODE)
980 error (errmsg, IDENTIFIER_POINTER (TYPE_NAME (type)));
981 else
982 /* If this type has a typedef-name, the TYPE_NAME is a TYPE_DECL. */
983 error (errmsg, IDENTIFIER_POINTER (DECL_NAME (TYPE_NAME (type))));
985 #endif /* 0 */
987 /* Get the decls in the order they were written.
988 Usually current_binding_level->names is in reverse order.
989 But parameter decls were previously put in forward order. */
991 if (reverse)
992 current_binding_level->names
993 = decls = nreverse (current_binding_level->names);
994 else
995 decls = current_binding_level->names;
997 /* Output any nested inline functions within this block
998 if they weren't already output. */
1000 for (decl = decls; decl; decl = TREE_CHAIN (decl))
1001 if (TREE_CODE (decl) == FUNCTION_DECL
1002 && ! TREE_ASM_WRITTEN (decl)
1003 && DECL_INITIAL (decl) != 0
1004 && TREE_ADDRESSABLE (decl))
1006 /* If this decl was copied from a file-scope decl
1007 on account of a block-scope extern decl,
1008 propagate TREE_ADDRESSABLE to the file-scope decl.
1010 DECL_ABSTRACT_ORIGIN can be set to itself if warn_return_type is
1011 true, since then the decl goes through save_for_inline_copying. */
1012 if (DECL_ABSTRACT_ORIGIN (decl) != 0
1013 && DECL_ABSTRACT_ORIGIN (decl) != decl)
1014 TREE_ADDRESSABLE (DECL_ABSTRACT_ORIGIN (decl)) = 1;
1015 else
1017 push_function_context ();
1018 output_inline_function (decl);
1019 pop_function_context ();
1023 /* If there were any declarations or structure tags in that level,
1024 or if this level is a function body,
1025 create a BLOCK to record them for the life of this function. */
1027 block = 0;
1028 block_previously_created = (current_binding_level->this_block != 0);
1029 if (block_previously_created)
1030 block = current_binding_level->this_block;
1031 else if (keep || functionbody
1032 || (current_binding_level->keep_if_subblocks && subblocks != 0))
1033 block = make_node (BLOCK);
1034 if (block != 0)
1036 BLOCK_VARS (block) = decls;
1037 BLOCK_TYPE_TAGS (block) = tags;
1038 BLOCK_SUBBLOCKS (block) = subblocks;
1039 remember_end_note (block);
1042 /* In each subblock, record that this is its superior. */
1044 for (link = subblocks; link; link = TREE_CHAIN (link))
1045 BLOCK_SUPERCONTEXT (link) = block;
1047 /* Clear out the meanings of the local variables of this level. */
1049 for (link = decls; link; link = TREE_CHAIN (link))
1051 if (DECL_NAME (link) != 0)
1053 /* If the ident. was used or addressed via a local extern decl,
1054 don't forget that fact. */
1055 if (DECL_EXTERNAL (link))
1057 if (TREE_USED (link))
1058 TREE_USED (DECL_NAME (link)) = 1;
1059 if (TREE_ADDRESSABLE (link))
1060 TREE_ADDRESSABLE (DECL_ASSEMBLER_NAME (link)) = 1;
1062 IDENTIFIER_LOCAL_VALUE (DECL_NAME (link)) = 0;
1066 /* Restore all name-meanings of the outer levels
1067 that were shadowed by this level. */
1069 for (link = current_binding_level->shadowed; link; link = TREE_CHAIN (link))
1070 IDENTIFIER_LOCAL_VALUE (TREE_PURPOSE (link)) = TREE_VALUE (link);
1072 /* If the level being exited is the top level of a function,
1073 check over all the labels, and clear out the current
1074 (function local) meanings of their names. */
1076 if (functionbody)
1078 clear_limbo_values (block);
1080 /* If this is the top level block of a function,
1081 the vars are the function's parameters.
1082 Don't leave them in the BLOCK because they are
1083 found in the FUNCTION_DECL instead. */
1085 BLOCK_VARS (block) = 0;
1087 /* Clear out the definitions of all label names,
1088 since their scopes end here,
1089 and add them to BLOCK_VARS. */
1091 for (link = named_labels; link; link = TREE_CHAIN (link))
1093 register tree label = TREE_VALUE (link);
1095 if (DECL_INITIAL (label) == 0)
1097 error_with_decl (label, "label `%s' used but not defined");
1098 /* Avoid crashing later. */
1099 define_label (input_filename, lineno,
1100 DECL_NAME (label));
1102 else if (warn_unused && !TREE_USED (label))
1103 warning_with_decl (label, "label `%s' defined but not used");
1104 IDENTIFIER_LABEL_VALUE (DECL_NAME (label)) = 0;
1106 /* Put the labels into the "variables" of the
1107 top-level block, so debugger can see them. */
1108 TREE_CHAIN (label) = BLOCK_VARS (block);
1109 BLOCK_VARS (block) = label;
1113 /* Pop the current level, and free the structure for reuse. */
1116 register struct binding_level *level = current_binding_level;
1117 current_binding_level = current_binding_level->level_chain;
1119 level->level_chain = free_binding_level;
1120 free_binding_level = level;
1123 /* Dispose of the block that we just made inside some higher level. */
1124 if (functionbody)
1125 DECL_INITIAL (current_function_decl) = block;
1126 else if (block)
1128 if (!block_previously_created)
1129 current_binding_level->blocks
1130 = chainon (current_binding_level->blocks, block);
1132 /* If we did not make a block for the level just exited,
1133 any blocks made for inner levels
1134 (since they cannot be recorded as subblocks in that level)
1135 must be carried forward so they will later become subblocks
1136 of something else. */
1137 else if (subblocks)
1138 current_binding_level->blocks
1139 = chainon (current_binding_level->blocks, subblocks);
1141 /* Set the TYPE_CONTEXTs for all of the tagged types belonging to this
1142 binding contour so that they point to the appropriate construct, i.e.
1143 either to the current FUNCTION_DECL node, or else to the BLOCK node
1144 we just constructed.
1146 Note that for tagged types whose scope is just the formal parameter
1147 list for some function type specification, we can't properly set
1148 their TYPE_CONTEXTs here, because we don't have a pointer to the
1149 appropriate FUNCTION_TYPE node readily available to us. For those
1150 cases, the TYPE_CONTEXTs of the relevant tagged type nodes get set
1151 in `grokdeclarator' as soon as we have created the FUNCTION_TYPE
1152 node which will represent the "scope" for these "parameter list local"
1153 tagged types.
1156 if (functionbody)
1157 for (link = tags; link; link = TREE_CHAIN (link))
1158 TYPE_CONTEXT (TREE_VALUE (link)) = current_function_decl;
1159 else if (block)
1160 for (link = tags; link; link = TREE_CHAIN (link))
1161 TYPE_CONTEXT (TREE_VALUE (link)) = block;
1163 if (block)
1164 TREE_USED (block) = 1;
1165 return block;
1168 /* Delete the node BLOCK from the current binding level.
1169 This is used for the block inside a stmt expr ({...})
1170 so that the block can be reinserted where appropriate. */
1172 void
1173 delete_block (block)
1174 tree block;
1176 tree t;
1177 if (current_binding_level->blocks == block)
1178 current_binding_level->blocks = TREE_CHAIN (block);
1179 for (t = current_binding_level->blocks; t;)
1181 if (TREE_CHAIN (t) == block)
1182 TREE_CHAIN (t) = TREE_CHAIN (block);
1183 else
1184 t = TREE_CHAIN (t);
1186 TREE_CHAIN (block) = NULL;
1187 /* Clear TREE_USED which is always set by poplevel.
1188 The flag is set again if insert_block is called. */
1189 TREE_USED (block) = 0;
1192 /* Insert BLOCK at the end of the list of subblocks of the
1193 current binding level. This is used when a BIND_EXPR is expanded,
1194 to handle the BLOCK node inside the BIND_EXPR. */
1196 void
1197 insert_block (block)
1198 tree block;
1200 TREE_USED (block) = 1;
1201 current_binding_level->blocks
1202 = chainon (current_binding_level->blocks, block);
1205 /* Set the BLOCK node for the innermost scope
1206 (the one we are currently in). */
1208 void
1209 set_block (block)
1210 register tree block;
1212 current_binding_level->this_block = block;
1215 void
1216 push_label_level ()
1218 register struct binding_level *newlevel;
1220 /* Reuse or create a struct for this binding level. */
1222 if (free_binding_level)
1224 newlevel = free_binding_level;
1225 free_binding_level = free_binding_level->level_chain;
1227 else
1229 newlevel = make_binding_level ();
1232 /* Add this level to the front of the chain (stack) of label levels. */
1234 newlevel->level_chain = label_level_chain;
1235 label_level_chain = newlevel;
1237 newlevel->names = named_labels;
1238 newlevel->shadowed = shadowed_labels;
1239 named_labels = 0;
1240 shadowed_labels = 0;
1243 void
1244 pop_label_level ()
1246 register struct binding_level *level = label_level_chain;
1247 tree link, prev;
1249 /* Clear out the definitions of the declared labels in this level.
1250 Leave in the list any ordinary, non-declared labels. */
1251 for (link = named_labels, prev = 0; link;)
1253 if (C_DECLARED_LABEL_FLAG (TREE_VALUE (link)))
1255 if (DECL_SOURCE_LINE (TREE_VALUE (link)) == 0)
1257 error_with_decl (TREE_VALUE (link),
1258 "label `%s' used but not defined");
1259 /* Avoid crashing later. */
1260 define_label (input_filename, lineno,
1261 DECL_NAME (TREE_VALUE (link)));
1263 else if (warn_unused && !TREE_USED (TREE_VALUE (link)))
1264 warning_with_decl (TREE_VALUE (link),
1265 "label `%s' defined but not used");
1266 IDENTIFIER_LABEL_VALUE (DECL_NAME (TREE_VALUE (link))) = 0;
1268 /* Delete this element from the list. */
1269 link = TREE_CHAIN (link);
1270 if (prev)
1271 TREE_CHAIN (prev) = link;
1272 else
1273 named_labels = link;
1275 else
1277 prev = link;
1278 link = TREE_CHAIN (link);
1282 /* Bring back all the labels that were shadowed. */
1283 for (link = shadowed_labels; link; link = TREE_CHAIN (link))
1284 if (DECL_NAME (TREE_VALUE (link)) != 0)
1285 IDENTIFIER_LABEL_VALUE (DECL_NAME (TREE_VALUE (link)))
1286 = TREE_VALUE (link);
1288 named_labels = chainon (named_labels, level->names);
1289 shadowed_labels = level->shadowed;
1291 /* Pop the current level, and free the structure for reuse. */
1292 label_level_chain = label_level_chain->level_chain;
1293 level->level_chain = free_binding_level;
1294 free_binding_level = level;
1297 /* Push a definition or a declaration of struct, union or enum tag "name".
1298 "type" should be the type node.
1299 We assume that the tag "name" is not already defined.
1301 Note that the definition may really be just a forward reference.
1302 In that case, the TYPE_SIZE will be zero. */
1304 void
1305 pushtag (name, type)
1306 tree name, type;
1308 register struct binding_level *b;
1310 /* Find the proper binding level for this type tag. */
1312 for (b = current_binding_level; b->tag_transparent; b = b->level_chain)
1313 continue;
1315 if (name)
1317 /* Record the identifier as the type's name if it has none. */
1319 if (TYPE_NAME (type) == 0)
1320 TYPE_NAME (type) = name;
1323 if (b == global_binding_level)
1324 b->tags = perm_tree_cons (name, type, b->tags);
1325 else
1326 b->tags = saveable_tree_cons (name, type, b->tags);
1328 /* Create a fake NULL-named TYPE_DECL node whose TREE_TYPE will be the
1329 tagged type we just added to the current binding level. This fake
1330 NULL-named TYPE_DECL node helps dwarfout.c to know when it needs
1331 to output a representation of a tagged type, and it also gives
1332 us a convenient place to record the "scope start" address for the
1333 tagged type. */
1335 TYPE_STUB_DECL (type) = pushdecl (build_decl (TYPE_DECL, NULL_TREE, type));
1338 /* Handle when a new declaration NEWDECL
1339 has the same name as an old one OLDDECL
1340 in the same binding contour.
1341 Prints an error message if appropriate.
1343 If safely possible, alter OLDDECL to look like NEWDECL, and return 1.
1344 Otherwise, return 0.
1346 When DIFFERENT_BINDING_LEVEL is true, NEWDECL is an external declaration,
1347 and OLDDECL is in an outer binding level and should thus not be changed. */
1349 static int
1350 duplicate_decls (newdecl, olddecl, different_binding_level)
1351 register tree newdecl, olddecl;
1352 int different_binding_level;
1354 int types_match = comptypes (TREE_TYPE (newdecl), TREE_TYPE (olddecl));
1355 int new_is_definition = (TREE_CODE (newdecl) == FUNCTION_DECL
1356 && DECL_INITIAL (newdecl) != 0);
1357 tree oldtype = TREE_TYPE (olddecl);
1358 tree newtype = TREE_TYPE (newdecl);
1359 char *errmsg = 0;
1361 if (TREE_CODE_CLASS (TREE_CODE (olddecl)) == 'd')
1362 DECL_MACHINE_ATTRIBUTES (newdecl) = DECL_MACHINE_ATTRIBUTES (olddecl);
1364 if (TREE_CODE (newtype) == ERROR_MARK
1365 || TREE_CODE (oldtype) == ERROR_MARK)
1366 types_match = 0;
1368 /* New decl is completely inconsistent with the old one =>
1369 tell caller to replace the old one.
1370 This is always an error except in the case of shadowing a builtin. */
1371 if (TREE_CODE (olddecl) != TREE_CODE (newdecl))
1373 if (TREE_CODE (olddecl) == FUNCTION_DECL
1374 && (DECL_BUILT_IN (olddecl)
1375 || DECL_BUILT_IN_NONANSI (olddecl)))
1377 /* If you declare a built-in or predefined function name as static,
1378 the old definition is overridden,
1379 but optionally warn this was a bad choice of name. */
1380 if (!TREE_PUBLIC (newdecl))
1382 if (!warn_shadow)
1384 else if (DECL_BUILT_IN (olddecl))
1385 warning_with_decl (newdecl, "shadowing built-in function `%s'");
1386 else
1387 warning_with_decl (newdecl, "shadowing library function `%s'");
1389 /* Likewise, if the built-in is not ansi, then programs can
1390 override it even globally without an error. */
1391 else if (! DECL_BUILT_IN (olddecl))
1392 warning_with_decl (newdecl,
1393 "library function `%s' declared as non-function");
1395 else if (DECL_BUILT_IN_NONANSI (olddecl))
1396 warning_with_decl (newdecl,
1397 "built-in function `%s' declared as non-function");
1398 else
1399 warning_with_decl (newdecl,
1400 "built-in function `%s' declared as non-function");
1402 else
1404 error_with_decl (newdecl, "`%s' redeclared as different kind of symbol");
1405 error_with_decl (olddecl, "previous declaration of `%s'");
1408 return 0;
1411 /* For real parm decl following a forward decl,
1412 return 1 so old decl will be reused. */
1413 if (types_match && TREE_CODE (newdecl) == PARM_DECL
1414 && TREE_ASM_WRITTEN (olddecl) && ! TREE_ASM_WRITTEN (newdecl))
1415 return 1;
1417 /* The new declaration is the same kind of object as the old one.
1418 The declarations may partially match. Print warnings if they don't
1419 match enough. Ultimately, copy most of the information from the new
1420 decl to the old one, and keep using the old one. */
1422 if (flag_traditional && TREE_CODE (newdecl) == FUNCTION_DECL
1423 && IDENTIFIER_IMPLICIT_DECL (DECL_NAME (newdecl)) == olddecl
1424 && DECL_INITIAL (olddecl) == 0)
1425 /* If -traditional, avoid error for redeclaring fcn
1426 after implicit decl. */
1428 else if (TREE_CODE (olddecl) == FUNCTION_DECL
1429 && DECL_BUILT_IN (olddecl))
1431 /* A function declaration for a built-in function. */
1432 if (!TREE_PUBLIC (newdecl))
1434 /* If you declare a built-in function name as static, the
1435 built-in definition is overridden,
1436 but optionally warn this was a bad choice of name. */
1437 if (warn_shadow)
1438 warning_with_decl (newdecl, "shadowing built-in function `%s'");
1439 /* Discard the old built-in function. */
1440 return 0;
1442 else if (!types_match)
1444 /* Accept the return type of the new declaration if same modes. */
1445 tree oldreturntype = TREE_TYPE (oldtype);
1446 tree newreturntype = TREE_TYPE (newtype);
1448 /* Make sure we put the new type in the same obstack as the old ones.
1449 If the old types are not both in the same obstack, use the
1450 permanent one. */
1451 if (TYPE_OBSTACK (oldtype) == TYPE_OBSTACK (newtype))
1452 push_obstacks (TYPE_OBSTACK (oldtype), TYPE_OBSTACK (oldtype));
1453 else
1455 push_obstacks_nochange ();
1456 end_temporary_allocation ();
1459 if (TYPE_MODE (oldreturntype) == TYPE_MODE (newreturntype))
1461 /* Function types may be shared, so we can't just modify
1462 the return type of olddecl's function type. */
1463 tree trytype
1464 = build_function_type (newreturntype,
1465 TYPE_ARG_TYPES (oldtype));
1467 types_match = comptypes (newtype, trytype);
1468 if (types_match)
1469 oldtype = trytype;
1471 /* Accept harmless mismatch in first argument type also.
1472 This is for ffs. */
1473 if (TYPE_ARG_TYPES (TREE_TYPE (newdecl)) != 0
1474 && TYPE_ARG_TYPES (oldtype) != 0
1475 && TREE_VALUE (TYPE_ARG_TYPES (newtype)) != 0
1476 && TREE_VALUE (TYPE_ARG_TYPES (oldtype)) != 0
1477 && (TYPE_MODE (TREE_VALUE (TYPE_ARG_TYPES (newtype)))
1478 == TYPE_MODE (TREE_VALUE (TYPE_ARG_TYPES (oldtype)))))
1480 /* Function types may be shared, so we can't just modify
1481 the return type of olddecl's function type. */
1482 tree trytype
1483 = build_function_type (TREE_TYPE (oldtype),
1484 tree_cons (NULL_TREE,
1485 TREE_VALUE (TYPE_ARG_TYPES (newtype)),
1486 TREE_CHAIN (TYPE_ARG_TYPES (oldtype))));
1488 types_match = comptypes (newtype, trytype);
1489 if (types_match)
1490 oldtype = trytype;
1492 if (! different_binding_level)
1493 TREE_TYPE (olddecl) = oldtype;
1495 pop_obstacks ();
1497 if (!types_match)
1499 /* If types don't match for a built-in, throw away the built-in. */
1500 warning_with_decl (newdecl, "conflicting types for built-in function `%s'");
1501 return 0;
1504 else if (TREE_CODE (olddecl) == FUNCTION_DECL
1505 && DECL_SOURCE_LINE (olddecl) == 0)
1507 /* A function declaration for a predeclared function
1508 that isn't actually built in. */
1509 if (!TREE_PUBLIC (newdecl))
1511 /* If you declare it as static, the
1512 default definition is overridden. */
1513 return 0;
1515 else if (!types_match)
1517 /* If the types don't match, preserve volatility indication.
1518 Later on, we will discard everything else about the
1519 default declaration. */
1520 TREE_THIS_VOLATILE (newdecl) |= TREE_THIS_VOLATILE (olddecl);
1523 /* Permit char *foo () to match void *foo (...) if not pedantic,
1524 if one of them came from a system header file. */
1525 else if (!types_match
1526 && TREE_CODE (olddecl) == FUNCTION_DECL
1527 && TREE_CODE (newdecl) == FUNCTION_DECL
1528 && TREE_CODE (TREE_TYPE (oldtype)) == POINTER_TYPE
1529 && TREE_CODE (TREE_TYPE (newtype)) == POINTER_TYPE
1530 && (DECL_IN_SYSTEM_HEADER (olddecl)
1531 || DECL_IN_SYSTEM_HEADER (newdecl))
1532 && ((TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (newtype))) == void_type_node
1533 && TYPE_ARG_TYPES (oldtype) == 0
1534 && self_promoting_args_p (TYPE_ARG_TYPES (newtype))
1535 && TREE_TYPE (TREE_TYPE (oldtype)) == char_type_node)
1537 (TREE_TYPE (TREE_TYPE (newtype)) == char_type_node
1538 && TYPE_ARG_TYPES (newtype) == 0
1539 && self_promoting_args_p (TYPE_ARG_TYPES (oldtype))
1540 && TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (oldtype))) == void_type_node)))
1542 if (pedantic)
1543 pedwarn_with_decl (newdecl, "conflicting types for `%s'");
1544 /* Make sure we keep void * as ret type, not char *. */
1545 if (TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (oldtype))) == void_type_node)
1546 TREE_TYPE (newdecl) = newtype = oldtype;
1548 /* Set DECL_IN_SYSTEM_HEADER, so that if we see another declaration
1549 we will come back here again. */
1550 DECL_IN_SYSTEM_HEADER (newdecl) = 1;
1552 else if (!types_match
1553 /* Permit char *foo (int, ...); followed by char *foo ();
1554 if not pedantic. */
1555 && ! (TREE_CODE (olddecl) == FUNCTION_DECL
1556 && ! pedantic
1557 /* Return types must still match. */
1558 && comptypes (TREE_TYPE (oldtype),
1559 TREE_TYPE (newtype))
1560 && TYPE_ARG_TYPES (newtype) == 0))
1562 error_with_decl (newdecl, "conflicting types for `%s'");
1563 /* Check for function type mismatch
1564 involving an empty arglist vs a nonempty one. */
1565 if (TREE_CODE (olddecl) == FUNCTION_DECL
1566 && comptypes (TREE_TYPE (oldtype),
1567 TREE_TYPE (newtype))
1568 && ((TYPE_ARG_TYPES (oldtype) == 0
1569 && DECL_INITIAL (olddecl) == 0)
1571 (TYPE_ARG_TYPES (newtype) == 0
1572 && DECL_INITIAL (newdecl) == 0)))
1574 /* Classify the problem further. */
1575 register tree t = TYPE_ARG_TYPES (oldtype);
1576 if (t == 0)
1577 t = TYPE_ARG_TYPES (newtype);
1578 for (; t; t = TREE_CHAIN (t))
1580 register tree type = TREE_VALUE (t);
1582 if (TREE_CHAIN (t) == 0
1583 && TYPE_MAIN_VARIANT (type) != void_type_node)
1585 error ("A parameter list with an ellipsis can't match");
1586 error ("an empty parameter name list declaration.");
1587 break;
1590 if (TYPE_MAIN_VARIANT (type) == float_type_node
1591 || C_PROMOTING_INTEGER_TYPE_P (type))
1593 error ("An argument type that has a default promotion");
1594 error ("can't match an empty parameter name list declaration.");
1595 break;
1599 error_with_decl (olddecl, "previous declaration of `%s'");
1601 else
1603 errmsg = redeclaration_error_message (newdecl, olddecl);
1604 if (errmsg)
1606 error_with_decl (newdecl, errmsg);
1607 error_with_decl (olddecl,
1608 ((DECL_INITIAL (olddecl)
1609 && current_binding_level == global_binding_level)
1610 ? "`%s' previously defined here"
1611 : "`%s' previously declared here"));
1613 else if (TREE_CODE (newdecl) == TYPE_DECL
1614 && (DECL_IN_SYSTEM_HEADER (olddecl)
1615 || DECL_IN_SYSTEM_HEADER (newdecl)))
1617 warning_with_decl (newdecl, "redefinition of `%s'");
1618 warning_with_decl
1619 (olddecl,
1620 ((DECL_INITIAL (olddecl)
1621 && current_binding_level == global_binding_level)
1622 ? "`%s' previously defined here"
1623 : "`%s' previously declared here"));
1625 else if (TREE_CODE (olddecl) == FUNCTION_DECL
1626 && DECL_INITIAL (olddecl) != 0
1627 && TYPE_ARG_TYPES (oldtype) == 0
1628 && TYPE_ARG_TYPES (newtype) != 0
1629 && TYPE_ACTUAL_ARG_TYPES (oldtype) != 0)
1631 register tree type, parm;
1632 register int nargs;
1633 /* Prototype decl follows defn w/o prototype. */
1635 for (parm = TYPE_ACTUAL_ARG_TYPES (oldtype),
1636 type = TYPE_ARG_TYPES (newtype),
1637 nargs = 1;
1638 (TYPE_MAIN_VARIANT (TREE_VALUE (parm)) != void_type_node
1639 || TYPE_MAIN_VARIANT (TREE_VALUE (type)) != void_type_node);
1640 parm = TREE_CHAIN (parm), type = TREE_CHAIN (type), nargs++)
1642 if (TYPE_MAIN_VARIANT (TREE_VALUE (parm)) == void_type_node
1643 || TYPE_MAIN_VARIANT (TREE_VALUE (type)) == void_type_node)
1645 errmsg = "prototype for `%s' follows and number of arguments";
1646 break;
1648 /* Type for passing arg must be consistent
1649 with that declared for the arg. */
1650 if (! comptypes (TREE_VALUE (parm), TREE_VALUE (type))
1651 /* If -traditional, allow `unsigned int' instead of `int'
1652 in the prototype. */
1653 && (! (flag_traditional
1654 && TYPE_MAIN_VARIANT (TREE_VALUE (parm)) == integer_type_node
1655 && TYPE_MAIN_VARIANT (TREE_VALUE (type)) == unsigned_type_node)))
1657 errmsg = "prototype for `%s' follows and argument %d";
1658 break;
1661 if (errmsg)
1663 error_with_decl (newdecl, errmsg, nargs);
1664 error_with_decl (olddecl,
1665 "doesn't match non-prototype definition here");
1667 else
1669 warning_with_decl (newdecl, "prototype for `%s' follows");
1670 warning_with_decl (olddecl, "non-prototype definition here");
1673 /* Warn about mismatches in various flags. */
1674 else
1676 /* Warn if function is now inline
1677 but was previously declared not inline and has been called. */
1678 if (TREE_CODE (olddecl) == FUNCTION_DECL
1679 && ! DECL_INLINE (olddecl) && DECL_INLINE (newdecl)
1680 && TREE_USED (olddecl))
1681 warning_with_decl (newdecl,
1682 "`%s' declared inline after being called");
1683 if (TREE_CODE (olddecl) == FUNCTION_DECL
1684 && ! DECL_INLINE (olddecl) && DECL_INLINE (newdecl)
1685 && DECL_INITIAL (olddecl) != 0)
1686 warning_with_decl (newdecl,
1687 "`%s' declared inline after its definition");
1689 /* If pedantic, warn when static declaration follows a non-static
1690 declaration. Otherwise, do so only for functions. */
1691 if ((pedantic || TREE_CODE (olddecl) == FUNCTION_DECL)
1692 && TREE_PUBLIC (olddecl)
1693 && !TREE_PUBLIC (newdecl))
1694 warning_with_decl (newdecl, "static declaration for `%s' follows non-static");
1696 /* Warn when const declaration follows a non-const
1697 declaration, but not for functions. */
1698 if (TREE_CODE (olddecl) != FUNCTION_DECL
1699 && !TREE_READONLY (olddecl)
1700 && TREE_READONLY (newdecl))
1701 warning_with_decl (newdecl, "const declaration for `%s' follows non-const");
1702 /* These bits are logically part of the type, for variables.
1703 But not for functions
1704 (where qualifiers are not valid ANSI anyway). */
1705 else if (pedantic && TREE_CODE (olddecl) != FUNCTION_DECL
1706 && (TREE_READONLY (newdecl) != TREE_READONLY (olddecl)
1707 || TREE_THIS_VOLATILE (newdecl) != TREE_THIS_VOLATILE (olddecl)))
1708 pedwarn_with_decl (newdecl, "type qualifiers for `%s' conflict with previous decl");
1712 /* Optionally warn about more than one declaration for the same name. */
1713 if (errmsg == 0 && warn_redundant_decls && DECL_SOURCE_LINE (olddecl) != 0
1714 /* Dont warn about a function declaration
1715 followed by a definition. */
1716 && !(TREE_CODE (newdecl) == FUNCTION_DECL && DECL_INITIAL (newdecl) != 0
1717 && DECL_INITIAL (olddecl) == 0)
1718 /* Don't warn about extern decl followed by (tentative) definition. */
1719 && !(DECL_EXTERNAL (olddecl) && ! DECL_EXTERNAL (newdecl)))
1721 warning_with_decl (newdecl, "redundant redeclaration of `%s' in same scope");
1722 warning_with_decl (olddecl, "previous declaration of `%s'");
1725 /* Copy all the DECL_... slots specified in the new decl
1726 except for any that we copy here from the old type.
1728 Past this point, we don't change OLDTYPE and NEWTYPE
1729 even if we change the types of NEWDECL and OLDDECL. */
1731 if (types_match)
1733 /* When copying info to olddecl, we store into write_olddecl
1734 instead. This allows us to avoid modifying olddecl when
1735 different_binding_level is true. */
1736 tree write_olddecl = different_binding_level ? newdecl : olddecl;
1738 /* Make sure we put the new type in the same obstack as the old ones.
1739 If the old types are not both in the same obstack, use the permanent
1740 one. */
1741 if (TYPE_OBSTACK (oldtype) == TYPE_OBSTACK (newtype))
1742 push_obstacks (TYPE_OBSTACK (oldtype), TYPE_OBSTACK (oldtype));
1743 else
1745 push_obstacks_nochange ();
1746 end_temporary_allocation ();
1749 /* Merge the data types specified in the two decls. */
1750 if (TREE_CODE (newdecl) != FUNCTION_DECL || !DECL_BUILT_IN (olddecl))
1752 if (different_binding_level)
1753 TREE_TYPE (newdecl)
1754 = build_type_attribute_variant
1755 (newtype,
1756 merge_attributes (TYPE_ATTRIBUTES (newtype),
1757 TYPE_ATTRIBUTES (oldtype)));
1758 else
1759 TREE_TYPE (newdecl)
1760 = TREE_TYPE (olddecl)
1761 = common_type (newtype, oldtype);
1764 /* Lay the type out, unless already done. */
1765 if (oldtype != TREE_TYPE (newdecl))
1767 if (TREE_TYPE (newdecl) != error_mark_node)
1768 layout_type (TREE_TYPE (newdecl));
1769 if (TREE_CODE (newdecl) != FUNCTION_DECL
1770 && TREE_CODE (newdecl) != TYPE_DECL
1771 && TREE_CODE (newdecl) != CONST_DECL)
1772 layout_decl (newdecl, 0);
1774 else
1776 /* Since the type is OLDDECL's, make OLDDECL's size go with. */
1777 DECL_SIZE (newdecl) = DECL_SIZE (olddecl);
1778 if (TREE_CODE (olddecl) != FUNCTION_DECL)
1779 if (DECL_ALIGN (olddecl) > DECL_ALIGN (newdecl))
1780 DECL_ALIGN (newdecl) = DECL_ALIGN (olddecl);
1783 /* Keep the old rtl since we can safely use it. */
1784 DECL_RTL (newdecl) = DECL_RTL (olddecl);
1786 /* Merge the type qualifiers. */
1787 if (DECL_BUILT_IN_NONANSI (olddecl) && TREE_THIS_VOLATILE (olddecl)
1788 && !TREE_THIS_VOLATILE (newdecl))
1789 TREE_THIS_VOLATILE (write_olddecl) = 0;
1790 if (TREE_READONLY (newdecl))
1791 TREE_READONLY (write_olddecl) = 1;
1792 if (TREE_THIS_VOLATILE (newdecl))
1794 TREE_THIS_VOLATILE (write_olddecl) = 1;
1795 if (TREE_CODE (newdecl) == VAR_DECL)
1796 make_var_volatile (newdecl);
1799 /* Keep source location of definition rather than declaration. */
1800 /* When called with different_binding_level set, keep the old
1801 information so that meaningful diagnostics can be given. */
1802 if (DECL_INITIAL (newdecl) == 0 && DECL_INITIAL (olddecl) != 0
1803 && ! different_binding_level)
1805 DECL_SOURCE_LINE (newdecl) = DECL_SOURCE_LINE (olddecl);
1806 DECL_SOURCE_FILE (newdecl) = DECL_SOURCE_FILE (olddecl);
1809 /* Merge the unused-warning information. */
1810 if (DECL_IN_SYSTEM_HEADER (olddecl))
1811 DECL_IN_SYSTEM_HEADER (newdecl) = 1;
1812 else if (DECL_IN_SYSTEM_HEADER (newdecl))
1813 DECL_IN_SYSTEM_HEADER (write_olddecl) = 1;
1815 /* Merge the initialization information. */
1816 /* When called with different_binding_level set, don't copy over
1817 DECL_INITIAL, so that we don't accidentally change function
1818 declarations into function definitions. */
1819 if (DECL_INITIAL (newdecl) == 0 && ! different_binding_level)
1820 DECL_INITIAL (newdecl) = DECL_INITIAL (olddecl);
1822 /* Merge the section attribute.
1823 We want to issue an error if the sections conflict but that must be
1824 done later in decl_attributes since we are called before attributes
1825 are assigned. */
1826 if (DECL_SECTION_NAME (newdecl) == NULL_TREE)
1827 DECL_SECTION_NAME (newdecl) = DECL_SECTION_NAME (olddecl);
1829 if (TREE_CODE (newdecl) == FUNCTION_DECL)
1831 DECL_STATIC_CONSTRUCTOR(newdecl) |= DECL_STATIC_CONSTRUCTOR(olddecl);
1832 DECL_STATIC_DESTRUCTOR (newdecl) |= DECL_STATIC_DESTRUCTOR (olddecl);
1835 pop_obstacks ();
1837 /* If cannot merge, then use the new type and qualifiers,
1838 and don't preserve the old rtl. */
1839 else if (! different_binding_level)
1841 TREE_TYPE (olddecl) = TREE_TYPE (newdecl);
1842 TREE_READONLY (olddecl) = TREE_READONLY (newdecl);
1843 TREE_THIS_VOLATILE (olddecl) = TREE_THIS_VOLATILE (newdecl);
1844 TREE_SIDE_EFFECTS (olddecl) = TREE_SIDE_EFFECTS (newdecl);
1847 /* Merge the storage class information. */
1848 DECL_WEAK (newdecl) |= DECL_WEAK (olddecl);
1849 /* For functions, static overrides non-static. */
1850 if (TREE_CODE (newdecl) == FUNCTION_DECL)
1852 TREE_PUBLIC (newdecl) &= TREE_PUBLIC (olddecl);
1853 /* This is since we don't automatically
1854 copy the attributes of NEWDECL into OLDDECL. */
1855 /* No need to worry about different_binding_level here because
1856 then TREE_PUBLIC (newdecl) was true. */
1857 TREE_PUBLIC (olddecl) = TREE_PUBLIC (newdecl);
1858 /* If this clears `static', clear it in the identifier too. */
1859 if (! TREE_PUBLIC (olddecl))
1860 TREE_PUBLIC (DECL_NAME (olddecl)) = 0;
1862 if (DECL_EXTERNAL (newdecl))
1864 TREE_STATIC (newdecl) = TREE_STATIC (olddecl);
1865 DECL_EXTERNAL (newdecl) = DECL_EXTERNAL (olddecl);
1866 /* An extern decl does not override previous storage class. */
1867 TREE_PUBLIC (newdecl) = TREE_PUBLIC (olddecl);
1868 if (! DECL_EXTERNAL (newdecl))
1869 DECL_CONTEXT (newdecl) = DECL_CONTEXT (olddecl);
1871 else
1873 TREE_STATIC (olddecl) = TREE_STATIC (newdecl);
1874 TREE_PUBLIC (olddecl) = TREE_PUBLIC (newdecl);
1877 /* If either decl says `inline', this fn is inline,
1878 unless its definition was passed already. */
1879 if (DECL_INLINE (newdecl) && DECL_INITIAL (olddecl) == 0)
1880 DECL_INLINE (olddecl) = 1;
1881 DECL_INLINE (newdecl) = DECL_INLINE (olddecl);
1883 if (TREE_CODE (newdecl) == FUNCTION_DECL)
1885 if (DECL_BUILT_IN (olddecl))
1887 /* Get rid of any built-in function if new arg types don't match it
1888 or if we have a function definition. */
1889 if (! types_match || new_is_definition)
1891 if (! different_binding_level)
1893 TREE_TYPE (olddecl) = TREE_TYPE (newdecl);
1894 DECL_BUILT_IN (olddecl) = 0;
1897 else
1899 /* If redeclaring a builtin function, and not a definition,
1900 it stays built in. */
1901 DECL_BUILT_IN (newdecl) = 1;
1902 DECL_FUNCTION_CODE (newdecl) = DECL_FUNCTION_CODE (olddecl);
1905 /* Also preserve various other info from the definition. */
1906 else if (! new_is_definition)
1907 DECL_FRAME_SIZE (newdecl) = DECL_FRAME_SIZE (olddecl);
1908 if (! new_is_definition)
1910 DECL_RESULT (newdecl) = DECL_RESULT (olddecl);
1911 /* When called with different_binding_level set, don't copy over
1912 DECL_INITIAL, so that we don't accidentally change function
1913 declarations into function definitions. */
1914 if (! different_binding_level)
1915 DECL_INITIAL (newdecl) = DECL_INITIAL (olddecl);
1916 DECL_SAVED_INSNS (newdecl) = DECL_SAVED_INSNS (olddecl);
1917 DECL_ARGUMENTS (newdecl) = DECL_ARGUMENTS (olddecl);
1920 if (different_binding_level)
1922 /* Don't output a duplicate symbol for this declaration. */
1923 TREE_ASM_WRITTEN (newdecl) = 1;
1924 return 0;
1927 /* Copy most of the decl-specific fields of NEWDECL into OLDDECL.
1928 But preserve OLDdECL's DECL_UID. */
1930 register unsigned olddecl_uid = DECL_UID (olddecl);
1932 bcopy ((char *) newdecl + sizeof (struct tree_common),
1933 (char *) olddecl + sizeof (struct tree_common),
1934 sizeof (struct tree_decl) - sizeof (struct tree_common));
1935 DECL_UID (olddecl) = olddecl_uid;
1938 return 1;
1941 /* Record a decl-node X as belonging to the current lexical scope.
1942 Check for errors (such as an incompatible declaration for the same
1943 name already seen in the same scope).
1945 Returns either X or an old decl for the same name.
1946 If an old decl is returned, it may have been smashed
1947 to agree with what X says. */
1949 tree
1950 pushdecl (x)
1951 tree x;
1953 register tree t;
1954 register tree name = DECL_NAME (x);
1955 register struct binding_level *b = current_binding_level;
1957 DECL_CONTEXT (x) = current_function_decl;
1958 /* A local extern declaration for a function doesn't constitute nesting.
1959 A local auto declaration does, since it's a forward decl
1960 for a nested function coming later. */
1961 if (TREE_CODE (x) == FUNCTION_DECL && DECL_INITIAL (x) == 0
1962 && DECL_EXTERNAL (x))
1963 DECL_CONTEXT (x) = 0;
1965 if (warn_nested_externs && DECL_EXTERNAL (x) && b != global_binding_level
1966 && x != IDENTIFIER_IMPLICIT_DECL (name)
1967 /* Don't print error messages for __FUNCTION__ and __PRETTY_FUNCTION__ */
1968 && !DECL_IN_SYSTEM_HEADER (x))
1969 warning ("nested extern declaration of `%s'", IDENTIFIER_POINTER (name));
1971 if (name)
1973 char *file;
1974 int line;
1975 int different_binding_level = 0;
1977 t = lookup_name_current_level (name);
1978 /* Don't type check externs here when -traditional. This is so that
1979 code with conflicting declarations inside blocks will get warnings
1980 not errors. X11 for instance depends on this. */
1981 if (! t && DECL_EXTERNAL (x) && TREE_PUBLIC (x) && ! flag_traditional)
1983 t = IDENTIFIER_GLOBAL_VALUE (name);
1984 /* Type decls at global scope don't conflict with externs declared
1985 inside lexical blocks. */
1986 if (t && TREE_CODE (t) == TYPE_DECL)
1987 t = 0;
1988 different_binding_level = 1;
1990 if (t != 0 && t == error_mark_node)
1991 /* error_mark_node is 0 for a while during initialization! */
1993 t = 0;
1994 error_with_decl (x, "`%s' used prior to declaration");
1997 if (t != 0)
1999 file = DECL_SOURCE_FILE (t);
2000 line = DECL_SOURCE_LINE (t);
2003 /* If this decl is `static' and an implicit decl was seen previously,
2004 warn. But don't complain if -traditional,
2005 since traditional compilers don't complain. */
2006 if (! flag_traditional && TREE_PUBLIC (name)
2007 /* Don't test for DECL_EXTERNAL, because grokdeclarator
2008 sets this for all functions. */
2009 && ! TREE_PUBLIC (x)
2010 /* We used to warn also for explicit extern followed by static,
2011 but sometimes you need to do it that way. */
2012 && IDENTIFIER_IMPLICIT_DECL (name) != 0)
2014 pedwarn ("`%s' was declared implicitly `extern' and later `static'",
2015 IDENTIFIER_POINTER (name));
2016 pedwarn_with_file_and_line
2017 (DECL_SOURCE_FILE (IDENTIFIER_IMPLICIT_DECL (name)),
2018 DECL_SOURCE_LINE (IDENTIFIER_IMPLICIT_DECL (name)),
2019 "previous declaration of `%s'",
2020 IDENTIFIER_POINTER (name));
2023 if (t != 0 && duplicate_decls (x, t, different_binding_level))
2025 if (TREE_CODE (t) == PARM_DECL)
2027 /* Don't allow more than one "real" duplicate
2028 of a forward parm decl. */
2029 TREE_ASM_WRITTEN (t) = TREE_ASM_WRITTEN (x);
2030 return t;
2032 return t;
2035 /* If we are processing a typedef statement, generate a whole new
2036 ..._TYPE node (which will be just an variant of the existing
2037 ..._TYPE node with identical properties) and then install the
2038 TYPE_DECL node generated to represent the typedef name as the
2039 TYPE_NAME of this brand new (duplicate) ..._TYPE node.
2041 The whole point here is to end up with a situation where each
2042 and every ..._TYPE node the compiler creates will be uniquely
2043 associated with AT MOST one node representing a typedef name.
2044 This way, even though the compiler substitutes corresponding
2045 ..._TYPE nodes for TYPE_DECL (i.e. "typedef name") nodes very
2046 early on, later parts of the compiler can always do the reverse
2047 translation and get back the corresponding typedef name. For
2048 example, given:
2050 typedef struct S MY_TYPE;
2051 MY_TYPE object;
2053 Later parts of the compiler might only know that `object' was of
2054 type `struct S' if if were not for code just below. With this
2055 code however, later parts of the compiler see something like:
2057 struct S' == struct S
2058 typedef struct S' MY_TYPE;
2059 struct S' object;
2061 And they can then deduce (from the node for type struct S') that
2062 the original object declaration was:
2064 MY_TYPE object;
2066 Being able to do this is important for proper support of protoize,
2067 and also for generating precise symbolic debugging information
2068 which takes full account of the programmer's (typedef) vocabulary.
2070 Obviously, we don't want to generate a duplicate ..._TYPE node if
2071 the TYPE_DECL node that we are now processing really represents a
2072 standard built-in type.
2074 Since all standard types are effectively declared at line zero
2075 in the source file, we can easily check to see if we are working
2076 on a standard type by checking the current value of lineno. */
2078 if (TREE_CODE (x) == TYPE_DECL)
2080 if (DECL_SOURCE_LINE (x) == 0)
2082 if (TYPE_NAME (TREE_TYPE (x)) == 0)
2083 TYPE_NAME (TREE_TYPE (x)) = x;
2085 else if (TREE_TYPE (x) != error_mark_node)
2087 tree tt = TREE_TYPE (x);
2088 DECL_ORIGINAL_TYPE (x) = tt;
2089 tt = build_type_copy (tt);
2090 TYPE_NAME (tt) = x;
2091 TREE_TYPE (x) = tt;
2095 /* Multiple external decls of the same identifier ought to match.
2096 Check against both global declarations (when traditional) and out of
2097 scope (limbo) block level declarations.
2099 We get warnings about inline functions where they are defined.
2100 Avoid duplicate warnings where they are used. */
2101 if (TREE_PUBLIC (x) && ! DECL_INLINE (x))
2103 tree decl;
2105 if (flag_traditional && IDENTIFIER_GLOBAL_VALUE (name) != 0
2106 && (DECL_EXTERNAL (IDENTIFIER_GLOBAL_VALUE (name))
2107 || TREE_PUBLIC (IDENTIFIER_GLOBAL_VALUE (name))))
2108 decl = IDENTIFIER_GLOBAL_VALUE (name);
2109 else if (IDENTIFIER_LIMBO_VALUE (name) != 0)
2110 /* Decls in limbo are always extern, so no need to check that. */
2111 decl = IDENTIFIER_LIMBO_VALUE (name);
2112 else
2113 decl = 0;
2115 if (decl && ! comptypes (TREE_TYPE (x), TREE_TYPE (decl))
2116 /* If old decl is built-in, we already warned if we should. */
2117 && !DECL_BUILT_IN (decl))
2119 pedwarn_with_decl (x,
2120 "type mismatch with previous external decl");
2121 pedwarn_with_decl (decl, "previous external decl of `%s'");
2125 /* If a function has had an implicit declaration, and then is defined,
2126 make sure they are compatible. */
2128 if (IDENTIFIER_IMPLICIT_DECL (name) != 0
2129 && IDENTIFIER_GLOBAL_VALUE (name) == 0
2130 && TREE_CODE (x) == FUNCTION_DECL
2131 && ! comptypes (TREE_TYPE (x),
2132 TREE_TYPE (IDENTIFIER_IMPLICIT_DECL (name))))
2134 warning_with_decl (x, "type mismatch with previous implicit declaration");
2135 warning_with_decl (IDENTIFIER_IMPLICIT_DECL (name),
2136 "previous implicit declaration of `%s'");
2139 /* In PCC-compatibility mode, extern decls of vars with no current decl
2140 take effect at top level no matter where they are. */
2141 if (flag_traditional && DECL_EXTERNAL (x)
2142 && lookup_name (name) == 0)
2144 tree type = TREE_TYPE (x);
2146 /* But don't do this if the type contains temporary nodes. */
2147 while (type)
2149 if (type == error_mark_node)
2150 break;
2151 if (! TREE_PERMANENT (type))
2153 warning_with_decl (x, "type of external `%s' is not global");
2154 /* By exiting the loop early, we leave TYPE nonzero,
2155 and thus prevent globalization of the decl. */
2156 break;
2158 else if (TREE_CODE (type) == FUNCTION_TYPE
2159 && TYPE_ARG_TYPES (type) != 0)
2160 /* The types might not be truly local,
2161 but the list of arg types certainly is temporary.
2162 Since prototypes are nontraditional,
2163 ok not to do the traditional thing. */
2164 break;
2165 type = TREE_TYPE (type);
2168 if (type == 0)
2169 b = global_binding_level;
2172 /* This name is new in its binding level.
2173 Install the new declaration and return it. */
2174 if (b == global_binding_level)
2176 /* Install a global value. */
2178 /* If the first global decl has external linkage,
2179 warn if we later see static one. */
2180 if (IDENTIFIER_GLOBAL_VALUE (name) == 0 && TREE_PUBLIC (x))
2181 TREE_PUBLIC (name) = 1;
2183 IDENTIFIER_GLOBAL_VALUE (name) = x;
2185 /* We no longer care about any previous block level declarations. */
2186 IDENTIFIER_LIMBO_VALUE (name) = 0;
2188 /* Don't forget if the function was used via an implicit decl. */
2189 if (IDENTIFIER_IMPLICIT_DECL (name)
2190 && TREE_USED (IDENTIFIER_IMPLICIT_DECL (name)))
2191 TREE_USED (x) = 1, TREE_USED (name) = 1;
2193 /* Don't forget if its address was taken in that way. */
2194 if (IDENTIFIER_IMPLICIT_DECL (name)
2195 && TREE_ADDRESSABLE (IDENTIFIER_IMPLICIT_DECL (name)))
2196 TREE_ADDRESSABLE (x) = 1;
2198 /* Warn about mismatches against previous implicit decl. */
2199 if (IDENTIFIER_IMPLICIT_DECL (name) != 0
2200 /* If this real decl matches the implicit, don't complain. */
2201 && ! (TREE_CODE (x) == FUNCTION_DECL
2202 && (TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (x)))
2203 == integer_type_node)))
2204 pedwarn ("`%s' was previously implicitly declared to return `int'",
2205 IDENTIFIER_POINTER (name));
2207 /* If this decl is `static' and an `extern' was seen previously,
2208 that is erroneous. */
2209 if (TREE_PUBLIC (name)
2210 && ! TREE_PUBLIC (x) && ! DECL_EXTERNAL (x))
2212 /* Okay to redeclare an ANSI built-in as static. */
2213 if (t != 0 && DECL_BUILT_IN (t))
2215 /* Okay to declare a non-ANSI built-in as anything. */
2216 else if (t != 0 && DECL_BUILT_IN_NONANSI (t))
2218 /* Okay to have global type decl after an earlier extern
2219 declaration inside a lexical block. */
2220 else if (TREE_CODE (x) == TYPE_DECL)
2222 else if (IDENTIFIER_IMPLICIT_DECL (name))
2223 pedwarn ("`%s' was declared implicitly `extern' and later `static'",
2224 IDENTIFIER_POINTER (name));
2225 else
2226 pedwarn ("`%s' was declared `extern' and later `static'",
2227 IDENTIFIER_POINTER (name));
2230 else
2232 /* Here to install a non-global value. */
2233 tree oldlocal = IDENTIFIER_LOCAL_VALUE (name);
2234 tree oldglobal = IDENTIFIER_GLOBAL_VALUE (name);
2235 IDENTIFIER_LOCAL_VALUE (name) = x;
2237 /* If this is an extern function declaration, see if we
2238 have a global definition or declaration for the function. */
2239 if (oldlocal == 0
2240 && DECL_EXTERNAL (x) && !DECL_INLINE (x)
2241 && oldglobal != 0
2242 && TREE_CODE (x) == FUNCTION_DECL
2243 && TREE_CODE (oldglobal) == FUNCTION_DECL)
2245 /* We have one. Their types must agree. */
2246 if (! comptypes (TREE_TYPE (x),
2247 TREE_TYPE (IDENTIFIER_GLOBAL_VALUE (name))))
2248 pedwarn_with_decl (x, "extern declaration of `%s' doesn't match global one");
2249 else
2251 /* Inner extern decl is inline if global one is.
2252 Copy enough to really inline it. */
2253 if (DECL_INLINE (oldglobal))
2255 DECL_INLINE (x) = DECL_INLINE (oldglobal);
2256 DECL_INITIAL (x) = (current_function_decl == oldglobal
2257 ? 0 : DECL_INITIAL (oldglobal));
2258 DECL_SAVED_INSNS (x) = DECL_SAVED_INSNS (oldglobal);
2259 DECL_FRAME_SIZE (x) = DECL_FRAME_SIZE (oldglobal);
2260 DECL_ARGUMENTS (x) = DECL_ARGUMENTS (oldglobal);
2261 DECL_RESULT (x) = DECL_RESULT (oldglobal);
2262 TREE_ASM_WRITTEN (x) = TREE_ASM_WRITTEN (oldglobal);
2263 DECL_ABSTRACT_ORIGIN (x) = oldglobal;
2265 /* Inner extern decl is built-in if global one is. */
2266 if (DECL_BUILT_IN (oldglobal))
2268 DECL_BUILT_IN (x) = DECL_BUILT_IN (oldglobal);
2269 DECL_FUNCTION_CODE (x) = DECL_FUNCTION_CODE (oldglobal);
2271 /* Keep the arg types from a file-scope fcn defn. */
2272 if (TYPE_ARG_TYPES (TREE_TYPE (oldglobal)) != 0
2273 && DECL_INITIAL (oldglobal)
2274 && TYPE_ARG_TYPES (TREE_TYPE (x)) == 0)
2275 TREE_TYPE (x) = TREE_TYPE (oldglobal);
2279 #if 0 /* This case is probably sometimes the right thing to do. */
2280 /* If we have a local external declaration,
2281 then any file-scope declaration should not
2282 have been static. */
2283 if (oldlocal == 0 && oldglobal != 0
2284 && !TREE_PUBLIC (oldglobal)
2285 && DECL_EXTERNAL (x) && TREE_PUBLIC (x))
2286 warning ("`%s' locally external but globally static",
2287 IDENTIFIER_POINTER (name));
2288 #endif
2290 /* If we have a local external declaration,
2291 and no file-scope declaration has yet been seen,
2292 then if we later have a file-scope decl it must not be static. */
2293 if (oldlocal == 0
2294 && DECL_EXTERNAL (x)
2295 && TREE_PUBLIC (x))
2297 if (oldglobal == 0)
2298 TREE_PUBLIC (name) = 1;
2300 /* Save this decl, so that we can do type checking against
2301 other decls after it falls out of scope.
2303 Only save it once. This prevents temporary decls created in
2304 expand_inline_function from being used here, since this
2305 will have been set when the inline function was parsed.
2306 It also helps give slightly better warnings. */
2307 if (IDENTIFIER_LIMBO_VALUE (name) == 0)
2308 IDENTIFIER_LIMBO_VALUE (name) = x;
2311 /* Warn if shadowing an argument at the top level of the body. */
2312 if (oldlocal != 0 && !DECL_EXTERNAL (x)
2313 /* This warning doesn't apply to the parms of a nested fcn. */
2314 && ! current_binding_level->parm_flag
2315 /* Check that this is one level down from the parms. */
2316 && current_binding_level->level_chain->parm_flag
2317 /* Check that the decl being shadowed
2318 comes from the parm level, one level up. */
2319 && chain_member (oldlocal, current_binding_level->level_chain->names))
2321 if (TREE_CODE (oldlocal) == PARM_DECL)
2322 pedwarn ("declaration of `%s' shadows a parameter",
2323 IDENTIFIER_POINTER (name));
2324 else
2325 pedwarn ("declaration of `%s' shadows a symbol from the parameter list",
2326 IDENTIFIER_POINTER (name));
2329 /* Maybe warn if shadowing something else. */
2330 else if (warn_shadow && !DECL_EXTERNAL (x)
2331 /* No shadow warnings for internally generated vars. */
2332 && DECL_SOURCE_LINE (x) != 0
2333 /* No shadow warnings for vars made for inlining. */
2334 && ! DECL_FROM_INLINE (x))
2336 char *warnstring = 0;
2338 if (TREE_CODE (x) == PARM_DECL
2339 && current_binding_level->level_chain->parm_flag)
2340 /* Don't warn about the parm names in function declarator
2341 within a function declarator.
2342 It would be nice to avoid warning in any function
2343 declarator in a declaration, as opposed to a definition,
2344 but there is no way to tell it's not a definition. */
2346 else if (oldlocal != 0 && TREE_CODE (oldlocal) == PARM_DECL)
2347 warnstring = "declaration of `%s' shadows a parameter";
2348 else if (oldlocal != 0)
2349 warnstring = "declaration of `%s' shadows previous local";
2350 else if (IDENTIFIER_GLOBAL_VALUE (name) != 0
2351 && IDENTIFIER_GLOBAL_VALUE (name) != error_mark_node)
2352 warnstring = "declaration of `%s' shadows global declaration";
2354 if (warnstring)
2355 warning (warnstring, IDENTIFIER_POINTER (name));
2358 /* If storing a local value, there may already be one (inherited).
2359 If so, record it for restoration when this binding level ends. */
2360 if (oldlocal != 0)
2361 b->shadowed = tree_cons (name, oldlocal, b->shadowed);
2364 /* Keep count of variables in this level with incomplete type. */
2365 if (TYPE_SIZE (TREE_TYPE (x)) == 0)
2366 ++b->n_incomplete;
2369 /* Put decls on list in reverse order.
2370 We will reverse them later if necessary. */
2371 TREE_CHAIN (x) = b->names;
2372 b->names = x;
2374 return x;
2377 /* Like pushdecl, only it places X in GLOBAL_BINDING_LEVEL, if appropriate. */
2379 tree
2380 pushdecl_top_level (x)
2381 tree x;
2383 register tree t;
2384 register struct binding_level *b = current_binding_level;
2386 current_binding_level = global_binding_level;
2387 t = pushdecl (x);
2388 current_binding_level = b;
2389 return t;
2392 /* Generate an implicit declaration for identifier FUNCTIONID
2393 as a function of type int (). Print a warning if appropriate. */
2395 tree
2396 implicitly_declare (functionid)
2397 tree functionid;
2399 register tree decl;
2400 int traditional_warning = 0;
2401 /* Only one "implicit declaration" warning per identifier. */
2402 int implicit_warning;
2404 /* Save the decl permanently so we can warn if definition follows. */
2405 push_obstacks_nochange ();
2406 end_temporary_allocation ();
2408 /* We used to reuse an old implicit decl here,
2409 but this loses with inline functions because it can clobber
2410 the saved decl chains. */
2411 /* if (IDENTIFIER_IMPLICIT_DECL (functionid) != 0)
2412 decl = IDENTIFIER_IMPLICIT_DECL (functionid);
2413 else */
2414 decl = build_decl (FUNCTION_DECL, functionid, default_function_type);
2416 /* Warn of implicit decl following explicit local extern decl.
2417 This is probably a program designed for traditional C. */
2418 if (TREE_PUBLIC (functionid) && IDENTIFIER_GLOBAL_VALUE (functionid) == 0)
2419 traditional_warning = 1;
2421 /* Warn once of an implicit declaration. */
2422 implicit_warning = (IDENTIFIER_IMPLICIT_DECL (functionid) == 0);
2424 DECL_EXTERNAL (decl) = 1;
2425 TREE_PUBLIC (decl) = 1;
2427 /* Record that we have an implicit decl and this is it. */
2428 IDENTIFIER_IMPLICIT_DECL (functionid) = decl;
2430 /* ANSI standard says implicit declarations are in the innermost block.
2431 So we record the decl in the standard fashion.
2432 If flag_traditional is set, pushdecl does it top-level. */
2433 pushdecl (decl);
2435 /* This is a no-op in c-lang.c or something real in objc-actions.c. */
2436 maybe_objc_check_decl (decl);
2438 rest_of_decl_compilation (decl, NULL_PTR, 0, 0);
2440 if (warn_implicit && implicit_warning)
2441 warning ("implicit declaration of function `%s'",
2442 IDENTIFIER_POINTER (functionid));
2443 else if (warn_traditional && traditional_warning)
2444 warning ("function `%s' was previously declared within a block",
2445 IDENTIFIER_POINTER (functionid));
2447 /* Write a record describing this implicit function declaration to the
2448 prototypes file (if requested). */
2450 gen_aux_info_record (decl, 0, 1, 0);
2452 pop_obstacks ();
2454 return decl;
2457 /* Return zero if the declaration NEWDECL is valid
2458 when the declaration OLDDECL (assumed to be for the same name)
2459 has already been seen.
2460 Otherwise return an error message format string with a %s
2461 where the identifier should go. */
2463 static char *
2464 redeclaration_error_message (newdecl, olddecl)
2465 tree newdecl, olddecl;
2467 if (TREE_CODE (newdecl) == TYPE_DECL)
2469 if (flag_traditional && TREE_TYPE (newdecl) == TREE_TYPE (olddecl))
2470 return 0;
2471 /* pushdecl creates distinct types for TYPE_DECLs by calling
2472 build_type_copy, so the above comparison generally fails. We do
2473 another test against the TYPE_MAIN_VARIANT of the olddecl, which
2474 is equivalent to what this code used to do before the build_type_copy
2475 call. The variant type distinction should not matter for traditional
2476 code, because it doesn't have type qualifiers. */
2477 if (flag_traditional
2478 && TYPE_MAIN_VARIANT (TREE_TYPE (olddecl)) == TREE_TYPE (newdecl))
2479 return 0;
2480 if (DECL_IN_SYSTEM_HEADER (olddecl) || DECL_IN_SYSTEM_HEADER (newdecl))
2481 return 0;
2482 return "redefinition of `%s'";
2484 else if (TREE_CODE (newdecl) == FUNCTION_DECL)
2486 /* Declarations of functions can insist on internal linkage
2487 but they can't be inconsistent with internal linkage,
2488 so there can be no error on that account.
2489 However defining the same name twice is no good. */
2490 if (DECL_INITIAL (olddecl) != 0 && DECL_INITIAL (newdecl) != 0
2491 /* However, defining once as extern inline and a second
2492 time in another way is ok. */
2493 && !(DECL_INLINE (olddecl) && DECL_EXTERNAL (olddecl)
2494 && !(DECL_INLINE (newdecl) && DECL_EXTERNAL (newdecl))))
2495 return "redefinition of `%s'";
2496 return 0;
2498 else if (current_binding_level == global_binding_level)
2500 /* Objects declared at top level: */
2501 /* If at least one is a reference, it's ok. */
2502 if (DECL_EXTERNAL (newdecl) || DECL_EXTERNAL (olddecl))
2503 return 0;
2504 /* Reject two definitions. */
2505 if (DECL_INITIAL (olddecl) != 0 && DECL_INITIAL (newdecl) != 0)
2506 return "redefinition of `%s'";
2507 /* Now we have two tentative defs, or one tentative and one real def. */
2508 /* Insist that the linkage match. */
2509 if (TREE_PUBLIC (olddecl) != TREE_PUBLIC (newdecl))
2510 return "conflicting declarations of `%s'";
2511 return 0;
2513 else if (current_binding_level->parm_flag
2514 && TREE_ASM_WRITTEN (olddecl) && !TREE_ASM_WRITTEN (newdecl))
2515 return 0;
2516 else
2518 /* Newdecl has block scope. If olddecl has block scope also, then
2519 reject two definitions, and reject a definition together with an
2520 external reference. Otherwise, it is OK, because newdecl must
2521 be an extern reference to olddecl. */
2522 if (!(DECL_EXTERNAL (newdecl) && DECL_EXTERNAL (olddecl))
2523 && DECL_CONTEXT (newdecl) == DECL_CONTEXT (olddecl))
2524 return "redeclaration of `%s'";
2525 return 0;
2529 /* Get the LABEL_DECL corresponding to identifier ID as a label.
2530 Create one if none exists so far for the current function.
2531 This function is called for both label definitions and label references. */
2533 tree
2534 lookup_label (id)
2535 tree id;
2537 register tree decl = IDENTIFIER_LABEL_VALUE (id);
2539 if (current_function_decl == 0)
2541 error ("label %s referenced outside of any function",
2542 IDENTIFIER_POINTER (id));
2543 return 0;
2546 /* Use a label already defined or ref'd with this name. */
2547 if (decl != 0)
2549 /* But not if it is inherited and wasn't declared to be inheritable. */
2550 if (DECL_CONTEXT (decl) != current_function_decl
2551 && ! C_DECLARED_LABEL_FLAG (decl))
2552 return shadow_label (id);
2553 return decl;
2556 decl = build_decl (LABEL_DECL, id, void_type_node);
2558 /* Make sure every label has an rtx. */
2559 label_rtx (decl);
2561 /* A label not explicitly declared must be local to where it's ref'd. */
2562 DECL_CONTEXT (decl) = current_function_decl;
2564 DECL_MODE (decl) = VOIDmode;
2566 /* Say where one reference is to the label,
2567 for the sake of the error if it is not defined. */
2568 DECL_SOURCE_LINE (decl) = lineno;
2569 DECL_SOURCE_FILE (decl) = input_filename;
2571 IDENTIFIER_LABEL_VALUE (id) = decl;
2573 named_labels = tree_cons (NULL_TREE, decl, named_labels);
2575 return decl;
2578 /* Make a label named NAME in the current function,
2579 shadowing silently any that may be inherited from containing functions
2580 or containing scopes.
2582 Note that valid use, if the label being shadowed
2583 comes from another scope in the same function,
2584 requires calling declare_nonlocal_label right away. */
2586 tree
2587 shadow_label (name)
2588 tree name;
2590 register tree decl = IDENTIFIER_LABEL_VALUE (name);
2592 if (decl != 0)
2594 register tree dup;
2596 /* Check to make sure that the label hasn't already been declared
2597 at this label scope */
2598 for (dup = named_labels; dup; dup = TREE_CHAIN (dup))
2599 if (TREE_VALUE (dup) == decl)
2601 error ("duplicate label declaration `%s'",
2602 IDENTIFIER_POINTER (name));
2603 error_with_decl (TREE_VALUE (dup),
2604 "this is a previous declaration");
2605 /* Just use the previous declaration. */
2606 return lookup_label (name);
2609 shadowed_labels = tree_cons (NULL_TREE, decl, shadowed_labels);
2610 IDENTIFIER_LABEL_VALUE (name) = decl = 0;
2613 return lookup_label (name);
2616 /* Define a label, specifying the location in the source file.
2617 Return the LABEL_DECL node for the label, if the definition is valid.
2618 Otherwise return 0. */
2620 tree
2621 define_label (filename, line, name)
2622 char *filename;
2623 int line;
2624 tree name;
2626 tree decl = lookup_label (name);
2628 /* If label with this name is known from an outer context, shadow it. */
2629 if (decl != 0 && DECL_CONTEXT (decl) != current_function_decl)
2631 shadowed_labels = tree_cons (NULL_TREE, decl, shadowed_labels);
2632 IDENTIFIER_LABEL_VALUE (name) = 0;
2633 decl = lookup_label (name);
2636 if (DECL_INITIAL (decl) != 0)
2638 error ("duplicate label `%s'", IDENTIFIER_POINTER (name));
2639 return 0;
2641 else
2643 /* Mark label as having been defined. */
2644 DECL_INITIAL (decl) = error_mark_node;
2645 /* Say where in the source. */
2646 DECL_SOURCE_FILE (decl) = filename;
2647 DECL_SOURCE_LINE (decl) = line;
2648 return decl;
2652 /* Return the list of declarations of the current level.
2653 Note that this list is in reverse order unless/until
2654 you nreverse it; and when you do nreverse it, you must
2655 store the result back using `storedecls' or you will lose. */
2657 tree
2658 getdecls ()
2660 return current_binding_level->names;
2663 /* Return the list of type-tags (for structs, etc) of the current level. */
2665 tree
2666 gettags ()
2668 return current_binding_level->tags;
2671 /* Store the list of declarations of the current level.
2672 This is done for the parameter declarations of a function being defined,
2673 after they are modified in the light of any missing parameters. */
2675 static void
2676 storedecls (decls)
2677 tree decls;
2679 current_binding_level->names = decls;
2682 /* Similarly, store the list of tags of the current level. */
2684 static void
2685 storetags (tags)
2686 tree tags;
2688 current_binding_level->tags = tags;
2691 /* Given NAME, an IDENTIFIER_NODE,
2692 return the structure (or union or enum) definition for that name.
2693 Searches binding levels from BINDING_LEVEL up to the global level.
2694 If THISLEVEL_ONLY is nonzero, searches only the specified context
2695 (but skips any tag-transparent contexts to find one that is
2696 meaningful for tags).
2697 CODE says which kind of type the caller wants;
2698 it is RECORD_TYPE or UNION_TYPE or ENUMERAL_TYPE.
2699 If the wrong kind of type is found, an error is reported. */
2701 static tree
2702 lookup_tag (code, name, binding_level, thislevel_only)
2703 enum tree_code code;
2704 struct binding_level *binding_level;
2705 tree name;
2706 int thislevel_only;
2708 register struct binding_level *level;
2710 for (level = binding_level; level; level = level->level_chain)
2712 register tree tail;
2713 for (tail = level->tags; tail; tail = TREE_CHAIN (tail))
2715 if (TREE_PURPOSE (tail) == name)
2717 if (TREE_CODE (TREE_VALUE (tail)) != code)
2719 /* Definition isn't the kind we were looking for. */
2720 pending_invalid_xref = name;
2721 pending_invalid_xref_file = input_filename;
2722 pending_invalid_xref_line = lineno;
2724 return TREE_VALUE (tail);
2727 if (thislevel_only && ! level->tag_transparent)
2728 return NULL_TREE;
2730 return NULL_TREE;
2733 /* Print an error message now
2734 for a recent invalid struct, union or enum cross reference.
2735 We don't print them immediately because they are not invalid
2736 when used in the `struct foo;' construct for shadowing. */
2738 void
2739 pending_xref_error ()
2741 if (pending_invalid_xref != 0)
2742 error_with_file_and_line (pending_invalid_xref_file,
2743 pending_invalid_xref_line,
2744 "`%s' defined as wrong kind of tag",
2745 IDENTIFIER_POINTER (pending_invalid_xref));
2746 pending_invalid_xref = 0;
2749 /* Given a type, find the tag that was defined for it and return the tag name.
2750 Otherwise return 0. */
2752 static tree
2753 lookup_tag_reverse (type)
2754 tree type;
2756 register struct binding_level *level;
2758 for (level = current_binding_level; level; level = level->level_chain)
2760 register tree tail;
2761 for (tail = level->tags; tail; tail = TREE_CHAIN (tail))
2763 if (TREE_VALUE (tail) == type)
2764 return TREE_PURPOSE (tail);
2767 return NULL_TREE;
2770 /* Look up NAME in the current binding level and its superiors
2771 in the namespace of variables, functions and typedefs.
2772 Return a ..._DECL node of some kind representing its definition,
2773 or return 0 if it is undefined. */
2775 tree
2776 lookup_name (name)
2777 tree name;
2779 register tree val;
2780 if (current_binding_level != global_binding_level
2781 && IDENTIFIER_LOCAL_VALUE (name))
2782 val = IDENTIFIER_LOCAL_VALUE (name);
2783 else
2784 val = IDENTIFIER_GLOBAL_VALUE (name);
2785 return val;
2788 /* Similar to `lookup_name' but look only at current binding level. */
2790 tree
2791 lookup_name_current_level (name)
2792 tree name;
2794 register tree t;
2796 if (current_binding_level == global_binding_level)
2797 return IDENTIFIER_GLOBAL_VALUE (name);
2799 if (IDENTIFIER_LOCAL_VALUE (name) == 0)
2800 return 0;
2802 for (t = current_binding_level->names; t; t = TREE_CHAIN (t))
2803 if (DECL_NAME (t) == name)
2804 break;
2806 return t;
2809 /* Create the predefined scalar types of C,
2810 and some nodes representing standard constants (0, 1, (void *) 0).
2811 Initialize the global binding level.
2812 Make definitions for built-in primitive functions. */
2814 void
2815 init_decl_processing ()
2817 register tree endlink;
2818 /* Either char* or void*. */
2819 tree traditional_ptr_type_node;
2820 /* Data types of memcpy and strlen. */
2821 tree memcpy_ftype, memset_ftype, strlen_ftype;
2822 tree void_ftype_any;
2823 int wchar_type_size;
2824 tree temp;
2825 tree array_domain_type;
2827 current_function_decl = NULL;
2828 named_labels = NULL;
2829 current_binding_level = NULL_BINDING_LEVEL;
2830 free_binding_level = NULL_BINDING_LEVEL;
2831 pushlevel (0); /* make the binding_level structure for global names */
2832 global_binding_level = current_binding_level;
2834 /* Define `int' and `char' first so that dbx will output them first. */
2836 integer_type_node = make_signed_type (INT_TYPE_SIZE);
2837 pushdecl (build_decl (TYPE_DECL, ridpointers[(int) RID_INT],
2838 integer_type_node));
2840 /* Define `char', which is like either `signed char' or `unsigned char'
2841 but not the same as either. */
2843 char_type_node
2844 = (flag_signed_char
2845 ? make_signed_type (CHAR_TYPE_SIZE)
2846 : make_unsigned_type (CHAR_TYPE_SIZE));
2847 pushdecl (build_decl (TYPE_DECL, get_identifier ("char"),
2848 char_type_node));
2850 long_integer_type_node = make_signed_type (LONG_TYPE_SIZE);
2851 pushdecl (build_decl (TYPE_DECL, get_identifier ("long int"),
2852 long_integer_type_node));
2854 unsigned_type_node = make_unsigned_type (INT_TYPE_SIZE);
2855 pushdecl (build_decl (TYPE_DECL, get_identifier ("unsigned int"),
2856 unsigned_type_node));
2858 long_unsigned_type_node = make_unsigned_type (LONG_TYPE_SIZE);
2859 pushdecl (build_decl (TYPE_DECL, get_identifier ("long unsigned int"),
2860 long_unsigned_type_node));
2862 long_long_integer_type_node = make_signed_type (LONG_LONG_TYPE_SIZE);
2863 pushdecl (build_decl (TYPE_DECL, get_identifier ("long long int"),
2864 long_long_integer_type_node));
2866 long_long_unsigned_type_node = make_unsigned_type (LONG_LONG_TYPE_SIZE);
2867 pushdecl (build_decl (TYPE_DECL, get_identifier ("long long unsigned int"),
2868 long_long_unsigned_type_node));
2870 /* `unsigned long' is the standard type for sizeof.
2871 Traditionally, use a signed type.
2872 Note that stddef.h uses `unsigned long',
2873 and this must agree, even of long and int are the same size. */
2874 sizetype
2875 = TREE_TYPE (IDENTIFIER_GLOBAL_VALUE (get_identifier (SIZE_TYPE)));
2876 if (flag_traditional && TREE_UNSIGNED (sizetype))
2877 sizetype = signed_type (sizetype);
2879 ptrdiff_type_node
2880 = TREE_TYPE (IDENTIFIER_GLOBAL_VALUE (get_identifier (PTRDIFF_TYPE)));
2882 TREE_TYPE (TYPE_SIZE (integer_type_node)) = sizetype;
2883 TREE_TYPE (TYPE_SIZE (char_type_node)) = sizetype;
2884 TREE_TYPE (TYPE_SIZE (unsigned_type_node)) = sizetype;
2885 TREE_TYPE (TYPE_SIZE (long_unsigned_type_node)) = sizetype;
2886 TREE_TYPE (TYPE_SIZE (long_integer_type_node)) = sizetype;
2887 TREE_TYPE (TYPE_SIZE (long_long_integer_type_node)) = sizetype;
2888 TREE_TYPE (TYPE_SIZE (long_long_unsigned_type_node)) = sizetype;
2890 error_mark_node = make_node (ERROR_MARK);
2891 TREE_TYPE (error_mark_node) = error_mark_node;
2893 short_integer_type_node = make_signed_type (SHORT_TYPE_SIZE);
2894 pushdecl (build_decl (TYPE_DECL, get_identifier ("short int"),
2895 short_integer_type_node));
2897 short_unsigned_type_node = make_unsigned_type (SHORT_TYPE_SIZE);
2898 pushdecl (build_decl (TYPE_DECL, get_identifier ("short unsigned int"),
2899 short_unsigned_type_node));
2901 /* Define both `signed char' and `unsigned char'. */
2902 signed_char_type_node = make_signed_type (CHAR_TYPE_SIZE);
2903 pushdecl (build_decl (TYPE_DECL, get_identifier ("signed char"),
2904 signed_char_type_node));
2906 unsigned_char_type_node = make_unsigned_type (CHAR_TYPE_SIZE);
2907 pushdecl (build_decl (TYPE_DECL, get_identifier ("unsigned char"),
2908 unsigned_char_type_node));
2910 intQI_type_node = make_signed_type (GET_MODE_BITSIZE (QImode));
2911 pushdecl (build_decl (TYPE_DECL, NULL_TREE, intQI_type_node));
2913 intHI_type_node = make_signed_type (GET_MODE_BITSIZE (HImode));
2914 pushdecl (build_decl (TYPE_DECL, NULL_TREE, intHI_type_node));
2916 intSI_type_node = make_signed_type (GET_MODE_BITSIZE (SImode));
2917 pushdecl (build_decl (TYPE_DECL, NULL_TREE, intSI_type_node));
2919 intDI_type_node = make_signed_type (GET_MODE_BITSIZE (DImode));
2920 pushdecl (build_decl (TYPE_DECL, NULL_TREE, intDI_type_node));
2922 unsigned_intQI_type_node = make_unsigned_type (GET_MODE_BITSIZE (QImode));
2923 pushdecl (build_decl (TYPE_DECL, NULL_TREE, unsigned_intQI_type_node));
2925 unsigned_intHI_type_node = make_unsigned_type (GET_MODE_BITSIZE (HImode));
2926 pushdecl (build_decl (TYPE_DECL, NULL_TREE, unsigned_intHI_type_node));
2928 unsigned_intSI_type_node = make_unsigned_type (GET_MODE_BITSIZE (SImode));
2929 pushdecl (build_decl (TYPE_DECL, NULL_TREE, unsigned_intSI_type_node));
2931 unsigned_intDI_type_node = make_unsigned_type (GET_MODE_BITSIZE (DImode));
2932 pushdecl (build_decl (TYPE_DECL, NULL_TREE, unsigned_intDI_type_node));
2934 float_type_node = make_node (REAL_TYPE);
2935 TYPE_PRECISION (float_type_node) = FLOAT_TYPE_SIZE;
2936 pushdecl (build_decl (TYPE_DECL, ridpointers[(int) RID_FLOAT],
2937 float_type_node));
2938 layout_type (float_type_node);
2940 double_type_node = make_node (REAL_TYPE);
2941 if (flag_short_double)
2942 TYPE_PRECISION (double_type_node) = FLOAT_TYPE_SIZE;
2943 else
2944 TYPE_PRECISION (double_type_node) = DOUBLE_TYPE_SIZE;
2945 pushdecl (build_decl (TYPE_DECL, ridpointers[(int) RID_DOUBLE],
2946 double_type_node));
2947 layout_type (double_type_node);
2949 long_double_type_node = make_node (REAL_TYPE);
2950 TYPE_PRECISION (long_double_type_node) = LONG_DOUBLE_TYPE_SIZE;
2951 pushdecl (build_decl (TYPE_DECL, get_identifier ("long double"),
2952 long_double_type_node));
2953 layout_type (long_double_type_node);
2955 complex_integer_type_node = make_node (COMPLEX_TYPE);
2956 pushdecl (build_decl (TYPE_DECL, get_identifier ("complex int"),
2957 complex_integer_type_node));
2958 TREE_TYPE (complex_integer_type_node) = integer_type_node;
2959 layout_type (complex_integer_type_node);
2961 complex_float_type_node = make_node (COMPLEX_TYPE);
2962 pushdecl (build_decl (TYPE_DECL, get_identifier ("complex float"),
2963 complex_float_type_node));
2964 TREE_TYPE (complex_float_type_node) = float_type_node;
2965 layout_type (complex_float_type_node);
2967 complex_double_type_node = make_node (COMPLEX_TYPE);
2968 pushdecl (build_decl (TYPE_DECL, get_identifier ("complex double"),
2969 complex_double_type_node));
2970 TREE_TYPE (complex_double_type_node) = double_type_node;
2971 layout_type (complex_double_type_node);
2973 complex_long_double_type_node = make_node (COMPLEX_TYPE);
2974 pushdecl (build_decl (TYPE_DECL, get_identifier ("complex long double"),
2975 complex_long_double_type_node));
2976 TREE_TYPE (complex_long_double_type_node) = long_double_type_node;
2977 layout_type (complex_long_double_type_node);
2979 wchar_type_node
2980 = TREE_TYPE (IDENTIFIER_GLOBAL_VALUE (get_identifier (WCHAR_TYPE)));
2981 wchar_type_size = TYPE_PRECISION (wchar_type_node);
2982 signed_wchar_type_node = signed_type (wchar_type_node);
2983 unsigned_wchar_type_node = unsigned_type (wchar_type_node);
2985 integer_zero_node = build_int_2 (0, 0);
2986 TREE_TYPE (integer_zero_node) = integer_type_node;
2987 integer_one_node = build_int_2 (1, 0);
2988 TREE_TYPE (integer_one_node) = integer_type_node;
2990 boolean_type_node = integer_type_node;
2991 boolean_true_node = integer_one_node;
2992 boolean_false_node = integer_zero_node;
2994 size_zero_node = build_int_2 (0, 0);
2995 TREE_TYPE (size_zero_node) = sizetype;
2996 size_one_node = build_int_2 (1, 0);
2997 TREE_TYPE (size_one_node) = sizetype;
2999 void_type_node = make_node (VOID_TYPE);
3000 pushdecl (build_decl (TYPE_DECL,
3001 ridpointers[(int) RID_VOID], void_type_node));
3002 layout_type (void_type_node); /* Uses integer_zero_node */
3003 /* We are not going to have real types in C with less than byte alignment,
3004 so we might as well not have any types that claim to have it. */
3005 TYPE_ALIGN (void_type_node) = BITS_PER_UNIT;
3007 null_pointer_node = build_int_2 (0, 0);
3008 TREE_TYPE (null_pointer_node) = build_pointer_type (void_type_node);
3009 layout_type (TREE_TYPE (null_pointer_node));
3011 string_type_node = build_pointer_type (char_type_node);
3012 const_string_type_node
3013 = build_pointer_type (build_type_variant (char_type_node, 1, 0));
3015 /* Make a type to be the domain of a few array types
3016 whose domains don't really matter.
3017 200 is small enough that it always fits in size_t
3018 and large enough that it can hold most function names for the
3019 initializations of __FUNCTION__ and __PRETTY_FUNCTION__. */
3020 array_domain_type = build_index_type (build_int_2 (200, 0));
3022 /* make a type for arrays of characters.
3023 With luck nothing will ever really depend on the length of this
3024 array type. */
3025 char_array_type_node
3026 = build_array_type (char_type_node, array_domain_type);
3027 /* Likewise for arrays of ints. */
3028 int_array_type_node
3029 = build_array_type (integer_type_node, array_domain_type);
3030 /* This is for wide string constants. */
3031 wchar_array_type_node
3032 = build_array_type (wchar_type_node, array_domain_type);
3034 default_function_type
3035 = build_function_type (integer_type_node, NULL_TREE);
3037 ptr_type_node = build_pointer_type (void_type_node);
3038 const_ptr_type_node
3039 = build_pointer_type (build_type_variant (void_type_node, 1, 0));
3041 endlink = tree_cons (NULL_TREE, void_type_node, NULL_TREE);
3043 void_ftype_any
3044 = build_function_type (void_type_node, NULL_TREE);
3046 float_ftype_float
3047 = build_function_type (float_type_node,
3048 tree_cons (NULL_TREE, float_type_node, endlink));
3050 double_ftype_double
3051 = build_function_type (double_type_node,
3052 tree_cons (NULL_TREE, double_type_node, endlink));
3054 ldouble_ftype_ldouble
3055 = build_function_type (long_double_type_node,
3056 tree_cons (NULL_TREE, long_double_type_node,
3057 endlink));
3059 double_ftype_double_double
3060 = build_function_type (double_type_node,
3061 tree_cons (NULL_TREE, double_type_node,
3062 tree_cons (NULL_TREE,
3063 double_type_node, endlink)));
3065 int_ftype_int
3066 = build_function_type (integer_type_node,
3067 tree_cons (NULL_TREE, integer_type_node, endlink));
3069 long_ftype_long
3070 = build_function_type (long_integer_type_node,
3071 tree_cons (NULL_TREE,
3072 long_integer_type_node, endlink));
3074 void_ftype_ptr_ptr_int
3075 = build_function_type (void_type_node,
3076 tree_cons (NULL_TREE, ptr_type_node,
3077 tree_cons (NULL_TREE, ptr_type_node,
3078 tree_cons (NULL_TREE,
3079 integer_type_node,
3080 endlink))));
3082 int_ftype_cptr_cptr_sizet
3083 = build_function_type (integer_type_node,
3084 tree_cons (NULL_TREE, const_ptr_type_node,
3085 tree_cons (NULL_TREE, const_ptr_type_node,
3086 tree_cons (NULL_TREE,
3087 sizetype,
3088 endlink))));
3090 void_ftype_ptr_int_int
3091 = build_function_type (void_type_node,
3092 tree_cons (NULL_TREE, ptr_type_node,
3093 tree_cons (NULL_TREE, integer_type_node,
3094 tree_cons (NULL_TREE,
3095 integer_type_node,
3096 endlink))));
3098 string_ftype_ptr_ptr /* strcpy prototype */
3099 = build_function_type (string_type_node,
3100 tree_cons (NULL_TREE, string_type_node,
3101 tree_cons (NULL_TREE,
3102 const_string_type_node,
3103 endlink)));
3105 int_ftype_string_string /* strcmp prototype */
3106 = build_function_type (integer_type_node,
3107 tree_cons (NULL_TREE, const_string_type_node,
3108 tree_cons (NULL_TREE,
3109 const_string_type_node,
3110 endlink)));
3112 strlen_ftype /* strlen prototype */
3113 = build_function_type (flag_traditional ? integer_type_node : sizetype,
3114 tree_cons (NULL_TREE, const_string_type_node,
3115 endlink));
3117 traditional_ptr_type_node
3118 = (flag_traditional ? string_type_node : ptr_type_node);
3120 memcpy_ftype /* memcpy prototype */
3121 = build_function_type (traditional_ptr_type_node,
3122 tree_cons (NULL_TREE, ptr_type_node,
3123 tree_cons (NULL_TREE, const_ptr_type_node,
3124 tree_cons (NULL_TREE,
3125 sizetype,
3126 endlink))));
3128 memset_ftype /* memset prototype */
3129 = build_function_type (traditional_ptr_type_node,
3130 tree_cons (NULL_TREE, ptr_type_node,
3131 tree_cons (NULL_TREE, integer_type_node,
3132 tree_cons (NULL_TREE,
3133 sizetype,
3134 endlink))));
3136 builtin_function ("__builtin_constant_p", default_function_type,
3137 BUILT_IN_CONSTANT_P, NULL_PTR);
3139 builtin_function ("__builtin_return_address",
3140 build_function_type (ptr_type_node,
3141 tree_cons (NULL_TREE,
3142 unsigned_type_node,
3143 endlink)),
3144 BUILT_IN_RETURN_ADDRESS, NULL_PTR);
3146 builtin_function ("__builtin_frame_address",
3147 build_function_type (ptr_type_node,
3148 tree_cons (NULL_TREE,
3149 unsigned_type_node,
3150 endlink)),
3151 BUILT_IN_FRAME_ADDRESS, NULL_PTR);
3153 builtin_function ("__builtin_alloca",
3154 build_function_type (ptr_type_node,
3155 tree_cons (NULL_TREE,
3156 sizetype,
3157 endlink)),
3158 BUILT_IN_ALLOCA, "alloca");
3159 builtin_function ("__builtin_ffs", int_ftype_int, BUILT_IN_FFS, NULL_PTR);
3160 /* Define alloca, ffs as builtins.
3161 Declare _exit just to mark it as volatile. */
3162 if (! flag_no_builtin && !flag_no_nonansi_builtin)
3164 temp = builtin_function ("alloca",
3165 build_function_type (ptr_type_node,
3166 tree_cons (NULL_TREE,
3167 sizetype,
3168 endlink)),
3169 BUILT_IN_ALLOCA, NULL_PTR);
3170 /* Suppress error if redefined as a non-function. */
3171 DECL_BUILT_IN_NONANSI (temp) = 1;
3172 temp = builtin_function ("ffs", int_ftype_int, BUILT_IN_FFS, NULL_PTR);
3173 /* Suppress error if redefined as a non-function. */
3174 DECL_BUILT_IN_NONANSI (temp) = 1;
3175 temp = builtin_function ("_exit", void_ftype_any, NOT_BUILT_IN,
3176 NULL_PTR);
3177 TREE_THIS_VOLATILE (temp) = 1;
3178 TREE_SIDE_EFFECTS (temp) = 1;
3179 /* Suppress error if redefined as a non-function. */
3180 DECL_BUILT_IN_NONANSI (temp) = 1;
3183 builtin_function ("__builtin_abs", int_ftype_int, BUILT_IN_ABS, NULL_PTR);
3184 builtin_function ("__builtin_fabsf", float_ftype_float, BUILT_IN_FABS,
3185 NULL_PTR);
3186 builtin_function ("__builtin_fabs", double_ftype_double, BUILT_IN_FABS,
3187 NULL_PTR);
3188 builtin_function ("__builtin_fabsl", ldouble_ftype_ldouble, BUILT_IN_FABS,
3189 NULL_PTR);
3190 builtin_function ("__builtin_labs", long_ftype_long, BUILT_IN_LABS,
3191 NULL_PTR);
3192 builtin_function ("__builtin_saveregs",
3193 build_function_type (ptr_type_node, NULL_TREE),
3194 BUILT_IN_SAVEREGS, NULL_PTR);
3195 /* EXPAND_BUILTIN_VARARGS is obsolete. */
3196 #if 0
3197 builtin_function ("__builtin_varargs",
3198 build_function_type (ptr_type_node,
3199 tree_cons (NULL_TREE,
3200 integer_type_node,
3201 endlink)),
3202 BUILT_IN_VARARGS, NULL_PTR);
3203 #endif
3204 builtin_function ("__builtin_classify_type", default_function_type,
3205 BUILT_IN_CLASSIFY_TYPE, NULL_PTR);
3206 builtin_function ("__builtin_next_arg",
3207 build_function_type (ptr_type_node, NULL_TREE),
3208 BUILT_IN_NEXT_ARG, NULL_PTR);
3209 builtin_function ("__builtin_args_info",
3210 build_function_type (integer_type_node,
3211 tree_cons (NULL_TREE,
3212 integer_type_node,
3213 endlink)),
3214 BUILT_IN_ARGS_INFO, NULL_PTR);
3216 /* Untyped call and return. */
3217 builtin_function ("__builtin_apply_args",
3218 build_function_type (ptr_type_node, NULL_TREE),
3219 BUILT_IN_APPLY_ARGS, NULL_PTR);
3221 temp = tree_cons (NULL_TREE,
3222 build_pointer_type (build_function_type (void_type_node,
3223 NULL_TREE)),
3224 tree_cons (NULL_TREE,
3225 ptr_type_node,
3226 tree_cons (NULL_TREE,
3227 sizetype,
3228 endlink)));
3229 builtin_function ("__builtin_apply",
3230 build_function_type (ptr_type_node, temp),
3231 BUILT_IN_APPLY, NULL_PTR);
3232 builtin_function ("__builtin_return",
3233 build_function_type (void_type_node,
3234 tree_cons (NULL_TREE,
3235 ptr_type_node,
3236 endlink)),
3237 BUILT_IN_RETURN, NULL_PTR);
3239 /* Currently under experimentation. */
3240 builtin_function ("__builtin_memcpy", memcpy_ftype,
3241 BUILT_IN_MEMCPY, "memcpy");
3242 builtin_function ("__builtin_memcmp", int_ftype_cptr_cptr_sizet,
3243 BUILT_IN_MEMCMP, "memcmp");
3244 builtin_function ("__builtin_memset", memset_ftype,
3245 BUILT_IN_MEMSET, NULL_PTR);
3246 builtin_function ("__builtin_strcmp", int_ftype_string_string,
3247 BUILT_IN_STRCMP, "strcmp");
3248 builtin_function ("__builtin_strcpy", string_ftype_ptr_ptr,
3249 BUILT_IN_STRCPY, "strcpy");
3250 builtin_function ("__builtin_strlen", strlen_ftype,
3251 BUILT_IN_STRLEN, "strlen");
3252 builtin_function ("__builtin_sqrtf", float_ftype_float,
3253 BUILT_IN_FSQRT, "sqrtf");
3254 builtin_function ("__builtin_fsqrt", double_ftype_double,
3255 BUILT_IN_FSQRT, "sqrt");
3256 builtin_function ("__builtin_sqrtl", ldouble_ftype_ldouble,
3257 BUILT_IN_FSQRT, "sqrtl");
3258 builtin_function ("__builtin_sinf", float_ftype_float,
3259 BUILT_IN_SIN, "sinf");
3260 builtin_function ("__builtin_sin", double_ftype_double,
3261 BUILT_IN_SIN, "sin");
3262 builtin_function ("__builtin_sinl", ldouble_ftype_ldouble,
3263 BUILT_IN_SIN, "sinl");
3264 builtin_function ("__builtin_cosf", float_ftype_float,
3265 BUILT_IN_COS, "cosf");
3266 builtin_function ("__builtin_cos", double_ftype_double,
3267 BUILT_IN_COS, "cos");
3268 builtin_function ("__builtin_cosl", ldouble_ftype_ldouble,
3269 BUILT_IN_COS, "cosl");
3270 builtin_function ("__builtin_setjmp",
3271 build_function_type (integer_type_node,
3272 tree_cons (NULL_TREE,
3273 ptr_type_node, endlink)),
3274 BUILT_IN_SETJMP, NULL_PTR);
3275 builtin_function ("__builtin_longjmp",
3276 build_function_type
3277 (void_type_node,
3278 tree_cons (NULL, ptr_type_node,
3279 tree_cons (NULL_TREE,
3280 integer_type_node,
3281 endlink))),
3282 BUILT_IN_LONGJMP, NULL_PTR);
3284 /* In an ANSI C program, it is okay to supply built-in meanings
3285 for these functions, since applications cannot validly use them
3286 with any other meaning.
3287 However, honor the -fno-builtin option. */
3288 if (!flag_no_builtin)
3290 builtin_function ("abs", int_ftype_int, BUILT_IN_ABS, NULL_PTR);
3291 builtin_function ("fabsf", float_ftype_float, BUILT_IN_FABS, NULL_PTR);
3292 builtin_function ("fabs", double_ftype_double, BUILT_IN_FABS, NULL_PTR);
3293 builtin_function ("fabsl", ldouble_ftype_ldouble, BUILT_IN_FABS,
3294 NULL_PTR);
3295 builtin_function ("labs", long_ftype_long, BUILT_IN_LABS, NULL_PTR);
3296 builtin_function ("memcpy", memcpy_ftype, BUILT_IN_MEMCPY, NULL_PTR);
3297 builtin_function ("memcmp", int_ftype_cptr_cptr_sizet, BUILT_IN_MEMCMP,
3298 NULL_PTR);
3299 builtin_function ("memset", memset_ftype, BUILT_IN_MEMSET, NULL_PTR);
3300 builtin_function ("strcmp", int_ftype_string_string, BUILT_IN_STRCMP,
3301 NULL_PTR);
3302 builtin_function ("strcpy", string_ftype_ptr_ptr, BUILT_IN_STRCPY,
3303 NULL_PTR);
3304 builtin_function ("strlen", strlen_ftype, BUILT_IN_STRLEN, NULL_PTR);
3305 builtin_function ("sqrtf", float_ftype_float, BUILT_IN_FSQRT, NULL_PTR);
3306 builtin_function ("sqrt", double_ftype_double, BUILT_IN_FSQRT, NULL_PTR);
3307 builtin_function ("sqrtl", ldouble_ftype_ldouble, BUILT_IN_FSQRT,
3308 NULL_PTR);
3309 builtin_function ("sinf", float_ftype_float, BUILT_IN_SIN, NULL_PTR);
3310 builtin_function ("sin", double_ftype_double, BUILT_IN_SIN, NULL_PTR);
3311 builtin_function ("sinl", ldouble_ftype_ldouble, BUILT_IN_SIN, NULL_PTR);
3312 builtin_function ("cosf", float_ftype_float, BUILT_IN_COS, NULL_PTR);
3313 builtin_function ("cos", double_ftype_double, BUILT_IN_COS, NULL_PTR);
3314 builtin_function ("cosl", ldouble_ftype_ldouble, BUILT_IN_COS, NULL_PTR);
3316 /* Declare these functions volatile
3317 to avoid spurious "control drops through" warnings. */
3318 /* Don't specify the argument types, to avoid errors
3319 from certain code which isn't valid in ANSI but which exists. */
3320 temp = builtin_function ("abort", void_ftype_any, NOT_BUILT_IN,
3321 NULL_PTR);
3322 TREE_THIS_VOLATILE (temp) = 1;
3323 TREE_SIDE_EFFECTS (temp) = 1;
3324 temp = builtin_function ("exit", void_ftype_any, NOT_BUILT_IN, NULL_PTR);
3325 TREE_THIS_VOLATILE (temp) = 1;
3326 TREE_SIDE_EFFECTS (temp) = 1;
3329 #if 0
3330 /* Support for these has not been written in either expand_builtin
3331 or build_function_call. */
3332 builtin_function ("__builtin_div", default_ftype, BUILT_IN_DIV, NULL_PTR);
3333 builtin_function ("__builtin_ldiv", default_ftype, BUILT_IN_LDIV, NULL_PTR);
3334 builtin_function ("__builtin_ffloor", double_ftype_double, BUILT_IN_FFLOOR,
3335 NULL_PTR);
3336 builtin_function ("__builtin_fceil", double_ftype_double, BUILT_IN_FCEIL,
3337 NULL_PTR);
3338 builtin_function ("__builtin_fmod", double_ftype_double_double,
3339 BUILT_IN_FMOD, NULL_PTR);
3340 builtin_function ("__builtin_frem", double_ftype_double_double,
3341 BUILT_IN_FREM, NULL_PTR);
3342 builtin_function ("__builtin_memset", ptr_ftype_ptr_int_int,
3343 BUILT_IN_MEMSET, NULL_PTR);
3344 builtin_function ("__builtin_getexp", double_ftype_double, BUILT_IN_GETEXP,
3345 NULL_PTR);
3346 builtin_function ("__builtin_getman", double_ftype_double, BUILT_IN_GETMAN,
3347 NULL_PTR);
3348 #endif
3350 pedantic_lvalues = pedantic;
3352 /* Create the global bindings for __FUNCTION__ and __PRETTY_FUNCTION__. */
3353 declare_function_name ();
3355 start_identifier_warnings ();
3357 /* Prepare to check format strings against argument lists. */
3358 init_function_format_info ();
3360 init_iterators ();
3362 incomplete_decl_finalize_hook = finish_incomplete_decl;
3365 /* Return a definition for a builtin function named NAME and whose data type
3366 is TYPE. TYPE should be a function type with argument types.
3367 FUNCTION_CODE tells later passes how to compile calls to this function.
3368 See tree.h for its possible values.
3370 If LIBRARY_NAME is nonzero, use that for DECL_ASSEMBLER_NAME,
3371 the name to be called if we can't opencode the function. */
3373 tree
3374 builtin_function (name, type, function_code, library_name)
3375 char *name;
3376 tree type;
3377 enum built_in_function function_code;
3378 char *library_name;
3380 tree decl = build_decl (FUNCTION_DECL, get_identifier (name), type);
3381 DECL_EXTERNAL (decl) = 1;
3382 TREE_PUBLIC (decl) = 1;
3383 /* If -traditional, permit redefining a builtin function any way you like.
3384 (Though really, if the program redefines these functions,
3385 it probably won't work right unless compiled with -fno-builtin.) */
3386 if (flag_traditional && name[0] != '_')
3387 DECL_BUILT_IN_NONANSI (decl) = 1;
3388 if (library_name)
3389 DECL_ASSEMBLER_NAME (decl) = get_identifier (library_name);
3390 make_decl_rtl (decl, NULL_PTR, 1);
3391 pushdecl (decl);
3392 if (function_code != NOT_BUILT_IN)
3394 DECL_BUILT_IN (decl) = 1;
3395 DECL_FUNCTION_CODE (decl) = function_code;
3397 /* Warn if a function in the namespace for users
3398 is used without an occasion to consider it declared. */
3399 if (name[0] != '_' || name[1] != '_')
3400 C_DECL_ANTICIPATED (decl) = 1;
3402 return decl;
3405 /* Called when a declaration is seen that contains no names to declare.
3406 If its type is a reference to a structure, union or enum inherited
3407 from a containing scope, shadow that tag name for the current scope
3408 with a forward reference.
3409 If its type defines a new named structure or union
3410 or defines an enum, it is valid but we need not do anything here.
3411 Otherwise, it is an error. */
3413 void
3414 shadow_tag (declspecs)
3415 tree declspecs;
3417 shadow_tag_warned (declspecs, 0);
3420 void
3421 shadow_tag_warned (declspecs, warned)
3422 tree declspecs;
3423 int warned;
3424 /* 1 => we have done a pedwarn. 2 => we have done a warning, but
3425 no pedwarn. */
3427 int found_tag = 0;
3428 register tree link;
3430 pending_invalid_xref = 0;
3432 for (link = declspecs; link; link = TREE_CHAIN (link))
3434 register tree value = TREE_VALUE (link);
3435 register enum tree_code code = TREE_CODE (value);
3437 if (code == RECORD_TYPE || code == UNION_TYPE || code == ENUMERAL_TYPE)
3438 /* Used to test also that TYPE_SIZE (value) != 0.
3439 That caused warning for `struct foo;' at top level in the file. */
3441 register tree name = lookup_tag_reverse (value);
3442 register tree t;
3444 found_tag++;
3446 if (name == 0)
3448 if (warned != 1 && code != ENUMERAL_TYPE)
3449 /* Empty unnamed enum OK */
3451 pedwarn ("unnamed struct/union that defines no instances");
3452 warned = 1;
3455 else
3457 t = lookup_tag (code, name, current_binding_level, 1);
3459 if (t == 0)
3461 t = make_node (code);
3462 pushtag (name, t);
3466 else
3468 if (!warned && ! in_system_header)
3470 warning ("useless keyword or type name in empty declaration");
3471 warned = 2;
3476 if (found_tag > 1)
3477 error ("two types specified in one empty declaration");
3479 if (warned != 1)
3481 if (found_tag == 0)
3482 pedwarn ("empty declaration");
3486 /* Decode a "typename", such as "int **", returning a ..._TYPE node. */
3488 tree
3489 groktypename (typename)
3490 tree typename;
3492 if (TREE_CODE (typename) != TREE_LIST)
3493 return typename;
3494 return grokdeclarator (TREE_VALUE (typename),
3495 TREE_PURPOSE (typename),
3496 TYPENAME, 0);
3499 /* Return a PARM_DECL node for a given pair of specs and declarator. */
3501 tree
3502 groktypename_in_parm_context (typename)
3503 tree typename;
3505 if (TREE_CODE (typename) != TREE_LIST)
3506 return typename;
3507 return grokdeclarator (TREE_VALUE (typename),
3508 TREE_PURPOSE (typename),
3509 PARM, 0);
3512 /* Decode a declarator in an ordinary declaration or data definition.
3513 This is called as soon as the type information and variable name
3514 have been parsed, before parsing the initializer if any.
3515 Here we create the ..._DECL node, fill in its type,
3516 and put it on the list of decls for the current context.
3517 The ..._DECL node is returned as the value.
3519 Exception: for arrays where the length is not specified,
3520 the type is left null, to be filled in by `finish_decl'.
3522 Function definitions do not come here; they go to start_function
3523 instead. However, external and forward declarations of functions
3524 do go through here. Structure field declarations are done by
3525 grokfield and not through here. */
3527 /* Set this to zero to debug not using the temporary obstack
3528 to parse initializers. */
3529 int debug_temp_inits = 1;
3531 tree
3532 start_decl (declarator, declspecs, initialized, attributes, prefix_attributes)
3533 tree declarator, declspecs;
3534 int initialized;
3535 tree attributes, prefix_attributes;
3537 register tree decl = grokdeclarator (declarator, declspecs,
3538 NORMAL, initialized);
3539 register tree tem;
3540 int init_written = initialized;
3542 /* The corresponding pop_obstacks is in finish_decl. */
3543 push_obstacks_nochange ();
3545 if (initialized)
3546 /* Is it valid for this decl to have an initializer at all?
3547 If not, set INITIALIZED to zero, which will indirectly
3548 tell `finish_decl' to ignore the initializer once it is parsed. */
3549 switch (TREE_CODE (decl))
3551 case TYPE_DECL:
3552 /* typedef foo = bar means give foo the same type as bar.
3553 We haven't parsed bar yet, so `finish_decl' will fix that up.
3554 Any other case of an initialization in a TYPE_DECL is an error. */
3555 if (pedantic || list_length (declspecs) > 1)
3557 error ("typedef `%s' is initialized",
3558 IDENTIFIER_POINTER (DECL_NAME (decl)));
3559 initialized = 0;
3561 break;
3563 case FUNCTION_DECL:
3564 error ("function `%s' is initialized like a variable",
3565 IDENTIFIER_POINTER (DECL_NAME (decl)));
3566 initialized = 0;
3567 break;
3569 case PARM_DECL:
3570 /* DECL_INITIAL in a PARM_DECL is really DECL_ARG_TYPE. */
3571 error ("parameter `%s' is initialized",
3572 IDENTIFIER_POINTER (DECL_NAME (decl)));
3573 initialized = 0;
3574 break;
3576 default:
3577 /* Don't allow initializations for incomplete types
3578 except for arrays which might be completed by the initialization. */
3579 if (TYPE_SIZE (TREE_TYPE (decl)) != 0)
3581 /* A complete type is ok if size is fixed. */
3583 if (TREE_CODE (TYPE_SIZE (TREE_TYPE (decl))) != INTEGER_CST
3584 || C_DECL_VARIABLE_SIZE (decl))
3586 error ("variable-sized object may not be initialized");
3587 initialized = 0;
3590 else if (TREE_CODE (TREE_TYPE (decl)) != ARRAY_TYPE)
3592 error ("variable `%s' has initializer but incomplete type",
3593 IDENTIFIER_POINTER (DECL_NAME (decl)));
3594 initialized = 0;
3596 else if (TYPE_SIZE (TREE_TYPE (TREE_TYPE (decl))) == 0)
3598 error ("elements of array `%s' have incomplete type",
3599 IDENTIFIER_POINTER (DECL_NAME (decl)));
3600 initialized = 0;
3604 if (initialized)
3606 #if 0 /* Seems redundant with grokdeclarator. */
3607 if (current_binding_level != global_binding_level
3608 && DECL_EXTERNAL (decl)
3609 && TREE_CODE (decl) != FUNCTION_DECL)
3610 warning ("declaration of `%s' has `extern' and is initialized",
3611 IDENTIFIER_POINTER (DECL_NAME (decl)));
3612 #endif
3613 DECL_EXTERNAL (decl) = 0;
3614 if (current_binding_level == global_binding_level)
3615 TREE_STATIC (decl) = 1;
3617 /* Tell `pushdecl' this is an initialized decl
3618 even though we don't yet have the initializer expression.
3619 Also tell `finish_decl' it may store the real initializer. */
3620 DECL_INITIAL (decl) = error_mark_node;
3623 /* If this is a function declaration, write a record describing it to the
3624 prototypes file (if requested). */
3626 if (TREE_CODE (decl) == FUNCTION_DECL)
3627 gen_aux_info_record (decl, 0, 0, TYPE_ARG_TYPES (TREE_TYPE (decl)) != 0);
3629 /* ANSI specifies that a tentative definition which is not merged with
3630 a non-tentative definition behaves exactly like a definition with an
3631 initializer equal to zero. (Section 3.7.2)
3632 -fno-common gives strict ANSI behavior. Usually you don't want it.
3633 This matters only for variables with external linkage. */
3634 if (! flag_no_common || ! TREE_PUBLIC (decl))
3635 DECL_COMMON (decl) = 1;
3637 /* Set attributes here so if duplicate decl, will have proper attributes. */
3638 decl_attributes (decl, attributes, prefix_attributes);
3640 /* Add this decl to the current binding level.
3641 TEM may equal DECL or it may be a previous decl of the same name. */
3642 tem = pushdecl (decl);
3644 /* For a local variable, define the RTL now. */
3645 if (current_binding_level != global_binding_level
3646 /* But not if this is a duplicate decl
3647 and we preserved the rtl from the previous one
3648 (which may or may not happen). */
3649 && DECL_RTL (tem) == 0)
3651 if (TYPE_SIZE (TREE_TYPE (tem)) != 0)
3652 expand_decl (tem);
3653 else if (TREE_CODE (TREE_TYPE (tem)) == ARRAY_TYPE
3654 && DECL_INITIAL (tem) != 0)
3655 expand_decl (tem);
3658 if (init_written)
3660 /* When parsing and digesting the initializer,
3661 use temporary storage. Do this even if we will ignore the value. */
3662 if (current_binding_level == global_binding_level && debug_temp_inits)
3663 temporary_allocation ();
3666 return tem;
3669 /* Finish processing of a declaration;
3670 install its initial value.
3671 If the length of an array type is not known before,
3672 it must be determined now, from the initial value, or it is an error. */
3674 void
3675 finish_decl (decl, init, asmspec_tree)
3676 tree decl, init;
3677 tree asmspec_tree;
3679 register tree type = TREE_TYPE (decl);
3680 int was_incomplete = (DECL_SIZE (decl) == 0);
3681 int temporary = allocation_temporary_p ();
3682 char *asmspec = 0;
3684 /* If a name was specified, get the string. */
3685 if (asmspec_tree)
3686 asmspec = TREE_STRING_POINTER (asmspec_tree);
3688 /* If `start_decl' didn't like having an initialization, ignore it now. */
3690 if (init != 0 && DECL_INITIAL (decl) == 0)
3691 init = 0;
3692 /* Don't crash if parm is initialized. */
3693 if (TREE_CODE (decl) == PARM_DECL)
3694 init = 0;
3696 if (ITERATOR_P (decl))
3698 if (init == 0)
3699 error_with_decl (decl, "iterator has no initial value");
3700 else
3701 init = save_expr (init);
3704 if (init)
3706 if (TREE_CODE (decl) != TYPE_DECL)
3707 store_init_value (decl, init);
3708 else
3710 /* typedef foo = bar; store the type of bar as the type of foo. */
3711 TREE_TYPE (decl) = TREE_TYPE (init);
3712 DECL_INITIAL (decl) = init = 0;
3716 /* Pop back to the obstack that is current for this binding level.
3717 This is because MAXINDEX, rtl, etc. to be made below
3718 must go in the permanent obstack. But don't discard the
3719 temporary data yet. */
3720 pop_obstacks ();
3721 #if 0 /* pop_obstacks was near the end; this is what was here. */
3722 if (current_binding_level == global_binding_level && temporary)
3723 end_temporary_allocation ();
3724 #endif
3726 /* Deduce size of array from initialization, if not already known */
3728 if (TREE_CODE (type) == ARRAY_TYPE
3729 && TYPE_DOMAIN (type) == 0
3730 && TREE_CODE (decl) != TYPE_DECL)
3732 int do_default
3733 = (TREE_STATIC (decl)
3734 /* Even if pedantic, an external linkage array
3735 may have incomplete type at first. */
3736 ? pedantic && !TREE_PUBLIC (decl)
3737 : !DECL_EXTERNAL (decl));
3738 int failure
3739 = complete_array_type (type, DECL_INITIAL (decl), do_default);
3741 /* Get the completed type made by complete_array_type. */
3742 type = TREE_TYPE (decl);
3744 if (failure == 1)
3745 error_with_decl (decl, "initializer fails to determine size of `%s'");
3747 if (failure == 2)
3749 if (do_default)
3750 error_with_decl (decl, "array size missing in `%s'");
3751 /* If a `static' var's size isn't known,
3752 make it extern as well as static, so it does not get
3753 allocated.
3754 If it is not `static', then do not mark extern;
3755 finish_incomplete_decl will give it a default size
3756 and it will get allocated. */
3757 else if (!pedantic && TREE_STATIC (decl) && ! TREE_PUBLIC (decl))
3758 DECL_EXTERNAL (decl) = 1;
3761 /* TYPE_MAX_VALUE is always one less than the number of elements
3762 in the array, because we start counting at zero. Therefore,
3763 warn only if the value is less than zero. */
3764 if (pedantic && TYPE_DOMAIN (type) != 0
3765 && tree_int_cst_sgn (TYPE_MAX_VALUE (TYPE_DOMAIN (type))) < 0)
3766 error_with_decl (decl, "zero or negative size array `%s'");
3768 layout_decl (decl, 0);
3771 if (TREE_CODE (decl) == VAR_DECL)
3773 if (DECL_SIZE (decl) == 0
3774 && TYPE_SIZE (TREE_TYPE (decl)) != 0)
3775 layout_decl (decl, 0);
3777 if (DECL_SIZE (decl) == 0
3778 && (TREE_STATIC (decl)
3780 /* A static variable with an incomplete type
3781 is an error if it is initialized.
3782 Also if it is not file scope.
3783 Otherwise, let it through, but if it is not `extern'
3784 then it may cause an error message later. */
3785 /* A duplicate_decls call could have changed an extern
3786 declaration into a file scope one. This can be detected
3787 by TREE_ASM_WRITTEN being set. */
3788 (DECL_INITIAL (decl) != 0
3789 || DECL_CONTEXT (decl) != 0 && ! TREE_ASM_WRITTEN (decl))
3791 /* An automatic variable with an incomplete type
3792 is an error. */
3793 !DECL_EXTERNAL (decl)))
3795 error_with_decl (decl, "storage size of `%s' isn't known");
3796 TREE_TYPE (decl) = error_mark_node;
3799 if ((DECL_EXTERNAL (decl) || TREE_STATIC (decl))
3800 && DECL_SIZE (decl) != 0)
3802 if (TREE_CODE (DECL_SIZE (decl)) == INTEGER_CST)
3803 constant_expression_warning (DECL_SIZE (decl));
3804 else
3805 error_with_decl (decl, "storage size of `%s' isn't constant");
3809 /* If this is a function and an assembler name is specified, it isn't
3810 builtin any more. Also reset DECL_RTL so we can give it its new
3811 name. */
3812 if (TREE_CODE (decl) == FUNCTION_DECL && asmspec)
3814 DECL_BUILT_IN (decl) = 0;
3815 DECL_RTL (decl) = 0;
3818 /* Output the assembler code and/or RTL code for variables and functions,
3819 unless the type is an undefined structure or union.
3820 If not, it will get done when the type is completed. */
3822 if (TREE_CODE (decl) == VAR_DECL || TREE_CODE (decl) == FUNCTION_DECL)
3824 if ((flag_traditional || TREE_PERMANENT (decl))
3825 && allocation_temporary_p ())
3827 push_obstacks_nochange ();
3828 end_temporary_allocation ();
3829 /* This is a no-op in c-lang.c or something real in objc-actions.c. */
3830 maybe_objc_check_decl (decl);
3831 rest_of_decl_compilation (decl, asmspec,
3832 (DECL_CONTEXT (decl) == 0
3833 || TREE_ASM_WRITTEN (decl)),
3835 pop_obstacks ();
3837 else
3839 /* This is a no-op in c-lang.c or something real in objc-actions.c. */
3840 maybe_objc_check_decl (decl);
3841 rest_of_decl_compilation (decl, asmspec, DECL_CONTEXT (decl) == 0,
3844 if (DECL_CONTEXT (decl) != 0)
3846 /* Recompute the RTL of a local array now
3847 if it used to be an incomplete type. */
3848 if (was_incomplete
3849 && ! TREE_STATIC (decl) && ! DECL_EXTERNAL (decl))
3851 /* If we used it already as memory, it must stay in memory. */
3852 TREE_ADDRESSABLE (decl) = TREE_USED (decl);
3853 /* If it's still incomplete now, no init will save it. */
3854 if (DECL_SIZE (decl) == 0)
3855 DECL_INITIAL (decl) = 0;
3856 expand_decl (decl);
3858 /* Compute and store the initial value. */
3859 if (TREE_CODE (decl) != FUNCTION_DECL)
3860 expand_decl_init (decl);
3864 if (TREE_CODE (decl) == TYPE_DECL)
3866 /* This is a no-op in c-lang.c or something real in objc-actions.c. */
3867 maybe_objc_check_decl (decl);
3868 rest_of_decl_compilation (decl, NULL_PTR, DECL_CONTEXT (decl) == 0,
3872 /* ??? After 2.3, test (init != 0) instead of TREE_CODE. */
3873 /* This test used to include TREE_PERMANENT, however, we have the same
3874 problem with initializers at the function level. Such initializers get
3875 saved until the end of the function on the momentary_obstack. */
3876 if (!(TREE_CODE (decl) == FUNCTION_DECL && DECL_INLINE (decl))
3877 && temporary
3878 /* DECL_INITIAL is not defined in PARM_DECLs, since it shares
3879 space with DECL_ARG_TYPE. */
3880 && TREE_CODE (decl) != PARM_DECL)
3882 /* We need to remember that this array HAD an initialization,
3883 but discard the actual temporary nodes,
3884 since we can't have a permanent node keep pointing to them. */
3885 /* We make an exception for inline functions, since it's
3886 normal for a local extern redeclaration of an inline function
3887 to have a copy of the top-level decl's DECL_INLINE. */
3888 if (DECL_INITIAL (decl) != 0 && DECL_INITIAL (decl) != error_mark_node)
3890 /* If this is a const variable, then preserve the
3891 initializer instead of discarding it so that we can optimize
3892 references to it. */
3893 /* This test used to include TREE_STATIC, but this won't be set
3894 for function level initializers. */
3895 if (TREE_READONLY (decl) || ITERATOR_P (decl))
3897 preserve_initializer ();
3898 /* Hack? Set the permanent bit for something that is permanent,
3899 but not on the permanent obstack, so as to convince
3900 output_constant_def to make its rtl on the permanent
3901 obstack. */
3902 TREE_PERMANENT (DECL_INITIAL (decl)) = 1;
3904 /* The initializer and DECL must have the same (or equivalent
3905 types), but if the initializer is a STRING_CST, its type
3906 might not be on the right obstack, so copy the type
3907 of DECL. */
3908 TREE_TYPE (DECL_INITIAL (decl)) = type;
3910 else
3911 DECL_INITIAL (decl) = error_mark_node;
3915 /* If requested, warn about definitions of large data objects. */
3917 if (warn_larger_than
3918 && (TREE_CODE (decl) == VAR_DECL || TREE_CODE (decl) == PARM_DECL)
3919 && !DECL_EXTERNAL (decl))
3921 register tree decl_size = DECL_SIZE (decl);
3923 if (decl_size && TREE_CODE (decl_size) == INTEGER_CST)
3925 unsigned units = TREE_INT_CST_LOW(decl_size) / BITS_PER_UNIT;
3927 if (units > larger_than_size)
3928 warning_with_decl (decl, "size of `%s' is %u bytes", units);
3932 #if 0
3933 /* Resume permanent allocation, if not within a function. */
3934 /* The corresponding push_obstacks_nochange is in start_decl,
3935 and in push_parm_decl and in grokfield. */
3936 pop_obstacks ();
3937 #endif
3939 /* If we have gone back from temporary to permanent allocation,
3940 actually free the temporary space that we no longer need. */
3941 if (temporary && !allocation_temporary_p ())
3942 permanent_allocation (0);
3944 /* At the end of a declaration, throw away any variable type sizes
3945 of types defined inside that declaration. There is no use
3946 computing them in the following function definition. */
3947 if (current_binding_level == global_binding_level)
3948 get_pending_sizes ();
3951 /* If DECL has a cleanup, build and return that cleanup here.
3952 This is a callback called by expand_expr. */
3954 tree
3955 maybe_build_cleanup (decl)
3956 tree decl;
3958 /* There are no cleanups in C. */
3959 return NULL_TREE;
3962 /* Given a parsed parameter declaration,
3963 decode it into a PARM_DECL and push that on the current binding level.
3964 Also, for the sake of forward parm decls,
3965 record the given order of parms in `parm_order'. */
3967 void
3968 push_parm_decl (parm)
3969 tree parm;
3971 tree decl;
3972 int old_immediate_size_expand = immediate_size_expand;
3973 /* Don't try computing parm sizes now -- wait till fn is called. */
3974 immediate_size_expand = 0;
3976 /* The corresponding pop_obstacks is in finish_decl. */
3977 push_obstacks_nochange ();
3979 decl = grokdeclarator (TREE_VALUE (TREE_PURPOSE (parm)),
3980 TREE_PURPOSE (TREE_PURPOSE (parm)), PARM, 0);
3981 decl_attributes (decl, TREE_VALUE (TREE_VALUE (parm)),
3982 TREE_PURPOSE (TREE_VALUE (parm)));
3984 #if 0
3985 if (DECL_NAME (decl))
3987 tree olddecl;
3988 olddecl = lookup_name (DECL_NAME (decl));
3989 if (pedantic && olddecl != 0 && TREE_CODE (olddecl) == TYPE_DECL)
3990 pedwarn_with_decl (decl, "ANSI C forbids parameter `%s' shadowing typedef");
3992 #endif
3994 decl = pushdecl (decl);
3996 immediate_size_expand = old_immediate_size_expand;
3998 current_binding_level->parm_order
3999 = tree_cons (NULL_TREE, decl, current_binding_level->parm_order);
4001 /* Add this decl to the current binding level. */
4002 finish_decl (decl, NULL_TREE, NULL_TREE);
4005 /* Clear the given order of parms in `parm_order'.
4006 Used at start of parm list,
4007 and also at semicolon terminating forward decls. */
4009 void
4010 clear_parm_order ()
4012 current_binding_level->parm_order = NULL_TREE;
4015 /* Make TYPE a complete type based on INITIAL_VALUE.
4016 Return 0 if successful, 1 if INITIAL_VALUE can't be deciphered,
4017 2 if there was no information (in which case assume 1 if DO_DEFAULT). */
4020 complete_array_type (type, initial_value, do_default)
4021 tree type;
4022 tree initial_value;
4023 int do_default;
4025 register tree maxindex = NULL_TREE;
4026 int value = 0;
4028 if (initial_value)
4030 /* Note MAXINDEX is really the maximum index,
4031 one less than the size. */
4032 if (TREE_CODE (initial_value) == STRING_CST)
4034 int eltsize
4035 = int_size_in_bytes (TREE_TYPE (TREE_TYPE (initial_value)));
4036 maxindex = build_int_2 ((TREE_STRING_LENGTH (initial_value)
4037 / eltsize) - 1, 0);
4039 else if (TREE_CODE (initial_value) == CONSTRUCTOR)
4041 tree elts = CONSTRUCTOR_ELTS (initial_value);
4042 maxindex = size_binop (MINUS_EXPR, integer_zero_node, size_one_node);
4043 for (; elts; elts = TREE_CHAIN (elts))
4045 if (TREE_PURPOSE (elts))
4046 maxindex = TREE_PURPOSE (elts);
4047 else
4048 maxindex = size_binop (PLUS_EXPR, maxindex, size_one_node);
4050 maxindex = copy_node (maxindex);
4052 else
4054 /* Make an error message unless that happened already. */
4055 if (initial_value != error_mark_node)
4056 value = 1;
4058 /* Prevent further error messages. */
4059 maxindex = build_int_2 (0, 0);
4063 if (!maxindex)
4065 if (do_default)
4066 maxindex = build_int_2 (0, 0);
4067 value = 2;
4070 if (maxindex)
4072 TYPE_DOMAIN (type) = build_index_type (maxindex);
4073 if (!TREE_TYPE (maxindex))
4074 TREE_TYPE (maxindex) = TYPE_DOMAIN (type);
4075 #if 0 /* I took out this change
4076 together with the change in build_array_type. --rms */
4077 change_main_variant (type,
4078 build_array_type (TREE_TYPE (type),
4079 TYPE_DOMAIN (type)));
4080 #endif
4083 /* Lay out the type now that we can get the real answer. */
4085 layout_type (type);
4087 return value;
4090 /* Given declspecs and a declarator,
4091 determine the name and type of the object declared
4092 and construct a ..._DECL node for it.
4093 (In one case we can return a ..._TYPE node instead.
4094 For invalid input we sometimes return 0.)
4096 DECLSPECS is a chain of tree_list nodes whose value fields
4097 are the storage classes and type specifiers.
4099 DECL_CONTEXT says which syntactic context this declaration is in:
4100 NORMAL for most contexts. Make a VAR_DECL or FUNCTION_DECL or TYPE_DECL.
4101 FUNCDEF for a function definition. Like NORMAL but a few different
4102 error messages in each case. Return value may be zero meaning
4103 this definition is too screwy to try to parse.
4104 PARM for a parameter declaration (either within a function prototype
4105 or before a function body). Make a PARM_DECL, or return void_type_node.
4106 TYPENAME if for a typename (in a cast or sizeof).
4107 Don't make a DECL node; just return the ..._TYPE node.
4108 FIELD for a struct or union field; make a FIELD_DECL.
4109 BITFIELD for a field with specified width.
4110 INITIALIZED is 1 if the decl has an initializer.
4112 In the TYPENAME case, DECLARATOR is really an absolute declarator.
4113 It may also be so in the PARM case, for a prototype where the
4114 argument type is specified but not the name.
4116 This function is where the complicated C meanings of `static'
4117 and `extern' are interpreted. */
4119 static tree
4120 grokdeclarator (declarator, declspecs, decl_context, initialized)
4121 tree declspecs;
4122 tree declarator;
4123 enum decl_context decl_context;
4124 int initialized;
4126 int specbits = 0;
4127 tree spec;
4128 tree type = NULL_TREE;
4129 int longlong = 0;
4130 int constp;
4131 int volatilep;
4132 int inlinep;
4133 int explicit_int = 0;
4134 int explicit_char = 0;
4135 int defaulted_int = 0;
4136 tree typedef_decl = 0;
4137 char *name;
4138 tree typedef_type = 0;
4139 int funcdef_flag = 0;
4140 enum tree_code innermost_code = ERROR_MARK;
4141 int bitfield = 0;
4142 int size_varies = 0;
4143 tree decl_machine_attr = NULL_TREE;
4145 if (decl_context == BITFIELD)
4146 bitfield = 1, decl_context = FIELD;
4148 if (decl_context == FUNCDEF)
4149 funcdef_flag = 1, decl_context = NORMAL;
4151 push_obstacks_nochange ();
4153 if (flag_traditional && allocation_temporary_p ())
4154 end_temporary_allocation ();
4156 /* Look inside a declarator for the name being declared
4157 and get it as a string, for an error message. */
4159 register tree decl = declarator;
4160 name = 0;
4162 while (decl)
4163 switch (TREE_CODE (decl))
4165 case ARRAY_REF:
4166 case INDIRECT_REF:
4167 case CALL_EXPR:
4168 innermost_code = TREE_CODE (decl);
4169 decl = TREE_OPERAND (decl, 0);
4170 break;
4172 case IDENTIFIER_NODE:
4173 name = IDENTIFIER_POINTER (decl);
4174 decl = 0;
4175 break;
4177 default:
4178 abort ();
4180 if (name == 0)
4181 name = "type name";
4184 /* A function definition's declarator must have the form of
4185 a function declarator. */
4187 if (funcdef_flag && innermost_code != CALL_EXPR)
4188 return 0;
4190 /* Anything declared one level down from the top level
4191 must be one of the parameters of a function
4192 (because the body is at least two levels down). */
4194 /* If this looks like a function definition, make it one,
4195 even if it occurs where parms are expected.
4196 Then store_parm_decls will reject it and not use it as a parm. */
4197 if (decl_context == NORMAL && !funcdef_flag
4198 && current_binding_level->parm_flag)
4199 decl_context = PARM;
4201 /* Look through the decl specs and record which ones appear.
4202 Some typespecs are defined as built-in typenames.
4203 Others, the ones that are modifiers of other types,
4204 are represented by bits in SPECBITS: set the bits for
4205 the modifiers that appear. Storage class keywords are also in SPECBITS.
4207 If there is a typedef name or a type, store the type in TYPE.
4208 This includes builtin typedefs such as `int'.
4210 Set EXPLICIT_INT or EXPLICIT_CHAR if the type is `int' or `char'
4211 and did not come from a user typedef.
4213 Set LONGLONG if `long' is mentioned twice. */
4215 for (spec = declspecs; spec; spec = TREE_CHAIN (spec))
4217 register int i;
4218 register tree id = TREE_VALUE (spec);
4220 if (id == ridpointers[(int) RID_INT])
4221 explicit_int = 1;
4222 if (id == ridpointers[(int) RID_CHAR])
4223 explicit_char = 1;
4225 if (TREE_CODE (id) == IDENTIFIER_NODE)
4226 for (i = (int) RID_FIRST_MODIFIER; i < (int) RID_MAX; i++)
4228 if (ridpointers[i] == id)
4230 if (i == (int) RID_LONG && specbits & (1<<i))
4232 if (longlong)
4233 error ("`long long long' is too long for GCC");
4234 else
4236 if (pedantic && ! in_system_header)
4237 pedwarn ("ANSI C does not support `long long'");
4238 longlong = 1;
4241 else if (specbits & (1 << i))
4242 pedwarn ("duplicate `%s'", IDENTIFIER_POINTER (id));
4243 specbits |= 1 << i;
4244 goto found;
4247 if (type)
4248 error ("two or more data types in declaration of `%s'", name);
4249 /* Actual typedefs come to us as TYPE_DECL nodes. */
4250 else if (TREE_CODE (id) == TYPE_DECL)
4252 type = TREE_TYPE (id);
4253 decl_machine_attr = DECL_MACHINE_ATTRIBUTES (id);
4254 typedef_decl = id;
4256 /* Built-in types come as identifiers. */
4257 else if (TREE_CODE (id) == IDENTIFIER_NODE)
4259 register tree t = lookup_name (id);
4260 if (TREE_TYPE (t) == error_mark_node)
4262 else if (!t || TREE_CODE (t) != TYPE_DECL)
4263 error ("`%s' fails to be a typedef or built in type",
4264 IDENTIFIER_POINTER (id));
4265 else
4267 type = TREE_TYPE (t);
4268 typedef_decl = t;
4271 else if (TREE_CODE (id) != ERROR_MARK)
4272 type = id;
4274 found: {}
4277 typedef_type = type;
4278 if (type)
4279 size_varies = C_TYPE_VARIABLE_SIZE (type);
4281 /* No type at all: default to `int', and set DEFAULTED_INT
4282 because it was not a user-defined typedef. */
4284 if (type == 0)
4286 if (funcdef_flag && warn_return_type
4287 && ! (specbits & ((1 << (int) RID_LONG) | (1 << (int) RID_SHORT)
4288 | (1 << (int) RID_SIGNED) | (1 << (int) RID_UNSIGNED))))
4289 warn_about_return_type = 1;
4290 defaulted_int = 1;
4291 type = integer_type_node;
4294 /* Now process the modifiers that were specified
4295 and check for invalid combinations. */
4297 /* Long double is a special combination. */
4299 if ((specbits & 1 << (int) RID_LONG)
4300 && TYPE_MAIN_VARIANT (type) == double_type_node)
4302 specbits &= ~ (1 << (int) RID_LONG);
4303 type = long_double_type_node;
4306 /* Check all other uses of type modifiers. */
4308 if (specbits & ((1 << (int) RID_LONG) | (1 << (int) RID_SHORT)
4309 | (1 << (int) RID_UNSIGNED) | (1 << (int) RID_SIGNED)))
4311 int ok = 0;
4313 if (TREE_CODE (type) != INTEGER_TYPE)
4314 error ("long, short, signed or unsigned invalid for `%s'", name);
4315 else if ((specbits & 1 << (int) RID_LONG)
4316 && (specbits & 1 << (int) RID_SHORT))
4317 error ("long and short specified together for `%s'", name);
4318 else if (((specbits & 1 << (int) RID_LONG)
4319 || (specbits & 1 << (int) RID_SHORT))
4320 && explicit_char)
4321 error ("long or short specified with char for `%s'", name);
4322 else if (((specbits & 1 << (int) RID_LONG)
4323 || (specbits & 1 << (int) RID_SHORT))
4324 && TREE_CODE (type) == REAL_TYPE)
4325 error ("long or short specified with floating type for `%s'", name);
4326 else if ((specbits & 1 << (int) RID_SIGNED)
4327 && (specbits & 1 << (int) RID_UNSIGNED))
4328 error ("signed and unsigned given together for `%s'", name);
4329 else
4331 ok = 1;
4332 if (!explicit_int && !defaulted_int && !explicit_char && pedantic)
4334 pedwarn ("long, short, signed or unsigned used invalidly for `%s'",
4335 name);
4336 if (flag_pedantic_errors)
4337 ok = 0;
4341 /* Discard the type modifiers if they are invalid. */
4342 if (! ok)
4344 specbits &= ~((1 << (int) RID_LONG) | (1 << (int) RID_SHORT)
4345 | (1 << (int) RID_UNSIGNED) | (1 << (int) RID_SIGNED));
4346 longlong = 0;
4350 if ((specbits & (1 << (int) RID_COMPLEX))
4351 && TREE_CODE (type) != INTEGER_TYPE && TREE_CODE (type) != REAL_TYPE)
4353 error ("complex invalid for `%s'", name);
4354 specbits &= ~ (1 << (int) RID_COMPLEX);
4357 /* Decide whether an integer type is signed or not.
4358 Optionally treat bitfields as signed by default. */
4359 if (specbits & 1 << (int) RID_UNSIGNED
4360 /* Traditionally, all bitfields are unsigned. */
4361 || (bitfield && flag_traditional
4362 && (! explicit_flag_signed_bitfields || !flag_signed_bitfields))
4363 || (bitfield && ! flag_signed_bitfields
4364 && (explicit_int || defaulted_int || explicit_char
4365 /* A typedef for plain `int' without `signed'
4366 can be controlled just like plain `int'. */
4367 || ! (typedef_decl != 0
4368 && C_TYPEDEF_EXPLICITLY_SIGNED (typedef_decl)))
4369 && TREE_CODE (type) != ENUMERAL_TYPE
4370 && !(specbits & 1 << (int) RID_SIGNED)))
4372 if (longlong)
4373 type = long_long_unsigned_type_node;
4374 else if (specbits & 1 << (int) RID_LONG)
4375 type = long_unsigned_type_node;
4376 else if (specbits & 1 << (int) RID_SHORT)
4377 type = short_unsigned_type_node;
4378 else if (type == char_type_node)
4379 type = unsigned_char_type_node;
4380 else if (typedef_decl)
4381 type = unsigned_type (type);
4382 else
4383 type = unsigned_type_node;
4385 else if ((specbits & 1 << (int) RID_SIGNED)
4386 && type == char_type_node)
4387 type = signed_char_type_node;
4388 else if (longlong)
4389 type = long_long_integer_type_node;
4390 else if (specbits & 1 << (int) RID_LONG)
4391 type = long_integer_type_node;
4392 else if (specbits & 1 << (int) RID_SHORT)
4393 type = short_integer_type_node;
4395 if (specbits & 1 << (int) RID_COMPLEX)
4397 /* If we just have "complex", it is equivalent to
4398 "complex double", but if any modifiers at all are specified it is
4399 the complex form of TYPE. E.g, "complex short" is
4400 "complex short int". */
4402 if (defaulted_int && ! longlong
4403 && ! (specbits & ((1 << (int) RID_LONG) | (1 << (int) RID_SHORT)
4404 | (1 << (int) RID_SIGNED)
4405 | (1 << (int) RID_UNSIGNED))))
4406 type = complex_double_type_node;
4407 else if (type == integer_type_node)
4408 type = complex_integer_type_node;
4409 else if (type == float_type_node)
4410 type = complex_float_type_node;
4411 else if (type == double_type_node)
4412 type = complex_double_type_node;
4413 else if (type == long_double_type_node)
4414 type = complex_long_double_type_node;
4415 else
4416 type = build_complex_type (type);
4419 /* Set CONSTP if this declaration is `const', whether by
4420 explicit specification or via a typedef.
4421 Likewise for VOLATILEP. */
4423 constp = !! (specbits & 1 << (int) RID_CONST) + TYPE_READONLY (type);
4424 volatilep = !! (specbits & 1 << (int) RID_VOLATILE) + TYPE_VOLATILE (type);
4425 inlinep = !! (specbits & (1 << (int) RID_INLINE));
4426 if (constp > 1)
4427 pedwarn ("duplicate `const'");
4428 if (volatilep > 1)
4429 pedwarn ("duplicate `volatile'");
4430 if (! flag_gen_aux_info && (TYPE_READONLY (type) || TYPE_VOLATILE (type)))
4431 type = TYPE_MAIN_VARIANT (type);
4433 /* Warn if two storage classes are given. Default to `auto'. */
4436 int nclasses = 0;
4438 if (specbits & 1 << (int) RID_AUTO) nclasses++;
4439 if (specbits & 1 << (int) RID_STATIC) nclasses++;
4440 if (specbits & 1 << (int) RID_EXTERN) nclasses++;
4441 if (specbits & 1 << (int) RID_REGISTER) nclasses++;
4442 if (specbits & 1 << (int) RID_TYPEDEF) nclasses++;
4443 if (specbits & 1 << (int) RID_ITERATOR) nclasses++;
4445 /* Warn about storage classes that are invalid for certain
4446 kinds of declarations (parameters, typenames, etc.). */
4448 if (nclasses > 1)
4449 error ("multiple storage classes in declaration of `%s'", name);
4450 else if (funcdef_flag
4451 && (specbits
4452 & ((1 << (int) RID_REGISTER)
4453 | (1 << (int) RID_AUTO)
4454 | (1 << (int) RID_TYPEDEF))))
4456 if (specbits & 1 << (int) RID_AUTO
4457 && (pedantic || current_binding_level == global_binding_level))
4458 pedwarn ("function definition declared `auto'");
4459 if (specbits & 1 << (int) RID_REGISTER)
4460 error ("function definition declared `register'");
4461 if (specbits & 1 << (int) RID_TYPEDEF)
4462 error ("function definition declared `typedef'");
4463 specbits &= ~ ((1 << (int) RID_TYPEDEF) | (1 << (int) RID_REGISTER)
4464 | (1 << (int) RID_AUTO));
4466 else if (decl_context != NORMAL && nclasses > 0)
4468 if (decl_context == PARM && specbits & 1 << (int) RID_REGISTER)
4470 else
4472 error ((decl_context == FIELD
4473 ? "storage class specified for structure field `%s'"
4474 : (decl_context == PARM
4475 ? "storage class specified for parameter `%s'"
4476 : "storage class specified for typename")),
4477 name);
4478 specbits &= ~ ((1 << (int) RID_TYPEDEF) | (1 << (int) RID_REGISTER)
4479 | (1 << (int) RID_AUTO) | (1 << (int) RID_STATIC)
4480 | (1 << (int) RID_EXTERN));
4483 else if (specbits & 1 << (int) RID_EXTERN && initialized && ! funcdef_flag)
4485 /* `extern' with initialization is invalid if not at top level. */
4486 if (current_binding_level == global_binding_level)
4487 warning ("`%s' initialized and declared `extern'", name);
4488 else
4489 error ("`%s' has both `extern' and initializer", name);
4491 else if (specbits & 1 << (int) RID_EXTERN && funcdef_flag
4492 && current_binding_level != global_binding_level)
4493 error ("nested function `%s' declared `extern'", name);
4494 else if (current_binding_level == global_binding_level
4495 && specbits & (1 << (int) RID_AUTO))
4496 error ("top-level declaration of `%s' specifies `auto'", name);
4497 else if ((specbits & 1 << (int) RID_ITERATOR)
4498 && TREE_CODE (declarator) != IDENTIFIER_NODE)
4500 error ("iterator `%s' has derived type", name);
4501 type = error_mark_node;
4503 else if ((specbits & 1 << (int) RID_ITERATOR)
4504 && TREE_CODE (type) != INTEGER_TYPE)
4506 error ("iterator `%s' has noninteger type", name);
4507 type = error_mark_node;
4511 /* Now figure out the structure of the declarator proper.
4512 Descend through it, creating more complex types, until we reach
4513 the declared identifier (or NULL_TREE, in an absolute declarator). */
4515 while (declarator && TREE_CODE (declarator) != IDENTIFIER_NODE)
4517 if (type == error_mark_node)
4519 declarator = TREE_OPERAND (declarator, 0);
4520 continue;
4523 /* Each level of DECLARATOR is either an ARRAY_REF (for ...[..]),
4524 an INDIRECT_REF (for *...),
4525 a CALL_EXPR (for ...(...)),
4526 an identifier (for the name being declared)
4527 or a null pointer (for the place in an absolute declarator
4528 where the name was omitted).
4529 For the last two cases, we have just exited the loop.
4531 At this point, TYPE is the type of elements of an array,
4532 or for a function to return, or for a pointer to point to.
4533 After this sequence of ifs, TYPE is the type of the
4534 array or function or pointer, and DECLARATOR has had its
4535 outermost layer removed. */
4537 if (TREE_CODE (declarator) == ARRAY_REF)
4539 register tree itype = NULL_TREE;
4540 register tree size = TREE_OPERAND (declarator, 1);
4541 /* An uninitialized decl with `extern' is a reference. */
4542 int extern_ref = !initialized && (specbits & (1 << (int) RID_EXTERN));
4543 /* The index is a signed object `sizetype' bits wide. */
4544 tree index_type = signed_type (sizetype);
4546 declarator = TREE_OPERAND (declarator, 0);
4548 /* Check for some types that there cannot be arrays of. */
4550 if (TYPE_MAIN_VARIANT (type) == void_type_node)
4552 error ("declaration of `%s' as array of voids", name);
4553 type = error_mark_node;
4556 if (TREE_CODE (type) == FUNCTION_TYPE)
4558 error ("declaration of `%s' as array of functions", name);
4559 type = error_mark_node;
4562 if (size == error_mark_node)
4563 type = error_mark_node;
4565 if (type == error_mark_node)
4566 continue;
4568 /* If this is a block level extern, it must live past the end
4569 of the function so that we can check it against other extern
4570 declarations (IDENTIFIER_LIMBO_VALUE). */
4571 if (extern_ref && allocation_temporary_p ())
4572 end_temporary_allocation ();
4574 /* If size was specified, set ITYPE to a range-type for that size.
4575 Otherwise, ITYPE remains null. finish_decl may figure it out
4576 from an initial value. */
4578 if (size)
4580 /* Strip NON_LVALUE_EXPRs since we aren't using as an lvalue. */
4581 STRIP_TYPE_NOPS (size);
4583 if (TREE_CODE (TREE_TYPE (size)) != INTEGER_TYPE
4584 && TREE_CODE (TREE_TYPE (size)) != ENUMERAL_TYPE)
4586 error ("size of array `%s' has non-integer type", name);
4587 size = integer_one_node;
4590 if (pedantic && integer_zerop (size))
4591 pedwarn ("ANSI C forbids zero-size array `%s'", name);
4593 if (TREE_CODE (size) == INTEGER_CST)
4595 constant_expression_warning (size);
4596 if (tree_int_cst_sgn (size) < 0)
4598 error ("size of array `%s' is negative", name);
4599 size = integer_one_node;
4602 else
4604 /* Make sure the array size remains visibly nonconstant
4605 even if it is (eg) a const variable with known value. */
4606 size_varies = 1;
4608 if (pedantic)
4610 if (TREE_CONSTANT (size))
4611 pedwarn ("ANSI C forbids array `%s' whose size can't be evaluated", name);
4612 else
4613 pedwarn ("ANSI C forbids variable-size array `%s'", name);
4617 /* Convert size to index_type, so that if it is a variable
4618 the computations will be done in the proper mode. */
4619 itype = fold (build (MINUS_EXPR, index_type,
4620 convert (index_type, size),
4621 convert (index_type, size_one_node)));
4623 if (size_varies)
4624 itype = variable_size (itype);
4625 itype = build_index_type (itype);
4628 #if 0 /* This had bad results for pointers to arrays, as in
4629 union incomplete (*foo)[4]; */
4630 /* Complain about arrays of incomplete types, except in typedefs. */
4632 if (TYPE_SIZE (type) == 0
4633 /* Avoid multiple warnings for nested array types. */
4634 && TREE_CODE (type) != ARRAY_TYPE
4635 && !(specbits & (1 << (int) RID_TYPEDEF))
4636 && !C_TYPE_BEING_DEFINED (type))
4637 warning ("array type has incomplete element type");
4638 #endif
4640 #if 0 /* We shouldn't have a function type here at all!
4641 Functions aren't allowed as array elements. */
4642 if (pedantic && TREE_CODE (type) == FUNCTION_TYPE
4643 && (constp || volatilep))
4644 pedwarn ("ANSI C forbids const or volatile function types");
4645 #endif
4647 /* Build the array type itself, then merge any constancy or
4648 volatility into the target type. We must do it in this order
4649 to ensure that the TYPE_MAIN_VARIANT field of the array type
4650 is set correctly. */
4652 type = build_array_type (type, itype);
4653 if (constp || volatilep)
4654 type = c_build_type_variant (type, constp, volatilep);
4656 #if 0 /* don't clear these; leave them set so that the array type
4657 or the variable is itself const or volatile. */
4658 constp = 0;
4659 volatilep = 0;
4660 #endif
4662 if (size_varies)
4663 C_TYPE_VARIABLE_SIZE (type) = 1;
4665 else if (TREE_CODE (declarator) == CALL_EXPR)
4667 int extern_ref = (!(specbits & (1 << (int) RID_AUTO))
4668 || current_binding_level == global_binding_level);
4669 tree arg_types;
4671 /* Declaring a function type.
4672 Make sure we have a valid type for the function to return. */
4673 if (type == error_mark_node)
4674 continue;
4676 size_varies = 0;
4678 /* Warn about some types functions can't return. */
4680 if (TREE_CODE (type) == FUNCTION_TYPE)
4682 error ("`%s' declared as function returning a function", name);
4683 type = integer_type_node;
4685 if (TREE_CODE (type) == ARRAY_TYPE)
4687 error ("`%s' declared as function returning an array", name);
4688 type = integer_type_node;
4691 #ifndef TRADITIONAL_RETURN_FLOAT
4692 /* Traditionally, declaring return type float means double. */
4694 if (flag_traditional && TYPE_MAIN_VARIANT (type) == float_type_node)
4695 type = double_type_node;
4696 #endif /* TRADITIONAL_RETURN_FLOAT */
4698 /* If this is a block level extern, it must live past the end
4699 of the function so that we can check it against other extern
4700 declarations (IDENTIFIER_LIMBO_VALUE). */
4701 if (extern_ref && allocation_temporary_p ())
4702 end_temporary_allocation ();
4704 /* Construct the function type and go to the next
4705 inner layer of declarator. */
4707 arg_types = grokparms (TREE_OPERAND (declarator, 1),
4708 funcdef_flag
4709 /* Say it's a definition
4710 only for the CALL_EXPR
4711 closest to the identifier. */
4712 && TREE_CODE (TREE_OPERAND (declarator, 0)) == IDENTIFIER_NODE);
4713 #if 0 /* This seems to be false. We turn off temporary allocation
4714 above in this function if -traditional.
4715 And this code caused inconsistent results with prototypes:
4716 callers would ignore them, and pass arguments wrong. */
4718 /* Omit the arg types if -traditional, since the arg types
4719 and the list links might not be permanent. */
4720 type = build_function_type (type,
4721 flag_traditional
4722 ? NULL_TREE : arg_types);
4723 #endif
4724 /* ANSI seems to say that `const int foo ();'
4725 does not make the function foo const. */
4726 if (constp || volatilep)
4727 type = c_build_type_variant (type, constp, volatilep);
4728 constp = 0;
4729 volatilep = 0;
4731 type = build_function_type (type, arg_types);
4732 declarator = TREE_OPERAND (declarator, 0);
4734 /* Set the TYPE_CONTEXTs for each tagged type which is local to
4735 the formal parameter list of this FUNCTION_TYPE to point to
4736 the FUNCTION_TYPE node itself. */
4739 register tree link;
4741 for (link = current_function_parm_tags;
4742 link;
4743 link = TREE_CHAIN (link))
4744 TYPE_CONTEXT (TREE_VALUE (link)) = type;
4747 else if (TREE_CODE (declarator) == INDIRECT_REF)
4749 /* Merge any constancy or volatility into the target type
4750 for the pointer. */
4752 if (pedantic && TREE_CODE (type) == FUNCTION_TYPE
4753 && (constp || volatilep))
4754 pedwarn ("ANSI C forbids const or volatile function types");
4755 if (constp || volatilep)
4756 type = c_build_type_variant (type, constp, volatilep);
4757 constp = 0;
4758 volatilep = 0;
4759 size_varies = 0;
4761 type = build_pointer_type (type);
4763 /* Process a list of type modifier keywords
4764 (such as const or volatile) that were given inside the `*'. */
4766 if (TREE_TYPE (declarator))
4768 register tree typemodlist;
4769 int erred = 0;
4770 for (typemodlist = TREE_TYPE (declarator); typemodlist;
4771 typemodlist = TREE_CHAIN (typemodlist))
4773 if (TREE_VALUE (typemodlist) == ridpointers[(int) RID_CONST])
4774 constp++;
4775 else if (TREE_VALUE (typemodlist) == ridpointers[(int) RID_VOLATILE])
4776 volatilep++;
4777 else if (!erred)
4779 erred = 1;
4780 error ("invalid type modifier within pointer declarator");
4783 if (constp > 1)
4784 pedwarn ("duplicate `const'");
4785 if (volatilep > 1)
4786 pedwarn ("duplicate `volatile'");
4789 declarator = TREE_OPERAND (declarator, 0);
4791 else
4792 abort ();
4796 /* Now TYPE has the actual type. */
4798 /* If this is declaring a typedef name, return a TYPE_DECL. */
4800 if (specbits & (1 << (int) RID_TYPEDEF))
4802 tree decl;
4803 /* Note that the grammar rejects storage classes
4804 in typenames, fields or parameters */
4805 if (pedantic && TREE_CODE (type) == FUNCTION_TYPE
4806 && (constp || volatilep))
4807 pedwarn ("ANSI C forbids const or volatile function types");
4808 if (constp || volatilep)
4809 type = c_build_type_variant (type, constp, volatilep);
4810 decl = build_decl (TYPE_DECL, declarator, type);
4811 if ((specbits & (1 << (int) RID_SIGNED))
4812 || (typedef_decl && C_TYPEDEF_EXPLICITLY_SIGNED (typedef_decl)))
4813 C_TYPEDEF_EXPLICITLY_SIGNED (decl) = 1;
4814 pop_obstacks ();
4815 return decl;
4818 /* Detect the case of an array type of unspecified size
4819 which came, as such, direct from a typedef name.
4820 We must copy the type, so that each identifier gets
4821 a distinct type, so that each identifier's size can be
4822 controlled separately by its own initializer. */
4824 if (type != 0 && typedef_type != 0
4825 && TYPE_MAIN_VARIANT (type) == TYPE_MAIN_VARIANT (typedef_type)
4826 && TREE_CODE (type) == ARRAY_TYPE && TYPE_DOMAIN (type) == 0)
4828 type = build_array_type (TREE_TYPE (type), 0);
4829 if (size_varies)
4830 C_TYPE_VARIABLE_SIZE (type) = 1;
4833 /* If this is a type name (such as, in a cast or sizeof),
4834 compute the type and return it now. */
4836 if (decl_context == TYPENAME)
4838 /* Note that the grammar rejects storage classes
4839 in typenames, fields or parameters */
4840 if (pedantic && TREE_CODE (type) == FUNCTION_TYPE
4841 && (constp || volatilep))
4842 pedwarn ("ANSI C forbids const or volatile function types");
4843 if (constp || volatilep)
4844 type = c_build_type_variant (type, constp, volatilep);
4845 pop_obstacks ();
4846 return type;
4849 /* Aside from typedefs and type names (handle above),
4850 `void' at top level (not within pointer)
4851 is allowed only in public variables.
4852 We don't complain about parms either, but that is because
4853 a better error message can be made later. */
4855 if (TYPE_MAIN_VARIANT (type) == void_type_node && decl_context != PARM
4856 && ! ((decl_context != FIELD && TREE_CODE (type) != FUNCTION_TYPE)
4857 && ((specbits & (1 << (int) RID_EXTERN))
4858 || (current_binding_level == global_binding_level
4859 && !(specbits
4860 & ((1 << (int) RID_STATIC) | (1 << (int) RID_REGISTER)))))))
4862 error ("variable or field `%s' declared void", name);
4863 type = integer_type_node;
4866 /* Now create the decl, which may be a VAR_DECL, a PARM_DECL
4867 or a FUNCTION_DECL, depending on DECL_CONTEXT and TYPE. */
4870 register tree decl;
4872 if (decl_context == PARM)
4874 tree type_as_written = type;
4875 tree main_type;
4877 /* A parameter declared as an array of T is really a pointer to T.
4878 One declared as a function is really a pointer to a function. */
4880 if (TREE_CODE (type) == ARRAY_TYPE)
4882 /* Transfer const-ness of array into that of type pointed to. */
4883 type = TREE_TYPE (type);
4884 if (constp || volatilep)
4885 type = c_build_type_variant (type, constp, volatilep);
4886 type = build_pointer_type (type);
4887 volatilep = constp = 0;
4888 size_varies = 0;
4890 else if (TREE_CODE (type) == FUNCTION_TYPE)
4892 if (pedantic && (constp || volatilep))
4893 pedwarn ("ANSI C forbids const or volatile function types");
4894 if (constp || volatilep)
4895 type = c_build_type_variant (type, constp, volatilep);
4896 type = build_pointer_type (type);
4897 volatilep = constp = 0;
4900 decl = build_decl (PARM_DECL, declarator, type);
4901 if (size_varies)
4902 C_DECL_VARIABLE_SIZE (decl) = 1;
4904 /* Compute the type actually passed in the parmlist,
4905 for the case where there is no prototype.
4906 (For example, shorts and chars are passed as ints.)
4907 When there is a prototype, this is overridden later. */
4909 DECL_ARG_TYPE (decl) = type;
4910 main_type = (type == error_mark_node
4911 ? error_mark_node
4912 : TYPE_MAIN_VARIANT (type));
4913 if (main_type == float_type_node)
4914 DECL_ARG_TYPE (decl) = double_type_node;
4915 /* Don't use TYPE_PRECISION to decide whether to promote,
4916 because we should convert short if it's the same size as int,
4917 but we should not convert long if it's the same size as int. */
4918 else if (TREE_CODE (main_type) != ERROR_MARK
4919 && C_PROMOTING_INTEGER_TYPE_P (main_type))
4921 if (TYPE_PRECISION (type) == TYPE_PRECISION (integer_type_node)
4922 && TREE_UNSIGNED (type))
4923 DECL_ARG_TYPE (decl) = unsigned_type_node;
4924 else
4925 DECL_ARG_TYPE (decl) = integer_type_node;
4928 DECL_ARG_TYPE_AS_WRITTEN (decl) = type_as_written;
4930 else if (decl_context == FIELD)
4932 /* Structure field. It may not be a function. */
4934 if (TREE_CODE (type) == FUNCTION_TYPE)
4936 error ("field `%s' declared as a function", name);
4937 type = build_pointer_type (type);
4939 else if (TREE_CODE (type) != ERROR_MARK && TYPE_SIZE (type) == 0)
4941 error ("field `%s' has incomplete type", name);
4942 type = error_mark_node;
4944 /* Move type qualifiers down to element of an array. */
4945 if (TREE_CODE (type) == ARRAY_TYPE && (constp || volatilep))
4947 type = build_array_type (c_build_type_variant (TREE_TYPE (type),
4948 constp, volatilep),
4949 TYPE_DOMAIN (type));
4950 #if 0 /* Leave the field const or volatile as well. */
4951 constp = volatilep = 0;
4952 #endif
4954 decl = build_decl (FIELD_DECL, declarator, type);
4955 if (size_varies)
4956 C_DECL_VARIABLE_SIZE (decl) = 1;
4958 else if (TREE_CODE (type) == FUNCTION_TYPE)
4960 /* Every function declaration is "external"
4961 except for those which are inside a function body
4962 in which `auto' is used.
4963 That is a case not specified by ANSI C,
4964 and we use it for forward declarations for nested functions. */
4965 int extern_ref = (!(specbits & (1 << (int) RID_AUTO))
4966 || current_binding_level == global_binding_level);
4968 if (specbits & (1 << (int) RID_AUTO)
4969 && (pedantic || current_binding_level == global_binding_level))
4970 pedwarn ("invalid storage class for function `%s'", name);
4971 if (specbits & (1 << (int) RID_REGISTER))
4972 error ("invalid storage class for function `%s'", name);
4973 /* Function declaration not at top level.
4974 Storage classes other than `extern' are not allowed
4975 and `extern' makes no difference. */
4976 if (current_binding_level != global_binding_level
4977 && (specbits & ((1 << (int) RID_STATIC) | (1 << (int) RID_INLINE)))
4978 && pedantic)
4979 pedwarn ("invalid storage class for function `%s'", name);
4981 /* If this is a block level extern, it must live past the end
4982 of the function so that we can check it against other
4983 extern declarations (IDENTIFIER_LIMBO_VALUE). */
4984 if (extern_ref && allocation_temporary_p ())
4985 end_temporary_allocation ();
4987 decl = build_decl (FUNCTION_DECL, declarator, type);
4988 decl = build_decl_attribute_variant (decl, decl_machine_attr);
4990 if (pedantic && (constp || volatilep)
4991 && ! DECL_IN_SYSTEM_HEADER (decl))
4992 pedwarn ("ANSI C forbids const or volatile functions");
4994 if (volatilep
4995 && TREE_TYPE (TREE_TYPE (decl)) != void_type_node)
4996 warning ("`noreturn' function returns non-void value");
4998 if (extern_ref)
4999 DECL_EXTERNAL (decl) = 1;
5000 /* Record absence of global scope for `static' or `auto'. */
5001 TREE_PUBLIC (decl)
5002 = !(specbits & ((1 << (int) RID_STATIC) | (1 << (int) RID_AUTO)));
5004 /* Record presence of `inline', if it is reasonable. */
5005 if (inlinep)
5007 tree last = tree_last (TYPE_ARG_TYPES (type));
5009 if (! strcmp (IDENTIFIER_POINTER (declarator), "main"))
5010 warning ("cannot inline function `main'");
5011 else if (last && (TYPE_MAIN_VARIANT (TREE_VALUE (last))
5012 != void_type_node))
5013 warning ("inline declaration ignored for function with `...'");
5014 else
5015 /* Assume that otherwise the function can be inlined. */
5016 DECL_INLINE (decl) = 1;
5018 if (specbits & (1 << (int) RID_EXTERN))
5019 current_extern_inline = 1;
5022 else
5024 /* It's a variable. */
5025 /* An uninitialized decl with `extern' is a reference. */
5026 int extern_ref = !initialized && (specbits & (1 << (int) RID_EXTERN));
5028 /* Move type qualifiers down to element of an array. */
5029 if (TREE_CODE (type) == ARRAY_TYPE && (constp || volatilep))
5031 type = build_array_type (c_build_type_variant (TREE_TYPE (type),
5032 constp, volatilep),
5033 TYPE_DOMAIN (type));
5034 #if 0 /* Leave the variable const or volatile as well. */
5035 constp = volatilep = 0;
5036 #endif
5039 /* If this is a block level extern, it must live past the end
5040 of the function so that we can check it against other
5041 extern declarations (IDENTIFIER_LIMBO_VALUE). */
5042 if (extern_ref && allocation_temporary_p ())
5043 end_temporary_allocation ();
5045 decl = build_decl (VAR_DECL, declarator, type);
5046 if (size_varies)
5047 C_DECL_VARIABLE_SIZE (decl) = 1;
5049 if (inlinep)
5050 pedwarn_with_decl (decl, "variable `%s' declared `inline'");
5052 DECL_EXTERNAL (decl) = extern_ref;
5053 /* At top level, the presence of a `static' or `register' storage
5054 class specifier, or the absence of all storage class specifiers
5055 makes this declaration a definition (perhaps tentative). Also,
5056 the absence of both `static' and `register' makes it public. */
5057 if (current_binding_level == global_binding_level)
5059 TREE_PUBLIC (decl)
5060 = !(specbits
5061 & ((1 << (int) RID_STATIC) | (1 << (int) RID_REGISTER)));
5062 TREE_STATIC (decl) = ! DECL_EXTERNAL (decl);
5064 /* Not at top level, only `static' makes a static definition. */
5065 else
5067 TREE_STATIC (decl) = (specbits & (1 << (int) RID_STATIC)) != 0;
5068 TREE_PUBLIC (decl) = DECL_EXTERNAL (decl);
5071 if (specbits & 1 << (int) RID_ITERATOR)
5072 ITERATOR_P (decl) = 1;
5075 /* Record `register' declaration for warnings on &
5076 and in case doing stupid register allocation. */
5078 if (specbits & (1 << (int) RID_REGISTER))
5079 DECL_REGISTER (decl) = 1;
5081 /* Record constancy and volatility. */
5083 if (constp)
5084 TREE_READONLY (decl) = 1;
5085 if (volatilep)
5087 TREE_SIDE_EFFECTS (decl) = 1;
5088 TREE_THIS_VOLATILE (decl) = 1;
5090 /* If a type has volatile components, it should be stored in memory.
5091 Otherwise, the fact that those components are volatile
5092 will be ignored, and would even crash the compiler. */
5093 if (C_TYPE_FIELDS_VOLATILE (TREE_TYPE (decl)))
5094 mark_addressable (decl);
5096 pop_obstacks ();
5098 return decl;
5102 /* Decode the parameter-list info for a function type or function definition.
5103 The argument is the value returned by `get_parm_info' (or made in parse.y
5104 if there is an identifier list instead of a parameter decl list).
5105 These two functions are separate because when a function returns
5106 or receives functions then each is called multiple times but the order
5107 of calls is different. The last call to `grokparms' is always the one
5108 that contains the formal parameter names of a function definition.
5110 Store in `last_function_parms' a chain of the decls of parms.
5111 Also store in `last_function_parm_tags' a chain of the struct, union,
5112 and enum tags declared among the parms.
5114 Return a list of arg types to use in the FUNCTION_TYPE for this function.
5116 FUNCDEF_FLAG is nonzero for a function definition, 0 for
5117 a mere declaration. A nonempty identifier-list gets an error message
5118 when FUNCDEF_FLAG is zero. */
5120 static tree
5121 grokparms (parms_info, funcdef_flag)
5122 tree parms_info;
5123 int funcdef_flag;
5125 tree first_parm = TREE_CHAIN (parms_info);
5127 last_function_parms = TREE_PURPOSE (parms_info);
5128 last_function_parm_tags = TREE_VALUE (parms_info);
5130 if (warn_strict_prototypes && first_parm == 0 && !funcdef_flag
5131 && !in_system_header)
5132 warning ("function declaration isn't a prototype");
5134 if (first_parm != 0
5135 && TREE_CODE (TREE_VALUE (first_parm)) == IDENTIFIER_NODE)
5137 if (! funcdef_flag)
5138 pedwarn ("parameter names (without types) in function declaration");
5140 last_function_parms = first_parm;
5141 return 0;
5143 else
5145 tree parm;
5146 tree typelt;
5147 /* We no longer test FUNCDEF_FLAG.
5148 If the arg types are incomplete in a declaration,
5149 they must include undefined tags.
5150 These tags can never be defined in the scope of the declaration,
5151 so the types can never be completed,
5152 and no call can be compiled successfully. */
5153 #if 0
5154 /* In a fcn definition, arg types must be complete. */
5155 if (funcdef_flag)
5156 #endif
5157 for (parm = last_function_parms, typelt = first_parm;
5158 parm;
5159 parm = TREE_CHAIN (parm))
5160 /* Skip over any enumeration constants declared here. */
5161 if (TREE_CODE (parm) == PARM_DECL)
5163 /* Barf if the parameter itself has an incomplete type. */
5164 tree type = TREE_VALUE (typelt);
5165 if (TYPE_SIZE (type) == 0)
5167 if (funcdef_flag && DECL_NAME (parm) != 0)
5168 error ("parameter `%s' has incomplete type",
5169 IDENTIFIER_POINTER (DECL_NAME (parm)));
5170 else
5171 warning ("parameter has incomplete type");
5172 if (funcdef_flag)
5174 TREE_VALUE (typelt) = error_mark_node;
5175 TREE_TYPE (parm) = error_mark_node;
5178 #if 0 /* This has been replaced by parm_tags_warning
5179 which uses a more accurate criterion for what to warn about. */
5180 else
5182 /* Now warn if is a pointer to an incomplete type. */
5183 while (TREE_CODE (type) == POINTER_TYPE
5184 || TREE_CODE (type) == REFERENCE_TYPE)
5185 type = TREE_TYPE (type);
5186 type = TYPE_MAIN_VARIANT (type);
5187 if (TYPE_SIZE (type) == 0)
5189 if (DECL_NAME (parm) != 0)
5190 warning ("parameter `%s' points to incomplete type",
5191 IDENTIFIER_POINTER (DECL_NAME (parm)));
5192 else
5193 warning ("parameter points to incomplete type");
5196 #endif
5197 typelt = TREE_CHAIN (typelt);
5200 /* Allocate the list of types the way we allocate a type. */
5201 if (first_parm && ! TREE_PERMANENT (first_parm))
5203 /* Construct a copy of the list of types
5204 on the saveable obstack. */
5205 tree result = NULL;
5206 for (typelt = first_parm; typelt; typelt = TREE_CHAIN (typelt))
5207 result = saveable_tree_cons (NULL_TREE, TREE_VALUE (typelt),
5208 result);
5209 return nreverse (result);
5211 else
5212 /* The list we have is permanent already. */
5213 return first_parm;
5218 /* Return a tree_list node with info on a parameter list just parsed.
5219 The TREE_PURPOSE is a chain of decls of those parms.
5220 The TREE_VALUE is a list of structure, union and enum tags defined.
5221 The TREE_CHAIN is a list of argument types to go in the FUNCTION_TYPE.
5222 This tree_list node is later fed to `grokparms'.
5224 VOID_AT_END nonzero means append `void' to the end of the type-list.
5225 Zero means the parmlist ended with an ellipsis so don't append `void'. */
5227 tree
5228 get_parm_info (void_at_end)
5229 int void_at_end;
5231 register tree decl, t;
5232 register tree types = 0;
5233 int erred = 0;
5234 tree tags = gettags ();
5235 tree parms = getdecls ();
5236 tree new_parms = 0;
5237 tree order = current_binding_level->parm_order;
5239 /* Just `void' (and no ellipsis) is special. There are really no parms. */
5240 if (void_at_end && parms != 0
5241 && TREE_CHAIN (parms) == 0
5242 && TYPE_MAIN_VARIANT (TREE_TYPE (parms)) == void_type_node
5243 && DECL_NAME (parms) == 0)
5245 parms = NULL_TREE;
5246 storedecls (NULL_TREE);
5247 return saveable_tree_cons (NULL_TREE, NULL_TREE,
5248 saveable_tree_cons (NULL_TREE, void_type_node, NULL_TREE));
5251 /* Extract enumerator values and other non-parms declared with the parms.
5252 Likewise any forward parm decls that didn't have real parm decls. */
5253 for (decl = parms; decl; )
5255 tree next = TREE_CHAIN (decl);
5257 if (TREE_CODE (decl) != PARM_DECL)
5259 TREE_CHAIN (decl) = new_parms;
5260 new_parms = decl;
5262 else if (TREE_ASM_WRITTEN (decl))
5264 error_with_decl (decl, "parameter `%s' has just a forward declaration");
5265 TREE_CHAIN (decl) = new_parms;
5266 new_parms = decl;
5268 decl = next;
5271 /* Put the parm decls back in the order they were in in the parm list. */
5272 for (t = order; t; t = TREE_CHAIN (t))
5274 if (TREE_CHAIN (t))
5275 TREE_CHAIN (TREE_VALUE (t)) = TREE_VALUE (TREE_CHAIN (t));
5276 else
5277 TREE_CHAIN (TREE_VALUE (t)) = 0;
5280 new_parms = chainon (order ? nreverse (TREE_VALUE (order)) : 0,
5281 new_parms);
5283 /* Store the parmlist in the binding level since the old one
5284 is no longer a valid list. (We have changed the chain pointers.) */
5285 storedecls (new_parms);
5287 for (decl = new_parms; decl; decl = TREE_CHAIN (decl))
5288 /* There may also be declarations for enumerators if an enumeration
5289 type is declared among the parms. Ignore them here. */
5290 if (TREE_CODE (decl) == PARM_DECL)
5292 /* Since there is a prototype,
5293 args are passed in their declared types. */
5294 tree type = TREE_TYPE (decl);
5295 DECL_ARG_TYPE (decl) = type;
5296 #ifdef PROMOTE_PROTOTYPES
5297 if ((TREE_CODE (type) == INTEGER_TYPE
5298 || TREE_CODE (type) == ENUMERAL_TYPE)
5299 && TYPE_PRECISION (type) < TYPE_PRECISION (integer_type_node))
5300 DECL_ARG_TYPE (decl) = integer_type_node;
5301 #endif
5303 types = saveable_tree_cons (NULL_TREE, TREE_TYPE (decl), types);
5304 if (TYPE_MAIN_VARIANT (TREE_VALUE (types)) == void_type_node && ! erred
5305 && DECL_NAME (decl) == 0)
5307 error ("`void' in parameter list must be the entire list");
5308 erred = 1;
5312 if (void_at_end)
5313 return saveable_tree_cons (new_parms, tags,
5314 nreverse (saveable_tree_cons (NULL_TREE, void_type_node, types)));
5316 return saveable_tree_cons (new_parms, tags, nreverse (types));
5319 /* At end of parameter list, warn about any struct, union or enum tags
5320 defined within. Do so because these types cannot ever become complete. */
5322 void
5323 parmlist_tags_warning ()
5325 tree elt;
5326 static int already;
5328 for (elt = current_binding_level->tags; elt; elt = TREE_CHAIN (elt))
5330 enum tree_code code = TREE_CODE (TREE_VALUE (elt));
5331 /* An anonymous union parm type is meaningful as a GNU extension.
5332 So don't warn for that. */
5333 if (code == UNION_TYPE && !pedantic)
5334 continue;
5335 if (TREE_PURPOSE (elt) != 0)
5336 warning ("`%s %s' declared inside parameter list",
5337 (code == RECORD_TYPE ? "struct"
5338 : code == UNION_TYPE ? "union"
5339 : "enum"),
5340 IDENTIFIER_POINTER (TREE_PURPOSE (elt)));
5341 else
5342 warning ("anonymous %s declared inside parameter list",
5343 (code == RECORD_TYPE ? "struct"
5344 : code == UNION_TYPE ? "union"
5345 : "enum"));
5347 if (! already)
5349 warning ("its scope is only this definition or declaration,");
5350 warning ("which is probably not what you want.");
5351 already = 1;
5356 /* Get the struct, enum or union (CODE says which) with tag NAME.
5357 Define the tag as a forward-reference if it is not defined. */
5359 tree
5360 xref_tag (code, name)
5361 enum tree_code code;
5362 tree name;
5364 int temporary = allocation_temporary_p ();
5366 /* If a cross reference is requested, look up the type
5367 already defined for this tag and return it. */
5369 register tree ref = lookup_tag (code, name, current_binding_level, 0);
5370 /* Even if this is the wrong type of tag, return what we found.
5371 There will be an error message anyway, from pending_xref_error.
5372 If we create an empty xref just for an invalid use of the type,
5373 the main result is to create lots of superfluous error messages. */
5374 if (ref)
5375 return ref;
5377 push_obstacks_nochange ();
5379 if (current_binding_level == global_binding_level && temporary)
5380 end_temporary_allocation ();
5382 /* If no such tag is yet defined, create a forward-reference node
5383 and record it as the "definition".
5384 When a real declaration of this type is found,
5385 the forward-reference will be altered into a real type. */
5387 ref = make_node (code);
5388 if (code == ENUMERAL_TYPE)
5390 /* (In ANSI, Enums can be referred to only if already defined.) */
5391 if (pedantic)
5392 pedwarn ("ANSI C forbids forward references to `enum' types");
5393 /* Give the type a default layout like unsigned int
5394 to avoid crashing if it does not get defined. */
5395 TYPE_MODE (ref) = TYPE_MODE (unsigned_type_node);
5396 TYPE_ALIGN (ref) = TYPE_ALIGN (unsigned_type_node);
5397 TREE_UNSIGNED (ref) = 1;
5398 TYPE_PRECISION (ref) = TYPE_PRECISION (unsigned_type_node);
5399 TYPE_MIN_VALUE (ref) = TYPE_MIN_VALUE (unsigned_type_node);
5400 TYPE_MAX_VALUE (ref) = TYPE_MAX_VALUE (unsigned_type_node);
5403 pushtag (name, ref);
5405 pop_obstacks ();
5407 return ref;
5410 /* Make sure that the tag NAME is defined *in the current binding level*
5411 at least as a forward reference.
5412 CODE says which kind of tag NAME ought to be.
5414 We also do a push_obstacks_nochange
5415 whose matching pop is in finish_struct. */
5417 tree
5418 start_struct (code, name)
5419 enum tree_code code;
5420 tree name;
5422 /* If there is already a tag defined at this binding level
5423 (as a forward reference), just return it. */
5425 register tree ref = 0;
5427 push_obstacks_nochange ();
5428 if (current_binding_level == global_binding_level)
5429 end_temporary_allocation ();
5431 if (name != 0)
5432 ref = lookup_tag (code, name, current_binding_level, 1);
5433 if (ref && TREE_CODE (ref) == code)
5435 C_TYPE_BEING_DEFINED (ref) = 1;
5436 if (TYPE_FIELDS (ref))
5437 error ((code == UNION_TYPE ? "redefinition of `union %s'"
5438 : "redefinition of `struct %s'"),
5439 IDENTIFIER_POINTER (name));
5441 return ref;
5444 /* Otherwise create a forward-reference just so the tag is in scope. */
5446 ref = make_node (code);
5447 pushtag (name, ref);
5448 C_TYPE_BEING_DEFINED (ref) = 1;
5449 TYPE_PACKED (ref) = flag_pack_struct;
5450 return ref;
5453 /* Process the specs, declarator (NULL if omitted) and width (NULL if omitted)
5454 of a structure component, returning a FIELD_DECL node.
5455 WIDTH is non-NULL for bit fields only, and is an INTEGER_CST node.
5457 This is done during the parsing of the struct declaration.
5458 The FIELD_DECL nodes are chained together and the lot of them
5459 are ultimately passed to `build_struct' to make the RECORD_TYPE node. */
5461 tree
5462 grokfield (filename, line, declarator, declspecs, width)
5463 char *filename;
5464 int line;
5465 tree declarator, declspecs, width;
5467 tree value;
5469 /* The corresponding pop_obstacks is in finish_decl. */
5470 push_obstacks_nochange ();
5472 value = grokdeclarator (declarator, declspecs, width ? BITFIELD : FIELD, 0);
5474 finish_decl (value, NULL_TREE, NULL_TREE);
5475 DECL_INITIAL (value) = width;
5477 maybe_objc_check_decl (value);
5478 return value;
5481 /* Function to help qsort sort FIELD_DECLs by name order. */
5483 static int
5484 field_decl_cmp (x, y)
5485 tree *x, *y;
5487 if (DECL_NAME (*x) == DECL_NAME (*y))
5488 return 0;
5489 if (DECL_NAME (*x) == NULL)
5490 return -1;
5491 if (DECL_NAME (*y) == NULL)
5492 return 1;
5493 if (DECL_NAME (*x) < DECL_NAME (*y))
5494 return -1;
5495 return 1;
5498 /* Fill in the fields of a RECORD_TYPE or UNION_TYPE node, T.
5499 FIELDLIST is a chain of FIELD_DECL nodes for the fields.
5500 ATTRIBUTES are attributes to be applied to the structure.
5502 We also do a pop_obstacks to match the push in start_struct. */
5504 tree
5505 finish_struct (t, fieldlist, attributes)
5506 tree t;
5507 tree fieldlist;
5508 tree attributes;
5510 register tree x;
5511 int old_momentary;
5512 int toplevel = global_binding_level == current_binding_level;
5514 /* If this type was previously laid out as a forward reference,
5515 make sure we lay it out again. */
5517 TYPE_SIZE (t) = 0;
5519 decl_attributes (t, attributes, NULL_TREE);
5521 /* Nameless union parm types are useful as GCC extension. */
5522 if (! (TREE_CODE (t) == UNION_TYPE && TYPE_NAME (t) == 0) && !pedantic)
5523 /* Otherwise, warn about any struct or union def. in parmlist. */
5524 if (in_parm_level_p ())
5526 if (pedantic)
5527 pedwarn ((TREE_CODE (t) == UNION_TYPE ? "union defined inside parms"
5528 : "structure defined inside parms"));
5529 else if (! flag_traditional)
5530 warning ((TREE_CODE (t) == UNION_TYPE ? "union defined inside parms"
5531 : "structure defined inside parms"));
5534 old_momentary = suspend_momentary ();
5536 if (fieldlist == 0 && pedantic)
5537 pedwarn ((TREE_CODE (t) == UNION_TYPE ? "union has no members"
5538 : "structure has no members"));
5540 /* Install struct as DECL_CONTEXT of each field decl.
5541 Also process specified field sizes.
5542 Set DECL_FIELD_SIZE to the specified size, or 0 if none specified.
5543 The specified size is found in the DECL_INITIAL.
5544 Store 0 there, except for ": 0" fields (so we can find them
5545 and delete them, below). */
5547 for (x = fieldlist; x; x = TREE_CHAIN (x))
5549 DECL_CONTEXT (x) = t;
5550 DECL_PACKED (x) |= TYPE_PACKED (t);
5551 DECL_FIELD_SIZE (x) = 0;
5553 /* If any field is const, the structure type is pseudo-const. */
5554 if (TREE_READONLY (x))
5555 C_TYPE_FIELDS_READONLY (t) = 1;
5556 else
5558 /* A field that is pseudo-const makes the structure likewise. */
5559 tree t1 = TREE_TYPE (x);
5560 while (TREE_CODE (t1) == ARRAY_TYPE)
5561 t1 = TREE_TYPE (t1);
5562 if ((TREE_CODE (t1) == RECORD_TYPE || TREE_CODE (t1) == UNION_TYPE)
5563 && C_TYPE_FIELDS_READONLY (t1))
5564 C_TYPE_FIELDS_READONLY (t) = 1;
5567 /* Any field that is volatile means variables of this type must be
5568 treated in some ways as volatile. */
5569 if (TREE_THIS_VOLATILE (x))
5570 C_TYPE_FIELDS_VOLATILE (t) = 1;
5572 /* Any field of nominal variable size implies structure is too. */
5573 if (C_DECL_VARIABLE_SIZE (x))
5574 C_TYPE_VARIABLE_SIZE (t) = 1;
5576 /* Detect invalid nested redefinition. */
5577 if (TREE_TYPE (x) == t)
5578 error ("nested redefinition of `%s'",
5579 IDENTIFIER_POINTER (TYPE_NAME (t)));
5581 /* Detect invalid bit-field size. */
5582 if (DECL_INITIAL (x))
5583 STRIP_NOPS (DECL_INITIAL (x));
5584 if (DECL_INITIAL (x))
5586 if (TREE_CODE (DECL_INITIAL (x)) == INTEGER_CST)
5587 constant_expression_warning (DECL_INITIAL (x));
5588 else
5590 error_with_decl (x, "bit-field `%s' width not an integer constant");
5591 DECL_INITIAL (x) = NULL;
5595 /* Detect invalid bit-field type. */
5596 if (DECL_INITIAL (x)
5597 && TREE_CODE (TREE_TYPE (x)) != INTEGER_TYPE
5598 && TREE_CODE (TREE_TYPE (x)) != ENUMERAL_TYPE)
5600 error_with_decl (x, "bit-field `%s' has invalid type");
5601 DECL_INITIAL (x) = NULL;
5603 if (DECL_INITIAL (x) && pedantic
5604 && TYPE_MAIN_VARIANT (TREE_TYPE (x)) != integer_type_node
5605 && TYPE_MAIN_VARIANT (TREE_TYPE (x)) != unsigned_type_node
5606 /* Accept an enum that's equivalent to int or unsigned int. */
5607 && !(TREE_CODE (TREE_TYPE (x)) == ENUMERAL_TYPE
5608 && (TYPE_PRECISION (TREE_TYPE (x))
5609 == TYPE_PRECISION (integer_type_node))))
5610 pedwarn_with_decl (x, "bit-field `%s' type invalid in ANSI C");
5612 /* Detect and ignore out of range field width. */
5613 if (DECL_INITIAL (x))
5615 unsigned HOST_WIDE_INT width = TREE_INT_CST_LOW (DECL_INITIAL (x));
5617 if (tree_int_cst_sgn (DECL_INITIAL (x)) < 0)
5619 DECL_INITIAL (x) = NULL;
5620 error_with_decl (x, "negative width in bit-field `%s'");
5622 else if (TREE_INT_CST_HIGH (DECL_INITIAL (x)) != 0
5623 || width > TYPE_PRECISION (TREE_TYPE (x)))
5625 DECL_INITIAL (x) = NULL;
5626 pedwarn_with_decl (x, "width of `%s' exceeds its type");
5628 else if (width == 0 && DECL_NAME (x) != 0)
5630 error_with_decl (x, "zero width for bit-field `%s'");
5631 DECL_INITIAL (x) = NULL;
5635 /* Process valid field width. */
5636 if (DECL_INITIAL (x))
5638 register int width = TREE_INT_CST_LOW (DECL_INITIAL (x));
5640 if (TREE_CODE (TREE_TYPE (x)) == ENUMERAL_TYPE
5641 && (width < min_precision (TYPE_MIN_VALUE (TREE_TYPE (x)),
5642 TREE_UNSIGNED (TREE_TYPE (x)))
5643 || width < min_precision (TYPE_MAX_VALUE (TREE_TYPE (x)),
5644 TREE_UNSIGNED (TREE_TYPE (x)))))
5645 warning_with_decl (x, "`%s' is narrower than values of its type");
5647 DECL_FIELD_SIZE (x) = width;
5648 DECL_BIT_FIELD (x) = DECL_C_BIT_FIELD (x) = 1;
5649 DECL_INITIAL (x) = NULL;
5651 if (width == 0)
5653 /* field size 0 => force desired amount of alignment. */
5654 #ifdef EMPTY_FIELD_BOUNDARY
5655 DECL_ALIGN (x) = MAX (DECL_ALIGN (x), EMPTY_FIELD_BOUNDARY);
5656 #endif
5657 #ifdef PCC_BITFIELD_TYPE_MATTERS
5658 DECL_ALIGN (x) = MAX (DECL_ALIGN (x),
5659 TYPE_ALIGN (TREE_TYPE (x)));
5660 #endif
5663 else if (TREE_TYPE (x) != error_mark_node)
5665 int min_align = (DECL_PACKED (x) ? BITS_PER_UNIT
5666 : TYPE_ALIGN (TREE_TYPE (x)));
5667 /* Non-bit-fields are aligned for their type, except packed
5668 fields which require only BITS_PER_UNIT alignment. */
5669 DECL_ALIGN (x) = MAX (DECL_ALIGN (x), min_align);
5673 /* Now DECL_INITIAL is null on all members. */
5675 /* Delete all duplicate fields from the fieldlist */
5676 for (x = fieldlist; x && TREE_CHAIN (x);)
5677 /* Anonymous fields aren't duplicates. */
5678 if (DECL_NAME (TREE_CHAIN (x)) == 0)
5679 x = TREE_CHAIN (x);
5680 else
5682 register tree y = fieldlist;
5684 while (1)
5686 if (DECL_NAME (y) == DECL_NAME (TREE_CHAIN (x)))
5687 break;
5688 if (y == x)
5689 break;
5690 y = TREE_CHAIN (y);
5692 if (DECL_NAME (y) == DECL_NAME (TREE_CHAIN (x)))
5694 error_with_decl (TREE_CHAIN (x), "duplicate member `%s'");
5695 TREE_CHAIN (x) = TREE_CHAIN (TREE_CHAIN (x));
5697 else x = TREE_CHAIN (x);
5700 /* Now we have the nearly final fieldlist. Record it,
5701 then lay out the structure or union (including the fields). */
5703 TYPE_FIELDS (t) = fieldlist;
5705 layout_type (t);
5707 /* Delete all zero-width bit-fields from the front of the fieldlist */
5708 while (fieldlist
5709 && DECL_INITIAL (fieldlist))
5710 fieldlist = TREE_CHAIN (fieldlist);
5711 /* Delete all such members from the rest of the fieldlist */
5712 for (x = fieldlist; x;)
5714 if (TREE_CHAIN (x) && DECL_INITIAL (TREE_CHAIN (x)))
5715 TREE_CHAIN (x) = TREE_CHAIN (TREE_CHAIN (x));
5716 else x = TREE_CHAIN (x);
5719 /* Now we have the truly final field list.
5720 Store it in this type and in the variants. */
5722 TYPE_FIELDS (t) = fieldlist;
5724 /* If there are lots of fields, sort so we can look through them fast.
5725 We arbitrarily consider 16 or more elts to be "a lot". */
5727 int len = 0;
5729 for (x = fieldlist; x; x = TREE_CHAIN (x))
5731 if (len > 15)
5732 break;
5733 len += 1;
5735 if (len > 15)
5737 tree *field_array;
5738 char *space;
5740 len += list_length (x);
5741 /* Use the same allocation policy here that make_node uses, to
5742 ensure that this lives as long as the rest of the struct decl.
5743 All decls in an inline function need to be saved. */
5744 if (allocation_temporary_p ())
5745 space = savealloc (sizeof (struct lang_type) + len * sizeof (tree));
5746 else
5747 space = oballoc (sizeof (struct lang_type) + len * sizeof (tree));
5749 TYPE_LANG_SPECIFIC (t) = (struct lang_type *) space;
5750 TYPE_LANG_SPECIFIC (t)->len = len;
5752 field_array = &TYPE_LANG_SPECIFIC (t)->elts[0];
5753 len = 0;
5754 for (x = fieldlist; x; x = TREE_CHAIN (x))
5755 field_array[len++] = x;
5757 qsort (field_array, len, sizeof (tree), field_decl_cmp);
5761 for (x = TYPE_MAIN_VARIANT (t); x; x = TYPE_NEXT_VARIANT (x))
5763 TYPE_FIELDS (x) = TYPE_FIELDS (t);
5764 TYPE_LANG_SPECIFIC (x) = TYPE_LANG_SPECIFIC (t);
5765 TYPE_ALIGN (x) = TYPE_ALIGN (t);
5768 /* If this was supposed to be a transparent union, but we can't
5769 make it one, warn and turn off the flag. */
5770 if (TREE_CODE (t) == UNION_TYPE
5771 && TYPE_TRANSPARENT_UNION (t)
5772 && TYPE_MODE (t) != DECL_MODE (TYPE_FIELDS (t)))
5774 TYPE_TRANSPARENT_UNION (t) = 0;
5775 warning ("union cannot be made transparent");
5778 /* If this structure or union completes the type of any previous
5779 variable declaration, lay it out and output its rtl. */
5781 if (current_binding_level->n_incomplete != 0)
5783 tree decl;
5784 for (decl = current_binding_level->names; decl; decl = TREE_CHAIN (decl))
5786 if (TREE_TYPE (decl) == t
5787 && TREE_CODE (decl) != TYPE_DECL)
5789 layout_decl (decl, 0);
5790 /* This is a no-op in c-lang.c or something real in objc-actions.c. */
5791 maybe_objc_check_decl (decl);
5792 rest_of_decl_compilation (decl, NULL_PTR, toplevel, 0);
5793 if (! toplevel)
5794 expand_decl (decl);
5795 --current_binding_level->n_incomplete;
5797 else if (TYPE_SIZE (TREE_TYPE (decl)) == 0
5798 && TREE_CODE (TREE_TYPE (decl)) == ARRAY_TYPE)
5800 tree element = TREE_TYPE (decl);
5801 while (TREE_CODE (element) == ARRAY_TYPE)
5802 element = TREE_TYPE (element);
5803 if (element == t)
5804 layout_array_type (TREE_TYPE (decl));
5809 resume_momentary (old_momentary);
5811 /* Finish debugging output for this type. */
5812 rest_of_type_compilation (t, toplevel);
5814 /* The matching push is in start_struct. */
5815 pop_obstacks ();
5817 return t;
5820 /* Lay out the type T, and its element type, and so on. */
5822 static void
5823 layout_array_type (t)
5824 tree t;
5826 if (TREE_CODE (TREE_TYPE (t)) == ARRAY_TYPE)
5827 layout_array_type (TREE_TYPE (t));
5828 layout_type (t);
5831 /* Begin compiling the definition of an enumeration type.
5832 NAME is its name (or null if anonymous).
5833 Returns the type object, as yet incomplete.
5834 Also records info about it so that build_enumerator
5835 may be used to declare the individual values as they are read. */
5837 tree
5838 start_enum (name)
5839 tree name;
5841 register tree enumtype = 0;
5843 /* If this is the real definition for a previous forward reference,
5844 fill in the contents in the same object that used to be the
5845 forward reference. */
5847 if (name != 0)
5848 enumtype = lookup_tag (ENUMERAL_TYPE, name, current_binding_level, 1);
5850 /* The corresponding pop_obstacks is in finish_enum. */
5851 push_obstacks_nochange ();
5852 /* If these symbols and types are global, make them permanent. */
5853 if (current_binding_level == global_binding_level)
5854 end_temporary_allocation ();
5856 if (enumtype == 0 || TREE_CODE (enumtype) != ENUMERAL_TYPE)
5858 enumtype = make_node (ENUMERAL_TYPE);
5859 pushtag (name, enumtype);
5862 C_TYPE_BEING_DEFINED (enumtype) = 1;
5864 if (TYPE_VALUES (enumtype) != 0)
5866 /* This enum is a named one that has been declared already. */
5867 error ("redeclaration of `enum %s'", IDENTIFIER_POINTER (name));
5869 /* Completely replace its old definition.
5870 The old enumerators remain defined, however. */
5871 TYPE_VALUES (enumtype) = 0;
5874 enum_next_value = integer_zero_node;
5875 enum_overflow = 0;
5877 if (flag_short_enums)
5878 TYPE_PACKED (enumtype) = 1;
5880 return enumtype;
5883 /* After processing and defining all the values of an enumeration type,
5884 install their decls in the enumeration type and finish it off.
5885 ENUMTYPE is the type object, VALUES a list of decl-value pairs,
5886 and ATTRIBUTES are the specified attributes.
5887 Returns ENUMTYPE. */
5889 tree
5890 finish_enum (enumtype, values, attributes)
5891 tree enumtype;
5892 tree values;
5893 tree attributes;
5895 register tree pair, tem;
5896 tree minnode = 0, maxnode = 0;
5897 int lowprec, highprec, precision;
5898 int toplevel = global_binding_level == current_binding_level;
5900 if (in_parm_level_p ())
5901 warning ("enum defined inside parms");
5903 decl_attributes (enumtype, attributes, NULL_TREE);
5905 /* Calculate the maximum value of any enumerator in this type. */
5907 if (values == error_mark_node)
5908 minnode = maxnode = integer_zero_node;
5909 else
5910 for (pair = values; pair; pair = TREE_CHAIN (pair))
5912 tree value = TREE_VALUE (pair);
5913 if (pair == values)
5914 minnode = maxnode = TREE_VALUE (pair);
5915 else
5917 if (tree_int_cst_lt (maxnode, value))
5918 maxnode = value;
5919 if (tree_int_cst_lt (value, minnode))
5920 minnode = value;
5924 TYPE_MIN_VALUE (enumtype) = minnode;
5925 TYPE_MAX_VALUE (enumtype) = maxnode;
5927 /* An enum can have some negative values; then it is signed. */
5928 TREE_UNSIGNED (enumtype) = tree_int_cst_sgn (minnode) >= 0;
5930 /* Determine the precision this type needs. */
5932 lowprec = min_precision (minnode, TREE_UNSIGNED (enumtype));
5933 highprec = min_precision (maxnode, TREE_UNSIGNED (enumtype));
5934 precision = MAX (lowprec, highprec);
5936 if (TYPE_PACKED (enumtype) || precision > TYPE_PRECISION (integer_type_node))
5938 tree narrowest = type_for_size (precision, 1);
5939 if (narrowest == 0)
5941 warning ("enumeration values exceed range of largest integer");
5942 narrowest = long_long_integer_type_node;
5945 TYPE_PRECISION (enumtype) = TYPE_PRECISION (narrowest);
5947 else
5948 TYPE_PRECISION (enumtype) = TYPE_PRECISION (integer_type_node);
5950 TYPE_SIZE (enumtype) = 0;
5951 layout_type (enumtype);
5953 if (values != error_mark_node)
5955 /* Change the type of the enumerators to be the enum type.
5956 Formerly this was done only for enums that fit in an int,
5957 but the comment said it was done only for enums wider than int.
5958 It seems necessary to do this for wide enums,
5959 and best not to change what's done for ordinary narrower ones. */
5960 for (pair = values; pair; pair = TREE_CHAIN (pair))
5962 TREE_TYPE (TREE_PURPOSE (pair)) = enumtype;
5963 DECL_SIZE (TREE_PURPOSE (pair)) = TYPE_SIZE (enumtype);
5964 if (TREE_CODE (TREE_PURPOSE (pair)) != FUNCTION_DECL)
5965 DECL_ALIGN (TREE_PURPOSE (pair)) = TYPE_ALIGN (enumtype);
5968 /* Replace the decl nodes in VALUES with their names. */
5969 for (pair = values; pair; pair = TREE_CHAIN (pair))
5970 TREE_PURPOSE (pair) = DECL_NAME (TREE_PURPOSE (pair));
5972 TYPE_VALUES (enumtype) = values;
5975 /* Fix up all variant types of this enum type. */
5976 for (tem = TYPE_MAIN_VARIANT (enumtype); tem; tem = TYPE_NEXT_VARIANT (tem))
5978 TYPE_VALUES (tem) = TYPE_VALUES (enumtype);
5979 TYPE_MIN_VALUE (tem) = TYPE_MIN_VALUE (enumtype);
5980 TYPE_MAX_VALUE (tem) = TYPE_MAX_VALUE (enumtype);
5981 TYPE_SIZE (tem) = TYPE_SIZE (enumtype);
5982 TYPE_MODE (tem) = TYPE_MODE (enumtype);
5983 TYPE_PRECISION (tem) = TYPE_PRECISION (enumtype);
5984 TYPE_ALIGN (tem) = TYPE_ALIGN (enumtype);
5985 TREE_UNSIGNED (tem) = TREE_UNSIGNED (enumtype);
5988 /* Finish debugging output for this type. */
5989 rest_of_type_compilation (enumtype, toplevel);
5991 /* This matches a push in start_enum. */
5992 pop_obstacks ();
5994 return enumtype;
5997 /* Build and install a CONST_DECL for one value of the
5998 current enumeration type (one that was begun with start_enum).
5999 Return a tree-list containing the CONST_DECL and its value.
6000 Assignment of sequential values by default is handled here. */
6002 tree
6003 build_enumerator (name, value)
6004 tree name, value;
6006 register tree decl, type;
6008 /* Validate and default VALUE. */
6010 /* Remove no-op casts from the value. */
6011 if (value)
6012 STRIP_TYPE_NOPS (value);
6014 if (value != 0)
6016 if (TREE_CODE (value) == INTEGER_CST)
6018 value = default_conversion (value);
6019 constant_expression_warning (value);
6021 else
6023 error ("enumerator value for `%s' not integer constant",
6024 IDENTIFIER_POINTER (name));
6025 value = 0;
6029 /* Default based on previous value. */
6030 /* It should no longer be possible to have NON_LVALUE_EXPR
6031 in the default. */
6032 if (value == 0)
6034 value = enum_next_value;
6035 if (enum_overflow)
6036 error ("overflow in enumeration values");
6039 if (pedantic && ! int_fits_type_p (value, integer_type_node))
6041 pedwarn ("ANSI C restricts enumerator values to range of `int'");
6042 value = integer_zero_node;
6045 /* Set basis for default for next value. */
6046 enum_next_value = build_binary_op (PLUS_EXPR, value, integer_one_node, 0);
6047 enum_overflow = tree_int_cst_lt (enum_next_value, value);
6049 /* Now create a declaration for the enum value name. */
6051 type = TREE_TYPE (value);
6052 type = type_for_size (MAX (TYPE_PRECISION (type),
6053 TYPE_PRECISION (integer_type_node)),
6054 ((flag_traditional
6055 || TYPE_PRECISION (type) >= TYPE_PRECISION (integer_type_node))
6056 && TREE_UNSIGNED (type)));
6058 decl = build_decl (CONST_DECL, name, type);
6059 DECL_INITIAL (decl) = value;
6060 TREE_TYPE (value) = type;
6061 pushdecl (decl);
6063 return saveable_tree_cons (decl, value, NULL_TREE);
6066 /* Create the FUNCTION_DECL for a function definition.
6067 DECLSPECS, DECLARATOR, PREFIX_ATTRIBUTES and ATTRIBUTES are the parts of
6068 the declaration; they describe the function's name and the type it returns,
6069 but twisted together in a fashion that parallels the syntax of C.
6071 This function creates a binding context for the function body
6072 as well as setting up the FUNCTION_DECL in current_function_decl.
6074 Returns 1 on success. If the DECLARATOR is not suitable for a function
6075 (it defines a datum instead), we return 0, which tells
6076 yyparse to report a parse error.
6078 NESTED is nonzero for a function nested within another function. */
6081 start_function (declspecs, declarator, prefix_attributes, attributes, nested)
6082 tree declarator, declspecs, prefix_attributes, attributes;
6083 int nested;
6085 tree decl1, old_decl;
6086 tree restype;
6087 int old_immediate_size_expand = immediate_size_expand;
6089 current_function_returns_value = 0; /* Assume, until we see it does. */
6090 current_function_returns_null = 0;
6091 warn_about_return_type = 0;
6092 current_extern_inline = 0;
6093 c_function_varargs = 0;
6094 named_labels = 0;
6095 shadowed_labels = 0;
6097 /* Don't expand any sizes in the return type of the function. */
6098 immediate_size_expand = 0;
6100 decl1 = grokdeclarator (declarator, declspecs, FUNCDEF, 1);
6102 /* If the declarator is not suitable for a function definition,
6103 cause a syntax error. */
6104 if (decl1 == 0)
6105 return 0;
6107 decl_attributes (decl1, prefix_attributes, attributes);
6109 announce_function (decl1);
6111 if (TYPE_SIZE (TREE_TYPE (TREE_TYPE (decl1))) == 0)
6113 error ("return-type is an incomplete type");
6114 /* Make it return void instead. */
6115 TREE_TYPE (decl1)
6116 = build_function_type (void_type_node,
6117 TYPE_ARG_TYPES (TREE_TYPE (decl1)));
6120 if (warn_about_return_type)
6121 warning ("return-type defaults to `int'");
6123 /* Save the parm names or decls from this function's declarator
6124 where store_parm_decls will find them. */
6125 current_function_parms = last_function_parms;
6126 current_function_parm_tags = last_function_parm_tags;
6128 /* Make the init_value nonzero so pushdecl knows this is not tentative.
6129 error_mark_node is replaced below (in poplevel) with the BLOCK. */
6130 DECL_INITIAL (decl1) = error_mark_node;
6132 /* If this definition isn't a prototype and we had a prototype declaration
6133 before, copy the arg type info from that prototype.
6134 But not if what we had before was a builtin function. */
6135 old_decl = lookup_name_current_level (DECL_NAME (decl1));
6136 if (old_decl != 0 && TREE_CODE (TREE_TYPE (old_decl)) == FUNCTION_TYPE
6137 && !DECL_BUILT_IN (old_decl)
6138 && (TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (decl1)))
6139 == TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (old_decl))))
6140 && TYPE_ARG_TYPES (TREE_TYPE (decl1)) == 0)
6142 TREE_TYPE (decl1) = TREE_TYPE (old_decl);
6143 current_function_prototype_file = DECL_SOURCE_FILE (old_decl);
6144 current_function_prototype_line = DECL_SOURCE_LINE (old_decl);
6147 /* If there is no explicit declaration, look for any out-of-scope implicit
6148 declarations. */
6149 if (old_decl == 0)
6150 old_decl = IDENTIFIER_IMPLICIT_DECL (DECL_NAME (decl1));
6152 /* Optionally warn of old-fashioned def with no previous prototype. */
6153 if (warn_strict_prototypes
6154 && TYPE_ARG_TYPES (TREE_TYPE (decl1)) == 0
6155 && !(old_decl != 0 && TYPE_ARG_TYPES (TREE_TYPE (old_decl)) != 0))
6156 warning ("function declaration isn't a prototype");
6157 /* Optionally warn of any global def with no previous prototype. */
6158 else if (warn_missing_prototypes
6159 && TREE_PUBLIC (decl1)
6160 && !(old_decl != 0 && TYPE_ARG_TYPES (TREE_TYPE (old_decl)) != 0)
6161 && strcmp ("main", IDENTIFIER_POINTER (DECL_NAME (decl1))))
6162 warning_with_decl (decl1, "no previous prototype for `%s'");
6163 /* Optionally warn of any def with no previous prototype
6164 if the function has already been used. */
6165 else if (warn_missing_prototypes
6166 && old_decl != 0 && TREE_USED (old_decl)
6167 && TYPE_ARG_TYPES (TREE_TYPE (old_decl)) == 0)
6168 warning_with_decl (decl1,
6169 "`%s' was used with no prototype before its definition");
6170 /* Optionally warn of any global def with no previous declaration. */
6171 else if (warn_missing_declarations
6172 && TREE_PUBLIC (decl1)
6173 && old_decl == 0
6174 && strcmp ("main", IDENTIFIER_POINTER (DECL_NAME (decl1))))
6175 warning_with_decl (decl1, "no previous declaration for `%s'");
6176 /* Optionally warn of any def with no previous declaration
6177 if the function has already been used. */
6178 else if (warn_missing_declarations
6179 && old_decl != 0 && TREE_USED (old_decl)
6180 && old_decl == IDENTIFIER_IMPLICIT_DECL (DECL_NAME (decl1)))
6181 warning_with_decl (decl1,
6182 "`%s' was used with no declaration before its definition");
6184 /* This is a definition, not a reference.
6185 So normally clear DECL_EXTERNAL.
6186 However, `extern inline' acts like a declaration
6187 except for defining how to inline. So set DECL_EXTERNAL in that case. */
6188 DECL_EXTERNAL (decl1) = current_extern_inline;
6190 /* This function exists in static storage.
6191 (This does not mean `static' in the C sense!) */
6192 TREE_STATIC (decl1) = 1;
6194 /* A nested function is not global. */
6195 if (current_function_decl != 0)
6196 TREE_PUBLIC (decl1) = 0;
6198 /* Record the decl so that the function name is defined.
6199 If we already have a decl for this name, and it is a FUNCTION_DECL,
6200 use the old decl. */
6202 current_function_decl = pushdecl (decl1);
6204 pushlevel (0);
6205 declare_parm_level (1);
6206 current_binding_level->subblocks_tag_transparent = 1;
6208 make_function_rtl (current_function_decl);
6210 restype = TREE_TYPE (TREE_TYPE (current_function_decl));
6211 /* Promote the value to int before returning it. */
6212 if (C_PROMOTING_INTEGER_TYPE_P (restype))
6214 /* It retains unsignedness if traditional
6215 or if not really getting wider. */
6216 if (TREE_UNSIGNED (restype)
6217 && (flag_traditional
6218 || (TYPE_PRECISION (restype)
6219 == TYPE_PRECISION (integer_type_node))))
6220 restype = unsigned_type_node;
6221 else
6222 restype = integer_type_node;
6224 DECL_RESULT (current_function_decl)
6225 = build_decl (RESULT_DECL, NULL_TREE, restype);
6227 if (!nested)
6228 /* Allocate further tree nodes temporarily during compilation
6229 of this function only. */
6230 temporary_allocation ();
6232 /* If this fcn was already referenced via a block-scope `extern' decl
6233 (or an implicit decl), propagate certain information about the usage. */
6234 if (TREE_ADDRESSABLE (DECL_ASSEMBLER_NAME (current_function_decl)))
6235 TREE_ADDRESSABLE (current_function_decl) = 1;
6237 immediate_size_expand = old_immediate_size_expand;
6239 return 1;
6242 /* Record that this function is going to be a varargs function.
6243 This is called before store_parm_decls, which is too early
6244 to call mark_varargs directly. */
6246 void
6247 c_mark_varargs ()
6249 c_function_varargs = 1;
6252 /* Store the parameter declarations into the current function declaration.
6253 This is called after parsing the parameter declarations, before
6254 digesting the body of the function.
6256 For an old-style definition, modify the function's type
6257 to specify at least the number of arguments. */
6259 void
6260 store_parm_decls ()
6262 register tree fndecl = current_function_decl;
6263 register tree parm;
6265 /* This is either a chain of PARM_DECLs (if a prototype was used)
6266 or a list of IDENTIFIER_NODEs (for an old-fashioned C definition). */
6267 tree specparms = current_function_parms;
6269 /* This is a list of types declared among parms in a prototype. */
6270 tree parmtags = current_function_parm_tags;
6272 /* This is a chain of PARM_DECLs from old-style parm declarations. */
6273 register tree parmdecls = getdecls ();
6275 /* This is a chain of any other decls that came in among the parm
6276 declarations. If a parm is declared with enum {foo, bar} x;
6277 then CONST_DECLs for foo and bar are put here. */
6278 tree nonparms = 0;
6280 /* Nonzero if this definition is written with a prototype. */
6281 int prototype = 0;
6283 if (specparms != 0 && TREE_CODE (specparms) != TREE_LIST)
6285 /* This case is when the function was defined with an ANSI prototype.
6286 The parms already have decls, so we need not do anything here
6287 except record them as in effect
6288 and complain if any redundant old-style parm decls were written. */
6290 register tree next;
6291 tree others = 0;
6293 prototype = 1;
6295 if (parmdecls != 0)
6297 tree decl, link;
6299 error_with_decl (fndecl,
6300 "parm types given both in parmlist and separately");
6301 /* Get rid of the erroneous decls; don't keep them on
6302 the list of parms, since they might not be PARM_DECLs. */
6303 for (decl = current_binding_level->names;
6304 decl; decl = TREE_CHAIN (decl))
6305 if (DECL_NAME (decl))
6306 IDENTIFIER_LOCAL_VALUE (DECL_NAME (decl)) = 0;
6307 for (link = current_binding_level->shadowed;
6308 link; link = TREE_CHAIN (link))
6309 IDENTIFIER_LOCAL_VALUE (TREE_PURPOSE (link)) = TREE_VALUE (link);
6310 current_binding_level->names = 0;
6311 current_binding_level->shadowed = 0;
6314 specparms = nreverse (specparms);
6315 for (parm = specparms; parm; parm = next)
6317 next = TREE_CHAIN (parm);
6318 if (TREE_CODE (parm) == PARM_DECL)
6320 if (DECL_NAME (parm) == 0)
6321 error_with_decl (parm, "parameter name omitted");
6322 else if (TYPE_MAIN_VARIANT (TREE_TYPE (parm)) == void_type_node)
6324 error_with_decl (parm, "parameter `%s' declared void");
6325 /* Change the type to error_mark_node so this parameter
6326 will be ignored by assign_parms. */
6327 TREE_TYPE (parm) = error_mark_node;
6329 pushdecl (parm);
6331 else
6333 /* If we find an enum constant or a type tag,
6334 put it aside for the moment. */
6335 TREE_CHAIN (parm) = 0;
6336 others = chainon (others, parm);
6340 /* Get the decls in their original chain order
6341 and record in the function. */
6342 DECL_ARGUMENTS (fndecl) = getdecls ();
6344 #if 0
6345 /* If this function takes a variable number of arguments,
6346 add a phony parameter to the end of the parm list,
6347 to represent the position of the first unnamed argument. */
6348 if (TREE_VALUE (tree_last (TYPE_ARG_TYPES (TREE_TYPE (fndecl))))
6349 != void_type_node)
6351 tree dummy = build_decl (PARM_DECL, NULL_TREE, void_type_node);
6352 /* Let's hope the address of the unnamed parm
6353 won't depend on its type. */
6354 TREE_TYPE (dummy) = integer_type_node;
6355 DECL_ARG_TYPE (dummy) = integer_type_node;
6356 DECL_ARGUMENTS (fndecl)
6357 = chainon (DECL_ARGUMENTS (fndecl), dummy);
6359 #endif
6361 /* Now pushdecl the enum constants. */
6362 for (parm = others; parm; parm = next)
6364 next = TREE_CHAIN (parm);
6365 if (DECL_NAME (parm) == 0)
6367 else if (TYPE_MAIN_VARIANT (TREE_TYPE (parm)) == void_type_node)
6369 else if (TREE_CODE (parm) != PARM_DECL)
6370 pushdecl (parm);
6373 storetags (chainon (parmtags, gettags ()));
6375 else
6377 /* SPECPARMS is an identifier list--a chain of TREE_LIST nodes
6378 each with a parm name as the TREE_VALUE.
6380 PARMDECLS is a chain of declarations for parameters.
6381 Warning! It can also contain CONST_DECLs which are not parameters
6382 but are names of enumerators of any enum types
6383 declared among the parameters.
6385 First match each formal parameter name with its declaration.
6386 Associate decls with the names and store the decls
6387 into the TREE_PURPOSE slots. */
6389 for (parm = parmdecls; parm; parm = TREE_CHAIN (parm))
6390 DECL_RESULT (parm) = 0;
6392 for (parm = specparms; parm; parm = TREE_CHAIN (parm))
6394 register tree tail, found = NULL;
6396 if (TREE_VALUE (parm) == 0)
6398 error_with_decl (fndecl, "parameter name missing from parameter list");
6399 TREE_PURPOSE (parm) = 0;
6400 continue;
6403 /* See if any of the parmdecls specifies this parm by name.
6404 Ignore any enumerator decls. */
6405 for (tail = parmdecls; tail; tail = TREE_CHAIN (tail))
6406 if (DECL_NAME (tail) == TREE_VALUE (parm)
6407 && TREE_CODE (tail) == PARM_DECL)
6409 found = tail;
6410 break;
6413 /* If declaration already marked, we have a duplicate name.
6414 Complain, and don't use this decl twice. */
6415 if (found && DECL_RESULT (found) != 0)
6417 error_with_decl (found, "multiple parameters named `%s'");
6418 found = 0;
6421 /* If the declaration says "void", complain and ignore it. */
6422 if (found && TYPE_MAIN_VARIANT (TREE_TYPE (found)) == void_type_node)
6424 error_with_decl (found, "parameter `%s' declared void");
6425 TREE_TYPE (found) = integer_type_node;
6426 DECL_ARG_TYPE (found) = integer_type_node;
6427 layout_decl (found, 0);
6430 /* Traditionally, a parm declared float is actually a double. */
6431 if (found && flag_traditional
6432 && TYPE_MAIN_VARIANT (TREE_TYPE (found)) == float_type_node)
6434 TREE_TYPE (found) = double_type_node;
6435 DECL_ARG_TYPE (found) = double_type_node;
6436 layout_decl (found, 0);
6439 /* If no declaration found, default to int. */
6440 if (!found)
6442 found = build_decl (PARM_DECL, TREE_VALUE (parm),
6443 integer_type_node);
6444 DECL_ARG_TYPE (found) = TREE_TYPE (found);
6445 DECL_SOURCE_LINE (found) = DECL_SOURCE_LINE (fndecl);
6446 DECL_SOURCE_FILE (found) = DECL_SOURCE_FILE (fndecl);
6447 if (extra_warnings)
6448 warning_with_decl (found, "type of `%s' defaults to `int'");
6449 pushdecl (found);
6452 TREE_PURPOSE (parm) = found;
6454 /* Mark this decl as "already found" -- see test, above.
6455 It is safe to use DECL_RESULT for this
6456 since it is not used in PARM_DECLs or CONST_DECLs. */
6457 DECL_RESULT (found) = error_mark_node;
6460 /* Put anything which is on the parmdecls chain and which is
6461 not a PARM_DECL onto the list NONPARMS. (The types of
6462 non-parm things which might appear on the list include
6463 enumerators and NULL-named TYPE_DECL nodes.) Complain about
6464 any actual PARM_DECLs not matched with any names. */
6466 nonparms = 0;
6467 for (parm = parmdecls; parm; )
6469 tree next = TREE_CHAIN (parm);
6470 TREE_CHAIN (parm) = 0;
6472 if (TREE_CODE (parm) != PARM_DECL)
6473 nonparms = chainon (nonparms, parm);
6474 else
6476 /* Complain about args with incomplete types. */
6477 if (TYPE_SIZE (TREE_TYPE (parm)) == 0)
6479 error_with_decl (parm, "parameter `%s' has incomplete type");
6480 TREE_TYPE (parm) = error_mark_node;
6483 if (DECL_RESULT (parm) == 0)
6485 error_with_decl (parm,
6486 "declaration for parameter `%s' but no such parameter");
6487 /* Pretend the parameter was not missing.
6488 This gets us to a standard state and minimizes
6489 further error messages. */
6490 specparms
6491 = chainon (specparms,
6492 tree_cons (parm, NULL_TREE, NULL_TREE));
6496 parm = next;
6499 /* Chain the declarations together in the order of the list of names. */
6500 /* Store that chain in the function decl, replacing the list of names. */
6501 parm = specparms;
6502 DECL_ARGUMENTS (fndecl) = 0;
6504 register tree last;
6505 for (last = 0; parm; parm = TREE_CHAIN (parm))
6506 if (TREE_PURPOSE (parm))
6508 if (last == 0)
6509 DECL_ARGUMENTS (fndecl) = TREE_PURPOSE (parm);
6510 else
6511 TREE_CHAIN (last) = TREE_PURPOSE (parm);
6512 last = TREE_PURPOSE (parm);
6513 TREE_CHAIN (last) = 0;
6517 /* If there was a previous prototype,
6518 set the DECL_ARG_TYPE of each argument according to
6519 the type previously specified, and report any mismatches. */
6521 if (TYPE_ARG_TYPES (TREE_TYPE (fndecl)))
6523 register tree type;
6524 for (parm = DECL_ARGUMENTS (fndecl),
6525 type = TYPE_ARG_TYPES (TREE_TYPE (fndecl));
6526 parm || (type && (TYPE_MAIN_VARIANT (TREE_VALUE (type))
6527 != void_type_node));
6528 parm = TREE_CHAIN (parm), type = TREE_CHAIN (type))
6530 if (parm == 0 || type == 0
6531 || TYPE_MAIN_VARIANT (TREE_VALUE (type)) == void_type_node)
6533 error ("number of arguments doesn't match prototype");
6534 error_with_file_and_line (current_function_prototype_file,
6535 current_function_prototype_line,
6536 "prototype declaration");
6537 break;
6539 /* Type for passing arg must be consistent
6540 with that declared for the arg. */
6541 if (! comptypes (DECL_ARG_TYPE (parm), TREE_VALUE (type)))
6543 if (TYPE_MAIN_VARIANT (TREE_TYPE (parm))
6544 == TYPE_MAIN_VARIANT (TREE_VALUE (type)))
6546 /* Adjust argument to match prototype. E.g. a previous
6547 `int foo(float);' prototype causes
6548 `int foo(x) float x; {...}' to be treated like
6549 `int foo(float x) {...}'. This is particularly
6550 useful for argument types like uid_t. */
6551 DECL_ARG_TYPE (parm) = TREE_TYPE (parm);
6552 #ifdef PROMOTE_PROTOTYPES
6553 if ((TREE_CODE (TREE_TYPE (parm)) == INTEGER_TYPE
6554 || TREE_CODE (TREE_TYPE (parm)) == ENUMERAL_TYPE)
6555 && TYPE_PRECISION (TREE_TYPE (parm))
6556 < TYPE_PRECISION (integer_type_node))
6557 DECL_ARG_TYPE (parm) = integer_type_node;
6558 #endif
6559 if (pedantic)
6561 pedwarn ("promoted argument `%s' doesn't match prototype",
6562 IDENTIFIER_POINTER (DECL_NAME (parm)));
6563 warning_with_file_and_line
6564 (current_function_prototype_file,
6565 current_function_prototype_line,
6566 "prototype declaration");
6569 /* If -traditional, allow `int' argument to match
6570 `unsigned' prototype. */
6571 else if (! (flag_traditional
6572 && TYPE_MAIN_VARIANT (TREE_TYPE (parm)) == integer_type_node
6573 && TYPE_MAIN_VARIANT (TREE_VALUE (type)) == unsigned_type_node))
6575 error ("argument `%s' doesn't match prototype",
6576 IDENTIFIER_POINTER (DECL_NAME (parm)));
6577 error_with_file_and_line (current_function_prototype_file,
6578 current_function_prototype_line,
6579 "prototype declaration");
6583 TYPE_ACTUAL_ARG_TYPES (TREE_TYPE (fndecl)) = 0;
6586 /* Otherwise, create a prototype that would match. */
6588 else
6590 tree actual = 0, last = 0, type;
6592 for (parm = DECL_ARGUMENTS (fndecl); parm; parm = TREE_CHAIN (parm))
6594 type = perm_tree_cons (NULL_TREE, DECL_ARG_TYPE (parm),
6595 NULL_TREE);
6596 if (last)
6597 TREE_CHAIN (last) = type;
6598 else
6599 actual = type;
6600 last = type;
6602 type = perm_tree_cons (NULL_TREE, void_type_node, NULL_TREE);
6603 if (last)
6604 TREE_CHAIN (last) = type;
6605 else
6606 actual = type;
6608 /* We are going to assign a new value for the TYPE_ACTUAL_ARG_TYPES
6609 of the type of this function, but we need to avoid having this
6610 affect the types of other similarly-typed functions, so we must
6611 first force the generation of an identical (but separate) type
6612 node for the relevant function type. The new node we create
6613 will be a variant of the main variant of the original function
6614 type. */
6616 TREE_TYPE (fndecl) = build_type_copy (TREE_TYPE (fndecl));
6618 TYPE_ACTUAL_ARG_TYPES (TREE_TYPE (fndecl)) = actual;
6621 /* Now store the final chain of decls for the arguments
6622 as the decl-chain of the current lexical scope.
6623 Put the enumerators in as well, at the front so that
6624 DECL_ARGUMENTS is not modified. */
6626 storedecls (chainon (nonparms, DECL_ARGUMENTS (fndecl)));
6629 /* Make sure the binding level for the top of the function body
6630 gets a BLOCK if there are any in the function.
6631 Otherwise, the dbx output is wrong. */
6633 keep_next_if_subblocks = 1;
6635 /* ??? This might be an improvement,
6636 but needs to be thought about some more. */
6637 #if 0
6638 keep_next_level_flag = 1;
6639 #endif
6641 /* Write a record describing this function definition to the prototypes
6642 file (if requested). */
6644 gen_aux_info_record (fndecl, 1, 0, prototype);
6646 /* Initialize the RTL code for the function. */
6648 init_function_start (fndecl, input_filename, lineno);
6650 /* If this is a varargs function, inform function.c. */
6652 if (c_function_varargs)
6653 mark_varargs ();
6655 /* Declare __FUNCTION__ and __PRETTY_FUNCTION__ for this function. */
6657 declare_function_name ();
6659 /* Set up parameters and prepare for return, for the function. */
6661 expand_function_start (fndecl, 0);
6663 /* If this function is `main', emit a call to `__main'
6664 to run global initializers, etc. */
6665 if (DECL_NAME (fndecl)
6666 && strcmp (IDENTIFIER_POINTER (DECL_NAME (fndecl)), "main") == 0
6667 && DECL_CONTEXT (fndecl) == NULL_TREE)
6668 expand_main_function ();
6671 /* SPECPARMS is an identifier list--a chain of TREE_LIST nodes
6672 each with a parm name as the TREE_VALUE. A null pointer as TREE_VALUE
6673 stands for an ellipsis in the identifier list.
6675 PARMLIST is the data returned by get_parm_info for the
6676 parmlist that follows the semicolon.
6678 We return a value of the same sort that get_parm_info returns,
6679 except that it describes the combination of identifiers and parmlist. */
6681 tree
6682 combine_parm_decls (specparms, parmlist, void_at_end)
6683 tree specparms, parmlist;
6684 int void_at_end;
6686 register tree fndecl = current_function_decl;
6687 register tree parm;
6689 tree parmdecls = TREE_PURPOSE (parmlist);
6691 /* This is a chain of any other decls that came in among the parm
6692 declarations. They were separated already by get_parm_info,
6693 so we just need to keep them separate. */
6694 tree nonparms = TREE_VALUE (parmlist);
6696 tree types = 0;
6698 for (parm = parmdecls; parm; parm = TREE_CHAIN (parm))
6699 DECL_RESULT (parm) = 0;
6701 for (parm = specparms; parm; parm = TREE_CHAIN (parm))
6703 register tree tail, found = NULL;
6705 /* See if any of the parmdecls specifies this parm by name. */
6706 for (tail = parmdecls; tail; tail = TREE_CHAIN (tail))
6707 if (DECL_NAME (tail) == TREE_VALUE (parm))
6709 found = tail;
6710 break;
6713 /* If declaration already marked, we have a duplicate name.
6714 Complain, and don't use this decl twice. */
6715 if (found && DECL_RESULT (found) != 0)
6717 error_with_decl (found, "multiple parameters named `%s'");
6718 found = 0;
6721 /* If the declaration says "void", complain and ignore it. */
6722 if (found && TYPE_MAIN_VARIANT (TREE_TYPE (found)) == void_type_node)
6724 error_with_decl (found, "parameter `%s' declared void");
6725 TREE_TYPE (found) = integer_type_node;
6726 DECL_ARG_TYPE (found) = integer_type_node;
6727 layout_decl (found, 0);
6730 /* Traditionally, a parm declared float is actually a double. */
6731 if (found && flag_traditional
6732 && TYPE_MAIN_VARIANT (TREE_TYPE (found)) == float_type_node)
6734 TREE_TYPE (found) = double_type_node;
6735 DECL_ARG_TYPE (found) = double_type_node;
6736 layout_decl (found, 0);
6739 /* If no declaration found, default to int. */
6740 if (!found)
6742 found = build_decl (PARM_DECL, TREE_VALUE (parm),
6743 integer_type_node);
6744 DECL_ARG_TYPE (found) = TREE_TYPE (found);
6745 DECL_SOURCE_LINE (found) = DECL_SOURCE_LINE (fndecl);
6746 DECL_SOURCE_FILE (found) = DECL_SOURCE_FILE (fndecl);
6747 error_with_decl (found, "type of parameter `%s' is not declared");
6748 pushdecl (found);
6751 TREE_PURPOSE (parm) = found;
6753 /* Mark this decl as "already found" -- see test, above.
6754 It is safe to use DECL_RESULT for this
6755 since it is not used in PARM_DECLs or CONST_DECLs. */
6756 DECL_RESULT (found) = error_mark_node;
6759 /* Complain about any actual PARM_DECLs not matched with any names. */
6761 for (parm = parmdecls; parm; )
6763 tree next = TREE_CHAIN (parm);
6764 TREE_CHAIN (parm) = 0;
6766 /* Complain about args with incomplete types. */
6767 if (TYPE_SIZE (TREE_TYPE (parm)) == 0)
6769 error_with_decl (parm, "parameter `%s' has incomplete type");
6770 TREE_TYPE (parm) = error_mark_node;
6773 if (DECL_RESULT (parm) == 0)
6775 error_with_decl (parm,
6776 "declaration for parameter `%s' but no such parameter");
6777 /* Pretend the parameter was not missing.
6778 This gets us to a standard state and minimizes
6779 further error messages. */
6780 specparms
6781 = chainon (specparms,
6782 tree_cons (parm, NULL_TREE, NULL_TREE));
6785 parm = next;
6788 /* Chain the declarations together in the order of the list of names.
6789 At the same time, build up a list of their types, in reverse order. */
6791 parm = specparms;
6792 parmdecls = 0;
6794 register tree last;
6795 for (last = 0; parm; parm = TREE_CHAIN (parm))
6796 if (TREE_PURPOSE (parm))
6798 if (last == 0)
6799 parmdecls = TREE_PURPOSE (parm);
6800 else
6801 TREE_CHAIN (last) = TREE_PURPOSE (parm);
6802 last = TREE_PURPOSE (parm);
6803 TREE_CHAIN (last) = 0;
6805 types = saveable_tree_cons (NULL_TREE, TREE_TYPE (parm), types);
6809 if (void_at_end)
6810 return saveable_tree_cons (parmdecls, nonparms,
6811 nreverse (saveable_tree_cons (NULL_TREE,
6812 void_type_node,
6813 types)));
6815 return saveable_tree_cons (parmdecls, nonparms, nreverse (types));
6818 /* Finish up a function declaration and compile that function
6819 all the way to assembler language output. The free the storage
6820 for the function definition.
6822 This is called after parsing the body of the function definition.
6824 NESTED is nonzero if the function being finished is nested in another. */
6826 void
6827 finish_function (nested)
6828 int nested;
6830 register tree fndecl = current_function_decl;
6832 /* TREE_READONLY (fndecl) = 1;
6833 This caused &foo to be of type ptr-to-const-function
6834 which then got a warning when stored in a ptr-to-function variable. */
6836 poplevel (1, 0, 1);
6837 BLOCK_SUPERCONTEXT (DECL_INITIAL (fndecl)) = fndecl;
6839 /* Must mark the RESULT_DECL as being in this function. */
6841 DECL_CONTEXT (DECL_RESULT (fndecl)) = fndecl;
6843 /* Obey `register' declarations if `setjmp' is called in this fn. */
6844 if (flag_traditional && current_function_calls_setjmp)
6846 setjmp_protect (DECL_INITIAL (fndecl));
6847 setjmp_protect_args ();
6850 if (! strcmp (IDENTIFIER_POINTER (DECL_NAME (fndecl)), "main"))
6852 if (TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (fndecl)))
6853 != integer_type_node)
6854 pedwarn_with_decl (fndecl, "return type of `%s' is not `int'");
6855 else
6857 #ifdef DEFAULT_MAIN_RETURN
6858 /* Make it so that `main' always returns success by default. */
6859 DEFAULT_MAIN_RETURN;
6860 #endif
6864 /* Generate rtl for function exit. */
6865 expand_function_end (input_filename, lineno, 0);
6867 /* So we can tell if jump_optimize sets it to 1. */
6868 can_reach_end = 0;
6870 /* Run the optimizers and output the assembler code for this function. */
6871 rest_of_compilation (fndecl);
6873 current_function_returns_null |= can_reach_end;
6875 if (TREE_THIS_VOLATILE (fndecl) && current_function_returns_null)
6876 warning ("`noreturn' function does return");
6877 else if (warn_return_type && can_reach_end
6878 && TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (fndecl))) != void_type_node)
6879 /* If this function returns non-void and control can drop through,
6880 complain. */
6881 warning ("control reaches end of non-void function");
6882 /* With just -W, complain only if function returns both with
6883 and without a value. */
6884 else if (extra_warnings
6885 && current_function_returns_value && current_function_returns_null)
6886 warning ("this function may return with or without a value");
6888 /* If requested, warn about function definitions where the function will
6889 return a value (usually of some struct or union type) which itself will
6890 take up a lot of stack space. */
6892 if (warn_larger_than && !DECL_EXTERNAL (fndecl) && TREE_TYPE (fndecl))
6894 register tree ret_type = TREE_TYPE (TREE_TYPE (fndecl));
6896 if (ret_type)
6898 register tree ret_type_size = TYPE_SIZE (ret_type);
6900 if (TREE_CODE (ret_type_size) == INTEGER_CST)
6902 unsigned units
6903 = TREE_INT_CST_LOW (ret_type_size) / BITS_PER_UNIT;
6905 if (units > larger_than_size)
6906 warning_with_decl (fndecl,
6907 "size of return value of `%s' is %u bytes",
6908 units);
6913 /* Free all the tree nodes making up this function. */
6914 /* Switch back to allocating nodes permanently
6915 until we start another function. */
6916 if (! nested)
6917 permanent_allocation (1);
6919 if (DECL_SAVED_INSNS (fndecl) == 0 && ! nested)
6921 /* Stop pointing to the local nodes about to be freed. */
6922 /* But DECL_INITIAL must remain nonzero so we know this
6923 was an actual function definition. */
6924 /* For a nested function, this is done in pop_c_function_context. */
6925 /* If rest_of_compilation set this to 0, leave it 0. */
6926 if (DECL_INITIAL (fndecl) != 0)
6927 DECL_INITIAL (fndecl) = error_mark_node;
6928 DECL_ARGUMENTS (fndecl) = 0;
6931 if (DECL_STATIC_CONSTRUCTOR (fndecl))
6933 #ifndef ASM_OUTPUT_CONSTRUCTOR
6934 if (! flag_gnu_linker)
6935 static_ctors = perm_tree_cons (NULL_TREE, fndecl, static_ctors);
6936 else
6937 #endif
6938 assemble_constructor (IDENTIFIER_POINTER (DECL_NAME (fndecl)));
6940 if (DECL_STATIC_DESTRUCTOR (fndecl))
6942 #ifndef ASM_OUTPUT_DESTRUCTOR
6943 if (! flag_gnu_linker)
6944 static_dtors = perm_tree_cons (NULL_TREE, fndecl, static_dtors);
6945 else
6946 #endif
6947 assemble_destructor (IDENTIFIER_POINTER (DECL_NAME (fndecl)));
6950 if (! nested)
6952 /* Let the error reporting routines know that we're outside a
6953 function. For a nested function, this value is used in
6954 pop_c_function_context and then reset via pop_function_context. */
6955 current_function_decl = NULL;
6959 /* Save and restore the variables in this file and elsewhere
6960 that keep track of the progress of compilation of the current function.
6961 Used for nested functions. */
6963 struct c_function
6965 struct c_function *next;
6966 tree named_labels;
6967 tree shadowed_labels;
6968 int returns_value;
6969 int returns_null;
6970 int warn_about_return_type;
6971 int extern_inline;
6972 struct binding_level *binding_level;
6975 struct c_function *c_function_chain;
6977 /* Save and reinitialize the variables
6978 used during compilation of a C function. */
6980 void
6981 push_c_function_context ()
6983 struct c_function *p
6984 = (struct c_function *) xmalloc (sizeof (struct c_function));
6986 if (pedantic)
6987 pedwarn ("ANSI C forbids nested functions");
6989 push_function_context ();
6991 p->next = c_function_chain;
6992 c_function_chain = p;
6994 p->named_labels = named_labels;
6995 p->shadowed_labels = shadowed_labels;
6996 p->returns_value = current_function_returns_value;
6997 p->returns_null = current_function_returns_null;
6998 p->warn_about_return_type = warn_about_return_type;
6999 p->extern_inline = current_extern_inline;
7000 p->binding_level = current_binding_level;
7003 /* Restore the variables used during compilation of a C function. */
7005 void
7006 pop_c_function_context ()
7008 struct c_function *p = c_function_chain;
7009 tree link;
7011 /* Bring back all the labels that were shadowed. */
7012 for (link = shadowed_labels; link; link = TREE_CHAIN (link))
7013 if (DECL_NAME (TREE_VALUE (link)) != 0)
7014 IDENTIFIER_LABEL_VALUE (DECL_NAME (TREE_VALUE (link)))
7015 = TREE_VALUE (link);
7017 if (DECL_SAVED_INSNS (current_function_decl) == 0)
7019 /* Stop pointing to the local nodes about to be freed. */
7020 /* But DECL_INITIAL must remain nonzero so we know this
7021 was an actual function definition. */
7022 DECL_INITIAL (current_function_decl) = error_mark_node;
7023 DECL_ARGUMENTS (current_function_decl) = 0;
7026 pop_function_context ();
7028 c_function_chain = p->next;
7030 named_labels = p->named_labels;
7031 shadowed_labels = p->shadowed_labels;
7032 current_function_returns_value = p->returns_value;
7033 current_function_returns_null = p->returns_null;
7034 warn_about_return_type = p->warn_about_return_type;
7035 current_extern_inline = p->extern_inline;
7036 current_binding_level = p->binding_level;
7038 free (p);
7041 /* integrate_decl_tree calls this function, but since we don't use the
7042 DECL_LANG_SPECIFIC field, this is a no-op. */
7044 void
7045 copy_lang_decl (node)
7046 tree node;