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