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