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