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