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