]> gcc.gnu.org Git - gcc.git/blame - gcc/c-decl.c
(USER_LABEL_PREFIX): Define.
[gcc.git] / gcc / c-decl.c
CommitLineData
51e29401 1/* Process declarations and variables for C compiler.
ed244fc2 2 Copyright (C) 1988, 92, 93, 94, 95, 1996 Free Software Foundation, Inc.
51e29401
RS
3
4This file is part of GNU CC.
5
6GNU CC is free software; you can redistribute it and/or modify
7it under the terms of the GNU General Public License as published by
8the Free Software Foundation; either version 2, or (at your option)
9any later version.
10
11GNU CC is distributed in the hope that it will be useful,
12but WITHOUT ANY WARRANTY; without even the implied warranty of
13MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14GNU General Public License for more details.
15
16You should have received a copy of the GNU General Public License
17along with GNU CC; see the file COPYING. If not, write to
940d9d63
RK
18the Free Software Foundation, 59 Temple Place - Suite 330,
19Boston, MA 02111-1307, USA. */
51e29401
RS
20
21
22/* Process declarations and symbol lookup for C front end.
23 Also constructs types; the standard scalar types at initialization,
24 and structure, union, array and enum types when they are declared. */
25
26/* ??? not all decl nodes are given the most useful possible
27 line numbers. For example, the CONST_DECLs for enum values. */
28
29#include "config.h"
30#include "tree.h"
31#include "flags.h"
e14417fa 32#include "output.h"
51e29401
RS
33#include "c-tree.h"
34#include "c-lex.h"
35#include <stdio.h>
36
37/* In grokdeclarator, distinguish syntactic contexts of declarators. */
38enum decl_context
39{ NORMAL, /* Ordinary declaration */
40 FUNCDEF, /* Function definition */
41 PARM, /* Declaration of parm before function body */
42 FIELD, /* Declaration inside struct or union */
43 BITFIELD, /* Likewise but with specified width */
44 TYPENAME}; /* Typename (inside cast or sizeof) */
45
51e29401
RS
46#ifndef CHAR_TYPE_SIZE
47#define CHAR_TYPE_SIZE BITS_PER_UNIT
48#endif
49
50#ifndef SHORT_TYPE_SIZE
51#define SHORT_TYPE_SIZE (BITS_PER_UNIT * MIN ((UNITS_PER_WORD + 1) / 2, 2))
52#endif
53
54#ifndef INT_TYPE_SIZE
55#define INT_TYPE_SIZE BITS_PER_WORD
56#endif
57
58#ifndef LONG_TYPE_SIZE
59#define LONG_TYPE_SIZE BITS_PER_WORD
60#endif
61
62#ifndef LONG_LONG_TYPE_SIZE
63#define LONG_LONG_TYPE_SIZE (BITS_PER_WORD * 2)
64#endif
65
66#ifndef WCHAR_UNSIGNED
67#define WCHAR_UNSIGNED 0
68#endif
69
70#ifndef FLOAT_TYPE_SIZE
71#define FLOAT_TYPE_SIZE BITS_PER_WORD
72#endif
73
74#ifndef DOUBLE_TYPE_SIZE
75#define DOUBLE_TYPE_SIZE (BITS_PER_WORD * 2)
76#endif
77
78#ifndef LONG_DOUBLE_TYPE_SIZE
79#define LONG_DOUBLE_TYPE_SIZE (BITS_PER_WORD * 2)
80#endif
81
82/* We let tm.h override the types used here, to handle trivial differences
83 such as the choice of unsigned int or long unsigned int for size_t.
84 When machines start needing nontrivial differences in the size type,
85 it would be best to do something here to figure out automatically
86 from other information what type to use. */
87
88#ifndef SIZE_TYPE
89#define SIZE_TYPE "long unsigned int"
90#endif
91
92#ifndef PTRDIFF_TYPE
93#define PTRDIFF_TYPE "long int"
94#endif
95
96#ifndef WCHAR_TYPE
97#define WCHAR_TYPE "int"
98#endif
99\f
100/* a node which has tree code ERROR_MARK, and whose type is itself.
101 All erroneous expressions are replaced with this node. All functions
102 that accept nodes as arguments should avoid generating error messages
103 if this node is one of the arguments, since it is undesirable to get
104 multiple error messages from one error in the input. */
105
106tree error_mark_node;
107
108/* INTEGER_TYPE and REAL_TYPE nodes for the standard data types */
109
110tree short_integer_type_node;
111tree integer_type_node;
112tree long_integer_type_node;
113tree long_long_integer_type_node;
114
115tree short_unsigned_type_node;
116tree unsigned_type_node;
117tree long_unsigned_type_node;
118tree long_long_unsigned_type_node;
119
f444e553
JM
120tree boolean_type_node;
121tree boolean_false_node;
122tree boolean_true_node;
123
51e29401
RS
124tree ptrdiff_type_node;
125
126tree unsigned_char_type_node;
127tree signed_char_type_node;
128tree char_type_node;
129tree wchar_type_node;
130tree signed_wchar_type_node;
131tree unsigned_wchar_type_node;
132
133tree float_type_node;
134tree double_type_node;
135tree long_double_type_node;
136
5ab10c42
RS
137tree complex_integer_type_node;
138tree complex_float_type_node;
139tree complex_double_type_node;
140tree complex_long_double_type_node;
141
ac4f24e7
RS
142tree intQI_type_node;
143tree intHI_type_node;
144tree intSI_type_node;
145tree intDI_type_node;
146
147tree unsigned_intQI_type_node;
148tree unsigned_intHI_type_node;
149tree unsigned_intSI_type_node;
150tree unsigned_intDI_type_node;
151
51e29401
RS
152/* a VOID_TYPE node. */
153
154tree void_type_node;
155
156/* Nodes for types `void *' and `const void *'. */
157
158tree ptr_type_node, const_ptr_type_node;
159
160/* Nodes for types `char *' and `const char *'. */
161
162tree string_type_node, const_string_type_node;
163
fba9adc6 164/* Type `char[SOMENUMBER]'.
51e29401
RS
165 Used when an array of char is needed and the size is irrelevant. */
166
167tree char_array_type_node;
168
fba9adc6 169/* Type `int[SOMENUMBER]' or something like it.
51e29401
RS
170 Used when an array of int needed and the size is irrelevant. */
171
172tree int_array_type_node;
173
fba9adc6 174/* Type `wchar_t[SOMENUMBER]' or something like it.
51e29401
RS
175 Used when a wide string literal is created. */
176
177tree wchar_array_type_node;
178
179/* type `int ()' -- used for implicit declaration of functions. */
180
181tree default_function_type;
182
183/* function types `double (double)' and `double (double, double)', etc. */
184
185tree double_ftype_double, double_ftype_double_double;
186tree int_ftype_int, long_ftype_long;
732149f9
RK
187tree float_ftype_float;
188tree ldouble_ftype_ldouble;
51e29401
RS
189
190/* Function type `void (void *, void *, int)' and similar ones */
191
192tree void_ftype_ptr_ptr_int, int_ftype_ptr_ptr_int, void_ftype_ptr_int_int;
193
194/* Function type `char *(char *, char *)' and similar ones */
195tree string_ftype_ptr_ptr, int_ftype_string_string;
196
51e29401
RS
197/* Function type `int (const void *, const void *, size_t)' */
198tree int_ftype_cptr_cptr_sizet;
199
200/* Two expressions that are constants with value zero.
201 The first is of type `int', the second of type `void *'. */
202
203tree integer_zero_node;
204tree null_pointer_node;
205
206/* A node for the integer constant 1. */
207
208tree integer_one_node;
209
210/* Nonzero if we have seen an invalid cross reference
211 to a struct, union, or enum, but not yet printed the message. */
212
213tree pending_invalid_xref;
214/* File and line to appear in the eventual error message. */
215char *pending_invalid_xref_file;
216int pending_invalid_xref_line;
217
218/* While defining an enum type, this is 1 plus the last enumerator
18192b41
RK
219 constant value. Note that will do not have to save this or `enum_overflow'
220 around nested function definition since such a definition could only
221 occur in an enum value expression and we don't use these variables in
222 that case. */
51e29401
RS
223
224static tree enum_next_value;
225
93e3ba4f
RS
226/* Nonzero means that there was overflow computing enum_next_value. */
227
228static int enum_overflow;
229
51e29401
RS
230/* Parsing a function declarator leaves a list of parameter names
231 or a chain or parameter decls here. */
232
233static tree last_function_parms;
234
235/* Parsing a function declarator leaves here a chain of structure
236 and enum types declared in the parmlist. */
237
238static tree last_function_parm_tags;
239
240/* After parsing the declarator that starts a function definition,
241 `start_function' puts here the list of parameter names or chain of decls.
242 `store_parm_decls' finds it here. */
243
244static tree current_function_parms;
245
246/* Similar, for last_function_parm_tags. */
247static tree current_function_parm_tags;
248
50a9145c
JW
249/* Similar, for the file and line that the prototype came from if this is
250 an old-style definition. */
251static char *current_function_prototype_file;
252static int current_function_prototype_line;
253
51e29401
RS
254/* A list (chain of TREE_LIST nodes) of all LABEL_DECLs in the function
255 that have names. Here so we can clear out their names' definitions
256 at the end of the function. */
257
c9c30903 258static tree named_labels;
51e29401
RS
259
260/* A list of LABEL_DECLs from outer contexts that are currently shadowed. */
261
262static tree shadowed_labels;
263
264/* Nonzero when store_parm_decls is called indicates a varargs function.
265 Value not meaningful after store_parm_decls. */
266
267static int c_function_varargs;
268
269/* The FUNCTION_DECL for the function currently being compiled,
270 or 0 if between functions. */
271tree current_function_decl;
272
273/* Set to 0 at beginning of a function definition, set to 1 if
274 a return statement that specifies a return value is seen. */
275
276int current_function_returns_value;
277
278/* Set to 0 at beginning of a function definition, set to 1 if
279 a return statement with no argument is seen. */
280
281int current_function_returns_null;
282
283/* Set to nonzero by `grokdeclarator' for a function
284 whose return type is defaulted, if warnings for this are desired. */
285
286static int warn_about_return_type;
287
929f3671 288/* Nonzero when starting a function declared `extern inline'. */
51e29401
RS
289
290static int current_extern_inline;
291\f
292/* For each binding contour we allocate a binding_level structure
293 * which records the names defined in that contour.
294 * Contours include:
295 * 0) the global one
296 * 1) one for each function definition,
297 * where internal declarations of the parameters appear.
298 * 2) one for each compound statement,
299 * to record its declarations.
300 *
301 * The current meaning of a name can be found by searching the levels from
302 * the current one out to the global one.
303 */
304
305/* Note that the information in the `names' component of the global contour
306 is duplicated in the IDENTIFIER_GLOBAL_VALUEs of all identifiers. */
307
308struct binding_level
309 {
310 /* A chain of _DECL nodes for all variables, constants, functions,
311 and typedef types. These are in the reverse of the order supplied.
312 */
313 tree names;
314
315 /* A list of structure, union and enum definitions,
316 * for looking up tag names.
317 * It is a chain of TREE_LIST nodes, each of whose TREE_PURPOSE is a name,
318 * or NULL_TREE; and whose TREE_VALUE is a RECORD_TYPE, UNION_TYPE,
319 * or ENUMERAL_TYPE node.
320 */
321 tree tags;
322
323 /* For each level, a list of shadowed outer-level local definitions
324 to be restored when this level is popped.
325 Each link is a TREE_LIST whose TREE_PURPOSE is an identifier and
326 whose TREE_VALUE is its old definition (a kind of ..._DECL node). */
327 tree shadowed;
328
329 /* For each level (except not the global one),
330 a chain of BLOCK nodes for all the levels
331 that were entered and exited one level down. */
332 tree blocks;
333
3bf40d18
RS
334 /* The BLOCK node for this level, if one has been preallocated.
335 If 0, the BLOCK is allocated (if needed) when the level is popped. */
336 tree this_block;
337
51e29401
RS
338 /* The binding level which this one is contained in (inherits from). */
339 struct binding_level *level_chain;
340
341 /* Nonzero for the level that holds the parameters of a function. */
51e29401
RS
342 char parm_flag;
343
344 /* Nonzero if this level "doesn't exist" for tags. */
345 char tag_transparent;
346
347 /* Nonzero if sublevels of this level "don't exist" for tags.
348 This is set in the parm level of a function definition
349 while reading the function body, so that the outermost block
350 of the function body will be tag-transparent. */
351 char subblocks_tag_transparent;
352
353 /* Nonzero means make a BLOCK for this level regardless of all else. */
354 char keep;
355
356 /* Nonzero means make a BLOCK if this level has any subblocks. */
357 char keep_if_subblocks;
358
359 /* Number of decls in `names' that have incomplete
360 structure or union types. */
361 int n_incomplete;
362
363 /* A list of decls giving the (reversed) specified order of parms,
364 not including any forward-decls in the parmlist.
365 This is so we can put the parms in proper order for assign_parms. */
366 tree parm_order;
367 };
368
369#define NULL_BINDING_LEVEL (struct binding_level *) NULL
370
371/* The binding level currently in effect. */
372
373static struct binding_level *current_binding_level;
374
375/* A chain of binding_level structures awaiting reuse. */
376
377static struct binding_level *free_binding_level;
378
379/* The outermost binding level, for names of file scope.
380 This is created when the compiler is started and exists
381 through the entire run. */
382
383static struct binding_level *global_binding_level;
384
385/* Binding level structures are initialized by copying this one. */
386
387static struct binding_level clear_binding_level
014aa47e
RK
388 = {NULL, NULL, NULL, NULL, NULL, NULL_BINDING_LEVEL, 0, 0, 0, 0, 0, 0,
389 NULL};
51e29401
RS
390
391/* Nonzero means unconditionally make a BLOCK for the next level pushed. */
392
393static int keep_next_level_flag;
394
395/* Nonzero means make a BLOCK for the next level pushed
396 if it has subblocks. */
397
398static int keep_next_if_subblocks;
399
400/* The chain of outer levels of label scopes.
401 This uses the same data structure used for binding levels,
402 but it works differently: each link in the chain records
403 saved values of named_labels and shadowed_labels for
404 a label binding level outside the current one. */
405
406static struct binding_level *label_level_chain;
407
2c5f4139
JM
408/* Functions called automatically at the beginning and end of execution. */
409
410tree static_ctors, static_dtors;
411
51e29401
RS
412/* Forward declarations. */
413
b423779d
RK
414static struct binding_level * make_binding_level PROTO((void));
415static void clear_limbo_values PROTO((tree));
416static int duplicate_decls PROTO((tree, tree, int));
417static char *redeclaration_error_message PROTO((tree, tree));
418static void storedecls PROTO((tree));
419static void storetags PROTO((tree));
420static tree lookup_tag PROTO((enum tree_code, tree,
421 struct binding_level *, int));
422static tree lookup_tag_reverse PROTO((tree));
423static tree grokdeclarator PROTO((tree, tree, enum decl_context,
424 int));
425static tree grokparms PROTO((tree, int));
426static int field_decl_cmp PROTO((tree *, tree *));
427static void layout_array_type PROTO((tree));
51e29401
RS
428\f
429/* C-specific option variables. */
430
431/* Nonzero means allow type mismatches in conditional expressions;
432 just make their values `void'. */
433
434int flag_cond_mismatch;
435
436/* Nonzero means give `double' the same size as `float'. */
437
438int flag_short_double;
439
440/* Nonzero means don't recognize the keyword `asm'. */
441
442int flag_no_asm;
443
fc3ffe83 444/* Nonzero means don't recognize any builtin functions. */
51e29401
RS
445
446int flag_no_builtin;
447
fc3ffe83
RK
448/* Nonzero means don't recognize the non-ANSI builtin functions.
449 -ansi sets this. */
450
451int flag_no_nonansi_builtin;
452
51e29401
RS
453/* Nonzero means do some things the same way PCC does. */
454
455int flag_traditional;
456
55b4742b 457/* Nonzero means to allow single precision math even if we're generally
0f41302f 458 being traditional. */
55b4742b
RS
459int flag_allow_single_precision = 0;
460
51e29401
RS
461/* Nonzero means to treat bitfields as signed unless they say `unsigned'. */
462
463int flag_signed_bitfields = 1;
7a0347ff 464int explicit_flag_signed_bitfields = 0;
51e29401
RS
465
466/* Nonzero means handle `#ident' directives. 0 means ignore them. */
467
468int flag_no_ident = 0;
469
470/* Nonzero means warn about implicit declarations. */
471
472int warn_implicit;
473
474/* Nonzero means give string constants the type `const char *'
475 to get extra warnings from them. These warnings will be too numerous
476 to be useful, except in thoroughly ANSIfied programs. */
477
478int warn_write_strings;
479
480/* Nonzero means warn about pointer casts that can drop a type qualifier
481 from the pointer target type. */
482
483int warn_cast_qual;
484
5c8902bb
RK
485/* Nonzero means warn when casting a function call to a type that does
486 not match the return type (e.g. (float)sqrt() or (anything*)malloc()
487 when there is no previous declaration of sqrt or malloc. */
488
489int warn_bad_function_cast;
490
51e29401
RS
491/* Warn about traditional constructs whose meanings changed in ANSI C. */
492
493int warn_traditional;
494
495/* Nonzero means warn about sizeof(function) or addition/subtraction
496 of function pointers. */
497
498int warn_pointer_arith;
499
500/* Nonzero means warn for non-prototype function decls
501 or non-prototyped defs without previous prototype. */
502
503int warn_strict_prototypes;
504
505/* Nonzero means warn for any global function def
506 without separate previous prototype decl. */
507
508int warn_missing_prototypes;
509
1474fe46
RK
510/* Nonzero means warn for any global function def
511 without separate previous decl. */
512
513int warn_missing_declarations;
514
51e29401
RS
515/* Nonzero means warn about multiple (redundant) decls for the same single
516 variable or function. */
517
518int warn_redundant_decls = 0;
519
520/* Nonzero means warn about extern declarations of objects not at
521 file-scope level and about *all* declarations of functions (whether
522 extern or static) not at file-scope level. Note that we exclude
523 implicit function declarations. To get warnings about those, use
524 -Wimplicit. */
525
526int warn_nested_externs = 0;
527
0f41302f 528/* Warn about *printf or *scanf format/argument anomalies. */
51e29401
RS
529
530int warn_format;
531
532/* Warn about a subscript that has type char. */
533
534int warn_char_subscripts = 0;
535
536/* Warn if a type conversion is done that might have confusing results. */
537
538int warn_conversion;
539
540/* Warn if adding () is suggested. */
541
929f3671 542int warn_parentheses;
51e29401 543
36e6fa69
RS
544/* Warn if initializer is not completely bracketed. */
545
546int warn_missing_braces;
547
d51f9363
JM
548/* Warn about comparison of signed and unsigned values. */
549
550int warn_sign_compare;
551
51e29401
RS
552/* Nonzero means `$' can be in an identifier.
553 See cccp.c for reasons why this breaks some obscure ANSI C programs. */
554
555#ifndef DOLLARS_IN_IDENTIFIERS
556#define DOLLARS_IN_IDENTIFIERS 1
557#endif
558int dollars_in_ident = DOLLARS_IN_IDENTIFIERS > 1;
559
51e29401
RS
560/* Decode the string P as a language-specific option for C.
561 Return 1 if it is recognized (and handle it);
562 return 0 if not recognized. */
563
564int
565c_decode_option (p)
566 char *p;
567{
568 if (!strcmp (p, "-ftraditional") || !strcmp (p, "-traditional"))
569 {
570 flag_traditional = 1;
571 flag_writable_strings = 1;
572#if DOLLARS_IN_IDENTIFIERS > 0
573 dollars_in_ident = 1;
574#endif
575 }
55b4742b
RS
576 else if (!strcmp (p, "-fallow-single-precision"))
577 flag_allow_single_precision = 1;
4ecc65ac
RS
578 else if (!strcmp (p, "-fnotraditional") || !strcmp (p, "-fno-traditional"))
579 {
580 flag_traditional = 0;
581 flag_writable_strings = 0;
582 dollars_in_ident = DOLLARS_IN_IDENTIFIERS > 1;
583 }
a419ff54
RS
584 else if (!strcmp (p, "-fdollars-in-identifiers"))
585 {
586#if DOLLARS_IN_IDENTIFIERS > 0
587 dollars_in_ident = 1;
588#endif
589 }
014aa47e 590 else if (!strcmp (p, "-fno-dollars-in-identifiers"))
a419ff54 591 dollars_in_ident = 0;
51e29401
RS
592 else if (!strcmp (p, "-fsigned-char"))
593 flag_signed_char = 1;
594 else if (!strcmp (p, "-funsigned-char"))
595 flag_signed_char = 0;
596 else if (!strcmp (p, "-fno-signed-char"))
597 flag_signed_char = 0;
598 else if (!strcmp (p, "-fno-unsigned-char"))
599 flag_signed_char = 1;
7a0347ff
RS
600 else if (!strcmp (p, "-fsigned-bitfields")
601 || !strcmp (p, "-fno-unsigned-bitfields"))
602 {
603 flag_signed_bitfields = 1;
604 explicit_flag_signed_bitfields = 1;
605 }
606 else if (!strcmp (p, "-funsigned-bitfields")
607 || !strcmp (p, "-fno-signed-bitfields"))
608 {
609 flag_signed_bitfields = 0;
610 explicit_flag_signed_bitfields = 1;
611 }
51e29401
RS
612 else if (!strcmp (p, "-fshort-enums"))
613 flag_short_enums = 1;
614 else if (!strcmp (p, "-fno-short-enums"))
615 flag_short_enums = 0;
616 else if (!strcmp (p, "-fcond-mismatch"))
617 flag_cond_mismatch = 1;
618 else if (!strcmp (p, "-fno-cond-mismatch"))
619 flag_cond_mismatch = 0;
620 else if (!strcmp (p, "-fshort-double"))
621 flag_short_double = 1;
622 else if (!strcmp (p, "-fno-short-double"))
623 flag_short_double = 0;
624 else if (!strcmp (p, "-fasm"))
625 flag_no_asm = 0;
626 else if (!strcmp (p, "-fno-asm"))
627 flag_no_asm = 1;
628 else if (!strcmp (p, "-fbuiltin"))
629 flag_no_builtin = 0;
630 else if (!strcmp (p, "-fno-builtin"))
631 flag_no_builtin = 1;
632 else if (!strcmp (p, "-fno-ident"))
633 flag_no_ident = 1;
634 else if (!strcmp (p, "-fident"))
635 flag_no_ident = 0;
636 else if (!strcmp (p, "-ansi"))
fc3ffe83 637 flag_no_asm = 1, flag_no_nonansi_builtin = 1, dollars_in_ident = 0;
51e29401
RS
638 else if (!strcmp (p, "-Wimplicit"))
639 warn_implicit = 1;
640 else if (!strcmp (p, "-Wno-implicit"))
641 warn_implicit = 0;
642 else if (!strcmp (p, "-Wwrite-strings"))
643 warn_write_strings = 1;
644 else if (!strcmp (p, "-Wno-write-strings"))
645 warn_write_strings = 0;
646 else if (!strcmp (p, "-Wcast-qual"))
647 warn_cast_qual = 1;
648 else if (!strcmp (p, "-Wno-cast-qual"))
649 warn_cast_qual = 0;
5c8902bb
RK
650 else if (!strcmp (p, "-Wbad-function-cast"))
651 warn_bad_function_cast = 1;
652 else if (!strcmp (p, "-Wno-bad-function-cast"))
653 warn_bad_function_cast = 0;
51e29401
RS
654 else if (!strcmp (p, "-Wpointer-arith"))
655 warn_pointer_arith = 1;
656 else if (!strcmp (p, "-Wno-pointer-arith"))
657 warn_pointer_arith = 0;
658 else if (!strcmp (p, "-Wstrict-prototypes"))
659 warn_strict_prototypes = 1;
660 else if (!strcmp (p, "-Wno-strict-prototypes"))
661 warn_strict_prototypes = 0;
662 else if (!strcmp (p, "-Wmissing-prototypes"))
663 warn_missing_prototypes = 1;
664 else if (!strcmp (p, "-Wno-missing-prototypes"))
665 warn_missing_prototypes = 0;
1474fe46
RK
666 else if (!strcmp (p, "-Wmissing-declarations"))
667 warn_missing_declarations = 1;
668 else if (!strcmp (p, "-Wno-missing-declarations"))
669 warn_missing_declarations = 0;
51e29401
RS
670 else if (!strcmp (p, "-Wredundant-decls"))
671 warn_redundant_decls = 1;
ec2343c4 672 else if (!strcmp (p, "-Wno-redundant-decls"))
51e29401
RS
673 warn_redundant_decls = 0;
674 else if (!strcmp (p, "-Wnested-externs"))
675 warn_nested_externs = 1;
676 else if (!strcmp (p, "-Wno-nested-externs"))
677 warn_nested_externs = 0;
678 else if (!strcmp (p, "-Wtraditional"))
679 warn_traditional = 1;
680 else if (!strcmp (p, "-Wno-traditional"))
681 warn_traditional = 0;
682 else if (!strcmp (p, "-Wformat"))
683 warn_format = 1;
684 else if (!strcmp (p, "-Wno-format"))
685 warn_format = 0;
686 else if (!strcmp (p, "-Wchar-subscripts"))
687 warn_char_subscripts = 1;
688 else if (!strcmp (p, "-Wno-char-subscripts"))
689 warn_char_subscripts = 0;
690 else if (!strcmp (p, "-Wconversion"))
691 warn_conversion = 1;
692 else if (!strcmp (p, "-Wno-conversion"))
693 warn_conversion = 0;
694 else if (!strcmp (p, "-Wparentheses"))
695 warn_parentheses = 1;
696 else if (!strcmp (p, "-Wno-parentheses"))
697 warn_parentheses = 0;
57916f61
RS
698 else if (!strcmp (p, "-Wreturn-type"))
699 warn_return_type = 1;
700 else if (!strcmp (p, "-Wno-return-type"))
701 warn_return_type = 0;
51e29401
RS
702 else if (!strcmp (p, "-Wcomment"))
703 ; /* cpp handles this one. */
704 else if (!strcmp (p, "-Wno-comment"))
705 ; /* cpp handles this one. */
706 else if (!strcmp (p, "-Wcomments"))
707 ; /* cpp handles this one. */
708 else if (!strcmp (p, "-Wno-comments"))
709 ; /* cpp handles this one. */
710 else if (!strcmp (p, "-Wtrigraphs"))
711 ; /* cpp handles this one. */
712 else if (!strcmp (p, "-Wno-trigraphs"))
713 ; /* cpp handles this one. */
fc3ffe83
RK
714 else if (!strcmp (p, "-Wimport"))
715 ; /* cpp handles this one. */
716 else if (!strcmp (p, "-Wno-import"))
717 ; /* cpp handles this one. */
36e6fa69
RS
718 else if (!strcmp (p, "-Wmissing-braces"))
719 warn_missing_braces = 1;
720 else if (!strcmp (p, "-Wno-missing-braces"))
721 warn_missing_braces = 0;
d51f9363
JM
722 else if (!strcmp (p, "-Wsign-compare"))
723 warn_sign_compare = 1;
724 else if (!strcmp (p, "-Wno-sign-compare"))
725 warn_sign_compare = 0;
51e29401
RS
726 else if (!strcmp (p, "-Wall"))
727 {
a2468e45
BK
728 /* We save the value of warn_uninitialized, since if they put
729 -Wuninitialized on the command line, we need to generate a
730 warning about not using it without also specifying -O. */
731 if (warn_uninitialized != 1)
732 warn_uninitialized = 2;
51e29401
RS
733 warn_implicit = 1;
734 warn_return_type = 1;
735 warn_unused = 1;
736 warn_switch = 1;
737 warn_format = 1;
738 warn_char_subscripts = 1;
929f3671 739 warn_parentheses = 1;
36e6fa69 740 warn_missing_braces = 1;
d51f9363 741 warn_sign_compare = 1;
51e29401
RS
742 }
743 else
744 return 0;
745
746 return 1;
747}
748
749/* Hooks for print_node. */
750
751void
27d433a2
BC
752print_lang_decl (file, node, indent)
753 FILE *file;
754 tree node;
755 int indent;
51e29401
RS
756{
757}
758
759void
27d433a2
BC
760print_lang_type (file, node, indent)
761 FILE *file;
762 tree node;
763 int indent;
51e29401
RS
764{
765}
766
767void
768print_lang_identifier (file, node, indent)
769 FILE *file;
770 tree node;
771 int indent;
772{
773 print_node (file, "global", IDENTIFIER_GLOBAL_VALUE (node), indent + 4);
774 print_node (file, "local", IDENTIFIER_LOCAL_VALUE (node), indent + 4);
775 print_node (file, "label", IDENTIFIER_LABEL_VALUE (node), indent + 4);
776 print_node (file, "implicit", IDENTIFIER_IMPLICIT_DECL (node), indent + 4);
777 print_node (file, "error locus", IDENTIFIER_ERROR_LOCUS (node), indent + 4);
fd0b8fce 778 print_node (file, "limbo value", IDENTIFIER_LIMBO_VALUE (node), indent + 4);
51e29401
RS
779}
780\f
b4892310
RS
781/* Hook called at end of compilation to assume 1 elt
782 for a top-level array decl that wasn't complete before. */
783
784void
785finish_incomplete_decl (decl)
786 tree decl;
787{
5cfac96e 788 if (TREE_CODE (decl) == VAR_DECL)
b4892310
RS
789 {
790 tree type = TREE_TYPE (decl);
5cfac96e
RK
791 if (type != error_mark_node
792 && TREE_CODE (type) == ARRAY_TYPE
793 && TYPE_DOMAIN (type) == 0)
b4892310 794 {
5cfac96e
RK
795 if (! DECL_EXTERNAL (decl))
796 warning_with_decl (decl, "array `%s' assumed to have one element");
797
b4892310
RS
798 complete_array_type (type, NULL_TREE, 1);
799
800 layout_decl (decl, 0);
801 }
802 }
803}
804\f
51e29401
RS
805/* Create a new `struct binding_level'. */
806
807static
808struct binding_level *
809make_binding_level ()
810{
811 /* NOSTRICT */
812 return (struct binding_level *) xmalloc (sizeof (struct binding_level));
813}
814
815/* Nonzero if we are currently in the global binding level. */
816
817int
818global_bindings_p ()
819{
820 return current_binding_level == global_binding_level;
821}
822
823void
824keep_next_level ()
825{
826 keep_next_level_flag = 1;
827}
828
829/* Nonzero if the current level needs to have a BLOCK made. */
830
831int
832kept_level_p ()
833{
834 return ((current_binding_level->keep_if_subblocks
835 && current_binding_level->blocks != 0)
836 || current_binding_level->keep
837 || current_binding_level->names != 0
838 || (current_binding_level->tags != 0
839 && !current_binding_level->tag_transparent));
840}
841
842/* Identify this binding level as a level of parameters.
89d7540d
RS
843 DEFINITION_FLAG is 1 for a definition, 0 for a declaration.
844 But it turns out there is no way to pass the right value for
845 DEFINITION_FLAG, so we ignore it. */
51e29401
RS
846
847void
848declare_parm_level (definition_flag)
849 int definition_flag;
850{
89d7540d 851 current_binding_level->parm_flag = 1;
51e29401
RS
852}
853
854/* Nonzero if currently making parm declarations. */
855
856int
857in_parm_level_p ()
858{
859 return current_binding_level->parm_flag;
860}
861
862/* Enter a new binding level.
863 If TAG_TRANSPARENT is nonzero, do so only for the name space of variables,
864 not for that of tags. */
865
866void
867pushlevel (tag_transparent)
868 int tag_transparent;
869{
870 register struct binding_level *newlevel = NULL_BINDING_LEVEL;
871
872 /* If this is the top level of a function,
873 just make sure that NAMED_LABELS is 0. */
874
875 if (current_binding_level == global_binding_level)
876 {
877 named_labels = 0;
878 }
879
880 /* Reuse or create a struct for this binding level. */
881
882 if (free_binding_level)
883 {
884 newlevel = free_binding_level;
885 free_binding_level = free_binding_level->level_chain;
886 }
887 else
888 {
889 newlevel = make_binding_level ();
890 }
891
892 /* Add this level to the front of the chain (stack) of levels that
893 are active. */
894
895 *newlevel = clear_binding_level;
896 newlevel->tag_transparent
897 = (tag_transparent
898 || (current_binding_level
899 ? current_binding_level->subblocks_tag_transparent
900 : 0));
901 newlevel->level_chain = current_binding_level;
902 current_binding_level = newlevel;
903 newlevel->keep = keep_next_level_flag;
904 keep_next_level_flag = 0;
905 newlevel->keep_if_subblocks = keep_next_if_subblocks;
906 keep_next_if_subblocks = 0;
907}
908
0500d6f9
RK
909/* Clear the limbo values of all identifiers defined in BLOCK or a subblock. */
910
911static void
912clear_limbo_values (block)
913 tree block;
914{
915 tree tem;
916
917 for (tem = BLOCK_VARS (block); tem; tem = TREE_CHAIN (tem))
918 if (DECL_NAME (tem) != 0)
919 IDENTIFIER_LIMBO_VALUE (DECL_NAME (tem)) = 0;
920
921 for (tem = BLOCK_SUBBLOCKS (block); tem; tem = TREE_CHAIN (tem))
922 clear_limbo_values (tem);
923}
924
51e29401
RS
925/* Exit a binding level.
926 Pop the level off, and restore the state of the identifier-decl mappings
927 that were in effect when this level was entered.
928
929 If KEEP is nonzero, this level had explicit declarations, so
930 and create a "block" (a BLOCK node) for the level
931 to record its declarations and subblocks for symbol table output.
932
933 If FUNCTIONBODY is nonzero, this level is the body of a function,
934 so create a block as if KEEP were set and also clear out all
935 label names.
936
937 If REVERSE is nonzero, reverse the order of decls before putting
938 them into the BLOCK. */
939
940tree
941poplevel (keep, reverse, functionbody)
942 int keep;
943 int reverse;
944 int functionbody;
945{
946 register tree link;
947 /* The chain of decls was accumulated in reverse order.
948 Put it into forward order, just for cleanliness. */
949 tree decls;
950 tree tags = current_binding_level->tags;
951 tree subblocks = current_binding_level->blocks;
952 tree block = 0;
953 tree decl;
968e5643 954 int block_previously_created;
51e29401
RS
955
956 keep |= current_binding_level->keep;
957
958 /* This warning is turned off because it causes warnings for
959 declarations like `extern struct foo *x'. */
960#if 0
961 /* Warn about incomplete structure types in this level. */
962 for (link = tags; link; link = TREE_CHAIN (link))
963 if (TYPE_SIZE (TREE_VALUE (link)) == 0)
964 {
965 tree type = TREE_VALUE (link);
966 char *errmsg;
967 switch (TREE_CODE (type))
968 {
969 case RECORD_TYPE:
970 errmsg = "`struct %s' incomplete in scope ending here";
971 break;
972 case UNION_TYPE:
973 errmsg = "`union %s' incomplete in scope ending here";
974 break;
975 case ENUMERAL_TYPE:
976 errmsg = "`enum %s' incomplete in scope ending here";
977 break;
978 }
979 if (TREE_CODE (TYPE_NAME (type)) == IDENTIFIER_NODE)
980 error (errmsg, IDENTIFIER_POINTER (TYPE_NAME (type)));
981 else
982 /* If this type has a typedef-name, the TYPE_NAME is a TYPE_DECL. */
983 error (errmsg, IDENTIFIER_POINTER (DECL_NAME (TYPE_NAME (type))));
984 }
985#endif /* 0 */
986
987 /* Get the decls in the order they were written.
988 Usually current_binding_level->names is in reverse order.
989 But parameter decls were previously put in forward order. */
990
991 if (reverse)
992 current_binding_level->names
993 = decls = nreverse (current_binding_level->names);
994 else
995 decls = current_binding_level->names;
996
997 /* Output any nested inline functions within this block
998 if they weren't already output. */
999
1000 for (decl = decls; decl; decl = TREE_CHAIN (decl))
1001 if (TREE_CODE (decl) == FUNCTION_DECL
1002 && ! TREE_ASM_WRITTEN (decl)
1003 && DECL_INITIAL (decl) != 0
1004 && TREE_ADDRESSABLE (decl))
42dfa47f
RS
1005 {
1006 /* If this decl was copied from a file-scope decl
1007 on account of a block-scope extern decl,
6272a449
JW
1008 propagate TREE_ADDRESSABLE to the file-scope decl.
1009
1010 DECL_ABSTRACT_ORIGIN can be set to itself if warn_return_type is
1011 true, since then the decl goes through save_for_inline_copying. */
1012 if (DECL_ABSTRACT_ORIGIN (decl) != 0
1013 && DECL_ABSTRACT_ORIGIN (decl) != decl)
42dfa47f
RS
1014 TREE_ADDRESSABLE (DECL_ABSTRACT_ORIGIN (decl)) = 1;
1015 else
47df0262
RK
1016 {
1017 push_function_context ();
1018 output_inline_function (decl);
1019 pop_function_context ();
1020 }
42dfa47f 1021 }
51e29401
RS
1022
1023 /* If there were any declarations or structure tags in that level,
1024 or if this level is a function body,
1025 create a BLOCK to record them for the life of this function. */
1026
3bf40d18 1027 block = 0;
968e5643
RS
1028 block_previously_created = (current_binding_level->this_block != 0);
1029 if (block_previously_created)
3bf40d18
RS
1030 block = current_binding_level->this_block;
1031 else if (keep || functionbody
1032 || (current_binding_level->keep_if_subblocks && subblocks != 0))
1033 block = make_node (BLOCK);
1034 if (block != 0)
1035 {
1036 BLOCK_VARS (block) = decls;
1037 BLOCK_TYPE_TAGS (block) = tags;
1038 BLOCK_SUBBLOCKS (block) = subblocks;
4ecc65ac 1039 remember_end_note (block);
3bf40d18 1040 }
51e29401
RS
1041
1042 /* In each subblock, record that this is its superior. */
1043
1044 for (link = subblocks; link; link = TREE_CHAIN (link))
1045 BLOCK_SUPERCONTEXT (link) = block;
1046
1047 /* Clear out the meanings of the local variables of this level. */
1048
1049 for (link = decls; link; link = TREE_CHAIN (link))
1050 {
1051 if (DECL_NAME (link) != 0)
1052 {
1053 /* If the ident. was used or addressed via a local extern decl,
1054 don't forget that fact. */
1394aabd 1055 if (DECL_EXTERNAL (link))
51e29401
RS
1056 {
1057 if (TREE_USED (link))
1058 TREE_USED (DECL_NAME (link)) = 1;
1059 if (TREE_ADDRESSABLE (link))
1060 TREE_ADDRESSABLE (DECL_ASSEMBLER_NAME (link)) = 1;
1061 }
1062 IDENTIFIER_LOCAL_VALUE (DECL_NAME (link)) = 0;
1063 }
1064 }
1065
1066 /* Restore all name-meanings of the outer levels
1067 that were shadowed by this level. */
1068
1069 for (link = current_binding_level->shadowed; link; link = TREE_CHAIN (link))
1070 IDENTIFIER_LOCAL_VALUE (TREE_PURPOSE (link)) = TREE_VALUE (link);
1071
1072 /* If the level being exited is the top level of a function,
1073 check over all the labels, and clear out the current
1074 (function local) meanings of their names. */
1075
1076 if (functionbody)
1077 {
0500d6f9
RK
1078 clear_limbo_values (block);
1079
51e29401
RS
1080 /* If this is the top level block of a function,
1081 the vars are the function's parameters.
1082 Don't leave them in the BLOCK because they are
1083 found in the FUNCTION_DECL instead. */
1084
1085 BLOCK_VARS (block) = 0;
1086
1087 /* Clear out the definitions of all label names,
1088 since their scopes end here,
1089 and add them to BLOCK_VARS. */
1090
1091 for (link = named_labels; link; link = TREE_CHAIN (link))
1092 {
1093 register tree label = TREE_VALUE (link);
1094
1095 if (DECL_INITIAL (label) == 0)
1096 {
1097 error_with_decl (label, "label `%s' used but not defined");
1098 /* Avoid crashing later. */
1099 define_label (input_filename, lineno,
1100 DECL_NAME (label));
1101 }
1102 else if (warn_unused && !TREE_USED (label))
1103 warning_with_decl (label, "label `%s' defined but not used");
1104 IDENTIFIER_LABEL_VALUE (DECL_NAME (label)) = 0;
1105
1106 /* Put the labels into the "variables" of the
1107 top-level block, so debugger can see them. */
1108 TREE_CHAIN (label) = BLOCK_VARS (block);
1109 BLOCK_VARS (block) = label;
1110 }
1111 }
1112
1113 /* Pop the current level, and free the structure for reuse. */
1114
1115 {
1116 register struct binding_level *level = current_binding_level;
1117 current_binding_level = current_binding_level->level_chain;
1118
1119 level->level_chain = free_binding_level;
1120 free_binding_level = level;
1121 }
1122
1123 /* Dispose of the block that we just made inside some higher level. */
1124 if (functionbody)
1125 DECL_INITIAL (current_function_decl) = block;
1126 else if (block)
968e5643
RS
1127 {
1128 if (!block_previously_created)
1129 current_binding_level->blocks
1130 = chainon (current_binding_level->blocks, block);
1131 }
51e29401
RS
1132 /* If we did not make a block for the level just exited,
1133 any blocks made for inner levels
1134 (since they cannot be recorded as subblocks in that level)
1135 must be carried forward so they will later become subblocks
1136 of something else. */
1137 else if (subblocks)
1138 current_binding_level->blocks
1139 = chainon (current_binding_level->blocks, subblocks);
1140
1141 /* Set the TYPE_CONTEXTs for all of the tagged types belonging to this
1142 binding contour so that they point to the appropriate construct, i.e.
1143 either to the current FUNCTION_DECL node, or else to the BLOCK node
1144 we just constructed.
1145
1146 Note that for tagged types whose scope is just the formal parameter
1147 list for some function type specification, we can't properly set
1148 their TYPE_CONTEXTs here, because we don't have a pointer to the
1149 appropriate FUNCTION_TYPE node readily available to us. For those
1150 cases, the TYPE_CONTEXTs of the relevant tagged type nodes get set
1151 in `grokdeclarator' as soon as we have created the FUNCTION_TYPE
1152 node which will represent the "scope" for these "parameter list local"
1153 tagged types.
1154 */
1155
1156 if (functionbody)
1157 for (link = tags; link; link = TREE_CHAIN (link))
1158 TYPE_CONTEXT (TREE_VALUE (link)) = current_function_decl;
1159 else if (block)
1160 for (link = tags; link; link = TREE_CHAIN (link))
1161 TYPE_CONTEXT (TREE_VALUE (link)) = block;
1162
1163 if (block)
1164 TREE_USED (block) = 1;
1165 return block;
1166}
3bf40d18
RS
1167
1168/* Delete the node BLOCK from the current binding level.
1169 This is used for the block inside a stmt expr ({...})
1170 so that the block can be reinserted where appropriate. */
1171
1172void
1173delete_block (block)
1174 tree block;
1175{
1176 tree t;
1177 if (current_binding_level->blocks == block)
1178 current_binding_level->blocks = TREE_CHAIN (block);
1179 for (t = current_binding_level->blocks; t;)
1180 {
1181 if (TREE_CHAIN (t) == block)
1182 TREE_CHAIN (t) = TREE_CHAIN (block);
1183 else
1184 t = TREE_CHAIN (t);
1185 }
1186 TREE_CHAIN (block) = NULL;
1187 /* Clear TREE_USED which is always set by poplevel.
1188 The flag is set again if insert_block is called. */
1189 TREE_USED (block) = 0;
1190}
1191
1192/* Insert BLOCK at the end of the list of subblocks of the
1193 current binding level. This is used when a BIND_EXPR is expanded,
6f65afb0 1194 to handle the BLOCK node inside the BIND_EXPR. */
3bf40d18
RS
1195
1196void
1197insert_block (block)
1198 tree block;
1199{
1200 TREE_USED (block) = 1;
1201 current_binding_level->blocks
1202 = chainon (current_binding_level->blocks, block);
1203}
1204
968e5643 1205/* Set the BLOCK node for the innermost scope
3bf40d18
RS
1206 (the one we are currently in). */
1207
968e5643
RS
1208void
1209set_block (block)
1210 register tree block;
3bf40d18 1211{
968e5643 1212 current_binding_level->this_block = block;
3bf40d18 1213}
51e29401
RS
1214\f
1215void
1216push_label_level ()
1217{
1218 register struct binding_level *newlevel;
1219
1220 /* Reuse or create a struct for this binding level. */
1221
1222 if (free_binding_level)
1223 {
1224 newlevel = free_binding_level;
1225 free_binding_level = free_binding_level->level_chain;
1226 }
1227 else
1228 {
1229 newlevel = make_binding_level ();
1230 }
1231
1232 /* Add this level to the front of the chain (stack) of label levels. */
1233
1234 newlevel->level_chain = label_level_chain;
1235 label_level_chain = newlevel;
1236
1237 newlevel->names = named_labels;
1238 newlevel->shadowed = shadowed_labels;
1239 named_labels = 0;
1240 shadowed_labels = 0;
1241}
1242
1243void
1244pop_label_level ()
1245{
1246 register struct binding_level *level = label_level_chain;
1247 tree link, prev;
1248
1249 /* Clear out the definitions of the declared labels in this level.
1250 Leave in the list any ordinary, non-declared labels. */
1251 for (link = named_labels, prev = 0; link;)
1252 {
1253 if (C_DECLARED_LABEL_FLAG (TREE_VALUE (link)))
1254 {
1255 if (DECL_SOURCE_LINE (TREE_VALUE (link)) == 0)
1256 {
6b2a374b
RK
1257 error_with_decl (TREE_VALUE (link),
1258 "label `%s' used but not defined");
51e29401
RS
1259 /* Avoid crashing later. */
1260 define_label (input_filename, lineno,
1261 DECL_NAME (TREE_VALUE (link)));
1262 }
1263 else if (warn_unused && !TREE_USED (TREE_VALUE (link)))
1264 warning_with_decl (TREE_VALUE (link),
1265 "label `%s' defined but not used");
1266 IDENTIFIER_LABEL_VALUE (DECL_NAME (TREE_VALUE (link))) = 0;
1267
1268 /* Delete this element from the list. */
1269 link = TREE_CHAIN (link);
1270 if (prev)
1271 TREE_CHAIN (prev) = link;
1272 else
1273 named_labels = link;
1274 }
1275 else
1276 {
1277 prev = link;
1278 link = TREE_CHAIN (link);
1279 }
1280 }
1281
1282 /* Bring back all the labels that were shadowed. */
1283 for (link = shadowed_labels; link; link = TREE_CHAIN (link))
1284 if (DECL_NAME (TREE_VALUE (link)) != 0)
1285 IDENTIFIER_LABEL_VALUE (DECL_NAME (TREE_VALUE (link)))
1286 = TREE_VALUE (link);
1287
1288 named_labels = chainon (named_labels, level->names);
1289 shadowed_labels = level->shadowed;
1290
1291 /* Pop the current level, and free the structure for reuse. */
1292 label_level_chain = label_level_chain->level_chain;
1293 level->level_chain = free_binding_level;
1294 free_binding_level = level;
1295}
1296\f
1297/* Push a definition or a declaration of struct, union or enum tag "name".
1298 "type" should be the type node.
1299 We assume that the tag "name" is not already defined.
1300
1301 Note that the definition may really be just a forward reference.
1302 In that case, the TYPE_SIZE will be zero. */
1303
1304void
1305pushtag (name, type)
1306 tree name, type;
1307{
1308 register struct binding_level *b;
1309
1310 /* Find the proper binding level for this type tag. */
1311
1312 for (b = current_binding_level; b->tag_transparent; b = b->level_chain)
1313 continue;
1314
1315 if (name)
1316 {
1317 /* Record the identifier as the type's name if it has none. */
1318
1319 if (TYPE_NAME (type) == 0)
1320 TYPE_NAME (type) = name;
51e29401
RS
1321 }
1322
c138f328
RS
1323 if (b == global_binding_level)
1324 b->tags = perm_tree_cons (name, type, b->tags);
1325 else
1326 b->tags = saveable_tree_cons (name, type, b->tags);
1327
51e29401
RS
1328 /* Create a fake NULL-named TYPE_DECL node whose TREE_TYPE will be the
1329 tagged type we just added to the current binding level. This fake
1330 NULL-named TYPE_DECL node helps dwarfout.c to know when it needs
858a47b1 1331 to output a representation of a tagged type, and it also gives
51e29401
RS
1332 us a convenient place to record the "scope start" address for the
1333 tagged type. */
1334
8d9bfdc5 1335 TYPE_STUB_DECL (type) = pushdecl (build_decl (TYPE_DECL, NULL_TREE, type));
51e29401
RS
1336}
1337\f
1338/* Handle when a new declaration NEWDECL
1339 has the same name as an old one OLDDECL
1340 in the same binding contour.
1341 Prints an error message if appropriate.
1342
1343 If safely possible, alter OLDDECL to look like NEWDECL, and return 1.
bf44f7de
JW
1344 Otherwise, return 0.
1345
1346 When DIFFERENT_BINDING_LEVEL is true, NEWDECL is an external declaration,
1347 and OLDDECL is in an outer binding level and should thus not be changed. */
51e29401
RS
1348
1349static int
bf44f7de 1350duplicate_decls (newdecl, olddecl, different_binding_level)
51e29401 1351 register tree newdecl, olddecl;
bf44f7de 1352 int different_binding_level;
51e29401
RS
1353{
1354 int types_match = comptypes (TREE_TYPE (newdecl), TREE_TYPE (olddecl));
1355 int new_is_definition = (TREE_CODE (newdecl) == FUNCTION_DECL
1356 && DECL_INITIAL (newdecl) != 0);
664b4b1e
RS
1357 tree oldtype = TREE_TYPE (olddecl);
1358 tree newtype = TREE_TYPE (newdecl);
8e5e53da 1359 char *errmsg = 0;
51e29401 1360
4b4e3407
RK
1361 if (TREE_CODE_CLASS (TREE_CODE (olddecl)) == 'd')
1362 DECL_MACHINE_ATTRIBUTES (newdecl) = DECL_MACHINE_ATTRIBUTES (olddecl);
1363
664b4b1e
RS
1364 if (TREE_CODE (newtype) == ERROR_MARK
1365 || TREE_CODE (oldtype) == ERROR_MARK)
51e29401
RS
1366 types_match = 0;
1367
1368 /* New decl is completely inconsistent with the old one =>
1369 tell caller to replace the old one.
1370 This is always an error except in the case of shadowing a builtin. */
1371 if (TREE_CODE (olddecl) != TREE_CODE (newdecl))
1372 {
1373 if (TREE_CODE (olddecl) == FUNCTION_DECL
70efc776
RS
1374 && (DECL_BUILT_IN (olddecl)
1375 || DECL_BUILT_IN_NONANSI (olddecl)))
51e29401 1376 {
70efc776
RS
1377 /* If you declare a built-in or predefined function name as static,
1378 the old definition is overridden,
51e29401
RS
1379 but optionally warn this was a bad choice of name. */
1380 if (!TREE_PUBLIC (newdecl))
1381 {
70efc776
RS
1382 if (!warn_shadow)
1383 ;
1384 else if (DECL_BUILT_IN (olddecl))
51e29401 1385 warning_with_decl (newdecl, "shadowing built-in function `%s'");
70efc776
RS
1386 else
1387 warning_with_decl (newdecl, "shadowing library function `%s'");
51e29401
RS
1388 }
1389 /* Likewise, if the built-in is not ansi, then programs can
929f3671 1390 override it even globally without an error. */
70efc776
RS
1391 else if (! DECL_BUILT_IN (olddecl))
1392 warning_with_decl (newdecl,
1393 "library function `%s' declared as non-function");
1394
51e29401
RS
1395 else if (DECL_BUILT_IN_NONANSI (olddecl))
1396 warning_with_decl (newdecl,
1397 "built-in function `%s' declared as non-function");
51e29401
RS
1398 else
1399 warning_with_decl (newdecl,
70efc776 1400 "built-in function `%s' declared as non-function");
51e29401
RS
1401 }
1402 else
1403 {
1404 error_with_decl (newdecl, "`%s' redeclared as different kind of symbol");
1405 error_with_decl (olddecl, "previous declaration of `%s'");
1406 }
1407
1408 return 0;
1409 }
1410
1411 /* For real parm decl following a forward decl,
1412 return 1 so old decl will be reused. */
1413 if (types_match && TREE_CODE (newdecl) == PARM_DECL
1414 && TREE_ASM_WRITTEN (olddecl) && ! TREE_ASM_WRITTEN (newdecl))
1415 return 1;
1416
1417 /* The new declaration is the same kind of object as the old one.
1418 The declarations may partially match. Print warnings if they don't
1419 match enough. Ultimately, copy most of the information from the new
1420 decl to the old one, and keep using the old one. */
1421
1422 if (flag_traditional && TREE_CODE (newdecl) == FUNCTION_DECL
1423 && IDENTIFIER_IMPLICIT_DECL (DECL_NAME (newdecl)) == olddecl
1424 && DECL_INITIAL (olddecl) == 0)
1425 /* If -traditional, avoid error for redeclaring fcn
1426 after implicit decl. */
1427 ;
1428 else if (TREE_CODE (olddecl) == FUNCTION_DECL
1429 && DECL_BUILT_IN (olddecl))
1430 {
e841f997 1431 /* A function declaration for a built-in function. */
51e29401
RS
1432 if (!TREE_PUBLIC (newdecl))
1433 {
1434 /* If you declare a built-in function name as static, the
1435 built-in definition is overridden,
1436 but optionally warn this was a bad choice of name. */
1437 if (warn_shadow)
1438 warning_with_decl (newdecl, "shadowing built-in function `%s'");
1439 /* Discard the old built-in function. */
1440 return 0;
1441 }
1442 else if (!types_match)
4c41bbfa
RS
1443 {
1444 /* Accept the return type of the new declaration if same modes. */
bf44f7de
JW
1445 tree oldreturntype = TREE_TYPE (oldtype);
1446 tree newreturntype = TREE_TYPE (newtype);
4fc7cf69
JW
1447
1448 /* Make sure we put the new type in the same obstack as the old ones.
1449 If the old types are not both in the same obstack, use the
1450 permanent one. */
1451 if (TYPE_OBSTACK (oldtype) == TYPE_OBSTACK (newtype))
1452 push_obstacks (TYPE_OBSTACK (oldtype), TYPE_OBSTACK (oldtype));
1453 else
1454 {
1455 push_obstacks_nochange ();
1456 end_temporary_allocation ();
1457 }
1458
4c41bbfa
RS
1459 if (TYPE_MODE (oldreturntype) == TYPE_MODE (newreturntype))
1460 {
32436219
RS
1461 /* Function types may be shared, so we can't just modify
1462 the return type of olddecl's function type. */
bf44f7de 1463 tree trytype
32436219 1464 = build_function_type (newreturntype,
bf44f7de 1465 TYPE_ARG_TYPES (oldtype));
32436219 1466
bf44f7de 1467 types_match = comptypes (newtype, trytype);
1f7586c1 1468 if (types_match)
bf44f7de 1469 oldtype = trytype;
1f7586c1
RS
1470 }
1471 /* Accept harmless mismatch in first argument type also.
1472 This is for ffs. */
1473 if (TYPE_ARG_TYPES (TREE_TYPE (newdecl)) != 0
bf44f7de
JW
1474 && TYPE_ARG_TYPES (oldtype) != 0
1475 && TREE_VALUE (TYPE_ARG_TYPES (newtype)) != 0
1476 && TREE_VALUE (TYPE_ARG_TYPES (oldtype)) != 0
1477 && (TYPE_MODE (TREE_VALUE (TYPE_ARG_TYPES (newtype)))
1478 == TYPE_MODE (TREE_VALUE (TYPE_ARG_TYPES (oldtype)))))
1f7586c1
RS
1479 {
1480 /* Function types may be shared, so we can't just modify
1481 the return type of olddecl's function type. */
bf44f7de
JW
1482 tree trytype
1483 = build_function_type (TREE_TYPE (oldtype),
1f7586c1 1484 tree_cons (NULL_TREE,
bf44f7de
JW
1485 TREE_VALUE (TYPE_ARG_TYPES (newtype)),
1486 TREE_CHAIN (TYPE_ARG_TYPES (oldtype))));
1f7586c1 1487
bf44f7de 1488 types_match = comptypes (newtype, trytype);
32436219 1489 if (types_match)
bf44f7de 1490 oldtype = trytype;
4c41bbfa 1491 }
bf44f7de
JW
1492 if (! different_binding_level)
1493 TREE_TYPE (olddecl) = oldtype;
4fc7cf69
JW
1494
1495 pop_obstacks ();
4c41bbfa
RS
1496 }
1497 if (!types_match)
52b6a22f
RS
1498 {
1499 /* If types don't match for a built-in, throw away the built-in. */
1500 warning_with_decl (newdecl, "conflicting types for built-in function `%s'");
1501 return 0;
1502 }
51e29401
RS
1503 }
1504 else if (TREE_CODE (olddecl) == FUNCTION_DECL
e841f997 1505 && DECL_SOURCE_LINE (olddecl) == 0)
51e29401 1506 {
e841f997
RS
1507 /* A function declaration for a predeclared function
1508 that isn't actually built in. */
51e29401
RS
1509 if (!TREE_PUBLIC (newdecl))
1510 {
858a47b1 1511 /* If you declare it as static, the
e841f997 1512 default definition is overridden. */
51e29401
RS
1513 return 0;
1514 }
1515 else if (!types_match)
e841f997 1516 {
4d06f145
RS
1517 /* If the types don't match, preserve volatility indication.
1518 Later on, we will discard everything else about the
1519 default declaration. */
e841f997 1520 TREE_THIS_VOLATILE (newdecl) |= TREE_THIS_VOLATILE (olddecl);
e841f997 1521 }
51e29401 1522 }
592252ad
RS
1523 /* Permit char *foo () to match void *foo (...) if not pedantic,
1524 if one of them came from a system header file. */
a4219ac7
RS
1525 else if (!types_match
1526 && TREE_CODE (olddecl) == FUNCTION_DECL
1527 && TREE_CODE (newdecl) == FUNCTION_DECL
664b4b1e
RS
1528 && TREE_CODE (TREE_TYPE (oldtype)) == POINTER_TYPE
1529 && TREE_CODE (TREE_TYPE (newtype)) == POINTER_TYPE
592252ad
RS
1530 && (DECL_IN_SYSTEM_HEADER (olddecl)
1531 || DECL_IN_SYSTEM_HEADER (newdecl))
5fe86b8b 1532 && ((TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (newtype))) == void_type_node
664b4b1e
RS
1533 && TYPE_ARG_TYPES (oldtype) == 0
1534 && self_promoting_args_p (TYPE_ARG_TYPES (newtype))
1535 && TREE_TYPE (TREE_TYPE (oldtype)) == char_type_node)
a4219ac7 1536 ||
664b4b1e
RS
1537 (TREE_TYPE (TREE_TYPE (newtype)) == char_type_node
1538 && TYPE_ARG_TYPES (newtype) == 0
1539 && self_promoting_args_p (TYPE_ARG_TYPES (oldtype))
5fe86b8b 1540 && TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (oldtype))) == void_type_node)))
a4219ac7
RS
1541 {
1542 if (pedantic)
1543 pedwarn_with_decl (newdecl, "conflicting types for `%s'");
664b4b1e 1544 /* Make sure we keep void * as ret type, not char *. */
5fe86b8b 1545 if (TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (oldtype))) == void_type_node)
664b4b1e 1546 TREE_TYPE (newdecl) = newtype = oldtype;
1d00bef8
JW
1547
1548 /* Set DECL_IN_SYSTEM_HEADER, so that if we see another declaration
1549 we will come back here again. */
1550 DECL_IN_SYSTEM_HEADER (newdecl) = 1;
a4219ac7 1551 }
51e29401
RS
1552 else if (!types_match
1553 /* Permit char *foo (int, ...); followed by char *foo ();
1554 if not pedantic. */
1555 && ! (TREE_CODE (olddecl) == FUNCTION_DECL
1556 && ! pedantic
1557 /* Return types must still match. */
664b4b1e
RS
1558 && comptypes (TREE_TYPE (oldtype),
1559 TREE_TYPE (newtype))
1560 && TYPE_ARG_TYPES (newtype) == 0))
51e29401
RS
1561 {
1562 error_with_decl (newdecl, "conflicting types for `%s'");
1563 /* Check for function type mismatch
1564 involving an empty arglist vs a nonempty one. */
1565 if (TREE_CODE (olddecl) == FUNCTION_DECL
664b4b1e
RS
1566 && comptypes (TREE_TYPE (oldtype),
1567 TREE_TYPE (newtype))
1568 && ((TYPE_ARG_TYPES (oldtype) == 0
51e29401
RS
1569 && DECL_INITIAL (olddecl) == 0)
1570 ||
664b4b1e 1571 (TYPE_ARG_TYPES (newtype) == 0
51e29401
RS
1572 && DECL_INITIAL (newdecl) == 0)))
1573 {
1574 /* Classify the problem further. */
664b4b1e 1575 register tree t = TYPE_ARG_TYPES (oldtype);
51e29401 1576 if (t == 0)
664b4b1e 1577 t = TYPE_ARG_TYPES (newtype);
51e29401
RS
1578 for (; t; t = TREE_CHAIN (t))
1579 {
1580 register tree type = TREE_VALUE (t);
1581
5fe86b8b
RS
1582 if (TREE_CHAIN (t) == 0
1583 && TYPE_MAIN_VARIANT (type) != void_type_node)
51e29401
RS
1584 {
1585 error ("A parameter list with an ellipsis can't match");
1586 error ("an empty parameter name list declaration.");
1587 break;
1588 }
1589
90d56da8 1590 if (TYPE_MAIN_VARIANT (type) == float_type_node
24bc4c7f 1591 || C_PROMOTING_INTEGER_TYPE_P (type))
51e29401
RS
1592 {
1593 error ("An argument type that has a default promotion");
1594 error ("can't match an empty parameter name list declaration.");
1595 break;
1596 }
1597 }
1598 }
1599 error_with_decl (olddecl, "previous declaration of `%s'");
1600 }
1601 else
1602 {
8e5e53da 1603 errmsg = redeclaration_error_message (newdecl, olddecl);
51e29401
RS
1604 if (errmsg)
1605 {
1606 error_with_decl (newdecl, errmsg);
1607 error_with_decl (olddecl,
d847e6a7
RS
1608 ((DECL_INITIAL (olddecl)
1609 && current_binding_level == global_binding_level)
1610 ? "`%s' previously defined here"
1611 : "`%s' previously declared here"));
51e29401 1612 }
4b4e3407
RK
1613 else if (TREE_CODE (newdecl) == TYPE_DECL
1614 && (DECL_IN_SYSTEM_HEADER (olddecl)
1615 || DECL_IN_SYSTEM_HEADER (newdecl)))
1616 {
1617 warning_with_decl (newdecl, "redefinition of `%s'");
1618 warning_with_decl
1619 (olddecl,
1620 ((DECL_INITIAL (olddecl)
1621 && current_binding_level == global_binding_level)
1622 ? "`%s' previously defined here"
1623 : "`%s' previously declared here"));
1624 }
51e29401
RS
1625 else if (TREE_CODE (olddecl) == FUNCTION_DECL
1626 && DECL_INITIAL (olddecl) != 0
664b4b1e 1627 && TYPE_ARG_TYPES (oldtype) == 0
f5ec0026
RK
1628 && TYPE_ARG_TYPES (newtype) != 0
1629 && TYPE_ACTUAL_ARG_TYPES (oldtype) != 0)
51e29401
RS
1630 {
1631 register tree type, parm;
1632 register int nargs;
1633 /* Prototype decl follows defn w/o prototype. */
1634
664b4b1e
RS
1635 for (parm = TYPE_ACTUAL_ARG_TYPES (oldtype),
1636 type = TYPE_ARG_TYPES (newtype),
51e29401 1637 nargs = 1;
5fe86b8b
RS
1638 (TYPE_MAIN_VARIANT (TREE_VALUE (parm)) != void_type_node
1639 || TYPE_MAIN_VARIANT (TREE_VALUE (type)) != void_type_node);
51e29401
RS
1640 parm = TREE_CHAIN (parm), type = TREE_CHAIN (type), nargs++)
1641 {
5fe86b8b
RS
1642 if (TYPE_MAIN_VARIANT (TREE_VALUE (parm)) == void_type_node
1643 || TYPE_MAIN_VARIANT (TREE_VALUE (type)) == void_type_node)
51e29401
RS
1644 {
1645 errmsg = "prototype for `%s' follows and number of arguments";
1646 break;
1647 }
1648 /* Type for passing arg must be consistent
1649 with that declared for the arg. */
1650 if (! comptypes (TREE_VALUE (parm), TREE_VALUE (type))
1651 /* If -traditional, allow `unsigned int' instead of `int'
1652 in the prototype. */
1653 && (! (flag_traditional
90d56da8
RS
1654 && TYPE_MAIN_VARIANT (TREE_VALUE (parm)) == integer_type_node
1655 && TYPE_MAIN_VARIANT (TREE_VALUE (type)) == unsigned_type_node)))
51e29401
RS
1656 {
1657 errmsg = "prototype for `%s' follows and argument %d";
1658 break;
1659 }
1660 }
1661 if (errmsg)
1662 {
1663 error_with_decl (newdecl, errmsg, nargs);
1664 error_with_decl (olddecl,
1665 "doesn't match non-prototype definition here");
1666 }
1667 else
1668 {
1669 warning_with_decl (newdecl, "prototype for `%s' follows");
1670 warning_with_decl (olddecl, "non-prototype definition here");
1671 }
1672 }
8eebb258 1673 /* Warn about mismatches in various flags. */
51e29401
RS
1674 else
1675 {
8eebb258
RS
1676 /* Warn if function is now inline
1677 but was previously declared not inline and has been called. */
51e29401 1678 if (TREE_CODE (olddecl) == FUNCTION_DECL
1394aabd 1679 && ! DECL_INLINE (olddecl) && DECL_INLINE (newdecl)
51e29401
RS
1680 && TREE_USED (olddecl))
1681 warning_with_decl (newdecl,
1682 "`%s' declared inline after being called");
1683 if (TREE_CODE (olddecl) == FUNCTION_DECL
1394aabd 1684 && ! DECL_INLINE (olddecl) && DECL_INLINE (newdecl)
960a2eb1 1685 && DECL_INITIAL (olddecl) != 0)
51e29401 1686 warning_with_decl (newdecl,
960a2eb1 1687 "`%s' declared inline after its definition");
a1a77352
JW
1688
1689 /* If pedantic, warn when static declaration follows a non-static
1690 declaration. Otherwise, do so only for functions. */
1691 if ((pedantic || TREE_CODE (olddecl) == FUNCTION_DECL)
51e29401
RS
1692 && TREE_PUBLIC (olddecl)
1693 && !TREE_PUBLIC (newdecl))
1694 warning_with_decl (newdecl, "static declaration for `%s' follows non-static");
1695
2af6a433
RK
1696 /* Warn when const declaration follows a non-const
1697 declaration, but not for functions. */
1698 if (TREE_CODE (olddecl) != FUNCTION_DECL
1699 && !TREE_READONLY (olddecl)
1700 && TREE_READONLY (newdecl))
1701 warning_with_decl (newdecl, "const declaration for `%s' follows non-const");
8eebb258
RS
1702 /* These bits are logically part of the type, for variables.
1703 But not for functions
1704 (where qualifiers are not valid ANSI anyway). */
2af6a433 1705 else if (pedantic && TREE_CODE (olddecl) != FUNCTION_DECL
51e29401
RS
1706 && (TREE_READONLY (newdecl) != TREE_READONLY (olddecl)
1707 || TREE_THIS_VOLATILE (newdecl) != TREE_THIS_VOLATILE (olddecl)))
1708 pedwarn_with_decl (newdecl, "type qualifiers for `%s' conflict with previous decl");
1709 }
1710 }
1711
27f427f8 1712 /* Optionally warn about more than one declaration for the same name. */
5ce574f2 1713 if (errmsg == 0 && warn_redundant_decls && DECL_SOURCE_LINE (olddecl) != 0
27f427f8
RS
1714 /* Dont warn about a function declaration
1715 followed by a definition. */
1716 && !(TREE_CODE (newdecl) == FUNCTION_DECL && DECL_INITIAL (newdecl) != 0
ec820a12
RS
1717 && DECL_INITIAL (olddecl) == 0)
1718 /* Don't warn about extern decl followed by (tentative) definition. */
1719 && !(DECL_EXTERNAL (olddecl) && ! DECL_EXTERNAL (newdecl)))
27f427f8
RS
1720 {
1721 warning_with_decl (newdecl, "redundant redeclaration of `%s' in same scope");
1722 warning_with_decl (olddecl, "previous declaration of `%s'");
1723 }
1724
51e29401 1725 /* Copy all the DECL_... slots specified in the new decl
664b4b1e
RS
1726 except for any that we copy here from the old type.
1727
1728 Past this point, we don't change OLDTYPE and NEWTYPE
1729 even if we change the types of NEWDECL and OLDDECL. */
51e29401
RS
1730
1731 if (types_match)
1732 {
bf44f7de
JW
1733 /* When copying info to olddecl, we store into write_olddecl
1734 instead. This allows us to avoid modifying olddecl when
1735 different_binding_level is true. */
1736 tree write_olddecl = different_binding_level ? newdecl : olddecl;
1737
46b1c393
RK
1738 /* Make sure we put the new type in the same obstack as the old ones.
1739 If the old types are not both in the same obstack, use the permanent
1740 one. */
1741 if (TYPE_OBSTACK (oldtype) == TYPE_OBSTACK (newtype))
1742 push_obstacks (TYPE_OBSTACK (oldtype), TYPE_OBSTACK (oldtype));
1743 else
1744 {
1745 push_obstacks_nochange ();
1746 end_temporary_allocation ();
1747 }
1748
51e29401
RS
1749 /* Merge the data types specified in the two decls. */
1750 if (TREE_CODE (newdecl) != FUNCTION_DECL || !DECL_BUILT_IN (olddecl))
bf44f7de
JW
1751 {
1752 if (different_binding_level)
1753 TREE_TYPE (newdecl)
1754 = build_type_attribute_variant
1755 (newtype,
1756 merge_attributes (TYPE_ATTRIBUTES (newtype),
1757 TYPE_ATTRIBUTES (oldtype)));
1758 else
1759 TREE_TYPE (newdecl)
1760 = TREE_TYPE (olddecl)
1761 = common_type (newtype, oldtype);
1762 }
51e29401
RS
1763
1764 /* Lay the type out, unless already done. */
1765 if (oldtype != TREE_TYPE (newdecl))
1766 {
1767 if (TREE_TYPE (newdecl) != error_mark_node)
1768 layout_type (TREE_TYPE (newdecl));
1769 if (TREE_CODE (newdecl) != FUNCTION_DECL
1770 && TREE_CODE (newdecl) != TYPE_DECL
1771 && TREE_CODE (newdecl) != CONST_DECL)
1772 layout_decl (newdecl, 0);
1773 }
1774 else
1775 {
1776 /* Since the type is OLDDECL's, make OLDDECL's size go with. */
1777 DECL_SIZE (newdecl) = DECL_SIZE (olddecl);
ec2343c4
MM
1778 if (TREE_CODE (olddecl) != FUNCTION_DECL)
1779 if (DECL_ALIGN (olddecl) > DECL_ALIGN (newdecl))
1780 DECL_ALIGN (newdecl) = DECL_ALIGN (olddecl);
51e29401
RS
1781 }
1782
fc542d3c
RS
1783 /* Keep the old rtl since we can safely use it. */
1784 DECL_RTL (newdecl) = DECL_RTL (olddecl);
1785
51e29401
RS
1786 /* Merge the type qualifiers. */
1787 if (DECL_BUILT_IN_NONANSI (olddecl) && TREE_THIS_VOLATILE (olddecl)
1788 && !TREE_THIS_VOLATILE (newdecl))
bf44f7de 1789 TREE_THIS_VOLATILE (write_olddecl) = 0;
51e29401 1790 if (TREE_READONLY (newdecl))
bf44f7de 1791 TREE_READONLY (write_olddecl) = 1;
51e29401 1792 if (TREE_THIS_VOLATILE (newdecl))
e2f6a3cf 1793 {
bf44f7de 1794 TREE_THIS_VOLATILE (write_olddecl) = 1;
e2f6a3cf
RS
1795 if (TREE_CODE (newdecl) == VAR_DECL)
1796 make_var_volatile (newdecl);
1797 }
51e29401 1798
bf44f7de
JW
1799 /* Keep source location of definition rather than declaration. */
1800 /* When called with different_binding_level set, keep the old
1801 information so that meaningful diagnostics can be given. */
1802 if (DECL_INITIAL (newdecl) == 0 && DECL_INITIAL (olddecl) != 0
1803 && ! different_binding_level)
51e29401
RS
1804 {
1805 DECL_SOURCE_LINE (newdecl) = DECL_SOURCE_LINE (olddecl);
1806 DECL_SOURCE_FILE (newdecl) = DECL_SOURCE_FILE (olddecl);
1807 }
1808
e2f6a3cf
RS
1809 /* Merge the unused-warning information. */
1810 if (DECL_IN_SYSTEM_HEADER (olddecl))
1811 DECL_IN_SYSTEM_HEADER (newdecl) = 1;
1812 else if (DECL_IN_SYSTEM_HEADER (newdecl))
bf44f7de 1813 DECL_IN_SYSTEM_HEADER (write_olddecl) = 1;
e2f6a3cf 1814
51e29401 1815 /* Merge the initialization information. */
bf44f7de
JW
1816 /* When called with different_binding_level set, don't copy over
1817 DECL_INITIAL, so that we don't accidentally change function
1818 declarations into function definitions. */
1819 if (DECL_INITIAL (newdecl) == 0 && ! different_binding_level)
51e29401 1820 DECL_INITIAL (newdecl) = DECL_INITIAL (olddecl);
1e50b042
DE
1821
1822 /* Merge the section attribute.
1823 We want to issue an error if the sections conflict but that must be
1824 done later in decl_attributes since we are called before attributes
1825 are assigned. */
1826 if (DECL_SECTION_NAME (newdecl) == NULL_TREE)
1827 DECL_SECTION_NAME (newdecl) = DECL_SECTION_NAME (olddecl);
46b1c393 1828
2c5f4139
JM
1829 if (TREE_CODE (newdecl) == FUNCTION_DECL)
1830 {
1831 DECL_STATIC_CONSTRUCTOR(newdecl) |= DECL_STATIC_CONSTRUCTOR(olddecl);
1832 DECL_STATIC_DESTRUCTOR (newdecl) |= DECL_STATIC_DESTRUCTOR (olddecl);
1833 }
1834
46b1c393 1835 pop_obstacks ();
51e29401
RS
1836 }
1837 /* If cannot merge, then use the new type and qualifiers,
1838 and don't preserve the old rtl. */
bf44f7de 1839 else if (! different_binding_level)
51e29401
RS
1840 {
1841 TREE_TYPE (olddecl) = TREE_TYPE (newdecl);
1842 TREE_READONLY (olddecl) = TREE_READONLY (newdecl);
1843 TREE_THIS_VOLATILE (olddecl) = TREE_THIS_VOLATILE (newdecl);
1844 TREE_SIDE_EFFECTS (olddecl) = TREE_SIDE_EFFECTS (newdecl);
1845 }
1846
1847 /* Merge the storage class information. */
daefd78b 1848 DECL_WEAK (newdecl) |= DECL_WEAK (olddecl);
51e29401
RS
1849 /* For functions, static overrides non-static. */
1850 if (TREE_CODE (newdecl) == FUNCTION_DECL)
1851 {
1852 TREE_PUBLIC (newdecl) &= TREE_PUBLIC (olddecl);
1853 /* This is since we don't automatically
1854 copy the attributes of NEWDECL into OLDDECL. */
bf44f7de
JW
1855 /* No need to worry about different_binding_level here because
1856 then TREE_PUBLIC (newdecl) was true. */
51e29401
RS
1857 TREE_PUBLIC (olddecl) = TREE_PUBLIC (newdecl);
1858 /* If this clears `static', clear it in the identifier too. */
1859 if (! TREE_PUBLIC (olddecl))
1860 TREE_PUBLIC (DECL_NAME (olddecl)) = 0;
1861 }
1394aabd 1862 if (DECL_EXTERNAL (newdecl))
51e29401
RS
1863 {
1864 TREE_STATIC (newdecl) = TREE_STATIC (olddecl);
1394aabd 1865 DECL_EXTERNAL (newdecl) = DECL_EXTERNAL (olddecl);
51e29401
RS
1866 /* An extern decl does not override previous storage class. */
1867 TREE_PUBLIC (newdecl) = TREE_PUBLIC (olddecl);
0ecef3cf
RK
1868 if (! DECL_EXTERNAL (newdecl))
1869 DECL_CONTEXT (newdecl) = DECL_CONTEXT (olddecl);
51e29401
RS
1870 }
1871 else
1872 {
1873 TREE_STATIC (olddecl) = TREE_STATIC (newdecl);
51e29401
RS
1874 TREE_PUBLIC (olddecl) = TREE_PUBLIC (newdecl);
1875 }
850cba29 1876
51e29401
RS
1877 /* If either decl says `inline', this fn is inline,
1878 unless its definition was passed already. */
1394aabd
RS
1879 if (DECL_INLINE (newdecl) && DECL_INITIAL (olddecl) == 0)
1880 DECL_INLINE (olddecl) = 1;
850cba29 1881 DECL_INLINE (newdecl) = DECL_INLINE (olddecl);
51e29401 1882
bf44f7de 1883 if (TREE_CODE (newdecl) == FUNCTION_DECL)
51e29401
RS
1884 {
1885 if (DECL_BUILT_IN (olddecl))
1886 {
bf44f7de
JW
1887 /* Get rid of any built-in function if new arg types don't match it
1888 or if we have a function definition. */
1889 if (! types_match || new_is_definition)
1890 {
1891 if (! different_binding_level)
1892 {
1893 TREE_TYPE (olddecl) = TREE_TYPE (newdecl);
1894 DECL_BUILT_IN (olddecl) = 0;
1895 }
1896 }
1897 else
1898 {
1899 /* If redeclaring a builtin function, and not a definition,
1900 it stays built in. */
1901 DECL_BUILT_IN (newdecl) = 1;
1902 DECL_FUNCTION_CODE (newdecl) = DECL_FUNCTION_CODE (olddecl);
1903 }
51e29401 1904 }
bf44f7de
JW
1905 /* Also preserve various other info from the definition. */
1906 else if (! new_is_definition)
51e29401 1907 DECL_FRAME_SIZE (newdecl) = DECL_FRAME_SIZE (olddecl);
bf44f7de
JW
1908 if (! new_is_definition)
1909 {
1910 DECL_RESULT (newdecl) = DECL_RESULT (olddecl);
1911 /* When called with different_binding_level set, don't copy over
1912 DECL_INITIAL, so that we don't accidentally change function
1913 declarations into function definitions. */
1914 if (! different_binding_level)
1915 DECL_INITIAL (newdecl) = DECL_INITIAL (olddecl);
1916 DECL_SAVED_INSNS (newdecl) = DECL_SAVED_INSNS (olddecl);
1917 DECL_ARGUMENTS (newdecl) = DECL_ARGUMENTS (olddecl);
1918 }
1919 }
1920 if (different_binding_level)
1921 {
1922 /* Don't output a duplicate symbol for this declaration. */
1923 TREE_ASM_WRITTEN (newdecl) = 1;
1924 return 0;
51e29401
RS
1925 }
1926
850cba29
RS
1927 /* Copy most of the decl-specific fields of NEWDECL into OLDDECL.
1928 But preserve OLDdECL's DECL_UID. */
1929 {
1930 register unsigned olddecl_uid = DECL_UID (olddecl);
1931
1932 bcopy ((char *) newdecl + sizeof (struct tree_common),
1933 (char *) olddecl + sizeof (struct tree_common),
1934 sizeof (struct tree_decl) - sizeof (struct tree_common));
1935 DECL_UID (olddecl) = olddecl_uid;
1936 }
51e29401
RS
1937
1938 return 1;
1939}
1940
1941/* Record a decl-node X as belonging to the current lexical scope.
1942 Check for errors (such as an incompatible declaration for the same
1943 name already seen in the same scope).
1944
1945 Returns either X or an old decl for the same name.
1946 If an old decl is returned, it may have been smashed
1947 to agree with what X says. */
1948
1949tree
1950pushdecl (x)
1951 tree x;
1952{
1953 register tree t;
1954 register tree name = DECL_NAME (x);
1955 register struct binding_level *b = current_binding_level;
1956
1957 DECL_CONTEXT (x) = current_function_decl;
89d7540d
RS
1958 /* A local extern declaration for a function doesn't constitute nesting.
1959 A local auto declaration does, since it's a forward decl
1960 for a nested function coming later. */
1961 if (TREE_CODE (x) == FUNCTION_DECL && DECL_INITIAL (x) == 0
1962 && DECL_EXTERNAL (x))
51e29401
RS
1963 DECL_CONTEXT (x) = 0;
1964
1394aabd 1965 if (warn_nested_externs && DECL_EXTERNAL (x) && b != global_binding_level
6e026f48
MM
1966 && x != IDENTIFIER_IMPLICIT_DECL (name)
1967 /* Don't print error messages for __FUNCTION__ and __PRETTY_FUNCTION__ */
1968 && !DECL_IN_SYSTEM_HEADER (x))
51e29401
RS
1969 warning ("nested extern declaration of `%s'", IDENTIFIER_POINTER (name));
1970
1971 if (name)
1972 {
1973 char *file;
1974 int line;
bf44f7de 1975 int different_binding_level = 0;
51e29401 1976
bf44f7de 1977 t = lookup_name_current_level (name);
93f623fa
JW
1978 /* Don't type check externs here when -traditional. This is so that
1979 code with conflicting declarations inside blocks will get warnings
1980 not errors. X11 for instance depends on this. */
bf44f7de
JW
1981 if (! t && DECL_EXTERNAL (x) && TREE_PUBLIC (x) && ! flag_traditional)
1982 {
1983 t = IDENTIFIER_GLOBAL_VALUE (name);
1984 /* Type decls at global scope don't conflict with externs declared
1985 inside lexical blocks. */
1986 if (t && TREE_CODE (t) == TYPE_DECL)
1987 t = 0;
1988 different_binding_level = 1;
1989 }
51e29401
RS
1990 if (t != 0 && t == error_mark_node)
1991 /* error_mark_node is 0 for a while during initialization! */
1992 {
1993 t = 0;
1994 error_with_decl (x, "`%s' used prior to declaration");
1995 }
1996
1997 if (t != 0)
1998 {
1999 file = DECL_SOURCE_FILE (t);
2000 line = DECL_SOURCE_LINE (t);
2001 }
2002
bf44f7de
JW
2003 /* If this decl is `static' and an implicit decl was seen previously,
2004 warn. But don't complain if -traditional,
2005 since traditional compilers don't complain. */
2006 if (! flag_traditional && TREE_PUBLIC (name)
2007 /* Don't test for DECL_EXTERNAL, because grokdeclarator
2008 sets this for all functions. */
2009 && ! TREE_PUBLIC (x)
2010 /* We used to warn also for explicit extern followed by static,
2011 but sometimes you need to do it that way. */
2012 && IDENTIFIER_IMPLICIT_DECL (name) != 0)
2013 {
2014 pedwarn ("`%s' was declared implicitly `extern' and later `static'",
2015 IDENTIFIER_POINTER (name));
2016 pedwarn_with_file_and_line
2017 (DECL_SOURCE_FILE (IDENTIFIER_IMPLICIT_DECL (name)),
2018 DECL_SOURCE_LINE (IDENTIFIER_IMPLICIT_DECL (name)),
2019 "previous declaration of `%s'",
2020 IDENTIFIER_POINTER (name));
2021 }
2022
2023 if (t != 0 && duplicate_decls (x, t, different_binding_level))
51e29401
RS
2024 {
2025 if (TREE_CODE (t) == PARM_DECL)
2026 {
2027 /* Don't allow more than one "real" duplicate
2028 of a forward parm decl. */
2029 TREE_ASM_WRITTEN (t) = TREE_ASM_WRITTEN (x);
2030 return t;
2031 }
bf44f7de 2032 return t;
51e29401
RS
2033 }
2034
1ce634c3
RS
2035 /* If we are processing a typedef statement, generate a whole new
2036 ..._TYPE node (which will be just an variant of the existing
2037 ..._TYPE node with identical properties) and then install the
2038 TYPE_DECL node generated to represent the typedef name as the
2039 TYPE_NAME of this brand new (duplicate) ..._TYPE node.
2040
2041 The whole point here is to end up with a situation where each
2042 and every ..._TYPE node the compiler creates will be uniquely
2043 associated with AT MOST one node representing a typedef name.
2044 This way, even though the compiler substitutes corresponding
2045 ..._TYPE nodes for TYPE_DECL (i.e. "typedef name") nodes very
2046 early on, later parts of the compiler can always do the reverse
2047 translation and get back the corresponding typedef name. For
2048 example, given:
2049
2050 typedef struct S MY_TYPE;
2051 MY_TYPE object;
2052
2053 Later parts of the compiler might only know that `object' was of
2054 type `struct S' if if were not for code just below. With this
2055 code however, later parts of the compiler see something like:
2056
2057 struct S' == struct S
2058 typedef struct S' MY_TYPE;
2059 struct S' object;
2060
2061 And they can then deduce (from the node for type struct S') that
2062 the original object declaration was:
2063
2064 MY_TYPE object;
2065
2066 Being able to do this is important for proper support of protoize,
2067 and also for generating precise symbolic debugging information
2068 which takes full account of the programmer's (typedef) vocabulary.
2069
2070 Obviously, we don't want to generate a duplicate ..._TYPE node if
2071 the TYPE_DECL node that we are now processing really represents a
2072 standard built-in type.
2073
51e29401
RS
2074 Since all standard types are effectively declared at line zero
2075 in the source file, we can easily check to see if we are working
2076 on a standard type by checking the current value of lineno. */
2077
2078 if (TREE_CODE (x) == TYPE_DECL)
2079 {
1600ec67 2080 if (DECL_SOURCE_LINE (x) == 0)
51e29401
RS
2081 {
2082 if (TYPE_NAME (TREE_TYPE (x)) == 0)
2083 TYPE_NAME (TREE_TYPE (x)) = x;
2084 }
32831d4b 2085 else if (TREE_TYPE (x) != error_mark_node)
51e29401
RS
2086 {
2087 tree tt = TREE_TYPE (x);
8ee15cd7 2088 DECL_ORIGINAL_TYPE (x) = tt;
1ce634c3 2089 tt = build_type_copy (tt);
51e29401
RS
2090 TYPE_NAME (tt) = x;
2091 TREE_TYPE (x) = tt;
2092 }
2093 }
2094
fd0b8fce 2095 /* Multiple external decls of the same identifier ought to match.
93f623fa
JW
2096 Check against both global declarations (when traditional) and out of
2097 scope (limbo) block level declarations.
51e29401 2098
fd0b8fce
JW
2099 We get warnings about inline functions where they are defined.
2100 Avoid duplicate warnings where they are used. */
93f623fa 2101 if (TREE_PUBLIC (x) && ! DECL_INLINE (x))
51e29401 2102 {
93f623fa
JW
2103 tree decl;
2104
2105 if (flag_traditional && IDENTIFIER_GLOBAL_VALUE (name) != 0
2106 && (DECL_EXTERNAL (IDENTIFIER_GLOBAL_VALUE (name))
2107 || TREE_PUBLIC (IDENTIFIER_GLOBAL_VALUE (name))))
2108 decl = IDENTIFIER_GLOBAL_VALUE (name);
2109 else if (IDENTIFIER_LIMBO_VALUE (name) != 0)
2110 /* Decls in limbo are always extern, so no need to check that. */
2111 decl = IDENTIFIER_LIMBO_VALUE (name);
2112 else
2113 decl = 0;
fd0b8fce 2114
93f623fa 2115 if (decl && ! comptypes (TREE_TYPE (x), TREE_TYPE (decl))
58811315
RS
2116 /* If old decl is built-in, we already warned if we should. */
2117 && !DECL_BUILT_IN (decl))
51e29401
RS
2118 {
2119 pedwarn_with_decl (x,
2120 "type mismatch with previous external decl");
fd0b8fce 2121 pedwarn_with_decl (decl, "previous external decl of `%s'");
51e29401
RS
2122 }
2123 }
2124
2125 /* If a function has had an implicit declaration, and then is defined,
2126 make sure they are compatible. */
2127
2128 if (IDENTIFIER_IMPLICIT_DECL (name) != 0
2129 && IDENTIFIER_GLOBAL_VALUE (name) == 0
2130 && TREE_CODE (x) == FUNCTION_DECL
2131 && ! comptypes (TREE_TYPE (x),
2132 TREE_TYPE (IDENTIFIER_IMPLICIT_DECL (name))))
2133 {
2134 warning_with_decl (x, "type mismatch with previous implicit declaration");
929f3671
RS
2135 warning_with_decl (IDENTIFIER_IMPLICIT_DECL (name),
2136 "previous implicit declaration of `%s'");
51e29401
RS
2137 }
2138
2139 /* In PCC-compatibility mode, extern decls of vars with no current decl
2140 take effect at top level no matter where they are. */
1394aabd 2141 if (flag_traditional && DECL_EXTERNAL (x)
51e29401
RS
2142 && lookup_name (name) == 0)
2143 {
2144 tree type = TREE_TYPE (x);
2145
2146 /* But don't do this if the type contains temporary nodes. */
2147 while (type)
2148 {
2149 if (type == error_mark_node)
2150 break;
2151 if (! TREE_PERMANENT (type))
2152 {
2153 warning_with_decl (x, "type of external `%s' is not global");
2154 /* By exiting the loop early, we leave TYPE nonzero,
2155 and thus prevent globalization of the decl. */
2156 break;
2157 }
2158 else if (TREE_CODE (type) == FUNCTION_TYPE
2159 && TYPE_ARG_TYPES (type) != 0)
2160 /* The types might not be truly local,
2161 but the list of arg types certainly is temporary.
2162 Since prototypes are nontraditional,
2163 ok not to do the traditional thing. */
2164 break;
2165 type = TREE_TYPE (type);
2166 }
2167
2168 if (type == 0)
2169 b = global_binding_level;
2170 }
2171
2172 /* This name is new in its binding level.
2173 Install the new declaration and return it. */
2174 if (b == global_binding_level)
2175 {
2176 /* Install a global value. */
2177
2178 /* If the first global decl has external linkage,
2179 warn if we later see static one. */
2180 if (IDENTIFIER_GLOBAL_VALUE (name) == 0 && TREE_PUBLIC (x))
2181 TREE_PUBLIC (name) = 1;
2182
2183 IDENTIFIER_GLOBAL_VALUE (name) = x;
2184
fd0b8fce
JW
2185 /* We no longer care about any previous block level declarations. */
2186 IDENTIFIER_LIMBO_VALUE (name) = 0;
2187
51e29401
RS
2188 /* Don't forget if the function was used via an implicit decl. */
2189 if (IDENTIFIER_IMPLICIT_DECL (name)
2190 && TREE_USED (IDENTIFIER_IMPLICIT_DECL (name)))
2191 TREE_USED (x) = 1, TREE_USED (name) = 1;
2192
2193 /* Don't forget if its address was taken in that way. */
2194 if (IDENTIFIER_IMPLICIT_DECL (name)
2195 && TREE_ADDRESSABLE (IDENTIFIER_IMPLICIT_DECL (name)))
2196 TREE_ADDRESSABLE (x) = 1;
2197
2198 /* Warn about mismatches against previous implicit decl. */
2199 if (IDENTIFIER_IMPLICIT_DECL (name) != 0
2200 /* If this real decl matches the implicit, don't complain. */
2201 && ! (TREE_CODE (x) == FUNCTION_DECL
90d56da8
RS
2202 && (TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (x)))
2203 == integer_type_node)))
51e29401
RS
2204 pedwarn ("`%s' was previously implicitly declared to return `int'",
2205 IDENTIFIER_POINTER (name));
2206
2207 /* If this decl is `static' and an `extern' was seen previously,
2208 that is erroneous. */
2209 if (TREE_PUBLIC (name)
1394aabd 2210 && ! TREE_PUBLIC (x) && ! DECL_EXTERNAL (x))
51e29401 2211 {
b0e919de
RS
2212 /* Okay to redeclare an ANSI built-in as static. */
2213 if (t != 0 && DECL_BUILT_IN (t))
929f3671
RS
2214 ;
2215 /* Okay to declare a non-ANSI built-in as anything. */
2216 else if (t != 0 && DECL_BUILT_IN_NONANSI (t))
2217 ;
bf44f7de
JW
2218 /* Okay to have global type decl after an earlier extern
2219 declaration inside a lexical block. */
2220 else if (TREE_CODE (x) == TYPE_DECL)
2221 ;
929f3671 2222 else if (IDENTIFIER_IMPLICIT_DECL (name))
51e29401
RS
2223 pedwarn ("`%s' was declared implicitly `extern' and later `static'",
2224 IDENTIFIER_POINTER (name));
2225 else
2226 pedwarn ("`%s' was declared `extern' and later `static'",
2227 IDENTIFIER_POINTER (name));
2228 }
2229 }
2230 else
2231 {
2232 /* Here to install a non-global value. */
2233 tree oldlocal = IDENTIFIER_LOCAL_VALUE (name);
2234 tree oldglobal = IDENTIFIER_GLOBAL_VALUE (name);
2235 IDENTIFIER_LOCAL_VALUE (name) = x;
2236
2237 /* If this is an extern function declaration, see if we
fc542d3c 2238 have a global definition or declaration for the function. */
51e29401 2239 if (oldlocal == 0
1394aabd 2240 && DECL_EXTERNAL (x) && !DECL_INLINE (x)
51e29401
RS
2241 && oldglobal != 0
2242 && TREE_CODE (x) == FUNCTION_DECL
2243 && TREE_CODE (oldglobal) == FUNCTION_DECL)
2244 {
2245 /* We have one. Their types must agree. */
2246 if (! comptypes (TREE_TYPE (x),
2247 TREE_TYPE (IDENTIFIER_GLOBAL_VALUE (name))))
fc542d3c
RS
2248 pedwarn_with_decl (x, "extern declaration of `%s' doesn't match global one");
2249 else
2250 {
2251 /* Inner extern decl is inline if global one is.
2252 Copy enough to really inline it. */
2253 if (DECL_INLINE (oldglobal))
2254 {
2255 DECL_INLINE (x) = DECL_INLINE (oldglobal);
4135e766
RS
2256 DECL_INITIAL (x) = (current_function_decl == oldglobal
2257 ? 0 : DECL_INITIAL (oldglobal));
fc542d3c 2258 DECL_SAVED_INSNS (x) = DECL_SAVED_INSNS (oldglobal);
a2469305 2259 DECL_FRAME_SIZE (x) = DECL_FRAME_SIZE (oldglobal);
fc542d3c 2260 DECL_ARGUMENTS (x) = DECL_ARGUMENTS (oldglobal);
42dfa47f
RS
2261 DECL_RESULT (x) = DECL_RESULT (oldglobal);
2262 TREE_ASM_WRITTEN (x) = TREE_ASM_WRITTEN (oldglobal);
2263 DECL_ABSTRACT_ORIGIN (x) = oldglobal;
fc542d3c
RS
2264 }
2265 /* Inner extern decl is built-in if global one is. */
2266 if (DECL_BUILT_IN (oldglobal))
2267 {
2268 DECL_BUILT_IN (x) = DECL_BUILT_IN (oldglobal);
678566a5 2269 DECL_FUNCTION_CODE (x) = DECL_FUNCTION_CODE (oldglobal);
fc542d3c
RS
2270 }
2271 /* Keep the arg types from a file-scope fcn defn. */
2272 if (TYPE_ARG_TYPES (TREE_TYPE (oldglobal)) != 0
2273 && DECL_INITIAL (oldglobal)
2274 && TYPE_ARG_TYPES (TREE_TYPE (x)) == 0)
2275 TREE_TYPE (x) = TREE_TYPE (oldglobal);
2276 }
51e29401
RS
2277 }
2278
2279#if 0 /* This case is probably sometimes the right thing to do. */
2280 /* If we have a local external declaration,
2281 then any file-scope declaration should not
2282 have been static. */
2283 if (oldlocal == 0 && oldglobal != 0
2284 && !TREE_PUBLIC (oldglobal)
1394aabd 2285 && DECL_EXTERNAL (x) && TREE_PUBLIC (x))
51e29401
RS
2286 warning ("`%s' locally external but globally static",
2287 IDENTIFIER_POINTER (name));
2288#endif
2289
2290 /* If we have a local external declaration,
2291 and no file-scope declaration has yet been seen,
2292 then if we later have a file-scope decl it must not be static. */
2293 if (oldlocal == 0
1394aabd 2294 && DECL_EXTERNAL (x)
51e29401
RS
2295 && TREE_PUBLIC (x))
2296 {
bf44f7de
JW
2297 if (oldglobal == 0)
2298 TREE_PUBLIC (name) = 1;
fd0b8fce
JW
2299
2300 /* Save this decl, so that we can do type checking against
2301 other decls after it falls out of scope.
2302
2303 Only save it once. This prevents temporary decls created in
2304 expand_inline_function from being used here, since this
2305 will have been set when the inline function was parsed.
2306 It also helps give slightly better warnings. */
2307 if (IDENTIFIER_LIMBO_VALUE (name) == 0)
2308 IDENTIFIER_LIMBO_VALUE (name) = x;
51e29401
RS
2309 }
2310
2311 /* Warn if shadowing an argument at the top level of the body. */
1394aabd 2312 if (oldlocal != 0 && !DECL_EXTERNAL (x)
51e29401
RS
2313 /* This warning doesn't apply to the parms of a nested fcn. */
2314 && ! current_binding_level->parm_flag
2315 /* Check that this is one level down from the parms. */
2316 && current_binding_level->level_chain->parm_flag
2317 /* Check that the decl being shadowed
2318 comes from the parm level, one level up. */
2319 && chain_member (oldlocal, current_binding_level->level_chain->names))
2320 {
2321 if (TREE_CODE (oldlocal) == PARM_DECL)
2322 pedwarn ("declaration of `%s' shadows a parameter",
2323 IDENTIFIER_POINTER (name));
2324 else
2325 pedwarn ("declaration of `%s' shadows a symbol from the parameter list",
2326 IDENTIFIER_POINTER (name));
2327 }
2328
2329 /* Maybe warn if shadowing something else. */
1394aabd 2330 else if (warn_shadow && !DECL_EXTERNAL (x)
2bae939e 2331 /* No shadow warnings for internally generated vars. */
7a0347ff 2332 && DECL_SOURCE_LINE (x) != 0
51e29401 2333 /* No shadow warnings for vars made for inlining. */
b032c74c 2334 && ! DECL_FROM_INLINE (x))
51e29401
RS
2335 {
2336 char *warnstring = 0;
2337
2338 if (TREE_CODE (x) == PARM_DECL
89d7540d
RS
2339 && current_binding_level->level_chain->parm_flag)
2340 /* Don't warn about the parm names in function declarator
2341 within a function declarator.
2342 It would be nice to avoid warning in any function
2343 declarator in a declaration, as opposed to a definition,
2344 but there is no way to tell it's not a definition. */
51e29401
RS
2345 ;
2346 else if (oldlocal != 0 && TREE_CODE (oldlocal) == PARM_DECL)
2347 warnstring = "declaration of `%s' shadows a parameter";
2348 else if (oldlocal != 0)
2349 warnstring = "declaration of `%s' shadows previous local";
2350 else if (IDENTIFIER_GLOBAL_VALUE (name) != 0
2351 && IDENTIFIER_GLOBAL_VALUE (name) != error_mark_node)
2352 warnstring = "declaration of `%s' shadows global declaration";
2353
2354 if (warnstring)
2355 warning (warnstring, IDENTIFIER_POINTER (name));
2356 }
2357
2358 /* If storing a local value, there may already be one (inherited).
2359 If so, record it for restoration when this binding level ends. */
2360 if (oldlocal != 0)
2361 b->shadowed = tree_cons (name, oldlocal, b->shadowed);
2362 }
2363
2364 /* Keep count of variables in this level with incomplete type. */
2365 if (TYPE_SIZE (TREE_TYPE (x)) == 0)
2366 ++b->n_incomplete;
2367 }
2368
2369 /* Put decls on list in reverse order.
2370 We will reverse them later if necessary. */
2371 TREE_CHAIN (x) = b->names;
2372 b->names = x;
2373
2374 return x;
2375}
2376
2377/* Like pushdecl, only it places X in GLOBAL_BINDING_LEVEL, if appropriate. */
2378
2379tree
2380pushdecl_top_level (x)
2381 tree x;
2382{
2383 register tree t;
2384 register struct binding_level *b = current_binding_level;
2385
2386 current_binding_level = global_binding_level;
2387 t = pushdecl (x);
2388 current_binding_level = b;
2389 return t;
2390}
2391\f
2392/* Generate an implicit declaration for identifier FUNCTIONID
2393 as a function of type int (). Print a warning if appropriate. */
2394
2395tree
2396implicitly_declare (functionid)
2397 tree functionid;
2398{
2399 register tree decl;
2400 int traditional_warning = 0;
2401 /* Only one "implicit declaration" warning per identifier. */
2402 int implicit_warning;
2403
2404 /* Save the decl permanently so we can warn if definition follows. */
2405 push_obstacks_nochange ();
2406 end_temporary_allocation ();
2407
2408 /* We used to reuse an old implicit decl here,
2409 but this loses with inline functions because it can clobber
2410 the saved decl chains. */
2411/* if (IDENTIFIER_IMPLICIT_DECL (functionid) != 0)
2412 decl = IDENTIFIER_IMPLICIT_DECL (functionid);
2413 else */
2414 decl = build_decl (FUNCTION_DECL, functionid, default_function_type);
2415
2416 /* Warn of implicit decl following explicit local extern decl.
2417 This is probably a program designed for traditional C. */
2418 if (TREE_PUBLIC (functionid) && IDENTIFIER_GLOBAL_VALUE (functionid) == 0)
2419 traditional_warning = 1;
2420
2421 /* Warn once of an implicit declaration. */
2422 implicit_warning = (IDENTIFIER_IMPLICIT_DECL (functionid) == 0);
2423
1394aabd 2424 DECL_EXTERNAL (decl) = 1;
51e29401
RS
2425 TREE_PUBLIC (decl) = 1;
2426
2427 /* Record that we have an implicit decl and this is it. */
2428 IDENTIFIER_IMPLICIT_DECL (functionid) = decl;
2429
2430 /* ANSI standard says implicit declarations are in the innermost block.
2431 So we record the decl in the standard fashion.
2432 If flag_traditional is set, pushdecl does it top-level. */
2433 pushdecl (decl);
2434
2435 /* This is a no-op in c-lang.c or something real in objc-actions.c. */
2436 maybe_objc_check_decl (decl);
2437
8d9bfdc5 2438 rest_of_decl_compilation (decl, NULL_PTR, 0, 0);
51e29401
RS
2439
2440 if (warn_implicit && implicit_warning)
2441 warning ("implicit declaration of function `%s'",
2442 IDENTIFIER_POINTER (functionid));
2443 else if (warn_traditional && traditional_warning)
2444 warning ("function `%s' was previously declared within a block",
2445 IDENTIFIER_POINTER (functionid));
2446
2447 /* Write a record describing this implicit function declaration to the
2448 prototypes file (if requested). */
2449
2450 gen_aux_info_record (decl, 0, 1, 0);
2451
2452 pop_obstacks ();
2453
2454 return decl;
2455}
2456
2457/* Return zero if the declaration NEWDECL is valid
2458 when the declaration OLDDECL (assumed to be for the same name)
2459 has already been seen.
2460 Otherwise return an error message format string with a %s
2461 where the identifier should go. */
2462
2463static char *
2464redeclaration_error_message (newdecl, olddecl)
2465 tree newdecl, olddecl;
2466{
2467 if (TREE_CODE (newdecl) == TYPE_DECL)
2468 {
2469 if (flag_traditional && TREE_TYPE (newdecl) == TREE_TYPE (olddecl))
2470 return 0;
692ce0fd
RK
2471 /* pushdecl creates distinct types for TYPE_DECLs by calling
2472 build_type_copy, so the above comparison generally fails. We do
2473 another test against the TYPE_MAIN_VARIANT of the olddecl, which
2474 is equivalent to what this code used to do before the build_type_copy
2475 call. The variant type distinction should not matter for traditional
2476 code, because it doesn't have type qualifiers. */
2477 if (flag_traditional
2478 && TYPE_MAIN_VARIANT (TREE_TYPE (olddecl)) == TREE_TYPE (newdecl))
2479 return 0;
4b4e3407
RK
2480 if (DECL_IN_SYSTEM_HEADER (olddecl) || DECL_IN_SYSTEM_HEADER (newdecl))
2481 return 0;
51e29401
RS
2482 return "redefinition of `%s'";
2483 }
2484 else if (TREE_CODE (newdecl) == FUNCTION_DECL)
2485 {
2486 /* Declarations of functions can insist on internal linkage
2487 but they can't be inconsistent with internal linkage,
2488 so there can be no error on that account.
2489 However defining the same name twice is no good. */
2490 if (DECL_INITIAL (olddecl) != 0 && DECL_INITIAL (newdecl) != 0
2491 /* However, defining once as extern inline and a second
2492 time in another way is ok. */
1394aabd
RS
2493 && !(DECL_INLINE (olddecl) && DECL_EXTERNAL (olddecl)
2494 && !(DECL_INLINE (newdecl) && DECL_EXTERNAL (newdecl))))
51e29401
RS
2495 return "redefinition of `%s'";
2496 return 0;
2497 }
2498 else if (current_binding_level == global_binding_level)
2499 {
2500 /* Objects declared at top level: */
2501 /* If at least one is a reference, it's ok. */
1394aabd 2502 if (DECL_EXTERNAL (newdecl) || DECL_EXTERNAL (olddecl))
51e29401
RS
2503 return 0;
2504 /* Reject two definitions. */
2505 if (DECL_INITIAL (olddecl) != 0 && DECL_INITIAL (newdecl) != 0)
2506 return "redefinition of `%s'";
2507 /* Now we have two tentative defs, or one tentative and one real def. */
2508 /* Insist that the linkage match. */
2509 if (TREE_PUBLIC (olddecl) != TREE_PUBLIC (newdecl))
2510 return "conflicting declarations of `%s'";
2511 return 0;
2512 }
2513 else if (current_binding_level->parm_flag
2514 && TREE_ASM_WRITTEN (olddecl) && !TREE_ASM_WRITTEN (newdecl))
2515 return 0;
2516 else
2517 {
7dcf01c2
JW
2518 /* Newdecl has block scope. If olddecl has block scope also, then
2519 reject two definitions, and reject a definition together with an
2520 external reference. Otherwise, it is OK, because newdecl must
2521 be an extern reference to olddecl. */
2522 if (!(DECL_EXTERNAL (newdecl) && DECL_EXTERNAL (olddecl))
cd681d1f 2523 && DECL_CONTEXT (newdecl) == DECL_CONTEXT (olddecl))
51e29401
RS
2524 return "redeclaration of `%s'";
2525 return 0;
2526 }
2527}
2528\f
2529/* Get the LABEL_DECL corresponding to identifier ID as a label.
2530 Create one if none exists so far for the current function.
2531 This function is called for both label definitions and label references. */
2532
2533tree
2534lookup_label (id)
2535 tree id;
2536{
2537 register tree decl = IDENTIFIER_LABEL_VALUE (id);
2538
7d9795e5
RS
2539 if (current_function_decl == 0)
2540 {
2541 error ("label %s referenced outside of any function",
2542 IDENTIFIER_POINTER (id));
2543 return 0;
2544 }
2545
51e29401
RS
2546 /* Use a label already defined or ref'd with this name. */
2547 if (decl != 0)
2548 {
2549 /* But not if it is inherited and wasn't declared to be inheritable. */
2550 if (DECL_CONTEXT (decl) != current_function_decl
2551 && ! C_DECLARED_LABEL_FLAG (decl))
2552 return shadow_label (id);
2553 return decl;
2554 }
2555
2556 decl = build_decl (LABEL_DECL, id, void_type_node);
2557
8fcd361e
RS
2558 /* Make sure every label has an rtx. */
2559 label_rtx (decl);
2560
51e29401
RS
2561 /* A label not explicitly declared must be local to where it's ref'd. */
2562 DECL_CONTEXT (decl) = current_function_decl;
2563
2564 DECL_MODE (decl) = VOIDmode;
2565
2566 /* Say where one reference is to the label,
2567 for the sake of the error if it is not defined. */
2568 DECL_SOURCE_LINE (decl) = lineno;
2569 DECL_SOURCE_FILE (decl) = input_filename;
2570
2571 IDENTIFIER_LABEL_VALUE (id) = decl;
2572
2573 named_labels = tree_cons (NULL_TREE, decl, named_labels);
2574
2575 return decl;
2576}
2577
2578/* Make a label named NAME in the current function,
2579 shadowing silently any that may be inherited from containing functions
2580 or containing scopes.
2581
2582 Note that valid use, if the label being shadowed
2583 comes from another scope in the same function,
2584 requires calling declare_nonlocal_label right away. */
2585
2586tree
2587shadow_label (name)
2588 tree name;
2589{
2590 register tree decl = IDENTIFIER_LABEL_VALUE (name);
2591
2592 if (decl != 0)
2593 {
a784882b
RE
2594 register tree dup;
2595
2596 /* Check to make sure that the label hasn't already been declared
2597 at this label scope */
2598 for (dup = named_labels; dup; dup = TREE_CHAIN (dup))
2599 if (TREE_VALUE (dup) == decl)
2600 {
2601 error ("duplicate label declaration `%s'",
2602 IDENTIFIER_POINTER (name));
2603 error_with_decl (TREE_VALUE (dup),
2604 "this is a previous declaration");
2605 /* Just use the previous declaration. */
2606 return lookup_label (name);
2607 }
2608
51e29401
RS
2609 shadowed_labels = tree_cons (NULL_TREE, decl, shadowed_labels);
2610 IDENTIFIER_LABEL_VALUE (name) = decl = 0;
2611 }
2612
2613 return lookup_label (name);
2614}
2615
2616/* Define a label, specifying the location in the source file.
2617 Return the LABEL_DECL node for the label, if the definition is valid.
2618 Otherwise return 0. */
2619
2620tree
2621define_label (filename, line, name)
2622 char *filename;
2623 int line;
2624 tree name;
2625{
2626 tree decl = lookup_label (name);
2627
2628 /* If label with this name is known from an outer context, shadow it. */
2629 if (decl != 0 && DECL_CONTEXT (decl) != current_function_decl)
2630 {
2631 shadowed_labels = tree_cons (NULL_TREE, decl, shadowed_labels);
2632 IDENTIFIER_LABEL_VALUE (name) = 0;
2633 decl = lookup_label (name);
2634 }
2635
2636 if (DECL_INITIAL (decl) != 0)
2637 {
db2e669b 2638 error ("duplicate label `%s'", IDENTIFIER_POINTER (name));
51e29401
RS
2639 return 0;
2640 }
2641 else
2642 {
2643 /* Mark label as having been defined. */
2644 DECL_INITIAL (decl) = error_mark_node;
2645 /* Say where in the source. */
2646 DECL_SOURCE_FILE (decl) = filename;
2647 DECL_SOURCE_LINE (decl) = line;
2648 return decl;
2649 }
2650}
2651\f
2652/* Return the list of declarations of the current level.
2653 Note that this list is in reverse order unless/until
2654 you nreverse it; and when you do nreverse it, you must
2655 store the result back using `storedecls' or you will lose. */
2656
2657tree
2658getdecls ()
2659{
2660 return current_binding_level->names;
2661}
2662
2663/* Return the list of type-tags (for structs, etc) of the current level. */
2664
2665tree
2666gettags ()
2667{
2668 return current_binding_level->tags;
2669}
2670
2671/* Store the list of declarations of the current level.
2672 This is done for the parameter declarations of a function being defined,
2673 after they are modified in the light of any missing parameters. */
2674
2675static void
2676storedecls (decls)
2677 tree decls;
2678{
2679 current_binding_level->names = decls;
2680}
2681
2682/* Similarly, store the list of tags of the current level. */
2683
2684static void
2685storetags (tags)
2686 tree tags;
2687{
2688 current_binding_level->tags = tags;
2689}
2690\f
2691/* Given NAME, an IDENTIFIER_NODE,
2692 return the structure (or union or enum) definition for that name.
2693 Searches binding levels from BINDING_LEVEL up to the global level.
2694 If THISLEVEL_ONLY is nonzero, searches only the specified context
2695 (but skips any tag-transparent contexts to find one that is
2696 meaningful for tags).
2697 CODE says which kind of type the caller wants;
2698 it is RECORD_TYPE or UNION_TYPE or ENUMERAL_TYPE.
2699 If the wrong kind of type is found, an error is reported. */
2700
2701static tree
2702lookup_tag (code, name, binding_level, thislevel_only)
2703 enum tree_code code;
2704 struct binding_level *binding_level;
2705 tree name;
2706 int thislevel_only;
2707{
2708 register struct binding_level *level;
2709
2710 for (level = binding_level; level; level = level->level_chain)
2711 {
2712 register tree tail;
2713 for (tail = level->tags; tail; tail = TREE_CHAIN (tail))
2714 {
2715 if (TREE_PURPOSE (tail) == name)
2716 {
2717 if (TREE_CODE (TREE_VALUE (tail)) != code)
2718 {
2719 /* Definition isn't the kind we were looking for. */
2720 pending_invalid_xref = name;
2721 pending_invalid_xref_file = input_filename;
2722 pending_invalid_xref_line = lineno;
2723 }
2724 return TREE_VALUE (tail);
2725 }
2726 }
2727 if (thislevel_only && ! level->tag_transparent)
2728 return NULL_TREE;
2729 }
2730 return NULL_TREE;
2731}
2732
2733/* Print an error message now
2734 for a recent invalid struct, union or enum cross reference.
2735 We don't print them immediately because they are not invalid
2736 when used in the `struct foo;' construct for shadowing. */
2737
2738void
2739pending_xref_error ()
2740{
2741 if (pending_invalid_xref != 0)
2742 error_with_file_and_line (pending_invalid_xref_file,
2743 pending_invalid_xref_line,
2744 "`%s' defined as wrong kind of tag",
2745 IDENTIFIER_POINTER (pending_invalid_xref));
2746 pending_invalid_xref = 0;
2747}
2748
2749/* Given a type, find the tag that was defined for it and return the tag name.
2750 Otherwise return 0. */
2751
2752static tree
2753lookup_tag_reverse (type)
2754 tree type;
2755{
2756 register struct binding_level *level;
2757
2758 for (level = current_binding_level; level; level = level->level_chain)
2759 {
2760 register tree tail;
2761 for (tail = level->tags; tail; tail = TREE_CHAIN (tail))
2762 {
2763 if (TREE_VALUE (tail) == type)
2764 return TREE_PURPOSE (tail);
2765 }
2766 }
2767 return NULL_TREE;
2768}
2769\f
2770/* Look up NAME in the current binding level and its superiors
2771 in the namespace of variables, functions and typedefs.
2772 Return a ..._DECL node of some kind representing its definition,
2773 or return 0 if it is undefined. */
2774
2775tree
2776lookup_name (name)
2777 tree name;
2778{
2779 register tree val;
2780 if (current_binding_level != global_binding_level
2781 && IDENTIFIER_LOCAL_VALUE (name))
2782 val = IDENTIFIER_LOCAL_VALUE (name);
2783 else
2784 val = IDENTIFIER_GLOBAL_VALUE (name);
2785 return val;
2786}
2787
2788/* Similar to `lookup_name' but look only at current binding level. */
2789
f062da04 2790tree
51e29401
RS
2791lookup_name_current_level (name)
2792 tree name;
2793{
2794 register tree t;
2795
2796 if (current_binding_level == global_binding_level)
2797 return IDENTIFIER_GLOBAL_VALUE (name);
2798
2799 if (IDENTIFIER_LOCAL_VALUE (name) == 0)
2800 return 0;
2801
2802 for (t = current_binding_level->names; t; t = TREE_CHAIN (t))
2803 if (DECL_NAME (t) == name)
2804 break;
2805
2806 return t;
2807}
2808\f
2809/* Create the predefined scalar types of C,
0f41302f 2810 and some nodes representing standard constants (0, 1, (void *) 0).
51e29401
RS
2811 Initialize the global binding level.
2812 Make definitions for built-in primitive functions. */
2813
2814void
2815init_decl_processing ()
2816{
2817 register tree endlink;
2818 /* Either char* or void*. */
2819 tree traditional_ptr_type_node;
f0a45d37 2820 /* Data types of memcpy and strlen. */
b71e9de0 2821 tree memcpy_ftype, memset_ftype, strlen_ftype;
9c4614c3 2822 tree void_ftype_any;
51e29401
RS
2823 int wchar_type_size;
2824 tree temp;
fba9adc6 2825 tree array_domain_type;
51e29401
RS
2826
2827 current_function_decl = NULL;
2828 named_labels = NULL;
2829 current_binding_level = NULL_BINDING_LEVEL;
2830 free_binding_level = NULL_BINDING_LEVEL;
2831 pushlevel (0); /* make the binding_level structure for global names */
2832 global_binding_level = current_binding_level;
2833
2834 /* Define `int' and `char' first so that dbx will output them first. */
2835
2836 integer_type_node = make_signed_type (INT_TYPE_SIZE);
2837 pushdecl (build_decl (TYPE_DECL, ridpointers[(int) RID_INT],
2838 integer_type_node));
2839
2840 /* Define `char', which is like either `signed char' or `unsigned char'
2841 but not the same as either. */
2842
7a0347ff
RS
2843 char_type_node
2844 = (flag_signed_char
2845 ? make_signed_type (CHAR_TYPE_SIZE)
2846 : make_unsigned_type (CHAR_TYPE_SIZE));
51e29401
RS
2847 pushdecl (build_decl (TYPE_DECL, get_identifier ("char"),
2848 char_type_node));
2849
2850 long_integer_type_node = make_signed_type (LONG_TYPE_SIZE);
2851 pushdecl (build_decl (TYPE_DECL, get_identifier ("long int"),
2852 long_integer_type_node));
2853
2854 unsigned_type_node = make_unsigned_type (INT_TYPE_SIZE);
2855 pushdecl (build_decl (TYPE_DECL, get_identifier ("unsigned int"),
2856 unsigned_type_node));
2857
2858 long_unsigned_type_node = make_unsigned_type (LONG_TYPE_SIZE);
2859 pushdecl (build_decl (TYPE_DECL, get_identifier ("long unsigned int"),
2860 long_unsigned_type_node));
2861
6706083e
DE
2862 long_long_integer_type_node = make_signed_type (LONG_LONG_TYPE_SIZE);
2863 pushdecl (build_decl (TYPE_DECL, get_identifier ("long long int"),
2864 long_long_integer_type_node));
2865
2866 long_long_unsigned_type_node = make_unsigned_type (LONG_LONG_TYPE_SIZE);
2867 pushdecl (build_decl (TYPE_DECL, get_identifier ("long long unsigned int"),
2868 long_long_unsigned_type_node));
2869
51e29401
RS
2870 /* `unsigned long' is the standard type for sizeof.
2871 Traditionally, use a signed type.
2872 Note that stddef.h uses `unsigned long',
2873 and this must agree, even of long and int are the same size. */
a34731a6
RK
2874 sizetype
2875 = TREE_TYPE (IDENTIFIER_GLOBAL_VALUE (get_identifier (SIZE_TYPE)));
2876 if (flag_traditional && TREE_UNSIGNED (sizetype))
2877 sizetype = signed_type (sizetype);
51e29401
RS
2878
2879 ptrdiff_type_node
2880 = TREE_TYPE (IDENTIFIER_GLOBAL_VALUE (get_identifier (PTRDIFF_TYPE)));
2881
2882 TREE_TYPE (TYPE_SIZE (integer_type_node)) = sizetype;
2883 TREE_TYPE (TYPE_SIZE (char_type_node)) = sizetype;
2884 TREE_TYPE (TYPE_SIZE (unsigned_type_node)) = sizetype;
2885 TREE_TYPE (TYPE_SIZE (long_unsigned_type_node)) = sizetype;
2886 TREE_TYPE (TYPE_SIZE (long_integer_type_node)) = sizetype;
6706083e
DE
2887 TREE_TYPE (TYPE_SIZE (long_long_integer_type_node)) = sizetype;
2888 TREE_TYPE (TYPE_SIZE (long_long_unsigned_type_node)) = sizetype;
51e29401
RS
2889
2890 error_mark_node = make_node (ERROR_MARK);
2891 TREE_TYPE (error_mark_node) = error_mark_node;
2892
2893 short_integer_type_node = make_signed_type (SHORT_TYPE_SIZE);
2894 pushdecl (build_decl (TYPE_DECL, get_identifier ("short int"),
2895 short_integer_type_node));
2896
51e29401
RS
2897 short_unsigned_type_node = make_unsigned_type (SHORT_TYPE_SIZE);
2898 pushdecl (build_decl (TYPE_DECL, get_identifier ("short unsigned int"),
2899 short_unsigned_type_node));
2900
51e29401
RS
2901 /* Define both `signed char' and `unsigned char'. */
2902 signed_char_type_node = make_signed_type (CHAR_TYPE_SIZE);
2903 pushdecl (build_decl (TYPE_DECL, get_identifier ("signed char"),
2904 signed_char_type_node));
2905
2906 unsigned_char_type_node = make_unsigned_type (CHAR_TYPE_SIZE);
2907 pushdecl (build_decl (TYPE_DECL, get_identifier ("unsigned char"),
2908 unsigned_char_type_node));
2909
fa7d8b92 2910 intQI_type_node = make_signed_type (GET_MODE_BITSIZE (QImode));
ac4f24e7
RS
2911 pushdecl (build_decl (TYPE_DECL, NULL_TREE, intQI_type_node));
2912
fa7d8b92 2913 intHI_type_node = make_signed_type (GET_MODE_BITSIZE (HImode));
ac4f24e7
RS
2914 pushdecl (build_decl (TYPE_DECL, NULL_TREE, intHI_type_node));
2915
fa7d8b92 2916 intSI_type_node = make_signed_type (GET_MODE_BITSIZE (SImode));
ac4f24e7
RS
2917 pushdecl (build_decl (TYPE_DECL, NULL_TREE, intSI_type_node));
2918
fa7d8b92 2919 intDI_type_node = make_signed_type (GET_MODE_BITSIZE (DImode));
ac4f24e7
RS
2920 pushdecl (build_decl (TYPE_DECL, NULL_TREE, intDI_type_node));
2921
fa7d8b92 2922 unsigned_intQI_type_node = make_unsigned_type (GET_MODE_BITSIZE (QImode));
ac4f24e7
RS
2923 pushdecl (build_decl (TYPE_DECL, NULL_TREE, unsigned_intQI_type_node));
2924
fa7d8b92 2925 unsigned_intHI_type_node = make_unsigned_type (GET_MODE_BITSIZE (HImode));
ac4f24e7
RS
2926 pushdecl (build_decl (TYPE_DECL, NULL_TREE, unsigned_intHI_type_node));
2927
fa7d8b92 2928 unsigned_intSI_type_node = make_unsigned_type (GET_MODE_BITSIZE (SImode));
ac4f24e7
RS
2929 pushdecl (build_decl (TYPE_DECL, NULL_TREE, unsigned_intSI_type_node));
2930
fa7d8b92 2931 unsigned_intDI_type_node = make_unsigned_type (GET_MODE_BITSIZE (DImode));
ac4f24e7
RS
2932 pushdecl (build_decl (TYPE_DECL, NULL_TREE, unsigned_intDI_type_node));
2933
51e29401
RS
2934 float_type_node = make_node (REAL_TYPE);
2935 TYPE_PRECISION (float_type_node) = FLOAT_TYPE_SIZE;
2936 pushdecl (build_decl (TYPE_DECL, ridpointers[(int) RID_FLOAT],
2937 float_type_node));
2938 layout_type (float_type_node);
2939
2940 double_type_node = make_node (REAL_TYPE);
2941 if (flag_short_double)
2942 TYPE_PRECISION (double_type_node) = FLOAT_TYPE_SIZE;
2943 else
2944 TYPE_PRECISION (double_type_node) = DOUBLE_TYPE_SIZE;
2945 pushdecl (build_decl (TYPE_DECL, ridpointers[(int) RID_DOUBLE],
2946 double_type_node));
2947 layout_type (double_type_node);
2948
2949 long_double_type_node = make_node (REAL_TYPE);
2950 TYPE_PRECISION (long_double_type_node) = LONG_DOUBLE_TYPE_SIZE;
2951 pushdecl (build_decl (TYPE_DECL, get_identifier ("long double"),
2952 long_double_type_node));
2953 layout_type (long_double_type_node);
2954
5ab10c42
RS
2955 complex_integer_type_node = make_node (COMPLEX_TYPE);
2956 pushdecl (build_decl (TYPE_DECL, get_identifier ("complex int"),
2957 complex_integer_type_node));
2958 TREE_TYPE (complex_integer_type_node) = integer_type_node;
2959 layout_type (complex_integer_type_node);
2960
2961 complex_float_type_node = make_node (COMPLEX_TYPE);
2962 pushdecl (build_decl (TYPE_DECL, get_identifier ("complex float"),
2963 complex_float_type_node));
2964 TREE_TYPE (complex_float_type_node) = float_type_node;
2965 layout_type (complex_float_type_node);
2966
2967 complex_double_type_node = make_node (COMPLEX_TYPE);
2968 pushdecl (build_decl (TYPE_DECL, get_identifier ("complex double"),
2969 complex_double_type_node));
2970 TREE_TYPE (complex_double_type_node) = double_type_node;
2971 layout_type (complex_double_type_node);
2972
2973 complex_long_double_type_node = make_node (COMPLEX_TYPE);
2974 pushdecl (build_decl (TYPE_DECL, get_identifier ("complex long double"),
2975 complex_long_double_type_node));
2976 TREE_TYPE (complex_long_double_type_node) = long_double_type_node;
2977 layout_type (complex_long_double_type_node);
2978
51e29401
RS
2979 wchar_type_node
2980 = TREE_TYPE (IDENTIFIER_GLOBAL_VALUE (get_identifier (WCHAR_TYPE)));
2981 wchar_type_size = TYPE_PRECISION (wchar_type_node);
7e4849da
RS
2982 signed_wchar_type_node = signed_type (wchar_type_node);
2983 unsigned_wchar_type_node = unsigned_type (wchar_type_node);
51e29401
RS
2984
2985 integer_zero_node = build_int_2 (0, 0);
2986 TREE_TYPE (integer_zero_node) = integer_type_node;
2987 integer_one_node = build_int_2 (1, 0);
2988 TREE_TYPE (integer_one_node) = integer_type_node;
2989
f444e553
JM
2990 boolean_type_node = integer_type_node;
2991 boolean_true_node = integer_one_node;
2992 boolean_false_node = integer_zero_node;
2993
51e29401
RS
2994 size_zero_node = build_int_2 (0, 0);
2995 TREE_TYPE (size_zero_node) = sizetype;
2996 size_one_node = build_int_2 (1, 0);
2997 TREE_TYPE (size_one_node) = sizetype;
2998
2999 void_type_node = make_node (VOID_TYPE);
3000 pushdecl (build_decl (TYPE_DECL,
3001 ridpointers[(int) RID_VOID], void_type_node));
3002 layout_type (void_type_node); /* Uses integer_zero_node */
3003 /* We are not going to have real types in C with less than byte alignment,
3004 so we might as well not have any types that claim to have it. */
3005 TYPE_ALIGN (void_type_node) = BITS_PER_UNIT;
3006
3007 null_pointer_node = build_int_2 (0, 0);
3008 TREE_TYPE (null_pointer_node) = build_pointer_type (void_type_node);
3009 layout_type (TREE_TYPE (null_pointer_node));
3010
3011 string_type_node = build_pointer_type (char_type_node);
3012 const_string_type_node
3013 = build_pointer_type (build_type_variant (char_type_node, 1, 0));
3014
fba9adc6 3015 /* Make a type to be the domain of a few array types
c81fe25d
RK
3016 whose domains don't really matter.
3017 200 is small enough that it always fits in size_t
3018 and large enough that it can hold most function names for the
3019 initializations of __FUNCTION__ and __PRETTY_FUNCTION__. */
3020 array_domain_type = build_index_type (build_int_2 (200, 0));
fba9adc6
RS
3021
3022 /* make a type for arrays of characters.
51e29401
RS
3023 With luck nothing will ever really depend on the length of this
3024 array type. */
3025 char_array_type_node
fba9adc6 3026 = build_array_type (char_type_node, array_domain_type);
51e29401
RS
3027 /* Likewise for arrays of ints. */
3028 int_array_type_node
fba9adc6 3029 = build_array_type (integer_type_node, array_domain_type);
51e29401
RS
3030 /* This is for wide string constants. */
3031 wchar_array_type_node
fba9adc6 3032 = build_array_type (wchar_type_node, array_domain_type);
51e29401
RS
3033
3034 default_function_type
3035 = build_function_type (integer_type_node, NULL_TREE);
3036
3037 ptr_type_node = build_pointer_type (void_type_node);
3038 const_ptr_type_node
3039 = build_pointer_type (build_type_variant (void_type_node, 1, 0));
3040
3041 endlink = tree_cons (NULL_TREE, void_type_node, NULL_TREE);
3042
9c4614c3 3043 void_ftype_any
8d9bfdc5 3044 = build_function_type (void_type_node, NULL_TREE);
9c4614c3 3045
732149f9
RK
3046 float_ftype_float
3047 = build_function_type (float_type_node,
3048 tree_cons (NULL_TREE, float_type_node, endlink));
3049
51e29401
RS
3050 double_ftype_double
3051 = build_function_type (double_type_node,
3052 tree_cons (NULL_TREE, double_type_node, endlink));
3053
732149f9
RK
3054 ldouble_ftype_ldouble
3055 = build_function_type (long_double_type_node,
3056 tree_cons (NULL_TREE, long_double_type_node,
3057 endlink));
3058
51e29401
RS
3059 double_ftype_double_double
3060 = build_function_type (double_type_node,
3061 tree_cons (NULL_TREE, double_type_node,
3062 tree_cons (NULL_TREE,
3063 double_type_node, endlink)));
3064
3065 int_ftype_int
3066 = build_function_type (integer_type_node,
3067 tree_cons (NULL_TREE, integer_type_node, endlink));
3068
3069 long_ftype_long
3070 = build_function_type (long_integer_type_node,
3071 tree_cons (NULL_TREE,
3072 long_integer_type_node, endlink));
3073
3074 void_ftype_ptr_ptr_int
3075 = build_function_type (void_type_node,
3076 tree_cons (NULL_TREE, ptr_type_node,
3077 tree_cons (NULL_TREE, ptr_type_node,
3078 tree_cons (NULL_TREE,
3079 integer_type_node,
3080 endlink))));
3081
3082 int_ftype_cptr_cptr_sizet
3083 = build_function_type (integer_type_node,
3084 tree_cons (NULL_TREE, const_ptr_type_node,
3085 tree_cons (NULL_TREE, const_ptr_type_node,
3086 tree_cons (NULL_TREE,
3087 sizetype,
3088 endlink))));
3089
3090 void_ftype_ptr_int_int
3091 = build_function_type (void_type_node,
3092 tree_cons (NULL_TREE, ptr_type_node,
3093 tree_cons (NULL_TREE, integer_type_node,
3094 tree_cons (NULL_TREE,
3095 integer_type_node,
3096 endlink))));
3097
3098 string_ftype_ptr_ptr /* strcpy prototype */
3099 = build_function_type (string_type_node,
3100 tree_cons (NULL_TREE, string_type_node,
3101 tree_cons (NULL_TREE,
3102 const_string_type_node,
3103 endlink)));
3104
3105 int_ftype_string_string /* strcmp prototype */
3106 = build_function_type (integer_type_node,
3107 tree_cons (NULL_TREE, const_string_type_node,
3108 tree_cons (NULL_TREE,
3109 const_string_type_node,
3110 endlink)));
3111
f0a45d37
RS
3112 strlen_ftype /* strlen prototype */
3113 = build_function_type (flag_traditional ? integer_type_node : sizetype,
51e29401
RS
3114 tree_cons (NULL_TREE, const_string_type_node,
3115 endlink));
3116
3117 traditional_ptr_type_node
3118 = (flag_traditional ? string_type_node : ptr_type_node);
3119
3120 memcpy_ftype /* memcpy prototype */
3121 = build_function_type (traditional_ptr_type_node,
3122 tree_cons (NULL_TREE, ptr_type_node,
3123 tree_cons (NULL_TREE, const_ptr_type_node,
3124 tree_cons (NULL_TREE,
3125 sizetype,
3126 endlink))));
3127
b71e9de0
RK
3128 memset_ftype /* memset prototype */
3129 = build_function_type (traditional_ptr_type_node,
3130 tree_cons (NULL_TREE, ptr_type_node,
3131 tree_cons (NULL_TREE, integer_type_node,
3132 tree_cons (NULL_TREE,
3133 sizetype,
3134 endlink))));
3135
ccafc85b 3136 builtin_function ("__builtin_constant_p", default_function_type,
8d9bfdc5 3137 BUILT_IN_CONSTANT_P, NULL_PTR);
51e29401
RS
3138
3139 builtin_function ("__builtin_return_address",
530fb43c 3140 build_function_type (ptr_type_node,
51e29401
RS
3141 tree_cons (NULL_TREE,
3142 unsigned_type_node,
3143 endlink)),
8d9bfdc5 3144 BUILT_IN_RETURN_ADDRESS, NULL_PTR);
51e29401
RS
3145
3146 builtin_function ("__builtin_frame_address",
530fb43c 3147 build_function_type (ptr_type_node,
51e29401
RS
3148 tree_cons (NULL_TREE,
3149 unsigned_type_node,
3150 endlink)),
8d9bfdc5 3151 BUILT_IN_FRAME_ADDRESS, NULL_PTR);
51e29401
RS
3152
3153 builtin_function ("__builtin_alloca",
3154 build_function_type (ptr_type_node,
3155 tree_cons (NULL_TREE,
3156 sizetype,
3157 endlink)),
3158 BUILT_IN_ALLOCA, "alloca");
1f53ee05
RS
3159 builtin_function ("__builtin_ffs", int_ftype_int, BUILT_IN_FFS, NULL_PTR);
3160 /* Define alloca, ffs as builtins.
3161 Declare _exit just to mark it as volatile. */
fc3ffe83 3162 if (! flag_no_builtin && !flag_no_nonansi_builtin)
51e29401 3163 {
51e29401
RS
3164 temp = builtin_function ("alloca",
3165 build_function_type (ptr_type_node,
3166 tree_cons (NULL_TREE,
3167 sizetype,
3168 endlink)),
8d9bfdc5 3169 BUILT_IN_ALLOCA, NULL_PTR);
51e29401
RS
3170 /* Suppress error if redefined as a non-function. */
3171 DECL_BUILT_IN_NONANSI (temp) = 1;
1f53ee05
RS
3172 temp = builtin_function ("ffs", int_ftype_int, BUILT_IN_FFS, NULL_PTR);
3173 /* Suppress error if redefined as a non-function. */
3174 DECL_BUILT_IN_NONANSI (temp) = 1;
8d9bfdc5
RK
3175 temp = builtin_function ("_exit", void_ftype_any, NOT_BUILT_IN,
3176 NULL_PTR);
51e29401
RS
3177 TREE_THIS_VOLATILE (temp) = 1;
3178 TREE_SIDE_EFFECTS (temp) = 1;
3179 /* Suppress error if redefined as a non-function. */
3180 DECL_BUILT_IN_NONANSI (temp) = 1;
3181 }
3182
8d9bfdc5 3183 builtin_function ("__builtin_abs", int_ftype_int, BUILT_IN_ABS, NULL_PTR);
732149f9
RK
3184 builtin_function ("__builtin_fabsf", float_ftype_float, BUILT_IN_FABS,
3185 NULL_PTR);
8d9bfdc5
RK
3186 builtin_function ("__builtin_fabs", double_ftype_double, BUILT_IN_FABS,
3187 NULL_PTR);
732149f9
RK
3188 builtin_function ("__builtin_fabsl", ldouble_ftype_ldouble, BUILT_IN_FABS,
3189 NULL_PTR);
8d9bfdc5
RK
3190 builtin_function ("__builtin_labs", long_ftype_long, BUILT_IN_LABS,
3191 NULL_PTR);
530fb43c
RK
3192 builtin_function ("__builtin_saveregs",
3193 build_function_type (ptr_type_node, NULL_TREE),
8d9bfdc5 3194 BUILT_IN_SAVEREGS, NULL_PTR);
51e29401
RS
3195/* EXPAND_BUILTIN_VARARGS is obsolete. */
3196#if 0
3197 builtin_function ("__builtin_varargs",
3198 build_function_type (ptr_type_node,
3199 tree_cons (NULL_TREE,
3200 integer_type_node,
3201 endlink)),
8d9bfdc5 3202 BUILT_IN_VARARGS, NULL_PTR);
51e29401
RS
3203#endif
3204 builtin_function ("__builtin_classify_type", default_function_type,
8d9bfdc5 3205 BUILT_IN_CLASSIFY_TYPE, NULL_PTR);
51e29401 3206 builtin_function ("__builtin_next_arg",
8d0aed47 3207 build_function_type (ptr_type_node, NULL_TREE),
8d9bfdc5 3208 BUILT_IN_NEXT_ARG, NULL_PTR);
51e29401
RS
3209 builtin_function ("__builtin_args_info",
3210 build_function_type (integer_type_node,
3211 tree_cons (NULL_TREE,
3212 integer_type_node,
3213 endlink)),
8d9bfdc5 3214 BUILT_IN_ARGS_INFO, NULL_PTR);
51e29401 3215
efb99317
TW
3216 /* Untyped call and return. */
3217 builtin_function ("__builtin_apply_args",
3218 build_function_type (ptr_type_node, NULL_TREE),
3219 BUILT_IN_APPLY_ARGS, NULL_PTR);
3220
3221 temp = tree_cons (NULL_TREE,
3222 build_pointer_type (build_function_type (void_type_node,
3223 NULL_TREE)),
3224 tree_cons (NULL_TREE,
3225 ptr_type_node,
3226 tree_cons (NULL_TREE,
e09d75bd 3227 sizetype,
efb99317
TW
3228 endlink)));
3229 builtin_function ("__builtin_apply",
3230 build_function_type (ptr_type_node, temp),
3231 BUILT_IN_APPLY, NULL_PTR);
3232 builtin_function ("__builtin_return",
3233 build_function_type (void_type_node,
3234 tree_cons (NULL_TREE,
3235 ptr_type_node,
3236 endlink)),
3237 BUILT_IN_RETURN, NULL_PTR);
3238
51e29401
RS
3239 /* Currently under experimentation. */
3240 builtin_function ("__builtin_memcpy", memcpy_ftype,
3241 BUILT_IN_MEMCPY, "memcpy");
3242 builtin_function ("__builtin_memcmp", int_ftype_cptr_cptr_sizet,
3243 BUILT_IN_MEMCMP, "memcmp");
b71e9de0
RK
3244 builtin_function ("__builtin_memset", memset_ftype,
3245 BUILT_IN_MEMSET, NULL_PTR);
51e29401
RS
3246 builtin_function ("__builtin_strcmp", int_ftype_string_string,
3247 BUILT_IN_STRCMP, "strcmp");
3248 builtin_function ("__builtin_strcpy", string_ftype_ptr_ptr,
3249 BUILT_IN_STRCPY, "strcpy");
f0a45d37 3250 builtin_function ("__builtin_strlen", strlen_ftype,
51e29401 3251 BUILT_IN_STRLEN, "strlen");
732149f9
RK
3252 builtin_function ("__builtin_sqrtf", float_ftype_float,
3253 BUILT_IN_FSQRT, "sqrtf");
929f3671
RS
3254 builtin_function ("__builtin_fsqrt", double_ftype_double,
3255 BUILT_IN_FSQRT, "sqrt");
732149f9
RK
3256 builtin_function ("__builtin_sqrtl", ldouble_ftype_ldouble,
3257 BUILT_IN_FSQRT, "sqrtl");
3258 builtin_function ("__builtin_sinf", float_ftype_float,
3259 BUILT_IN_SIN, "sinf");
96a1b3af
JVA
3260 builtin_function ("__builtin_sin", double_ftype_double,
3261 BUILT_IN_SIN, "sin");
732149f9
RK
3262 builtin_function ("__builtin_sinl", ldouble_ftype_ldouble,
3263 BUILT_IN_SIN, "sinl");
3264 builtin_function ("__builtin_cosf", float_ftype_float,
3265 BUILT_IN_COS, "cosf");
96a1b3af
JVA
3266 builtin_function ("__builtin_cos", double_ftype_double,
3267 BUILT_IN_COS, "cos");
732149f9
RK
3268 builtin_function ("__builtin_cosl", ldouble_ftype_ldouble,
3269 BUILT_IN_COS, "cosl");
091480e5
RK
3270 builtin_function ("__builtin_setjmp",
3271 build_function_type (integer_type_node,
3272 tree_cons (NULL_TREE,
3273 ptr_type_node, endlink)),
3274 BUILT_IN_SETJMP, NULL_PTR);
3275 builtin_function ("__builtin_longjmp",
3276 build_function_type
3277 (void_type_node,
3278 tree_cons (NULL, ptr_type_node,
3279 tree_cons (NULL_TREE,
3280 integer_type_node,
3281 endlink))),
3282 BUILT_IN_LONGJMP, NULL_PTR);
96a1b3af 3283
51e29401
RS
3284 /* In an ANSI C program, it is okay to supply built-in meanings
3285 for these functions, since applications cannot validly use them
3286 with any other meaning.
9e3c9e1b
RS
3287 However, honor the -fno-builtin option. */
3288 if (!flag_no_builtin)
51e29401 3289 {
8d9bfdc5 3290 builtin_function ("abs", int_ftype_int, BUILT_IN_ABS, NULL_PTR);
732149f9 3291 builtin_function ("fabsf", float_ftype_float, BUILT_IN_FABS, NULL_PTR);
8d9bfdc5 3292 builtin_function ("fabs", double_ftype_double, BUILT_IN_FABS, NULL_PTR);
732149f9
RK
3293 builtin_function ("fabsl", ldouble_ftype_ldouble, BUILT_IN_FABS,
3294 NULL_PTR);
8d9bfdc5
RK
3295 builtin_function ("labs", long_ftype_long, BUILT_IN_LABS, NULL_PTR);
3296 builtin_function ("memcpy", memcpy_ftype, BUILT_IN_MEMCPY, NULL_PTR);
3297 builtin_function ("memcmp", int_ftype_cptr_cptr_sizet, BUILT_IN_MEMCMP,
3298 NULL_PTR);
b71e9de0 3299 builtin_function ("memset", memset_ftype, BUILT_IN_MEMSET, NULL_PTR);
8d9bfdc5
RK
3300 builtin_function ("strcmp", int_ftype_string_string, BUILT_IN_STRCMP,
3301 NULL_PTR);
3302 builtin_function ("strcpy", string_ftype_ptr_ptr, BUILT_IN_STRCPY,
3303 NULL_PTR);
3304 builtin_function ("strlen", strlen_ftype, BUILT_IN_STRLEN, NULL_PTR);
732149f9 3305 builtin_function ("sqrtf", float_ftype_float, BUILT_IN_FSQRT, NULL_PTR);
8d9bfdc5 3306 builtin_function ("sqrt", double_ftype_double, BUILT_IN_FSQRT, NULL_PTR);
732149f9
RK
3307 builtin_function ("sqrtl", ldouble_ftype_ldouble, BUILT_IN_FSQRT,
3308 NULL_PTR);
3309 builtin_function ("sinf", float_ftype_float, BUILT_IN_SIN, NULL_PTR);
96a1b3af 3310 builtin_function ("sin", double_ftype_double, BUILT_IN_SIN, NULL_PTR);
732149f9
RK
3311 builtin_function ("sinl", ldouble_ftype_ldouble, BUILT_IN_SIN, NULL_PTR);
3312 builtin_function ("cosf", float_ftype_float, BUILT_IN_COS, NULL_PTR);
96a1b3af 3313 builtin_function ("cos", double_ftype_double, BUILT_IN_COS, NULL_PTR);
732149f9 3314 builtin_function ("cosl", ldouble_ftype_ldouble, BUILT_IN_COS, NULL_PTR);
9e3c9e1b
RS
3315
3316 /* Declare these functions volatile
3317 to avoid spurious "control drops through" warnings. */
3318 /* Don't specify the argument types, to avoid errors
3319 from certain code which isn't valid in ANSI but which exists. */
8d9bfdc5
RK
3320 temp = builtin_function ("abort", void_ftype_any, NOT_BUILT_IN,
3321 NULL_PTR);
9e3c9e1b
RS
3322 TREE_THIS_VOLATILE (temp) = 1;
3323 TREE_SIDE_EFFECTS (temp) = 1;
8d9bfdc5 3324 temp = builtin_function ("exit", void_ftype_any, NOT_BUILT_IN, NULL_PTR);
9e3c9e1b
RS
3325 TREE_THIS_VOLATILE (temp) = 1;
3326 TREE_SIDE_EFFECTS (temp) = 1;
51e29401
RS
3327 }
3328
3329#if 0
3330 /* Support for these has not been written in either expand_builtin
3331 or build_function_call. */
8d9bfdc5
RK
3332 builtin_function ("__builtin_div", default_ftype, BUILT_IN_DIV, NULL_PTR);
3333 builtin_function ("__builtin_ldiv", default_ftype, BUILT_IN_LDIV, NULL_PTR);
3334 builtin_function ("__builtin_ffloor", double_ftype_double, BUILT_IN_FFLOOR,
3335 NULL_PTR);
3336 builtin_function ("__builtin_fceil", double_ftype_double, BUILT_IN_FCEIL,
3337 NULL_PTR);
3338 builtin_function ("__builtin_fmod", double_ftype_double_double,
3339 BUILT_IN_FMOD, NULL_PTR);
3340 builtin_function ("__builtin_frem", double_ftype_double_double,
3341 BUILT_IN_FREM, NULL_PTR);
3342 builtin_function ("__builtin_memset", ptr_ftype_ptr_int_int,
3343 BUILT_IN_MEMSET, NULL_PTR);
3344 builtin_function ("__builtin_getexp", double_ftype_double, BUILT_IN_GETEXP,
3345 NULL_PTR);
3346 builtin_function ("__builtin_getman", double_ftype_double, BUILT_IN_GETMAN,
3347 NULL_PTR);
51e29401
RS
3348#endif
3349
f444e553
JM
3350 pedantic_lvalues = pedantic;
3351
b032c74c 3352 /* Create the global bindings for __FUNCTION__ and __PRETTY_FUNCTION__. */
7da551a2 3353 declare_function_name ();
64309441 3354
51e29401
RS
3355 start_identifier_warnings ();
3356
561d994f
RK
3357 /* Prepare to check format strings against argument lists. */
3358 init_function_format_info ();
75621238
RS
3359
3360 init_iterators ();
b4892310
RS
3361
3362 incomplete_decl_finalize_hook = finish_incomplete_decl;
51e29401
RS
3363}
3364
3365/* Return a definition for a builtin function named NAME and whose data type
3366 is TYPE. TYPE should be a function type with argument types.
3367 FUNCTION_CODE tells later passes how to compile calls to this function.
3368 See tree.h for its possible values.
3369
3370 If LIBRARY_NAME is nonzero, use that for DECL_ASSEMBLER_NAME,
3371 the name to be called if we can't opencode the function. */
3372
929f3671 3373tree
51e29401
RS
3374builtin_function (name, type, function_code, library_name)
3375 char *name;
3376 tree type;
3377 enum built_in_function function_code;
3378 char *library_name;
3379{
3380 tree decl = build_decl (FUNCTION_DECL, get_identifier (name), type);
1394aabd 3381 DECL_EXTERNAL (decl) = 1;
51e29401 3382 TREE_PUBLIC (decl) = 1;
9a509bfe
RS
3383 /* If -traditional, permit redefining a builtin function any way you like.
3384 (Though really, if the program redefines these functions,
3385 it probably won't work right unless compiled with -fno-builtin.) */
3386 if (flag_traditional && name[0] != '_')
3387 DECL_BUILT_IN_NONANSI (decl) = 1;
51e29401
RS
3388 if (library_name)
3389 DECL_ASSEMBLER_NAME (decl) = get_identifier (library_name);
8d9bfdc5 3390 make_decl_rtl (decl, NULL_PTR, 1);
51e29401
RS
3391 pushdecl (decl);
3392 if (function_code != NOT_BUILT_IN)
3393 {
3394 DECL_BUILT_IN (decl) = 1;
678566a5 3395 DECL_FUNCTION_CODE (decl) = function_code;
51e29401 3396 }
6b19af32
RS
3397 /* Warn if a function in the namespace for users
3398 is used without an occasion to consider it declared. */
3399 if (name[0] != '_' || name[1] != '_')
3400 C_DECL_ANTICIPATED (decl) = 1;
51e29401
RS
3401
3402 return decl;
3403}
3404\f
3405/* Called when a declaration is seen that contains no names to declare.
3406 If its type is a reference to a structure, union or enum inherited
3407 from a containing scope, shadow that tag name for the current scope
3408 with a forward reference.
3409 If its type defines a new named structure or union
3410 or defines an enum, it is valid but we need not do anything here.
3411 Otherwise, it is an error. */
3412
3413void
3414shadow_tag (declspecs)
3415 tree declspecs;
9282f2f9
RS
3416{
3417 shadow_tag_warned (declspecs, 0);
3418}
3419
3420void
3421shadow_tag_warned (declspecs, warned)
3422 tree declspecs;
3423 int warned;
773edaef
RK
3424 /* 1 => we have done a pedwarn. 2 => we have done a warning, but
3425 no pedwarn. */
51e29401
RS
3426{
3427 int found_tag = 0;
51e29401
RS
3428 register tree link;
3429
3430 pending_invalid_xref = 0;
3431
3432 for (link = declspecs; link; link = TREE_CHAIN (link))
3433 {
3434 register tree value = TREE_VALUE (link);
3435 register enum tree_code code = TREE_CODE (value);
3436
3437 if (code == RECORD_TYPE || code == UNION_TYPE || code == ENUMERAL_TYPE)
3438 /* Used to test also that TYPE_SIZE (value) != 0.
3439 That caused warning for `struct foo;' at top level in the file. */
3440 {
3441 register tree name = lookup_tag_reverse (value);
3442 register tree t;
3443
3444 found_tag++;
3445
3446 if (name == 0)
3447 {
773edaef
RK
3448 if (warned != 1 && code != ENUMERAL_TYPE)
3449 /* Empty unnamed enum OK */
51e29401
RS
3450 {
3451 pedwarn ("unnamed struct/union that defines no instances");
3452 warned = 1;
3453 }
3454 }
3455 else
3456 {
3457 t = lookup_tag (code, name, current_binding_level, 1);
3458
3459 if (t == 0)
3460 {
3461 t = make_node (code);
3462 pushtag (name, t);
3463 }
3464 }
3465 }
3466 else
3467 {
efffbf71 3468 if (!warned && ! in_system_header)
773edaef
RK
3469 {
3470 warning ("useless keyword or type name in empty declaration");
3471 warned = 2;
3472 }
51e29401
RS
3473 }
3474 }
3475
773edaef
RK
3476 if (found_tag > 1)
3477 error ("two types specified in one empty declaration");
3478
3479 if (warned != 1)
51e29401 3480 {
51e29401
RS
3481 if (found_tag == 0)
3482 pedwarn ("empty declaration");
3483 }
3484}
3485\f
3486/* Decode a "typename", such as "int **", returning a ..._TYPE node. */
3487
3488tree
3489groktypename (typename)
3490 tree typename;
3491{
3492 if (TREE_CODE (typename) != TREE_LIST)
3493 return typename;
3494 return grokdeclarator (TREE_VALUE (typename),
3495 TREE_PURPOSE (typename),
3496 TYPENAME, 0);
3497}
3498
3499/* Return a PARM_DECL node for a given pair of specs and declarator. */
3500
3501tree
3502groktypename_in_parm_context (typename)
3503 tree typename;
3504{
3505 if (TREE_CODE (typename) != TREE_LIST)
3506 return typename;
3507 return grokdeclarator (TREE_VALUE (typename),
3508 TREE_PURPOSE (typename),
3509 PARM, 0);
3510}
3511
3512/* Decode a declarator in an ordinary declaration or data definition.
3513 This is called as soon as the type information and variable name
3514 have been parsed, before parsing the initializer if any.
3515 Here we create the ..._DECL node, fill in its type,
3516 and put it on the list of decls for the current context.
3517 The ..._DECL node is returned as the value.
3518
3519 Exception: for arrays where the length is not specified,
3520 the type is left null, to be filled in by `finish_decl'.
3521
3522 Function definitions do not come here; they go to start_function
3523 instead. However, external and forward declarations of functions
3524 do go through here. Structure field declarations are done by
3525 grokfield and not through here. */
3526
3527/* Set this to zero to debug not using the temporary obstack
3528 to parse initializers. */
3529int debug_temp_inits = 1;
3530
3531tree
daa6d5ff 3532start_decl (declarator, declspecs, initialized, attributes, prefix_attributes)
eaa81144 3533 tree declarator, declspecs;
51e29401 3534 int initialized;
daa6d5ff 3535 tree attributes, prefix_attributes;
51e29401
RS
3536{
3537 register tree decl = grokdeclarator (declarator, declspecs,
3538 NORMAL, initialized);
3539 register tree tem;
3540 int init_written = initialized;
3541
3542 /* The corresponding pop_obstacks is in finish_decl. */
3543 push_obstacks_nochange ();
3544
3545 if (initialized)
3546 /* Is it valid for this decl to have an initializer at all?
3547 If not, set INITIALIZED to zero, which will indirectly
3548 tell `finish_decl' to ignore the initializer once it is parsed. */
3549 switch (TREE_CODE (decl))
3550 {
3551 case TYPE_DECL:
3552 /* typedef foo = bar means give foo the same type as bar.
3553 We haven't parsed bar yet, so `finish_decl' will fix that up.
3554 Any other case of an initialization in a TYPE_DECL is an error. */
3555 if (pedantic || list_length (declspecs) > 1)
3556 {
3557 error ("typedef `%s' is initialized",
3558 IDENTIFIER_POINTER (DECL_NAME (decl)));
3559 initialized = 0;
3560 }
3561 break;
3562
3563 case FUNCTION_DECL:
3564 error ("function `%s' is initialized like a variable",
3565 IDENTIFIER_POINTER (DECL_NAME (decl)));
3566 initialized = 0;
3567 break;
3568
3569 case PARM_DECL:
3570 /* DECL_INITIAL in a PARM_DECL is really DECL_ARG_TYPE. */
3571 error ("parameter `%s' is initialized",
3572 IDENTIFIER_POINTER (DECL_NAME (decl)));
3573 initialized = 0;
3574 break;
3575
3576 default:
3577 /* Don't allow initializations for incomplete types
3578 except for arrays which might be completed by the initialization. */
3579 if (TYPE_SIZE (TREE_TYPE (decl)) != 0)
3580 {
3581 /* A complete type is ok if size is fixed. */
3582
3583 if (TREE_CODE (TYPE_SIZE (TREE_TYPE (decl))) != INTEGER_CST
3584 || C_DECL_VARIABLE_SIZE (decl))
3585 {
3586 error ("variable-sized object may not be initialized");
3587 initialized = 0;
3588 }
3589 }
3590 else if (TREE_CODE (TREE_TYPE (decl)) != ARRAY_TYPE)
3591 {
3592 error ("variable `%s' has initializer but incomplete type",
3593 IDENTIFIER_POINTER (DECL_NAME (decl)));
3594 initialized = 0;
3595 }
3596 else if (TYPE_SIZE (TREE_TYPE (TREE_TYPE (decl))) == 0)
3597 {
3598 error ("elements of array `%s' have incomplete type",
3599 IDENTIFIER_POINTER (DECL_NAME (decl)));
3600 initialized = 0;
3601 }
3602 }
3603
3604 if (initialized)
3605 {
3606#if 0 /* Seems redundant with grokdeclarator. */
3607 if (current_binding_level != global_binding_level
1394aabd 3608 && DECL_EXTERNAL (decl)
51e29401
RS
3609 && TREE_CODE (decl) != FUNCTION_DECL)
3610 warning ("declaration of `%s' has `extern' and is initialized",
3611 IDENTIFIER_POINTER (DECL_NAME (decl)));
3612#endif
1394aabd 3613 DECL_EXTERNAL (decl) = 0;
51e29401
RS
3614 if (current_binding_level == global_binding_level)
3615 TREE_STATIC (decl) = 1;
3616
3617 /* Tell `pushdecl' this is an initialized decl
3618 even though we don't yet have the initializer expression.
3619 Also tell `finish_decl' it may store the real initializer. */
3620 DECL_INITIAL (decl) = error_mark_node;
3621 }
3622
3623 /* If this is a function declaration, write a record describing it to the
3624 prototypes file (if requested). */
3625
3626 if (TREE_CODE (decl) == FUNCTION_DECL)
3627 gen_aux_info_record (decl, 0, 0, TYPE_ARG_TYPES (TREE_TYPE (decl)) != 0);
3628
2786cbad
JM
3629 /* ANSI specifies that a tentative definition which is not merged with
3630 a non-tentative definition behaves exactly like a definition with an
3631 initializer equal to zero. (Section 3.7.2)
3632 -fno-common gives strict ANSI behavior. Usually you don't want it.
3633 This matters only for variables with external linkage. */
f537695d 3634 if (! flag_no_common || ! TREE_PUBLIC (decl))
2786cbad 3635 DECL_COMMON (decl) = 1;
8615176a 3636
daa6d5ff
RK
3637 /* Set attributes here so if duplicate decl, will have proper attributes. */
3638 decl_attributes (decl, attributes, prefix_attributes);
3639
51e29401
RS
3640 /* Add this decl to the current binding level.
3641 TEM may equal DECL or it may be a previous decl of the same name. */
3642 tem = pushdecl (decl);
3643
3644 /* For a local variable, define the RTL now. */
3645 if (current_binding_level != global_binding_level
3646 /* But not if this is a duplicate decl
3647 and we preserved the rtl from the previous one
3648 (which may or may not happen). */
3649 && DECL_RTL (tem) == 0)
3650 {
3651 if (TYPE_SIZE (TREE_TYPE (tem)) != 0)
3652 expand_decl (tem);
3653 else if (TREE_CODE (TREE_TYPE (tem)) == ARRAY_TYPE
3654 && DECL_INITIAL (tem) != 0)
3655 expand_decl (tem);
3656 }
3657
3658 if (init_written)
3659 {
3660 /* When parsing and digesting the initializer,
3661 use temporary storage. Do this even if we will ignore the value. */
3662 if (current_binding_level == global_binding_level && debug_temp_inits)
3663 temporary_allocation ();
3664 }
3665
3666 return tem;
3667}
3668
3669/* Finish processing of a declaration;
3670 install its initial value.
3671 If the length of an array type is not known before,
3672 it must be determined now, from the initial value, or it is an error. */
3673
3674void
3675finish_decl (decl, init, asmspec_tree)
3676 tree decl, init;
3677 tree asmspec_tree;
3678{
3679 register tree type = TREE_TYPE (decl);
3680 int was_incomplete = (DECL_SIZE (decl) == 0);
3681 int temporary = allocation_temporary_p ();
3682 char *asmspec = 0;
3683
72f5a12b 3684 /* If a name was specified, get the string. */
51e29401 3685 if (asmspec_tree)
72f5a12b 3686 asmspec = TREE_STRING_POINTER (asmspec_tree);
51e29401
RS
3687
3688 /* If `start_decl' didn't like having an initialization, ignore it now. */
3689
3690 if (init != 0 && DECL_INITIAL (decl) == 0)
3691 init = 0;
3692 /* Don't crash if parm is initialized. */
3693 if (TREE_CODE (decl) == PARM_DECL)
3694 init = 0;
3695
519d591f
RS
3696 if (ITERATOR_P (decl))
3697 {
3698 if (init == 0)
3699 error_with_decl (decl, "iterator has no initial value");
3700 else
3701 init = save_expr (init);
3702 }
3703
51e29401
RS
3704 if (init)
3705 {
3706 if (TREE_CODE (decl) != TYPE_DECL)
3707 store_init_value (decl, init);
3708 else
3709 {
3710 /* typedef foo = bar; store the type of bar as the type of foo. */
3711 TREE_TYPE (decl) = TREE_TYPE (init);
3712 DECL_INITIAL (decl) = init = 0;
3713 }
3714 }
3715
7a0347ff
RS
3716 /* Pop back to the obstack that is current for this binding level.
3717 This is because MAXINDEX, rtl, etc. to be made below
3718 must go in the permanent obstack. But don't discard the
51e29401 3719 temporary data yet. */
7a0347ff
RS
3720 pop_obstacks ();
3721#if 0 /* pop_obstacks was near the end; this is what was here. */
51e29401
RS
3722 if (current_binding_level == global_binding_level && temporary)
3723 end_temporary_allocation ();
7a0347ff 3724#endif
51e29401
RS
3725
3726 /* Deduce size of array from initialization, if not already known */
3727
3728 if (TREE_CODE (type) == ARRAY_TYPE
3729 && TYPE_DOMAIN (type) == 0
3730 && TREE_CODE (decl) != TYPE_DECL)
3731 {
3732 int do_default
3733 = (TREE_STATIC (decl)
3734 /* Even if pedantic, an external linkage array
3735 may have incomplete type at first. */
3736 ? pedantic && !TREE_PUBLIC (decl)
1394aabd 3737 : !DECL_EXTERNAL (decl));
51e29401
RS
3738 int failure
3739 = complete_array_type (type, DECL_INITIAL (decl), do_default);
3740
3741 /* Get the completed type made by complete_array_type. */
3742 type = TREE_TYPE (decl);
3743
3744 if (failure == 1)
3745 error_with_decl (decl, "initializer fails to determine size of `%s'");
3746
3747 if (failure == 2)
3748 {
3749 if (do_default)
3750 error_with_decl (decl, "array size missing in `%s'");
b4892310
RS
3751 /* If a `static' var's size isn't known,
3752 make it extern as well as static, so it does not get
3753 allocated.
3754 If it is not `static', then do not mark extern;
3755 finish_incomplete_decl will give it a default size
3756 and it will get allocated. */
3757 else if (!pedantic && TREE_STATIC (decl) && ! TREE_PUBLIC (decl))
1394aabd 3758 DECL_EXTERNAL (decl) = 1;
51e29401
RS
3759 }
3760
7e44eda6
JW
3761 /* TYPE_MAX_VALUE is always one less than the number of elements
3762 in the array, because we start counting at zero. Therefore,
3763 warn only if the value is less than zero. */
51e29401 3764 if (pedantic && TYPE_DOMAIN (type) != 0
7e44eda6 3765 && tree_int_cst_sgn (TYPE_MAX_VALUE (TYPE_DOMAIN (type))) < 0)
6aa10371 3766 error_with_decl (decl, "zero or negative size array `%s'");
51e29401
RS
3767
3768 layout_decl (decl, 0);
3769 }
3770
3771 if (TREE_CODE (decl) == VAR_DECL)
3772 {
d575f110
RS
3773 if (DECL_SIZE (decl) == 0
3774 && TYPE_SIZE (TREE_TYPE (decl)) != 0)
3775 layout_decl (decl, 0);
3776
a7f64d52
RS
3777 if (DECL_SIZE (decl) == 0
3778 && (TREE_STATIC (decl)
3779 ?
3780 /* A static variable with an incomplete type
f3b4fb6e 3781 is an error if it is initialized.
70efc776 3782 Also if it is not file scope.
a7f64d52
RS
3783 Otherwise, let it through, but if it is not `extern'
3784 then it may cause an error message later. */
e3b776dc
RK
3785 /* A duplicate_decls call could have changed an extern
3786 declaration into a file scope one. This can be detected
3787 by TREE_ASM_WRITTEN being set. */
3788 (DECL_INITIAL (decl) != 0
3789 || DECL_CONTEXT (decl) != 0 && ! TREE_ASM_WRITTEN (decl))
a7f64d52
RS
3790 :
3791 /* An automatic variable with an incomplete type
3792 is an error. */
70038ec9 3793 !DECL_EXTERNAL (decl)))
51e29401 3794 {
51e29401
RS
3795 error_with_decl (decl, "storage size of `%s' isn't known");
3796 TREE_TYPE (decl) = error_mark_node;
3797 }
3798
1394aabd 3799 if ((DECL_EXTERNAL (decl) || TREE_STATIC (decl))
90374cc2 3800 && DECL_SIZE (decl) != 0)
e681c5a1
RS
3801 {
3802 if (TREE_CODE (DECL_SIZE (decl)) == INTEGER_CST)
3803 constant_expression_warning (DECL_SIZE (decl));
3804 else
3805 error_with_decl (decl, "storage size of `%s' isn't constant");
3806 }
51e29401
RS
3807 }
3808
3c4afaa5 3809 /* If this is a function and an assembler name is specified, it isn't
72f5a12b
RK
3810 builtin any more. Also reset DECL_RTL so we can give it its new
3811 name. */
3c4afaa5 3812 if (TREE_CODE (decl) == FUNCTION_DECL && asmspec)
72f5a12b
RK
3813 {
3814 DECL_BUILT_IN (decl) = 0;
3815 DECL_RTL (decl) = 0;
3816 }
3c4afaa5 3817
51e29401
RS
3818 /* Output the assembler code and/or RTL code for variables and functions,
3819 unless the type is an undefined structure or union.
3820 If not, it will get done when the type is completed. */
3821
3822 if (TREE_CODE (decl) == VAR_DECL || TREE_CODE (decl) == FUNCTION_DECL)
3823 {
a98b1078
RK
3824 if ((flag_traditional || TREE_PERMANENT (decl))
3825 && allocation_temporary_p ())
51e29401
RS
3826 {
3827 push_obstacks_nochange ();
3828 end_temporary_allocation ();
3829 /* This is a no-op in c-lang.c or something real in objc-actions.c. */
3830 maybe_objc_check_decl (decl);
e3b776dc
RK
3831 rest_of_decl_compilation (decl, asmspec,
3832 (DECL_CONTEXT (decl) == 0
3833 || TREE_ASM_WRITTEN (decl)),
51e29401
RS
3834 0);
3835 pop_obstacks ();
3836 }
3837 else
3838 {
3839 /* This is a no-op in c-lang.c or something real in objc-actions.c. */
3840 maybe_objc_check_decl (decl);
15317f89 3841 rest_of_decl_compilation (decl, asmspec, DECL_CONTEXT (decl) == 0,
51e29401
RS
3842 0);
3843 }
15317f89 3844 if (DECL_CONTEXT (decl) != 0)
51e29401
RS
3845 {
3846 /* Recompute the RTL of a local array now
3847 if it used to be an incomplete type. */
3848 if (was_incomplete
1394aabd 3849 && ! TREE_STATIC (decl) && ! DECL_EXTERNAL (decl))
51e29401
RS
3850 {
3851 /* If we used it already as memory, it must stay in memory. */
3852 TREE_ADDRESSABLE (decl) = TREE_USED (decl);
3853 /* If it's still incomplete now, no init will save it. */
3854 if (DECL_SIZE (decl) == 0)
3855 DECL_INITIAL (decl) = 0;
3856 expand_decl (decl);
3857 }
3858 /* Compute and store the initial value. */
42dfa47f
RS
3859 if (TREE_CODE (decl) != FUNCTION_DECL)
3860 expand_decl_init (decl);
51e29401
RS
3861 }
3862 }
3863
3864 if (TREE_CODE (decl) == TYPE_DECL)
3865 {
3866 /* This is a no-op in c-lang.c or something real in objc-actions.c. */
3867 maybe_objc_check_decl (decl);
15317f89 3868 rest_of_decl_compilation (decl, NULL_PTR, DECL_CONTEXT (decl) == 0,
51e29401
RS
3869 0);
3870 }
3871
14f3e886 3872 /* ??? After 2.3, test (init != 0) instead of TREE_CODE. */
3e755d23
JW
3873 /* This test used to include TREE_PERMANENT, however, we have the same
3874 problem with initializers at the function level. Such initializers get
3875 saved until the end of the function on the momentary_obstack. */
14f3e886 3876 if (!(TREE_CODE (decl) == FUNCTION_DECL && DECL_INLINE (decl))
3e755d23 3877 && temporary
eda115dd
RS
3878 /* DECL_INITIAL is not defined in PARM_DECLs, since it shares
3879 space with DECL_ARG_TYPE. */
3880 && TREE_CODE (decl) != PARM_DECL)
51e29401
RS
3881 {
3882 /* We need to remember that this array HAD an initialization,
3883 but discard the actual temporary nodes,
3884 since we can't have a permanent node keep pointing to them. */
14f3e886
RS
3885 /* We make an exception for inline functions, since it's
3886 normal for a local extern redeclaration of an inline function
3887 to have a copy of the top-level decl's DECL_INLINE. */
db57d413 3888 if (DECL_INITIAL (decl) != 0 && DECL_INITIAL (decl) != error_mark_node)
549a367a 3889 {
3e755d23 3890 /* If this is a const variable, then preserve the
549a367a
JW
3891 initializer instead of discarding it so that we can optimize
3892 references to it. */
3e755d23
JW
3893 /* This test used to include TREE_STATIC, but this won't be set
3894 for function level initializers. */
3861b613 3895 if (TREE_READONLY (decl) || ITERATOR_P (decl))
b4d4e33d
RS
3896 {
3897 preserve_initializer ();
3898 /* Hack? Set the permanent bit for something that is permanent,
ddd5a7c1 3899 but not on the permanent obstack, so as to convince
b4d4e33d
RS
3900 output_constant_def to make its rtl on the permanent
3901 obstack. */
3902 TREE_PERMANENT (DECL_INITIAL (decl)) = 1;
7d49f92a
RK
3903
3904 /* The initializer and DECL must have the same (or equivalent
3905 types), but if the initializer is a STRING_CST, its type
3906 might not be on the right obstack, so copy the type
3907 of DECL. */
3908 TREE_TYPE (DECL_INITIAL (decl)) = type;
b4d4e33d 3909 }
549a367a
JW
3910 else
3911 DECL_INITIAL (decl) = error_mark_node;
3912 }
51e29401
RS
3913 }
3914
739d15ab
RK
3915 /* If requested, warn about definitions of large data objects. */
3916
3917 if (warn_larger_than
3918 && (TREE_CODE (decl) == VAR_DECL || TREE_CODE (decl) == PARM_DECL)
3919 && !DECL_EXTERNAL (decl))
3920 {
3921 register tree decl_size = DECL_SIZE (decl);
3922
3923 if (decl_size && TREE_CODE (decl_size) == INTEGER_CST)
3924 {
3925 unsigned units = TREE_INT_CST_LOW(decl_size) / BITS_PER_UNIT;
3926
3927 if (units > larger_than_size)
3928 warning_with_decl (decl, "size of `%s' is %u bytes", units);
3929 }
3930 }
3931
7a0347ff 3932#if 0
51e29401
RS
3933 /* Resume permanent allocation, if not within a function. */
3934 /* The corresponding push_obstacks_nochange is in start_decl,
3935 and in push_parm_decl and in grokfield. */
3936 pop_obstacks ();
7a0347ff
RS
3937#endif
3938
3939 /* If we have gone back from temporary to permanent allocation,
3940 actually free the temporary space that we no longer need. */
3941 if (temporary && !allocation_temporary_p ())
3e755d23 3942 permanent_allocation (0);
51e29401
RS
3943
3944 /* At the end of a declaration, throw away any variable type sizes
3945 of types defined inside that declaration. There is no use
3946 computing them in the following function definition. */
3947 if (current_binding_level == global_binding_level)
3948 get_pending_sizes ();
3949}
3950
3951/* If DECL has a cleanup, build and return that cleanup here.
3952 This is a callback called by expand_expr. */
3953
3954tree
3955maybe_build_cleanup (decl)
3956 tree decl;
3957{
3958 /* There are no cleanups in C. */
3959 return NULL_TREE;
3960}
3961
3962/* Given a parsed parameter declaration,
3963 decode it into a PARM_DECL and push that on the current binding level.
3964 Also, for the sake of forward parm decls,
3965 record the given order of parms in `parm_order'. */
3966
3967void
3968push_parm_decl (parm)
3969 tree parm;
3970{
6cc902a1 3971 tree decl;
929f3671
RS
3972 int old_immediate_size_expand = immediate_size_expand;
3973 /* Don't try computing parm sizes now -- wait till fn is called. */
3974 immediate_size_expand = 0;
51e29401
RS
3975
3976 /* The corresponding pop_obstacks is in finish_decl. */
3977 push_obstacks_nochange ();
3978
005979f2
RK
3979 decl = grokdeclarator (TREE_VALUE (TREE_PURPOSE (parm)),
3980 TREE_PURPOSE (TREE_PURPOSE (parm)), PARM, 0);
3981 decl_attributes (decl, TREE_VALUE (TREE_VALUE (parm)),
3982 TREE_PURPOSE (TREE_VALUE (parm)));
6a5ed5bf
RK
3983
3984#if 0
93e3ba4f
RS
3985 if (DECL_NAME (decl))
3986 {
6cc902a1 3987 tree olddecl;
93e3ba4f
RS
3988 olddecl = lookup_name (DECL_NAME (decl));
3989 if (pedantic && olddecl != 0 && TREE_CODE (olddecl) == TYPE_DECL)
3990 pedwarn_with_decl (decl, "ANSI C forbids parameter `%s' shadowing typedef");
3991 }
6a5ed5bf
RK
3992#endif
3993
51e29401
RS
3994 decl = pushdecl (decl);
3995
929f3671
RS
3996 immediate_size_expand = old_immediate_size_expand;
3997
51e29401
RS
3998 current_binding_level->parm_order
3999 = tree_cons (NULL_TREE, decl, current_binding_level->parm_order);
4000
4001 /* Add this decl to the current binding level. */
4002 finish_decl (decl, NULL_TREE, NULL_TREE);
4003}
4004
4005/* Clear the given order of parms in `parm_order'.
4006 Used at start of parm list,
4007 and also at semicolon terminating forward decls. */
4008
4009void
4010clear_parm_order ()
4011{
4012 current_binding_level->parm_order = NULL_TREE;
4013}
4014\f
4015/* Make TYPE a complete type based on INITIAL_VALUE.
929f3671 4016 Return 0 if successful, 1 if INITIAL_VALUE can't be deciphered,
51e29401
RS
4017 2 if there was no information (in which case assume 1 if DO_DEFAULT). */
4018
4019int
4020complete_array_type (type, initial_value, do_default)
4021 tree type;
4022 tree initial_value;
4023 int do_default;
4024{
4025 register tree maxindex = NULL_TREE;
4026 int value = 0;
4027
4028 if (initial_value)
4029 {
4030 /* Note MAXINDEX is really the maximum index,
4031 one less than the size. */
4032 if (TREE_CODE (initial_value) == STRING_CST)
4033 {
4034 int eltsize
4035 = int_size_in_bytes (TREE_TYPE (TREE_TYPE (initial_value)));
20bf3fac
RS
4036 maxindex = build_int_2 ((TREE_STRING_LENGTH (initial_value)
4037 / eltsize) - 1, 0);
51e29401
RS
4038 }
4039 else if (TREE_CODE (initial_value) == CONSTRUCTOR)
4040 {
ecd4cee0 4041 tree elts = CONSTRUCTOR_ELTS (initial_value);
20bf3fac 4042 maxindex = size_binop (MINUS_EXPR, integer_zero_node, size_one_node);
ecd4cee0
RS
4043 for (; elts; elts = TREE_CHAIN (elts))
4044 {
4045 if (TREE_PURPOSE (elts))
4046 maxindex = TREE_PURPOSE (elts);
4047 else
4048 maxindex = size_binop (PLUS_EXPR, maxindex, size_one_node);
4049 }
4050 maxindex = copy_node (maxindex);
51e29401
RS
4051 }
4052 else
4053 {
4054 /* Make an error message unless that happened already. */
4055 if (initial_value != error_mark_node)
4056 value = 1;
4057
4058 /* Prevent further error messages. */
b4892310 4059 maxindex = build_int_2 (0, 0);
51e29401
RS
4060 }
4061 }
4062
4063 if (!maxindex)
4064 {
4065 if (do_default)
b4892310 4066 maxindex = build_int_2 (0, 0);
51e29401
RS
4067 value = 2;
4068 }
4069
4070 if (maxindex)
4071 {
4072 TYPE_DOMAIN (type) = build_index_type (maxindex);
4073 if (!TREE_TYPE (maxindex))
4074 TREE_TYPE (maxindex) = TYPE_DOMAIN (type);
f4e59008
RS
4075#if 0 /* I took out this change
4076 together with the change in build_array_type. --rms */
e1fe03e9
RS
4077 change_main_variant (type,
4078 build_array_type (TREE_TYPE (type),
4079 TYPE_DOMAIN (type)));
f4e59008 4080#endif
51e29401
RS
4081 }
4082
4083 /* Lay out the type now that we can get the real answer. */
4084
4085 layout_type (type);
4086
4087 return value;
4088}
4089\f
4090/* Given declspecs and a declarator,
4091 determine the name and type of the object declared
4092 and construct a ..._DECL node for it.
4093 (In one case we can return a ..._TYPE node instead.
4094 For invalid input we sometimes return 0.)
4095
4096 DECLSPECS is a chain of tree_list nodes whose value fields
4097 are the storage classes and type specifiers.
4098
4099 DECL_CONTEXT says which syntactic context this declaration is in:
4100 NORMAL for most contexts. Make a VAR_DECL or FUNCTION_DECL or TYPE_DECL.
4101 FUNCDEF for a function definition. Like NORMAL but a few different
4102 error messages in each case. Return value may be zero meaning
4103 this definition is too screwy to try to parse.
4104 PARM for a parameter declaration (either within a function prototype
4105 or before a function body). Make a PARM_DECL, or return void_type_node.
4106 TYPENAME if for a typename (in a cast or sizeof).
4107 Don't make a DECL node; just return the ..._TYPE node.
4108 FIELD for a struct or union field; make a FIELD_DECL.
4109 BITFIELD for a field with specified width.
4110 INITIALIZED is 1 if the decl has an initializer.
4111
4112 In the TYPENAME case, DECLARATOR is really an absolute declarator.
4113 It may also be so in the PARM case, for a prototype where the
4114 argument type is specified but not the name.
4115
4116 This function is where the complicated C meanings of `static'
929f3671 4117 and `extern' are interpreted. */
51e29401
RS
4118
4119static tree
4120grokdeclarator (declarator, declspecs, decl_context, initialized)
4121 tree declspecs;
4122 tree declarator;
4123 enum decl_context decl_context;
4124 int initialized;
4125{
4126 int specbits = 0;
4127 tree spec;
4128 tree type = NULL_TREE;
4129 int longlong = 0;
4130 int constp;
4131 int volatilep;
4132 int inlinep;
4133 int explicit_int = 0;
4134 int explicit_char = 0;
5ab10c42 4135 int defaulted_int = 0;
51e29401
RS
4136 tree typedef_decl = 0;
4137 char *name;
4138 tree typedef_type = 0;
4139 int funcdef_flag = 0;
4140 enum tree_code innermost_code = ERROR_MARK;
4141 int bitfield = 0;
929f3671 4142 int size_varies = 0;
4b4e3407 4143 tree decl_machine_attr = NULL_TREE;
51e29401
RS
4144
4145 if (decl_context == BITFIELD)
4146 bitfield = 1, decl_context = FIELD;
4147
4148 if (decl_context == FUNCDEF)
4149 funcdef_flag = 1, decl_context = NORMAL;
4150
4151 push_obstacks_nochange ();
4152
4153 if (flag_traditional && allocation_temporary_p ())
4154 end_temporary_allocation ();
4155
4156 /* Look inside a declarator for the name being declared
4157 and get it as a string, for an error message. */
4158 {
4159 register tree decl = declarator;
4160 name = 0;
4161
4162 while (decl)
4163 switch (TREE_CODE (decl))
4164 {
4165 case ARRAY_REF:
4166 case INDIRECT_REF:
4167 case CALL_EXPR:
4168 innermost_code = TREE_CODE (decl);
4169 decl = TREE_OPERAND (decl, 0);
4170 break;
4171
4172 case IDENTIFIER_NODE:
4173 name = IDENTIFIER_POINTER (decl);
4174 decl = 0;
4175 break;
4176
4177 default:
4178 abort ();
4179 }
4180 if (name == 0)
4181 name = "type name";
4182 }
4183
4184 /* A function definition's declarator must have the form of
4185 a function declarator. */
4186
4187 if (funcdef_flag && innermost_code != CALL_EXPR)
4188 return 0;
4189
4190 /* Anything declared one level down from the top level
4191 must be one of the parameters of a function
4192 (because the body is at least two levels down). */
4193
4194 /* If this looks like a function definition, make it one,
4195 even if it occurs where parms are expected.
4196 Then store_parm_decls will reject it and not use it as a parm. */
4197 if (decl_context == NORMAL && !funcdef_flag
9a381dd4 4198 && current_binding_level->parm_flag)
51e29401
RS
4199 decl_context = PARM;
4200
4201 /* Look through the decl specs and record which ones appear.
4202 Some typespecs are defined as built-in typenames.
4203 Others, the ones that are modifiers of other types,
4204 are represented by bits in SPECBITS: set the bits for
4205 the modifiers that appear. Storage class keywords are also in SPECBITS.
4206
4207 If there is a typedef name or a type, store the type in TYPE.
4208 This includes builtin typedefs such as `int'.
4209
4210 Set EXPLICIT_INT or EXPLICIT_CHAR if the type is `int' or `char'
4211 and did not come from a user typedef.
4212
4213 Set LONGLONG if `long' is mentioned twice. */
4214
4215 for (spec = declspecs; spec; spec = TREE_CHAIN (spec))
4216 {
4217 register int i;
4218 register tree id = TREE_VALUE (spec);
4219
4220 if (id == ridpointers[(int) RID_INT])
4221 explicit_int = 1;
4222 if (id == ridpointers[(int) RID_CHAR])
4223 explicit_char = 1;
4224
4225 if (TREE_CODE (id) == IDENTIFIER_NODE)
4226 for (i = (int) RID_FIRST_MODIFIER; i < (int) RID_MAX; i++)
4227 {
4228 if (ridpointers[i] == id)
4229 {
4230 if (i == (int) RID_LONG && specbits & (1<<i))
4231 {
89d7540d 4232 if (longlong)
47429a02 4233 error ("`long long long' is too long for GCC");
51e29401 4234 else
89d7540d 4235 {
5db1a3c4 4236 if (pedantic && ! in_system_header)
89d7540d
RS
4237 pedwarn ("ANSI C does not support `long long'");
4238 longlong = 1;
4239 }
51e29401
RS
4240 }
4241 else if (specbits & (1 << i))
93e3ba4f 4242 pedwarn ("duplicate `%s'", IDENTIFIER_POINTER (id));
51e29401
RS
4243 specbits |= 1 << i;
4244 goto found;
4245 }
4246 }
4247 if (type)
4248 error ("two or more data types in declaration of `%s'", name);
4249 /* Actual typedefs come to us as TYPE_DECL nodes. */
4250 else if (TREE_CODE (id) == TYPE_DECL)
4251 {
4252 type = TREE_TYPE (id);
4b4e3407 4253 decl_machine_attr = DECL_MACHINE_ATTRIBUTES (id);
51e29401
RS
4254 typedef_decl = id;
4255 }
4256 /* Built-in types come as identifiers. */
4257 else if (TREE_CODE (id) == IDENTIFIER_NODE)
4258 {
4259 register tree t = lookup_name (id);
4260 if (TREE_TYPE (t) == error_mark_node)
4261 ;
4262 else if (!t || TREE_CODE (t) != TYPE_DECL)
4263 error ("`%s' fails to be a typedef or built in type",
4264 IDENTIFIER_POINTER (id));
4265 else
4266 {
4267 type = TREE_TYPE (t);
4268 typedef_decl = t;
4269 }
4270 }
4271 else if (TREE_CODE (id) != ERROR_MARK)
4272 type = id;
4273
4274 found: {}
4275 }
4276
4277 typedef_type = type;
4278 if (type)
929f3671 4279 size_varies = C_TYPE_VARIABLE_SIZE (type);
51e29401 4280
5ab10c42 4281 /* No type at all: default to `int', and set DEFAULTED_INT
51e29401
RS
4282 because it was not a user-defined typedef. */
4283
4284 if (type == 0)
4285 {
4286 if (funcdef_flag && warn_return_type
4287 && ! (specbits & ((1 << (int) RID_LONG) | (1 << (int) RID_SHORT)
4288 | (1 << (int) RID_SIGNED) | (1 << (int) RID_UNSIGNED))))
4289 warn_about_return_type = 1;
5ab10c42 4290 defaulted_int = 1;
51e29401
RS
4291 type = integer_type_node;
4292 }
4293
4294 /* Now process the modifiers that were specified
4295 and check for invalid combinations. */
4296
4297 /* Long double is a special combination. */
4298
90d56da8
RS
4299 if ((specbits & 1 << (int) RID_LONG)
4300 && TYPE_MAIN_VARIANT (type) == double_type_node)
51e29401
RS
4301 {
4302 specbits &= ~ (1 << (int) RID_LONG);
4303 type = long_double_type_node;
4304 }
4305
4306 /* Check all other uses of type modifiers. */
4307
4308 if (specbits & ((1 << (int) RID_LONG) | (1 << (int) RID_SHORT)
4309 | (1 << (int) RID_UNSIGNED) | (1 << (int) RID_SIGNED)))
4310 {
4311 int ok = 0;
4312
4313 if (TREE_CODE (type) != INTEGER_TYPE)
4314 error ("long, short, signed or unsigned invalid for `%s'", name);
4315 else if ((specbits & 1 << (int) RID_LONG)
4316 && (specbits & 1 << (int) RID_SHORT))
4317 error ("long and short specified together for `%s'", name);
4318 else if (((specbits & 1 << (int) RID_LONG)
4319 || (specbits & 1 << (int) RID_SHORT))
4320 && explicit_char)
4321 error ("long or short specified with char for `%s'", name);
4322 else if (((specbits & 1 << (int) RID_LONG)
4323 || (specbits & 1 << (int) RID_SHORT))
4324 && TREE_CODE (type) == REAL_TYPE)
4325 error ("long or short specified with floating type for `%s'", name);
4326 else if ((specbits & 1 << (int) RID_SIGNED)
4327 && (specbits & 1 << (int) RID_UNSIGNED))
4328 error ("signed and unsigned given together for `%s'", name);
4329 else
4330 {
4331 ok = 1;
5ab10c42 4332 if (!explicit_int && !defaulted_int && !explicit_char && pedantic)
51e29401
RS
4333 {
4334 pedwarn ("long, short, signed or unsigned used invalidly for `%s'",
4335 name);
4336 if (flag_pedantic_errors)
4337 ok = 0;
4338 }
4339 }
4340
4341 /* Discard the type modifiers if they are invalid. */
4342 if (! ok)
4343 {
4344 specbits &= ~((1 << (int) RID_LONG) | (1 << (int) RID_SHORT)
4345 | (1 << (int) RID_UNSIGNED) | (1 << (int) RID_SIGNED));
4346 longlong = 0;
4347 }
4348 }
4349
c470260b
RK
4350 if ((specbits & (1 << (int) RID_COMPLEX))
4351 && TREE_CODE (type) != INTEGER_TYPE && TREE_CODE (type) != REAL_TYPE)
4352 {
4353 error ("complex invalid for `%s'", name);
4354 specbits &= ~ (1 << (int) RID_COMPLEX);
4355 }
4356
51e29401
RS
4357 /* Decide whether an integer type is signed or not.
4358 Optionally treat bitfields as signed by default. */
4359 if (specbits & 1 << (int) RID_UNSIGNED
4360 /* Traditionally, all bitfields are unsigned. */
7a0347ff
RS
4361 || (bitfield && flag_traditional
4362 && (! explicit_flag_signed_bitfields || !flag_signed_bitfields))
51e29401 4363 || (bitfield && ! flag_signed_bitfields
5ab10c42 4364 && (explicit_int || defaulted_int || explicit_char
51e29401
RS
4365 /* A typedef for plain `int' without `signed'
4366 can be controlled just like plain `int'. */
4367 || ! (typedef_decl != 0
4368 && C_TYPEDEF_EXPLICITLY_SIGNED (typedef_decl)))
4369 && TREE_CODE (type) != ENUMERAL_TYPE
4370 && !(specbits & 1 << (int) RID_SIGNED)))
4371 {
4372 if (longlong)
4373 type = long_long_unsigned_type_node;
4374 else if (specbits & 1 << (int) RID_LONG)
4375 type = long_unsigned_type_node;
4376 else if (specbits & 1 << (int) RID_SHORT)
4377 type = short_unsigned_type_node;
4378 else if (type == char_type_node)
4379 type = unsigned_char_type_node;
4380 else if (typedef_decl)
4381 type = unsigned_type (type);
4382 else
4383 type = unsigned_type_node;
4384 }
4385 else if ((specbits & 1 << (int) RID_SIGNED)
4386 && type == char_type_node)
4387 type = signed_char_type_node;
4388 else if (longlong)
4389 type = long_long_integer_type_node;
4390 else if (specbits & 1 << (int) RID_LONG)
4391 type = long_integer_type_node;
4392 else if (specbits & 1 << (int) RID_SHORT)
4393 type = short_integer_type_node;
c470260b
RK
4394
4395 if (specbits & 1 << (int) RID_COMPLEX)
5ab10c42 4396 {
c470260b
RK
4397 /* If we just have "complex", it is equivalent to
4398 "complex double", but if any modifiers at all are specified it is
4399 the complex form of TYPE. E.g, "complex short" is
4400 "complex short int". */
4401
4402 if (defaulted_int && ! longlong
4403 && ! (specbits & ((1 << (int) RID_LONG) | (1 << (int) RID_SHORT)
4404 | (1 << (int) RID_SIGNED)
4405 | (1 << (int) RID_UNSIGNED))))
5ab10c42
RS
4406 type = complex_double_type_node;
4407 else if (type == integer_type_node)
4408 type = complex_integer_type_node;
4409 else if (type == float_type_node)
4410 type = complex_float_type_node;
4411 else if (type == double_type_node)
4412 type = complex_double_type_node;
4413 else if (type == long_double_type_node)
4414 type = complex_long_double_type_node;
4415 else
c470260b 4416 type = build_complex_type (type);
5ab10c42 4417 }
51e29401
RS
4418
4419 /* Set CONSTP if this declaration is `const', whether by
4420 explicit specification or via a typedef.
4421 Likewise for VOLATILEP. */
4422
4423 constp = !! (specbits & 1 << (int) RID_CONST) + TYPE_READONLY (type);
4424 volatilep = !! (specbits & 1 << (int) RID_VOLATILE) + TYPE_VOLATILE (type);
4425 inlinep = !! (specbits & (1 << (int) RID_INLINE));
4426 if (constp > 1)
93e3ba4f 4427 pedwarn ("duplicate `const'");
51e29401 4428 if (volatilep > 1)
93e3ba4f 4429 pedwarn ("duplicate `volatile'");
51e29401
RS
4430 if (! flag_gen_aux_info && (TYPE_READONLY (type) || TYPE_VOLATILE (type)))
4431 type = TYPE_MAIN_VARIANT (type);
4432
4433 /* Warn if two storage classes are given. Default to `auto'. */
4434
4435 {
4436 int nclasses = 0;
4437
4438 if (specbits & 1 << (int) RID_AUTO) nclasses++;
4439 if (specbits & 1 << (int) RID_STATIC) nclasses++;
4440 if (specbits & 1 << (int) RID_EXTERN) nclasses++;
4441 if (specbits & 1 << (int) RID_REGISTER) nclasses++;
4442 if (specbits & 1 << (int) RID_TYPEDEF) nclasses++;
519d591f 4443 if (specbits & 1 << (int) RID_ITERATOR) nclasses++;
51e29401
RS
4444
4445 /* Warn about storage classes that are invalid for certain
4446 kinds of declarations (parameters, typenames, etc.). */
4447
4448 if (nclasses > 1)
4449 error ("multiple storage classes in declaration of `%s'", name);
4450 else if (funcdef_flag
4451 && (specbits
4452 & ((1 << (int) RID_REGISTER)
4453 | (1 << (int) RID_AUTO)
4454 | (1 << (int) RID_TYPEDEF))))
4455 {
4456 if (specbits & 1 << (int) RID_AUTO
4457 && (pedantic || current_binding_level == global_binding_level))
4458 pedwarn ("function definition declared `auto'");
4459 if (specbits & 1 << (int) RID_REGISTER)
4460 error ("function definition declared `register'");
4461 if (specbits & 1 << (int) RID_TYPEDEF)
4462 error ("function definition declared `typedef'");
4463 specbits &= ~ ((1 << (int) RID_TYPEDEF) | (1 << (int) RID_REGISTER)
4464 | (1 << (int) RID_AUTO));
4465 }
4466 else if (decl_context != NORMAL && nclasses > 0)
4467 {
4468 if (decl_context == PARM && specbits & 1 << (int) RID_REGISTER)
4469 ;
4470 else
4471 {
4472 error ((decl_context == FIELD
4473 ? "storage class specified for structure field `%s'"
4474 : (decl_context == PARM
4475 ? "storage class specified for parameter `%s'"
4476 : "storage class specified for typename")),
4477 name);
4478 specbits &= ~ ((1 << (int) RID_TYPEDEF) | (1 << (int) RID_REGISTER)
4479 | (1 << (int) RID_AUTO) | (1 << (int) RID_STATIC)
4480 | (1 << (int) RID_EXTERN));
4481 }
4482 }
4483 else if (specbits & 1 << (int) RID_EXTERN && initialized && ! funcdef_flag)
4484 {
4485 /* `extern' with initialization is invalid if not at top level. */
4486 if (current_binding_level == global_binding_level)
4487 warning ("`%s' initialized and declared `extern'", name);
4488 else
4489 error ("`%s' has both `extern' and initializer", name);
4490 }
4491 else if (specbits & 1 << (int) RID_EXTERN && funcdef_flag
4492 && current_binding_level != global_binding_level)
4493 error ("nested function `%s' declared `extern'", name);
4494 else if (current_binding_level == global_binding_level
4495 && specbits & (1 << (int) RID_AUTO))
4496 error ("top-level declaration of `%s' specifies `auto'", name);
519d591f
RS
4497 else if ((specbits & 1 << (int) RID_ITERATOR)
4498 && TREE_CODE (declarator) != IDENTIFIER_NODE)
4499 {
4500 error ("iterator `%s' has derived type", name);
4501 type = error_mark_node;
4502 }
4503 else if ((specbits & 1 << (int) RID_ITERATOR)
4504 && TREE_CODE (type) != INTEGER_TYPE)
4505 {
4506 error ("iterator `%s' has noninteger type", name);
4507 type = error_mark_node;
4508 }
51e29401
RS
4509 }
4510
4511 /* Now figure out the structure of the declarator proper.
4512 Descend through it, creating more complex types, until we reach
4513 the declared identifier (or NULL_TREE, in an absolute declarator). */
4514
4515 while (declarator && TREE_CODE (declarator) != IDENTIFIER_NODE)
4516 {
4517 if (type == error_mark_node)
4518 {
4519 declarator = TREE_OPERAND (declarator, 0);
4520 continue;
4521 }
4522
4523 /* Each level of DECLARATOR is either an ARRAY_REF (for ...[..]),
4524 an INDIRECT_REF (for *...),
4525 a CALL_EXPR (for ...(...)),
4526 an identifier (for the name being declared)
4527 or a null pointer (for the place in an absolute declarator
4528 where the name was omitted).
4529 For the last two cases, we have just exited the loop.
4530
4531 At this point, TYPE is the type of elements of an array,
4532 or for a function to return, or for a pointer to point to.
4533 After this sequence of ifs, TYPE is the type of the
4534 array or function or pointer, and DECLARATOR has had its
4535 outermost layer removed. */
4536
4537 if (TREE_CODE (declarator) == ARRAY_REF)
4538 {
4539 register tree itype = NULL_TREE;
4540 register tree size = TREE_OPERAND (declarator, 1);
e0e2f469
JW
4541 /* An uninitialized decl with `extern' is a reference. */
4542 int extern_ref = !initialized && (specbits & (1 << (int) RID_EXTERN));
1ff1a2d2
RK
4543 /* The index is a signed object `sizetype' bits wide. */
4544 tree index_type = signed_type (sizetype);
51e29401
RS
4545
4546 declarator = TREE_OPERAND (declarator, 0);
4547
4548 /* Check for some types that there cannot be arrays of. */
4549
5fe86b8b 4550 if (TYPE_MAIN_VARIANT (type) == void_type_node)
51e29401
RS
4551 {
4552 error ("declaration of `%s' as array of voids", name);
4553 type = error_mark_node;
4554 }
4555
4556 if (TREE_CODE (type) == FUNCTION_TYPE)
4557 {
4558 error ("declaration of `%s' as array of functions", name);
4559 type = error_mark_node;
4560 }
4561
4562 if (size == error_mark_node)
4563 type = error_mark_node;
4564
4565 if (type == error_mark_node)
4566 continue;
4567
e0e2f469
JW
4568 /* If this is a block level extern, it must live past the end
4569 of the function so that we can check it against other extern
4570 declarations (IDENTIFIER_LIMBO_VALUE). */
4571 if (extern_ref && allocation_temporary_p ())
4572 end_temporary_allocation ();
4573
51e29401
RS
4574 /* If size was specified, set ITYPE to a range-type for that size.
4575 Otherwise, ITYPE remains null. finish_decl may figure it out
4576 from an initial value. */
4577
4578 if (size)
4579 {
4580 /* Strip NON_LVALUE_EXPRs since we aren't using as an lvalue. */
874a7be1 4581 STRIP_TYPE_NOPS (size);
51e29401
RS
4582
4583 if (TREE_CODE (TREE_TYPE (size)) != INTEGER_TYPE
4584 && TREE_CODE (TREE_TYPE (size)) != ENUMERAL_TYPE)
4585 {
4586 error ("size of array `%s' has non-integer type", name);
4587 size = integer_one_node;
4588 }
0a43d680 4589
51e29401
RS
4590 if (pedantic && integer_zerop (size))
4591 pedwarn ("ANSI C forbids zero-size array `%s'", name);
0a43d680 4592
51e29401
RS
4593 if (TREE_CODE (size) == INTEGER_CST)
4594 {
90374cc2 4595 constant_expression_warning (size);
0a43d680 4596 if (tree_int_cst_sgn (size) < 0)
51e29401
RS
4597 {
4598 error ("size of array `%s' is negative", name);
4599 size = integer_one_node;
4600 }
51e29401
RS
4601 }
4602 else
4603 {
0a43d680
RK
4604 /* Make sure the array size remains visibly nonconstant
4605 even if it is (eg) a const variable with known value. */
4606 size_varies = 1;
4607
51e29401 4608 if (pedantic)
1a6603da
RS
4609 {
4610 if (TREE_CONSTANT (size))
4611 pedwarn ("ANSI C forbids array `%s' whose size can't be evaluated", name);
4612 else
4613 pedwarn ("ANSI C forbids variable-size array `%s'", name);
4614 }
51e29401 4615 }
0a43d680 4616
1ff1a2d2 4617 /* Convert size to index_type, so that if it is a variable
0a43d680 4618 the computations will be done in the proper mode. */
1ff1a2d2
RK
4619 itype = fold (build (MINUS_EXPR, index_type,
4620 convert (index_type, size),
4621 convert (index_type, size_one_node)));
0a43d680
RK
4622
4623 if (size_varies)
4624 itype = variable_size (itype);
4625 itype = build_index_type (itype);
51e29401
RS
4626 }
4627
4628#if 0 /* This had bad results for pointers to arrays, as in
4629 union incomplete (*foo)[4]; */
4630 /* Complain about arrays of incomplete types, except in typedefs. */
4631
4632 if (TYPE_SIZE (type) == 0
4633 /* Avoid multiple warnings for nested array types. */
4634 && TREE_CODE (type) != ARRAY_TYPE
4635 && !(specbits & (1 << (int) RID_TYPEDEF))
4636 && !C_TYPE_BEING_DEFINED (type))
4637 warning ("array type has incomplete element type");
4638#endif
4639
51e29401
RS
4640#if 0 /* We shouldn't have a function type here at all!
4641 Functions aren't allowed as array elements. */
4642 if (pedantic && TREE_CODE (type) == FUNCTION_TYPE
4643 && (constp || volatilep))
4644 pedwarn ("ANSI C forbids const or volatile function types");
4645#endif
50e65854
JW
4646
4647 /* Build the array type itself, then merge any constancy or
4648 volatility into the target type. We must do it in this order
4649 to ensure that the TYPE_MAIN_VARIANT field of the array type
4650 is set correctly. */
4651
4652 type = build_array_type (type, itype);
51e29401
RS
4653 if (constp || volatilep)
4654 type = c_build_type_variant (type, constp, volatilep);
4655
4656#if 0 /* don't clear these; leave them set so that the array type
4657 or the variable is itself const or volatile. */
4658 constp = 0;
4659 volatilep = 0;
4660#endif
4661
929f3671 4662 if (size_varies)
51e29401
RS
4663 C_TYPE_VARIABLE_SIZE (type) = 1;
4664 }
4665 else if (TREE_CODE (declarator) == CALL_EXPR)
4666 {
fd0b8fce
JW
4667 int extern_ref = (!(specbits & (1 << (int) RID_AUTO))
4668 || current_binding_level == global_binding_level);
51e29401
RS
4669 tree arg_types;
4670
4671 /* Declaring a function type.
4672 Make sure we have a valid type for the function to return. */
4673 if (type == error_mark_node)
4674 continue;
4675
929f3671 4676 size_varies = 0;
51e29401
RS
4677
4678 /* Warn about some types functions can't return. */
4679
4680 if (TREE_CODE (type) == FUNCTION_TYPE)
4681 {
4682 error ("`%s' declared as function returning a function", name);
4683 type = integer_type_node;
4684 }
4685 if (TREE_CODE (type) == ARRAY_TYPE)
4686 {
4687 error ("`%s' declared as function returning an array", name);
4688 type = integer_type_node;
4689 }
4690
4691#ifndef TRADITIONAL_RETURN_FLOAT
4692 /* Traditionally, declaring return type float means double. */
4693
90d56da8 4694 if (flag_traditional && TYPE_MAIN_VARIANT (type) == float_type_node)
51e29401
RS
4695 type = double_type_node;
4696#endif /* TRADITIONAL_RETURN_FLOAT */
4697
fd0b8fce
JW
4698 /* If this is a block level extern, it must live past the end
4699 of the function so that we can check it against other extern
4700 declarations (IDENTIFIER_LIMBO_VALUE). */
4701 if (extern_ref && allocation_temporary_p ())
4702 end_temporary_allocation ();
4703
51e29401
RS
4704 /* Construct the function type and go to the next
4705 inner layer of declarator. */
4706
4707 arg_types = grokparms (TREE_OPERAND (declarator, 1),
4708 funcdef_flag
4709 /* Say it's a definition
4710 only for the CALL_EXPR
4711 closest to the identifier. */
4712 && TREE_CODE (TREE_OPERAND (declarator, 0)) == IDENTIFIER_NODE);
4713#if 0 /* This seems to be false. We turn off temporary allocation
4714 above in this function if -traditional.
4715 And this code caused inconsistent results with prototypes:
4716 callers would ignore them, and pass arguments wrong. */
4717
4718 /* Omit the arg types if -traditional, since the arg types
4719 and the list links might not be permanent. */
8d9bfdc5
RK
4720 type = build_function_type (type,
4721 flag_traditional
4722 ? NULL_TREE : arg_types);
51e29401 4723#endif
61df2ee2
RS
4724 /* ANSI seems to say that `const int foo ();'
4725 does not make the function foo const. */
4726 if (constp || volatilep)
4727 type = c_build_type_variant (type, constp, volatilep);
4728 constp = 0;
4729 volatilep = 0;
4730
51e29401
RS
4731 type = build_function_type (type, arg_types);
4732 declarator = TREE_OPERAND (declarator, 0);
4733
4734 /* Set the TYPE_CONTEXTs for each tagged type which is local to
4735 the formal parameter list of this FUNCTION_TYPE to point to
4736 the FUNCTION_TYPE node itself. */
4737
4738 {
4739 register tree link;
4740
4741 for (link = current_function_parm_tags;
4742 link;
4743 link = TREE_CHAIN (link))
4744 TYPE_CONTEXT (TREE_VALUE (link)) = type;
4745 }
4746 }
4747 else if (TREE_CODE (declarator) == INDIRECT_REF)
4748 {
4749 /* Merge any constancy or volatility into the target type
4750 for the pointer. */
4751
4752 if (pedantic && TREE_CODE (type) == FUNCTION_TYPE
4753 && (constp || volatilep))
4754 pedwarn ("ANSI C forbids const or volatile function types");
4755 if (constp || volatilep)
4756 type = c_build_type_variant (type, constp, volatilep);
4757 constp = 0;
4758 volatilep = 0;
929f3671 4759 size_varies = 0;
51e29401
RS
4760
4761 type = build_pointer_type (type);
4762
4763 /* Process a list of type modifier keywords
4764 (such as const or volatile) that were given inside the `*'. */
4765
4766 if (TREE_TYPE (declarator))
4767 {
4768 register tree typemodlist;
4769 int erred = 0;
4770 for (typemodlist = TREE_TYPE (declarator); typemodlist;
4771 typemodlist = TREE_CHAIN (typemodlist))
4772 {
4773 if (TREE_VALUE (typemodlist) == ridpointers[(int) RID_CONST])
4774 constp++;
4775 else if (TREE_VALUE (typemodlist) == ridpointers[(int) RID_VOLATILE])
4776 volatilep++;
4777 else if (!erred)
4778 {
4779 erred = 1;
4780 error ("invalid type modifier within pointer declarator");
4781 }
4782 }
4783 if (constp > 1)
47429a02 4784 pedwarn ("duplicate `const'");
51e29401 4785 if (volatilep > 1)
47429a02 4786 pedwarn ("duplicate `volatile'");
51e29401
RS
4787 }
4788
4789 declarator = TREE_OPERAND (declarator, 0);
4790 }
4791 else
4792 abort ();
4793
4794 }
4795
4796 /* Now TYPE has the actual type. */
4797
4798 /* If this is declaring a typedef name, return a TYPE_DECL. */
4799
4800 if (specbits & (1 << (int) RID_TYPEDEF))
4801 {
4802 tree decl;
4803 /* Note that the grammar rejects storage classes
4804 in typenames, fields or parameters */
4805 if (pedantic && TREE_CODE (type) == FUNCTION_TYPE
4806 && (constp || volatilep))
4807 pedwarn ("ANSI C forbids const or volatile function types");
4808 if (constp || volatilep)
4809 type = c_build_type_variant (type, constp, volatilep);
51e29401
RS
4810 decl = build_decl (TYPE_DECL, declarator, type);
4811 if ((specbits & (1 << (int) RID_SIGNED))
4812 || (typedef_decl && C_TYPEDEF_EXPLICITLY_SIGNED (typedef_decl)))
4813 C_TYPEDEF_EXPLICITLY_SIGNED (decl) = 1;
e6f379d0 4814 pop_obstacks ();
51e29401
RS
4815 return decl;
4816 }
4817
4818 /* Detect the case of an array type of unspecified size
4819 which came, as such, direct from a typedef name.
4820 We must copy the type, so that each identifier gets
4821 a distinct type, so that each identifier's size can be
4822 controlled separately by its own initializer. */
4823
4824 if (type != 0 && typedef_type != 0
4825 && TYPE_MAIN_VARIANT (type) == TYPE_MAIN_VARIANT (typedef_type)
4826 && TREE_CODE (type) == ARRAY_TYPE && TYPE_DOMAIN (type) == 0)
4827 {
4828 type = build_array_type (TREE_TYPE (type), 0);
929f3671 4829 if (size_varies)
51e29401
RS
4830 C_TYPE_VARIABLE_SIZE (type) = 1;
4831 }
4832
4833 /* If this is a type name (such as, in a cast or sizeof),
4834 compute the type and return it now. */
4835
4836 if (decl_context == TYPENAME)
4837 {
4838 /* Note that the grammar rejects storage classes
4839 in typenames, fields or parameters */
4840 if (pedantic && TREE_CODE (type) == FUNCTION_TYPE
4841 && (constp || volatilep))
4842 pedwarn ("ANSI C forbids const or volatile function types");
4843 if (constp || volatilep)
4844 type = c_build_type_variant (type, constp, volatilep);
4845 pop_obstacks ();
4846 return type;
4847 }
4848
61df2ee2
RS
4849 /* Aside from typedefs and type names (handle above),
4850 `void' at top level (not within pointer)
4851 is allowed only in public variables.
51e29401
RS
4852 We don't complain about parms either, but that is because
4853 a better error message can be made later. */
4854
61df2ee2
RS
4855 if (TYPE_MAIN_VARIANT (type) == void_type_node && decl_context != PARM
4856 && ! ((decl_context != FIELD && TREE_CODE (type) != FUNCTION_TYPE)
4857 && ((specbits & (1 << (int) RID_EXTERN))
4858 || (current_binding_level == global_binding_level
4859 && !(specbits
4860 & ((1 << (int) RID_STATIC) | (1 << (int) RID_REGISTER)))))))
51e29401 4861 {
c40f7b33 4862 error ("variable or field `%s' declared void", name);
51e29401
RS
4863 type = integer_type_node;
4864 }
4865
4866 /* Now create the decl, which may be a VAR_DECL, a PARM_DECL
4867 or a FUNCTION_DECL, depending on DECL_CONTEXT and TYPE. */
4868
4869 {
4870 register tree decl;
4871
4872 if (decl_context == PARM)
4873 {
4874 tree type_as_written = type;
90d56da8 4875 tree main_type;
51e29401
RS
4876
4877 /* A parameter declared as an array of T is really a pointer to T.
4878 One declared as a function is really a pointer to a function. */
4879
4880 if (TREE_CODE (type) == ARRAY_TYPE)
4881 {
4882 /* Transfer const-ness of array into that of type pointed to. */
eaf2e788
RS
4883 type = TREE_TYPE (type);
4884 if (constp || volatilep)
4885 type = c_build_type_variant (type, constp, volatilep);
4886 type = build_pointer_type (type);
51e29401 4887 volatilep = constp = 0;
929f3671 4888 size_varies = 0;
51e29401
RS
4889 }
4890 else if (TREE_CODE (type) == FUNCTION_TYPE)
4891 {
4892 if (pedantic && (constp || volatilep))
4893 pedwarn ("ANSI C forbids const or volatile function types");
eaf2e788
RS
4894 if (constp || volatilep)
4895 type = c_build_type_variant (type, constp, volatilep);
4896 type = build_pointer_type (type);
51e29401
RS
4897 volatilep = constp = 0;
4898 }
4899
51e29401 4900 decl = build_decl (PARM_DECL, declarator, type);
929f3671 4901 if (size_varies)
51e29401
RS
4902 C_DECL_VARIABLE_SIZE (decl) = 1;
4903
4904 /* Compute the type actually passed in the parmlist,
4905 for the case where there is no prototype.
4906 (For example, shorts and chars are passed as ints.)
4907 When there is a prototype, this is overridden later. */
4908
4909 DECL_ARG_TYPE (decl) = type;
f537a5c5
RS
4910 main_type = (type == error_mark_node
4911 ? error_mark_node
4912 : TYPE_MAIN_VARIANT (type));
90d56da8 4913 if (main_type == float_type_node)
51e29401 4914 DECL_ARG_TYPE (decl) = double_type_node;
13d39dbc 4915 /* Don't use TYPE_PRECISION to decide whether to promote,
8eebb258
RS
4916 because we should convert short if it's the same size as int,
4917 but we should not convert long if it's the same size as int. */
f537a5c5
RS
4918 else if (TREE_CODE (main_type) != ERROR_MARK
4919 && C_PROMOTING_INTEGER_TYPE_P (main_type))
8eebb258
RS
4920 {
4921 if (TYPE_PRECISION (type) == TYPE_PRECISION (integer_type_node)
4922 && TREE_UNSIGNED (type))
4923 DECL_ARG_TYPE (decl) = unsigned_type_node;
4924 else
4925 DECL_ARG_TYPE (decl) = integer_type_node;
4926 }
51e29401
RS
4927
4928 DECL_ARG_TYPE_AS_WRITTEN (decl) = type_as_written;
4929 }
4930 else if (decl_context == FIELD)
4931 {
4932 /* Structure field. It may not be a function. */
4933
4934 if (TREE_CODE (type) == FUNCTION_TYPE)
4935 {
c40f7b33 4936 error ("field `%s' declared as a function", name);
51e29401
RS
4937 type = build_pointer_type (type);
4938 }
4939 else if (TREE_CODE (type) != ERROR_MARK && TYPE_SIZE (type) == 0)
4940 {
c40f7b33 4941 error ("field `%s' has incomplete type", name);
51e29401
RS
4942 type = error_mark_node;
4943 }
4944 /* Move type qualifiers down to element of an array. */
4945 if (TREE_CODE (type) == ARRAY_TYPE && (constp || volatilep))
4946 {
4947 type = build_array_type (c_build_type_variant (TREE_TYPE (type),
4948 constp, volatilep),
4949 TYPE_DOMAIN (type));
4950#if 0 /* Leave the field const or volatile as well. */
4951 constp = volatilep = 0;
4952#endif
4953 }
4954 decl = build_decl (FIELD_DECL, declarator, type);
929f3671 4955 if (size_varies)
51e29401
RS
4956 C_DECL_VARIABLE_SIZE (decl) = 1;
4957 }
4958 else if (TREE_CODE (type) == FUNCTION_TYPE)
4959 {
fd0b8fce
JW
4960 /* Every function declaration is "external"
4961 except for those which are inside a function body
4962 in which `auto' is used.
4963 That is a case not specified by ANSI C,
4964 and we use it for forward declarations for nested functions. */
4965 int extern_ref = (!(specbits & (1 << (int) RID_AUTO))
4966 || current_binding_level == global_binding_level);
4967
51e29401
RS
4968 if (specbits & (1 << (int) RID_AUTO)
4969 && (pedantic || current_binding_level == global_binding_level))
c40f7b33 4970 pedwarn ("invalid storage class for function `%s'", name);
51e29401 4971 if (specbits & (1 << (int) RID_REGISTER))
c40f7b33 4972 error ("invalid storage class for function `%s'", name);
51e29401
RS
4973 /* Function declaration not at top level.
4974 Storage classes other than `extern' are not allowed
4975 and `extern' makes no difference. */
4976 if (current_binding_level != global_binding_level
4977 && (specbits & ((1 << (int) RID_STATIC) | (1 << (int) RID_INLINE)))
4978 && pedantic)
c40f7b33 4979 pedwarn ("invalid storage class for function `%s'", name);
fd0b8fce
JW
4980
4981 /* If this is a block level extern, it must live past the end
4982 of the function so that we can check it against other
4983 extern declarations (IDENTIFIER_LIMBO_VALUE). */
4984 if (extern_ref && allocation_temporary_p ())
4985 end_temporary_allocation ();
4986
51e29401 4987 decl = build_decl (FUNCTION_DECL, declarator, type);
4b4e3407 4988 decl = build_decl_attribute_variant (decl, decl_machine_attr);
51e29401 4989
7a0347ff
RS
4990 if (pedantic && (constp || volatilep)
4991 && ! DECL_IN_SYSTEM_HEADER (decl))
51e29401
RS
4992 pedwarn ("ANSI C forbids const or volatile functions");
4993
61df2ee2
RS
4994 if (volatilep
4995 && TREE_TYPE (TREE_TYPE (decl)) != void_type_node)
11433f42 4996 warning ("`noreturn' function returns non-void value");
61df2ee2 4997
fd0b8fce 4998 if (extern_ref)
1394aabd 4999 DECL_EXTERNAL (decl) = 1;
51e29401
RS
5000 /* Record absence of global scope for `static' or `auto'. */
5001 TREE_PUBLIC (decl)
5002 = !(specbits & ((1 << (int) RID_STATIC) | (1 << (int) RID_AUTO)));
c40f7b33 5003
51e29401
RS
5004 /* Record presence of `inline', if it is reasonable. */
5005 if (inlinep)
5006 {
5007 tree last = tree_last (TYPE_ARG_TYPES (type));
5008
5009 if (! strcmp (IDENTIFIER_POINTER (declarator), "main"))
5010 warning ("cannot inline function `main'");
5fe86b8b
RS
5011 else if (last && (TYPE_MAIN_VARIANT (TREE_VALUE (last))
5012 != void_type_node))
51e29401
RS
5013 warning ("inline declaration ignored for function with `...'");
5014 else
5015 /* Assume that otherwise the function can be inlined. */
1394aabd 5016 DECL_INLINE (decl) = 1;
51e29401
RS
5017
5018 if (specbits & (1 << (int) RID_EXTERN))
5019 current_extern_inline = 1;
5020 }
5021 }
5022 else
5023 {
5024 /* It's a variable. */
fd0b8fce
JW
5025 /* An uninitialized decl with `extern' is a reference. */
5026 int extern_ref = !initialized && (specbits & (1 << (int) RID_EXTERN));
51e29401
RS
5027
5028 /* Move type qualifiers down to element of an array. */
5029 if (TREE_CODE (type) == ARRAY_TYPE && (constp || volatilep))
5030 {
5031 type = build_array_type (c_build_type_variant (TREE_TYPE (type),
5032 constp, volatilep),
5033 TYPE_DOMAIN (type));
5034#if 0 /* Leave the variable const or volatile as well. */
5035 constp = volatilep = 0;
5036#endif
5037 }
5038
fd0b8fce
JW
5039 /* If this is a block level extern, it must live past the end
5040 of the function so that we can check it against other
5041 extern declarations (IDENTIFIER_LIMBO_VALUE). */
5042 if (extern_ref && allocation_temporary_p ())
5043 end_temporary_allocation ();
5044
51e29401 5045 decl = build_decl (VAR_DECL, declarator, type);
929f3671 5046 if (size_varies)
51e29401
RS
5047 C_DECL_VARIABLE_SIZE (decl) = 1;
5048
5049 if (inlinep)
5050 pedwarn_with_decl (decl, "variable `%s' declared `inline'");
5051
fd0b8fce 5052 DECL_EXTERNAL (decl) = extern_ref;
ee534ebf
RS
5053 /* At top level, the presence of a `static' or `register' storage
5054 class specifier, or the absence of all storage class specifiers
5055 makes this declaration a definition (perhaps tentative). Also,
5056 the absence of both `static' and `register' makes it public. */
51e29401
RS
5057 if (current_binding_level == global_binding_level)
5058 {
ee534ebf
RS
5059 TREE_PUBLIC (decl)
5060 = !(specbits
5061 & ((1 << (int) RID_STATIC) | (1 << (int) RID_REGISTER)));
1394aabd 5062 TREE_STATIC (decl) = ! DECL_EXTERNAL (decl);
51e29401
RS
5063 }
5064 /* Not at top level, only `static' makes a static definition. */
5065 else
5066 {
5067 TREE_STATIC (decl) = (specbits & (1 << (int) RID_STATIC)) != 0;
1394aabd 5068 TREE_PUBLIC (decl) = DECL_EXTERNAL (decl);
51e29401 5069 }
519d591f
RS
5070
5071 if (specbits & 1 << (int) RID_ITERATOR)
5072 ITERATOR_P (decl) = 1;
51e29401
RS
5073 }
5074
5075 /* Record `register' declaration for warnings on &
5076 and in case doing stupid register allocation. */
5077
5078 if (specbits & (1 << (int) RID_REGISTER))
1394aabd 5079 DECL_REGISTER (decl) = 1;
51e29401
RS
5080
5081 /* Record constancy and volatility. */
5082
5083 if (constp)
5084 TREE_READONLY (decl) = 1;
5085 if (volatilep)
5086 {
5087 TREE_SIDE_EFFECTS (decl) = 1;
5088 TREE_THIS_VOLATILE (decl) = 1;
5089 }
5090 /* If a type has volatile components, it should be stored in memory.
5091 Otherwise, the fact that those components are volatile
5092 will be ignored, and would even crash the compiler. */
5093 if (C_TYPE_FIELDS_VOLATILE (TREE_TYPE (decl)))
5094 mark_addressable (decl);
5095
5096 pop_obstacks ();
5097
5098 return decl;
5099 }
5100}
5101\f
51e29401
RS
5102/* Decode the parameter-list info for a function type or function definition.
5103 The argument is the value returned by `get_parm_info' (or made in parse.y
5104 if there is an identifier list instead of a parameter decl list).
5105 These two functions are separate because when a function returns
5106 or receives functions then each is called multiple times but the order
5107 of calls is different. The last call to `grokparms' is always the one
5108 that contains the formal parameter names of a function definition.
5109
5110 Store in `last_function_parms' a chain of the decls of parms.
5111 Also store in `last_function_parm_tags' a chain of the struct, union,
5112 and enum tags declared among the parms.
5113
5114 Return a list of arg types to use in the FUNCTION_TYPE for this function.
5115
5116 FUNCDEF_FLAG is nonzero for a function definition, 0 for
5117 a mere declaration. A nonempty identifier-list gets an error message
5118 when FUNCDEF_FLAG is zero. */
5119
5120static tree
5121grokparms (parms_info, funcdef_flag)
5122 tree parms_info;
5123 int funcdef_flag;
5124{
5125 tree first_parm = TREE_CHAIN (parms_info);
5126
5127 last_function_parms = TREE_PURPOSE (parms_info);
5128 last_function_parm_tags = TREE_VALUE (parms_info);
5129
27f427f8
RS
5130 if (warn_strict_prototypes && first_parm == 0 && !funcdef_flag
5131 && !in_system_header)
51e29401
RS
5132 warning ("function declaration isn't a prototype");
5133
5134 if (first_parm != 0
5135 && TREE_CODE (TREE_VALUE (first_parm)) == IDENTIFIER_NODE)
5136 {
5137 if (! funcdef_flag)
5138 pedwarn ("parameter names (without types) in function declaration");
5139
5140 last_function_parms = first_parm;
5141 return 0;
5142 }
5143 else
5144 {
5145 tree parm;
5146 tree typelt;
5147 /* We no longer test FUNCDEF_FLAG.
5148 If the arg types are incomplete in a declaration,
5149 they must include undefined tags.
5150 These tags can never be defined in the scope of the declaration,
5151 so the types can never be completed,
5152 and no call can be compiled successfully. */
5153#if 0
5154 /* In a fcn definition, arg types must be complete. */
5155 if (funcdef_flag)
5156#endif
5157 for (parm = last_function_parms, typelt = first_parm;
5158 parm;
5159 parm = TREE_CHAIN (parm))
5160 /* Skip over any enumeration constants declared here. */
5161 if (TREE_CODE (parm) == PARM_DECL)
5162 {
5163 /* Barf if the parameter itself has an incomplete type. */
5164 tree type = TREE_VALUE (typelt);
5165 if (TYPE_SIZE (type) == 0)
5166 {
5167 if (funcdef_flag && DECL_NAME (parm) != 0)
5168 error ("parameter `%s' has incomplete type",
5169 IDENTIFIER_POINTER (DECL_NAME (parm)));
5170 else
5171 warning ("parameter has incomplete type");
5172 if (funcdef_flag)
5173 {
5174 TREE_VALUE (typelt) = error_mark_node;
5175 TREE_TYPE (parm) = error_mark_node;
5176 }
5177 }
5178#if 0 /* This has been replaced by parm_tags_warning
5179 which uses a more accurate criterion for what to warn about. */
5180 else
5181 {
5182 /* Now warn if is a pointer to an incomplete type. */
5183 while (TREE_CODE (type) == POINTER_TYPE
5184 || TREE_CODE (type) == REFERENCE_TYPE)
5185 type = TREE_TYPE (type);
5186 type = TYPE_MAIN_VARIANT (type);
5187 if (TYPE_SIZE (type) == 0)
5188 {
5189 if (DECL_NAME (parm) != 0)
5190 warning ("parameter `%s' points to incomplete type",
5191 IDENTIFIER_POINTER (DECL_NAME (parm)));
5192 else
5193 warning ("parameter points to incomplete type");
5194 }
5195 }
5196#endif
5197 typelt = TREE_CHAIN (typelt);
5198 }
5199
023de292 5200 /* Allocate the list of types the way we allocate a type. */
c47851dd 5201 if (first_parm && ! TREE_PERMANENT (first_parm))
023de292
RS
5202 {
5203 /* Construct a copy of the list of types
5204 on the saveable obstack. */
5205 tree result = NULL;
5206 for (typelt = first_parm; typelt; typelt = TREE_CHAIN (typelt))
5207 result = saveable_tree_cons (NULL_TREE, TREE_VALUE (typelt),
5208 result);
5209 return nreverse (result);
5210 }
5211 else
5212 /* The list we have is permanent already. */
5213 return first_parm;
51e29401
RS
5214 }
5215}
5216
5217
5218/* Return a tree_list node with info on a parameter list just parsed.
5219 The TREE_PURPOSE is a chain of decls of those parms.
5220 The TREE_VALUE is a list of structure, union and enum tags defined.
5221 The TREE_CHAIN is a list of argument types to go in the FUNCTION_TYPE.
5222 This tree_list node is later fed to `grokparms'.
5223
5224 VOID_AT_END nonzero means append `void' to the end of the type-list.
5225 Zero means the parmlist ended with an ellipsis so don't append `void'. */
5226
5227tree
5228get_parm_info (void_at_end)
5229 int void_at_end;
5230{
5231 register tree decl, t;
5232 register tree types = 0;
5233 int erred = 0;
5234 tree tags = gettags ();
5235 tree parms = getdecls ();
5236 tree new_parms = 0;
5237 tree order = current_binding_level->parm_order;
5238
5239 /* Just `void' (and no ellipsis) is special. There are really no parms. */
5240 if (void_at_end && parms != 0
5241 && TREE_CHAIN (parms) == 0
5fe86b8b 5242 && TYPE_MAIN_VARIANT (TREE_TYPE (parms)) == void_type_node
51e29401
RS
5243 && DECL_NAME (parms) == 0)
5244 {
5245 parms = NULL_TREE;
5246 storedecls (NULL_TREE);
5247 return saveable_tree_cons (NULL_TREE, NULL_TREE,
5248 saveable_tree_cons (NULL_TREE, void_type_node, NULL_TREE));
5249 }
5250
fc3ffe83
RK
5251 /* Extract enumerator values and other non-parms declared with the parms.
5252 Likewise any forward parm decls that didn't have real parm decls. */
51e29401
RS
5253 for (decl = parms; decl; )
5254 {
5255 tree next = TREE_CHAIN (decl);
5256
e38e5ba8 5257 if (TREE_CODE (decl) != PARM_DECL)
fc3ffe83 5258 {
fc3ffe83
RK
5259 TREE_CHAIN (decl) = new_parms;
5260 new_parms = decl;
5261 }
e38e5ba8 5262 else if (TREE_ASM_WRITTEN (decl))
51e29401 5263 {
e38e5ba8 5264 error_with_decl (decl, "parameter `%s' has just a forward declaration");
51e29401
RS
5265 TREE_CHAIN (decl) = new_parms;
5266 new_parms = decl;
5267 }
5268 decl = next;
5269 }
5270
5271 /* Put the parm decls back in the order they were in in the parm list. */
5272 for (t = order; t; t = TREE_CHAIN (t))
5273 {
5274 if (TREE_CHAIN (t))
5275 TREE_CHAIN (TREE_VALUE (t)) = TREE_VALUE (TREE_CHAIN (t));
5276 else
5277 TREE_CHAIN (TREE_VALUE (t)) = 0;
5278 }
5279
5280 new_parms = chainon (order ? nreverse (TREE_VALUE (order)) : 0,
5281 new_parms);
5282
5283 /* Store the parmlist in the binding level since the old one
5284 is no longer a valid list. (We have changed the chain pointers.) */
5285 storedecls (new_parms);
5286
5287 for (decl = new_parms; decl; decl = TREE_CHAIN (decl))
5288 /* There may also be declarations for enumerators if an enumeration
5289 type is declared among the parms. Ignore them here. */
5290 if (TREE_CODE (decl) == PARM_DECL)
5291 {
5292 /* Since there is a prototype,
5293 args are passed in their declared types. */
5294 tree type = TREE_TYPE (decl);
5295 DECL_ARG_TYPE (decl) = type;
5296#ifdef PROMOTE_PROTOTYPES
fd48df3e
RK
5297 if ((TREE_CODE (type) == INTEGER_TYPE
5298 || TREE_CODE (type) == ENUMERAL_TYPE)
51e29401
RS
5299 && TYPE_PRECISION (type) < TYPE_PRECISION (integer_type_node))
5300 DECL_ARG_TYPE (decl) = integer_type_node;
5301#endif
5302
5303 types = saveable_tree_cons (NULL_TREE, TREE_TYPE (decl), types);
5fe86b8b 5304 if (TYPE_MAIN_VARIANT (TREE_VALUE (types)) == void_type_node && ! erred
51e29401
RS
5305 && DECL_NAME (decl) == 0)
5306 {
5307 error ("`void' in parameter list must be the entire list");
5308 erred = 1;
5309 }
5310 }
5311
5312 if (void_at_end)
5313 return saveable_tree_cons (new_parms, tags,
5314 nreverse (saveable_tree_cons (NULL_TREE, void_type_node, types)));
5315
5316 return saveable_tree_cons (new_parms, tags, nreverse (types));
5317}
5318
5319/* At end of parameter list, warn about any struct, union or enum tags
5320 defined within. Do so because these types cannot ever become complete. */
5321
5322void
5323parmlist_tags_warning ()
5324{
5325 tree elt;
5326 static int already;
5327
5328 for (elt = current_binding_level->tags; elt; elt = TREE_CHAIN (elt))
5329 {
5330 enum tree_code code = TREE_CODE (TREE_VALUE (elt));
27301b30
RS
5331 /* An anonymous union parm type is meaningful as a GNU extension.
5332 So don't warn for that. */
5333 if (code == UNION_TYPE && !pedantic)
5334 continue;
c138f328
RS
5335 if (TREE_PURPOSE (elt) != 0)
5336 warning ("`%s %s' declared inside parameter list",
5337 (code == RECORD_TYPE ? "struct"
5338 : code == UNION_TYPE ? "union"
5339 : "enum"),
5340 IDENTIFIER_POINTER (TREE_PURPOSE (elt)));
5341 else
5342 warning ("anonymous %s declared inside parameter list",
5343 (code == RECORD_TYPE ? "struct"
5344 : code == UNION_TYPE ? "union"
5345 : "enum"));
5346
51e29401
RS
5347 if (! already)
5348 {
5349 warning ("its scope is only this definition or declaration,");
5350 warning ("which is probably not what you want.");
5351 already = 1;
5352 }
5353 }
5354}
5355\f
5356/* Get the struct, enum or union (CODE says which) with tag NAME.
5357 Define the tag as a forward-reference if it is not defined. */
5358
5359tree
5360xref_tag (code, name)
5361 enum tree_code code;
5362 tree name;
5363{
5364 int temporary = allocation_temporary_p ();
5365
5366 /* If a cross reference is requested, look up the type
5367 already defined for this tag and return it. */
5368
5369 register tree ref = lookup_tag (code, name, current_binding_level, 0);
5370 /* Even if this is the wrong type of tag, return what we found.
5371 There will be an error message anyway, from pending_xref_error.
5372 If we create an empty xref just for an invalid use of the type,
929f3671 5373 the main result is to create lots of superfluous error messages. */
51e29401
RS
5374 if (ref)
5375 return ref;
5376
5377 push_obstacks_nochange ();
5378
5379 if (current_binding_level == global_binding_level && temporary)
5380 end_temporary_allocation ();
5381
5382 /* If no such tag is yet defined, create a forward-reference node
5383 and record it as the "definition".
5384 When a real declaration of this type is found,
5385 the forward-reference will be altered into a real type. */
5386
5387 ref = make_node (code);
5388 if (code == ENUMERAL_TYPE)
5389 {
5390 /* (In ANSI, Enums can be referred to only if already defined.) */
5391 if (pedantic)
5392 pedwarn ("ANSI C forbids forward references to `enum' types");
5393 /* Give the type a default layout like unsigned int
5394 to avoid crashing if it does not get defined. */
5395 TYPE_MODE (ref) = TYPE_MODE (unsigned_type_node);
5396 TYPE_ALIGN (ref) = TYPE_ALIGN (unsigned_type_node);
5397 TREE_UNSIGNED (ref) = 1;
5398 TYPE_PRECISION (ref) = TYPE_PRECISION (unsigned_type_node);
5399 TYPE_MIN_VALUE (ref) = TYPE_MIN_VALUE (unsigned_type_node);
5400 TYPE_MAX_VALUE (ref) = TYPE_MAX_VALUE (unsigned_type_node);
5401 }
5402
5403 pushtag (name, ref);
5404
5405 pop_obstacks ();
5406
5407 return ref;
5408}
5409\f
5410/* Make sure that the tag NAME is defined *in the current binding level*
5411 at least as a forward reference.
7a0347ff
RS
5412 CODE says which kind of tag NAME ought to be.
5413
5414 We also do a push_obstacks_nochange
5415 whose matching pop is in finish_struct. */
51e29401
RS
5416
5417tree
5418start_struct (code, name)
5419 enum tree_code code;
5420 tree name;
5421{
5422 /* If there is already a tag defined at this binding level
5423 (as a forward reference), just return it. */
5424
5425 register tree ref = 0;
5426
7a0347ff
RS
5427 push_obstacks_nochange ();
5428 if (current_binding_level == global_binding_level)
5429 end_temporary_allocation ();
5430
51e29401
RS
5431 if (name != 0)
5432 ref = lookup_tag (code, name, current_binding_level, 1);
5433 if (ref && TREE_CODE (ref) == code)
5434 {
5435 C_TYPE_BEING_DEFINED (ref) = 1;
5436 if (TYPE_FIELDS (ref))
5437 error ((code == UNION_TYPE ? "redefinition of `union %s'"
5438 : "redefinition of `struct %s'"),
5439 IDENTIFIER_POINTER (name));
5440
5441 return ref;
5442 }
5443
5444 /* Otherwise create a forward-reference just so the tag is in scope. */
5445
5446 ref = make_node (code);
5447 pushtag (name, ref);
5448 C_TYPE_BEING_DEFINED (ref) = 1;
02eb6e90 5449 TYPE_PACKED (ref) = flag_pack_struct;
51e29401
RS
5450 return ref;
5451}
5452
5453/* Process the specs, declarator (NULL if omitted) and width (NULL if omitted)
5454 of a structure component, returning a FIELD_DECL node.
5455 WIDTH is non-NULL for bit fields only, and is an INTEGER_CST node.
5456
5457 This is done during the parsing of the struct declaration.
5458 The FIELD_DECL nodes are chained together and the lot of them
5459 are ultimately passed to `build_struct' to make the RECORD_TYPE node. */
5460
5461tree
5462grokfield (filename, line, declarator, declspecs, width)
5463 char *filename;
5464 int line;
5465 tree declarator, declspecs, width;
5466{
5467 tree value;
5468
5469 /* The corresponding pop_obstacks is in finish_decl. */
5470 push_obstacks_nochange ();
5471
5472 value = grokdeclarator (declarator, declspecs, width ? BITFIELD : FIELD, 0);
5473
8d9bfdc5 5474 finish_decl (value, NULL_TREE, NULL_TREE);
51e29401
RS
5475 DECL_INITIAL (value) = width;
5476
abe31bf8 5477 maybe_objc_check_decl (value);
51e29401
RS
5478 return value;
5479}
5480\f
5481/* Function to help qsort sort FIELD_DECLs by name order. */
5482
5483static int
5484field_decl_cmp (x, y)
5485 tree *x, *y;
5486{
c3fac866
RK
5487 if (DECL_NAME (*x) == DECL_NAME (*y))
5488 return 0;
5489 if (DECL_NAME (*x) == NULL)
5490 return -1;
5491 if (DECL_NAME (*y) == NULL)
5492 return 1;
5493 if (DECL_NAME (*x) < DECL_NAME (*y))
5494 return -1;
5495 return 1;
51e29401
RS
5496}
5497
5498/* Fill in the fields of a RECORD_TYPE or UNION_TYPE node, T.
7a0347ff 5499 FIELDLIST is a chain of FIELD_DECL nodes for the fields.
10861e9a 5500 ATTRIBUTES are attributes to be applied to the structure.
7a0347ff
RS
5501
5502 We also do a pop_obstacks to match the push in start_struct. */
51e29401
RS
5503
5504tree
10861e9a
RK
5505finish_struct (t, fieldlist, attributes)
5506 tree t;
5507 tree fieldlist;
5508 tree attributes;
51e29401
RS
5509{
5510 register tree x;
5511 int old_momentary;
5512 int toplevel = global_binding_level == current_binding_level;
5513
5514 /* If this type was previously laid out as a forward reference,
5515 make sure we lay it out again. */
5516
5517 TYPE_SIZE (t) = 0;
5518
10861e9a
RK
5519 decl_attributes (t, attributes, NULL_TREE);
5520
51e29401
RS
5521 /* Nameless union parm types are useful as GCC extension. */
5522 if (! (TREE_CODE (t) == UNION_TYPE && TYPE_NAME (t) == 0) && !pedantic)
5523 /* Otherwise, warn about any struct or union def. in parmlist. */
5524 if (in_parm_level_p ())
5525 {
5526 if (pedantic)
5527 pedwarn ((TREE_CODE (t) == UNION_TYPE ? "union defined inside parms"
5528 : "structure defined inside parms"));
f3c2c111 5529 else if (! flag_traditional)
51e29401
RS
5530 warning ((TREE_CODE (t) == UNION_TYPE ? "union defined inside parms"
5531 : "structure defined inside parms"));
5532 }
5533
5534 old_momentary = suspend_momentary ();
5535
9590fa72
RK
5536 if (pedantic)
5537 {
5538 for (x = fieldlist; x; x = TREE_CHAIN (x))
5539 if (DECL_NAME (x) != 0)
5540 break;
5541
5542 if (x == 0)
5543 pedwarn ("%s has no %smembers",
5544 (TREE_CODE (t) == UNION_TYPE ? "union" : "structure"),
5545 (fieldlist ? "named " : ""));
5546 }
51e29401
RS
5547
5548 /* Install struct as DECL_CONTEXT of each field decl.
5549 Also process specified field sizes.
77f934bb 5550 Set DECL_FIELD_SIZE to the specified size, or 0 if none specified.
51e29401
RS
5551 The specified size is found in the DECL_INITIAL.
5552 Store 0 there, except for ": 0" fields (so we can find them
5553 and delete them, below). */
5554
5555 for (x = fieldlist; x; x = TREE_CHAIN (x))
5556 {
5557 DECL_CONTEXT (x) = t;
5be1df77 5558 DECL_PACKED (x) |= TYPE_PACKED (t);
77f934bb 5559 DECL_FIELD_SIZE (x) = 0;
51e29401
RS
5560
5561 /* If any field is const, the structure type is pseudo-const. */
5562 if (TREE_READONLY (x))
5563 C_TYPE_FIELDS_READONLY (t) = 1;
5564 else
5565 {
5566 /* A field that is pseudo-const makes the structure likewise. */
5567 tree t1 = TREE_TYPE (x);
5568 while (TREE_CODE (t1) == ARRAY_TYPE)
5569 t1 = TREE_TYPE (t1);
5570 if ((TREE_CODE (t1) == RECORD_TYPE || TREE_CODE (t1) == UNION_TYPE)
5571 && C_TYPE_FIELDS_READONLY (t1))
5572 C_TYPE_FIELDS_READONLY (t) = 1;
5573 }
5574
5575 /* Any field that is volatile means variables of this type must be
5576 treated in some ways as volatile. */
5577 if (TREE_THIS_VOLATILE (x))
5578 C_TYPE_FIELDS_VOLATILE (t) = 1;
5579
5580 /* Any field of nominal variable size implies structure is too. */
5581 if (C_DECL_VARIABLE_SIZE (x))
5582 C_TYPE_VARIABLE_SIZE (t) = 1;
5583
8d7bbe5f
RS
5584 /* Detect invalid nested redefinition. */
5585 if (TREE_TYPE (x) == t)
5586 error ("nested redefinition of `%s'",
5587 IDENTIFIER_POINTER (TYPE_NAME (t)));
5588
51e29401 5589 /* Detect invalid bit-field size. */
07c5ab55
RS
5590 if (DECL_INITIAL (x))
5591 STRIP_NOPS (DECL_INITIAL (x));
90374cc2 5592 if (DECL_INITIAL (x))
e681c5a1
RS
5593 {
5594 if (TREE_CODE (DECL_INITIAL (x)) == INTEGER_CST)
5595 constant_expression_warning (DECL_INITIAL (x));
5596 else
5597 {
5598 error_with_decl (x, "bit-field `%s' width not an integer constant");
5599 DECL_INITIAL (x) = NULL;
5600 }
5601 }
51e29401
RS
5602
5603 /* Detect invalid bit-field type. */
5604 if (DECL_INITIAL (x)
5605 && TREE_CODE (TREE_TYPE (x)) != INTEGER_TYPE
5606 && TREE_CODE (TREE_TYPE (x)) != ENUMERAL_TYPE)
5607 {
5608 error_with_decl (x, "bit-field `%s' has invalid type");
5609 DECL_INITIAL (x) = NULL;
5610 }
5611 if (DECL_INITIAL (x) && pedantic
5612 && TYPE_MAIN_VARIANT (TREE_TYPE (x)) != integer_type_node
61df2ee2
RS
5613 && TYPE_MAIN_VARIANT (TREE_TYPE (x)) != unsigned_type_node
5614 /* Accept an enum that's equivalent to int or unsigned int. */
5615 && !(TREE_CODE (TREE_TYPE (x)) == ENUMERAL_TYPE
5616 && (TYPE_PRECISION (TREE_TYPE (x))
5617 == TYPE_PRECISION (integer_type_node))))
51e29401
RS
5618 pedwarn_with_decl (x, "bit-field `%s' type invalid in ANSI C");
5619
5620 /* Detect and ignore out of range field width. */
5621 if (DECL_INITIAL (x))
5622 {
2d724389 5623 unsigned HOST_WIDE_INT width = TREE_INT_CST_LOW (DECL_INITIAL (x));
51e29401 5624
6aa10371 5625 if (tree_int_cst_sgn (DECL_INITIAL (x)) < 0)
51e29401
RS
5626 {
5627 DECL_INITIAL (x) = NULL;
5628 error_with_decl (x, "negative width in bit-field `%s'");
5629 }
2d724389
RS
5630 else if (TREE_INT_CST_HIGH (DECL_INITIAL (x)) != 0
5631 || width > TYPE_PRECISION (TREE_TYPE (x)))
51e29401 5632 {
51e29401 5633 DECL_INITIAL (x) = NULL;
2d724389 5634 pedwarn_with_decl (x, "width of `%s' exceeds its type");
51e29401 5635 }
2d724389 5636 else if (width == 0 && DECL_NAME (x) != 0)
51e29401 5637 {
2d724389 5638 error_with_decl (x, "zero width for bit-field `%s'");
51e29401 5639 DECL_INITIAL (x) = NULL;
51e29401
RS
5640 }
5641 }
5642
5643 /* Process valid field width. */
5644 if (DECL_INITIAL (x))
5645 {
5646 register int width = TREE_INT_CST_LOW (DECL_INITIAL (x));
5647
ed244fc2
RK
5648 if (TREE_CODE (TREE_TYPE (x)) == ENUMERAL_TYPE
5649 && (width < min_precision (TYPE_MIN_VALUE (TREE_TYPE (x)),
5650 TREE_UNSIGNED (TREE_TYPE (x)))
5651 || width < min_precision (TYPE_MAX_VALUE (TREE_TYPE (x)),
5652 TREE_UNSIGNED (TREE_TYPE (x)))))
5653 warning_with_decl (x, "`%s' is narrower than values of its type");
5654
77f934bb 5655 DECL_FIELD_SIZE (x) = width;
64d60f91 5656 DECL_BIT_FIELD (x) = DECL_C_BIT_FIELD (x) = 1;
51e29401
RS
5657 DECL_INITIAL (x) = NULL;
5658
5659 if (width == 0)
5660 {
5661 /* field size 0 => force desired amount of alignment. */
5662#ifdef EMPTY_FIELD_BOUNDARY
5663 DECL_ALIGN (x) = MAX (DECL_ALIGN (x), EMPTY_FIELD_BOUNDARY);
5664#endif
5665#ifdef PCC_BITFIELD_TYPE_MATTERS
5666 DECL_ALIGN (x) = MAX (DECL_ALIGN (x),
5667 TYPE_ALIGN (TREE_TYPE (x)));
5668#endif
5669 }
5670 }
34322499 5671 else if (TREE_TYPE (x) != error_mark_node)
ec2343c4
MM
5672 {
5673 int min_align = (DECL_PACKED (x) ? BITS_PER_UNIT
5674 : TYPE_ALIGN (TREE_TYPE (x)));
5675 /* Non-bit-fields are aligned for their type, except packed
5676 fields which require only BITS_PER_UNIT alignment. */
5677 DECL_ALIGN (x) = MAX (DECL_ALIGN (x), min_align);
5678 }
51e29401
RS
5679 }
5680
5681 /* Now DECL_INITIAL is null on all members. */
5682
5683 /* Delete all duplicate fields from the fieldlist */
5684 for (x = fieldlist; x && TREE_CHAIN (x);)
5685 /* Anonymous fields aren't duplicates. */
5686 if (DECL_NAME (TREE_CHAIN (x)) == 0)
5687 x = TREE_CHAIN (x);
5688 else
5689 {
5690 register tree y = fieldlist;
5691
5692 while (1)
5693 {
5694 if (DECL_NAME (y) == DECL_NAME (TREE_CHAIN (x)))
5695 break;
5696 if (y == x)
5697 break;
5698 y = TREE_CHAIN (y);
5699 }
5700 if (DECL_NAME (y) == DECL_NAME (TREE_CHAIN (x)))
5701 {
5702 error_with_decl (TREE_CHAIN (x), "duplicate member `%s'");
5703 TREE_CHAIN (x) = TREE_CHAIN (TREE_CHAIN (x));
5704 }
5705 else x = TREE_CHAIN (x);
5706 }
5707
5708 /* Now we have the nearly final fieldlist. Record it,
5709 then lay out the structure or union (including the fields). */
5710
5711 TYPE_FIELDS (t) = fieldlist;
5712
5713 layout_type (t);
5714
5715 /* Delete all zero-width bit-fields from the front of the fieldlist */
5716 while (fieldlist
5717 && DECL_INITIAL (fieldlist))
5718 fieldlist = TREE_CHAIN (fieldlist);
5719 /* Delete all such members from the rest of the fieldlist */
5720 for (x = fieldlist; x;)
5721 {
5722 if (TREE_CHAIN (x) && DECL_INITIAL (TREE_CHAIN (x)))
5723 TREE_CHAIN (x) = TREE_CHAIN (TREE_CHAIN (x));
5724 else x = TREE_CHAIN (x);
5725 }
5726
5727 /* Now we have the truly final field list.
5728 Store it in this type and in the variants. */
5729
5730 TYPE_FIELDS (t) = fieldlist;
5731
5732 /* If there are lots of fields, sort so we can look through them fast.
5733 We arbitrarily consider 16 or more elts to be "a lot". */
5734 {
5735 int len = 0;
5736
5737 for (x = fieldlist; x; x = TREE_CHAIN (x))
5738 {
5739 if (len > 15)
5740 break;
5741 len += 1;
5742 }
5743 if (len > 15)
5744 {
5745 tree *field_array;
5746 char *space;
5747
5748 len += list_length (x);
5749 /* Use the same allocation policy here that make_node uses, to
5750 ensure that this lives as long as the rest of the struct decl.
5751 All decls in an inline function need to be saved. */
5752 if (allocation_temporary_p ())
5753 space = savealloc (sizeof (struct lang_type) + len * sizeof (tree));
5754 else
5755 space = oballoc (sizeof (struct lang_type) + len * sizeof (tree));
5756
5757 TYPE_LANG_SPECIFIC (t) = (struct lang_type *) space;
5758 TYPE_LANG_SPECIFIC (t)->len = len;
5759
5760 field_array = &TYPE_LANG_SPECIFIC (t)->elts[0];
5761 len = 0;
5762 for (x = fieldlist; x; x = TREE_CHAIN (x))
5763 field_array[len++] = x;
5764
5765 qsort (field_array, len, sizeof (tree), field_decl_cmp);
5766 }
5767 }
5768
5769 for (x = TYPE_MAIN_VARIANT (t); x; x = TYPE_NEXT_VARIANT (x))
5770 {
5771 TYPE_FIELDS (x) = TYPE_FIELDS (t);
5772 TYPE_LANG_SPECIFIC (x) = TYPE_LANG_SPECIFIC (t);
5773 TYPE_ALIGN (x) = TYPE_ALIGN (t);
5774 }
5775
1604422c
RK
5776 /* If this was supposed to be a transparent union, but we can't
5777 make it one, warn and turn off the flag. */
5778 if (TREE_CODE (t) == UNION_TYPE
5779 && TYPE_TRANSPARENT_UNION (t)
5780 && TYPE_MODE (t) != DECL_MODE (TYPE_FIELDS (t)))
5781 {
5782 TYPE_TRANSPARENT_UNION (t) = 0;
d787aad9 5783 warning ("union cannot be made transparent");
1604422c
RK
5784 }
5785
51e29401
RS
5786 /* If this structure or union completes the type of any previous
5787 variable declaration, lay it out and output its rtl. */
5788
5789 if (current_binding_level->n_incomplete != 0)
5790 {
5791 tree decl;
5792 for (decl = current_binding_level->names; decl; decl = TREE_CHAIN (decl))
5793 {
5794 if (TREE_TYPE (decl) == t
5795 && TREE_CODE (decl) != TYPE_DECL)
5796 {
5797 layout_decl (decl, 0);
5798 /* This is a no-op in c-lang.c or something real in objc-actions.c. */
5799 maybe_objc_check_decl (decl);
8d9bfdc5 5800 rest_of_decl_compilation (decl, NULL_PTR, toplevel, 0);
51e29401
RS
5801 if (! toplevel)
5802 expand_decl (decl);
5803 --current_binding_level->n_incomplete;
5804 }
5805 else if (TYPE_SIZE (TREE_TYPE (decl)) == 0
5806 && TREE_CODE (TREE_TYPE (decl)) == ARRAY_TYPE)
5807 {
5808 tree element = TREE_TYPE (decl);
5809 while (TREE_CODE (element) == ARRAY_TYPE)
5810 element = TREE_TYPE (element);
5811 if (element == t)
5812 layout_array_type (TREE_TYPE (decl));
5813 }
5814 }
5815 }
5816
5817 resume_momentary (old_momentary);
5818
5819 /* Finish debugging output for this type. */
5820 rest_of_type_compilation (t, toplevel);
5821
7a0347ff
RS
5822 /* The matching push is in start_struct. */
5823 pop_obstacks ();
5824
51e29401
RS
5825 return t;
5826}
5827
5828/* Lay out the type T, and its element type, and so on. */
5829
5830static void
5831layout_array_type (t)
5832 tree t;
5833{
5834 if (TREE_CODE (TREE_TYPE (t)) == ARRAY_TYPE)
5835 layout_array_type (TREE_TYPE (t));
5836 layout_type (t);
5837}
5838\f
5839/* Begin compiling the definition of an enumeration type.
5840 NAME is its name (or null if anonymous).
5841 Returns the type object, as yet incomplete.
5842 Also records info about it so that build_enumerator
5843 may be used to declare the individual values as they are read. */
5844
5845tree
5846start_enum (name)
5847 tree name;
5848{
5849 register tree enumtype = 0;
5850
5851 /* If this is the real definition for a previous forward reference,
5852 fill in the contents in the same object that used to be the
5853 forward reference. */
5854
5855 if (name != 0)
5856 enumtype = lookup_tag (ENUMERAL_TYPE, name, current_binding_level, 1);
5857
7a0347ff
RS
5858 /* The corresponding pop_obstacks is in finish_enum. */
5859 push_obstacks_nochange ();
5860 /* If these symbols and types are global, make them permanent. */
5861 if (current_binding_level == global_binding_level)
5862 end_temporary_allocation ();
5863
51e29401
RS
5864 if (enumtype == 0 || TREE_CODE (enumtype) != ENUMERAL_TYPE)
5865 {
5866 enumtype = make_node (ENUMERAL_TYPE);
5867 pushtag (name, enumtype);
5868 }
5869
5870 C_TYPE_BEING_DEFINED (enumtype) = 1;
5871
5872 if (TYPE_VALUES (enumtype) != 0)
5873 {
5874 /* This enum is a named one that has been declared already. */
5875 error ("redeclaration of `enum %s'", IDENTIFIER_POINTER (name));
5876
5877 /* Completely replace its old definition.
5878 The old enumerators remain defined, however. */
5879 TYPE_VALUES (enumtype) = 0;
5880 }
5881
5882 enum_next_value = integer_zero_node;
93e3ba4f 5883 enum_overflow = 0;
51e29401 5884
02eb6e90
RK
5885 if (flag_short_enums)
5886 TYPE_PACKED (enumtype) = 1;
5887
51e29401
RS
5888 return enumtype;
5889}
5890
5891/* After processing and defining all the values of an enumeration type,
5892 install their decls in the enumeration type and finish it off.
10861e9a
RK
5893 ENUMTYPE is the type object, VALUES a list of decl-value pairs,
5894 and ATTRIBUTES are the specified attributes.
51e29401
RS
5895 Returns ENUMTYPE. */
5896
5897tree
10861e9a
RK
5898finish_enum (enumtype, values, attributes)
5899 tree enumtype;
5900 tree values;
5901 tree attributes;
51e29401 5902{
fbe23ee7 5903 register tree pair, tem;
51e29401 5904 tree minnode = 0, maxnode = 0;
de953b38 5905 int lowprec, highprec, precision;
51e29401
RS
5906 int toplevel = global_binding_level == current_binding_level;
5907
5908 if (in_parm_level_p ())
5909 warning ("enum defined inside parms");
5910
10861e9a
RK
5911 decl_attributes (enumtype, attributes, NULL_TREE);
5912
51e29401
RS
5913 /* Calculate the maximum value of any enumerator in this type. */
5914
59116212
RK
5915 if (values == error_mark_node)
5916 minnode = maxnode = integer_zero_node;
5917 else
5918 for (pair = values; pair; pair = TREE_CHAIN (pair))
5919 {
5920 tree value = TREE_VALUE (pair);
5921 if (pair == values)
5922 minnode = maxnode = TREE_VALUE (pair);
5923 else
5924 {
5925 if (tree_int_cst_lt (maxnode, value))
5926 maxnode = value;
5927 if (tree_int_cst_lt (value, minnode))
5928 minnode = value;
5929 }
5930 }
51e29401
RS
5931
5932 TYPE_MIN_VALUE (enumtype) = minnode;
5933 TYPE_MAX_VALUE (enumtype) = maxnode;
5934
de953b38
RK
5935 /* An enum can have some negative values; then it is signed. */
5936 TREE_UNSIGNED (enumtype) = tree_int_cst_sgn (minnode) >= 0;
51e29401 5937
de953b38 5938 /* Determine the precision this type needs. */
51e29401 5939
de953b38
RK
5940 lowprec = min_precision (minnode, TREE_UNSIGNED (enumtype));
5941 highprec = min_precision (maxnode, TREE_UNSIGNED (enumtype));
5942 precision = MAX (lowprec, highprec);
51e29401 5943
02eb6e90 5944 if (TYPE_PACKED (enumtype) || precision > TYPE_PRECISION (integer_type_node))
f500253d
RK
5945 {
5946 tree narrowest = type_for_size (precision, 1);
5947 if (narrowest == 0)
5948 {
5949 warning ("enumeration values exceed range of largest integer");
5950 narrowest = long_long_integer_type_node;
5951 }
5952
5953 TYPE_PRECISION (enumtype) = TYPE_PRECISION (narrowest);
5954 }
51e29401
RS
5955 else
5956 TYPE_PRECISION (enumtype) = TYPE_PRECISION (integer_type_node);
5957
5958 TYPE_SIZE (enumtype) = 0;
5959 layout_type (enumtype);
5960
59116212 5961 if (values != error_mark_node)
75b46437 5962 {
59116212
RK
5963 /* Change the type of the enumerators to be the enum type.
5964 Formerly this was done only for enums that fit in an int,
5965 but the comment said it was done only for enums wider than int.
5966 It seems necessary to do this for wide enums,
5967 and best not to change what's done for ordinary narrower ones. */
5968 for (pair = values; pair; pair = TREE_CHAIN (pair))
5969 {
5970 TREE_TYPE (TREE_PURPOSE (pair)) = enumtype;
5971 DECL_SIZE (TREE_PURPOSE (pair)) = TYPE_SIZE (enumtype);
5972 if (TREE_CODE (TREE_PURPOSE (pair)) != FUNCTION_DECL)
5973 DECL_ALIGN (TREE_PURPOSE (pair)) = TYPE_ALIGN (enumtype);
5974 }
51e29401 5975
59116212
RK
5976 /* Replace the decl nodes in VALUES with their names. */
5977 for (pair = values; pair; pair = TREE_CHAIN (pair))
5978 TREE_PURPOSE (pair) = DECL_NAME (TREE_PURPOSE (pair));
51e29401 5979
59116212
RK
5980 TYPE_VALUES (enumtype) = values;
5981 }
51e29401 5982
fbe23ee7
RS
5983 /* Fix up all variant types of this enum type. */
5984 for (tem = TYPE_MAIN_VARIANT (enumtype); tem; tem = TYPE_NEXT_VARIANT (tem))
5985 {
5986 TYPE_VALUES (tem) = TYPE_VALUES (enumtype);
5987 TYPE_MIN_VALUE (tem) = TYPE_MIN_VALUE (enumtype);
5988 TYPE_MAX_VALUE (tem) = TYPE_MAX_VALUE (enumtype);
5989 TYPE_SIZE (tem) = TYPE_SIZE (enumtype);
5990 TYPE_MODE (tem) = TYPE_MODE (enumtype);
5991 TYPE_PRECISION (tem) = TYPE_PRECISION (enumtype);
5992 TYPE_ALIGN (tem) = TYPE_ALIGN (enumtype);
5993 TREE_UNSIGNED (tem) = TREE_UNSIGNED (enumtype);
5994 }
5995
51e29401
RS
5996 /* Finish debugging output for this type. */
5997 rest_of_type_compilation (enumtype, toplevel);
5998
7a0347ff
RS
5999 /* This matches a push in start_enum. */
6000 pop_obstacks ();
6001
51e29401
RS
6002 return enumtype;
6003}
6004
6005/* Build and install a CONST_DECL for one value of the
6006 current enumeration type (one that was begun with start_enum).
6007 Return a tree-list containing the CONST_DECL and its value.
6008 Assignment of sequential values by default is handled here. */
6009
6010tree
6011build_enumerator (name, value)
6012 tree name, value;
6013{
75b46437 6014 register tree decl, type;
51e29401
RS
6015
6016 /* Validate and default VALUE. */
6017
6018 /* Remove no-op casts from the value. */
cd7a1451 6019 if (value)
874a7be1 6020 STRIP_TYPE_NOPS (value);
51e29401 6021
90374cc2 6022 if (value != 0)
e681c5a1
RS
6023 {
6024 if (TREE_CODE (value) == INTEGER_CST)
25a1019f
RK
6025 {
6026 value = default_conversion (value);
6027 constant_expression_warning (value);
6028 }
e681c5a1
RS
6029 else
6030 {
6031 error ("enumerator value for `%s' not integer constant",
6032 IDENTIFIER_POINTER (name));
6033 value = 0;
6034 }
6035 }
51e29401
RS
6036
6037 /* Default based on previous value. */
6038 /* It should no longer be possible to have NON_LVALUE_EXPR
6039 in the default. */
6040 if (value == 0)
93e3ba4f
RS
6041 {
6042 value = enum_next_value;
6043 if (enum_overflow)
6044 error ("overflow in enumeration values");
6045 }
51e29401
RS
6046
6047 if (pedantic && ! int_fits_type_p (value, integer_type_node))
6048 {
6049 pedwarn ("ANSI C restricts enumerator values to range of `int'");
6050 value = integer_zero_node;
6051 }
6052
6053 /* Set basis for default for next value. */
6054 enum_next_value = build_binary_op (PLUS_EXPR, value, integer_one_node, 0);
93e3ba4f 6055 enum_overflow = tree_int_cst_lt (enum_next_value, value);
51e29401
RS
6056
6057 /* Now create a declaration for the enum value name. */
6058
75b46437
RS
6059 type = TREE_TYPE (value);
6060 type = type_for_size (MAX (TYPE_PRECISION (type),
6061 TYPE_PRECISION (integer_type_node)),
6062 ((flag_traditional
6063 || TYPE_PRECISION (type) >= TYPE_PRECISION (integer_type_node))
6064 && TREE_UNSIGNED (type)));
6065
6066 decl = build_decl (CONST_DECL, name, type);
51e29401 6067 DECL_INITIAL (decl) = value;
75b46437 6068 TREE_TYPE (value) = type;
51e29401
RS
6069 pushdecl (decl);
6070
8d9bfdc5 6071 return saveable_tree_cons (decl, value, NULL_TREE);
51e29401
RS
6072}
6073\f
6074/* Create the FUNCTION_DECL for a function definition.
5730cf69
RK
6075 DECLSPECS, DECLARATOR, PREFIX_ATTRIBUTES and ATTRIBUTES are the parts of
6076 the declaration; they describe the function's name and the type it returns,
51e29401
RS
6077 but twisted together in a fashion that parallels the syntax of C.
6078
6079 This function creates a binding context for the function body
6080 as well as setting up the FUNCTION_DECL in current_function_decl.
6081
6082 Returns 1 on success. If the DECLARATOR is not suitable for a function
6083 (it defines a datum instead), we return 0, which tells
6084 yyparse to report a parse error.
6085
6086 NESTED is nonzero for a function nested within another function. */
6087
6088int
5730cf69
RK
6089start_function (declspecs, declarator, prefix_attributes, attributes, nested)
6090 tree declarator, declspecs, prefix_attributes, attributes;
51e29401
RS
6091 int nested;
6092{
6093 tree decl1, old_decl;
6094 tree restype;
5415b705 6095 int old_immediate_size_expand = immediate_size_expand;
51e29401 6096
0f41302f 6097 current_function_returns_value = 0; /* Assume, until we see it does. */
51e29401
RS
6098 current_function_returns_null = 0;
6099 warn_about_return_type = 0;
6100 current_extern_inline = 0;
6101 c_function_varargs = 0;
6102 named_labels = 0;
6103 shadowed_labels = 0;
6104
5415b705
RK
6105 /* Don't expand any sizes in the return type of the function. */
6106 immediate_size_expand = 0;
6107
51e29401
RS
6108 decl1 = grokdeclarator (declarator, declspecs, FUNCDEF, 1);
6109
6110 /* If the declarator is not suitable for a function definition,
6111 cause a syntax error. */
6112 if (decl1 == 0)
6113 return 0;
6114
5730cf69 6115 decl_attributes (decl1, prefix_attributes, attributes);
7665dfd4 6116
51e29401
RS
6117 announce_function (decl1);
6118
6119 if (TYPE_SIZE (TREE_TYPE (TREE_TYPE (decl1))) == 0)
6120 {
6121 error ("return-type is an incomplete type");
6122 /* Make it return void instead. */
6123 TREE_TYPE (decl1)
6124 = build_function_type (void_type_node,
6125 TYPE_ARG_TYPES (TREE_TYPE (decl1)));
6126 }
6127
6128 if (warn_about_return_type)
6129 warning ("return-type defaults to `int'");
6130
6131 /* Save the parm names or decls from this function's declarator
6132 where store_parm_decls will find them. */
6133 current_function_parms = last_function_parms;
6134 current_function_parm_tags = last_function_parm_tags;
6135
6136 /* Make the init_value nonzero so pushdecl knows this is not tentative.
6137 error_mark_node is replaced below (in poplevel) with the BLOCK. */
6138 DECL_INITIAL (decl1) = error_mark_node;
6139
6140 /* If this definition isn't a prototype and we had a prototype declaration
6141 before, copy the arg type info from that prototype.
6142 But not if what we had before was a builtin function. */
6143 old_decl = lookup_name_current_level (DECL_NAME (decl1));
6144 if (old_decl != 0 && TREE_CODE (TREE_TYPE (old_decl)) == FUNCTION_TYPE
6145 && !DECL_BUILT_IN (old_decl)
fa7d8b92
RK
6146 && (TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (decl1)))
6147 == TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (old_decl))))
51e29401 6148 && TYPE_ARG_TYPES (TREE_TYPE (decl1)) == 0)
50a9145c
JW
6149 {
6150 TREE_TYPE (decl1) = TREE_TYPE (old_decl);
6151 current_function_prototype_file = DECL_SOURCE_FILE (old_decl);
6152 current_function_prototype_line = DECL_SOURCE_LINE (old_decl);
6153 }
51e29401 6154
6fc7c517
JW
6155 /* If there is no explicit declaration, look for any out-of-scope implicit
6156 declarations. */
6157 if (old_decl == 0)
6158 old_decl = IDENTIFIER_IMPLICIT_DECL (DECL_NAME (decl1));
6159
51e29401
RS
6160 /* Optionally warn of old-fashioned def with no previous prototype. */
6161 if (warn_strict_prototypes
6162 && TYPE_ARG_TYPES (TREE_TYPE (decl1)) == 0
6163 && !(old_decl != 0 && TYPE_ARG_TYPES (TREE_TYPE (old_decl)) != 0))
6164 warning ("function declaration isn't a prototype");
6165 /* Optionally warn of any global def with no previous prototype. */
6166 else if (warn_missing_prototypes
6167 && TREE_PUBLIC (decl1)
39ab948e
RS
6168 && !(old_decl != 0 && TYPE_ARG_TYPES (TREE_TYPE (old_decl)) != 0)
6169 && strcmp ("main", IDENTIFIER_POINTER (DECL_NAME (decl1))))
51e29401
RS
6170 warning_with_decl (decl1, "no previous prototype for `%s'");
6171 /* Optionally warn of any def with no previous prototype
6172 if the function has already been used. */
6173 else if (warn_missing_prototypes
6174 && old_decl != 0 && TREE_USED (old_decl)
6fc7c517 6175 && TYPE_ARG_TYPES (TREE_TYPE (old_decl)) == 0)
1474fe46
RK
6176 warning_with_decl (decl1,
6177 "`%s' was used with no prototype before its definition");
6178 /* Optionally warn of any global def with no previous declaration. */
6179 else if (warn_missing_declarations
6180 && TREE_PUBLIC (decl1)
6181 && old_decl == 0
6182 && strcmp ("main", IDENTIFIER_POINTER (DECL_NAME (decl1))))
6183 warning_with_decl (decl1, "no previous declaration for `%s'");
6184 /* Optionally warn of any def with no previous declaration
6185 if the function has already been used. */
6186 else if (warn_missing_declarations
6fc7c517
JW
6187 && old_decl != 0 && TREE_USED (old_decl)
6188 && old_decl == IDENTIFIER_IMPLICIT_DECL (DECL_NAME (decl1)))
1474fe46
RK
6189 warning_with_decl (decl1,
6190 "`%s' was used with no declaration before its definition");
51e29401
RS
6191
6192 /* This is a definition, not a reference.
1394aabd 6193 So normally clear DECL_EXTERNAL.
51e29401 6194 However, `extern inline' acts like a declaration
1394aabd
RS
6195 except for defining how to inline. So set DECL_EXTERNAL in that case. */
6196 DECL_EXTERNAL (decl1) = current_extern_inline;
51e29401
RS
6197
6198 /* This function exists in static storage.
6199 (This does not mean `static' in the C sense!) */
6200 TREE_STATIC (decl1) = 1;
6201
6202 /* A nested function is not global. */
6203 if (current_function_decl != 0)
6204 TREE_PUBLIC (decl1) = 0;
6205
6206 /* Record the decl so that the function name is defined.
6207 If we already have a decl for this name, and it is a FUNCTION_DECL,
6208 use the old decl. */
6209
6210 current_function_decl = pushdecl (decl1);
6211
6212 pushlevel (0);
6213 declare_parm_level (1);
6214 current_binding_level->subblocks_tag_transparent = 1;
6215
6216 make_function_rtl (current_function_decl);
6217
6218 restype = TREE_TYPE (TREE_TYPE (current_function_decl));
6219 /* Promote the value to int before returning it. */
24bc4c7f 6220 if (C_PROMOTING_INTEGER_TYPE_P (restype))
42dfa47f
RS
6221 {
6222 /* It retains unsignedness if traditional
6223 or if not really getting wider. */
6224 if (TREE_UNSIGNED (restype)
6225 && (flag_traditional
6226 || (TYPE_PRECISION (restype)
6227 == TYPE_PRECISION (integer_type_node))))
6228 restype = unsigned_type_node;
6229 else
6230 restype = integer_type_node;
6231 }
8d9bfdc5
RK
6232 DECL_RESULT (current_function_decl)
6233 = build_decl (RESULT_DECL, NULL_TREE, restype);
51e29401
RS
6234
6235 if (!nested)
6236 /* Allocate further tree nodes temporarily during compilation
6237 of this function only. */
6238 temporary_allocation ();
6239
6240 /* If this fcn was already referenced via a block-scope `extern' decl
6241 (or an implicit decl), propagate certain information about the usage. */
6242 if (TREE_ADDRESSABLE (DECL_ASSEMBLER_NAME (current_function_decl)))
6243 TREE_ADDRESSABLE (current_function_decl) = 1;
6244
5415b705
RK
6245 immediate_size_expand = old_immediate_size_expand;
6246
51e29401
RS
6247 return 1;
6248}
6249
6250/* Record that this function is going to be a varargs function.
6251 This is called before store_parm_decls, which is too early
6252 to call mark_varargs directly. */
6253
6254void
6255c_mark_varargs ()
6256{
6257 c_function_varargs = 1;
6258}
6259\f
6260/* Store the parameter declarations into the current function declaration.
6261 This is called after parsing the parameter declarations, before
6262 digesting the body of the function.
6263
6264 For an old-style definition, modify the function's type
6265 to specify at least the number of arguments. */
6266
6267void
6268store_parm_decls ()
6269{
6270 register tree fndecl = current_function_decl;
6271 register tree parm;
6272
6273 /* This is either a chain of PARM_DECLs (if a prototype was used)
6274 or a list of IDENTIFIER_NODEs (for an old-fashioned C definition). */
6275 tree specparms = current_function_parms;
6276
6277 /* This is a list of types declared among parms in a prototype. */
6278 tree parmtags = current_function_parm_tags;
6279
6280 /* This is a chain of PARM_DECLs from old-style parm declarations. */
6281 register tree parmdecls = getdecls ();
6282
6283 /* This is a chain of any other decls that came in among the parm
6284 declarations. If a parm is declared with enum {foo, bar} x;
6285 then CONST_DECLs for foo and bar are put here. */
6286 tree nonparms = 0;
6287
6288 /* Nonzero if this definition is written with a prototype. */
6289 int prototype = 0;
6290
6291 if (specparms != 0 && TREE_CODE (specparms) != TREE_LIST)
6292 {
6293 /* This case is when the function was defined with an ANSI prototype.
6294 The parms already have decls, so we need not do anything here
6295 except record them as in effect
6296 and complain if any redundant old-style parm decls were written. */
6297
6298 register tree next;
6299 tree others = 0;
6300
6301 prototype = 1;
6302
6303 if (parmdecls != 0)
7a0347ff
RS
6304 {
6305 tree decl, link;
6306
6307 error_with_decl (fndecl,
6308 "parm types given both in parmlist and separately");
6309 /* Get rid of the erroneous decls; don't keep them on
6310 the list of parms, since they might not be PARM_DECLs. */
6311 for (decl = current_binding_level->names;
6312 decl; decl = TREE_CHAIN (decl))
6313 if (DECL_NAME (decl))
6314 IDENTIFIER_LOCAL_VALUE (DECL_NAME (decl)) = 0;
6315 for (link = current_binding_level->shadowed;
6316 link; link = TREE_CHAIN (link))
6317 IDENTIFIER_LOCAL_VALUE (TREE_PURPOSE (link)) = TREE_VALUE (link);
6318 current_binding_level->names = 0;
6319 current_binding_level->shadowed = 0;
6320 }
51e29401
RS
6321
6322 specparms = nreverse (specparms);
6323 for (parm = specparms; parm; parm = next)
6324 {
6325 next = TREE_CHAIN (parm);
6326 if (TREE_CODE (parm) == PARM_DECL)
6327 {
6328 if (DECL_NAME (parm) == 0)
6329 error_with_decl (parm, "parameter name omitted");
5fe86b8b 6330 else if (TYPE_MAIN_VARIANT (TREE_TYPE (parm)) == void_type_node)
a4faa7cc
JW
6331 {
6332 error_with_decl (parm, "parameter `%s' declared void");
6333 /* Change the type to error_mark_node so this parameter
6334 will be ignored by assign_parms. */
6335 TREE_TYPE (parm) = error_mark_node;
6336 }
51e29401
RS
6337 pushdecl (parm);
6338 }
6339 else
6340 {
6341 /* If we find an enum constant or a type tag,
6342 put it aside for the moment. */
6343 TREE_CHAIN (parm) = 0;
6344 others = chainon (others, parm);
6345 }
6346 }
6347
6348 /* Get the decls in their original chain order
6349 and record in the function. */
6350 DECL_ARGUMENTS (fndecl) = getdecls ();
6351
6352#if 0
6353 /* If this function takes a variable number of arguments,
6354 add a phony parameter to the end of the parm list,
6355 to represent the position of the first unnamed argument. */
6356 if (TREE_VALUE (tree_last (TYPE_ARG_TYPES (TREE_TYPE (fndecl))))
6357 != void_type_node)
6358 {
6359 tree dummy = build_decl (PARM_DECL, NULL_TREE, void_type_node);
6360 /* Let's hope the address of the unnamed parm
6361 won't depend on its type. */
6362 TREE_TYPE (dummy) = integer_type_node;
6363 DECL_ARG_TYPE (dummy) = integer_type_node;
6364 DECL_ARGUMENTS (fndecl)
6365 = chainon (DECL_ARGUMENTS (fndecl), dummy);
6366 }
6367#endif
6368
6369 /* Now pushdecl the enum constants. */
6370 for (parm = others; parm; parm = next)
6371 {
6372 next = TREE_CHAIN (parm);
6373 if (DECL_NAME (parm) == 0)
6374 ;
5fe86b8b 6375 else if (TYPE_MAIN_VARIANT (TREE_TYPE (parm)) == void_type_node)
51e29401
RS
6376 ;
6377 else if (TREE_CODE (parm) != PARM_DECL)
6378 pushdecl (parm);
6379 }
6380
6381 storetags (chainon (parmtags, gettags ()));
6382 }
6383 else
6384 {
6385 /* SPECPARMS is an identifier list--a chain of TREE_LIST nodes
6386 each with a parm name as the TREE_VALUE.
6387
6388 PARMDECLS is a chain of declarations for parameters.
6389 Warning! It can also contain CONST_DECLs which are not parameters
6390 but are names of enumerators of any enum types
6391 declared among the parameters.
6392
6393 First match each formal parameter name with its declaration.
6394 Associate decls with the names and store the decls
6395 into the TREE_PURPOSE slots. */
6396
6397 for (parm = parmdecls; parm; parm = TREE_CHAIN (parm))
6398 DECL_RESULT (parm) = 0;
6399
6400 for (parm = specparms; parm; parm = TREE_CHAIN (parm))
6401 {
6402 register tree tail, found = NULL;
6403
6404 if (TREE_VALUE (parm) == 0)
6405 {
6406 error_with_decl (fndecl, "parameter name missing from parameter list");
6407 TREE_PURPOSE (parm) = 0;
6408 continue;
6409 }
6410
6411 /* See if any of the parmdecls specifies this parm by name.
6412 Ignore any enumerator decls. */
6413 for (tail = parmdecls; tail; tail = TREE_CHAIN (tail))
6414 if (DECL_NAME (tail) == TREE_VALUE (parm)
6415 && TREE_CODE (tail) == PARM_DECL)
6416 {
6417 found = tail;
6418 break;
6419 }
6420
6421 /* If declaration already marked, we have a duplicate name.
6422 Complain, and don't use this decl twice. */
6423 if (found && DECL_RESULT (found) != 0)
6424 {
6425 error_with_decl (found, "multiple parameters named `%s'");
6426 found = 0;
6427 }
6428
6429 /* If the declaration says "void", complain and ignore it. */
5fe86b8b 6430 if (found && TYPE_MAIN_VARIANT (TREE_TYPE (found)) == void_type_node)
51e29401
RS
6431 {
6432 error_with_decl (found, "parameter `%s' declared void");
6433 TREE_TYPE (found) = integer_type_node;
6434 DECL_ARG_TYPE (found) = integer_type_node;
6435 layout_decl (found, 0);
6436 }
6437
6438 /* Traditionally, a parm declared float is actually a double. */
6439 if (found && flag_traditional
90d56da8 6440 && TYPE_MAIN_VARIANT (TREE_TYPE (found)) == float_type_node)
6d142a10
RS
6441 {
6442 TREE_TYPE (found) = double_type_node;
6443 DECL_ARG_TYPE (found) = double_type_node;
6444 layout_decl (found, 0);
6445 }
51e29401
RS
6446
6447 /* If no declaration found, default to int. */
6448 if (!found)
6449 {
6450 found = build_decl (PARM_DECL, TREE_VALUE (parm),
6451 integer_type_node);
6452 DECL_ARG_TYPE (found) = TREE_TYPE (found);
6453 DECL_SOURCE_LINE (found) = DECL_SOURCE_LINE (fndecl);
6454 DECL_SOURCE_FILE (found) = DECL_SOURCE_FILE (fndecl);
6455 if (extra_warnings)
6456 warning_with_decl (found, "type of `%s' defaults to `int'");
6457 pushdecl (found);
6458 }
6459
6460 TREE_PURPOSE (parm) = found;
6461
6462 /* Mark this decl as "already found" -- see test, above.
6463 It is safe to use DECL_RESULT for this
6464 since it is not used in PARM_DECLs or CONST_DECLs. */
6465 DECL_RESULT (found) = error_mark_node;
6466 }
6467
6468 /* Put anything which is on the parmdecls chain and which is
6469 not a PARM_DECL onto the list NONPARMS. (The types of
6470 non-parm things which might appear on the list include
6471 enumerators and NULL-named TYPE_DECL nodes.) Complain about
6472 any actual PARM_DECLs not matched with any names. */
6473
6474 nonparms = 0;
6475 for (parm = parmdecls; parm; )
6476 {
6477 tree next = TREE_CHAIN (parm);
6478 TREE_CHAIN (parm) = 0;
6479
6480 if (TREE_CODE (parm) != PARM_DECL)
6481 nonparms = chainon (nonparms, parm);
6482 else
6483 {
6484 /* Complain about args with incomplete types. */
6485 if (TYPE_SIZE (TREE_TYPE (parm)) == 0)
6486 {
6487 error_with_decl (parm, "parameter `%s' has incomplete type");
6488 TREE_TYPE (parm) = error_mark_node;
6489 }
6490
6491 if (DECL_RESULT (parm) == 0)
6492 {
6493 error_with_decl (parm,
6494 "declaration for parameter `%s' but no such parameter");
6495 /* Pretend the parameter was not missing.
6496 This gets us to a standard state and minimizes
6497 further error messages. */
6498 specparms
6499 = chainon (specparms,
6500 tree_cons (parm, NULL_TREE, NULL_TREE));
6501 }
6502 }
6503
6504 parm = next;
6505 }
6506
6507 /* Chain the declarations together in the order of the list of names. */
6508 /* Store that chain in the function decl, replacing the list of names. */
6509 parm = specparms;
6510 DECL_ARGUMENTS (fndecl) = 0;
6511 {
6512 register tree last;
6513 for (last = 0; parm; parm = TREE_CHAIN (parm))
6514 if (TREE_PURPOSE (parm))
6515 {
6516 if (last == 0)
6517 DECL_ARGUMENTS (fndecl) = TREE_PURPOSE (parm);
6518 else
6519 TREE_CHAIN (last) = TREE_PURPOSE (parm);
6520 last = TREE_PURPOSE (parm);
6521 TREE_CHAIN (last) = 0;
6522 }
6523 }
6524
6525 /* If there was a previous prototype,
6526 set the DECL_ARG_TYPE of each argument according to
6527 the type previously specified, and report any mismatches. */
6528
6529 if (TYPE_ARG_TYPES (TREE_TYPE (fndecl)))
6530 {
6531 register tree type;
6532 for (parm = DECL_ARGUMENTS (fndecl),
6533 type = TYPE_ARG_TYPES (TREE_TYPE (fndecl));
5fe86b8b
RS
6534 parm || (type && (TYPE_MAIN_VARIANT (TREE_VALUE (type))
6535 != void_type_node));
51e29401
RS
6536 parm = TREE_CHAIN (parm), type = TREE_CHAIN (type))
6537 {
6538 if (parm == 0 || type == 0
5fe86b8b 6539 || TYPE_MAIN_VARIANT (TREE_VALUE (type)) == void_type_node)
51e29401
RS
6540 {
6541 error ("number of arguments doesn't match prototype");
50a9145c
JW
6542 error_with_file_and_line (current_function_prototype_file,
6543 current_function_prototype_line,
6544 "prototype declaration");
51e29401
RS
6545 break;
6546 }
6547 /* Type for passing arg must be consistent
6548 with that declared for the arg. */
ec2343c4 6549 if (! comptypes (DECL_ARG_TYPE (parm), TREE_VALUE (type)))
51e29401 6550 {
b3fc0c98
RS
6551 if (TYPE_MAIN_VARIANT (TREE_TYPE (parm))
6552 == TYPE_MAIN_VARIANT (TREE_VALUE (type)))
51e29401 6553 {
ec2343c4
MM
6554 /* Adjust argument to match prototype. E.g. a previous
6555 `int foo(float);' prototype causes
6556 `int foo(x) float x; {...}' to be treated like
6557 `int foo(float x) {...}'. This is particularly
6558 useful for argument types like uid_t. */
6559 DECL_ARG_TYPE (parm) = TREE_TYPE (parm);
6560#ifdef PROMOTE_PROTOTYPES
fd48df3e
RK
6561 if ((TREE_CODE (TREE_TYPE (parm)) == INTEGER_TYPE
6562 || TREE_CODE (TREE_TYPE (parm)) == ENUMERAL_TYPE)
ec2343c4
MM
6563 && TYPE_PRECISION (TREE_TYPE (parm))
6564 < TYPE_PRECISION (integer_type_node))
6565 DECL_ARG_TYPE (parm) = integer_type_node;
6566#endif
6567 if (pedantic)
50a9145c 6568 {
42f00318 6569 pedwarn ("promoted argument `%s' doesn't match prototype",
50a9145c
JW
6570 IDENTIFIER_POINTER (DECL_NAME (parm)));
6571 warning_with_file_and_line
6572 (current_function_prototype_file,
6573 current_function_prototype_line,
6574 "prototype declaration");
6575 }
51e29401 6576 }
ec2343c4
MM
6577 /* If -traditional, allow `int' argument to match
6578 `unsigned' prototype. */
6579 else if (! (flag_traditional
90d56da8
RS
6580 && TYPE_MAIN_VARIANT (TREE_TYPE (parm)) == integer_type_node
6581 && TYPE_MAIN_VARIANT (TREE_VALUE (type)) == unsigned_type_node))
50a9145c
JW
6582 {
6583 error ("argument `%s' doesn't match prototype",
6584 IDENTIFIER_POINTER (DECL_NAME (parm)));
6585 error_with_file_and_line (current_function_prototype_file,
6586 current_function_prototype_line,
6587 "prototype declaration");
6588 }
51e29401
RS
6589 }
6590 }
6591 TYPE_ACTUAL_ARG_TYPES (TREE_TYPE (fndecl)) = 0;
6592 }
6593
6594 /* Otherwise, create a prototype that would match. */
6595
6596 else
6597 {
b8e605ab 6598 tree actual = 0, last = 0, type;
51e29401
RS
6599
6600 for (parm = DECL_ARGUMENTS (fndecl); parm; parm = TREE_CHAIN (parm))
6601 {
8d9bfdc5
RK
6602 type = perm_tree_cons (NULL_TREE, DECL_ARG_TYPE (parm),
6603 NULL_TREE);
51e29401
RS
6604 if (last)
6605 TREE_CHAIN (last) = type;
6606 else
6607 actual = type;
6608 last = type;
6609 }
8d9bfdc5 6610 type = perm_tree_cons (NULL_TREE, void_type_node, NULL_TREE);
51e29401
RS
6611 if (last)
6612 TREE_CHAIN (last) = type;
6613 else
6614 actual = type;
6615
c138f328
RS
6616 /* We are going to assign a new value for the TYPE_ACTUAL_ARG_TYPES
6617 of the type of this function, but we need to avoid having this
6618 affect the types of other similarly-typed functions, so we must
6619 first force the generation of an identical (but separate) type
6620 node for the relevant function type. The new node we create
6621 will be a variant of the main variant of the original function
6622 type. */
6623
929f3671 6624 TREE_TYPE (fndecl) = build_type_copy (TREE_TYPE (fndecl));
c138f328 6625
51e29401
RS
6626 TYPE_ACTUAL_ARG_TYPES (TREE_TYPE (fndecl)) = actual;
6627 }
6628
6629 /* Now store the final chain of decls for the arguments
6630 as the decl-chain of the current lexical scope.
6631 Put the enumerators in as well, at the front so that
6632 DECL_ARGUMENTS is not modified. */
6633
6634 storedecls (chainon (nonparms, DECL_ARGUMENTS (fndecl)));
6635 }
6636
6637 /* Make sure the binding level for the top of the function body
6638 gets a BLOCK if there are any in the function.
6639 Otherwise, the dbx output is wrong. */
6640
6641 keep_next_if_subblocks = 1;
6642
6643 /* ??? This might be an improvement,
6644 but needs to be thought about some more. */
6645#if 0
6646 keep_next_level_flag = 1;
6647#endif
6648
6649 /* Write a record describing this function definition to the prototypes
6650 file (if requested). */
6651
6652 gen_aux_info_record (fndecl, 1, 0, prototype);
6653
6654 /* Initialize the RTL code for the function. */
6655
6656 init_function_start (fndecl, input_filename, lineno);
6657
6658 /* If this is a varargs function, inform function.c. */
6659
6660 if (c_function_varargs)
6661 mark_varargs ();
6662
b032c74c 6663 /* Declare __FUNCTION__ and __PRETTY_FUNCTION__ for this function. */
7da551a2
RS
6664
6665 declare_function_name ();
93e3ba4f 6666
51e29401
RS
6667 /* Set up parameters and prepare for return, for the function. */
6668
6669 expand_function_start (fndecl, 0);
6670
6671 /* If this function is `main', emit a call to `__main'
6672 to run global initializers, etc. */
6673 if (DECL_NAME (fndecl)
6674 && strcmp (IDENTIFIER_POINTER (DECL_NAME (fndecl)), "main") == 0
6675 && DECL_CONTEXT (fndecl) == NULL_TREE)
6676 expand_main_function ();
6677}
6678\f
6679/* SPECPARMS is an identifier list--a chain of TREE_LIST nodes
6680 each with a parm name as the TREE_VALUE. A null pointer as TREE_VALUE
6681 stands for an ellipsis in the identifier list.
6682
6683 PARMLIST is the data returned by get_parm_info for the
6684 parmlist that follows the semicolon.
6685
6686 We return a value of the same sort that get_parm_info returns,
6687 except that it describes the combination of identifiers and parmlist. */
6688
6689tree
6690combine_parm_decls (specparms, parmlist, void_at_end)
6691 tree specparms, parmlist;
6692 int void_at_end;
6693{
6694 register tree fndecl = current_function_decl;
6695 register tree parm;
6696
6697 tree parmdecls = TREE_PURPOSE (parmlist);
6698
6699 /* This is a chain of any other decls that came in among the parm
6700 declarations. They were separated already by get_parm_info,
6701 so we just need to keep them separate. */
6702 tree nonparms = TREE_VALUE (parmlist);
6703
6704 tree types = 0;
6705
6706 for (parm = parmdecls; parm; parm = TREE_CHAIN (parm))
6707 DECL_RESULT (parm) = 0;
6708
6709 for (parm = specparms; parm; parm = TREE_CHAIN (parm))
6710 {
6711 register tree tail, found = NULL;
6712
6713 /* See if any of the parmdecls specifies this parm by name. */
6714 for (tail = parmdecls; tail; tail = TREE_CHAIN (tail))
6715 if (DECL_NAME (tail) == TREE_VALUE (parm))
6716 {
6717 found = tail;
6718 break;
6719 }
6720
6721 /* If declaration already marked, we have a duplicate name.
6722 Complain, and don't use this decl twice. */
6723 if (found && DECL_RESULT (found) != 0)
6724 {
6725 error_with_decl (found, "multiple parameters named `%s'");
6726 found = 0;
6727 }
6728
6729 /* If the declaration says "void", complain and ignore it. */
5fe86b8b 6730 if (found && TYPE_MAIN_VARIANT (TREE_TYPE (found)) == void_type_node)
51e29401
RS
6731 {
6732 error_with_decl (found, "parameter `%s' declared void");
6733 TREE_TYPE (found) = integer_type_node;
6734 DECL_ARG_TYPE (found) = integer_type_node;
6735 layout_decl (found, 0);
6736 }
6737
6738 /* Traditionally, a parm declared float is actually a double. */
6739 if (found && flag_traditional
90d56da8 6740 && TYPE_MAIN_VARIANT (TREE_TYPE (found)) == float_type_node)
6d142a10
RS
6741 {
6742 TREE_TYPE (found) = double_type_node;
6743 DECL_ARG_TYPE (found) = double_type_node;
6744 layout_decl (found, 0);
6745 }
51e29401
RS
6746
6747 /* If no declaration found, default to int. */
6748 if (!found)
6749 {
6750 found = build_decl (PARM_DECL, TREE_VALUE (parm),
6751 integer_type_node);
6752 DECL_ARG_TYPE (found) = TREE_TYPE (found);
6753 DECL_SOURCE_LINE (found) = DECL_SOURCE_LINE (fndecl);
6754 DECL_SOURCE_FILE (found) = DECL_SOURCE_FILE (fndecl);
6b2a374b 6755 error_with_decl (found, "type of parameter `%s' is not declared");
51e29401
RS
6756 pushdecl (found);
6757 }
6758
6759 TREE_PURPOSE (parm) = found;
6760
6761 /* Mark this decl as "already found" -- see test, above.
6762 It is safe to use DECL_RESULT for this
6763 since it is not used in PARM_DECLs or CONST_DECLs. */
6764 DECL_RESULT (found) = error_mark_node;
6765 }
6766
6767 /* Complain about any actual PARM_DECLs not matched with any names. */
6768
6769 for (parm = parmdecls; parm; )
6770 {
6771 tree next = TREE_CHAIN (parm);
6772 TREE_CHAIN (parm) = 0;
6773
6774 /* Complain about args with incomplete types. */
6775 if (TYPE_SIZE (TREE_TYPE (parm)) == 0)
6776 {
6777 error_with_decl (parm, "parameter `%s' has incomplete type");
6778 TREE_TYPE (parm) = error_mark_node;
6779 }
6780
6781 if (DECL_RESULT (parm) == 0)
6782 {
6783 error_with_decl (parm,
6784 "declaration for parameter `%s' but no such parameter");
6785 /* Pretend the parameter was not missing.
6786 This gets us to a standard state and minimizes
6787 further error messages. */
6788 specparms
6789 = chainon (specparms,
6790 tree_cons (parm, NULL_TREE, NULL_TREE));
6791 }
6792
6793 parm = next;
6794 }
6795
6796 /* Chain the declarations together in the order of the list of names.
6797 At the same time, build up a list of their types, in reverse order. */
6798
6799 parm = specparms;
6800 parmdecls = 0;
6801 {
6802 register tree last;
6803 for (last = 0; parm; parm = TREE_CHAIN (parm))
6804 if (TREE_PURPOSE (parm))
6805 {
6806 if (last == 0)
6807 parmdecls = TREE_PURPOSE (parm);
6808 else
6809 TREE_CHAIN (last) = TREE_PURPOSE (parm);
6810 last = TREE_PURPOSE (parm);
6811 TREE_CHAIN (last) = 0;
6812
6813 types = saveable_tree_cons (NULL_TREE, TREE_TYPE (parm), types);
6814 }
6815 }
6816
6817 if (void_at_end)
6818 return saveable_tree_cons (parmdecls, nonparms,
b423779d
RK
6819 nreverse (saveable_tree_cons (NULL_TREE,
6820 void_type_node,
6821 types)));
51e29401
RS
6822
6823 return saveable_tree_cons (parmdecls, nonparms, nreverse (types));
6824}
6825\f
6826/* Finish up a function declaration and compile that function
6827 all the way to assembler language output. The free the storage
6828 for the function definition.
6829
6830 This is called after parsing the body of the function definition.
6831
6832 NESTED is nonzero if the function being finished is nested in another. */
6833
6834void
6835finish_function (nested)
6836 int nested;
6837{
6838 register tree fndecl = current_function_decl;
6839
6840/* TREE_READONLY (fndecl) = 1;
6841 This caused &foo to be of type ptr-to-const-function
6842 which then got a warning when stored in a ptr-to-function variable. */
6843
6844 poplevel (1, 0, 1);
960a2eb1 6845 BLOCK_SUPERCONTEXT (DECL_INITIAL (fndecl)) = fndecl;
51e29401
RS
6846
6847 /* Must mark the RESULT_DECL as being in this function. */
6848
6849 DECL_CONTEXT (DECL_RESULT (fndecl)) = fndecl;
6850
6851 /* Obey `register' declarations if `setjmp' is called in this fn. */
6852 if (flag_traditional && current_function_calls_setjmp)
6853 {
6854 setjmp_protect (DECL_INITIAL (fndecl));
6855 setjmp_protect_args ();
6856 }
6857
51e29401
RS
6858 if (! strcmp (IDENTIFIER_POINTER (DECL_NAME (fndecl)), "main"))
6859 {
90d56da8
RS
6860 if (TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (fndecl)))
6861 != integer_type_node)
cd4aafd5 6862 pedwarn_with_decl (fndecl, "return type of `%s' is not `int'");
8e077183
RS
6863 else
6864 {
cd4aafd5 6865#ifdef DEFAULT_MAIN_RETURN
8e077183
RS
6866 /* Make it so that `main' always returns success by default. */
6867 DEFAULT_MAIN_RETURN;
cd4aafd5 6868#endif
8e077183 6869 }
51e29401 6870 }
51e29401
RS
6871
6872 /* Generate rtl for function exit. */
0e5eedfe 6873 expand_function_end (input_filename, lineno, 0);
51e29401
RS
6874
6875 /* So we can tell if jump_optimize sets it to 1. */
6876 can_reach_end = 0;
6877
6878 /* Run the optimizers and output the assembler code for this function. */
6879 rest_of_compilation (fndecl);
6880
6881 current_function_returns_null |= can_reach_end;
6882
6883 if (TREE_THIS_VOLATILE (fndecl) && current_function_returns_null)
11433f42 6884 warning ("`noreturn' function does return");
42dfa47f 6885 else if (warn_return_type && can_reach_end
51e29401
RS
6886 && TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (fndecl))) != void_type_node)
6887 /* If this function returns non-void and control can drop through,
6888 complain. */
6889 warning ("control reaches end of non-void function");
6890 /* With just -W, complain only if function returns both with
6891 and without a value. */
6892 else if (extra_warnings
6893 && current_function_returns_value && current_function_returns_null)
6894 warning ("this function may return with or without a value");
6895
739d15ab
RK
6896 /* If requested, warn about function definitions where the function will
6897 return a value (usually of some struct or union type) which itself will
6898 take up a lot of stack space. */
6899
6900 if (warn_larger_than && !DECL_EXTERNAL (fndecl) && TREE_TYPE (fndecl))
6901 {
6902 register tree ret_type = TREE_TYPE (TREE_TYPE (fndecl));
6903
6904 if (ret_type)
6905 {
6906 register tree ret_type_size = TYPE_SIZE (ret_type);
6907
6908 if (TREE_CODE (ret_type_size) == INTEGER_CST)
6909 {
6910 unsigned units
6911 = TREE_INT_CST_LOW (ret_type_size) / BITS_PER_UNIT;
6912
6913 if (units > larger_than_size)
6914 warning_with_decl (fndecl,
6915 "size of return value of `%s' is %u bytes",
6916 units);
6917 }
6918 }
6919 }
6920
51e29401
RS
6921 /* Free all the tree nodes making up this function. */
6922 /* Switch back to allocating nodes permanently
6923 until we start another function. */
6924 if (! nested)
3e755d23 6925 permanent_allocation (1);
51e29401
RS
6926
6927 if (DECL_SAVED_INSNS (fndecl) == 0 && ! nested)
6928 {
6929 /* Stop pointing to the local nodes about to be freed. */
6930 /* But DECL_INITIAL must remain nonzero so we know this
6931 was an actual function definition. */
6932 /* For a nested function, this is done in pop_c_function_context. */
708e813b
RS
6933 /* If rest_of_compilation set this to 0, leave it 0. */
6934 if (DECL_INITIAL (fndecl) != 0)
6935 DECL_INITIAL (fndecl) = error_mark_node;
51e29401
RS
6936 DECL_ARGUMENTS (fndecl) = 0;
6937 }
6938
2c5f4139
JM
6939 if (DECL_STATIC_CONSTRUCTOR (fndecl))
6940 {
6941#ifndef ASM_OUTPUT_CONSTRUCTOR
6942 if (! flag_gnu_linker)
6943 static_ctors = perm_tree_cons (NULL_TREE, fndecl, static_ctors);
6944 else
6945#endif
6946 assemble_constructor (IDENTIFIER_POINTER (DECL_NAME (fndecl)));
6947 }
6948 if (DECL_STATIC_DESTRUCTOR (fndecl))
6949 {
6950#ifndef ASM_OUTPUT_DESTRUCTOR
6951 if (! flag_gnu_linker)
6952 static_dtors = perm_tree_cons (NULL_TREE, fndecl, static_dtors);
6953 else
6954#endif
6955 assemble_destructor (IDENTIFIER_POINTER (DECL_NAME (fndecl)));
6956 }
6957
51e29401
RS
6958 if (! nested)
6959 {
6960 /* Let the error reporting routines know that we're outside a
6961 function. For a nested function, this value is used in
6962 pop_c_function_context and then reset via pop_function_context. */
6963 current_function_decl = NULL;
6964 }
6965}
6966\f
6967/* Save and restore the variables in this file and elsewhere
6968 that keep track of the progress of compilation of the current function.
6969 Used for nested functions. */
6970
6971struct c_function
6972{
6973 struct c_function *next;
51e29401
RS
6974 tree named_labels;
6975 tree shadowed_labels;
6976 int returns_value;
6977 int returns_null;
6978 int warn_about_return_type;
6979 int extern_inline;
6980 struct binding_level *binding_level;
6981};
6982
6983struct c_function *c_function_chain;
6984
6985/* Save and reinitialize the variables
6986 used during compilation of a C function. */
6987
6988void
6989push_c_function_context ()
6990{
6991 struct c_function *p
6992 = (struct c_function *) xmalloc (sizeof (struct c_function));
6993
ec2343c4
MM
6994 if (pedantic)
6995 pedwarn ("ANSI C forbids nested functions");
6996
51e29401
RS
6997 push_function_context ();
6998
6999 p->next = c_function_chain;
7000 c_function_chain = p;
7001
51e29401
RS
7002 p->named_labels = named_labels;
7003 p->shadowed_labels = shadowed_labels;
7004 p->returns_value = current_function_returns_value;
7005 p->returns_null = current_function_returns_null;
7006 p->warn_about_return_type = warn_about_return_type;
7007 p->extern_inline = current_extern_inline;
7008 p->binding_level = current_binding_level;
7009}
7010
7011/* Restore the variables used during compilation of a C function. */
7012
7013void
7014pop_c_function_context ()
7015{
7016 struct c_function *p = c_function_chain;
7017 tree link;
7018
7019 /* Bring back all the labels that were shadowed. */
7020 for (link = shadowed_labels; link; link = TREE_CHAIN (link))
7021 if (DECL_NAME (TREE_VALUE (link)) != 0)
7022 IDENTIFIER_LABEL_VALUE (DECL_NAME (TREE_VALUE (link)))
7023 = TREE_VALUE (link);
7024
7025 if (DECL_SAVED_INSNS (current_function_decl) == 0)
7026 {
7027 /* Stop pointing to the local nodes about to be freed. */
7028 /* But DECL_INITIAL must remain nonzero so we know this
7029 was an actual function definition. */
7030 DECL_INITIAL (current_function_decl) = error_mark_node;
7031 DECL_ARGUMENTS (current_function_decl) = 0;
7032 }
7033
7034 pop_function_context ();
7035
7036 c_function_chain = p->next;
7037
51e29401
RS
7038 named_labels = p->named_labels;
7039 shadowed_labels = p->shadowed_labels;
7040 current_function_returns_value = p->returns_value;
7041 current_function_returns_null = p->returns_null;
7042 warn_about_return_type = p->warn_about_return_type;
7043 current_extern_inline = p->extern_inline;
7044 current_binding_level = p->binding_level;
7045
7046 free (p);
7047}
37105beb
JM
7048
7049/* integrate_decl_tree calls this function, but since we don't use the
7050 DECL_LANG_SPECIFIC field, this is a no-op. */
7051
7052void
7053copy_lang_decl (node)
7054 tree node;
7055{
7056}
This page took 1.298865 seconds and 5 git commands to generate.