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