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