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