1 /* Process declarations and variables for C compiler.
2 Copyright (C) 1988, 1992, 1993, 1994 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)
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, 675 Mass Ave, Cambridge, MA 02139, USA. */
21 /* Process declarations and symbol lookup for C front end.
22 Also constructs types; the standard scalar types at initialization,
23 and structure, union, array and enum types when they are declared. */
25 /* ??? not all decl nodes are given the most useful possible
26 line numbers. For example, the CONST_DECLs for enum values. */
35 /* In grokdeclarator, distinguish syntactic contexts of declarators. */
37 { NORMAL
, /* Ordinary declaration */
38 FUNCDEF
, /* Function definition */
39 PARM
, /* Declaration of parm before function body */
40 FIELD
, /* Declaration inside struct or union */
41 BITFIELD
, /* Likewise but with specified width */
42 TYPENAME
}; /* Typename (inside cast or sizeof) */
44 #ifndef CHAR_TYPE_SIZE
45 #define CHAR_TYPE_SIZE BITS_PER_UNIT
48 #ifndef SHORT_TYPE_SIZE
49 #define SHORT_TYPE_SIZE (BITS_PER_UNIT * MIN ((UNITS_PER_WORD + 1) / 2, 2))
53 #define INT_TYPE_SIZE BITS_PER_WORD
56 #ifndef LONG_TYPE_SIZE
57 #define LONG_TYPE_SIZE BITS_PER_WORD
60 #ifndef LONG_LONG_TYPE_SIZE
61 #define LONG_LONG_TYPE_SIZE (BITS_PER_WORD * 2)
64 #ifndef WCHAR_UNSIGNED
65 #define WCHAR_UNSIGNED 0
68 #ifndef FLOAT_TYPE_SIZE
69 #define FLOAT_TYPE_SIZE BITS_PER_WORD
72 #ifndef DOUBLE_TYPE_SIZE
73 #define DOUBLE_TYPE_SIZE (BITS_PER_WORD * 2)
76 #ifndef LONG_DOUBLE_TYPE_SIZE
77 #define LONG_DOUBLE_TYPE_SIZE (BITS_PER_WORD * 2)
80 /* We let tm.h override the types used here, to handle trivial differences
81 such as the choice of unsigned int or long unsigned int for size_t.
82 When machines start needing nontrivial differences in the size type,
83 it would be best to do something here to figure out automatically
84 from other information what type to use. */
87 #define SIZE_TYPE "long unsigned int"
91 #define PTRDIFF_TYPE "long int"
95 #define WCHAR_TYPE "int"
98 /* a node which has tree code ERROR_MARK, and whose type is itself.
99 All erroneous expressions are replaced with this node. All functions
100 that accept nodes as arguments should avoid generating error messages
101 if this node is one of the arguments, since it is undesirable to get
102 multiple error messages from one error in the input. */
104 tree error_mark_node
;
106 /* INTEGER_TYPE and REAL_TYPE nodes for the standard data types */
108 tree short_integer_type_node
;
109 tree integer_type_node
;
110 tree long_integer_type_node
;
111 tree long_long_integer_type_node
;
113 tree short_unsigned_type_node
;
114 tree unsigned_type_node
;
115 tree long_unsigned_type_node
;
116 tree long_long_unsigned_type_node
;
118 tree ptrdiff_type_node
;
120 tree unsigned_char_type_node
;
121 tree signed_char_type_node
;
123 tree wchar_type_node
;
124 tree signed_wchar_type_node
;
125 tree unsigned_wchar_type_node
;
127 tree float_type_node
;
128 tree double_type_node
;
129 tree long_double_type_node
;
131 tree complex_integer_type_node
;
132 tree complex_float_type_node
;
133 tree complex_double_type_node
;
134 tree complex_long_double_type_node
;
136 tree intQI_type_node
;
137 tree intHI_type_node
;
138 tree intSI_type_node
;
139 tree intDI_type_node
;
141 tree unsigned_intQI_type_node
;
142 tree unsigned_intHI_type_node
;
143 tree unsigned_intSI_type_node
;
144 tree unsigned_intDI_type_node
;
146 /* a VOID_TYPE node. */
150 /* Nodes for types `void *' and `const void *'. */
152 tree ptr_type_node
, const_ptr_type_node
;
154 /* Nodes for types `char *' and `const char *'. */
156 tree string_type_node
, const_string_type_node
;
158 /* Type `char[SOMENUMBER]'.
159 Used when an array of char is needed and the size is irrelevant. */
161 tree char_array_type_node
;
163 /* Type `int[SOMENUMBER]' or something like it.
164 Used when an array of int needed and the size is irrelevant. */
166 tree int_array_type_node
;
168 /* Type `wchar_t[SOMENUMBER]' or something like it.
169 Used when a wide string literal is created. */
171 tree wchar_array_type_node
;
173 /* type `int ()' -- used for implicit declaration of functions. */
175 tree default_function_type
;
177 /* function types `double (double)' and `double (double, double)', etc. */
179 tree double_ftype_double
, double_ftype_double_double
;
180 tree int_ftype_int
, long_ftype_long
;
182 /* Function type `void (void *, void *, int)' and similar ones */
184 tree void_ftype_ptr_ptr_int
, int_ftype_ptr_ptr_int
, void_ftype_ptr_int_int
;
186 /* Function type `char *(char *, char *)' and similar ones */
187 tree string_ftype_ptr_ptr
, int_ftype_string_string
;
189 /* Function type `int (const void *, const void *, size_t)' */
190 tree int_ftype_cptr_cptr_sizet
;
192 /* Two expressions that are constants with value zero.
193 The first is of type `int', the second of type `void *'. */
195 tree integer_zero_node
;
196 tree null_pointer_node
;
198 /* A node for the integer constant 1. */
200 tree integer_one_node
;
202 /* Nonzero if we have seen an invalid cross reference
203 to a struct, union, or enum, but not yet printed the message. */
205 tree pending_invalid_xref
;
206 /* File and line to appear in the eventual error message. */
207 char *pending_invalid_xref_file
;
208 int pending_invalid_xref_line
;
210 /* While defining an enum type, this is 1 plus the last enumerator
211 constant value. Note that will do not have to save this or `enum_overflow'
212 around nested function definition since such a definition could only
213 occur in an enum value expression and we don't use these variables in
216 static tree enum_next_value
;
218 /* Nonzero means that there was overflow computing enum_next_value. */
220 static int enum_overflow
;
222 /* Parsing a function declarator leaves a list of parameter names
223 or a chain or parameter decls here. */
225 static tree last_function_parms
;
227 /* Parsing a function declarator leaves here a chain of structure
228 and enum types declared in the parmlist. */
230 static tree last_function_parm_tags
;
232 /* After parsing the declarator that starts a function definition,
233 `start_function' puts here the list of parameter names or chain of decls.
234 `store_parm_decls' finds it here. */
236 static tree current_function_parms
;
238 /* Similar, for last_function_parm_tags. */
239 static tree current_function_parm_tags
;
241 /* Similar, for the file and line that the prototype came from if this is
242 an old-style definition. */
243 static char *current_function_prototype_file
;
244 static int current_function_prototype_line
;
246 /* A list (chain of TREE_LIST nodes) of all LABEL_DECLs in the function
247 that have names. Here so we can clear out their names' definitions
248 at the end of the function. */
250 static tree named_labels
;
252 /* A list of LABEL_DECLs from outer contexts that are currently shadowed. */
254 static tree shadowed_labels
;
256 /* Nonzero when store_parm_decls is called indicates a varargs function.
257 Value not meaningful after store_parm_decls. */
259 static int c_function_varargs
;
261 /* The FUNCTION_DECL for the function currently being compiled,
262 or 0 if between functions. */
263 tree current_function_decl
;
265 /* Set to 0 at beginning of a function definition, set to 1 if
266 a return statement that specifies a return value is seen. */
268 int current_function_returns_value
;
270 /* Set to 0 at beginning of a function definition, set to 1 if
271 a return statement with no argument is seen. */
273 int current_function_returns_null
;
275 /* Set to nonzero by `grokdeclarator' for a function
276 whose return type is defaulted, if warnings for this are desired. */
278 static int warn_about_return_type
;
280 /* Nonzero when starting a function declared `extern inline'. */
282 static int current_extern_inline
;
284 /* For each binding contour we allocate a binding_level structure
285 * which records the names defined in that contour.
288 * 1) one for each function definition,
289 * where internal declarations of the parameters appear.
290 * 2) one for each compound statement,
291 * to record its declarations.
293 * The current meaning of a name can be found by searching the levels from
294 * the current one out to the global one.
297 /* Note that the information in the `names' component of the global contour
298 is duplicated in the IDENTIFIER_GLOBAL_VALUEs of all identifiers. */
302 /* A chain of _DECL nodes for all variables, constants, functions,
303 and typedef types. These are in the reverse of the order supplied.
307 /* A list of structure, union and enum definitions,
308 * for looking up tag names.
309 * It is a chain of TREE_LIST nodes, each of whose TREE_PURPOSE is a name,
310 * or NULL_TREE; and whose TREE_VALUE is a RECORD_TYPE, UNION_TYPE,
311 * or ENUMERAL_TYPE node.
315 /* For each level, a list of shadowed outer-level local definitions
316 to be restored when this level is popped.
317 Each link is a TREE_LIST whose TREE_PURPOSE is an identifier and
318 whose TREE_VALUE is its old definition (a kind of ..._DECL node). */
321 /* For each level (except not the global one),
322 a chain of BLOCK nodes for all the levels
323 that were entered and exited one level down. */
326 /* The BLOCK node for this level, if one has been preallocated.
327 If 0, the BLOCK is allocated (if needed) when the level is popped. */
330 /* The binding level which this one is contained in (inherits from). */
331 struct binding_level
*level_chain
;
333 /* Nonzero for the level that holds the parameters of a function. */
336 /* Nonzero if this level "doesn't exist" for tags. */
337 char tag_transparent
;
339 /* Nonzero if sublevels of this level "don't exist" for tags.
340 This is set in the parm level of a function definition
341 while reading the function body, so that the outermost block
342 of the function body will be tag-transparent. */
343 char subblocks_tag_transparent
;
345 /* Nonzero means make a BLOCK for this level regardless of all else. */
348 /* Nonzero means make a BLOCK if this level has any subblocks. */
349 char keep_if_subblocks
;
351 /* Number of decls in `names' that have incomplete
352 structure or union types. */
355 /* A list of decls giving the (reversed) specified order of parms,
356 not including any forward-decls in the parmlist.
357 This is so we can put the parms in proper order for assign_parms. */
361 #define NULL_BINDING_LEVEL (struct binding_level *) NULL
363 /* The binding level currently in effect. */
365 static struct binding_level
*current_binding_level
;
367 /* A chain of binding_level structures awaiting reuse. */
369 static struct binding_level
*free_binding_level
;
371 /* The outermost binding level, for names of file scope.
372 This is created when the compiler is started and exists
373 through the entire run. */
375 static struct binding_level
*global_binding_level
;
377 /* Binding level structures are initialized by copying this one. */
379 static struct binding_level clear_binding_level
380 = {NULL
, NULL
, NULL
, NULL
, NULL
, NULL_BINDING_LEVEL
, 0, 0, 0, 0, 0, 0,
383 /* Nonzero means unconditionally make a BLOCK for the next level pushed. */
385 static int keep_next_level_flag
;
387 /* Nonzero means make a BLOCK for the next level pushed
388 if it has subblocks. */
390 static int keep_next_if_subblocks
;
392 /* The chain of outer levels of label scopes.
393 This uses the same data structure used for binding levels,
394 but it works differently: each link in the chain records
395 saved values of named_labels and shadowed_labels for
396 a label binding level outside the current one. */
398 static struct binding_level
*label_level_chain
;
400 /* Forward declarations. */
402 static tree
grokparms (), grokdeclarator ();
404 tree
builtin_function ();
405 void shadow_tag_warned ();
407 static tree
lookup_tag ();
408 static tree
lookup_tag_reverse ();
409 tree
lookup_name_current_level ();
410 static char *redeclaration_error_message ();
411 static void layout_array_type ();
413 /* C-specific option variables. */
415 /* Nonzero means allow type mismatches in conditional expressions;
416 just make their values `void'. */
418 int flag_cond_mismatch
;
420 /* Nonzero means give `double' the same size as `float'. */
422 int flag_short_double
;
424 /* Nonzero means don't recognize the keyword `asm'. */
428 /* Nonzero means don't recognize any builtin functions. */
432 /* Nonzero means don't recognize the non-ANSI builtin functions.
435 int flag_no_nonansi_builtin
;
437 /* Nonzero means do some things the same way PCC does. */
439 int flag_traditional
;
441 /* Nonzero means to allow single precision math even if we're generally
442 being traditional. */
443 int flag_allow_single_precision
= 0;
445 /* Nonzero means to treat bitfields as signed unless they say `unsigned'. */
447 int flag_signed_bitfields
= 1;
448 int explicit_flag_signed_bitfields
= 0;
450 /* Nonzero means handle `#ident' directives. 0 means ignore them. */
452 int flag_no_ident
= 0;
454 /* Nonzero means warn about implicit declarations. */
458 /* Nonzero means give string constants the type `const char *'
459 to get extra warnings from them. These warnings will be too numerous
460 to be useful, except in thoroughly ANSIfied programs. */
462 int warn_write_strings
;
464 /* Nonzero means warn about pointer casts that can drop a type qualifier
465 from the pointer target type. */
469 /* Nonzero means warn when casting a function call to a type that does
470 not match the return type (e.g. (float)sqrt() or (anything*)malloc()
471 when there is no previous declaration of sqrt or malloc. */
473 int warn_bad_function_cast
;
475 /* Warn about traditional constructs whose meanings changed in ANSI C. */
477 int warn_traditional
;
479 /* Nonzero means warn about sizeof(function) or addition/subtraction
480 of function pointers. */
482 int warn_pointer_arith
;
484 /* Nonzero means warn for non-prototype function decls
485 or non-prototyped defs without previous prototype. */
487 int warn_strict_prototypes
;
489 /* Nonzero means warn for any global function def
490 without separate previous prototype decl. */
492 int warn_missing_prototypes
;
494 /* Nonzero means warn for any global function def
495 without separate previous decl. */
497 int warn_missing_declarations
;
499 /* Nonzero means warn about multiple (redundant) decls for the same single
500 variable or function. */
502 int warn_redundant_decls
= 0;
504 /* Nonzero means warn about extern declarations of objects not at
505 file-scope level and about *all* declarations of functions (whether
506 extern or static) not at file-scope level. Note that we exclude
507 implicit function declarations. To get warnings about those, use
510 int warn_nested_externs
= 0;
512 /* Warn about *printf or *scanf format/argument anomalies. */
516 /* Warn about a subscript that has type char. */
518 int warn_char_subscripts
= 0;
520 /* Warn if a type conversion is done that might have confusing results. */
524 /* Warn if adding () is suggested. */
526 int warn_parentheses
;
528 /* Warn if initializer is not completely bracketed. */
530 int warn_missing_braces
;
532 /* Nonzero means `$' can be in an identifier.
533 See cccp.c for reasons why this breaks some obscure ANSI C programs. */
535 #ifndef DOLLARS_IN_IDENTIFIERS
536 #define DOLLARS_IN_IDENTIFIERS 1
538 int dollars_in_ident
= DOLLARS_IN_IDENTIFIERS
> 1;
540 /* Decode the string P as a language-specific option for C.
541 Return 1 if it is recognized (and handle it);
542 return 0 if not recognized. */
548 if (!strcmp (p
, "-ftraditional") || !strcmp (p
, "-traditional"))
550 flag_traditional
= 1;
551 flag_writable_strings
= 1;
552 #if DOLLARS_IN_IDENTIFIERS > 0
553 dollars_in_ident
= 1;
556 else if (!strcmp (p
, "-fallow-single-precision"))
557 flag_allow_single_precision
= 1;
558 else if (!strcmp (p
, "-fnotraditional") || !strcmp (p
, "-fno-traditional"))
560 flag_traditional
= 0;
561 flag_writable_strings
= 0;
562 dollars_in_ident
= DOLLARS_IN_IDENTIFIERS
> 1;
564 else if (!strcmp (p
, "-fdollars-in-identifiers"))
566 #if DOLLARS_IN_IDENTIFIERS > 0
567 dollars_in_ident
= 1;
570 else if (!strcmp (p
, "-fno-dollars-in-identifiers"))
571 dollars_in_ident
= 0;
572 else if (!strcmp (p
, "-fsigned-char"))
573 flag_signed_char
= 1;
574 else if (!strcmp (p
, "-funsigned-char"))
575 flag_signed_char
= 0;
576 else if (!strcmp (p
, "-fno-signed-char"))
577 flag_signed_char
= 0;
578 else if (!strcmp (p
, "-fno-unsigned-char"))
579 flag_signed_char
= 1;
580 else if (!strcmp (p
, "-fsigned-bitfields")
581 || !strcmp (p
, "-fno-unsigned-bitfields"))
583 flag_signed_bitfields
= 1;
584 explicit_flag_signed_bitfields
= 1;
586 else if (!strcmp (p
, "-funsigned-bitfields")
587 || !strcmp (p
, "-fno-signed-bitfields"))
589 flag_signed_bitfields
= 0;
590 explicit_flag_signed_bitfields
= 1;
592 else if (!strcmp (p
, "-fshort-enums"))
593 flag_short_enums
= 1;
594 else if (!strcmp (p
, "-fno-short-enums"))
595 flag_short_enums
= 0;
596 else if (!strcmp (p
, "-fcond-mismatch"))
597 flag_cond_mismatch
= 1;
598 else if (!strcmp (p
, "-fno-cond-mismatch"))
599 flag_cond_mismatch
= 0;
600 else if (!strcmp (p
, "-fshort-double"))
601 flag_short_double
= 1;
602 else if (!strcmp (p
, "-fno-short-double"))
603 flag_short_double
= 0;
604 else if (!strcmp (p
, "-fasm"))
606 else if (!strcmp (p
, "-fno-asm"))
608 else if (!strcmp (p
, "-fbuiltin"))
610 else if (!strcmp (p
, "-fno-builtin"))
612 else if (!strcmp (p
, "-fno-ident"))
614 else if (!strcmp (p
, "-fident"))
616 else if (!strcmp (p
, "-ansi"))
617 flag_no_asm
= 1, flag_no_nonansi_builtin
= 1, dollars_in_ident
= 0;
618 else if (!strcmp (p
, "-Wimplicit"))
620 else if (!strcmp (p
, "-Wno-implicit"))
622 else if (!strcmp (p
, "-Wwrite-strings"))
623 warn_write_strings
= 1;
624 else if (!strcmp (p
, "-Wno-write-strings"))
625 warn_write_strings
= 0;
626 else if (!strcmp (p
, "-Wcast-qual"))
628 else if (!strcmp (p
, "-Wno-cast-qual"))
630 else if (!strcmp (p
, "-Wbad-function-cast"))
631 warn_bad_function_cast
= 1;
632 else if (!strcmp (p
, "-Wno-bad-function-cast"))
633 warn_bad_function_cast
= 0;
634 else if (!strcmp (p
, "-Wpointer-arith"))
635 warn_pointer_arith
= 1;
636 else if (!strcmp (p
, "-Wno-pointer-arith"))
637 warn_pointer_arith
= 0;
638 else if (!strcmp (p
, "-Wstrict-prototypes"))
639 warn_strict_prototypes
= 1;
640 else if (!strcmp (p
, "-Wno-strict-prototypes"))
641 warn_strict_prototypes
= 0;
642 else if (!strcmp (p
, "-Wmissing-prototypes"))
643 warn_missing_prototypes
= 1;
644 else if (!strcmp (p
, "-Wno-missing-prototypes"))
645 warn_missing_prototypes
= 0;
646 else if (!strcmp (p
, "-Wmissing-declarations"))
647 warn_missing_declarations
= 1;
648 else if (!strcmp (p
, "-Wno-missing-declarations"))
649 warn_missing_declarations
= 0;
650 else if (!strcmp (p
, "-Wredundant-decls"))
651 warn_redundant_decls
= 1;
652 else if (!strcmp (p
, "-Wno-redundant-decls"))
653 warn_redundant_decls
= 0;
654 else if (!strcmp (p
, "-Wnested-externs"))
655 warn_nested_externs
= 1;
656 else if (!strcmp (p
, "-Wno-nested-externs"))
657 warn_nested_externs
= 0;
658 else if (!strcmp (p
, "-Wtraditional"))
659 warn_traditional
= 1;
660 else if (!strcmp (p
, "-Wno-traditional"))
661 warn_traditional
= 0;
662 else if (!strcmp (p
, "-Wformat"))
664 else if (!strcmp (p
, "-Wno-format"))
666 else if (!strcmp (p
, "-Wchar-subscripts"))
667 warn_char_subscripts
= 1;
668 else if (!strcmp (p
, "-Wno-char-subscripts"))
669 warn_char_subscripts
= 0;
670 else if (!strcmp (p
, "-Wconversion"))
672 else if (!strcmp (p
, "-Wno-conversion"))
674 else if (!strcmp (p
, "-Wparentheses"))
675 warn_parentheses
= 1;
676 else if (!strcmp (p
, "-Wno-parentheses"))
677 warn_parentheses
= 0;
678 else if (!strcmp (p
, "-Wreturn-type"))
679 warn_return_type
= 1;
680 else if (!strcmp (p
, "-Wno-return-type"))
681 warn_return_type
= 0;
682 else if (!strcmp (p
, "-Wcomment"))
683 ; /* cpp handles this one. */
684 else if (!strcmp (p
, "-Wno-comment"))
685 ; /* cpp handles this one. */
686 else if (!strcmp (p
, "-Wcomments"))
687 ; /* cpp handles this one. */
688 else if (!strcmp (p
, "-Wno-comments"))
689 ; /* cpp handles this one. */
690 else if (!strcmp (p
, "-Wtrigraphs"))
691 ; /* cpp handles this one. */
692 else if (!strcmp (p
, "-Wno-trigraphs"))
693 ; /* cpp handles this one. */
694 else if (!strcmp (p
, "-Wimport"))
695 ; /* cpp handles this one. */
696 else if (!strcmp (p
, "-Wno-import"))
697 ; /* cpp handles this one. */
698 else if (!strcmp (p
, "-Wmissing-braces"))
699 warn_missing_braces
= 1;
700 else if (!strcmp (p
, "-Wno-missing-braces"))
701 warn_missing_braces
= 0;
702 else if (!strcmp (p
, "-Wall"))
705 /* We save the value of warn_uninitialized, since if they put
706 -Wuninitialized on the command line, we need to generate a
707 warning about not using it without also specifying -O. */
708 if (warn_uninitialized
!= 1)
709 warn_uninitialized
= 2;
711 warn_return_type
= 1;
715 warn_char_subscripts
= 1;
716 warn_parentheses
= 1;
717 warn_missing_braces
= 1;
725 /* Hooks for print_node. */
728 print_lang_decl (file
, node
, indent
)
736 print_lang_type (file
, node
, indent
)
744 print_lang_identifier (file
, node
, indent
)
749 print_node (file
, "global", IDENTIFIER_GLOBAL_VALUE (node
), indent
+ 4);
750 print_node (file
, "local", IDENTIFIER_LOCAL_VALUE (node
), indent
+ 4);
751 print_node (file
, "label", IDENTIFIER_LABEL_VALUE (node
), indent
+ 4);
752 print_node (file
, "implicit", IDENTIFIER_IMPLICIT_DECL (node
), indent
+ 4);
753 print_node (file
, "error locus", IDENTIFIER_ERROR_LOCUS (node
), indent
+ 4);
754 print_node (file
, "limbo value", IDENTIFIER_LIMBO_VALUE (node
), indent
+ 4);
757 /* Hook called at end of compilation to assume 1 elt
758 for a top-level array decl that wasn't complete before. */
761 finish_incomplete_decl (decl
)
764 if (TREE_CODE (decl
) == VAR_DECL
&& TREE_TYPE (decl
) != error_mark_node
)
766 tree type
= TREE_TYPE (decl
);
767 if (TREE_CODE (type
) == ARRAY_TYPE
768 && TYPE_DOMAIN (type
) == 0
769 && TREE_CODE (decl
) != TYPE_DECL
)
771 complete_array_type (type
, NULL_TREE
, 1);
773 layout_decl (decl
, 0);
778 /* Create a new `struct binding_level'. */
781 struct binding_level
*
782 make_binding_level ()
785 return (struct binding_level
*) xmalloc (sizeof (struct binding_level
));
788 /* Nonzero if we are currently in the global binding level. */
793 return current_binding_level
== global_binding_level
;
799 keep_next_level_flag
= 1;
802 /* Nonzero if the current level needs to have a BLOCK made. */
807 return ((current_binding_level
->keep_if_subblocks
808 && current_binding_level
->blocks
!= 0)
809 || current_binding_level
->keep
810 || current_binding_level
->names
!= 0
811 || (current_binding_level
->tags
!= 0
812 && !current_binding_level
->tag_transparent
));
815 /* Identify this binding level as a level of parameters.
816 DEFINITION_FLAG is 1 for a definition, 0 for a declaration.
817 But it turns out there is no way to pass the right value for
818 DEFINITION_FLAG, so we ignore it. */
821 declare_parm_level (definition_flag
)
824 current_binding_level
->parm_flag
= 1;
827 /* Nonzero if currently making parm declarations. */
832 return current_binding_level
->parm_flag
;
835 /* Enter a new binding level.
836 If TAG_TRANSPARENT is nonzero, do so only for the name space of variables,
837 not for that of tags. */
840 pushlevel (tag_transparent
)
843 register struct binding_level
*newlevel
= NULL_BINDING_LEVEL
;
845 /* If this is the top level of a function,
846 just make sure that NAMED_LABELS is 0. */
848 if (current_binding_level
== global_binding_level
)
853 /* Reuse or create a struct for this binding level. */
855 if (free_binding_level
)
857 newlevel
= free_binding_level
;
858 free_binding_level
= free_binding_level
->level_chain
;
862 newlevel
= make_binding_level ();
865 /* Add this level to the front of the chain (stack) of levels that
868 *newlevel
= clear_binding_level
;
869 newlevel
->tag_transparent
871 || (current_binding_level
872 ? current_binding_level
->subblocks_tag_transparent
874 newlevel
->level_chain
= current_binding_level
;
875 current_binding_level
= newlevel
;
876 newlevel
->keep
= keep_next_level_flag
;
877 keep_next_level_flag
= 0;
878 newlevel
->keep_if_subblocks
= keep_next_if_subblocks
;
879 keep_next_if_subblocks
= 0;
882 /* Exit a binding level.
883 Pop the level off, and restore the state of the identifier-decl mappings
884 that were in effect when this level was entered.
886 If KEEP is nonzero, this level had explicit declarations, so
887 and create a "block" (a BLOCK node) for the level
888 to record its declarations and subblocks for symbol table output.
890 If FUNCTIONBODY is nonzero, this level is the body of a function,
891 so create a block as if KEEP were set and also clear out all
894 If REVERSE is nonzero, reverse the order of decls before putting
895 them into the BLOCK. */
898 poplevel (keep
, reverse
, functionbody
)
904 /* The chain of decls was accumulated in reverse order.
905 Put it into forward order, just for cleanliness. */
907 tree tags
= current_binding_level
->tags
;
908 tree subblocks
= current_binding_level
->blocks
;
911 int block_previously_created
;
913 keep
|= current_binding_level
->keep
;
915 /* This warning is turned off because it causes warnings for
916 declarations like `extern struct foo *x'. */
918 /* Warn about incomplete structure types in this level. */
919 for (link
= tags
; link
; link
= TREE_CHAIN (link
))
920 if (TYPE_SIZE (TREE_VALUE (link
)) == 0)
922 tree type
= TREE_VALUE (link
);
924 switch (TREE_CODE (type
))
927 errmsg
= "`struct %s' incomplete in scope ending here";
930 errmsg
= "`union %s' incomplete in scope ending here";
933 errmsg
= "`enum %s' incomplete in scope ending here";
936 if (TREE_CODE (TYPE_NAME (type
)) == IDENTIFIER_NODE
)
937 error (errmsg
, IDENTIFIER_POINTER (TYPE_NAME (type
)));
939 /* If this type has a typedef-name, the TYPE_NAME is a TYPE_DECL. */
940 error (errmsg
, IDENTIFIER_POINTER (DECL_NAME (TYPE_NAME (type
))));
944 /* Get the decls in the order they were written.
945 Usually current_binding_level->names is in reverse order.
946 But parameter decls were previously put in forward order. */
949 current_binding_level
->names
950 = decls
= nreverse (current_binding_level
->names
);
952 decls
= current_binding_level
->names
;
954 /* Output any nested inline functions within this block
955 if they weren't already output. */
957 for (decl
= decls
; decl
; decl
= TREE_CHAIN (decl
))
958 if (TREE_CODE (decl
) == FUNCTION_DECL
959 && ! TREE_ASM_WRITTEN (decl
)
960 && DECL_INITIAL (decl
) != 0
961 && TREE_ADDRESSABLE (decl
))
963 /* If this decl was copied from a file-scope decl
964 on account of a block-scope extern decl,
965 propagate TREE_ADDRESSABLE to the file-scope decl. */
966 if (DECL_ABSTRACT_ORIGIN (decl
) != 0)
967 TREE_ADDRESSABLE (DECL_ABSTRACT_ORIGIN (decl
)) = 1;
970 push_function_context ();
971 output_inline_function (decl
);
972 pop_function_context ();
976 /* If there were any declarations or structure tags in that level,
977 or if this level is a function body,
978 create a BLOCK to record them for the life of this function. */
981 block_previously_created
= (current_binding_level
->this_block
!= 0);
982 if (block_previously_created
)
983 block
= current_binding_level
->this_block
;
984 else if (keep
|| functionbody
985 || (current_binding_level
->keep_if_subblocks
&& subblocks
!= 0))
986 block
= make_node (BLOCK
);
989 BLOCK_VARS (block
) = decls
;
990 BLOCK_TYPE_TAGS (block
) = tags
;
991 BLOCK_SUBBLOCKS (block
) = subblocks
;
992 remember_end_note (block
);
995 /* In each subblock, record that this is its superior. */
997 for (link
= subblocks
; link
; link
= TREE_CHAIN (link
))
998 BLOCK_SUPERCONTEXT (link
) = block
;
1000 /* Clear out the meanings of the local variables of this level. */
1002 for (link
= decls
; link
; link
= TREE_CHAIN (link
))
1004 if (DECL_NAME (link
) != 0)
1006 /* If the ident. was used or addressed via a local extern decl,
1007 don't forget that fact. */
1008 if (DECL_EXTERNAL (link
))
1010 if (TREE_USED (link
))
1011 TREE_USED (DECL_NAME (link
)) = 1;
1012 if (TREE_ADDRESSABLE (link
))
1013 TREE_ADDRESSABLE (DECL_ASSEMBLER_NAME (link
)) = 1;
1015 IDENTIFIER_LOCAL_VALUE (DECL_NAME (link
)) = 0;
1019 /* Restore all name-meanings of the outer levels
1020 that were shadowed by this level. */
1022 for (link
= current_binding_level
->shadowed
; link
; link
= TREE_CHAIN (link
))
1023 IDENTIFIER_LOCAL_VALUE (TREE_PURPOSE (link
)) = TREE_VALUE (link
);
1025 /* If the level being exited is the top level of a function,
1026 check over all the labels, and clear out the current
1027 (function local) meanings of their names. */
1031 /* If this is the top level block of a function,
1032 the vars are the function's parameters.
1033 Don't leave them in the BLOCK because they are
1034 found in the FUNCTION_DECL instead. */
1036 BLOCK_VARS (block
) = 0;
1038 /* Clear out the definitions of all label names,
1039 since their scopes end here,
1040 and add them to BLOCK_VARS. */
1042 for (link
= named_labels
; link
; link
= TREE_CHAIN (link
))
1044 register tree label
= TREE_VALUE (link
);
1046 if (DECL_INITIAL (label
) == 0)
1048 error_with_decl (label
, "label `%s' used but not defined");
1049 /* Avoid crashing later. */
1050 define_label (input_filename
, lineno
,
1053 else if (warn_unused
&& !TREE_USED (label
))
1054 warning_with_decl (label
, "label `%s' defined but not used");
1055 IDENTIFIER_LABEL_VALUE (DECL_NAME (label
)) = 0;
1057 /* Put the labels into the "variables" of the
1058 top-level block, so debugger can see them. */
1059 TREE_CHAIN (label
) = BLOCK_VARS (block
);
1060 BLOCK_VARS (block
) = label
;
1064 /* Pop the current level, and free the structure for reuse. */
1067 register struct binding_level
*level
= current_binding_level
;
1068 current_binding_level
= current_binding_level
->level_chain
;
1070 level
->level_chain
= free_binding_level
;
1071 free_binding_level
= level
;
1074 /* Dispose of the block that we just made inside some higher level. */
1076 DECL_INITIAL (current_function_decl
) = block
;
1079 if (!block_previously_created
)
1080 current_binding_level
->blocks
1081 = chainon (current_binding_level
->blocks
, block
);
1083 /* If we did not make a block for the level just exited,
1084 any blocks made for inner levels
1085 (since they cannot be recorded as subblocks in that level)
1086 must be carried forward so they will later become subblocks
1087 of something else. */
1089 current_binding_level
->blocks
1090 = chainon (current_binding_level
->blocks
, subblocks
);
1092 /* Set the TYPE_CONTEXTs for all of the tagged types belonging to this
1093 binding contour so that they point to the appropriate construct, i.e.
1094 either to the current FUNCTION_DECL node, or else to the BLOCK node
1095 we just constructed.
1097 Note that for tagged types whose scope is just the formal parameter
1098 list for some function type specification, we can't properly set
1099 their TYPE_CONTEXTs here, because we don't have a pointer to the
1100 appropriate FUNCTION_TYPE node readily available to us. For those
1101 cases, the TYPE_CONTEXTs of the relevant tagged type nodes get set
1102 in `grokdeclarator' as soon as we have created the FUNCTION_TYPE
1103 node which will represent the "scope" for these "parameter list local"
1108 for (link
= tags
; link
; link
= TREE_CHAIN (link
))
1109 TYPE_CONTEXT (TREE_VALUE (link
)) = current_function_decl
;
1111 for (link
= tags
; link
; link
= TREE_CHAIN (link
))
1112 TYPE_CONTEXT (TREE_VALUE (link
)) = block
;
1115 TREE_USED (block
) = 1;
1119 /* Delete the node BLOCK from the current binding level.
1120 This is used for the block inside a stmt expr ({...})
1121 so that the block can be reinserted where appropriate. */
1124 delete_block (block
)
1128 if (current_binding_level
->blocks
== block
)
1129 current_binding_level
->blocks
= TREE_CHAIN (block
);
1130 for (t
= current_binding_level
->blocks
; t
;)
1132 if (TREE_CHAIN (t
) == block
)
1133 TREE_CHAIN (t
) = TREE_CHAIN (block
);
1137 TREE_CHAIN (block
) = NULL
;
1138 /* Clear TREE_USED which is always set by poplevel.
1139 The flag is set again if insert_block is called. */
1140 TREE_USED (block
) = 0;
1143 /* Insert BLOCK at the end of the list of subblocks of the
1144 current binding level. This is used when a BIND_EXPR is expanded,
1145 to handle the BLOCK node inside the BIND_EXPR. */
1148 insert_block (block
)
1151 TREE_USED (block
) = 1;
1152 current_binding_level
->blocks
1153 = chainon (current_binding_level
->blocks
, block
);
1156 /* Set the BLOCK node for the innermost scope
1157 (the one we are currently in). */
1161 register tree block
;
1163 current_binding_level
->this_block
= block
;
1169 register struct binding_level
*newlevel
;
1171 /* Reuse or create a struct for this binding level. */
1173 if (free_binding_level
)
1175 newlevel
= free_binding_level
;
1176 free_binding_level
= free_binding_level
->level_chain
;
1180 newlevel
= make_binding_level ();
1183 /* Add this level to the front of the chain (stack) of label levels. */
1185 newlevel
->level_chain
= label_level_chain
;
1186 label_level_chain
= newlevel
;
1188 newlevel
->names
= named_labels
;
1189 newlevel
->shadowed
= shadowed_labels
;
1191 shadowed_labels
= 0;
1197 register struct binding_level
*level
= label_level_chain
;
1200 /* Clear out the definitions of the declared labels in this level.
1201 Leave in the list any ordinary, non-declared labels. */
1202 for (link
= named_labels
, prev
= 0; link
;)
1204 if (C_DECLARED_LABEL_FLAG (TREE_VALUE (link
)))
1206 if (DECL_SOURCE_LINE (TREE_VALUE (link
)) == 0)
1208 error_with_decl (TREE_VALUE (link
),
1209 "label `%s' used but not defined");
1210 /* Avoid crashing later. */
1211 define_label (input_filename
, lineno
,
1212 DECL_NAME (TREE_VALUE (link
)));
1214 else if (warn_unused
&& !TREE_USED (TREE_VALUE (link
)))
1215 warning_with_decl (TREE_VALUE (link
),
1216 "label `%s' defined but not used");
1217 IDENTIFIER_LABEL_VALUE (DECL_NAME (TREE_VALUE (link
))) = 0;
1219 /* Delete this element from the list. */
1220 link
= TREE_CHAIN (link
);
1222 TREE_CHAIN (prev
) = link
;
1224 named_labels
= link
;
1229 link
= TREE_CHAIN (link
);
1233 /* Bring back all the labels that were shadowed. */
1234 for (link
= shadowed_labels
; link
; link
= TREE_CHAIN (link
))
1235 if (DECL_NAME (TREE_VALUE (link
)) != 0)
1236 IDENTIFIER_LABEL_VALUE (DECL_NAME (TREE_VALUE (link
)))
1237 = TREE_VALUE (link
);
1239 named_labels
= chainon (named_labels
, level
->names
);
1240 shadowed_labels
= level
->shadowed
;
1242 /* Pop the current level, and free the structure for reuse. */
1243 label_level_chain
= label_level_chain
->level_chain
;
1244 level
->level_chain
= free_binding_level
;
1245 free_binding_level
= level
;
1248 /* Push a definition or a declaration of struct, union or enum tag "name".
1249 "type" should be the type node.
1250 We assume that the tag "name" is not already defined.
1252 Note that the definition may really be just a forward reference.
1253 In that case, the TYPE_SIZE will be zero. */
1256 pushtag (name
, type
)
1259 register struct binding_level
*b
;
1261 /* Find the proper binding level for this type tag. */
1263 for (b
= current_binding_level
; b
->tag_transparent
; b
= b
->level_chain
)
1268 /* Record the identifier as the type's name if it has none. */
1270 if (TYPE_NAME (type
) == 0)
1271 TYPE_NAME (type
) = name
;
1274 if (b
== global_binding_level
)
1275 b
->tags
= perm_tree_cons (name
, type
, b
->tags
);
1277 b
->tags
= saveable_tree_cons (name
, type
, b
->tags
);
1279 /* Create a fake NULL-named TYPE_DECL node whose TREE_TYPE will be the
1280 tagged type we just added to the current binding level. This fake
1281 NULL-named TYPE_DECL node helps dwarfout.c to know when it needs
1282 to output a representation of a tagged type, and it also gives
1283 us a convenient place to record the "scope start" address for the
1286 TYPE_STUB_DECL (type
) = pushdecl (build_decl (TYPE_DECL
, NULL_TREE
, type
));
1289 /* Handle when a new declaration NEWDECL
1290 has the same name as an old one OLDDECL
1291 in the same binding contour.
1292 Prints an error message if appropriate.
1294 If safely possible, alter OLDDECL to look like NEWDECL, and return 1.
1295 Otherwise, return 0. */
1298 duplicate_decls (newdecl
, olddecl
)
1299 register tree newdecl
, olddecl
;
1301 int types_match
= comptypes (TREE_TYPE (newdecl
), TREE_TYPE (olddecl
));
1302 int new_is_definition
= (TREE_CODE (newdecl
) == FUNCTION_DECL
1303 && DECL_INITIAL (newdecl
) != 0);
1304 tree oldtype
= TREE_TYPE (olddecl
);
1305 tree newtype
= TREE_TYPE (newdecl
);
1308 if (TREE_CODE (newtype
) == ERROR_MARK
1309 || TREE_CODE (oldtype
) == ERROR_MARK
)
1312 /* New decl is completely inconsistent with the old one =>
1313 tell caller to replace the old one.
1314 This is always an error except in the case of shadowing a builtin. */
1315 if (TREE_CODE (olddecl
) != TREE_CODE (newdecl
))
1317 if (TREE_CODE (olddecl
) == FUNCTION_DECL
1318 && (DECL_BUILT_IN (olddecl
)
1319 || DECL_BUILT_IN_NONANSI (olddecl
)))
1321 /* If you declare a built-in or predefined function name as static,
1322 the old definition is overridden,
1323 but optionally warn this was a bad choice of name. */
1324 if (!TREE_PUBLIC (newdecl
))
1328 else if (DECL_BUILT_IN (olddecl
))
1329 warning_with_decl (newdecl
, "shadowing built-in function `%s'");
1331 warning_with_decl (newdecl
, "shadowing library function `%s'");
1333 /* Likewise, if the built-in is not ansi, then programs can
1334 override it even globally without an error. */
1335 else if (! DECL_BUILT_IN (olddecl
))
1336 warning_with_decl (newdecl
,
1337 "library function `%s' declared as non-function");
1339 else if (DECL_BUILT_IN_NONANSI (olddecl
))
1340 warning_with_decl (newdecl
,
1341 "built-in function `%s' declared as non-function");
1343 warning_with_decl (newdecl
,
1344 "built-in function `%s' declared as non-function");
1348 error_with_decl (newdecl
, "`%s' redeclared as different kind of symbol");
1349 error_with_decl (olddecl
, "previous declaration of `%s'");
1355 /* For real parm decl following a forward decl,
1356 return 1 so old decl will be reused. */
1357 if (types_match
&& TREE_CODE (newdecl
) == PARM_DECL
1358 && TREE_ASM_WRITTEN (olddecl
) && ! TREE_ASM_WRITTEN (newdecl
))
1361 /* The new declaration is the same kind of object as the old one.
1362 The declarations may partially match. Print warnings if they don't
1363 match enough. Ultimately, copy most of the information from the new
1364 decl to the old one, and keep using the old one. */
1366 if (flag_traditional
&& TREE_CODE (newdecl
) == FUNCTION_DECL
1367 && IDENTIFIER_IMPLICIT_DECL (DECL_NAME (newdecl
)) == olddecl
1368 && DECL_INITIAL (olddecl
) == 0)
1369 /* If -traditional, avoid error for redeclaring fcn
1370 after implicit decl. */
1372 else if (TREE_CODE (olddecl
) == FUNCTION_DECL
1373 && DECL_BUILT_IN (olddecl
))
1375 /* A function declaration for a built-in function. */
1376 if (!TREE_PUBLIC (newdecl
))
1378 /* If you declare a built-in function name as static, the
1379 built-in definition is overridden,
1380 but optionally warn this was a bad choice of name. */
1382 warning_with_decl (newdecl
, "shadowing built-in function `%s'");
1383 /* Discard the old built-in function. */
1386 else if (!types_match
)
1388 /* Accept the return type of the new declaration if same modes. */
1389 tree oldreturntype
= TREE_TYPE (TREE_TYPE (olddecl
));
1390 tree newreturntype
= TREE_TYPE (TREE_TYPE (newdecl
));
1391 if (TYPE_MODE (oldreturntype
) == TYPE_MODE (newreturntype
))
1393 /* Function types may be shared, so we can't just modify
1394 the return type of olddecl's function type. */
1396 = build_function_type (newreturntype
,
1397 TYPE_ARG_TYPES (TREE_TYPE (olddecl
)));
1399 types_match
= comptypes (TREE_TYPE (newdecl
), newtype
);
1401 TREE_TYPE (olddecl
) = newtype
;
1403 /* Accept harmless mismatch in first argument type also.
1405 if (TYPE_ARG_TYPES (TREE_TYPE (newdecl
)) != 0
1406 && TYPE_ARG_TYPES (TREE_TYPE (olddecl
)) != 0
1407 && TREE_VALUE (TYPE_ARG_TYPES (TREE_TYPE (newdecl
))) != 0
1408 && TREE_VALUE (TYPE_ARG_TYPES (TREE_TYPE (olddecl
))) != 0
1409 && (TYPE_MODE (TREE_VALUE (TYPE_ARG_TYPES (TREE_TYPE (newdecl
))))
1411 TYPE_MODE (TREE_VALUE (TYPE_ARG_TYPES (TREE_TYPE (olddecl
))))))
1413 /* Function types may be shared, so we can't just modify
1414 the return type of olddecl's function type. */
1416 = build_function_type (TREE_TYPE (TREE_TYPE (olddecl
)),
1417 tree_cons (NULL_TREE
,
1418 TREE_VALUE (TYPE_ARG_TYPES (TREE_TYPE (newdecl
))),
1419 TREE_CHAIN (TYPE_ARG_TYPES (TREE_TYPE (olddecl
)))));
1421 types_match
= comptypes (TREE_TYPE (newdecl
), newtype
);
1423 TREE_TYPE (olddecl
) = newtype
;
1428 /* If types don't match for a built-in, throw away the built-in. */
1429 warning_with_decl (newdecl
, "conflicting types for built-in function `%s'");
1433 else if (TREE_CODE (olddecl
) == FUNCTION_DECL
1434 && DECL_SOURCE_LINE (olddecl
) == 0)
1436 /* A function declaration for a predeclared function
1437 that isn't actually built in. */
1438 if (!TREE_PUBLIC (newdecl
))
1440 /* If you declare it as static, the
1441 default definition is overridden. */
1444 else if (!types_match
)
1446 /* If the types don't match, preserve volatility indication.
1447 Later on, we will discard everything else about the
1448 default declaration. */
1449 TREE_THIS_VOLATILE (newdecl
) |= TREE_THIS_VOLATILE (olddecl
);
1452 /* Permit char *foo () to match void *foo (...) if not pedantic,
1453 if one of them came from a system header file. */
1454 else if (!types_match
1455 && TREE_CODE (olddecl
) == FUNCTION_DECL
1456 && TREE_CODE (newdecl
) == FUNCTION_DECL
1457 && TREE_CODE (TREE_TYPE (oldtype
)) == POINTER_TYPE
1458 && TREE_CODE (TREE_TYPE (newtype
)) == POINTER_TYPE
1459 && (DECL_IN_SYSTEM_HEADER (olddecl
)
1460 || DECL_IN_SYSTEM_HEADER (newdecl
))
1461 && ((TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (newtype
))) == void_type_node
1462 && TYPE_ARG_TYPES (oldtype
) == 0
1463 && self_promoting_args_p (TYPE_ARG_TYPES (newtype
))
1464 && TREE_TYPE (TREE_TYPE (oldtype
)) == char_type_node
)
1466 (TREE_TYPE (TREE_TYPE (newtype
)) == char_type_node
1467 && TYPE_ARG_TYPES (newtype
) == 0
1468 && self_promoting_args_p (TYPE_ARG_TYPES (oldtype
))
1469 && TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (oldtype
))) == void_type_node
)))
1472 pedwarn_with_decl (newdecl
, "conflicting types for `%s'");
1473 /* Make sure we keep void * as ret type, not char *. */
1474 if (TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (oldtype
))) == void_type_node
)
1475 TREE_TYPE (newdecl
) = newtype
= oldtype
;
1477 /* Set DECL_IN_SYSTEM_HEADER, so that if we see another declaration
1478 we will come back here again. */
1479 DECL_IN_SYSTEM_HEADER (newdecl
) = 1;
1481 else if (!types_match
1482 /* Permit char *foo (int, ...); followed by char *foo ();
1484 && ! (TREE_CODE (olddecl
) == FUNCTION_DECL
1486 /* Return types must still match. */
1487 && comptypes (TREE_TYPE (oldtype
),
1488 TREE_TYPE (newtype
))
1489 && TYPE_ARG_TYPES (newtype
) == 0))
1491 error_with_decl (newdecl
, "conflicting types for `%s'");
1492 /* Check for function type mismatch
1493 involving an empty arglist vs a nonempty one. */
1494 if (TREE_CODE (olddecl
) == FUNCTION_DECL
1495 && comptypes (TREE_TYPE (oldtype
),
1496 TREE_TYPE (newtype
))
1497 && ((TYPE_ARG_TYPES (oldtype
) == 0
1498 && DECL_INITIAL (olddecl
) == 0)
1500 (TYPE_ARG_TYPES (newtype
) == 0
1501 && DECL_INITIAL (newdecl
) == 0)))
1503 /* Classify the problem further. */
1504 register tree t
= TYPE_ARG_TYPES (oldtype
);
1506 t
= TYPE_ARG_TYPES (newtype
);
1507 for (; t
; t
= TREE_CHAIN (t
))
1509 register tree type
= TREE_VALUE (t
);
1511 if (TREE_CHAIN (t
) == 0
1512 && TYPE_MAIN_VARIANT (type
) != void_type_node
)
1514 error ("A parameter list with an ellipsis can't match");
1515 error ("an empty parameter name list declaration.");
1519 if (TYPE_MAIN_VARIANT (type
) == float_type_node
1520 || C_PROMOTING_INTEGER_TYPE_P (type
))
1522 error ("An argument type that has a default promotion");
1523 error ("can't match an empty parameter name list declaration.");
1528 error_with_decl (olddecl
, "previous declaration of `%s'");
1532 errmsg
= redeclaration_error_message (newdecl
, olddecl
);
1535 error_with_decl (newdecl
, errmsg
);
1536 error_with_decl (olddecl
,
1537 ((DECL_INITIAL (olddecl
)
1538 && current_binding_level
== global_binding_level
)
1539 ? "`%s' previously defined here"
1540 : "`%s' previously declared here"));
1542 else if (TREE_CODE (olddecl
) == FUNCTION_DECL
1543 && DECL_INITIAL (olddecl
) != 0
1544 && TYPE_ARG_TYPES (oldtype
) == 0
1545 && TYPE_ARG_TYPES (newtype
) != 0)
1547 register tree type
, parm
;
1549 /* Prototype decl follows defn w/o prototype. */
1551 for (parm
= TYPE_ACTUAL_ARG_TYPES (oldtype
),
1552 type
= TYPE_ARG_TYPES (newtype
),
1554 (TYPE_MAIN_VARIANT (TREE_VALUE (parm
)) != void_type_node
1555 || TYPE_MAIN_VARIANT (TREE_VALUE (type
)) != void_type_node
);
1556 parm
= TREE_CHAIN (parm
), type
= TREE_CHAIN (type
), nargs
++)
1558 if (TYPE_MAIN_VARIANT (TREE_VALUE (parm
)) == void_type_node
1559 || TYPE_MAIN_VARIANT (TREE_VALUE (type
)) == void_type_node
)
1561 errmsg
= "prototype for `%s' follows and number of arguments";
1564 /* Type for passing arg must be consistent
1565 with that declared for the arg. */
1566 if (! comptypes (TREE_VALUE (parm
), TREE_VALUE (type
))
1567 /* If -traditional, allow `unsigned int' instead of `int'
1568 in the prototype. */
1569 && (! (flag_traditional
1570 && TYPE_MAIN_VARIANT (TREE_VALUE (parm
)) == integer_type_node
1571 && TYPE_MAIN_VARIANT (TREE_VALUE (type
)) == unsigned_type_node
)))
1573 errmsg
= "prototype for `%s' follows and argument %d";
1579 error_with_decl (newdecl
, errmsg
, nargs
);
1580 error_with_decl (olddecl
,
1581 "doesn't match non-prototype definition here");
1585 warning_with_decl (newdecl
, "prototype for `%s' follows");
1586 warning_with_decl (olddecl
, "non-prototype definition here");
1589 /* Warn about mismatches in various flags. */
1592 /* Warn if function is now inline
1593 but was previously declared not inline and has been called. */
1594 if (TREE_CODE (olddecl
) == FUNCTION_DECL
1595 && ! DECL_INLINE (olddecl
) && DECL_INLINE (newdecl
)
1596 && TREE_USED (olddecl
))
1597 warning_with_decl (newdecl
,
1598 "`%s' declared inline after being called");
1599 if (TREE_CODE (olddecl
) == FUNCTION_DECL
1600 && ! DECL_INLINE (olddecl
) && DECL_INLINE (newdecl
)
1601 && DECL_INITIAL (olddecl
) != 0)
1602 warning_with_decl (newdecl
,
1603 "`%s' declared inline after its definition");
1605 /* If pedantic, warn when static declaration follows a non-static
1606 declaration. Otherwise, do so only for functions. */
1607 if ((pedantic
|| TREE_CODE (olddecl
) == FUNCTION_DECL
)
1608 && TREE_PUBLIC (olddecl
)
1609 && !TREE_PUBLIC (newdecl
))
1610 warning_with_decl (newdecl
, "static declaration for `%s' follows non-static");
1612 /* Warn when const declaration follows a non-const
1613 declaration, but not for functions. */
1614 if (TREE_CODE (olddecl
) != FUNCTION_DECL
1615 && !TREE_READONLY (olddecl
)
1616 && TREE_READONLY (newdecl
))
1617 warning_with_decl (newdecl
, "const declaration for `%s' follows non-const");
1618 /* These bits are logically part of the type, for variables.
1619 But not for functions
1620 (where qualifiers are not valid ANSI anyway). */
1621 else if (pedantic
&& TREE_CODE (olddecl
) != FUNCTION_DECL
1622 && (TREE_READONLY (newdecl
) != TREE_READONLY (olddecl
)
1623 || TREE_THIS_VOLATILE (newdecl
) != TREE_THIS_VOLATILE (olddecl
)))
1624 pedwarn_with_decl (newdecl
, "type qualifiers for `%s' conflict with previous decl");
1628 /* Optionally warn about more than one declaration for the same name. */
1629 if (errmsg
== 0 && warn_redundant_decls
&& DECL_SOURCE_LINE (olddecl
) != 0
1630 /* Dont warn about a function declaration
1631 followed by a definition. */
1632 && !(TREE_CODE (newdecl
) == FUNCTION_DECL
&& DECL_INITIAL (newdecl
) != 0
1633 && DECL_INITIAL (olddecl
) == 0)
1634 /* Don't warn about extern decl followed by (tentative) definition. */
1635 && !(DECL_EXTERNAL (olddecl
) && ! DECL_EXTERNAL (newdecl
)))
1637 warning_with_decl (newdecl
, "redundant redeclaration of `%s' in same scope");
1638 warning_with_decl (olddecl
, "previous declaration of `%s'");
1641 /* Copy all the DECL_... slots specified in the new decl
1642 except for any that we copy here from the old type.
1644 Past this point, we don't change OLDTYPE and NEWTYPE
1645 even if we change the types of NEWDECL and OLDDECL. */
1649 /* Make sure we put the new type in the same obstack as the old ones.
1650 If the old types are not both in the same obstack, use the permanent
1652 if (TYPE_OBSTACK (oldtype
) == TYPE_OBSTACK (newtype
))
1653 push_obstacks (TYPE_OBSTACK (oldtype
), TYPE_OBSTACK (oldtype
));
1656 push_obstacks_nochange ();
1657 end_temporary_allocation ();
1660 /* Merge the data types specified in the two decls. */
1661 if (TREE_CODE (newdecl
) != FUNCTION_DECL
|| !DECL_BUILT_IN (olddecl
))
1663 = TREE_TYPE (olddecl
)
1664 = common_type (newtype
, oldtype
);
1666 /* Lay the type out, unless already done. */
1667 if (oldtype
!= TREE_TYPE (newdecl
))
1669 if (TREE_TYPE (newdecl
) != error_mark_node
)
1670 layout_type (TREE_TYPE (newdecl
));
1671 if (TREE_CODE (newdecl
) != FUNCTION_DECL
1672 && TREE_CODE (newdecl
) != TYPE_DECL
1673 && TREE_CODE (newdecl
) != CONST_DECL
)
1674 layout_decl (newdecl
, 0);
1678 /* Since the type is OLDDECL's, make OLDDECL's size go with. */
1679 DECL_SIZE (newdecl
) = DECL_SIZE (olddecl
);
1680 if (TREE_CODE (olddecl
) != FUNCTION_DECL
)
1681 if (DECL_ALIGN (olddecl
) > DECL_ALIGN (newdecl
))
1682 DECL_ALIGN (newdecl
) = DECL_ALIGN (olddecl
);
1685 /* Keep the old rtl since we can safely use it. */
1686 DECL_RTL (newdecl
) = DECL_RTL (olddecl
);
1688 /* Merge the type qualifiers. */
1689 if (DECL_BUILT_IN_NONANSI (olddecl
) && TREE_THIS_VOLATILE (olddecl
)
1690 && !TREE_THIS_VOLATILE (newdecl
))
1691 TREE_THIS_VOLATILE (olddecl
) = 0;
1692 if (TREE_READONLY (newdecl
))
1693 TREE_READONLY (olddecl
) = 1;
1694 if (TREE_THIS_VOLATILE (newdecl
))
1696 TREE_THIS_VOLATILE (olddecl
) = 1;
1697 if (TREE_CODE (newdecl
) == VAR_DECL
)
1698 make_var_volatile (newdecl
);
1701 /* Keep source location of definition rather than declaration. */
1702 if (DECL_INITIAL (newdecl
) == 0 && DECL_INITIAL (olddecl
) != 0)
1704 DECL_SOURCE_LINE (newdecl
) = DECL_SOURCE_LINE (olddecl
);
1705 DECL_SOURCE_FILE (newdecl
) = DECL_SOURCE_FILE (olddecl
);
1708 /* Merge the unused-warning information. */
1709 if (DECL_IN_SYSTEM_HEADER (olddecl
))
1710 DECL_IN_SYSTEM_HEADER (newdecl
) = 1;
1711 else if (DECL_IN_SYSTEM_HEADER (newdecl
))
1712 DECL_IN_SYSTEM_HEADER (olddecl
) = 1;
1714 /* Merge the initialization information. */
1715 if (DECL_INITIAL (newdecl
) == 0)
1716 DECL_INITIAL (newdecl
) = DECL_INITIAL (olddecl
);
1718 /* Merge the section attribute.
1719 We want to issue an error if the sections conflict but that must be
1720 done later in decl_attributes since we are called before attributes
1722 if (DECL_SECTION_NAME (newdecl
) == NULL_TREE
)
1723 DECL_SECTION_NAME (newdecl
) = DECL_SECTION_NAME (olddecl
);
1727 /* If cannot merge, then use the new type and qualifiers,
1728 and don't preserve the old rtl. */
1731 TREE_TYPE (olddecl
) = TREE_TYPE (newdecl
);
1732 TREE_READONLY (olddecl
) = TREE_READONLY (newdecl
);
1733 TREE_THIS_VOLATILE (olddecl
) = TREE_THIS_VOLATILE (newdecl
);
1734 TREE_SIDE_EFFECTS (olddecl
) = TREE_SIDE_EFFECTS (newdecl
);
1737 /* Merge the storage class information. */
1738 /* For functions, static overrides non-static. */
1739 if (TREE_CODE (newdecl
) == FUNCTION_DECL
)
1741 TREE_PUBLIC (newdecl
) &= TREE_PUBLIC (olddecl
);
1742 /* This is since we don't automatically
1743 copy the attributes of NEWDECL into OLDDECL. */
1744 TREE_PUBLIC (olddecl
) = TREE_PUBLIC (newdecl
);
1745 /* If this clears `static', clear it in the identifier too. */
1746 if (! TREE_PUBLIC (olddecl
))
1747 TREE_PUBLIC (DECL_NAME (olddecl
)) = 0;
1749 if (DECL_EXTERNAL (newdecl
))
1751 TREE_STATIC (newdecl
) = TREE_STATIC (olddecl
);
1752 DECL_EXTERNAL (newdecl
) = DECL_EXTERNAL (olddecl
);
1753 /* An extern decl does not override previous storage class. */
1754 TREE_PUBLIC (newdecl
) = TREE_PUBLIC (olddecl
);
1758 TREE_STATIC (olddecl
) = TREE_STATIC (newdecl
);
1759 TREE_PUBLIC (olddecl
) = TREE_PUBLIC (newdecl
);
1762 /* If either decl says `inline', this fn is inline,
1763 unless its definition was passed already. */
1764 if (DECL_INLINE (newdecl
) && DECL_INITIAL (olddecl
) == 0)
1765 DECL_INLINE (olddecl
) = 1;
1766 DECL_INLINE (newdecl
) = DECL_INLINE (olddecl
);
1768 /* Get rid of any built-in function if new arg types don't match it
1769 or if we have a function definition. */
1770 if (TREE_CODE (newdecl
) == FUNCTION_DECL
1771 && DECL_BUILT_IN (olddecl
)
1772 && (!types_match
|| new_is_definition
))
1774 TREE_TYPE (olddecl
) = TREE_TYPE (newdecl
);
1775 DECL_BUILT_IN (olddecl
) = 0;
1778 /* If redeclaring a builtin function, and not a definition,
1780 Also preserve various other info from the definition. */
1781 if (TREE_CODE (newdecl
) == FUNCTION_DECL
&& !new_is_definition
)
1783 if (DECL_BUILT_IN (olddecl
))
1785 DECL_BUILT_IN (newdecl
) = 1;
1786 DECL_FUNCTION_CODE (newdecl
) = DECL_FUNCTION_CODE (olddecl
);
1789 DECL_FRAME_SIZE (newdecl
) = DECL_FRAME_SIZE (olddecl
);
1791 DECL_RESULT (newdecl
) = DECL_RESULT (olddecl
);
1792 DECL_INITIAL (newdecl
) = DECL_INITIAL (olddecl
);
1793 DECL_SAVED_INSNS (newdecl
) = DECL_SAVED_INSNS (olddecl
);
1794 DECL_ARGUMENTS (newdecl
) = DECL_ARGUMENTS (olddecl
);
1797 /* Copy most of the decl-specific fields of NEWDECL into OLDDECL.
1798 But preserve OLDdECL's DECL_UID. */
1800 register unsigned olddecl_uid
= DECL_UID (olddecl
);
1802 bcopy ((char *) newdecl
+ sizeof (struct tree_common
),
1803 (char *) olddecl
+ sizeof (struct tree_common
),
1804 sizeof (struct tree_decl
) - sizeof (struct tree_common
));
1805 DECL_UID (olddecl
) = olddecl_uid
;
1811 /* Record a decl-node X as belonging to the current lexical scope.
1812 Check for errors (such as an incompatible declaration for the same
1813 name already seen in the same scope).
1815 Returns either X or an old decl for the same name.
1816 If an old decl is returned, it may have been smashed
1817 to agree with what X says. */
1824 register tree name
= DECL_NAME (x
);
1825 register struct binding_level
*b
= current_binding_level
;
1827 DECL_CONTEXT (x
) = current_function_decl
;
1828 /* A local extern declaration for a function doesn't constitute nesting.
1829 A local auto declaration does, since it's a forward decl
1830 for a nested function coming later. */
1831 if (TREE_CODE (x
) == FUNCTION_DECL
&& DECL_INITIAL (x
) == 0
1832 && DECL_EXTERNAL (x
))
1833 DECL_CONTEXT (x
) = 0;
1835 if (warn_nested_externs
&& DECL_EXTERNAL (x
) && b
!= global_binding_level
1836 && x
!= IDENTIFIER_IMPLICIT_DECL (name
)
1837 /* Don't print error messages for __FUNCTION__ and __PRETTY_FUNCTION__ */
1838 && !DECL_IN_SYSTEM_HEADER (x
))
1839 warning ("nested extern declaration of `%s'", IDENTIFIER_POINTER (name
));
1846 /* Don't type check externs here when -traditional. This is so that
1847 code with conflicting declarations inside blocks will get warnings
1848 not errors. X11 for instance depends on this. */
1849 if (DECL_EXTERNAL (x
) && TREE_PUBLIC (x
) && ! flag_traditional
)
1850 t
= lookup_name_current_level_global (name
);
1852 t
= lookup_name_current_level (name
);
1853 if (t
!= 0 && t
== error_mark_node
)
1854 /* error_mark_node is 0 for a while during initialization! */
1857 error_with_decl (x
, "`%s' used prior to declaration");
1862 file
= DECL_SOURCE_FILE (t
);
1863 line
= DECL_SOURCE_LINE (t
);
1866 if (t
!= 0 && duplicate_decls (x
, t
))
1868 if (TREE_CODE (t
) == PARM_DECL
)
1870 /* Don't allow more than one "real" duplicate
1871 of a forward parm decl. */
1872 TREE_ASM_WRITTEN (t
) = TREE_ASM_WRITTEN (x
);
1875 /* If this decl is `static' and an implicit decl was seen previously,
1876 warn. But don't complain if -traditional,
1877 since traditional compilers don't complain. */
1878 if (!flag_traditional
&& TREE_PUBLIC (name
)
1879 && ! TREE_PUBLIC (x
) && ! DECL_EXTERNAL (x
)
1880 /* We used to warn also for explicit extern followed by static,
1881 but sometimes you need to do it that way. */
1882 && IDENTIFIER_IMPLICIT_DECL (name
) != 0)
1884 pedwarn ("`%s' was declared implicitly `extern' and later `static'",
1885 IDENTIFIER_POINTER (name
));
1886 pedwarn_with_file_and_line (file
, line
,
1887 "previous declaration of `%s'",
1888 IDENTIFIER_POINTER (name
));
1891 /* If this is a global decl, and there exists a conflicting local
1892 decl in a parent block, then we can't return as yet, because we
1893 need to register this decl in the current binding block. */
1894 if (! DECL_EXTERNAL (x
) || ! TREE_PUBLIC (x
)
1895 || lookup_name (name
) == t
)
1899 /* If we are processing a typedef statement, generate a whole new
1900 ..._TYPE node (which will be just an variant of the existing
1901 ..._TYPE node with identical properties) and then install the
1902 TYPE_DECL node generated to represent the typedef name as the
1903 TYPE_NAME of this brand new (duplicate) ..._TYPE node.
1905 The whole point here is to end up with a situation where each
1906 and every ..._TYPE node the compiler creates will be uniquely
1907 associated with AT MOST one node representing a typedef name.
1908 This way, even though the compiler substitutes corresponding
1909 ..._TYPE nodes for TYPE_DECL (i.e. "typedef name") nodes very
1910 early on, later parts of the compiler can always do the reverse
1911 translation and get back the corresponding typedef name. For
1914 typedef struct S MY_TYPE;
1917 Later parts of the compiler might only know that `object' was of
1918 type `struct S' if if were not for code just below. With this
1919 code however, later parts of the compiler see something like:
1921 struct S' == struct S
1922 typedef struct S' MY_TYPE;
1925 And they can then deduce (from the node for type struct S') that
1926 the original object declaration was:
1930 Being able to do this is important for proper support of protoize,
1931 and also for generating precise symbolic debugging information
1932 which takes full account of the programmer's (typedef) vocabulary.
1934 Obviously, we don't want to generate a duplicate ..._TYPE node if
1935 the TYPE_DECL node that we are now processing really represents a
1936 standard built-in type.
1938 Since all standard types are effectively declared at line zero
1939 in the source file, we can easily check to see if we are working
1940 on a standard type by checking the current value of lineno. */
1942 if (TREE_CODE (x
) == TYPE_DECL
)
1944 if (DECL_SOURCE_LINE (x
) == 0)
1946 if (TYPE_NAME (TREE_TYPE (x
)) == 0)
1947 TYPE_NAME (TREE_TYPE (x
)) = x
;
1949 else if (TREE_TYPE (x
) != error_mark_node
)
1951 tree tt
= TREE_TYPE (x
);
1953 tt
= build_type_copy (tt
);
1959 /* Multiple external decls of the same identifier ought to match.
1960 Check against both global declarations (when traditional) and out of
1961 scope (limbo) block level declarations.
1963 We get warnings about inline functions where they are defined.
1964 Avoid duplicate warnings where they are used. */
1965 if (TREE_PUBLIC (x
) && ! DECL_INLINE (x
))
1969 if (flag_traditional
&& IDENTIFIER_GLOBAL_VALUE (name
) != 0
1970 && (DECL_EXTERNAL (IDENTIFIER_GLOBAL_VALUE (name
))
1971 || TREE_PUBLIC (IDENTIFIER_GLOBAL_VALUE (name
))))
1972 decl
= IDENTIFIER_GLOBAL_VALUE (name
);
1973 else if (IDENTIFIER_LIMBO_VALUE (name
) != 0)
1974 /* Decls in limbo are always extern, so no need to check that. */
1975 decl
= IDENTIFIER_LIMBO_VALUE (name
);
1979 if (decl
&& ! comptypes (TREE_TYPE (x
), TREE_TYPE (decl
))
1980 /* If old decl is built-in, we already warned if we should. */
1981 && !DECL_BUILT_IN (decl
))
1983 pedwarn_with_decl (x
,
1984 "type mismatch with previous external decl");
1985 pedwarn_with_decl (decl
, "previous external decl of `%s'");
1989 /* If a function has had an implicit declaration, and then is defined,
1990 make sure they are compatible. */
1992 if (IDENTIFIER_IMPLICIT_DECL (name
) != 0
1993 && IDENTIFIER_GLOBAL_VALUE (name
) == 0
1994 && TREE_CODE (x
) == FUNCTION_DECL
1995 && ! comptypes (TREE_TYPE (x
),
1996 TREE_TYPE (IDENTIFIER_IMPLICIT_DECL (name
))))
1998 warning_with_decl (x
, "type mismatch with previous implicit declaration");
1999 warning_with_decl (IDENTIFIER_IMPLICIT_DECL (name
),
2000 "previous implicit declaration of `%s'");
2003 /* In PCC-compatibility mode, extern decls of vars with no current decl
2004 take effect at top level no matter where they are. */
2005 if (flag_traditional
&& DECL_EXTERNAL (x
)
2006 && lookup_name (name
) == 0)
2008 tree type
= TREE_TYPE (x
);
2010 /* But don't do this if the type contains temporary nodes. */
2013 if (type
== error_mark_node
)
2015 if (! TREE_PERMANENT (type
))
2017 warning_with_decl (x
, "type of external `%s' is not global");
2018 /* By exiting the loop early, we leave TYPE nonzero,
2019 and thus prevent globalization of the decl. */
2022 else if (TREE_CODE (type
) == FUNCTION_TYPE
2023 && TYPE_ARG_TYPES (type
) != 0)
2024 /* The types might not be truly local,
2025 but the list of arg types certainly is temporary.
2026 Since prototypes are nontraditional,
2027 ok not to do the traditional thing. */
2029 type
= TREE_TYPE (type
);
2033 b
= global_binding_level
;
2036 /* This name is new in its binding level.
2037 Install the new declaration and return it. */
2038 if (b
== global_binding_level
)
2040 /* Install a global value. */
2042 /* If the first global decl has external linkage,
2043 warn if we later see static one. */
2044 if (IDENTIFIER_GLOBAL_VALUE (name
) == 0 && TREE_PUBLIC (x
))
2045 TREE_PUBLIC (name
) = 1;
2047 IDENTIFIER_GLOBAL_VALUE (name
) = x
;
2049 /* We no longer care about any previous block level declarations. */
2050 IDENTIFIER_LIMBO_VALUE (name
) = 0;
2052 /* Don't forget if the function was used via an implicit decl. */
2053 if (IDENTIFIER_IMPLICIT_DECL (name
)
2054 && TREE_USED (IDENTIFIER_IMPLICIT_DECL (name
)))
2055 TREE_USED (x
) = 1, TREE_USED (name
) = 1;
2057 /* Don't forget if its address was taken in that way. */
2058 if (IDENTIFIER_IMPLICIT_DECL (name
)
2059 && TREE_ADDRESSABLE (IDENTIFIER_IMPLICIT_DECL (name
)))
2060 TREE_ADDRESSABLE (x
) = 1;
2062 /* Warn about mismatches against previous implicit decl. */
2063 if (IDENTIFIER_IMPLICIT_DECL (name
) != 0
2064 /* If this real decl matches the implicit, don't complain. */
2065 && ! (TREE_CODE (x
) == FUNCTION_DECL
2066 && (TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (x
)))
2067 == integer_type_node
)))
2068 pedwarn ("`%s' was previously implicitly declared to return `int'",
2069 IDENTIFIER_POINTER (name
));
2071 /* If this decl is `static' and an `extern' was seen previously,
2072 that is erroneous. */
2073 if (TREE_PUBLIC (name
)
2074 && ! TREE_PUBLIC (x
) && ! DECL_EXTERNAL (x
))
2076 /* Okay to redeclare an ANSI built-in as static. */
2077 if (t
!= 0 && DECL_BUILT_IN (t
))
2079 /* Okay to declare a non-ANSI built-in as anything. */
2080 else if (t
!= 0 && DECL_BUILT_IN_NONANSI (t
))
2082 else if (IDENTIFIER_IMPLICIT_DECL (name
))
2083 pedwarn ("`%s' was declared implicitly `extern' and later `static'",
2084 IDENTIFIER_POINTER (name
));
2086 pedwarn ("`%s' was declared `extern' and later `static'",
2087 IDENTIFIER_POINTER (name
));
2092 /* Here to install a non-global value. */
2093 tree oldlocal
= IDENTIFIER_LOCAL_VALUE (name
);
2094 tree oldglobal
= IDENTIFIER_GLOBAL_VALUE (name
);
2095 IDENTIFIER_LOCAL_VALUE (name
) = x
;
2097 /* If this is an extern function declaration, see if we
2098 have a global definition or declaration for the function. */
2100 && DECL_EXTERNAL (x
) && !DECL_INLINE (x
)
2102 && TREE_CODE (x
) == FUNCTION_DECL
2103 && TREE_CODE (oldglobal
) == FUNCTION_DECL
)
2105 /* We have one. Their types must agree. */
2106 if (! comptypes (TREE_TYPE (x
),
2107 TREE_TYPE (IDENTIFIER_GLOBAL_VALUE (name
))))
2108 pedwarn_with_decl (x
, "extern declaration of `%s' doesn't match global one");
2111 /* Inner extern decl is inline if global one is.
2112 Copy enough to really inline it. */
2113 if (DECL_INLINE (oldglobal
))
2115 DECL_INLINE (x
) = DECL_INLINE (oldglobal
);
2116 DECL_INITIAL (x
) = (current_function_decl
== oldglobal
2117 ? 0 : DECL_INITIAL (oldglobal
));
2118 DECL_SAVED_INSNS (x
) = DECL_SAVED_INSNS (oldglobal
);
2119 DECL_FRAME_SIZE (x
) = DECL_FRAME_SIZE (oldglobal
);
2120 DECL_ARGUMENTS (x
) = DECL_ARGUMENTS (oldglobal
);
2121 DECL_RESULT (x
) = DECL_RESULT (oldglobal
);
2122 TREE_ASM_WRITTEN (x
) = TREE_ASM_WRITTEN (oldglobal
);
2123 DECL_ABSTRACT_ORIGIN (x
) = oldglobal
;
2125 /* Inner extern decl is built-in if global one is. */
2126 if (DECL_BUILT_IN (oldglobal
))
2128 DECL_BUILT_IN (x
) = DECL_BUILT_IN (oldglobal
);
2129 DECL_FUNCTION_CODE (x
) = DECL_FUNCTION_CODE (oldglobal
);
2131 /* Keep the arg types from a file-scope fcn defn. */
2132 if (TYPE_ARG_TYPES (TREE_TYPE (oldglobal
)) != 0
2133 && DECL_INITIAL (oldglobal
)
2134 && TYPE_ARG_TYPES (TREE_TYPE (x
)) == 0)
2135 TREE_TYPE (x
) = TREE_TYPE (oldglobal
);
2139 #if 0 /* This case is probably sometimes the right thing to do. */
2140 /* If we have a local external declaration,
2141 then any file-scope declaration should not
2142 have been static. */
2143 if (oldlocal
== 0 && oldglobal
!= 0
2144 && !TREE_PUBLIC (oldglobal
)
2145 && DECL_EXTERNAL (x
) && TREE_PUBLIC (x
))
2146 warning ("`%s' locally external but globally static",
2147 IDENTIFIER_POINTER (name
));
2150 /* If we have a local external declaration,
2151 and no file-scope declaration has yet been seen,
2152 then if we later have a file-scope decl it must not be static. */
2155 && DECL_EXTERNAL (x
)
2158 TREE_PUBLIC (name
) = 1;
2160 /* Save this decl, so that we can do type checking against
2161 other decls after it falls out of scope.
2163 Only save it once. This prevents temporary decls created in
2164 expand_inline_function from being used here, since this
2165 will have been set when the inline function was parsed.
2166 It also helps give slightly better warnings. */
2167 if (IDENTIFIER_LIMBO_VALUE (name
) == 0)
2168 IDENTIFIER_LIMBO_VALUE (name
) = x
;
2171 /* Warn if shadowing an argument at the top level of the body. */
2172 if (oldlocal
!= 0 && !DECL_EXTERNAL (x
)
2173 /* This warning doesn't apply to the parms of a nested fcn. */
2174 && ! current_binding_level
->parm_flag
2175 /* Check that this is one level down from the parms. */
2176 && current_binding_level
->level_chain
->parm_flag
2177 /* Check that the decl being shadowed
2178 comes from the parm level, one level up. */
2179 && chain_member (oldlocal
, current_binding_level
->level_chain
->names
))
2181 if (TREE_CODE (oldlocal
) == PARM_DECL
)
2182 pedwarn ("declaration of `%s' shadows a parameter",
2183 IDENTIFIER_POINTER (name
));
2185 pedwarn ("declaration of `%s' shadows a symbol from the parameter list",
2186 IDENTIFIER_POINTER (name
));
2189 /* Maybe warn if shadowing something else. */
2190 else if (warn_shadow
&& !DECL_EXTERNAL (x
)
2191 /* No shadow warnings for internally generated vars. */
2192 && DECL_SOURCE_LINE (x
) != 0
2193 /* No shadow warnings for vars made for inlining. */
2194 && ! DECL_FROM_INLINE (x
))
2196 char *warnstring
= 0;
2198 if (TREE_CODE (x
) == PARM_DECL
2199 && current_binding_level
->level_chain
->parm_flag
)
2200 /* Don't warn about the parm names in function declarator
2201 within a function declarator.
2202 It would be nice to avoid warning in any function
2203 declarator in a declaration, as opposed to a definition,
2204 but there is no way to tell it's not a definition. */
2206 else if (oldlocal
!= 0 && TREE_CODE (oldlocal
) == PARM_DECL
)
2207 warnstring
= "declaration of `%s' shadows a parameter";
2208 else if (oldlocal
!= 0)
2209 warnstring
= "declaration of `%s' shadows previous local";
2210 else if (IDENTIFIER_GLOBAL_VALUE (name
) != 0
2211 && IDENTIFIER_GLOBAL_VALUE (name
) != error_mark_node
)
2212 warnstring
= "declaration of `%s' shadows global declaration";
2215 warning (warnstring
, IDENTIFIER_POINTER (name
));
2218 /* If storing a local value, there may already be one (inherited).
2219 If so, record it for restoration when this binding level ends. */
2221 b
->shadowed
= tree_cons (name
, oldlocal
, b
->shadowed
);
2224 /* Keep count of variables in this level with incomplete type. */
2225 if (TYPE_SIZE (TREE_TYPE (x
)) == 0)
2229 /* Put decls on list in reverse order.
2230 We will reverse them later if necessary. */
2231 TREE_CHAIN (x
) = b
->names
;
2237 /* Like pushdecl, only it places X in GLOBAL_BINDING_LEVEL, if appropriate. */
2240 pushdecl_top_level (x
)
2244 register struct binding_level
*b
= current_binding_level
;
2246 current_binding_level
= global_binding_level
;
2248 current_binding_level
= b
;
2252 /* Generate an implicit declaration for identifier FUNCTIONID
2253 as a function of type int (). Print a warning if appropriate. */
2256 implicitly_declare (functionid
)
2260 int traditional_warning
= 0;
2261 /* Only one "implicit declaration" warning per identifier. */
2262 int implicit_warning
;
2264 /* Save the decl permanently so we can warn if definition follows. */
2265 push_obstacks_nochange ();
2266 end_temporary_allocation ();
2268 /* We used to reuse an old implicit decl here,
2269 but this loses with inline functions because it can clobber
2270 the saved decl chains. */
2271 /* if (IDENTIFIER_IMPLICIT_DECL (functionid) != 0)
2272 decl = IDENTIFIER_IMPLICIT_DECL (functionid);
2274 decl
= build_decl (FUNCTION_DECL
, functionid
, default_function_type
);
2276 /* Warn of implicit decl following explicit local extern decl.
2277 This is probably a program designed for traditional C. */
2278 if (TREE_PUBLIC (functionid
) && IDENTIFIER_GLOBAL_VALUE (functionid
) == 0)
2279 traditional_warning
= 1;
2281 /* Warn once of an implicit declaration. */
2282 implicit_warning
= (IDENTIFIER_IMPLICIT_DECL (functionid
) == 0);
2284 DECL_EXTERNAL (decl
) = 1;
2285 TREE_PUBLIC (decl
) = 1;
2287 /* Record that we have an implicit decl and this is it. */
2288 IDENTIFIER_IMPLICIT_DECL (functionid
) = decl
;
2290 /* ANSI standard says implicit declarations are in the innermost block.
2291 So we record the decl in the standard fashion.
2292 If flag_traditional is set, pushdecl does it top-level. */
2295 /* This is a no-op in c-lang.c or something real in objc-actions.c. */
2296 maybe_objc_check_decl (decl
);
2298 rest_of_decl_compilation (decl
, NULL_PTR
, 0, 0);
2300 if (warn_implicit
&& implicit_warning
)
2301 warning ("implicit declaration of function `%s'",
2302 IDENTIFIER_POINTER (functionid
));
2303 else if (warn_traditional
&& traditional_warning
)
2304 warning ("function `%s' was previously declared within a block",
2305 IDENTIFIER_POINTER (functionid
));
2307 /* Write a record describing this implicit function declaration to the
2308 prototypes file (if requested). */
2310 gen_aux_info_record (decl
, 0, 1, 0);
2317 /* Return zero if the declaration NEWDECL is valid
2318 when the declaration OLDDECL (assumed to be for the same name)
2319 has already been seen.
2320 Otherwise return an error message format string with a %s
2321 where the identifier should go. */
2324 redeclaration_error_message (newdecl
, olddecl
)
2325 tree newdecl
, olddecl
;
2327 if (TREE_CODE (newdecl
) == TYPE_DECL
)
2329 if (flag_traditional
&& TREE_TYPE (newdecl
) == TREE_TYPE (olddecl
))
2331 return "redefinition of `%s'";
2333 else if (TREE_CODE (newdecl
) == FUNCTION_DECL
)
2335 /* Declarations of functions can insist on internal linkage
2336 but they can't be inconsistent with internal linkage,
2337 so there can be no error on that account.
2338 However defining the same name twice is no good. */
2339 if (DECL_INITIAL (olddecl
) != 0 && DECL_INITIAL (newdecl
) != 0
2340 /* However, defining once as extern inline and a second
2341 time in another way is ok. */
2342 && !(DECL_INLINE (olddecl
) && DECL_EXTERNAL (olddecl
)
2343 && !(DECL_INLINE (newdecl
) && DECL_EXTERNAL (newdecl
))))
2344 return "redefinition of `%s'";
2347 else if (current_binding_level
== global_binding_level
)
2349 /* Objects declared at top level: */
2350 /* If at least one is a reference, it's ok. */
2351 if (DECL_EXTERNAL (newdecl
) || DECL_EXTERNAL (olddecl
))
2353 /* Reject two definitions. */
2354 if (DECL_INITIAL (olddecl
) != 0 && DECL_INITIAL (newdecl
) != 0)
2355 return "redefinition of `%s'";
2356 /* Now we have two tentative defs, or one tentative and one real def. */
2357 /* Insist that the linkage match. */
2358 if (TREE_PUBLIC (olddecl
) != TREE_PUBLIC (newdecl
))
2359 return "conflicting declarations of `%s'";
2362 else if (current_binding_level
->parm_flag
2363 && TREE_ASM_WRITTEN (olddecl
) && !TREE_ASM_WRITTEN (newdecl
))
2367 /* Newdecl has block scope. If olddecl has block scope also, then
2368 reject two definitions, and reject a definition together with an
2369 external reference. Otherwise, it is OK, because newdecl must
2370 be an extern reference to olddecl. */
2371 if (!(DECL_EXTERNAL (newdecl
) && DECL_EXTERNAL (olddecl
))
2372 && DECL_CONTEXT (newdecl
) == DECL_CONTEXT (olddecl
))
2373 return "redeclaration of `%s'";
2378 /* Get the LABEL_DECL corresponding to identifier ID as a label.
2379 Create one if none exists so far for the current function.
2380 This function is called for both label definitions and label references. */
2386 register tree decl
= IDENTIFIER_LABEL_VALUE (id
);
2388 if (current_function_decl
== 0)
2390 error ("label %s referenced outside of any function",
2391 IDENTIFIER_POINTER (id
));
2395 /* Use a label already defined or ref'd with this name. */
2398 /* But not if it is inherited and wasn't declared to be inheritable. */
2399 if (DECL_CONTEXT (decl
) != current_function_decl
2400 && ! C_DECLARED_LABEL_FLAG (decl
))
2401 return shadow_label (id
);
2405 decl
= build_decl (LABEL_DECL
, id
, void_type_node
);
2407 /* Make sure every label has an rtx. */
2410 /* A label not explicitly declared must be local to where it's ref'd. */
2411 DECL_CONTEXT (decl
) = current_function_decl
;
2413 DECL_MODE (decl
) = VOIDmode
;
2415 /* Say where one reference is to the label,
2416 for the sake of the error if it is not defined. */
2417 DECL_SOURCE_LINE (decl
) = lineno
;
2418 DECL_SOURCE_FILE (decl
) = input_filename
;
2420 IDENTIFIER_LABEL_VALUE (id
) = decl
;
2422 named_labels
= tree_cons (NULL_TREE
, decl
, named_labels
);
2427 /* Make a label named NAME in the current function,
2428 shadowing silently any that may be inherited from containing functions
2429 or containing scopes.
2431 Note that valid use, if the label being shadowed
2432 comes from another scope in the same function,
2433 requires calling declare_nonlocal_label right away. */
2439 register tree decl
= IDENTIFIER_LABEL_VALUE (name
);
2445 /* Check to make sure that the label hasn't already been declared
2446 at this label scope */
2447 for (dup
= named_labels
; dup
; dup
= TREE_CHAIN (dup
))
2448 if (TREE_VALUE (dup
) == decl
)
2450 error ("duplicate label declaration `%s'",
2451 IDENTIFIER_POINTER (name
));
2452 error_with_decl (TREE_VALUE (dup
),
2453 "this is a previous declaration");
2454 /* Just use the previous declaration. */
2455 return lookup_label (name
);
2458 shadowed_labels
= tree_cons (NULL_TREE
, decl
, shadowed_labels
);
2459 IDENTIFIER_LABEL_VALUE (name
) = decl
= 0;
2462 return lookup_label (name
);
2465 /* Define a label, specifying the location in the source file.
2466 Return the LABEL_DECL node for the label, if the definition is valid.
2467 Otherwise return 0. */
2470 define_label (filename
, line
, name
)
2475 tree decl
= lookup_label (name
);
2477 /* If label with this name is known from an outer context, shadow it. */
2478 if (decl
!= 0 && DECL_CONTEXT (decl
) != current_function_decl
)
2480 shadowed_labels
= tree_cons (NULL_TREE
, decl
, shadowed_labels
);
2481 IDENTIFIER_LABEL_VALUE (name
) = 0;
2482 decl
= lookup_label (name
);
2485 if (DECL_INITIAL (decl
) != 0)
2487 error ("duplicate label `%s'", IDENTIFIER_POINTER (name
));
2492 /* Mark label as having been defined. */
2493 DECL_INITIAL (decl
) = error_mark_node
;
2494 /* Say where in the source. */
2495 DECL_SOURCE_FILE (decl
) = filename
;
2496 DECL_SOURCE_LINE (decl
) = line
;
2501 /* Return the list of declarations of the current level.
2502 Note that this list is in reverse order unless/until
2503 you nreverse it; and when you do nreverse it, you must
2504 store the result back using `storedecls' or you will lose. */
2509 return current_binding_level
->names
;
2512 /* Return the list of type-tags (for structs, etc) of the current level. */
2517 return current_binding_level
->tags
;
2520 /* Store the list of declarations of the current level.
2521 This is done for the parameter declarations of a function being defined,
2522 after they are modified in the light of any missing parameters. */
2528 current_binding_level
->names
= decls
;
2531 /* Similarly, store the list of tags of the current level. */
2537 current_binding_level
->tags
= tags
;
2540 /* Given NAME, an IDENTIFIER_NODE,
2541 return the structure (or union or enum) definition for that name.
2542 Searches binding levels from BINDING_LEVEL up to the global level.
2543 If THISLEVEL_ONLY is nonzero, searches only the specified context
2544 (but skips any tag-transparent contexts to find one that is
2545 meaningful for tags).
2546 CODE says which kind of type the caller wants;
2547 it is RECORD_TYPE or UNION_TYPE or ENUMERAL_TYPE.
2548 If the wrong kind of type is found, an error is reported. */
2551 lookup_tag (code
, name
, binding_level
, thislevel_only
)
2552 enum tree_code code
;
2553 struct binding_level
*binding_level
;
2557 register struct binding_level
*level
;
2559 for (level
= binding_level
; level
; level
= level
->level_chain
)
2562 for (tail
= level
->tags
; tail
; tail
= TREE_CHAIN (tail
))
2564 if (TREE_PURPOSE (tail
) == name
)
2566 if (TREE_CODE (TREE_VALUE (tail
)) != code
)
2568 /* Definition isn't the kind we were looking for. */
2569 pending_invalid_xref
= name
;
2570 pending_invalid_xref_file
= input_filename
;
2571 pending_invalid_xref_line
= lineno
;
2573 return TREE_VALUE (tail
);
2576 if (thislevel_only
&& ! level
->tag_transparent
)
2582 /* Print an error message now
2583 for a recent invalid struct, union or enum cross reference.
2584 We don't print them immediately because they are not invalid
2585 when used in the `struct foo;' construct for shadowing. */
2588 pending_xref_error ()
2590 if (pending_invalid_xref
!= 0)
2591 error_with_file_and_line (pending_invalid_xref_file
,
2592 pending_invalid_xref_line
,
2593 "`%s' defined as wrong kind of tag",
2594 IDENTIFIER_POINTER (pending_invalid_xref
));
2595 pending_invalid_xref
= 0;
2598 /* Given a type, find the tag that was defined for it and return the tag name.
2599 Otherwise return 0. */
2602 lookup_tag_reverse (type
)
2605 register struct binding_level
*level
;
2607 for (level
= current_binding_level
; level
; level
= level
->level_chain
)
2610 for (tail
= level
->tags
; tail
; tail
= TREE_CHAIN (tail
))
2612 if (TREE_VALUE (tail
) == type
)
2613 return TREE_PURPOSE (tail
);
2619 /* Look up NAME in the current binding level and its superiors
2620 in the namespace of variables, functions and typedefs.
2621 Return a ..._DECL node of some kind representing its definition,
2622 or return 0 if it is undefined. */
2629 if (current_binding_level
!= global_binding_level
2630 && IDENTIFIER_LOCAL_VALUE (name
))
2631 val
= IDENTIFIER_LOCAL_VALUE (name
);
2633 val
= IDENTIFIER_GLOBAL_VALUE (name
);
2637 /* Similar to `lookup_name' but look only at current binding level. */
2640 lookup_name_current_level (name
)
2645 if (current_binding_level
== global_binding_level
)
2646 return IDENTIFIER_GLOBAL_VALUE (name
);
2648 if (IDENTIFIER_LOCAL_VALUE (name
) == 0)
2651 for (t
= current_binding_level
->names
; t
; t
= TREE_CHAIN (t
))
2652 if (DECL_NAME (t
) == name
)
2658 /* Similar to `lookup_name_current_level' but also look at the global binding
2662 lookup_name_current_level_global (name
)
2665 register tree t
= 0;
2667 if (current_binding_level
== global_binding_level
)
2668 return IDENTIFIER_GLOBAL_VALUE (name
);
2670 if (IDENTIFIER_LOCAL_VALUE (name
) != 0)
2671 for (t
= current_binding_level
->names
; t
; t
= TREE_CHAIN (t
))
2672 if (DECL_NAME (t
) == name
)
2676 t
= IDENTIFIER_GLOBAL_VALUE (name
);
2681 /* Create the predefined scalar types of C,
2682 and some nodes representing standard constants (0, 1, (void *)0).
2683 Initialize the global binding level.
2684 Make definitions for built-in primitive functions. */
2687 init_decl_processing ()
2689 register tree endlink
;
2690 /* Either char* or void*. */
2691 tree traditional_ptr_type_node
;
2692 /* Data types of memcpy and strlen. */
2693 tree memcpy_ftype
, strlen_ftype
;
2694 tree void_ftype_any
;
2695 int wchar_type_size
;
2697 tree array_domain_type
;
2699 current_function_decl
= NULL
;
2700 named_labels
= NULL
;
2701 current_binding_level
= NULL_BINDING_LEVEL
;
2702 free_binding_level
= NULL_BINDING_LEVEL
;
2703 pushlevel (0); /* make the binding_level structure for global names */
2704 global_binding_level
= current_binding_level
;
2706 /* Define `int' and `char' first so that dbx will output them first. */
2708 integer_type_node
= make_signed_type (INT_TYPE_SIZE
);
2709 pushdecl (build_decl (TYPE_DECL
, ridpointers
[(int) RID_INT
],
2710 integer_type_node
));
2712 /* Define `char', which is like either `signed char' or `unsigned char'
2713 but not the same as either. */
2717 ? make_signed_type (CHAR_TYPE_SIZE
)
2718 : make_unsigned_type (CHAR_TYPE_SIZE
));
2719 pushdecl (build_decl (TYPE_DECL
, get_identifier ("char"),
2722 long_integer_type_node
= make_signed_type (LONG_TYPE_SIZE
);
2723 pushdecl (build_decl (TYPE_DECL
, get_identifier ("long int"),
2724 long_integer_type_node
));
2726 unsigned_type_node
= make_unsigned_type (INT_TYPE_SIZE
);
2727 pushdecl (build_decl (TYPE_DECL
, get_identifier ("unsigned int"),
2728 unsigned_type_node
));
2730 long_unsigned_type_node
= make_unsigned_type (LONG_TYPE_SIZE
);
2731 pushdecl (build_decl (TYPE_DECL
, get_identifier ("long unsigned int"),
2732 long_unsigned_type_node
));
2734 long_long_integer_type_node
= make_signed_type (LONG_LONG_TYPE_SIZE
);
2735 pushdecl (build_decl (TYPE_DECL
, get_identifier ("long long int"),
2736 long_long_integer_type_node
));
2738 long_long_unsigned_type_node
= make_unsigned_type (LONG_LONG_TYPE_SIZE
);
2739 pushdecl (build_decl (TYPE_DECL
, get_identifier ("long long unsigned int"),
2740 long_long_unsigned_type_node
));
2742 /* `unsigned long' is the standard type for sizeof.
2743 Traditionally, use a signed type.
2744 Note that stddef.h uses `unsigned long',
2745 and this must agree, even of long and int are the same size. */
2747 = TREE_TYPE (IDENTIFIER_GLOBAL_VALUE (get_identifier (SIZE_TYPE
)));
2748 if (flag_traditional
&& TREE_UNSIGNED (sizetype
))
2749 sizetype
= signed_type (sizetype
);
2752 = TREE_TYPE (IDENTIFIER_GLOBAL_VALUE (get_identifier (PTRDIFF_TYPE
)));
2754 TREE_TYPE (TYPE_SIZE (integer_type_node
)) = sizetype
;
2755 TREE_TYPE (TYPE_SIZE (char_type_node
)) = sizetype
;
2756 TREE_TYPE (TYPE_SIZE (unsigned_type_node
)) = sizetype
;
2757 TREE_TYPE (TYPE_SIZE (long_unsigned_type_node
)) = sizetype
;
2758 TREE_TYPE (TYPE_SIZE (long_integer_type_node
)) = sizetype
;
2759 TREE_TYPE (TYPE_SIZE (long_long_integer_type_node
)) = sizetype
;
2760 TREE_TYPE (TYPE_SIZE (long_long_unsigned_type_node
)) = sizetype
;
2762 error_mark_node
= make_node (ERROR_MARK
);
2763 TREE_TYPE (error_mark_node
) = error_mark_node
;
2765 short_integer_type_node
= make_signed_type (SHORT_TYPE_SIZE
);
2766 pushdecl (build_decl (TYPE_DECL
, get_identifier ("short int"),
2767 short_integer_type_node
));
2769 short_unsigned_type_node
= make_unsigned_type (SHORT_TYPE_SIZE
);
2770 pushdecl (build_decl (TYPE_DECL
, get_identifier ("short unsigned int"),
2771 short_unsigned_type_node
));
2773 /* Define both `signed char' and `unsigned char'. */
2774 signed_char_type_node
= make_signed_type (CHAR_TYPE_SIZE
);
2775 pushdecl (build_decl (TYPE_DECL
, get_identifier ("signed char"),
2776 signed_char_type_node
));
2778 unsigned_char_type_node
= make_unsigned_type (CHAR_TYPE_SIZE
);
2779 pushdecl (build_decl (TYPE_DECL
, get_identifier ("unsigned char"),
2780 unsigned_char_type_node
));
2782 intQI_type_node
= make_signed_type (GET_MODE_BITSIZE (QImode
));
2783 pushdecl (build_decl (TYPE_DECL
, NULL_TREE
, intQI_type_node
));
2785 intHI_type_node
= make_signed_type (GET_MODE_BITSIZE (HImode
));
2786 pushdecl (build_decl (TYPE_DECL
, NULL_TREE
, intHI_type_node
));
2788 intSI_type_node
= make_signed_type (GET_MODE_BITSIZE (SImode
));
2789 pushdecl (build_decl (TYPE_DECL
, NULL_TREE
, intSI_type_node
));
2791 intDI_type_node
= make_signed_type (GET_MODE_BITSIZE (DImode
));
2792 pushdecl (build_decl (TYPE_DECL
, NULL_TREE
, intDI_type_node
));
2794 unsigned_intQI_type_node
= make_unsigned_type (GET_MODE_BITSIZE (QImode
));
2795 pushdecl (build_decl (TYPE_DECL
, NULL_TREE
, unsigned_intQI_type_node
));
2797 unsigned_intHI_type_node
= make_unsigned_type (GET_MODE_BITSIZE (HImode
));
2798 pushdecl (build_decl (TYPE_DECL
, NULL_TREE
, unsigned_intHI_type_node
));
2800 unsigned_intSI_type_node
= make_unsigned_type (GET_MODE_BITSIZE (SImode
));
2801 pushdecl (build_decl (TYPE_DECL
, NULL_TREE
, unsigned_intSI_type_node
));
2803 unsigned_intDI_type_node
= make_unsigned_type (GET_MODE_BITSIZE (DImode
));
2804 pushdecl (build_decl (TYPE_DECL
, NULL_TREE
, unsigned_intDI_type_node
));
2806 float_type_node
= make_node (REAL_TYPE
);
2807 TYPE_PRECISION (float_type_node
) = FLOAT_TYPE_SIZE
;
2808 pushdecl (build_decl (TYPE_DECL
, ridpointers
[(int) RID_FLOAT
],
2810 layout_type (float_type_node
);
2812 double_type_node
= make_node (REAL_TYPE
);
2813 if (flag_short_double
)
2814 TYPE_PRECISION (double_type_node
) = FLOAT_TYPE_SIZE
;
2816 TYPE_PRECISION (double_type_node
) = DOUBLE_TYPE_SIZE
;
2817 pushdecl (build_decl (TYPE_DECL
, ridpointers
[(int) RID_DOUBLE
],
2819 layout_type (double_type_node
);
2821 long_double_type_node
= make_node (REAL_TYPE
);
2822 TYPE_PRECISION (long_double_type_node
) = LONG_DOUBLE_TYPE_SIZE
;
2823 pushdecl (build_decl (TYPE_DECL
, get_identifier ("long double"),
2824 long_double_type_node
));
2825 layout_type (long_double_type_node
);
2827 complex_integer_type_node
= make_node (COMPLEX_TYPE
);
2828 pushdecl (build_decl (TYPE_DECL
, get_identifier ("complex int"),
2829 complex_integer_type_node
));
2830 TREE_TYPE (complex_integer_type_node
) = integer_type_node
;
2831 layout_type (complex_integer_type_node
);
2833 complex_float_type_node
= make_node (COMPLEX_TYPE
);
2834 pushdecl (build_decl (TYPE_DECL
, get_identifier ("complex float"),
2835 complex_float_type_node
));
2836 TREE_TYPE (complex_float_type_node
) = float_type_node
;
2837 layout_type (complex_float_type_node
);
2839 complex_double_type_node
= make_node (COMPLEX_TYPE
);
2840 pushdecl (build_decl (TYPE_DECL
, get_identifier ("complex double"),
2841 complex_double_type_node
));
2842 TREE_TYPE (complex_double_type_node
) = double_type_node
;
2843 layout_type (complex_double_type_node
);
2845 complex_long_double_type_node
= make_node (COMPLEX_TYPE
);
2846 pushdecl (build_decl (TYPE_DECL
, get_identifier ("complex long double"),
2847 complex_long_double_type_node
));
2848 TREE_TYPE (complex_long_double_type_node
) = long_double_type_node
;
2849 layout_type (complex_long_double_type_node
);
2852 = TREE_TYPE (IDENTIFIER_GLOBAL_VALUE (get_identifier (WCHAR_TYPE
)));
2853 wchar_type_size
= TYPE_PRECISION (wchar_type_node
);
2854 signed_wchar_type_node
= signed_type (wchar_type_node
);
2855 unsigned_wchar_type_node
= unsigned_type (wchar_type_node
);
2857 integer_zero_node
= build_int_2 (0, 0);
2858 TREE_TYPE (integer_zero_node
) = integer_type_node
;
2859 integer_one_node
= build_int_2 (1, 0);
2860 TREE_TYPE (integer_one_node
) = integer_type_node
;
2862 size_zero_node
= build_int_2 (0, 0);
2863 TREE_TYPE (size_zero_node
) = sizetype
;
2864 size_one_node
= build_int_2 (1, 0);
2865 TREE_TYPE (size_one_node
) = sizetype
;
2867 void_type_node
= make_node (VOID_TYPE
);
2868 pushdecl (build_decl (TYPE_DECL
,
2869 ridpointers
[(int) RID_VOID
], void_type_node
));
2870 layout_type (void_type_node
); /* Uses integer_zero_node */
2871 /* We are not going to have real types in C with less than byte alignment,
2872 so we might as well not have any types that claim to have it. */
2873 TYPE_ALIGN (void_type_node
) = BITS_PER_UNIT
;
2875 null_pointer_node
= build_int_2 (0, 0);
2876 TREE_TYPE (null_pointer_node
) = build_pointer_type (void_type_node
);
2877 layout_type (TREE_TYPE (null_pointer_node
));
2879 string_type_node
= build_pointer_type (char_type_node
);
2880 const_string_type_node
2881 = build_pointer_type (build_type_variant (char_type_node
, 1, 0));
2883 /* Make a type to be the domain of a few array types
2884 whose domains don't really matter.
2885 200 is small enough that it always fits in size_t
2886 and large enough that it can hold most function names for the
2887 initializations of __FUNCTION__ and __PRETTY_FUNCTION__. */
2888 array_domain_type
= build_index_type (build_int_2 (200, 0));
2890 /* make a type for arrays of characters.
2891 With luck nothing will ever really depend on the length of this
2893 char_array_type_node
2894 = build_array_type (char_type_node
, array_domain_type
);
2895 /* Likewise for arrays of ints. */
2897 = build_array_type (integer_type_node
, array_domain_type
);
2898 /* This is for wide string constants. */
2899 wchar_array_type_node
2900 = build_array_type (wchar_type_node
, array_domain_type
);
2902 default_function_type
2903 = build_function_type (integer_type_node
, NULL_TREE
);
2905 ptr_type_node
= build_pointer_type (void_type_node
);
2907 = build_pointer_type (build_type_variant (void_type_node
, 1, 0));
2909 endlink
= tree_cons (NULL_TREE
, void_type_node
, NULL_TREE
);
2912 = build_function_type (void_type_node
, NULL_TREE
);
2915 = build_function_type (double_type_node
,
2916 tree_cons (NULL_TREE
, double_type_node
, endlink
));
2918 double_ftype_double_double
2919 = build_function_type (double_type_node
,
2920 tree_cons (NULL_TREE
, double_type_node
,
2921 tree_cons (NULL_TREE
,
2922 double_type_node
, endlink
)));
2925 = build_function_type (integer_type_node
,
2926 tree_cons (NULL_TREE
, integer_type_node
, endlink
));
2929 = build_function_type (long_integer_type_node
,
2930 tree_cons (NULL_TREE
,
2931 long_integer_type_node
, endlink
));
2933 void_ftype_ptr_ptr_int
2934 = build_function_type (void_type_node
,
2935 tree_cons (NULL_TREE
, ptr_type_node
,
2936 tree_cons (NULL_TREE
, ptr_type_node
,
2937 tree_cons (NULL_TREE
,
2941 int_ftype_cptr_cptr_sizet
2942 = build_function_type (integer_type_node
,
2943 tree_cons (NULL_TREE
, const_ptr_type_node
,
2944 tree_cons (NULL_TREE
, const_ptr_type_node
,
2945 tree_cons (NULL_TREE
,
2949 void_ftype_ptr_int_int
2950 = build_function_type (void_type_node
,
2951 tree_cons (NULL_TREE
, ptr_type_node
,
2952 tree_cons (NULL_TREE
, integer_type_node
,
2953 tree_cons (NULL_TREE
,
2957 string_ftype_ptr_ptr
/* strcpy prototype */
2958 = build_function_type (string_type_node
,
2959 tree_cons (NULL_TREE
, string_type_node
,
2960 tree_cons (NULL_TREE
,
2961 const_string_type_node
,
2964 int_ftype_string_string
/* strcmp prototype */
2965 = build_function_type (integer_type_node
,
2966 tree_cons (NULL_TREE
, const_string_type_node
,
2967 tree_cons (NULL_TREE
,
2968 const_string_type_node
,
2971 strlen_ftype
/* strlen prototype */
2972 = build_function_type (flag_traditional
? integer_type_node
: sizetype
,
2973 tree_cons (NULL_TREE
, const_string_type_node
,
2976 traditional_ptr_type_node
2977 = (flag_traditional
? string_type_node
: ptr_type_node
);
2979 memcpy_ftype
/* memcpy prototype */
2980 = build_function_type (traditional_ptr_type_node
,
2981 tree_cons (NULL_TREE
, ptr_type_node
,
2982 tree_cons (NULL_TREE
, const_ptr_type_node
,
2983 tree_cons (NULL_TREE
,
2987 builtin_function ("__builtin_constant_p", int_ftype_int
,
2988 BUILT_IN_CONSTANT_P
, NULL_PTR
);
2990 builtin_function ("__builtin_return_address",
2991 build_function_type (ptr_type_node
,
2992 tree_cons (NULL_TREE
,
2995 BUILT_IN_RETURN_ADDRESS
, NULL_PTR
);
2997 builtin_function ("__builtin_frame_address",
2998 build_function_type (ptr_type_node
,
2999 tree_cons (NULL_TREE
,
3002 BUILT_IN_FRAME_ADDRESS
, NULL_PTR
);
3004 builtin_function ("__builtin_alloca",
3005 build_function_type (ptr_type_node
,
3006 tree_cons (NULL_TREE
,
3009 BUILT_IN_ALLOCA
, "alloca");
3010 builtin_function ("__builtin_ffs", int_ftype_int
, BUILT_IN_FFS
, NULL_PTR
);
3011 /* Define alloca, ffs as builtins.
3012 Declare _exit just to mark it as volatile. */
3013 if (! flag_no_builtin
&& !flag_no_nonansi_builtin
)
3015 temp
= builtin_function ("alloca",
3016 build_function_type (ptr_type_node
,
3017 tree_cons (NULL_TREE
,
3020 BUILT_IN_ALLOCA
, NULL_PTR
);
3021 /* Suppress error if redefined as a non-function. */
3022 DECL_BUILT_IN_NONANSI (temp
) = 1;
3023 temp
= builtin_function ("ffs", int_ftype_int
, BUILT_IN_FFS
, NULL_PTR
);
3024 /* Suppress error if redefined as a non-function. */
3025 DECL_BUILT_IN_NONANSI (temp
) = 1;
3026 temp
= builtin_function ("_exit", void_ftype_any
, NOT_BUILT_IN
,
3028 TREE_THIS_VOLATILE (temp
) = 1;
3029 TREE_SIDE_EFFECTS (temp
) = 1;
3030 /* Suppress error if redefined as a non-function. */
3031 DECL_BUILT_IN_NONANSI (temp
) = 1;
3034 builtin_function ("__builtin_abs", int_ftype_int
, BUILT_IN_ABS
, NULL_PTR
);
3035 builtin_function ("__builtin_fabs", double_ftype_double
, BUILT_IN_FABS
,
3037 builtin_function ("__builtin_labs", long_ftype_long
, BUILT_IN_LABS
,
3039 builtin_function ("__builtin_saveregs",
3040 build_function_type (ptr_type_node
, NULL_TREE
),
3041 BUILT_IN_SAVEREGS
, NULL_PTR
);
3042 /* EXPAND_BUILTIN_VARARGS is obsolete. */
3044 builtin_function ("__builtin_varargs",
3045 build_function_type (ptr_type_node
,
3046 tree_cons (NULL_TREE
,
3049 BUILT_IN_VARARGS
, NULL_PTR
);
3051 builtin_function ("__builtin_classify_type", default_function_type
,
3052 BUILT_IN_CLASSIFY_TYPE
, NULL_PTR
);
3053 builtin_function ("__builtin_next_arg",
3054 build_function_type (ptr_type_node
, NULL_TREE
),
3055 BUILT_IN_NEXT_ARG
, NULL_PTR
);
3056 builtin_function ("__builtin_args_info",
3057 build_function_type (integer_type_node
,
3058 tree_cons (NULL_TREE
,
3061 BUILT_IN_ARGS_INFO
, NULL_PTR
);
3063 /* Untyped call and return. */
3064 builtin_function ("__builtin_apply_args",
3065 build_function_type (ptr_type_node
, NULL_TREE
),
3066 BUILT_IN_APPLY_ARGS
, NULL_PTR
);
3068 temp
= tree_cons (NULL_TREE
,
3069 build_pointer_type (build_function_type (void_type_node
,
3071 tree_cons (NULL_TREE
,
3073 tree_cons (NULL_TREE
,
3076 builtin_function ("__builtin_apply",
3077 build_function_type (ptr_type_node
, temp
),
3078 BUILT_IN_APPLY
, NULL_PTR
);
3079 builtin_function ("__builtin_return",
3080 build_function_type (void_type_node
,
3081 tree_cons (NULL_TREE
,
3084 BUILT_IN_RETURN
, NULL_PTR
);
3086 /* Currently under experimentation. */
3087 builtin_function ("__builtin_memcpy", memcpy_ftype
,
3088 BUILT_IN_MEMCPY
, "memcpy");
3089 builtin_function ("__builtin_memcmp", int_ftype_cptr_cptr_sizet
,
3090 BUILT_IN_MEMCMP
, "memcmp");
3091 builtin_function ("__builtin_strcmp", int_ftype_string_string
,
3092 BUILT_IN_STRCMP
, "strcmp");
3093 builtin_function ("__builtin_strcpy", string_ftype_ptr_ptr
,
3094 BUILT_IN_STRCPY
, "strcpy");
3095 builtin_function ("__builtin_strlen", strlen_ftype
,
3096 BUILT_IN_STRLEN
, "strlen");
3097 builtin_function ("__builtin_fsqrt", double_ftype_double
,
3098 BUILT_IN_FSQRT
, "sqrt");
3099 builtin_function ("__builtin_sin", double_ftype_double
,
3100 BUILT_IN_SIN
, "sin");
3101 builtin_function ("__builtin_cos", double_ftype_double
,
3102 BUILT_IN_COS
, "cos");
3104 /* In an ANSI C program, it is okay to supply built-in meanings
3105 for these functions, since applications cannot validly use them
3106 with any other meaning.
3107 However, honor the -fno-builtin option. */
3108 if (!flag_no_builtin
)
3110 builtin_function ("abs", int_ftype_int
, BUILT_IN_ABS
, NULL_PTR
);
3111 builtin_function ("fabs", double_ftype_double
, BUILT_IN_FABS
, NULL_PTR
);
3112 builtin_function ("labs", long_ftype_long
, BUILT_IN_LABS
, NULL_PTR
);
3113 builtin_function ("memcpy", memcpy_ftype
, BUILT_IN_MEMCPY
, NULL_PTR
);
3114 builtin_function ("memcmp", int_ftype_cptr_cptr_sizet
, BUILT_IN_MEMCMP
,
3116 builtin_function ("strcmp", int_ftype_string_string
, BUILT_IN_STRCMP
,
3118 builtin_function ("strcpy", string_ftype_ptr_ptr
, BUILT_IN_STRCPY
,
3120 builtin_function ("strlen", strlen_ftype
, BUILT_IN_STRLEN
, NULL_PTR
);
3121 builtin_function ("sqrt", double_ftype_double
, BUILT_IN_FSQRT
, NULL_PTR
);
3122 builtin_function ("sin", double_ftype_double
, BUILT_IN_SIN
, NULL_PTR
);
3123 builtin_function ("cos", double_ftype_double
, BUILT_IN_COS
, NULL_PTR
);
3125 /* Declare these functions volatile
3126 to avoid spurious "control drops through" warnings. */
3127 /* Don't specify the argument types, to avoid errors
3128 from certain code which isn't valid in ANSI but which exists. */
3129 temp
= builtin_function ("abort", void_ftype_any
, NOT_BUILT_IN
,
3131 TREE_THIS_VOLATILE (temp
) = 1;
3132 TREE_SIDE_EFFECTS (temp
) = 1;
3133 temp
= builtin_function ("exit", void_ftype_any
, NOT_BUILT_IN
, NULL_PTR
);
3134 TREE_THIS_VOLATILE (temp
) = 1;
3135 TREE_SIDE_EFFECTS (temp
) = 1;
3139 /* Support for these has not been written in either expand_builtin
3140 or build_function_call. */
3141 builtin_function ("__builtin_div", default_ftype
, BUILT_IN_DIV
, NULL_PTR
);
3142 builtin_function ("__builtin_ldiv", default_ftype
, BUILT_IN_LDIV
, NULL_PTR
);
3143 builtin_function ("__builtin_ffloor", double_ftype_double
, BUILT_IN_FFLOOR
,
3145 builtin_function ("__builtin_fceil", double_ftype_double
, BUILT_IN_FCEIL
,
3147 builtin_function ("__builtin_fmod", double_ftype_double_double
,
3148 BUILT_IN_FMOD
, NULL_PTR
);
3149 builtin_function ("__builtin_frem", double_ftype_double_double
,
3150 BUILT_IN_FREM
, NULL_PTR
);
3151 builtin_function ("__builtin_memset", ptr_ftype_ptr_int_int
,
3152 BUILT_IN_MEMSET
, NULL_PTR
);
3153 builtin_function ("__builtin_getexp", double_ftype_double
, BUILT_IN_GETEXP
,
3155 builtin_function ("__builtin_getman", double_ftype_double
, BUILT_IN_GETMAN
,
3159 /* Create the global bindings for __FUNCTION__ and __PRETTY_FUNCTION__. */
3160 declare_function_name ();
3162 start_identifier_warnings ();
3164 /* Prepare to check format strings against argument lists. */
3165 init_function_format_info ();
3169 incomplete_decl_finalize_hook
= finish_incomplete_decl
;
3172 /* Return a definition for a builtin function named NAME and whose data type
3173 is TYPE. TYPE should be a function type with argument types.
3174 FUNCTION_CODE tells later passes how to compile calls to this function.
3175 See tree.h for its possible values.
3177 If LIBRARY_NAME is nonzero, use that for DECL_ASSEMBLER_NAME,
3178 the name to be called if we can't opencode the function. */
3181 builtin_function (name
, type
, function_code
, library_name
)
3184 enum built_in_function function_code
;
3187 tree decl
= build_decl (FUNCTION_DECL
, get_identifier (name
), type
);
3188 DECL_EXTERNAL (decl
) = 1;
3189 TREE_PUBLIC (decl
) = 1;
3190 /* If -traditional, permit redefining a builtin function any way you like.
3191 (Though really, if the program redefines these functions,
3192 it probably won't work right unless compiled with -fno-builtin.) */
3193 if (flag_traditional
&& name
[0] != '_')
3194 DECL_BUILT_IN_NONANSI (decl
) = 1;
3196 DECL_ASSEMBLER_NAME (decl
) = get_identifier (library_name
);
3197 make_decl_rtl (decl
, NULL_PTR
, 1);
3199 if (function_code
!= NOT_BUILT_IN
)
3201 DECL_BUILT_IN (decl
) = 1;
3202 DECL_FUNCTION_CODE (decl
) = function_code
;
3204 /* Warn if a function in the namespace for users
3205 is used without an occasion to consider it declared. */
3206 if (name
[0] != '_' || name
[1] != '_')
3207 C_DECL_ANTICIPATED (decl
) = 1;
3212 /* Called when a declaration is seen that contains no names to declare.
3213 If its type is a reference to a structure, union or enum inherited
3214 from a containing scope, shadow that tag name for the current scope
3215 with a forward reference.
3216 If its type defines a new named structure or union
3217 or defines an enum, it is valid but we need not do anything here.
3218 Otherwise, it is an error. */
3221 shadow_tag (declspecs
)
3224 shadow_tag_warned (declspecs
, 0);
3228 shadow_tag_warned (declspecs
, warned
)
3231 /* 1 => we have done a pedwarn. 2 => we have done a warning, but
3237 pending_invalid_xref
= 0;
3239 for (link
= declspecs
; link
; link
= TREE_CHAIN (link
))
3241 register tree value
= TREE_VALUE (link
);
3242 register enum tree_code code
= TREE_CODE (value
);
3244 if (code
== RECORD_TYPE
|| code
== UNION_TYPE
|| code
== ENUMERAL_TYPE
)
3245 /* Used to test also that TYPE_SIZE (value) != 0.
3246 That caused warning for `struct foo;' at top level in the file. */
3248 register tree name
= lookup_tag_reverse (value
);
3255 if (warned
!= 1 && code
!= ENUMERAL_TYPE
)
3256 /* Empty unnamed enum OK */
3258 pedwarn ("unnamed struct/union that defines no instances");
3264 t
= lookup_tag (code
, name
, current_binding_level
, 1);
3268 t
= make_node (code
);
3277 warning ("useless keyword or type name in empty declaration");
3284 error ("two types specified in one empty declaration");
3289 pedwarn ("empty declaration");
3293 /* Decode a "typename", such as "int **", returning a ..._TYPE node. */
3296 groktypename (typename
)
3299 if (TREE_CODE (typename
) != TREE_LIST
)
3301 return grokdeclarator (TREE_VALUE (typename
),
3302 TREE_PURPOSE (typename
),
3306 /* Return a PARM_DECL node for a given pair of specs and declarator. */
3309 groktypename_in_parm_context (typename
)
3312 if (TREE_CODE (typename
) != TREE_LIST
)
3314 return grokdeclarator (TREE_VALUE (typename
),
3315 TREE_PURPOSE (typename
),
3319 /* Decode a declarator in an ordinary declaration or data definition.
3320 This is called as soon as the type information and variable name
3321 have been parsed, before parsing the initializer if any.
3322 Here we create the ..._DECL node, fill in its type,
3323 and put it on the list of decls for the current context.
3324 The ..._DECL node is returned as the value.
3326 Exception: for arrays where the length is not specified,
3327 the type is left null, to be filled in by `finish_decl'.
3329 Function definitions do not come here; they go to start_function
3330 instead. However, external and forward declarations of functions
3331 do go through here. Structure field declarations are done by
3332 grokfield and not through here. */
3334 /* Set this to zero to debug not using the temporary obstack
3335 to parse initializers. */
3336 int debug_temp_inits
= 1;
3339 start_decl (declarator
, declspecs
, initialized
)
3340 tree declarator
, declspecs
;
3343 register tree decl
= grokdeclarator (declarator
, declspecs
,
3344 NORMAL
, initialized
);
3346 int init_written
= initialized
;
3348 /* The corresponding pop_obstacks is in finish_decl. */
3349 push_obstacks_nochange ();
3352 /* Is it valid for this decl to have an initializer at all?
3353 If not, set INITIALIZED to zero, which will indirectly
3354 tell `finish_decl' to ignore the initializer once it is parsed. */
3355 switch (TREE_CODE (decl
))
3358 /* typedef foo = bar means give foo the same type as bar.
3359 We haven't parsed bar yet, so `finish_decl' will fix that up.
3360 Any other case of an initialization in a TYPE_DECL is an error. */
3361 if (pedantic
|| list_length (declspecs
) > 1)
3363 error ("typedef `%s' is initialized",
3364 IDENTIFIER_POINTER (DECL_NAME (decl
)));
3370 error ("function `%s' is initialized like a variable",
3371 IDENTIFIER_POINTER (DECL_NAME (decl
)));
3376 /* DECL_INITIAL in a PARM_DECL is really DECL_ARG_TYPE. */
3377 error ("parameter `%s' is initialized",
3378 IDENTIFIER_POINTER (DECL_NAME (decl
)));
3383 /* Don't allow initializations for incomplete types
3384 except for arrays which might be completed by the initialization. */
3385 if (TYPE_SIZE (TREE_TYPE (decl
)) != 0)
3387 /* A complete type is ok if size is fixed. */
3389 if (TREE_CODE (TYPE_SIZE (TREE_TYPE (decl
))) != INTEGER_CST
3390 || C_DECL_VARIABLE_SIZE (decl
))
3392 error ("variable-sized object may not be initialized");
3396 else if (TREE_CODE (TREE_TYPE (decl
)) != ARRAY_TYPE
)
3398 error ("variable `%s' has initializer but incomplete type",
3399 IDENTIFIER_POINTER (DECL_NAME (decl
)));
3402 else if (TYPE_SIZE (TREE_TYPE (TREE_TYPE (decl
))) == 0)
3404 error ("elements of array `%s' have incomplete type",
3405 IDENTIFIER_POINTER (DECL_NAME (decl
)));
3412 #if 0 /* Seems redundant with grokdeclarator. */
3413 if (current_binding_level
!= global_binding_level
3414 && DECL_EXTERNAL (decl
)
3415 && TREE_CODE (decl
) != FUNCTION_DECL
)
3416 warning ("declaration of `%s' has `extern' and is initialized",
3417 IDENTIFIER_POINTER (DECL_NAME (decl
)));
3419 DECL_EXTERNAL (decl
) = 0;
3420 if (current_binding_level
== global_binding_level
)
3421 TREE_STATIC (decl
) = 1;
3423 /* Tell `pushdecl' this is an initialized decl
3424 even though we don't yet have the initializer expression.
3425 Also tell `finish_decl' it may store the real initializer. */
3426 DECL_INITIAL (decl
) = error_mark_node
;
3429 /* If this is a function declaration, write a record describing it to the
3430 prototypes file (if requested). */
3432 if (TREE_CODE (decl
) == FUNCTION_DECL
)
3433 gen_aux_info_record (decl
, 0, 0, TYPE_ARG_TYPES (TREE_TYPE (decl
)) != 0);
3435 /* Add this decl to the current binding level.
3436 TEM may equal DECL or it may be a previous decl of the same name. */
3437 tem
= pushdecl (decl
);
3439 /* For C and Obective-C, we by default put things in .common when
3441 DECL_COMMON (tem
) = 1;
3443 /* For a local variable, define the RTL now. */
3444 if (current_binding_level
!= global_binding_level
3445 /* But not if this is a duplicate decl
3446 and we preserved the rtl from the previous one
3447 (which may or may not happen). */
3448 && DECL_RTL (tem
) == 0)
3450 if (TYPE_SIZE (TREE_TYPE (tem
)) != 0)
3452 else if (TREE_CODE (TREE_TYPE (tem
)) == ARRAY_TYPE
3453 && DECL_INITIAL (tem
) != 0)
3459 /* When parsing and digesting the initializer,
3460 use temporary storage. Do this even if we will ignore the value. */
3461 if (current_binding_level
== global_binding_level
&& debug_temp_inits
)
3462 temporary_allocation ();
3468 /* Finish processing of a declaration;
3469 install its initial value.
3470 If the length of an array type is not known before,
3471 it must be determined now, from the initial value, or it is an error. */
3474 finish_decl (decl
, init
, asmspec_tree
)
3478 register tree type
= TREE_TYPE (decl
);
3479 int was_incomplete
= (DECL_SIZE (decl
) == 0);
3480 int temporary
= allocation_temporary_p ();
3483 /* If a name was specified, get the string. */
3485 asmspec
= TREE_STRING_POINTER (asmspec_tree
);
3487 /* If `start_decl' didn't like having an initialization, ignore it now. */
3489 if (init
!= 0 && DECL_INITIAL (decl
) == 0)
3491 /* Don't crash if parm is initialized. */
3492 if (TREE_CODE (decl
) == PARM_DECL
)
3495 if (ITERATOR_P (decl
))
3498 error_with_decl (decl
, "iterator has no initial value");
3500 init
= save_expr (init
);
3505 if (TREE_CODE (decl
) != TYPE_DECL
)
3506 store_init_value (decl
, init
);
3509 /* typedef foo = bar; store the type of bar as the type of foo. */
3510 TREE_TYPE (decl
) = TREE_TYPE (init
);
3511 DECL_INITIAL (decl
) = init
= 0;
3515 /* Pop back to the obstack that is current for this binding level.
3516 This is because MAXINDEX, rtl, etc. to be made below
3517 must go in the permanent obstack. But don't discard the
3518 temporary data yet. */
3520 #if 0 /* pop_obstacks was near the end; this is what was here. */
3521 if (current_binding_level
== global_binding_level
&& temporary
)
3522 end_temporary_allocation ();
3525 /* Deduce size of array from initialization, if not already known */
3527 if (TREE_CODE (type
) == ARRAY_TYPE
3528 && TYPE_DOMAIN (type
) == 0
3529 && TREE_CODE (decl
) != TYPE_DECL
)
3532 = (TREE_STATIC (decl
)
3533 /* Even if pedantic, an external linkage array
3534 may have incomplete type at first. */
3535 ? pedantic
&& !TREE_PUBLIC (decl
)
3536 : !DECL_EXTERNAL (decl
));
3538 = complete_array_type (type
, DECL_INITIAL (decl
), do_default
);
3540 /* Get the completed type made by complete_array_type. */
3541 type
= TREE_TYPE (decl
);
3544 error_with_decl (decl
, "initializer fails to determine size of `%s'");
3549 error_with_decl (decl
, "array size missing in `%s'");
3550 /* If a `static' var's size isn't known,
3551 make it extern as well as static, so it does not get
3553 If it is not `static', then do not mark extern;
3554 finish_incomplete_decl will give it a default size
3555 and it will get allocated. */
3556 else if (!pedantic
&& TREE_STATIC (decl
) && ! TREE_PUBLIC (decl
))
3557 DECL_EXTERNAL (decl
) = 1;
3560 /* TYPE_MAX_VALUE is always one less than the number of elements
3561 in the array, because we start counting at zero. Therefore,
3562 warn only if the value is less than zero. */
3563 if (pedantic
&& TYPE_DOMAIN (type
) != 0
3564 && tree_int_cst_sgn (TYPE_MAX_VALUE (TYPE_DOMAIN (type
))) < 0)
3565 error_with_decl (decl
, "zero or negative size array `%s'");
3567 layout_decl (decl
, 0);
3570 if (TREE_CODE (decl
) == VAR_DECL
)
3572 if (DECL_SIZE (decl
) == 0
3573 && TYPE_SIZE (TREE_TYPE (decl
)) != 0)
3574 layout_decl (decl
, 0);
3576 if (DECL_SIZE (decl
) == 0
3577 && (TREE_STATIC (decl
)
3579 /* A static variable with an incomplete type
3580 is an error if it is initialized.
3581 Also if it is not file scope.
3582 Otherwise, let it through, but if it is not `extern'
3583 then it may cause an error message later. */
3584 (DECL_INITIAL (decl
) != 0
3585 || current_binding_level
!= global_binding_level
)
3587 /* An automatic variable with an incomplete type
3589 !DECL_EXTERNAL (decl
)))
3591 error_with_decl (decl
, "storage size of `%s' isn't known");
3592 TREE_TYPE (decl
) = error_mark_node
;
3595 if ((DECL_EXTERNAL (decl
) || TREE_STATIC (decl
))
3596 && DECL_SIZE (decl
) != 0)
3598 if (TREE_CODE (DECL_SIZE (decl
)) == INTEGER_CST
)
3599 constant_expression_warning (DECL_SIZE (decl
));
3601 error_with_decl (decl
, "storage size of `%s' isn't constant");
3605 /* If this is a function and an assembler name is specified, it isn't
3606 builtin any more. Also reset DECL_RTL so we can give it its new
3608 if (TREE_CODE (decl
) == FUNCTION_DECL
&& asmspec
)
3610 DECL_BUILT_IN (decl
) = 0;
3611 DECL_RTL (decl
) = 0;
3614 /* Output the assembler code and/or RTL code for variables and functions,
3615 unless the type is an undefined structure or union.
3616 If not, it will get done when the type is completed. */
3618 if (TREE_CODE (decl
) == VAR_DECL
|| TREE_CODE (decl
) == FUNCTION_DECL
)
3620 if ((flag_traditional
|| TREE_PERMANENT (decl
))
3621 && allocation_temporary_p ())
3623 push_obstacks_nochange ();
3624 end_temporary_allocation ();
3625 /* This is a no-op in c-lang.c or something real in objc-actions.c. */
3626 maybe_objc_check_decl (decl
);
3627 rest_of_decl_compilation (decl
, asmspec
,
3628 current_binding_level
== global_binding_level
,
3634 /* This is a no-op in c-lang.c or something real in objc-actions.c. */
3635 maybe_objc_check_decl (decl
);
3636 rest_of_decl_compilation (decl
, asmspec
,
3637 current_binding_level
== global_binding_level
,
3640 if (current_binding_level
!= global_binding_level
)
3642 /* Recompute the RTL of a local array now
3643 if it used to be an incomplete type. */
3645 && ! TREE_STATIC (decl
) && ! DECL_EXTERNAL (decl
))
3647 /* If we used it already as memory, it must stay in memory. */
3648 TREE_ADDRESSABLE (decl
) = TREE_USED (decl
);
3649 /* If it's still incomplete now, no init will save it. */
3650 if (DECL_SIZE (decl
) == 0)
3651 DECL_INITIAL (decl
) = 0;
3654 /* Compute and store the initial value. */
3655 if (TREE_CODE (decl
) != FUNCTION_DECL
)
3656 expand_decl_init (decl
);
3660 if (TREE_CODE (decl
) == TYPE_DECL
)
3662 /* This is a no-op in c-lang.c or something real in objc-actions.c. */
3663 maybe_objc_check_decl (decl
);
3664 rest_of_decl_compilation (decl
, NULL_PTR
,
3665 current_binding_level
== global_binding_level
,
3669 /* ??? After 2.3, test (init != 0) instead of TREE_CODE. */
3670 /* This test used to include TREE_PERMANENT, however, we have the same
3671 problem with initializers at the function level. Such initializers get
3672 saved until the end of the function on the momentary_obstack. */
3673 if (!(TREE_CODE (decl
) == FUNCTION_DECL
&& DECL_INLINE (decl
))
3675 /* DECL_INITIAL is not defined in PARM_DECLs, since it shares
3676 space with DECL_ARG_TYPE. */
3677 && TREE_CODE (decl
) != PARM_DECL
)
3679 /* We need to remember that this array HAD an initialization,
3680 but discard the actual temporary nodes,
3681 since we can't have a permanent node keep pointing to them. */
3682 /* We make an exception for inline functions, since it's
3683 normal for a local extern redeclaration of an inline function
3684 to have a copy of the top-level decl's DECL_INLINE. */
3685 if (DECL_INITIAL (decl
) != 0 && DECL_INITIAL (decl
) != error_mark_node
)
3687 /* If this is a const variable, then preserve the
3688 initializer instead of discarding it so that we can optimize
3689 references to it. */
3690 /* This test used to include TREE_STATIC, but this won't be set
3691 for function level initializers. */
3692 if (TREE_READONLY (decl
) || ITERATOR_P (decl
))
3694 preserve_initializer ();
3695 /* Hack? Set the permanent bit for something that is permanent,
3696 but not on the permenent obstack, so as to convince
3697 output_constant_def to make its rtl on the permanent
3699 TREE_PERMANENT (DECL_INITIAL (decl
)) = 1;
3701 /* The initializer and DECL must have the same (or equivalent
3702 types), but if the initializer is a STRING_CST, its type
3703 might not be on the right obstack, so copy the type
3705 TREE_TYPE (DECL_INITIAL (decl
)) = type
;
3708 DECL_INITIAL (decl
) = error_mark_node
;
3712 /* If requested, warn about definitions of large data objects. */
3714 if (warn_larger_than
3715 && (TREE_CODE (decl
) == VAR_DECL
|| TREE_CODE (decl
) == PARM_DECL
)
3716 && !DECL_EXTERNAL (decl
))
3718 register tree decl_size
= DECL_SIZE (decl
);
3720 if (decl_size
&& TREE_CODE (decl_size
) == INTEGER_CST
)
3722 unsigned units
= TREE_INT_CST_LOW(decl_size
) / BITS_PER_UNIT
;
3724 if (units
> larger_than_size
)
3725 warning_with_decl (decl
, "size of `%s' is %u bytes", units
);
3730 /* Resume permanent allocation, if not within a function. */
3731 /* The corresponding push_obstacks_nochange is in start_decl,
3732 and in push_parm_decl and in grokfield. */
3736 /* If we have gone back from temporary to permanent allocation,
3737 actually free the temporary space that we no longer need. */
3738 if (temporary
&& !allocation_temporary_p ())
3739 permanent_allocation (0);
3741 /* At the end of a declaration, throw away any variable type sizes
3742 of types defined inside that declaration. There is no use
3743 computing them in the following function definition. */
3744 if (current_binding_level
== global_binding_level
)
3745 get_pending_sizes ();
3748 /* If DECL has a cleanup, build and return that cleanup here.
3749 This is a callback called by expand_expr. */
3752 maybe_build_cleanup (decl
)
3755 /* There are no cleanups in C. */
3759 /* Given a parsed parameter declaration,
3760 decode it into a PARM_DECL and push that on the current binding level.
3761 Also, for the sake of forward parm decls,
3762 record the given order of parms in `parm_order'. */
3765 push_parm_decl (parm
)
3769 int old_immediate_size_expand
= immediate_size_expand
;
3770 /* Don't try computing parm sizes now -- wait till fn is called. */
3771 immediate_size_expand
= 0;
3773 /* The corresponding pop_obstacks is in finish_decl. */
3774 push_obstacks_nochange ();
3776 decl
= grokdeclarator (TREE_VALUE (parm
), TREE_PURPOSE (parm
), PARM
, 0);
3779 if (DECL_NAME (decl
))
3782 olddecl
= lookup_name (DECL_NAME (decl
));
3783 if (pedantic
&& olddecl
!= 0 && TREE_CODE (olddecl
) == TYPE_DECL
)
3784 pedwarn_with_decl (decl
, "ANSI C forbids parameter `%s' shadowing typedef");
3788 decl
= pushdecl (decl
);
3790 immediate_size_expand
= old_immediate_size_expand
;
3792 current_binding_level
->parm_order
3793 = tree_cons (NULL_TREE
, decl
, current_binding_level
->parm_order
);
3795 /* Add this decl to the current binding level. */
3796 finish_decl (decl
, NULL_TREE
, NULL_TREE
);
3799 /* Clear the given order of parms in `parm_order'.
3800 Used at start of parm list,
3801 and also at semicolon terminating forward decls. */
3806 current_binding_level
->parm_order
= NULL_TREE
;
3809 /* Make TYPE a complete type based on INITIAL_VALUE.
3810 Return 0 if successful, 1 if INITIAL_VALUE can't be deciphered,
3811 2 if there was no information (in which case assume 1 if DO_DEFAULT). */
3814 complete_array_type (type
, initial_value
, do_default
)
3819 register tree maxindex
= NULL_TREE
;
3824 /* Note MAXINDEX is really the maximum index,
3825 one less than the size. */
3826 if (TREE_CODE (initial_value
) == STRING_CST
)
3829 = int_size_in_bytes (TREE_TYPE (TREE_TYPE (initial_value
)));
3830 maxindex
= build_int_2 ((TREE_STRING_LENGTH (initial_value
)
3833 else if (TREE_CODE (initial_value
) == CONSTRUCTOR
)
3835 tree elts
= CONSTRUCTOR_ELTS (initial_value
);
3836 maxindex
= size_binop (MINUS_EXPR
, integer_zero_node
, size_one_node
);
3837 for (; elts
; elts
= TREE_CHAIN (elts
))
3839 if (TREE_PURPOSE (elts
))
3840 maxindex
= TREE_PURPOSE (elts
);
3842 maxindex
= size_binop (PLUS_EXPR
, maxindex
, size_one_node
);
3844 maxindex
= copy_node (maxindex
);
3848 /* Make an error message unless that happened already. */
3849 if (initial_value
!= error_mark_node
)
3852 /* Prevent further error messages. */
3853 maxindex
= build_int_2 (0, 0);
3860 maxindex
= build_int_2 (0, 0);
3866 TYPE_DOMAIN (type
) = build_index_type (maxindex
);
3867 if (!TREE_TYPE (maxindex
))
3868 TREE_TYPE (maxindex
) = TYPE_DOMAIN (type
);
3869 #if 0 /* I took out this change
3870 together with the change in build_array_type. --rms */
3871 change_main_variant (type
,
3872 build_array_type (TREE_TYPE (type
),
3873 TYPE_DOMAIN (type
)));
3877 /* Lay out the type now that we can get the real answer. */
3884 /* Given declspecs and a declarator,
3885 determine the name and type of the object declared
3886 and construct a ..._DECL node for it.
3887 (In one case we can return a ..._TYPE node instead.
3888 For invalid input we sometimes return 0.)
3890 DECLSPECS is a chain of tree_list nodes whose value fields
3891 are the storage classes and type specifiers.
3893 DECL_CONTEXT says which syntactic context this declaration is in:
3894 NORMAL for most contexts. Make a VAR_DECL or FUNCTION_DECL or TYPE_DECL.
3895 FUNCDEF for a function definition. Like NORMAL but a few different
3896 error messages in each case. Return value may be zero meaning
3897 this definition is too screwy to try to parse.
3898 PARM for a parameter declaration (either within a function prototype
3899 or before a function body). Make a PARM_DECL, or return void_type_node.
3900 TYPENAME if for a typename (in a cast or sizeof).
3901 Don't make a DECL node; just return the ..._TYPE node.
3902 FIELD for a struct or union field; make a FIELD_DECL.
3903 BITFIELD for a field with specified width.
3904 INITIALIZED is 1 if the decl has an initializer.
3906 In the TYPENAME case, DECLARATOR is really an absolute declarator.
3907 It may also be so in the PARM case, for a prototype where the
3908 argument type is specified but not the name.
3910 This function is where the complicated C meanings of `static'
3911 and `extern' are interpreted. */
3914 grokdeclarator (declarator
, declspecs
, decl_context
, initialized
)
3917 enum decl_context decl_context
;
3922 tree type
= NULL_TREE
;
3927 int explicit_int
= 0;
3928 int explicit_char
= 0;
3929 int defaulted_int
= 0;
3930 tree typedef_decl
= 0;
3932 tree typedef_type
= 0;
3933 int funcdef_flag
= 0;
3934 enum tree_code innermost_code
= ERROR_MARK
;
3936 int size_varies
= 0;
3938 if (decl_context
== BITFIELD
)
3939 bitfield
= 1, decl_context
= FIELD
;
3941 if (decl_context
== FUNCDEF
)
3942 funcdef_flag
= 1, decl_context
= NORMAL
;
3944 push_obstacks_nochange ();
3946 if (flag_traditional
&& allocation_temporary_p ())
3947 end_temporary_allocation ();
3949 /* Look inside a declarator for the name being declared
3950 and get it as a string, for an error message. */
3952 register tree decl
= declarator
;
3956 switch (TREE_CODE (decl
))
3961 innermost_code
= TREE_CODE (decl
);
3962 decl
= TREE_OPERAND (decl
, 0);
3965 case IDENTIFIER_NODE
:
3966 name
= IDENTIFIER_POINTER (decl
);
3977 /* A function definition's declarator must have the form of
3978 a function declarator. */
3980 if (funcdef_flag
&& innermost_code
!= CALL_EXPR
)
3983 /* Anything declared one level down from the top level
3984 must be one of the parameters of a function
3985 (because the body is at least two levels down). */
3987 /* If this looks like a function definition, make it one,
3988 even if it occurs where parms are expected.
3989 Then store_parm_decls will reject it and not use it as a parm. */
3990 if (decl_context
== NORMAL
&& !funcdef_flag
3991 && current_binding_level
->level_chain
== global_binding_level
)
3992 decl_context
= PARM
;
3994 /* Look through the decl specs and record which ones appear.
3995 Some typespecs are defined as built-in typenames.
3996 Others, the ones that are modifiers of other types,
3997 are represented by bits in SPECBITS: set the bits for
3998 the modifiers that appear. Storage class keywords are also in SPECBITS.
4000 If there is a typedef name or a type, store the type in TYPE.
4001 This includes builtin typedefs such as `int'.
4003 Set EXPLICIT_INT or EXPLICIT_CHAR if the type is `int' or `char'
4004 and did not come from a user typedef.
4006 Set LONGLONG if `long' is mentioned twice. */
4008 for (spec
= declspecs
; spec
; spec
= TREE_CHAIN (spec
))
4011 register tree id
= TREE_VALUE (spec
);
4013 if (id
== ridpointers
[(int) RID_INT
])
4015 if (id
== ridpointers
[(int) RID_CHAR
])
4018 if (TREE_CODE (id
) == IDENTIFIER_NODE
)
4019 for (i
= (int) RID_FIRST_MODIFIER
; i
< (int) RID_MAX
; i
++)
4021 if (ridpointers
[i
] == id
)
4023 if (i
== (int) RID_LONG
&& specbits
& (1<<i
))
4026 error ("`long long long' is too long for GCC");
4029 if (pedantic
&& ! in_system_header
)
4030 pedwarn ("ANSI C does not support `long long'");
4034 else if (specbits
& (1 << i
))
4035 pedwarn ("duplicate `%s'", IDENTIFIER_POINTER (id
));
4041 error ("two or more data types in declaration of `%s'", name
);
4042 /* Actual typedefs come to us as TYPE_DECL nodes. */
4043 else if (TREE_CODE (id
) == TYPE_DECL
)
4045 type
= TREE_TYPE (id
);
4048 /* Built-in types come as identifiers. */
4049 else if (TREE_CODE (id
) == IDENTIFIER_NODE
)
4051 register tree t
= lookup_name (id
);
4052 if (TREE_TYPE (t
) == error_mark_node
)
4054 else if (!t
|| TREE_CODE (t
) != TYPE_DECL
)
4055 error ("`%s' fails to be a typedef or built in type",
4056 IDENTIFIER_POINTER (id
));
4059 type
= TREE_TYPE (t
);
4063 else if (TREE_CODE (id
) != ERROR_MARK
)
4069 typedef_type
= type
;
4071 size_varies
= C_TYPE_VARIABLE_SIZE (type
);
4073 /* No type at all: default to `int', and set DEFAULTED_INT
4074 because it was not a user-defined typedef. */
4078 if (funcdef_flag
&& warn_return_type
4079 && ! (specbits
& ((1 << (int) RID_LONG
) | (1 << (int) RID_SHORT
)
4080 | (1 << (int) RID_SIGNED
) | (1 << (int) RID_UNSIGNED
))))
4081 warn_about_return_type
= 1;
4083 type
= integer_type_node
;
4086 /* Now process the modifiers that were specified
4087 and check for invalid combinations. */
4089 /* Long double is a special combination. */
4091 if ((specbits
& 1 << (int) RID_LONG
)
4092 && TYPE_MAIN_VARIANT (type
) == double_type_node
)
4094 specbits
&= ~ (1 << (int) RID_LONG
);
4095 type
= long_double_type_node
;
4098 /* Check all other uses of type modifiers. */
4100 if (specbits
& ((1 << (int) RID_LONG
) | (1 << (int) RID_SHORT
)
4101 | (1 << (int) RID_UNSIGNED
) | (1 << (int) RID_SIGNED
)))
4105 if (TREE_CODE (type
) != INTEGER_TYPE
)
4106 error ("long, short, signed or unsigned invalid for `%s'", name
);
4107 else if ((specbits
& 1 << (int) RID_LONG
)
4108 && (specbits
& 1 << (int) RID_SHORT
))
4109 error ("long and short specified together for `%s'", name
);
4110 else if (((specbits
& 1 << (int) RID_LONG
)
4111 || (specbits
& 1 << (int) RID_SHORT
))
4113 error ("long or short specified with char for `%s'", name
);
4114 else if (((specbits
& 1 << (int) RID_LONG
)
4115 || (specbits
& 1 << (int) RID_SHORT
))
4116 && TREE_CODE (type
) == REAL_TYPE
)
4117 error ("long or short specified with floating type for `%s'", name
);
4118 else if ((specbits
& 1 << (int) RID_SIGNED
)
4119 && (specbits
& 1 << (int) RID_UNSIGNED
))
4120 error ("signed and unsigned given together for `%s'", name
);
4124 if (!explicit_int
&& !defaulted_int
&& !explicit_char
&& pedantic
)
4126 pedwarn ("long, short, signed or unsigned used invalidly for `%s'",
4128 if (flag_pedantic_errors
)
4133 /* Discard the type modifiers if they are invalid. */
4136 specbits
&= ~((1 << (int) RID_LONG
) | (1 << (int) RID_SHORT
)
4137 | (1 << (int) RID_UNSIGNED
) | (1 << (int) RID_SIGNED
));
4142 if ((specbits
& (1 << (int) RID_COMPLEX
))
4143 && TREE_CODE (type
) != INTEGER_TYPE
&& TREE_CODE (type
) != REAL_TYPE
)
4145 error ("complex invalid for `%s'", name
);
4146 specbits
&= ~ (1 << (int) RID_COMPLEX
);
4149 /* Decide whether an integer type is signed or not.
4150 Optionally treat bitfields as signed by default. */
4151 if (specbits
& 1 << (int) RID_UNSIGNED
4152 /* Traditionally, all bitfields are unsigned. */
4153 || (bitfield
&& flag_traditional
4154 && (! explicit_flag_signed_bitfields
|| !flag_signed_bitfields
))
4155 || (bitfield
&& ! flag_signed_bitfields
4156 && (explicit_int
|| defaulted_int
|| explicit_char
4157 /* A typedef for plain `int' without `signed'
4158 can be controlled just like plain `int'. */
4159 || ! (typedef_decl
!= 0
4160 && C_TYPEDEF_EXPLICITLY_SIGNED (typedef_decl
)))
4161 && TREE_CODE (type
) != ENUMERAL_TYPE
4162 && !(specbits
& 1 << (int) RID_SIGNED
)))
4165 type
= long_long_unsigned_type_node
;
4166 else if (specbits
& 1 << (int) RID_LONG
)
4167 type
= long_unsigned_type_node
;
4168 else if (specbits
& 1 << (int) RID_SHORT
)
4169 type
= short_unsigned_type_node
;
4170 else if (type
== char_type_node
)
4171 type
= unsigned_char_type_node
;
4172 else if (typedef_decl
)
4173 type
= unsigned_type (type
);
4175 type
= unsigned_type_node
;
4177 else if ((specbits
& 1 << (int) RID_SIGNED
)
4178 && type
== char_type_node
)
4179 type
= signed_char_type_node
;
4181 type
= long_long_integer_type_node
;
4182 else if (specbits
& 1 << (int) RID_LONG
)
4183 type
= long_integer_type_node
;
4184 else if (specbits
& 1 << (int) RID_SHORT
)
4185 type
= short_integer_type_node
;
4187 if (specbits
& 1 << (int) RID_COMPLEX
)
4189 /* If we just have "complex", it is equivalent to
4190 "complex double", but if any modifiers at all are specified it is
4191 the complex form of TYPE. E.g, "complex short" is
4192 "complex short int". */
4194 if (defaulted_int
&& ! longlong
4195 && ! (specbits
& ((1 << (int) RID_LONG
) | (1 << (int) RID_SHORT
)
4196 | (1 << (int) RID_SIGNED
)
4197 | (1 << (int) RID_UNSIGNED
))))
4198 type
= complex_double_type_node
;
4199 else if (type
== integer_type_node
)
4200 type
= complex_integer_type_node
;
4201 else if (type
== float_type_node
)
4202 type
= complex_float_type_node
;
4203 else if (type
== double_type_node
)
4204 type
= complex_double_type_node
;
4205 else if (type
== long_double_type_node
)
4206 type
= complex_long_double_type_node
;
4208 type
= build_complex_type (type
);
4211 /* Set CONSTP if this declaration is `const', whether by
4212 explicit specification or via a typedef.
4213 Likewise for VOLATILEP. */
4215 constp
= !! (specbits
& 1 << (int) RID_CONST
) + TYPE_READONLY (type
);
4216 volatilep
= !! (specbits
& 1 << (int) RID_VOLATILE
) + TYPE_VOLATILE (type
);
4217 inlinep
= !! (specbits
& (1 << (int) RID_INLINE
));
4219 pedwarn ("duplicate `const'");
4221 pedwarn ("duplicate `volatile'");
4222 if (! flag_gen_aux_info
&& (TYPE_READONLY (type
) || TYPE_VOLATILE (type
)))
4223 type
= TYPE_MAIN_VARIANT (type
);
4225 /* Warn if two storage classes are given. Default to `auto'. */
4230 if (specbits
& 1 << (int) RID_AUTO
) nclasses
++;
4231 if (specbits
& 1 << (int) RID_STATIC
) nclasses
++;
4232 if (specbits
& 1 << (int) RID_EXTERN
) nclasses
++;
4233 if (specbits
& 1 << (int) RID_REGISTER
) nclasses
++;
4234 if (specbits
& 1 << (int) RID_TYPEDEF
) nclasses
++;
4235 if (specbits
& 1 << (int) RID_ITERATOR
) nclasses
++;
4237 /* Warn about storage classes that are invalid for certain
4238 kinds of declarations (parameters, typenames, etc.). */
4241 error ("multiple storage classes in declaration of `%s'", name
);
4242 else if (funcdef_flag
4244 & ((1 << (int) RID_REGISTER
)
4245 | (1 << (int) RID_AUTO
)
4246 | (1 << (int) RID_TYPEDEF
))))
4248 if (specbits
& 1 << (int) RID_AUTO
4249 && (pedantic
|| current_binding_level
== global_binding_level
))
4250 pedwarn ("function definition declared `auto'");
4251 if (specbits
& 1 << (int) RID_REGISTER
)
4252 error ("function definition declared `register'");
4253 if (specbits
& 1 << (int) RID_TYPEDEF
)
4254 error ("function definition declared `typedef'");
4255 specbits
&= ~ ((1 << (int) RID_TYPEDEF
) | (1 << (int) RID_REGISTER
)
4256 | (1 << (int) RID_AUTO
));
4258 else if (decl_context
!= NORMAL
&& nclasses
> 0)
4260 if (decl_context
== PARM
&& specbits
& 1 << (int) RID_REGISTER
)
4264 error ((decl_context
== FIELD
4265 ? "storage class specified for structure field `%s'"
4266 : (decl_context
== PARM
4267 ? "storage class specified for parameter `%s'"
4268 : "storage class specified for typename")),
4270 specbits
&= ~ ((1 << (int) RID_TYPEDEF
) | (1 << (int) RID_REGISTER
)
4271 | (1 << (int) RID_AUTO
) | (1 << (int) RID_STATIC
)
4272 | (1 << (int) RID_EXTERN
));
4275 else if (specbits
& 1 << (int) RID_EXTERN
&& initialized
&& ! funcdef_flag
)
4277 /* `extern' with initialization is invalid if not at top level. */
4278 if (current_binding_level
== global_binding_level
)
4279 warning ("`%s' initialized and declared `extern'", name
);
4281 error ("`%s' has both `extern' and initializer", name
);
4283 else if (specbits
& 1 << (int) RID_EXTERN
&& funcdef_flag
4284 && current_binding_level
!= global_binding_level
)
4285 error ("nested function `%s' declared `extern'", name
);
4286 else if (current_binding_level
== global_binding_level
4287 && specbits
& (1 << (int) RID_AUTO
))
4288 error ("top-level declaration of `%s' specifies `auto'", name
);
4289 else if ((specbits
& 1 << (int) RID_ITERATOR
)
4290 && TREE_CODE (declarator
) != IDENTIFIER_NODE
)
4292 error ("iterator `%s' has derived type", name
);
4293 type
= error_mark_node
;
4295 else if ((specbits
& 1 << (int) RID_ITERATOR
)
4296 && TREE_CODE (type
) != INTEGER_TYPE
)
4298 error ("iterator `%s' has noninteger type", name
);
4299 type
= error_mark_node
;
4303 /* Now figure out the structure of the declarator proper.
4304 Descend through it, creating more complex types, until we reach
4305 the declared identifier (or NULL_TREE, in an absolute declarator). */
4307 while (declarator
&& TREE_CODE (declarator
) != IDENTIFIER_NODE
)
4309 if (type
== error_mark_node
)
4311 declarator
= TREE_OPERAND (declarator
, 0);
4315 /* Each level of DECLARATOR is either an ARRAY_REF (for ...[..]),
4316 an INDIRECT_REF (for *...),
4317 a CALL_EXPR (for ...(...)),
4318 an identifier (for the name being declared)
4319 or a null pointer (for the place in an absolute declarator
4320 where the name was omitted).
4321 For the last two cases, we have just exited the loop.
4323 At this point, TYPE is the type of elements of an array,
4324 or for a function to return, or for a pointer to point to.
4325 After this sequence of ifs, TYPE is the type of the
4326 array or function or pointer, and DECLARATOR has had its
4327 outermost layer removed. */
4329 if (TREE_CODE (declarator
) == ARRAY_REF
)
4331 register tree itype
= NULL_TREE
;
4332 register tree size
= TREE_OPERAND (declarator
, 1);
4333 /* An uninitialized decl with `extern' is a reference. */
4334 int extern_ref
= !initialized
&& (specbits
& (1 << (int) RID_EXTERN
));
4335 /* The index is a signed object `sizetype' bits wide. */
4336 tree index_type
= signed_type (sizetype
);
4338 declarator
= TREE_OPERAND (declarator
, 0);
4340 /* Check for some types that there cannot be arrays of. */
4342 if (TYPE_MAIN_VARIANT (type
) == void_type_node
)
4344 error ("declaration of `%s' as array of voids", name
);
4345 type
= error_mark_node
;
4348 if (TREE_CODE (type
) == FUNCTION_TYPE
)
4350 error ("declaration of `%s' as array of functions", name
);
4351 type
= error_mark_node
;
4354 if (size
== error_mark_node
)
4355 type
= error_mark_node
;
4357 if (type
== error_mark_node
)
4360 /* If this is a block level extern, it must live past the end
4361 of the function so that we can check it against other extern
4362 declarations (IDENTIFIER_LIMBO_VALUE). */
4363 if (extern_ref
&& allocation_temporary_p ())
4364 end_temporary_allocation ();
4366 /* If size was specified, set ITYPE to a range-type for that size.
4367 Otherwise, ITYPE remains null. finish_decl may figure it out
4368 from an initial value. */
4372 /* Strip NON_LVALUE_EXPRs since we aren't using as an lvalue. */
4373 STRIP_TYPE_NOPS (size
);
4375 if (TREE_CODE (TREE_TYPE (size
)) != INTEGER_TYPE
4376 && TREE_CODE (TREE_TYPE (size
)) != ENUMERAL_TYPE
)
4378 error ("size of array `%s' has non-integer type", name
);
4379 size
= integer_one_node
;
4382 if (pedantic
&& integer_zerop (size
))
4383 pedwarn ("ANSI C forbids zero-size array `%s'", name
);
4385 if (TREE_CODE (size
) == INTEGER_CST
)
4387 constant_expression_warning (size
);
4388 if (tree_int_cst_sgn (size
) < 0)
4390 error ("size of array `%s' is negative", name
);
4391 size
= integer_one_node
;
4396 /* Make sure the array size remains visibly nonconstant
4397 even if it is (eg) a const variable with known value. */
4402 if (TREE_CONSTANT (size
))
4403 pedwarn ("ANSI C forbids array `%s' whose size can't be evaluated", name
);
4405 pedwarn ("ANSI C forbids variable-size array `%s'", name
);
4409 /* Convert size to index_type, so that if it is a variable
4410 the computations will be done in the proper mode. */
4411 itype
= fold (build (MINUS_EXPR
, index_type
,
4412 convert (index_type
, size
),
4413 convert (index_type
, size_one_node
)));
4416 itype
= variable_size (itype
);
4417 itype
= build_index_type (itype
);
4420 #if 0 /* This had bad results for pointers to arrays, as in
4421 union incomplete (*foo)[4]; */
4422 /* Complain about arrays of incomplete types, except in typedefs. */
4424 if (TYPE_SIZE (type
) == 0
4425 /* Avoid multiple warnings for nested array types. */
4426 && TREE_CODE (type
) != ARRAY_TYPE
4427 && !(specbits
& (1 << (int) RID_TYPEDEF
))
4428 && !C_TYPE_BEING_DEFINED (type
))
4429 warning ("array type has incomplete element type");
4432 #if 0 /* We shouldn't have a function type here at all!
4433 Functions aren't allowed as array elements. */
4434 if (pedantic
&& TREE_CODE (type
) == FUNCTION_TYPE
4435 && (constp
|| volatilep
))
4436 pedwarn ("ANSI C forbids const or volatile function types");
4439 /* Build the array type itself, then merge any constancy or
4440 volatility into the target type. We must do it in this order
4441 to ensure that the TYPE_MAIN_VARIANT field of the array type
4442 is set correctly. */
4444 type
= build_array_type (type
, itype
);
4445 if (constp
|| volatilep
)
4446 type
= c_build_type_variant (type
, constp
, volatilep
);
4448 #if 0 /* don't clear these; leave them set so that the array type
4449 or the variable is itself const or volatile. */
4455 C_TYPE_VARIABLE_SIZE (type
) = 1;
4457 else if (TREE_CODE (declarator
) == CALL_EXPR
)
4459 int extern_ref
= (!(specbits
& (1 << (int) RID_AUTO
))
4460 || current_binding_level
== global_binding_level
);
4463 /* Declaring a function type.
4464 Make sure we have a valid type for the function to return. */
4465 if (type
== error_mark_node
)
4470 /* Warn about some types functions can't return. */
4472 if (TREE_CODE (type
) == FUNCTION_TYPE
)
4474 error ("`%s' declared as function returning a function", name
);
4475 type
= integer_type_node
;
4477 if (TREE_CODE (type
) == ARRAY_TYPE
)
4479 error ("`%s' declared as function returning an array", name
);
4480 type
= integer_type_node
;
4483 #ifndef TRADITIONAL_RETURN_FLOAT
4484 /* Traditionally, declaring return type float means double. */
4486 if (flag_traditional
&& TYPE_MAIN_VARIANT (type
) == float_type_node
)
4487 type
= double_type_node
;
4488 #endif /* TRADITIONAL_RETURN_FLOAT */
4490 /* If this is a block level extern, it must live past the end
4491 of the function so that we can check it against other extern
4492 declarations (IDENTIFIER_LIMBO_VALUE). */
4493 if (extern_ref
&& allocation_temporary_p ())
4494 end_temporary_allocation ();
4496 /* Construct the function type and go to the next
4497 inner layer of declarator. */
4499 arg_types
= grokparms (TREE_OPERAND (declarator
, 1),
4501 /* Say it's a definition
4502 only for the CALL_EXPR
4503 closest to the identifier. */
4504 && TREE_CODE (TREE_OPERAND (declarator
, 0)) == IDENTIFIER_NODE
);
4505 #if 0 /* This seems to be false. We turn off temporary allocation
4506 above in this function if -traditional.
4507 And this code caused inconsistent results with prototypes:
4508 callers would ignore them, and pass arguments wrong. */
4510 /* Omit the arg types if -traditional, since the arg types
4511 and the list links might not be permanent. */
4512 type
= build_function_type (type
,
4514 ? NULL_TREE
: arg_types
);
4516 /* ANSI seems to say that `const int foo ();'
4517 does not make the function foo const. */
4518 if (constp
|| volatilep
)
4519 type
= c_build_type_variant (type
, constp
, volatilep
);
4523 type
= build_function_type (type
, arg_types
);
4524 declarator
= TREE_OPERAND (declarator
, 0);
4526 /* Set the TYPE_CONTEXTs for each tagged type which is local to
4527 the formal parameter list of this FUNCTION_TYPE to point to
4528 the FUNCTION_TYPE node itself. */
4533 for (link
= current_function_parm_tags
;
4535 link
= TREE_CHAIN (link
))
4536 TYPE_CONTEXT (TREE_VALUE (link
)) = type
;
4539 else if (TREE_CODE (declarator
) == INDIRECT_REF
)
4541 /* Merge any constancy or volatility into the target type
4544 if (pedantic
&& TREE_CODE (type
) == FUNCTION_TYPE
4545 && (constp
|| volatilep
))
4546 pedwarn ("ANSI C forbids const or volatile function types");
4547 if (constp
|| volatilep
)
4548 type
= c_build_type_variant (type
, constp
, volatilep
);
4553 type
= build_pointer_type (type
);
4555 /* Process a list of type modifier keywords
4556 (such as const or volatile) that were given inside the `*'. */
4558 if (TREE_TYPE (declarator
))
4560 register tree typemodlist
;
4562 for (typemodlist
= TREE_TYPE (declarator
); typemodlist
;
4563 typemodlist
= TREE_CHAIN (typemodlist
))
4565 if (TREE_VALUE (typemodlist
) == ridpointers
[(int) RID_CONST
])
4567 else if (TREE_VALUE (typemodlist
) == ridpointers
[(int) RID_VOLATILE
])
4572 error ("invalid type modifier within pointer declarator");
4576 pedwarn ("duplicate `const'");
4578 pedwarn ("duplicate `volatile'");
4581 declarator
= TREE_OPERAND (declarator
, 0);
4588 /* Now TYPE has the actual type. */
4590 /* If this is declaring a typedef name, return a TYPE_DECL. */
4592 if (specbits
& (1 << (int) RID_TYPEDEF
))
4595 /* Note that the grammar rejects storage classes
4596 in typenames, fields or parameters */
4597 if (pedantic
&& TREE_CODE (type
) == FUNCTION_TYPE
4598 && (constp
|| volatilep
))
4599 pedwarn ("ANSI C forbids const or volatile function types");
4600 if (constp
|| volatilep
)
4601 type
= c_build_type_variant (type
, constp
, volatilep
);
4603 decl
= build_decl (TYPE_DECL
, declarator
, type
);
4604 if ((specbits
& (1 << (int) RID_SIGNED
))
4605 || (typedef_decl
&& C_TYPEDEF_EXPLICITLY_SIGNED (typedef_decl
)))
4606 C_TYPEDEF_EXPLICITLY_SIGNED (decl
) = 1;
4610 /* Detect the case of an array type of unspecified size
4611 which came, as such, direct from a typedef name.
4612 We must copy the type, so that each identifier gets
4613 a distinct type, so that each identifier's size can be
4614 controlled separately by its own initializer. */
4616 if (type
!= 0 && typedef_type
!= 0
4617 && TYPE_MAIN_VARIANT (type
) == TYPE_MAIN_VARIANT (typedef_type
)
4618 && TREE_CODE (type
) == ARRAY_TYPE
&& TYPE_DOMAIN (type
) == 0)
4620 type
= build_array_type (TREE_TYPE (type
), 0);
4622 C_TYPE_VARIABLE_SIZE (type
) = 1;
4625 /* If this is a type name (such as, in a cast or sizeof),
4626 compute the type and return it now. */
4628 if (decl_context
== TYPENAME
)
4630 /* Note that the grammar rejects storage classes
4631 in typenames, fields or parameters */
4632 if (pedantic
&& TREE_CODE (type
) == FUNCTION_TYPE
4633 && (constp
|| volatilep
))
4634 pedwarn ("ANSI C forbids const or volatile function types");
4635 if (constp
|| volatilep
)
4636 type
= c_build_type_variant (type
, constp
, volatilep
);
4641 /* Aside from typedefs and type names (handle above),
4642 `void' at top level (not within pointer)
4643 is allowed only in public variables.
4644 We don't complain about parms either, but that is because
4645 a better error message can be made later. */
4647 if (TYPE_MAIN_VARIANT (type
) == void_type_node
&& decl_context
!= PARM
4648 && ! ((decl_context
!= FIELD
&& TREE_CODE (type
) != FUNCTION_TYPE
)
4649 && ((specbits
& (1 << (int) RID_EXTERN
))
4650 || (current_binding_level
== global_binding_level
4652 & ((1 << (int) RID_STATIC
) | (1 << (int) RID_REGISTER
)))))))
4654 error ("variable or field `%s' declared void",
4655 IDENTIFIER_POINTER (declarator
));
4656 type
= integer_type_node
;
4659 /* Now create the decl, which may be a VAR_DECL, a PARM_DECL
4660 or a FUNCTION_DECL, depending on DECL_CONTEXT and TYPE. */
4665 if (decl_context
== PARM
)
4667 tree type_as_written
= type
;
4670 /* A parameter declared as an array of T is really a pointer to T.
4671 One declared as a function is really a pointer to a function. */
4673 if (TREE_CODE (type
) == ARRAY_TYPE
)
4675 /* Transfer const-ness of array into that of type pointed to. */
4676 type
= TREE_TYPE (type
);
4677 if (constp
|| volatilep
)
4678 type
= c_build_type_variant (type
, constp
, volatilep
);
4679 type
= build_pointer_type (type
);
4680 volatilep
= constp
= 0;
4683 else if (TREE_CODE (type
) == FUNCTION_TYPE
)
4685 if (pedantic
&& (constp
|| volatilep
))
4686 pedwarn ("ANSI C forbids const or volatile function types");
4687 if (constp
|| volatilep
)
4688 type
= c_build_type_variant (type
, constp
, volatilep
);
4689 type
= build_pointer_type (type
);
4690 volatilep
= constp
= 0;
4693 decl
= build_decl (PARM_DECL
, declarator
, type
);
4695 C_DECL_VARIABLE_SIZE (decl
) = 1;
4697 /* Compute the type actually passed in the parmlist,
4698 for the case where there is no prototype.
4699 (For example, shorts and chars are passed as ints.)
4700 When there is a prototype, this is overridden later. */
4702 DECL_ARG_TYPE (decl
) = type
;
4703 main_type
= (type
== error_mark_node
4705 : TYPE_MAIN_VARIANT (type
));
4706 if (main_type
== float_type_node
)
4707 DECL_ARG_TYPE (decl
) = double_type_node
;
4708 /* Don't use TYPE_PRECISION to decide whether to promote,
4709 because we should convert short if it's the same size as int,
4710 but we should not convert long if it's the same size as int. */
4711 else if (TREE_CODE (main_type
) != ERROR_MARK
4712 && C_PROMOTING_INTEGER_TYPE_P (main_type
))
4714 if (TYPE_PRECISION (type
) == TYPE_PRECISION (integer_type_node
)
4715 && TREE_UNSIGNED (type
))
4716 DECL_ARG_TYPE (decl
) = unsigned_type_node
;
4718 DECL_ARG_TYPE (decl
) = integer_type_node
;
4721 DECL_ARG_TYPE_AS_WRITTEN (decl
) = type_as_written
;
4723 else if (decl_context
== FIELD
)
4725 /* Structure field. It may not be a function. */
4727 if (TREE_CODE (type
) == FUNCTION_TYPE
)
4729 error ("field `%s' declared as a function",
4730 IDENTIFIER_POINTER (declarator
));
4731 type
= build_pointer_type (type
);
4733 else if (TREE_CODE (type
) != ERROR_MARK
&& TYPE_SIZE (type
) == 0)
4735 error ("field `%s' has incomplete type",
4736 IDENTIFIER_POINTER (declarator
));
4737 type
= error_mark_node
;
4739 /* Move type qualifiers down to element of an array. */
4740 if (TREE_CODE (type
) == ARRAY_TYPE
&& (constp
|| volatilep
))
4742 type
= build_array_type (c_build_type_variant (TREE_TYPE (type
),
4744 TYPE_DOMAIN (type
));
4745 #if 0 /* Leave the field const or volatile as well. */
4746 constp
= volatilep
= 0;
4749 decl
= build_decl (FIELD_DECL
, declarator
, type
);
4751 C_DECL_VARIABLE_SIZE (decl
) = 1;
4753 else if (TREE_CODE (type
) == FUNCTION_TYPE
)
4755 /* Every function declaration is "external"
4756 except for those which are inside a function body
4757 in which `auto' is used.
4758 That is a case not specified by ANSI C,
4759 and we use it for forward declarations for nested functions. */
4760 int extern_ref
= (!(specbits
& (1 << (int) RID_AUTO
))
4761 || current_binding_level
== global_binding_level
);
4763 if (specbits
& (1 << (int) RID_AUTO
)
4764 && (pedantic
|| current_binding_level
== global_binding_level
))
4765 pedwarn ("invalid storage class for function `%s'",
4766 IDENTIFIER_POINTER (declarator
));
4767 if (specbits
& (1 << (int) RID_REGISTER
))
4768 error ("invalid storage class for function `%s'",
4769 IDENTIFIER_POINTER (declarator
));
4770 /* Function declaration not at top level.
4771 Storage classes other than `extern' are not allowed
4772 and `extern' makes no difference. */
4773 if (current_binding_level
!= global_binding_level
4774 && (specbits
& ((1 << (int) RID_STATIC
) | (1 << (int) RID_INLINE
)))
4776 pedwarn ("invalid storage class for function `%s'",
4777 IDENTIFIER_POINTER (declarator
));
4779 /* If this is a block level extern, it must live past the end
4780 of the function so that we can check it against other
4781 extern declarations (IDENTIFIER_LIMBO_VALUE). */
4782 if (extern_ref
&& allocation_temporary_p ())
4783 end_temporary_allocation ();
4785 decl
= build_decl (FUNCTION_DECL
, declarator
, type
);
4787 if (pedantic
&& (constp
|| volatilep
)
4788 && ! DECL_IN_SYSTEM_HEADER (decl
))
4789 pedwarn ("ANSI C forbids const or volatile functions");
4792 && TREE_TYPE (TREE_TYPE (decl
)) != void_type_node
)
4793 warning ("`noreturn' function returns non-void value");
4796 DECL_EXTERNAL (decl
) = 1;
4797 /* Record absence of global scope for `static' or `auto'. */
4799 = !(specbits
& ((1 << (int) RID_STATIC
) | (1 << (int) RID_AUTO
)));
4800 /* Record presence of `inline', if it is reasonable. */
4803 tree last
= tree_last (TYPE_ARG_TYPES (type
));
4805 if (! strcmp (IDENTIFIER_POINTER (declarator
), "main"))
4806 warning ("cannot inline function `main'");
4807 else if (last
&& (TYPE_MAIN_VARIANT (TREE_VALUE (last
))
4809 warning ("inline declaration ignored for function with `...'");
4811 /* Assume that otherwise the function can be inlined. */
4812 DECL_INLINE (decl
) = 1;
4814 if (specbits
& (1 << (int) RID_EXTERN
))
4815 current_extern_inline
= 1;
4820 /* It's a variable. */
4821 /* An uninitialized decl with `extern' is a reference. */
4822 int extern_ref
= !initialized
&& (specbits
& (1 << (int) RID_EXTERN
));
4824 /* Move type qualifiers down to element of an array. */
4825 if (TREE_CODE (type
) == ARRAY_TYPE
&& (constp
|| volatilep
))
4827 type
= build_array_type (c_build_type_variant (TREE_TYPE (type
),
4829 TYPE_DOMAIN (type
));
4830 #if 0 /* Leave the variable const or volatile as well. */
4831 constp
= volatilep
= 0;
4835 /* If this is a block level extern, it must live past the end
4836 of the function so that we can check it against other
4837 extern declarations (IDENTIFIER_LIMBO_VALUE). */
4838 if (extern_ref
&& allocation_temporary_p ())
4839 end_temporary_allocation ();
4841 decl
= build_decl (VAR_DECL
, declarator
, type
);
4843 C_DECL_VARIABLE_SIZE (decl
) = 1;
4846 pedwarn_with_decl (decl
, "variable `%s' declared `inline'");
4848 DECL_EXTERNAL (decl
) = extern_ref
;
4849 /* At top level, the presence of a `static' or `register' storage
4850 class specifier, or the absence of all storage class specifiers
4851 makes this declaration a definition (perhaps tentative). Also,
4852 the absence of both `static' and `register' makes it public. */
4853 if (current_binding_level
== global_binding_level
)
4857 & ((1 << (int) RID_STATIC
) | (1 << (int) RID_REGISTER
)));
4858 TREE_STATIC (decl
) = ! DECL_EXTERNAL (decl
);
4860 /* Not at top level, only `static' makes a static definition. */
4863 TREE_STATIC (decl
) = (specbits
& (1 << (int) RID_STATIC
)) != 0;
4864 TREE_PUBLIC (decl
) = DECL_EXTERNAL (decl
);
4867 if (specbits
& 1 << (int) RID_ITERATOR
)
4868 ITERATOR_P (decl
) = 1;
4871 /* Record `register' declaration for warnings on &
4872 and in case doing stupid register allocation. */
4874 if (specbits
& (1 << (int) RID_REGISTER
))
4875 DECL_REGISTER (decl
) = 1;
4877 /* Record constancy and volatility. */
4880 TREE_READONLY (decl
) = 1;
4883 TREE_SIDE_EFFECTS (decl
) = 1;
4884 TREE_THIS_VOLATILE (decl
) = 1;
4886 /* If a type has volatile components, it should be stored in memory.
4887 Otherwise, the fact that those components are volatile
4888 will be ignored, and would even crash the compiler. */
4889 if (C_TYPE_FIELDS_VOLATILE (TREE_TYPE (decl
)))
4890 mark_addressable (decl
);
4898 /* Decode the parameter-list info for a function type or function definition.
4899 The argument is the value returned by `get_parm_info' (or made in parse.y
4900 if there is an identifier list instead of a parameter decl list).
4901 These two functions are separate because when a function returns
4902 or receives functions then each is called multiple times but the order
4903 of calls is different. The last call to `grokparms' is always the one
4904 that contains the formal parameter names of a function definition.
4906 Store in `last_function_parms' a chain of the decls of parms.
4907 Also store in `last_function_parm_tags' a chain of the struct, union,
4908 and enum tags declared among the parms.
4910 Return a list of arg types to use in the FUNCTION_TYPE for this function.
4912 FUNCDEF_FLAG is nonzero for a function definition, 0 for
4913 a mere declaration. A nonempty identifier-list gets an error message
4914 when FUNCDEF_FLAG is zero. */
4917 grokparms (parms_info
, funcdef_flag
)
4921 tree first_parm
= TREE_CHAIN (parms_info
);
4923 last_function_parms
= TREE_PURPOSE (parms_info
);
4924 last_function_parm_tags
= TREE_VALUE (parms_info
);
4926 if (warn_strict_prototypes
&& first_parm
== 0 && !funcdef_flag
4927 && !in_system_header
)
4928 warning ("function declaration isn't a prototype");
4931 && TREE_CODE (TREE_VALUE (first_parm
)) == IDENTIFIER_NODE
)
4934 pedwarn ("parameter names (without types) in function declaration");
4936 last_function_parms
= first_parm
;
4943 /* We no longer test FUNCDEF_FLAG.
4944 If the arg types are incomplete in a declaration,
4945 they must include undefined tags.
4946 These tags can never be defined in the scope of the declaration,
4947 so the types can never be completed,
4948 and no call can be compiled successfully. */
4950 /* In a fcn definition, arg types must be complete. */
4953 for (parm
= last_function_parms
, typelt
= first_parm
;
4955 parm
= TREE_CHAIN (parm
))
4956 /* Skip over any enumeration constants declared here. */
4957 if (TREE_CODE (parm
) == PARM_DECL
)
4959 /* Barf if the parameter itself has an incomplete type. */
4960 tree type
= TREE_VALUE (typelt
);
4961 if (TYPE_SIZE (type
) == 0)
4963 if (funcdef_flag
&& DECL_NAME (parm
) != 0)
4964 error ("parameter `%s' has incomplete type",
4965 IDENTIFIER_POINTER (DECL_NAME (parm
)));
4967 warning ("parameter has incomplete type");
4970 TREE_VALUE (typelt
) = error_mark_node
;
4971 TREE_TYPE (parm
) = error_mark_node
;
4974 #if 0 /* This has been replaced by parm_tags_warning
4975 which uses a more accurate criterion for what to warn about. */
4978 /* Now warn if is a pointer to an incomplete type. */
4979 while (TREE_CODE (type
) == POINTER_TYPE
4980 || TREE_CODE (type
) == REFERENCE_TYPE
)
4981 type
= TREE_TYPE (type
);
4982 type
= TYPE_MAIN_VARIANT (type
);
4983 if (TYPE_SIZE (type
) == 0)
4985 if (DECL_NAME (parm
) != 0)
4986 warning ("parameter `%s' points to incomplete type",
4987 IDENTIFIER_POINTER (DECL_NAME (parm
)));
4989 warning ("parameter points to incomplete type");
4993 typelt
= TREE_CHAIN (typelt
);
4996 /* Allocate the list of types the way we allocate a type. */
4997 if (first_parm
&& ! TREE_PERMANENT (first_parm
))
4999 /* Construct a copy of the list of types
5000 on the saveable obstack. */
5002 for (typelt
= first_parm
; typelt
; typelt
= TREE_CHAIN (typelt
))
5003 result
= saveable_tree_cons (NULL_TREE
, TREE_VALUE (typelt
),
5005 return nreverse (result
);
5008 /* The list we have is permanent already. */
5014 /* Return a tree_list node with info on a parameter list just parsed.
5015 The TREE_PURPOSE is a chain of decls of those parms.
5016 The TREE_VALUE is a list of structure, union and enum tags defined.
5017 The TREE_CHAIN is a list of argument types to go in the FUNCTION_TYPE.
5018 This tree_list node is later fed to `grokparms'.
5020 VOID_AT_END nonzero means append `void' to the end of the type-list.
5021 Zero means the parmlist ended with an ellipsis so don't append `void'. */
5024 get_parm_info (void_at_end
)
5027 register tree decl
, t
;
5028 register tree types
= 0;
5030 tree tags
= gettags ();
5031 tree parms
= getdecls ();
5033 tree order
= current_binding_level
->parm_order
;
5035 /* Just `void' (and no ellipsis) is special. There are really no parms. */
5036 if (void_at_end
&& parms
!= 0
5037 && TREE_CHAIN (parms
) == 0
5038 && TYPE_MAIN_VARIANT (TREE_TYPE (parms
)) == void_type_node
5039 && DECL_NAME (parms
) == 0)
5042 storedecls (NULL_TREE
);
5043 return saveable_tree_cons (NULL_TREE
, NULL_TREE
,
5044 saveable_tree_cons (NULL_TREE
, void_type_node
, NULL_TREE
));
5047 /* Extract enumerator values and other non-parms declared with the parms.
5048 Likewise any forward parm decls that didn't have real parm decls. */
5049 for (decl
= parms
; decl
; )
5051 tree next
= TREE_CHAIN (decl
);
5053 if (TREE_CODE (decl
) != PARM_DECL
)
5055 TREE_CHAIN (decl
) = new_parms
;
5058 else if (TREE_ASM_WRITTEN (decl
))
5060 error_with_decl (decl
, "parameter `%s' has just a forward declaration");
5061 TREE_CHAIN (decl
) = new_parms
;
5067 /* Put the parm decls back in the order they were in in the parm list. */
5068 for (t
= order
; t
; t
= TREE_CHAIN (t
))
5071 TREE_CHAIN (TREE_VALUE (t
)) = TREE_VALUE (TREE_CHAIN (t
));
5073 TREE_CHAIN (TREE_VALUE (t
)) = 0;
5076 new_parms
= chainon (order
? nreverse (TREE_VALUE (order
)) : 0,
5079 /* Store the parmlist in the binding level since the old one
5080 is no longer a valid list. (We have changed the chain pointers.) */
5081 storedecls (new_parms
);
5083 for (decl
= new_parms
; decl
; decl
= TREE_CHAIN (decl
))
5084 /* There may also be declarations for enumerators if an enumeration
5085 type is declared among the parms. Ignore them here. */
5086 if (TREE_CODE (decl
) == PARM_DECL
)
5088 /* Since there is a prototype,
5089 args are passed in their declared types. */
5090 tree type
= TREE_TYPE (decl
);
5091 DECL_ARG_TYPE (decl
) = type
;
5092 #ifdef PROMOTE_PROTOTYPES
5093 if ((TREE_CODE (type
) == INTEGER_TYPE
5094 || TREE_CODE (type
) == ENUMERAL_TYPE
)
5095 && TYPE_PRECISION (type
) < TYPE_PRECISION (integer_type_node
))
5096 DECL_ARG_TYPE (decl
) = integer_type_node
;
5099 types
= saveable_tree_cons (NULL_TREE
, TREE_TYPE (decl
), types
);
5100 if (TYPE_MAIN_VARIANT (TREE_VALUE (types
)) == void_type_node
&& ! erred
5101 && DECL_NAME (decl
) == 0)
5103 error ("`void' in parameter list must be the entire list");
5109 return saveable_tree_cons (new_parms
, tags
,
5110 nreverse (saveable_tree_cons (NULL_TREE
, void_type_node
, types
)));
5112 return saveable_tree_cons (new_parms
, tags
, nreverse (types
));
5115 /* At end of parameter list, warn about any struct, union or enum tags
5116 defined within. Do so because these types cannot ever become complete. */
5119 parmlist_tags_warning ()
5124 for (elt
= current_binding_level
->tags
; elt
; elt
= TREE_CHAIN (elt
))
5126 enum tree_code code
= TREE_CODE (TREE_VALUE (elt
));
5127 /* An anonymous union parm type is meaningful as a GNU extension.
5128 So don't warn for that. */
5129 if (code
== UNION_TYPE
&& !pedantic
)
5131 if (TREE_PURPOSE (elt
) != 0)
5132 warning ("`%s %s' declared inside parameter list",
5133 (code
== RECORD_TYPE
? "struct"
5134 : code
== UNION_TYPE
? "union"
5136 IDENTIFIER_POINTER (TREE_PURPOSE (elt
)));
5138 warning ("anonymous %s declared inside parameter list",
5139 (code
== RECORD_TYPE
? "struct"
5140 : code
== UNION_TYPE
? "union"
5145 warning ("its scope is only this definition or declaration,");
5146 warning ("which is probably not what you want.");
5152 /* Get the struct, enum or union (CODE says which) with tag NAME.
5153 Define the tag as a forward-reference if it is not defined. */
5156 xref_tag (code
, name
)
5157 enum tree_code code
;
5160 int temporary
= allocation_temporary_p ();
5162 /* If a cross reference is requested, look up the type
5163 already defined for this tag and return it. */
5165 register tree ref
= lookup_tag (code
, name
, current_binding_level
, 0);
5166 /* Even if this is the wrong type of tag, return what we found.
5167 There will be an error message anyway, from pending_xref_error.
5168 If we create an empty xref just for an invalid use of the type,
5169 the main result is to create lots of superfluous error messages. */
5173 push_obstacks_nochange ();
5175 if (current_binding_level
== global_binding_level
&& temporary
)
5176 end_temporary_allocation ();
5178 /* If no such tag is yet defined, create a forward-reference node
5179 and record it as the "definition".
5180 When a real declaration of this type is found,
5181 the forward-reference will be altered into a real type. */
5183 ref
= make_node (code
);
5184 if (code
== ENUMERAL_TYPE
)
5186 /* (In ANSI, Enums can be referred to only if already defined.) */
5188 pedwarn ("ANSI C forbids forward references to `enum' types");
5189 /* Give the type a default layout like unsigned int
5190 to avoid crashing if it does not get defined. */
5191 TYPE_MODE (ref
) = TYPE_MODE (unsigned_type_node
);
5192 TYPE_ALIGN (ref
) = TYPE_ALIGN (unsigned_type_node
);
5193 TREE_UNSIGNED (ref
) = 1;
5194 TYPE_PRECISION (ref
) = TYPE_PRECISION (unsigned_type_node
);
5195 TYPE_MIN_VALUE (ref
) = TYPE_MIN_VALUE (unsigned_type_node
);
5196 TYPE_MAX_VALUE (ref
) = TYPE_MAX_VALUE (unsigned_type_node
);
5199 pushtag (name
, ref
);
5206 /* Make sure that the tag NAME is defined *in the current binding level*
5207 at least as a forward reference.
5208 CODE says which kind of tag NAME ought to be.
5210 We also do a push_obstacks_nochange
5211 whose matching pop is in finish_struct. */
5214 start_struct (code
, name
)
5215 enum tree_code code
;
5218 /* If there is already a tag defined at this binding level
5219 (as a forward reference), just return it. */
5221 register tree ref
= 0;
5223 push_obstacks_nochange ();
5224 if (current_binding_level
== global_binding_level
)
5225 end_temporary_allocation ();
5228 ref
= lookup_tag (code
, name
, current_binding_level
, 1);
5229 if (ref
&& TREE_CODE (ref
) == code
)
5231 C_TYPE_BEING_DEFINED (ref
) = 1;
5232 if (TYPE_FIELDS (ref
))
5233 error ((code
== UNION_TYPE
? "redefinition of `union %s'"
5234 : "redefinition of `struct %s'"),
5235 IDENTIFIER_POINTER (name
));
5240 /* Otherwise create a forward-reference just so the tag is in scope. */
5242 ref
= make_node (code
);
5243 pushtag (name
, ref
);
5244 C_TYPE_BEING_DEFINED (ref
) = 1;
5248 /* Process the specs, declarator (NULL if omitted) and width (NULL if omitted)
5249 of a structure component, returning a FIELD_DECL node.
5250 WIDTH is non-NULL for bit fields only, and is an INTEGER_CST node.
5252 This is done during the parsing of the struct declaration.
5253 The FIELD_DECL nodes are chained together and the lot of them
5254 are ultimately passed to `build_struct' to make the RECORD_TYPE node. */
5257 grokfield (filename
, line
, declarator
, declspecs
, width
)
5260 tree declarator
, declspecs
, width
;
5264 /* The corresponding pop_obstacks is in finish_decl. */
5265 push_obstacks_nochange ();
5267 value
= grokdeclarator (declarator
, declspecs
, width
? BITFIELD
: FIELD
, 0);
5269 finish_decl (value
, NULL_TREE
, NULL_TREE
);
5270 DECL_INITIAL (value
) = width
;
5272 maybe_objc_check_decl (value
);
5276 /* Function to help qsort sort FIELD_DECLs by name order. */
5279 field_decl_cmp (x
, y
)
5282 return (long)DECL_NAME (*x
) - (long)DECL_NAME (*y
);
5285 /* Fill in the fields of a RECORD_TYPE or UNION_TYPE node, T.
5286 FIELDLIST is a chain of FIELD_DECL nodes for the fields.
5288 We also do a pop_obstacks to match the push in start_struct. */
5291 finish_struct (t
, fieldlist
)
5292 register tree t
, fieldlist
;
5296 int toplevel
= global_binding_level
== current_binding_level
;
5298 /* If this type was previously laid out as a forward reference,
5299 make sure we lay it out again. */
5303 /* Nameless union parm types are useful as GCC extension. */
5304 if (! (TREE_CODE (t
) == UNION_TYPE
&& TYPE_NAME (t
) == 0) && !pedantic
)
5305 /* Otherwise, warn about any struct or union def. in parmlist. */
5306 if (in_parm_level_p ())
5309 pedwarn ((TREE_CODE (t
) == UNION_TYPE
? "union defined inside parms"
5310 : "structure defined inside parms"));
5311 else if (! flag_traditional
)
5312 warning ((TREE_CODE (t
) == UNION_TYPE
? "union defined inside parms"
5313 : "structure defined inside parms"));
5316 old_momentary
= suspend_momentary ();
5318 if (fieldlist
== 0 && pedantic
)
5319 pedwarn ((TREE_CODE (t
) == UNION_TYPE
? "union has no members"
5320 : "structure has no members"));
5322 /* Install struct as DECL_CONTEXT of each field decl.
5323 Also process specified field sizes.
5324 Set DECL_FIELD_SIZE to the specified size, or 0 if none specified.
5325 The specified size is found in the DECL_INITIAL.
5326 Store 0 there, except for ": 0" fields (so we can find them
5327 and delete them, below). */
5329 for (x
= fieldlist
; x
; x
= TREE_CHAIN (x
))
5331 DECL_CONTEXT (x
) = t
;
5332 DECL_FIELD_SIZE (x
) = 0;
5334 /* If any field is const, the structure type is pseudo-const. */
5335 if (TREE_READONLY (x
))
5336 C_TYPE_FIELDS_READONLY (t
) = 1;
5339 /* A field that is pseudo-const makes the structure likewise. */
5340 tree t1
= TREE_TYPE (x
);
5341 while (TREE_CODE (t1
) == ARRAY_TYPE
)
5342 t1
= TREE_TYPE (t1
);
5343 if ((TREE_CODE (t1
) == RECORD_TYPE
|| TREE_CODE (t1
) == UNION_TYPE
)
5344 && C_TYPE_FIELDS_READONLY (t1
))
5345 C_TYPE_FIELDS_READONLY (t
) = 1;
5348 /* Any field that is volatile means variables of this type must be
5349 treated in some ways as volatile. */
5350 if (TREE_THIS_VOLATILE (x
))
5351 C_TYPE_FIELDS_VOLATILE (t
) = 1;
5353 /* Any field of nominal variable size implies structure is too. */
5354 if (C_DECL_VARIABLE_SIZE (x
))
5355 C_TYPE_VARIABLE_SIZE (t
) = 1;
5357 /* Detect invalid nested redefinition. */
5358 if (TREE_TYPE (x
) == t
)
5359 error ("nested redefinition of `%s'",
5360 IDENTIFIER_POINTER (TYPE_NAME (t
)));
5362 /* Detect invalid bit-field size. */
5363 if (DECL_INITIAL (x
))
5364 STRIP_NOPS (DECL_INITIAL (x
));
5365 if (DECL_INITIAL (x
))
5367 if (TREE_CODE (DECL_INITIAL (x
)) == INTEGER_CST
)
5368 constant_expression_warning (DECL_INITIAL (x
));
5371 error_with_decl (x
, "bit-field `%s' width not an integer constant");
5372 DECL_INITIAL (x
) = NULL
;
5376 /* Detect invalid bit-field type. */
5377 if (DECL_INITIAL (x
)
5378 && TREE_CODE (TREE_TYPE (x
)) != INTEGER_TYPE
5379 && TREE_CODE (TREE_TYPE (x
)) != ENUMERAL_TYPE
)
5381 error_with_decl (x
, "bit-field `%s' has invalid type");
5382 DECL_INITIAL (x
) = NULL
;
5384 if (DECL_INITIAL (x
) && pedantic
5385 && TYPE_MAIN_VARIANT (TREE_TYPE (x
)) != integer_type_node
5386 && TYPE_MAIN_VARIANT (TREE_TYPE (x
)) != unsigned_type_node
5387 /* Accept an enum that's equivalent to int or unsigned int. */
5388 && !(TREE_CODE (TREE_TYPE (x
)) == ENUMERAL_TYPE
5389 && (TYPE_PRECISION (TREE_TYPE (x
))
5390 == TYPE_PRECISION (integer_type_node
))))
5391 pedwarn_with_decl (x
, "bit-field `%s' type invalid in ANSI C");
5393 /* Detect and ignore out of range field width. */
5394 if (DECL_INITIAL (x
))
5396 unsigned HOST_WIDE_INT width
= TREE_INT_CST_LOW (DECL_INITIAL (x
));
5398 if (tree_int_cst_sgn (DECL_INITIAL (x
)) < 0)
5400 DECL_INITIAL (x
) = NULL
;
5401 error_with_decl (x
, "negative width in bit-field `%s'");
5403 else if (TREE_INT_CST_HIGH (DECL_INITIAL (x
)) != 0
5404 || width
> TYPE_PRECISION (TREE_TYPE (x
)))
5406 DECL_INITIAL (x
) = NULL
;
5407 pedwarn_with_decl (x
, "width of `%s' exceeds its type");
5409 else if (width
== 0 && DECL_NAME (x
) != 0)
5411 error_with_decl (x
, "zero width for bit-field `%s'");
5412 DECL_INITIAL (x
) = NULL
;
5416 /* Process valid field width. */
5417 if (DECL_INITIAL (x
))
5419 register int width
= TREE_INT_CST_LOW (DECL_INITIAL (x
));
5421 DECL_FIELD_SIZE (x
) = width
;
5422 DECL_BIT_FIELD (x
) = 1;
5423 DECL_INITIAL (x
) = NULL
;
5427 /* field size 0 => force desired amount of alignment. */
5428 #ifdef EMPTY_FIELD_BOUNDARY
5429 DECL_ALIGN (x
) = MAX (DECL_ALIGN (x
), EMPTY_FIELD_BOUNDARY
);
5431 #ifdef PCC_BITFIELD_TYPE_MATTERS
5432 DECL_ALIGN (x
) = MAX (DECL_ALIGN (x
),
5433 TYPE_ALIGN (TREE_TYPE (x
)));
5437 else if (TREE_TYPE (x
) != error_mark_node
)
5439 int min_align
= (DECL_PACKED (x
) ? BITS_PER_UNIT
5440 : TYPE_ALIGN (TREE_TYPE (x
)));
5441 /* Non-bit-fields are aligned for their type, except packed
5442 fields which require only BITS_PER_UNIT alignment. */
5443 DECL_ALIGN (x
) = MAX (DECL_ALIGN (x
), min_align
);
5447 /* Now DECL_INITIAL is null on all members. */
5449 /* Delete all duplicate fields from the fieldlist */
5450 for (x
= fieldlist
; x
&& TREE_CHAIN (x
);)
5451 /* Anonymous fields aren't duplicates. */
5452 if (DECL_NAME (TREE_CHAIN (x
)) == 0)
5456 register tree y
= fieldlist
;
5460 if (DECL_NAME (y
) == DECL_NAME (TREE_CHAIN (x
)))
5466 if (DECL_NAME (y
) == DECL_NAME (TREE_CHAIN (x
)))
5468 error_with_decl (TREE_CHAIN (x
), "duplicate member `%s'");
5469 TREE_CHAIN (x
) = TREE_CHAIN (TREE_CHAIN (x
));
5471 else x
= TREE_CHAIN (x
);
5474 /* Now we have the nearly final fieldlist. Record it,
5475 then lay out the structure or union (including the fields). */
5477 TYPE_FIELDS (t
) = fieldlist
;
5481 /* Delete all zero-width bit-fields from the front of the fieldlist */
5483 && DECL_INITIAL (fieldlist
))
5484 fieldlist
= TREE_CHAIN (fieldlist
);
5485 /* Delete all such members from the rest of the fieldlist */
5486 for (x
= fieldlist
; x
;)
5488 if (TREE_CHAIN (x
) && DECL_INITIAL (TREE_CHAIN (x
)))
5489 TREE_CHAIN (x
) = TREE_CHAIN (TREE_CHAIN (x
));
5490 else x
= TREE_CHAIN (x
);
5493 /* Now we have the truly final field list.
5494 Store it in this type and in the variants. */
5496 TYPE_FIELDS (t
) = fieldlist
;
5498 /* If there are lots of fields, sort so we can look through them fast.
5499 We arbitrarily consider 16 or more elts to be "a lot". */
5503 for (x
= fieldlist
; x
; x
= TREE_CHAIN (x
))
5514 len
+= list_length (x
);
5515 /* Use the same allocation policy here that make_node uses, to
5516 ensure that this lives as long as the rest of the struct decl.
5517 All decls in an inline function need to be saved. */
5518 if (allocation_temporary_p ())
5519 space
= savealloc (sizeof (struct lang_type
) + len
* sizeof (tree
));
5521 space
= oballoc (sizeof (struct lang_type
) + len
* sizeof (tree
));
5523 TYPE_LANG_SPECIFIC (t
) = (struct lang_type
*) space
;
5524 TYPE_LANG_SPECIFIC (t
)->len
= len
;
5526 field_array
= &TYPE_LANG_SPECIFIC (t
)->elts
[0];
5528 for (x
= fieldlist
; x
; x
= TREE_CHAIN (x
))
5529 field_array
[len
++] = x
;
5531 qsort (field_array
, len
, sizeof (tree
), field_decl_cmp
);
5535 for (x
= TYPE_MAIN_VARIANT (t
); x
; x
= TYPE_NEXT_VARIANT (x
))
5537 TYPE_FIELDS (x
) = TYPE_FIELDS (t
);
5538 TYPE_LANG_SPECIFIC (x
) = TYPE_LANG_SPECIFIC (t
);
5539 TYPE_ALIGN (x
) = TYPE_ALIGN (t
);
5542 /* Promote each bit-field's type to int if it is narrower than that. */
5543 for (x
= fieldlist
; x
; x
= TREE_CHAIN (x
))
5544 if (DECL_BIT_FIELD (x
)
5545 && (C_PROMOTING_INTEGER_TYPE_P (TREE_TYPE (x
))
5546 || DECL_FIELD_SIZE (x
) < TYPE_PRECISION (integer_type_node
)))
5548 tree type
= TREE_TYPE (x
);
5550 /* Preserve unsignedness if traditional
5551 or if not really getting any wider. */
5552 if (TREE_UNSIGNED (type
)
5553 && (flag_traditional
5555 (TYPE_PRECISION (type
) == TYPE_PRECISION (integer_type_node
)
5557 DECL_FIELD_SIZE (x
) == TYPE_PRECISION (integer_type_node
))))
5558 TREE_TYPE (x
) = unsigned_type_node
;
5560 TREE_TYPE (x
) = integer_type_node
;
5563 /* If this structure or union completes the type of any previous
5564 variable declaration, lay it out and output its rtl. */
5566 if (current_binding_level
->n_incomplete
!= 0)
5569 for (decl
= current_binding_level
->names
; decl
; decl
= TREE_CHAIN (decl
))
5571 if (TREE_TYPE (decl
) == t
5572 && TREE_CODE (decl
) != TYPE_DECL
)
5574 layout_decl (decl
, 0);
5575 /* This is a no-op in c-lang.c or something real in objc-actions.c. */
5576 maybe_objc_check_decl (decl
);
5577 rest_of_decl_compilation (decl
, NULL_PTR
, toplevel
, 0);
5580 --current_binding_level
->n_incomplete
;
5582 else if (TYPE_SIZE (TREE_TYPE (decl
)) == 0
5583 && TREE_CODE (TREE_TYPE (decl
)) == ARRAY_TYPE
)
5585 tree element
= TREE_TYPE (decl
);
5586 while (TREE_CODE (element
) == ARRAY_TYPE
)
5587 element
= TREE_TYPE (element
);
5589 layout_array_type (TREE_TYPE (decl
));
5594 resume_momentary (old_momentary
);
5596 /* Finish debugging output for this type. */
5597 rest_of_type_compilation (t
, toplevel
);
5599 /* The matching push is in start_struct. */
5605 /* Lay out the type T, and its element type, and so on. */
5608 layout_array_type (t
)
5611 if (TREE_CODE (TREE_TYPE (t
)) == ARRAY_TYPE
)
5612 layout_array_type (TREE_TYPE (t
));
5616 /* Begin compiling the definition of an enumeration type.
5617 NAME is its name (or null if anonymous).
5618 Returns the type object, as yet incomplete.
5619 Also records info about it so that build_enumerator
5620 may be used to declare the individual values as they are read. */
5626 register tree enumtype
= 0;
5628 /* If this is the real definition for a previous forward reference,
5629 fill in the contents in the same object that used to be the
5630 forward reference. */
5633 enumtype
= lookup_tag (ENUMERAL_TYPE
, name
, current_binding_level
, 1);
5635 /* The corresponding pop_obstacks is in finish_enum. */
5636 push_obstacks_nochange ();
5637 /* If these symbols and types are global, make them permanent. */
5638 if (current_binding_level
== global_binding_level
)
5639 end_temporary_allocation ();
5641 if (enumtype
== 0 || TREE_CODE (enumtype
) != ENUMERAL_TYPE
)
5643 enumtype
= make_node (ENUMERAL_TYPE
);
5644 pushtag (name
, enumtype
);
5647 C_TYPE_BEING_DEFINED (enumtype
) = 1;
5649 if (TYPE_VALUES (enumtype
) != 0)
5651 /* This enum is a named one that has been declared already. */
5652 error ("redeclaration of `enum %s'", IDENTIFIER_POINTER (name
));
5654 /* Completely replace its old definition.
5655 The old enumerators remain defined, however. */
5656 TYPE_VALUES (enumtype
) = 0;
5659 enum_next_value
= integer_zero_node
;
5665 /* After processing and defining all the values of an enumeration type,
5666 install their decls in the enumeration type and finish it off.
5667 ENUMTYPE is the type object and VALUES a list of decl-value pairs.
5668 Returns ENUMTYPE. */
5671 finish_enum (enumtype
, values
)
5672 register tree enumtype
, values
;
5674 register tree pair
, tem
;
5675 tree minnode
= 0, maxnode
= 0;
5676 int lowprec
, highprec
, precision
;
5677 int toplevel
= global_binding_level
== current_binding_level
;
5679 if (in_parm_level_p ())
5680 warning ("enum defined inside parms");
5682 /* Calculate the maximum value of any enumerator in this type. */
5684 if (values
== error_mark_node
)
5685 minnode
= maxnode
= integer_zero_node
;
5687 for (pair
= values
; pair
; pair
= TREE_CHAIN (pair
))
5689 tree value
= TREE_VALUE (pair
);
5691 minnode
= maxnode
= TREE_VALUE (pair
);
5694 if (tree_int_cst_lt (maxnode
, value
))
5696 if (tree_int_cst_lt (value
, minnode
))
5701 TYPE_MIN_VALUE (enumtype
) = minnode
;
5702 TYPE_MAX_VALUE (enumtype
) = maxnode
;
5704 /* An enum can have some negative values; then it is signed. */
5705 TREE_UNSIGNED (enumtype
) = tree_int_cst_sgn (minnode
) >= 0;
5707 /* Determine the precision this type needs. */
5709 lowprec
= min_precision (minnode
, TREE_UNSIGNED (enumtype
));
5710 highprec
= min_precision (maxnode
, TREE_UNSIGNED (enumtype
));
5711 precision
= MAX (lowprec
, highprec
);
5713 if (flag_short_enums
|| precision
> TYPE_PRECISION (integer_type_node
))
5714 /* Use the width of the narrowest normal C type which is wide enough. */
5715 TYPE_PRECISION (enumtype
) = TYPE_PRECISION (type_for_size (precision
, 1));
5717 TYPE_PRECISION (enumtype
) = TYPE_PRECISION (integer_type_node
);
5719 TYPE_SIZE (enumtype
) = 0;
5720 layout_type (enumtype
);
5722 if (values
!= error_mark_node
)
5724 /* Change the type of the enumerators to be the enum type.
5725 Formerly this was done only for enums that fit in an int,
5726 but the comment said it was done only for enums wider than int.
5727 It seems necessary to do this for wide enums,
5728 and best not to change what's done for ordinary narrower ones. */
5729 for (pair
= values
; pair
; pair
= TREE_CHAIN (pair
))
5731 TREE_TYPE (TREE_PURPOSE (pair
)) = enumtype
;
5732 DECL_SIZE (TREE_PURPOSE (pair
)) = TYPE_SIZE (enumtype
);
5733 if (TREE_CODE (TREE_PURPOSE (pair
)) != FUNCTION_DECL
)
5734 DECL_ALIGN (TREE_PURPOSE (pair
)) = TYPE_ALIGN (enumtype
);
5737 /* Replace the decl nodes in VALUES with their names. */
5738 for (pair
= values
; pair
; pair
= TREE_CHAIN (pair
))
5739 TREE_PURPOSE (pair
) = DECL_NAME (TREE_PURPOSE (pair
));
5741 TYPE_VALUES (enumtype
) = values
;
5744 /* Fix up all variant types of this enum type. */
5745 for (tem
= TYPE_MAIN_VARIANT (enumtype
); tem
; tem
= TYPE_NEXT_VARIANT (tem
))
5747 TYPE_VALUES (tem
) = TYPE_VALUES (enumtype
);
5748 TYPE_MIN_VALUE (tem
) = TYPE_MIN_VALUE (enumtype
);
5749 TYPE_MAX_VALUE (tem
) = TYPE_MAX_VALUE (enumtype
);
5750 TYPE_SIZE (tem
) = TYPE_SIZE (enumtype
);
5751 TYPE_MODE (tem
) = TYPE_MODE (enumtype
);
5752 TYPE_PRECISION (tem
) = TYPE_PRECISION (enumtype
);
5753 TYPE_ALIGN (tem
) = TYPE_ALIGN (enumtype
);
5754 TREE_UNSIGNED (tem
) = TREE_UNSIGNED (enumtype
);
5757 /* Finish debugging output for this type. */
5758 rest_of_type_compilation (enumtype
, toplevel
);
5760 /* This matches a push in start_enum. */
5766 /* Build and install a CONST_DECL for one value of the
5767 current enumeration type (one that was begun with start_enum).
5768 Return a tree-list containing the CONST_DECL and its value.
5769 Assignment of sequential values by default is handled here. */
5772 build_enumerator (name
, value
)
5775 register tree decl
, type
;
5777 /* Validate and default VALUE. */
5779 /* Remove no-op casts from the value. */
5781 STRIP_TYPE_NOPS (value
);
5785 if (TREE_CODE (value
) == INTEGER_CST
)
5787 value
= default_conversion (value
);
5788 constant_expression_warning (value
);
5792 error ("enumerator value for `%s' not integer constant",
5793 IDENTIFIER_POINTER (name
));
5798 /* Default based on previous value. */
5799 /* It should no longer be possible to have NON_LVALUE_EXPR
5803 value
= enum_next_value
;
5805 error ("overflow in enumeration values");
5808 if (pedantic
&& ! int_fits_type_p (value
, integer_type_node
))
5810 pedwarn ("ANSI C restricts enumerator values to range of `int'");
5811 value
= integer_zero_node
;
5814 /* Set basis for default for next value. */
5815 enum_next_value
= build_binary_op (PLUS_EXPR
, value
, integer_one_node
, 0);
5816 enum_overflow
= tree_int_cst_lt (enum_next_value
, value
);
5818 /* Now create a declaration for the enum value name. */
5820 type
= TREE_TYPE (value
);
5821 type
= type_for_size (MAX (TYPE_PRECISION (type
),
5822 TYPE_PRECISION (integer_type_node
)),
5824 || TYPE_PRECISION (type
) >= TYPE_PRECISION (integer_type_node
))
5825 && TREE_UNSIGNED (type
)));
5827 decl
= build_decl (CONST_DECL
, name
, type
);
5828 DECL_INITIAL (decl
) = value
;
5829 TREE_TYPE (value
) = type
;
5832 return saveable_tree_cons (decl
, value
, NULL_TREE
);
5835 /* Create the FUNCTION_DECL for a function definition.
5836 DECLSPECS and DECLARATOR are the parts of the declaration;
5837 they describe the function's name and the type it returns,
5838 but twisted together in a fashion that parallels the syntax of C.
5840 This function creates a binding context for the function body
5841 as well as setting up the FUNCTION_DECL in current_function_decl.
5843 Returns 1 on success. If the DECLARATOR is not suitable for a function
5844 (it defines a datum instead), we return 0, which tells
5845 yyparse to report a parse error.
5847 NESTED is nonzero for a function nested within another function. */
5850 start_function (declspecs
, declarator
, nested
)
5851 tree declarator
, declspecs
;
5854 tree decl1
, old_decl
;
5857 current_function_returns_value
= 0; /* Assume, until we see it does. */
5858 current_function_returns_null
= 0;
5859 warn_about_return_type
= 0;
5860 current_extern_inline
= 0;
5861 c_function_varargs
= 0;
5863 shadowed_labels
= 0;
5865 decl1
= grokdeclarator (declarator
, declspecs
, FUNCDEF
, 1);
5867 /* If the declarator is not suitable for a function definition,
5868 cause a syntax error. */
5872 announce_function (decl1
);
5874 if (TYPE_SIZE (TREE_TYPE (TREE_TYPE (decl1
))) == 0)
5876 error ("return-type is an incomplete type");
5877 /* Make it return void instead. */
5879 = build_function_type (void_type_node
,
5880 TYPE_ARG_TYPES (TREE_TYPE (decl1
)));
5883 if (warn_about_return_type
)
5884 warning ("return-type defaults to `int'");
5886 /* Save the parm names or decls from this function's declarator
5887 where store_parm_decls will find them. */
5888 current_function_parms
= last_function_parms
;
5889 current_function_parm_tags
= last_function_parm_tags
;
5891 /* Make the init_value nonzero so pushdecl knows this is not tentative.
5892 error_mark_node is replaced below (in poplevel) with the BLOCK. */
5893 DECL_INITIAL (decl1
) = error_mark_node
;
5895 /* If this definition isn't a prototype and we had a prototype declaration
5896 before, copy the arg type info from that prototype.
5897 But not if what we had before was a builtin function. */
5898 old_decl
= lookup_name_current_level (DECL_NAME (decl1
));
5899 if (old_decl
!= 0 && TREE_CODE (TREE_TYPE (old_decl
)) == FUNCTION_TYPE
5900 && !DECL_BUILT_IN (old_decl
)
5901 && (TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (decl1
)))
5902 == TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (old_decl
))))
5903 && TYPE_ARG_TYPES (TREE_TYPE (decl1
)) == 0)
5905 TREE_TYPE (decl1
) = TREE_TYPE (old_decl
);
5906 current_function_prototype_file
= DECL_SOURCE_FILE (old_decl
);
5907 current_function_prototype_line
= DECL_SOURCE_LINE (old_decl
);
5910 /* If there is no explicit declaration, look for any out-of-scope implicit
5913 old_decl
= IDENTIFIER_IMPLICIT_DECL (DECL_NAME (decl1
));
5915 /* Optionally warn of old-fashioned def with no previous prototype. */
5916 if (warn_strict_prototypes
5917 && TYPE_ARG_TYPES (TREE_TYPE (decl1
)) == 0
5918 && !(old_decl
!= 0 && TYPE_ARG_TYPES (TREE_TYPE (old_decl
)) != 0))
5919 warning ("function declaration isn't a prototype");
5920 /* Optionally warn of any global def with no previous prototype. */
5921 else if (warn_missing_prototypes
5922 && TREE_PUBLIC (decl1
)
5923 && !(old_decl
!= 0 && TYPE_ARG_TYPES (TREE_TYPE (old_decl
)) != 0)
5924 && strcmp ("main", IDENTIFIER_POINTER (DECL_NAME (decl1
))))
5925 warning_with_decl (decl1
, "no previous prototype for `%s'");
5926 /* Optionally warn of any def with no previous prototype
5927 if the function has already been used. */
5928 else if (warn_missing_prototypes
5929 && old_decl
!= 0 && TREE_USED (old_decl
)
5930 && TYPE_ARG_TYPES (TREE_TYPE (old_decl
)) == 0)
5931 warning_with_decl (decl1
,
5932 "`%s' was used with no prototype before its definition");
5933 /* Optionally warn of any global def with no previous declaration. */
5934 else if (warn_missing_declarations
5935 && TREE_PUBLIC (decl1
)
5937 && strcmp ("main", IDENTIFIER_POINTER (DECL_NAME (decl1
))))
5938 warning_with_decl (decl1
, "no previous declaration for `%s'");
5939 /* Optionally warn of any def with no previous declaration
5940 if the function has already been used. */
5941 else if (warn_missing_declarations
5942 && old_decl
!= 0 && TREE_USED (old_decl
)
5943 && old_decl
== IDENTIFIER_IMPLICIT_DECL (DECL_NAME (decl1
)))
5944 warning_with_decl (decl1
,
5945 "`%s' was used with no declaration before its definition");
5947 /* This is a definition, not a reference.
5948 So normally clear DECL_EXTERNAL.
5949 However, `extern inline' acts like a declaration
5950 except for defining how to inline. So set DECL_EXTERNAL in that case. */
5951 DECL_EXTERNAL (decl1
) = current_extern_inline
;
5953 /* This function exists in static storage.
5954 (This does not mean `static' in the C sense!) */
5955 TREE_STATIC (decl1
) = 1;
5957 /* A nested function is not global. */
5958 if (current_function_decl
!= 0)
5959 TREE_PUBLIC (decl1
) = 0;
5961 /* Record the decl so that the function name is defined.
5962 If we already have a decl for this name, and it is a FUNCTION_DECL,
5963 use the old decl. */
5965 current_function_decl
= pushdecl (decl1
);
5968 declare_parm_level (1);
5969 current_binding_level
->subblocks_tag_transparent
= 1;
5971 make_function_rtl (current_function_decl
);
5973 restype
= TREE_TYPE (TREE_TYPE (current_function_decl
));
5974 /* Promote the value to int before returning it. */
5975 if (C_PROMOTING_INTEGER_TYPE_P (restype
))
5977 /* It retains unsignedness if traditional
5978 or if not really getting wider. */
5979 if (TREE_UNSIGNED (restype
)
5980 && (flag_traditional
5981 || (TYPE_PRECISION (restype
)
5982 == TYPE_PRECISION (integer_type_node
))))
5983 restype
= unsigned_type_node
;
5985 restype
= integer_type_node
;
5987 DECL_RESULT (current_function_decl
)
5988 = build_decl (RESULT_DECL
, NULL_TREE
, restype
);
5991 /* Allocate further tree nodes temporarily during compilation
5992 of this function only. */
5993 temporary_allocation ();
5995 /* If this fcn was already referenced via a block-scope `extern' decl
5996 (or an implicit decl), propagate certain information about the usage. */
5997 if (TREE_ADDRESSABLE (DECL_ASSEMBLER_NAME (current_function_decl
)))
5998 TREE_ADDRESSABLE (current_function_decl
) = 1;
6003 /* Record that this function is going to be a varargs function.
6004 This is called before store_parm_decls, which is too early
6005 to call mark_varargs directly. */
6010 c_function_varargs
= 1;
6013 /* Store the parameter declarations into the current function declaration.
6014 This is called after parsing the parameter declarations, before
6015 digesting the body of the function.
6017 For an old-style definition, modify the function's type
6018 to specify at least the number of arguments. */
6023 register tree fndecl
= current_function_decl
;
6026 /* This is either a chain of PARM_DECLs (if a prototype was used)
6027 or a list of IDENTIFIER_NODEs (for an old-fashioned C definition). */
6028 tree specparms
= current_function_parms
;
6030 /* This is a list of types declared among parms in a prototype. */
6031 tree parmtags
= current_function_parm_tags
;
6033 /* This is a chain of PARM_DECLs from old-style parm declarations. */
6034 register tree parmdecls
= getdecls ();
6036 /* This is a chain of any other decls that came in among the parm
6037 declarations. If a parm is declared with enum {foo, bar} x;
6038 then CONST_DECLs for foo and bar are put here. */
6041 /* Nonzero if this definition is written with a prototype. */
6044 if (specparms
!= 0 && TREE_CODE (specparms
) != TREE_LIST
)
6046 /* This case is when the function was defined with an ANSI prototype.
6047 The parms already have decls, so we need not do anything here
6048 except record them as in effect
6049 and complain if any redundant old-style parm decls were written. */
6060 error_with_decl (fndecl
,
6061 "parm types given both in parmlist and separately");
6062 /* Get rid of the erroneous decls; don't keep them on
6063 the list of parms, since they might not be PARM_DECLs. */
6064 for (decl
= current_binding_level
->names
;
6065 decl
; decl
= TREE_CHAIN (decl
))
6066 if (DECL_NAME (decl
))
6067 IDENTIFIER_LOCAL_VALUE (DECL_NAME (decl
)) = 0;
6068 for (link
= current_binding_level
->shadowed
;
6069 link
; link
= TREE_CHAIN (link
))
6070 IDENTIFIER_LOCAL_VALUE (TREE_PURPOSE (link
)) = TREE_VALUE (link
);
6071 current_binding_level
->names
= 0;
6072 current_binding_level
->shadowed
= 0;
6075 specparms
= nreverse (specparms
);
6076 for (parm
= specparms
; parm
; parm
= next
)
6078 next
= TREE_CHAIN (parm
);
6079 if (TREE_CODE (parm
) == PARM_DECL
)
6081 if (DECL_NAME (parm
) == 0)
6082 error_with_decl (parm
, "parameter name omitted");
6083 else if (TYPE_MAIN_VARIANT (TREE_TYPE (parm
)) == void_type_node
)
6085 error_with_decl (parm
, "parameter `%s' declared void");
6086 /* Change the type to error_mark_node so this parameter
6087 will be ignored by assign_parms. */
6088 TREE_TYPE (parm
) = error_mark_node
;
6094 /* If we find an enum constant or a type tag,
6095 put it aside for the moment. */
6096 TREE_CHAIN (parm
) = 0;
6097 others
= chainon (others
, parm
);
6101 /* Get the decls in their original chain order
6102 and record in the function. */
6103 DECL_ARGUMENTS (fndecl
) = getdecls ();
6106 /* If this function takes a variable number of arguments,
6107 add a phony parameter to the end of the parm list,
6108 to represent the position of the first unnamed argument. */
6109 if (TREE_VALUE (tree_last (TYPE_ARG_TYPES (TREE_TYPE (fndecl
))))
6112 tree dummy
= build_decl (PARM_DECL
, NULL_TREE
, void_type_node
);
6113 /* Let's hope the address of the unnamed parm
6114 won't depend on its type. */
6115 TREE_TYPE (dummy
) = integer_type_node
;
6116 DECL_ARG_TYPE (dummy
) = integer_type_node
;
6117 DECL_ARGUMENTS (fndecl
)
6118 = chainon (DECL_ARGUMENTS (fndecl
), dummy
);
6122 /* Now pushdecl the enum constants. */
6123 for (parm
= others
; parm
; parm
= next
)
6125 next
= TREE_CHAIN (parm
);
6126 if (DECL_NAME (parm
) == 0)
6128 else if (TYPE_MAIN_VARIANT (TREE_TYPE (parm
)) == void_type_node
)
6130 else if (TREE_CODE (parm
) != PARM_DECL
)
6134 storetags (chainon (parmtags
, gettags ()));
6138 /* SPECPARMS is an identifier list--a chain of TREE_LIST nodes
6139 each with a parm name as the TREE_VALUE.
6141 PARMDECLS is a chain of declarations for parameters.
6142 Warning! It can also contain CONST_DECLs which are not parameters
6143 but are names of enumerators of any enum types
6144 declared among the parameters.
6146 First match each formal parameter name with its declaration.
6147 Associate decls with the names and store the decls
6148 into the TREE_PURPOSE slots. */
6150 for (parm
= parmdecls
; parm
; parm
= TREE_CHAIN (parm
))
6151 DECL_RESULT (parm
) = 0;
6153 for (parm
= specparms
; parm
; parm
= TREE_CHAIN (parm
))
6155 register tree tail
, found
= NULL
;
6157 if (TREE_VALUE (parm
) == 0)
6159 error_with_decl (fndecl
, "parameter name missing from parameter list");
6160 TREE_PURPOSE (parm
) = 0;
6164 /* See if any of the parmdecls specifies this parm by name.
6165 Ignore any enumerator decls. */
6166 for (tail
= parmdecls
; tail
; tail
= TREE_CHAIN (tail
))
6167 if (DECL_NAME (tail
) == TREE_VALUE (parm
)
6168 && TREE_CODE (tail
) == PARM_DECL
)
6174 /* If declaration already marked, we have a duplicate name.
6175 Complain, and don't use this decl twice. */
6176 if (found
&& DECL_RESULT (found
) != 0)
6178 error_with_decl (found
, "multiple parameters named `%s'");
6182 /* If the declaration says "void", complain and ignore it. */
6183 if (found
&& TYPE_MAIN_VARIANT (TREE_TYPE (found
)) == void_type_node
)
6185 error_with_decl (found
, "parameter `%s' declared void");
6186 TREE_TYPE (found
) = integer_type_node
;
6187 DECL_ARG_TYPE (found
) = integer_type_node
;
6188 layout_decl (found
, 0);
6191 /* Traditionally, a parm declared float is actually a double. */
6192 if (found
&& flag_traditional
6193 && TYPE_MAIN_VARIANT (TREE_TYPE (found
)) == float_type_node
)
6195 TREE_TYPE (found
) = double_type_node
;
6196 DECL_ARG_TYPE (found
) = double_type_node
;
6197 layout_decl (found
, 0);
6200 /* If no declaration found, default to int. */
6203 found
= build_decl (PARM_DECL
, TREE_VALUE (parm
),
6205 DECL_ARG_TYPE (found
) = TREE_TYPE (found
);
6206 DECL_SOURCE_LINE (found
) = DECL_SOURCE_LINE (fndecl
);
6207 DECL_SOURCE_FILE (found
) = DECL_SOURCE_FILE (fndecl
);
6209 warning_with_decl (found
, "type of `%s' defaults to `int'");
6213 TREE_PURPOSE (parm
) = found
;
6215 /* Mark this decl as "already found" -- see test, above.
6216 It is safe to use DECL_RESULT for this
6217 since it is not used in PARM_DECLs or CONST_DECLs. */
6218 DECL_RESULT (found
) = error_mark_node
;
6221 /* Put anything which is on the parmdecls chain and which is
6222 not a PARM_DECL onto the list NONPARMS. (The types of
6223 non-parm things which might appear on the list include
6224 enumerators and NULL-named TYPE_DECL nodes.) Complain about
6225 any actual PARM_DECLs not matched with any names. */
6228 for (parm
= parmdecls
; parm
; )
6230 tree next
= TREE_CHAIN (parm
);
6231 TREE_CHAIN (parm
) = 0;
6233 if (TREE_CODE (parm
) != PARM_DECL
)
6234 nonparms
= chainon (nonparms
, parm
);
6237 /* Complain about args with incomplete types. */
6238 if (TYPE_SIZE (TREE_TYPE (parm
)) == 0)
6240 error_with_decl (parm
, "parameter `%s' has incomplete type");
6241 TREE_TYPE (parm
) = error_mark_node
;
6244 if (DECL_RESULT (parm
) == 0)
6246 error_with_decl (parm
,
6247 "declaration for parameter `%s' but no such parameter");
6248 /* Pretend the parameter was not missing.
6249 This gets us to a standard state and minimizes
6250 further error messages. */
6252 = chainon (specparms
,
6253 tree_cons (parm
, NULL_TREE
, NULL_TREE
));
6260 /* Chain the declarations together in the order of the list of names. */
6261 /* Store that chain in the function decl, replacing the list of names. */
6263 DECL_ARGUMENTS (fndecl
) = 0;
6266 for (last
= 0; parm
; parm
= TREE_CHAIN (parm
))
6267 if (TREE_PURPOSE (parm
))
6270 DECL_ARGUMENTS (fndecl
) = TREE_PURPOSE (parm
);
6272 TREE_CHAIN (last
) = TREE_PURPOSE (parm
);
6273 last
= TREE_PURPOSE (parm
);
6274 TREE_CHAIN (last
) = 0;
6278 /* If there was a previous prototype,
6279 set the DECL_ARG_TYPE of each argument according to
6280 the type previously specified, and report any mismatches. */
6282 if (TYPE_ARG_TYPES (TREE_TYPE (fndecl
)))
6285 for (parm
= DECL_ARGUMENTS (fndecl
),
6286 type
= TYPE_ARG_TYPES (TREE_TYPE (fndecl
));
6287 parm
|| (type
&& (TYPE_MAIN_VARIANT (TREE_VALUE (type
))
6288 != void_type_node
));
6289 parm
= TREE_CHAIN (parm
), type
= TREE_CHAIN (type
))
6291 if (parm
== 0 || type
== 0
6292 || TYPE_MAIN_VARIANT (TREE_VALUE (type
)) == void_type_node
)
6294 error ("number of arguments doesn't match prototype");
6295 error_with_file_and_line (current_function_prototype_file
,
6296 current_function_prototype_line
,
6297 "prototype declaration");
6300 /* Type for passing arg must be consistent
6301 with that declared for the arg. */
6302 if (! comptypes (DECL_ARG_TYPE (parm
), TREE_VALUE (type
)))
6304 if (TYPE_MAIN_VARIANT (TREE_TYPE (parm
))
6305 == TYPE_MAIN_VARIANT (TREE_VALUE (type
)))
6307 /* Adjust argument to match prototype. E.g. a previous
6308 `int foo(float);' prototype causes
6309 `int foo(x) float x; {...}' to be treated like
6310 `int foo(float x) {...}'. This is particularly
6311 useful for argument types like uid_t. */
6312 DECL_ARG_TYPE (parm
) = TREE_TYPE (parm
);
6313 #ifdef PROMOTE_PROTOTYPES
6314 if ((TREE_CODE (TREE_TYPE (parm
)) == INTEGER_TYPE
6315 || TREE_CODE (TREE_TYPE (parm
)) == ENUMERAL_TYPE
)
6316 && TYPE_PRECISION (TREE_TYPE (parm
))
6317 < TYPE_PRECISION (integer_type_node
))
6318 DECL_ARG_TYPE (parm
) = integer_type_node
;
6322 pedwarn ("promoted argument `%s' doesn't match prototype",
6323 IDENTIFIER_POINTER (DECL_NAME (parm
)));
6324 warning_with_file_and_line
6325 (current_function_prototype_file
,
6326 current_function_prototype_line
,
6327 "prototype declaration");
6330 /* If -traditional, allow `int' argument to match
6331 `unsigned' prototype. */
6332 else if (! (flag_traditional
6333 && TYPE_MAIN_VARIANT (TREE_TYPE (parm
)) == integer_type_node
6334 && TYPE_MAIN_VARIANT (TREE_VALUE (type
)) == unsigned_type_node
))
6336 error ("argument `%s' doesn't match prototype",
6337 IDENTIFIER_POINTER (DECL_NAME (parm
)));
6338 error_with_file_and_line (current_function_prototype_file
,
6339 current_function_prototype_line
,
6340 "prototype declaration");
6344 TYPE_ACTUAL_ARG_TYPES (TREE_TYPE (fndecl
)) = 0;
6347 /* Otherwise, create a prototype that would match. */
6351 tree actual
= 0, last
= 0, type
;
6353 for (parm
= DECL_ARGUMENTS (fndecl
); parm
; parm
= TREE_CHAIN (parm
))
6355 type
= perm_tree_cons (NULL_TREE
, DECL_ARG_TYPE (parm
),
6358 TREE_CHAIN (last
) = type
;
6363 type
= perm_tree_cons (NULL_TREE
, void_type_node
, NULL_TREE
);
6365 TREE_CHAIN (last
) = type
;
6369 /* We are going to assign a new value for the TYPE_ACTUAL_ARG_TYPES
6370 of the type of this function, but we need to avoid having this
6371 affect the types of other similarly-typed functions, so we must
6372 first force the generation of an identical (but separate) type
6373 node for the relevant function type. The new node we create
6374 will be a variant of the main variant of the original function
6377 TREE_TYPE (fndecl
) = build_type_copy (TREE_TYPE (fndecl
));
6379 TYPE_ACTUAL_ARG_TYPES (TREE_TYPE (fndecl
)) = actual
;
6382 /* Now store the final chain of decls for the arguments
6383 as the decl-chain of the current lexical scope.
6384 Put the enumerators in as well, at the front so that
6385 DECL_ARGUMENTS is not modified. */
6387 storedecls (chainon (nonparms
, DECL_ARGUMENTS (fndecl
)));
6390 /* Make sure the binding level for the top of the function body
6391 gets a BLOCK if there are any in the function.
6392 Otherwise, the dbx output is wrong. */
6394 keep_next_if_subblocks
= 1;
6396 /* ??? This might be an improvement,
6397 but needs to be thought about some more. */
6399 keep_next_level_flag
= 1;
6402 /* Write a record describing this function definition to the prototypes
6403 file (if requested). */
6405 gen_aux_info_record (fndecl
, 1, 0, prototype
);
6407 /* Initialize the RTL code for the function. */
6409 init_function_start (fndecl
, input_filename
, lineno
);
6411 /* If this is a varargs function, inform function.c. */
6413 if (c_function_varargs
)
6416 /* Declare __FUNCTION__ and __PRETTY_FUNCTION__ for this function. */
6418 declare_function_name ();
6420 /* Set up parameters and prepare for return, for the function. */
6422 expand_function_start (fndecl
, 0);
6424 /* If this function is `main', emit a call to `__main'
6425 to run global initializers, etc. */
6426 if (DECL_NAME (fndecl
)
6427 && strcmp (IDENTIFIER_POINTER (DECL_NAME (fndecl
)), "main") == 0
6428 && DECL_CONTEXT (fndecl
) == NULL_TREE
)
6429 expand_main_function ();
6432 /* SPECPARMS is an identifier list--a chain of TREE_LIST nodes
6433 each with a parm name as the TREE_VALUE. A null pointer as TREE_VALUE
6434 stands for an ellipsis in the identifier list.
6436 PARMLIST is the data returned by get_parm_info for the
6437 parmlist that follows the semicolon.
6439 We return a value of the same sort that get_parm_info returns,
6440 except that it describes the combination of identifiers and parmlist. */
6443 combine_parm_decls (specparms
, parmlist
, void_at_end
)
6444 tree specparms
, parmlist
;
6447 register tree fndecl
= current_function_decl
;
6450 tree parmdecls
= TREE_PURPOSE (parmlist
);
6452 /* This is a chain of any other decls that came in among the parm
6453 declarations. They were separated already by get_parm_info,
6454 so we just need to keep them separate. */
6455 tree nonparms
= TREE_VALUE (parmlist
);
6459 for (parm
= parmdecls
; parm
; parm
= TREE_CHAIN (parm
))
6460 DECL_RESULT (parm
) = 0;
6462 for (parm
= specparms
; parm
; parm
= TREE_CHAIN (parm
))
6464 register tree tail
, found
= NULL
;
6466 /* See if any of the parmdecls specifies this parm by name. */
6467 for (tail
= parmdecls
; tail
; tail
= TREE_CHAIN (tail
))
6468 if (DECL_NAME (tail
) == TREE_VALUE (parm
))
6474 /* If declaration already marked, we have a duplicate name.
6475 Complain, and don't use this decl twice. */
6476 if (found
&& DECL_RESULT (found
) != 0)
6478 error_with_decl (found
, "multiple parameters named `%s'");
6482 /* If the declaration says "void", complain and ignore it. */
6483 if (found
&& TYPE_MAIN_VARIANT (TREE_TYPE (found
)) == void_type_node
)
6485 error_with_decl (found
, "parameter `%s' declared void");
6486 TREE_TYPE (found
) = integer_type_node
;
6487 DECL_ARG_TYPE (found
) = integer_type_node
;
6488 layout_decl (found
, 0);
6491 /* Traditionally, a parm declared float is actually a double. */
6492 if (found
&& flag_traditional
6493 && TYPE_MAIN_VARIANT (TREE_TYPE (found
)) == float_type_node
)
6495 TREE_TYPE (found
) = double_type_node
;
6496 DECL_ARG_TYPE (found
) = double_type_node
;
6497 layout_decl (found
, 0);
6500 /* If no declaration found, default to int. */
6503 found
= build_decl (PARM_DECL
, TREE_VALUE (parm
),
6505 DECL_ARG_TYPE (found
) = TREE_TYPE (found
);
6506 DECL_SOURCE_LINE (found
) = DECL_SOURCE_LINE (fndecl
);
6507 DECL_SOURCE_FILE (found
) = DECL_SOURCE_FILE (fndecl
);
6508 error_with_decl (found
, "type of parameter `%s' is not declared");
6512 TREE_PURPOSE (parm
) = found
;
6514 /* Mark this decl as "already found" -- see test, above.
6515 It is safe to use DECL_RESULT for this
6516 since it is not used in PARM_DECLs or CONST_DECLs. */
6517 DECL_RESULT (found
) = error_mark_node
;
6520 /* Complain about any actual PARM_DECLs not matched with any names. */
6522 for (parm
= parmdecls
; parm
; )
6524 tree next
= TREE_CHAIN (parm
);
6525 TREE_CHAIN (parm
) = 0;
6527 /* Complain about args with incomplete types. */
6528 if (TYPE_SIZE (TREE_TYPE (parm
)) == 0)
6530 error_with_decl (parm
, "parameter `%s' has incomplete type");
6531 TREE_TYPE (parm
) = error_mark_node
;
6534 if (DECL_RESULT (parm
) == 0)
6536 error_with_decl (parm
,
6537 "declaration for parameter `%s' but no such parameter");
6538 /* Pretend the parameter was not missing.
6539 This gets us to a standard state and minimizes
6540 further error messages. */
6542 = chainon (specparms
,
6543 tree_cons (parm
, NULL_TREE
, NULL_TREE
));
6549 /* Chain the declarations together in the order of the list of names.
6550 At the same time, build up a list of their types, in reverse order. */
6556 for (last
= 0; parm
; parm
= TREE_CHAIN (parm
))
6557 if (TREE_PURPOSE (parm
))
6560 parmdecls
= TREE_PURPOSE (parm
);
6562 TREE_CHAIN (last
) = TREE_PURPOSE (parm
);
6563 last
= TREE_PURPOSE (parm
);
6564 TREE_CHAIN (last
) = 0;
6566 types
= saveable_tree_cons (NULL_TREE
, TREE_TYPE (parm
), types
);
6571 return saveable_tree_cons (parmdecls
, nonparms
,
6572 nreverse (saveable_tree_cons (NULL_TREE
, void_type_node
, types
)));
6574 return saveable_tree_cons (parmdecls
, nonparms
, nreverse (types
));
6577 /* Finish up a function declaration and compile that function
6578 all the way to assembler language output. The free the storage
6579 for the function definition.
6581 This is called after parsing the body of the function definition.
6583 NESTED is nonzero if the function being finished is nested in another. */
6586 finish_function (nested
)
6589 register tree fndecl
= current_function_decl
;
6591 /* TREE_READONLY (fndecl) = 1;
6592 This caused &foo to be of type ptr-to-const-function
6593 which then got a warning when stored in a ptr-to-function variable. */
6596 BLOCK_SUPERCONTEXT (DECL_INITIAL (fndecl
)) = fndecl
;
6598 /* Must mark the RESULT_DECL as being in this function. */
6600 DECL_CONTEXT (DECL_RESULT (fndecl
)) = fndecl
;
6602 /* Obey `register' declarations if `setjmp' is called in this fn. */
6603 if (flag_traditional
&& current_function_calls_setjmp
)
6605 setjmp_protect (DECL_INITIAL (fndecl
));
6606 setjmp_protect_args ();
6609 #ifdef DEFAULT_MAIN_RETURN
6610 if (! strcmp (IDENTIFIER_POINTER (DECL_NAME (fndecl
)), "main"))
6612 if (TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (fndecl
)))
6613 != integer_type_node
)
6614 warning_with_decl (fndecl
, "return type of `%s' is not `int'");
6617 /* Make it so that `main' always returns success by default. */
6618 DEFAULT_MAIN_RETURN
;
6623 /* Generate rtl for function exit. */
6624 expand_function_end (input_filename
, lineno
, 0);
6626 /* So we can tell if jump_optimize sets it to 1. */
6629 /* Run the optimizers and output the assembler code for this function. */
6630 rest_of_compilation (fndecl
);
6632 current_function_returns_null
|= can_reach_end
;
6634 if (TREE_THIS_VOLATILE (fndecl
) && current_function_returns_null
)
6635 warning ("`noreturn' function does return");
6636 else if (warn_return_type
&& can_reach_end
6637 && TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (fndecl
))) != void_type_node
)
6638 /* If this function returns non-void and control can drop through,
6640 warning ("control reaches end of non-void function");
6641 /* With just -W, complain only if function returns both with
6642 and without a value. */
6643 else if (extra_warnings
6644 && current_function_returns_value
&& current_function_returns_null
)
6645 warning ("this function may return with or without a value");
6647 /* If requested, warn about function definitions where the function will
6648 return a value (usually of some struct or union type) which itself will
6649 take up a lot of stack space. */
6651 if (warn_larger_than
&& !DECL_EXTERNAL (fndecl
) && TREE_TYPE (fndecl
))
6653 register tree ret_type
= TREE_TYPE (TREE_TYPE (fndecl
));
6657 register tree ret_type_size
= TYPE_SIZE (ret_type
);
6659 if (TREE_CODE (ret_type_size
) == INTEGER_CST
)
6662 = TREE_INT_CST_LOW (ret_type_size
) / BITS_PER_UNIT
;
6664 if (units
> larger_than_size
)
6665 warning_with_decl (fndecl
,
6666 "size of return value of `%s' is %u bytes",
6672 /* Free all the tree nodes making up this function. */
6673 /* Switch back to allocating nodes permanently
6674 until we start another function. */
6676 permanent_allocation (1);
6678 if (DECL_SAVED_INSNS (fndecl
) == 0 && ! nested
)
6680 /* Stop pointing to the local nodes about to be freed. */
6681 /* But DECL_INITIAL must remain nonzero so we know this
6682 was an actual function definition. */
6683 /* For a nested function, this is done in pop_c_function_context. */
6684 /* If rest_of_compilation set this to 0, leave it 0. */
6685 if (DECL_INITIAL (fndecl
) != 0)
6686 DECL_INITIAL (fndecl
) = error_mark_node
;
6687 DECL_ARGUMENTS (fndecl
) = 0;
6692 /* Let the error reporting routines know that we're outside a
6693 function. For a nested function, this value is used in
6694 pop_c_function_context and then reset via pop_function_context. */
6695 current_function_decl
= NULL
;
6699 /* Save and restore the variables in this file and elsewhere
6700 that keep track of the progress of compilation of the current function.
6701 Used for nested functions. */
6705 struct c_function
*next
;
6707 tree shadowed_labels
;
6710 int warn_about_return_type
;
6712 struct binding_level
*binding_level
;
6715 struct c_function
*c_function_chain
;
6717 /* Save and reinitialize the variables
6718 used during compilation of a C function. */
6721 push_c_function_context ()
6723 struct c_function
*p
6724 = (struct c_function
*) xmalloc (sizeof (struct c_function
));
6727 pedwarn ("ANSI C forbids nested functions");
6729 push_function_context ();
6731 p
->next
= c_function_chain
;
6732 c_function_chain
= p
;
6734 p
->named_labels
= named_labels
;
6735 p
->shadowed_labels
= shadowed_labels
;
6736 p
->returns_value
= current_function_returns_value
;
6737 p
->returns_null
= current_function_returns_null
;
6738 p
->warn_about_return_type
= warn_about_return_type
;
6739 p
->extern_inline
= current_extern_inline
;
6740 p
->binding_level
= current_binding_level
;
6743 /* Restore the variables used during compilation of a C function. */
6746 pop_c_function_context ()
6748 struct c_function
*p
= c_function_chain
;
6751 /* Bring back all the labels that were shadowed. */
6752 for (link
= shadowed_labels
; link
; link
= TREE_CHAIN (link
))
6753 if (DECL_NAME (TREE_VALUE (link
)) != 0)
6754 IDENTIFIER_LABEL_VALUE (DECL_NAME (TREE_VALUE (link
)))
6755 = TREE_VALUE (link
);
6757 if (DECL_SAVED_INSNS (current_function_decl
) == 0)
6759 /* Stop pointing to the local nodes about to be freed. */
6760 /* But DECL_INITIAL must remain nonzero so we know this
6761 was an actual function definition. */
6762 DECL_INITIAL (current_function_decl
) = error_mark_node
;
6763 DECL_ARGUMENTS (current_function_decl
) = 0;
6766 pop_function_context ();
6768 c_function_chain
= p
->next
;
6770 named_labels
= p
->named_labels
;
6771 shadowed_labels
= p
->shadowed_labels
;
6772 current_function_returns_value
= p
->returns_value
;
6773 current_function_returns_null
= p
->returns_null
;
6774 warn_about_return_type
= p
->warn_about_return_type
;
6775 current_extern_inline
= p
->extern_inline
;
6776 current_binding_level
= p
->binding_level
;
6781 /* integrate_decl_tree calls this function, but since we don't use the
6782 DECL_LANG_SPECIFIC field, this is a no-op. */
6785 copy_lang_decl (node
)