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