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