Deleted Added
full compact
c-decl.c (96549) c-decl.c (96557)
1/* Process declarations and variables for C compiler.
2 Copyright (C) 1988, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000,
3 2001, 2002 Free Software Foundation, Inc.
4
5This file is part of GCC.
6
7GCC is free software; you can redistribute it and/or modify it under
8the terms of the GNU General Public License as published by the Free
9Software Foundation; either version 2, or (at your option) any later
10version.
11
12GCC is distributed in the hope that it will be useful, but WITHOUT ANY
13WARRANTY; without even the implied warranty of MERCHANTABILITY or
14FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
15for more details.
16
17You should have received a copy of the GNU General Public License
18along with GCC; see the file COPYING. If not, write to the Free
19Software Foundation, 59 Temple Place - Suite 330, Boston, MA
2002111-1307, USA. */
21
1/* Process declarations and variables for C compiler.
2 Copyright (C) 1988, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000,
3 2001, 2002 Free Software Foundation, Inc.
4
5This file is part of GCC.
6
7GCC is free software; you can redistribute it and/or modify it under
8the terms of the GNU General Public License as published by the Free
9Software Foundation; either version 2, or (at your option) any later
10version.
11
12GCC is distributed in the hope that it will be useful, but WITHOUT ANY
13WARRANTY; without even the implied warranty of MERCHANTABILITY or
14FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
15for more details.
16
17You should have received a copy of the GNU General Public License
18along with GCC; see the file COPYING. If not, write to the Free
19Software Foundation, 59 Temple Place - Suite 330, Boston, MA
2002111-1307, USA. */
21
22/* $FreeBSD: head/contrib/gcc/c-decl.c 96549 2002-05-14 00:30:25Z obrien $ */
22/* $FreeBSD: head/contrib/gcc/c-decl.c 96557 2002-05-14 01:44:02Z obrien $ */
23
24/* Process declarations and symbol lookup for C front end.
25 Also constructs types; the standard scalar types at initialization,
26 and structure, union, array and enum types when they are declared. */
27
28/* ??? not all decl nodes are given the most useful possible
29 line numbers. For example, the CONST_DECLs for enum values. */
30
31#include "config.h"
32#include "system.h"
33#include "intl.h"
34#include "tree.h"
35#include "tree-inline.h"
36#include "rtl.h"
37#include "flags.h"
38#include "function.h"
39#include "output.h"
40#include "expr.h"
41#include "c-tree.h"
42#include "c-lex.h"
43#include "toplev.h"
44#include "ggc.h"
45#include "tm_p.h"
46#include "cpplib.h"
47#include "target.h"
48#include "debug.h"
49#include "timevar.h"
50#include "c-common.h"
51#include "c-pragma.h"
52
53/* In grokdeclarator, distinguish syntactic contexts of declarators. */
54enum decl_context
55{ NORMAL, /* Ordinary declaration */
56 FUNCDEF, /* Function definition */
57 PARM, /* Declaration of parm before function body */
58 FIELD, /* Declaration inside struct or union */
59 BITFIELD, /* Likewise but with specified width */
60 TYPENAME}; /* Typename (inside cast or sizeof) */
61
62
63/* Nonzero if we have seen an invalid cross reference
64 to a struct, union, or enum, but not yet printed the message. */
65
66tree pending_invalid_xref;
67/* File and line to appear in the eventual error message. */
68const char *pending_invalid_xref_file;
69int pending_invalid_xref_line;
70
71/* While defining an enum type, this is 1 plus the last enumerator
72 constant value. Note that will do not have to save this or `enum_overflow'
73 around nested function definition since such a definition could only
74 occur in an enum value expression and we don't use these variables in
75 that case. */
76
77static tree enum_next_value;
78
79/* Nonzero means that there was overflow computing enum_next_value. */
80
81static int enum_overflow;
82
83/* Parsing a function declarator leaves a list of parameter names
84 or a chain or parameter decls here. */
85
86static tree last_function_parms;
87
88/* Parsing a function declarator leaves here a chain of structure
89 and enum types declared in the parmlist. */
90
91static tree last_function_parm_tags;
92
93/* After parsing the declarator that starts a function definition,
94 `start_function' puts here the list of parameter names or chain of decls.
95 `store_parm_decls' finds it here. */
96
97static tree current_function_parms;
98
99/* Similar, for last_function_parm_tags. */
100static tree current_function_parm_tags;
101
102/* Similar, for the file and line that the prototype came from if this is
103 an old-style definition. */
104static const char *current_function_prototype_file;
105static int current_function_prototype_line;
106
107/* The current statement tree. */
108
109static struct stmt_tree_s c_stmt_tree;
110
111/* The current scope statement stack. */
112
113static tree c_scope_stmt_stack;
114
115/* A list (chain of TREE_LIST nodes) of all LABEL_DECLs in the function
116 that have names. Here so we can clear out their names' definitions
117 at the end of the function. */
118
119static tree named_labels;
120
121/* A list of LABEL_DECLs from outer contexts that are currently shadowed. */
122
123static tree shadowed_labels;
124
125/* Nonzero when store_parm_decls is called indicates a varargs function.
126 Value not meaningful after store_parm_decls. */
127
128static int c_function_varargs;
129
130/* Set to 0 at beginning of a function definition, set to 1 if
131 a return statement that specifies a return value is seen. */
132
133int current_function_returns_value;
134
135/* Set to 0 at beginning of a function definition, set to 1 if
136 a return statement with no argument is seen. */
137
138int current_function_returns_null;
139
140/* Set to 0 at beginning of a function definition, set to 1 if
141 a call to a noreturn function is seen. */
142
143int current_function_returns_abnormally;
144
145/* Set to nonzero by `grokdeclarator' for a function
146 whose return type is defaulted, if warnings for this are desired. */
147
148static int warn_about_return_type;
149
150/* Nonzero when starting a function declared `extern inline'. */
151
152static int current_extern_inline;
153
154/* For each binding contour we allocate a binding_level structure
155 * which records the names defined in that contour.
156 * Contours include:
157 * 0) the global one
158 * 1) one for each function definition,
159 * where internal declarations of the parameters appear.
160 * 2) one for each compound statement,
161 * to record its declarations.
162 *
163 * The current meaning of a name can be found by searching the levels from
164 * the current one out to the global one.
165 */
166
167/* Note that the information in the `names' component of the global contour
168 is duplicated in the IDENTIFIER_GLOBAL_VALUEs of all identifiers. */
169
170struct binding_level
171 {
172 /* A chain of _DECL nodes for all variables, constants, functions,
173 and typedef types. These are in the reverse of the order supplied.
174 */
175 tree names;
176
177 /* A list of structure, union and enum definitions,
178 * for looking up tag names.
179 * It is a chain of TREE_LIST nodes, each of whose TREE_PURPOSE is a name,
180 * or NULL_TREE; and whose TREE_VALUE is a RECORD_TYPE, UNION_TYPE,
181 * or ENUMERAL_TYPE node.
182 */
183 tree tags;
184
185 /* For each level, a list of shadowed outer-level local definitions
186 to be restored when this level is popped.
187 Each link is a TREE_LIST whose TREE_PURPOSE is an identifier and
188 whose TREE_VALUE is its old definition (a kind of ..._DECL node). */
189 tree shadowed;
190
191 /* For each level (except not the global one),
192 a chain of BLOCK nodes for all the levels
193 that were entered and exited one level down. */
194 tree blocks;
195
196 /* The BLOCK node for this level, if one has been preallocated.
197 If 0, the BLOCK is allocated (if needed) when the level is popped. */
198 tree this_block;
199
200 /* The binding level which this one is contained in (inherits from). */
201 struct binding_level *level_chain;
202
203 /* Nonzero for the level that holds the parameters of a function. */
204 char parm_flag;
205
206 /* Nonzero if this level "doesn't exist" for tags. */
207 char tag_transparent;
208
209 /* Nonzero if sublevels of this level "don't exist" for tags.
210 This is set in the parm level of a function definition
211 while reading the function body, so that the outermost block
212 of the function body will be tag-transparent. */
213 char subblocks_tag_transparent;
214
215 /* Nonzero means make a BLOCK for this level regardless of all else. */
216 char keep;
217
218 /* Nonzero means make a BLOCK if this level has any subblocks. */
219 char keep_if_subblocks;
220
221 /* Number of decls in `names' that have incomplete
222 structure or union types. */
223 int n_incomplete;
224
225 /* A list of decls giving the (reversed) specified order of parms,
226 not including any forward-decls in the parmlist.
227 This is so we can put the parms in proper order for assign_parms. */
228 tree parm_order;
229 };
230
231#define NULL_BINDING_LEVEL (struct binding_level *) NULL
232
233/* The binding level currently in effect. */
234
235static struct binding_level *current_binding_level;
236
237/* A chain of binding_level structures awaiting reuse. */
238
239static struct binding_level *free_binding_level;
240
241/* The outermost binding level, for names of file scope.
242 This is created when the compiler is started and exists
243 through the entire run. */
244
245static struct binding_level *global_binding_level;
246
247/* Binding level structures are initialized by copying this one. */
248
249static struct binding_level clear_binding_level
250 = {NULL, NULL, NULL, NULL, NULL, NULL_BINDING_LEVEL, 0, 0, 0, 0, 0, 0,
251 NULL};
252
253/* Nonzero means unconditionally make a BLOCK for the next level pushed. */
254
255static int keep_next_level_flag;
256
257/* Nonzero means make a BLOCK for the next level pushed
258 if it has subblocks. */
259
260static int keep_next_if_subblocks;
261
262/* The chain of outer levels of label scopes.
263 This uses the same data structure used for binding levels,
264 but it works differently: each link in the chain records
265 saved values of named_labels and shadowed_labels for
266 a label binding level outside the current one. */
267
268static struct binding_level *label_level_chain;
269
270/* Functions called automatically at the beginning and end of execution. */
271
272tree static_ctors, static_dtors;
273
274/* Forward declarations. */
275
276static struct binding_level * make_binding_level PARAMS ((void));
277static void mark_binding_level PARAMS ((void *));
278static void clear_limbo_values PARAMS ((tree));
279static int duplicate_decls PARAMS ((tree, tree, int));
280static int redeclaration_error_message PARAMS ((tree, tree));
281static void storedecls PARAMS ((tree));
282static void storetags PARAMS ((tree));
283static tree lookup_tag PARAMS ((enum tree_code, tree,
284 struct binding_level *, int));
285static tree lookup_tag_reverse PARAMS ((tree));
286static tree grokdeclarator PARAMS ((tree, tree, enum decl_context,
287 int));
288static tree grokparms PARAMS ((tree, int));
289static void layout_array_type PARAMS ((tree));
290static tree c_make_fname_decl PARAMS ((tree, int));
291static void c_expand_body PARAMS ((tree, int, int));
292static void warn_if_shadowing PARAMS ((tree, tree));
293
294/* C-specific option variables. */
295
296/* Nonzero means allow type mismatches in conditional expressions;
297 just make their values `void'. */
298
299int flag_cond_mismatch;
300
301/* Nonzero means don't recognize the keyword `asm'. */
302
303int flag_no_asm;
304
305/* Nonzero means do some things the same way PCC does. */
306
307int flag_traditional;
308
309/* Nonzero means enable C89 Amendment 1 features. */
310
311int flag_isoc94 = 0;
312
313/* Nonzero means use the ISO C99 dialect of C. */
314
315int flag_isoc99 = 0;
316
317/* Nonzero means allow the BSD kernel printf enhancments. */
318
319int flag_bsd_format = 0;
320
321/* Nonzero means that we have builtin functions, and main is an int */
322
323int flag_hosted = 1;
324
325/* Nonzero means add default format_arg attributes for functions not
326 in ISO C. */
327
328int flag_noniso_default_format_attributes = 1;
329
330/* Nonzero means to allow single precision math even if we're generally
331 being traditional. */
332int flag_allow_single_precision = 0;
333
334/* Nonzero means to treat bitfields as signed unless they say `unsigned'. */
335
336int flag_signed_bitfields = 1;
337int explicit_flag_signed_bitfields = 0;
338
339/* Nonzero means warn about use of implicit int. */
340
341int warn_implicit_int;
342
343/* Nonzero means warn about usage of long long when `-pedantic'. */
344
345int warn_long_long = 1;
346
347/* Nonzero means message about use of implicit function declarations;
348 1 means warning; 2 means error. */
349
350int mesg_implicit_function_declaration = -1;
351
352/* Nonzero means give string constants the type `const char *'
353 to get extra warnings from them. These warnings will be too numerous
354 to be useful, except in thoroughly ANSIfied programs. */
355
356int flag_const_strings;
357
358/* Nonzero means warn about pointer casts that can drop a type qualifier
359 from the pointer target type. */
360
361int warn_cast_qual;
362
363/* Nonzero means warn when casting a function call to a type that does
364 not match the return type (e.g. (float)sqrt() or (anything*)malloc()
365 when there is no previous declaration of sqrt or malloc. */
366
367int warn_bad_function_cast;
368
369/* Warn about functions which might be candidates for format attributes. */
370
371int warn_missing_format_attribute;
372
373/* Warn about traditional constructs whose meanings changed in ANSI C. */
374
375int warn_traditional;
376
377/* Nonzero means warn about sizeof(function) or addition/subtraction
378 of function pointers. */
379
380int warn_pointer_arith;
381
23
24/* Process declarations and symbol lookup for C front end.
25 Also constructs types; the standard scalar types at initialization,
26 and structure, union, array and enum types when they are declared. */
27
28/* ??? not all decl nodes are given the most useful possible
29 line numbers. For example, the CONST_DECLs for enum values. */
30
31#include "config.h"
32#include "system.h"
33#include "intl.h"
34#include "tree.h"
35#include "tree-inline.h"
36#include "rtl.h"
37#include "flags.h"
38#include "function.h"
39#include "output.h"
40#include "expr.h"
41#include "c-tree.h"
42#include "c-lex.h"
43#include "toplev.h"
44#include "ggc.h"
45#include "tm_p.h"
46#include "cpplib.h"
47#include "target.h"
48#include "debug.h"
49#include "timevar.h"
50#include "c-common.h"
51#include "c-pragma.h"
52
53/* In grokdeclarator, distinguish syntactic contexts of declarators. */
54enum decl_context
55{ NORMAL, /* Ordinary declaration */
56 FUNCDEF, /* Function definition */
57 PARM, /* Declaration of parm before function body */
58 FIELD, /* Declaration inside struct or union */
59 BITFIELD, /* Likewise but with specified width */
60 TYPENAME}; /* Typename (inside cast or sizeof) */
61
62
63/* Nonzero if we have seen an invalid cross reference
64 to a struct, union, or enum, but not yet printed the message. */
65
66tree pending_invalid_xref;
67/* File and line to appear in the eventual error message. */
68const char *pending_invalid_xref_file;
69int pending_invalid_xref_line;
70
71/* While defining an enum type, this is 1 plus the last enumerator
72 constant value. Note that will do not have to save this or `enum_overflow'
73 around nested function definition since such a definition could only
74 occur in an enum value expression and we don't use these variables in
75 that case. */
76
77static tree enum_next_value;
78
79/* Nonzero means that there was overflow computing enum_next_value. */
80
81static int enum_overflow;
82
83/* Parsing a function declarator leaves a list of parameter names
84 or a chain or parameter decls here. */
85
86static tree last_function_parms;
87
88/* Parsing a function declarator leaves here a chain of structure
89 and enum types declared in the parmlist. */
90
91static tree last_function_parm_tags;
92
93/* After parsing the declarator that starts a function definition,
94 `start_function' puts here the list of parameter names or chain of decls.
95 `store_parm_decls' finds it here. */
96
97static tree current_function_parms;
98
99/* Similar, for last_function_parm_tags. */
100static tree current_function_parm_tags;
101
102/* Similar, for the file and line that the prototype came from if this is
103 an old-style definition. */
104static const char *current_function_prototype_file;
105static int current_function_prototype_line;
106
107/* The current statement tree. */
108
109static struct stmt_tree_s c_stmt_tree;
110
111/* The current scope statement stack. */
112
113static tree c_scope_stmt_stack;
114
115/* A list (chain of TREE_LIST nodes) of all LABEL_DECLs in the function
116 that have names. Here so we can clear out their names' definitions
117 at the end of the function. */
118
119static tree named_labels;
120
121/* A list of LABEL_DECLs from outer contexts that are currently shadowed. */
122
123static tree shadowed_labels;
124
125/* Nonzero when store_parm_decls is called indicates a varargs function.
126 Value not meaningful after store_parm_decls. */
127
128static int c_function_varargs;
129
130/* Set to 0 at beginning of a function definition, set to 1 if
131 a return statement that specifies a return value is seen. */
132
133int current_function_returns_value;
134
135/* Set to 0 at beginning of a function definition, set to 1 if
136 a return statement with no argument is seen. */
137
138int current_function_returns_null;
139
140/* Set to 0 at beginning of a function definition, set to 1 if
141 a call to a noreturn function is seen. */
142
143int current_function_returns_abnormally;
144
145/* Set to nonzero by `grokdeclarator' for a function
146 whose return type is defaulted, if warnings for this are desired. */
147
148static int warn_about_return_type;
149
150/* Nonzero when starting a function declared `extern inline'. */
151
152static int current_extern_inline;
153
154/* For each binding contour we allocate a binding_level structure
155 * which records the names defined in that contour.
156 * Contours include:
157 * 0) the global one
158 * 1) one for each function definition,
159 * where internal declarations of the parameters appear.
160 * 2) one for each compound statement,
161 * to record its declarations.
162 *
163 * The current meaning of a name can be found by searching the levels from
164 * the current one out to the global one.
165 */
166
167/* Note that the information in the `names' component of the global contour
168 is duplicated in the IDENTIFIER_GLOBAL_VALUEs of all identifiers. */
169
170struct binding_level
171 {
172 /* A chain of _DECL nodes for all variables, constants, functions,
173 and typedef types. These are in the reverse of the order supplied.
174 */
175 tree names;
176
177 /* A list of structure, union and enum definitions,
178 * for looking up tag names.
179 * It is a chain of TREE_LIST nodes, each of whose TREE_PURPOSE is a name,
180 * or NULL_TREE; and whose TREE_VALUE is a RECORD_TYPE, UNION_TYPE,
181 * or ENUMERAL_TYPE node.
182 */
183 tree tags;
184
185 /* For each level, a list of shadowed outer-level local definitions
186 to be restored when this level is popped.
187 Each link is a TREE_LIST whose TREE_PURPOSE is an identifier and
188 whose TREE_VALUE is its old definition (a kind of ..._DECL node). */
189 tree shadowed;
190
191 /* For each level (except not the global one),
192 a chain of BLOCK nodes for all the levels
193 that were entered and exited one level down. */
194 tree blocks;
195
196 /* The BLOCK node for this level, if one has been preallocated.
197 If 0, the BLOCK is allocated (if needed) when the level is popped. */
198 tree this_block;
199
200 /* The binding level which this one is contained in (inherits from). */
201 struct binding_level *level_chain;
202
203 /* Nonzero for the level that holds the parameters of a function. */
204 char parm_flag;
205
206 /* Nonzero if this level "doesn't exist" for tags. */
207 char tag_transparent;
208
209 /* Nonzero if sublevels of this level "don't exist" for tags.
210 This is set in the parm level of a function definition
211 while reading the function body, so that the outermost block
212 of the function body will be tag-transparent. */
213 char subblocks_tag_transparent;
214
215 /* Nonzero means make a BLOCK for this level regardless of all else. */
216 char keep;
217
218 /* Nonzero means make a BLOCK if this level has any subblocks. */
219 char keep_if_subblocks;
220
221 /* Number of decls in `names' that have incomplete
222 structure or union types. */
223 int n_incomplete;
224
225 /* A list of decls giving the (reversed) specified order of parms,
226 not including any forward-decls in the parmlist.
227 This is so we can put the parms in proper order for assign_parms. */
228 tree parm_order;
229 };
230
231#define NULL_BINDING_LEVEL (struct binding_level *) NULL
232
233/* The binding level currently in effect. */
234
235static struct binding_level *current_binding_level;
236
237/* A chain of binding_level structures awaiting reuse. */
238
239static struct binding_level *free_binding_level;
240
241/* The outermost binding level, for names of file scope.
242 This is created when the compiler is started and exists
243 through the entire run. */
244
245static struct binding_level *global_binding_level;
246
247/* Binding level structures are initialized by copying this one. */
248
249static struct binding_level clear_binding_level
250 = {NULL, NULL, NULL, NULL, NULL, NULL_BINDING_LEVEL, 0, 0, 0, 0, 0, 0,
251 NULL};
252
253/* Nonzero means unconditionally make a BLOCK for the next level pushed. */
254
255static int keep_next_level_flag;
256
257/* Nonzero means make a BLOCK for the next level pushed
258 if it has subblocks. */
259
260static int keep_next_if_subblocks;
261
262/* The chain of outer levels of label scopes.
263 This uses the same data structure used for binding levels,
264 but it works differently: each link in the chain records
265 saved values of named_labels and shadowed_labels for
266 a label binding level outside the current one. */
267
268static struct binding_level *label_level_chain;
269
270/* Functions called automatically at the beginning and end of execution. */
271
272tree static_ctors, static_dtors;
273
274/* Forward declarations. */
275
276static struct binding_level * make_binding_level PARAMS ((void));
277static void mark_binding_level PARAMS ((void *));
278static void clear_limbo_values PARAMS ((tree));
279static int duplicate_decls PARAMS ((tree, tree, int));
280static int redeclaration_error_message PARAMS ((tree, tree));
281static void storedecls PARAMS ((tree));
282static void storetags PARAMS ((tree));
283static tree lookup_tag PARAMS ((enum tree_code, tree,
284 struct binding_level *, int));
285static tree lookup_tag_reverse PARAMS ((tree));
286static tree grokdeclarator PARAMS ((tree, tree, enum decl_context,
287 int));
288static tree grokparms PARAMS ((tree, int));
289static void layout_array_type PARAMS ((tree));
290static tree c_make_fname_decl PARAMS ((tree, int));
291static void c_expand_body PARAMS ((tree, int, int));
292static void warn_if_shadowing PARAMS ((tree, tree));
293
294/* C-specific option variables. */
295
296/* Nonzero means allow type mismatches in conditional expressions;
297 just make their values `void'. */
298
299int flag_cond_mismatch;
300
301/* Nonzero means don't recognize the keyword `asm'. */
302
303int flag_no_asm;
304
305/* Nonzero means do some things the same way PCC does. */
306
307int flag_traditional;
308
309/* Nonzero means enable C89 Amendment 1 features. */
310
311int flag_isoc94 = 0;
312
313/* Nonzero means use the ISO C99 dialect of C. */
314
315int flag_isoc99 = 0;
316
317/* Nonzero means allow the BSD kernel printf enhancments. */
318
319int flag_bsd_format = 0;
320
321/* Nonzero means that we have builtin functions, and main is an int */
322
323int flag_hosted = 1;
324
325/* Nonzero means add default format_arg attributes for functions not
326 in ISO C. */
327
328int flag_noniso_default_format_attributes = 1;
329
330/* Nonzero means to allow single precision math even if we're generally
331 being traditional. */
332int flag_allow_single_precision = 0;
333
334/* Nonzero means to treat bitfields as signed unless they say `unsigned'. */
335
336int flag_signed_bitfields = 1;
337int explicit_flag_signed_bitfields = 0;
338
339/* Nonzero means warn about use of implicit int. */
340
341int warn_implicit_int;
342
343/* Nonzero means warn about usage of long long when `-pedantic'. */
344
345int warn_long_long = 1;
346
347/* Nonzero means message about use of implicit function declarations;
348 1 means warning; 2 means error. */
349
350int mesg_implicit_function_declaration = -1;
351
352/* Nonzero means give string constants the type `const char *'
353 to get extra warnings from them. These warnings will be too numerous
354 to be useful, except in thoroughly ANSIfied programs. */
355
356int flag_const_strings;
357
358/* Nonzero means warn about pointer casts that can drop a type qualifier
359 from the pointer target type. */
360
361int warn_cast_qual;
362
363/* Nonzero means warn when casting a function call to a type that does
364 not match the return type (e.g. (float)sqrt() or (anything*)malloc()
365 when there is no previous declaration of sqrt or malloc. */
366
367int warn_bad_function_cast;
368
369/* Warn about functions which might be candidates for format attributes. */
370
371int warn_missing_format_attribute;
372
373/* Warn about traditional constructs whose meanings changed in ANSI C. */
374
375int warn_traditional;
376
377/* Nonzero means warn about sizeof(function) or addition/subtraction
378 of function pointers. */
379
380int warn_pointer_arith;
381
382
383/* Nonzero means do not warn that K&R style main() is not a function prototype. */
384
385int flag_bsd_no_warn_kr_main;
386
382/* Nonzero means warn for non-prototype function decls
383 or non-prototyped defs without previous prototype. */
384
385int warn_strict_prototypes;
386
387/* Nonzero means warn for any global function def
388 without separate previous prototype decl. */
389
390int warn_missing_prototypes;
391
392/* Nonzero means warn for any global function def
393 without separate previous decl. */
394
395int warn_missing_declarations;
396
397/* Nonzero means warn about multiple (redundant) decls for the same single
398 variable or function. */
399
400int warn_redundant_decls = 0;
401
402/* Nonzero means warn about extern declarations of objects not at
403 file-scope level and about *all* declarations of functions (whether
404 extern or static) not at file-scope level. Note that we exclude
405 implicit function declarations. To get warnings about those, use
406 -Wimplicit. */
407
408int warn_nested_externs = 0;
409
410/* Warn about a subscript that has type char. */
411
412int warn_char_subscripts = 0;
413
414/* Warn if a type conversion is done that might have confusing results. */
415
416int warn_conversion;
417
418/* Warn if adding () is suggested. */
419
420int warn_parentheses;
421
422/* Warn if initializer is not completely bracketed. */
423
424int warn_missing_braces;
425
426/* Warn if main is suspicious. */
427
428int warn_main;
429
430/* Warn about #pragma directives that are not recognised. */
431
432int warn_unknown_pragmas = 0; /* Tri state variable. */
433
434/* Warn about comparison of signed and unsigned values.
435 If -1, neither -Wsign-compare nor -Wno-sign-compare has been specified. */
436
437int warn_sign_compare = -1;
438
439/* Warn about testing equality of floating point numbers. */
440
441int warn_float_equal = 0;
442
443/* Nonzero means warn about use of multicharacter literals. */
444
445int warn_multichar = 1;
446
447/* Nonzero means `$' can be in an identifier. */
448
449#ifndef DOLLARS_IN_IDENTIFIERS
450#define DOLLARS_IN_IDENTIFIERS 1
451#endif
452int dollars_in_ident = DOLLARS_IN_IDENTIFIERS;
453
454/* States indicating how grokdeclarator() should handle declspecs marked
455 with __attribute__((deprecated)). An object declared as
456 __attribute__((deprecated)) suppresses warnings of uses of other
457 deprecated items. */
458
459enum deprecated_states {
460 DEPRECATED_NORMAL,
461 DEPRECATED_SUPPRESS
462};
463
464static enum deprecated_states deprecated_state = DEPRECATED_NORMAL;
465
466/* Decode the string P as a language-specific option for C.
467 Return the number of strings consumed. Should not complain
468 if it does not recognise the option. */
469
470int
471c_decode_option (argc, argv)
472 int argc ATTRIBUTE_UNUSED;
473 char **argv;
474{
475 int strings_processed;
476 char *p = argv[0];
477
478 strings_processed = cpp_handle_option (parse_in, argc, argv, 0);
479
480 if (!strcmp (p, "-ftraditional") || !strcmp (p, "-traditional"))
481 {
482 warning ("-traditional is deprecated and may be removed");
483 flag_traditional = 1;
484 flag_writable_strings = 1;
485 }
486 else if (!strcmp (p, "-fallow-single-precision"))
487 flag_allow_single_precision = 1;
488 else if (!strcmp (p, "-fhosted") || !strcmp (p, "-fno-freestanding"))
489 {
490 flag_hosted = 1;
491 flag_no_builtin = 0;
492 }
493 else if (!strcmp (p, "-ffreestanding") || !strcmp (p, "-fno-hosted"))
494 {
495 flag_hosted = 0;
496 flag_no_builtin = 1;
497 /* warn_main will be 2 if set by -Wall, 1 if set by -Wmain */
498 if (warn_main == 2)
499 warn_main = 0;
500 }
501 else if (!strcmp (p, "-fnotraditional") || !strcmp (p, "-fno-traditional"))
502 {
503 flag_traditional = 0;
504 flag_writable_strings = 0;
505 }
506 else if (!strncmp (p, "-std=", 5))
507 {
508 /* Select the appropriate language standard. We currently
509 recognize:
510 -std=iso9899:1990 same as -ansi
511 -std=iso9899:199409 ISO C as modified in amend. 1
512 -std=iso9899:1999 ISO C 99
513 -std=c89 same as -std=iso9899:1990
514 -std=c99 same as -std=iso9899:1999
515 -std=gnu89 default, iso9899:1990 + gnu extensions
516 -std=gnu99 iso9899:1999 + gnu extensions
517 -std=bsd iso9899:1999 + BSD kernel printf extensions
518 */
519 const char *const argstart = &p[5];
520
521 if (!strcmp (argstart, "iso9899:1990")
522 || !strcmp (argstart, "c89"))
523 {
524 iso_1990:
525 flag_isoc94 = 0;
526 iso_1994:
527 flag_traditional = 0;
528 flag_writable_strings = 0;
529 flag_no_asm = 1;
530 flag_no_nonansi_builtin = 1;
531 flag_noniso_default_format_attributes = 0;
532 flag_isoc99 = 0;
533 flag_bsd_format = 0;
387/* Nonzero means warn for non-prototype function decls
388 or non-prototyped defs without previous prototype. */
389
390int warn_strict_prototypes;
391
392/* Nonzero means warn for any global function def
393 without separate previous prototype decl. */
394
395int warn_missing_prototypes;
396
397/* Nonzero means warn for any global function def
398 without separate previous decl. */
399
400int warn_missing_declarations;
401
402/* Nonzero means warn about multiple (redundant) decls for the same single
403 variable or function. */
404
405int warn_redundant_decls = 0;
406
407/* Nonzero means warn about extern declarations of objects not at
408 file-scope level and about *all* declarations of functions (whether
409 extern or static) not at file-scope level. Note that we exclude
410 implicit function declarations. To get warnings about those, use
411 -Wimplicit. */
412
413int warn_nested_externs = 0;
414
415/* Warn about a subscript that has type char. */
416
417int warn_char_subscripts = 0;
418
419/* Warn if a type conversion is done that might have confusing results. */
420
421int warn_conversion;
422
423/* Warn if adding () is suggested. */
424
425int warn_parentheses;
426
427/* Warn if initializer is not completely bracketed. */
428
429int warn_missing_braces;
430
431/* Warn if main is suspicious. */
432
433int warn_main;
434
435/* Warn about #pragma directives that are not recognised. */
436
437int warn_unknown_pragmas = 0; /* Tri state variable. */
438
439/* Warn about comparison of signed and unsigned values.
440 If -1, neither -Wsign-compare nor -Wno-sign-compare has been specified. */
441
442int warn_sign_compare = -1;
443
444/* Warn about testing equality of floating point numbers. */
445
446int warn_float_equal = 0;
447
448/* Nonzero means warn about use of multicharacter literals. */
449
450int warn_multichar = 1;
451
452/* Nonzero means `$' can be in an identifier. */
453
454#ifndef DOLLARS_IN_IDENTIFIERS
455#define DOLLARS_IN_IDENTIFIERS 1
456#endif
457int dollars_in_ident = DOLLARS_IN_IDENTIFIERS;
458
459/* States indicating how grokdeclarator() should handle declspecs marked
460 with __attribute__((deprecated)). An object declared as
461 __attribute__((deprecated)) suppresses warnings of uses of other
462 deprecated items. */
463
464enum deprecated_states {
465 DEPRECATED_NORMAL,
466 DEPRECATED_SUPPRESS
467};
468
469static enum deprecated_states deprecated_state = DEPRECATED_NORMAL;
470
471/* Decode the string P as a language-specific option for C.
472 Return the number of strings consumed. Should not complain
473 if it does not recognise the option. */
474
475int
476c_decode_option (argc, argv)
477 int argc ATTRIBUTE_UNUSED;
478 char **argv;
479{
480 int strings_processed;
481 char *p = argv[0];
482
483 strings_processed = cpp_handle_option (parse_in, argc, argv, 0);
484
485 if (!strcmp (p, "-ftraditional") || !strcmp (p, "-traditional"))
486 {
487 warning ("-traditional is deprecated and may be removed");
488 flag_traditional = 1;
489 flag_writable_strings = 1;
490 }
491 else if (!strcmp (p, "-fallow-single-precision"))
492 flag_allow_single_precision = 1;
493 else if (!strcmp (p, "-fhosted") || !strcmp (p, "-fno-freestanding"))
494 {
495 flag_hosted = 1;
496 flag_no_builtin = 0;
497 }
498 else if (!strcmp (p, "-ffreestanding") || !strcmp (p, "-fno-hosted"))
499 {
500 flag_hosted = 0;
501 flag_no_builtin = 1;
502 /* warn_main will be 2 if set by -Wall, 1 if set by -Wmain */
503 if (warn_main == 2)
504 warn_main = 0;
505 }
506 else if (!strcmp (p, "-fnotraditional") || !strcmp (p, "-fno-traditional"))
507 {
508 flag_traditional = 0;
509 flag_writable_strings = 0;
510 }
511 else if (!strncmp (p, "-std=", 5))
512 {
513 /* Select the appropriate language standard. We currently
514 recognize:
515 -std=iso9899:1990 same as -ansi
516 -std=iso9899:199409 ISO C as modified in amend. 1
517 -std=iso9899:1999 ISO C 99
518 -std=c89 same as -std=iso9899:1990
519 -std=c99 same as -std=iso9899:1999
520 -std=gnu89 default, iso9899:1990 + gnu extensions
521 -std=gnu99 iso9899:1999 + gnu extensions
522 -std=bsd iso9899:1999 + BSD kernel printf extensions
523 */
524 const char *const argstart = &p[5];
525
526 if (!strcmp (argstart, "iso9899:1990")
527 || !strcmp (argstart, "c89"))
528 {
529 iso_1990:
530 flag_isoc94 = 0;
531 iso_1994:
532 flag_traditional = 0;
533 flag_writable_strings = 0;
534 flag_no_asm = 1;
535 flag_no_nonansi_builtin = 1;
536 flag_noniso_default_format_attributes = 0;
537 flag_isoc99 = 0;
538 flag_bsd_format = 0;
539 flag_bsd_no_warn_kr_main = 0;
534 }
535 else if (!strcmp (argstart, "iso9899:199409"))
536 {
537 flag_isoc94 = 1;
538 goto iso_1994;
539 }
540 else if (!strcmp (argstart, "iso9899:199x")
541 || !strcmp (argstart, "iso9899:1999")
542 || !strcmp (argstart, "c9x")
543 || !strcmp (argstart, "c99"))
544 {
545 flag_traditional = 0;
546 flag_writable_strings = 0;
547 flag_no_asm = 1;
548 flag_no_nonansi_builtin = 1;
549 flag_noniso_default_format_attributes = 0;
550 flag_isoc99 = 1;
551 flag_isoc94 = 1;
552 flag_bsd_format = 0;
540 }
541 else if (!strcmp (argstart, "iso9899:199409"))
542 {
543 flag_isoc94 = 1;
544 goto iso_1994;
545 }
546 else if (!strcmp (argstart, "iso9899:199x")
547 || !strcmp (argstart, "iso9899:1999")
548 || !strcmp (argstart, "c9x")
549 || !strcmp (argstart, "c99"))
550 {
551 flag_traditional = 0;
552 flag_writable_strings = 0;
553 flag_no_asm = 1;
554 flag_no_nonansi_builtin = 1;
555 flag_noniso_default_format_attributes = 0;
556 flag_isoc99 = 1;
557 flag_isoc94 = 1;
558 flag_bsd_format = 0;
559 flag_bsd_no_warn_kr_main = 0;
553 }
554 else if (!strcmp (argstart, "gnu89"))
555 {
556 flag_traditional = 0;
557 flag_writable_strings = 0;
558 flag_no_asm = 0;
559 flag_no_nonansi_builtin = 0;
560 flag_noniso_default_format_attributes = 1;
561 flag_isoc99 = 0;
562 flag_isoc94 = 0;
563 flag_bsd_format = 0;
560 }
561 else if (!strcmp (argstart, "gnu89"))
562 {
563 flag_traditional = 0;
564 flag_writable_strings = 0;
565 flag_no_asm = 0;
566 flag_no_nonansi_builtin = 0;
567 flag_noniso_default_format_attributes = 1;
568 flag_isoc99 = 0;
569 flag_isoc94 = 0;
570 flag_bsd_format = 0;
571 flag_bsd_no_warn_kr_main = 0;
564 }
565 else if (!strcmp (argstart, "gnu9x") || !strcmp (argstart, "gnu99"))
566 {
567 flag_traditional = 0;
568 flag_writable_strings = 0;
569 flag_no_asm = 0;
570 flag_no_nonansi_builtin = 0;
571 flag_noniso_default_format_attributes = 1;
572 flag_isoc99 = 1;
573 flag_isoc94 = 1;
574 flag_bsd_format = 0;
572 }
573 else if (!strcmp (argstart, "gnu9x") || !strcmp (argstart, "gnu99"))
574 {
575 flag_traditional = 0;
576 flag_writable_strings = 0;
577 flag_no_asm = 0;
578 flag_no_nonansi_builtin = 0;
579 flag_noniso_default_format_attributes = 1;
580 flag_isoc99 = 1;
581 flag_isoc94 = 1;
582 flag_bsd_format = 0;
583 flag_bsd_no_warn_kr_main = 0;
575 }
576 else if (!strcmp (argstart, "bsd"))
577 {
578 flag_traditional = 0;
579 flag_writable_strings = 0;
580 flag_no_asm = 0;
581 flag_no_nonansi_builtin = 0;
582 flag_noniso_default_format_attributes = 1;
583 flag_isoc99 = 0;
584 flag_isoc94 = 0;
585 flag_isoc94 = 0;
586 flag_bsd_format = 1;
584 }
585 else if (!strcmp (argstart, "bsd"))
586 {
587 flag_traditional = 0;
588 flag_writable_strings = 0;
589 flag_no_asm = 0;
590 flag_no_nonansi_builtin = 0;
591 flag_noniso_default_format_attributes = 1;
592 flag_isoc99 = 0;
593 flag_isoc94 = 0;
594 flag_isoc94 = 0;
595 flag_bsd_format = 1;
596 flag_bsd_no_warn_kr_main = 1;
587 }
588 else
589 error ("unknown C standard `%s'", argstart);
590 }
591 else if (!strcmp (p, "-fdollars-in-identifiers"))
592 dollars_in_ident = 1;
593 else if (!strcmp (p, "-fno-dollars-in-identifiers"))
594 dollars_in_ident = 0;
595 else if (!strcmp (p, "-fsigned-char"))
596 flag_signed_char = 1;
597 else if (!strcmp (p, "-funsigned-char"))
598 flag_signed_char = 0;
599 else if (!strcmp (p, "-fno-signed-char"))
600 flag_signed_char = 0;
601 else if (!strcmp (p, "-fno-unsigned-char"))
602 flag_signed_char = 1;
603 else if (!strcmp (p, "-fsigned-bitfields")
604 || !strcmp (p, "-fno-unsigned-bitfields"))
605 {
606 flag_signed_bitfields = 1;
607 explicit_flag_signed_bitfields = 1;
608 }
609 else if (!strcmp (p, "-funsigned-bitfields")
610 || !strcmp (p, "-fno-signed-bitfields"))
611 {
612 flag_signed_bitfields = 0;
613 explicit_flag_signed_bitfields = 1;
614 }
615 else if (!strcmp (p, "-fshort-enums"))
616 flag_short_enums = 1;
617 else if (!strcmp (p, "-fno-short-enums"))
618 flag_short_enums = 0;
619 else if (!strcmp (p, "-fshort-wchar"))
620 flag_short_wchar = 1;
621 else if (!strcmp (p, "-fno-short-wchar"))
622 flag_short_wchar = 0;
623 else if (!strcmp (p, "-fcond-mismatch"))
624 flag_cond_mismatch = 1;
625 else if (!strcmp (p, "-fno-cond-mismatch"))
626 flag_cond_mismatch = 0;
627 else if (!strcmp (p, "-fshort-double"))
628 flag_short_double = 1;
629 else if (!strcmp (p, "-fno-short-double"))
630 flag_short_double = 0;
631 else if (!strcmp (p, "-fasm"))
632 flag_no_asm = 0;
633 else if (!strcmp (p, "-fno-asm"))
634 flag_no_asm = 1;
635 else if (!strcmp (p, "-fbuiltin"))
636 flag_no_builtin = 0;
637 else if (!strcmp (p, "-fno-builtin"))
638 flag_no_builtin = 1;
639 else if (!strncmp (p, "-fno-builtin-", strlen ("-fno-builtin-")))
640 disable_builtin_function (p + strlen ("-fno-builtin-"));
641 else if (p[0] == '-' && p[1] == 'f' && dump_switch_p (p + 2))
642 ;
643 else if (!strcmp (p, "-ansi"))
644 goto iso_1990;
645 else if (!strcmp (p, "-Werror-implicit-function-declaration"))
646 mesg_implicit_function_declaration = 2;
647 else if (!strcmp (p, "-Wimplicit-function-declaration"))
648 mesg_implicit_function_declaration = 1;
649 else if (!strcmp (p, "-Wno-implicit-function-declaration"))
650 mesg_implicit_function_declaration = 0;
651 else if (!strcmp (p, "-Wimplicit-int"))
652 warn_implicit_int = 1;
653 else if (!strcmp (p, "-Wno-implicit-int"))
654 warn_implicit_int = 0;
655 else if (!strcmp (p, "-Wimplicit"))
656 {
657 warn_implicit_int = 1;
658 if (mesg_implicit_function_declaration != 2)
659 mesg_implicit_function_declaration = 1;
660 }
661 else if (!strcmp (p, "-Wno-implicit"))
662 warn_implicit_int = 0, mesg_implicit_function_declaration = 0;
663 else if (!strcmp (p, "-Wlong-long"))
664 warn_long_long = 1;
665 else if (!strcmp (p, "-Wno-long-long"))
666 warn_long_long = 0;
667 else if (!strcmp (p, "-Wwrite-strings"))
668 flag_const_strings = 1;
669 else if (!strcmp (p, "-Wno-write-strings"))
670 flag_const_strings = 0;
671 else if (!strcmp (p, "-Wcast-qual"))
672 warn_cast_qual = 1;
673 else if (!strcmp (p, "-Wno-cast-qual"))
674 warn_cast_qual = 0;
675 else if (!strcmp (p, "-Wbad-function-cast"))
676 warn_bad_function_cast = 1;
677 else if (!strcmp (p, "-Wno-bad-function-cast"))
678 warn_bad_function_cast = 0;
679 else if (!strcmp (p, "-Wno-missing-noreturn"))
680 warn_missing_noreturn = 0;
681 else if (!strcmp (p, "-Wmissing-format-attribute"))
682 warn_missing_format_attribute = 1;
683 else if (!strcmp (p, "-Wno-missing-format-attribute"))
684 warn_missing_format_attribute = 0;
685 else if (!strcmp (p, "-Wpointer-arith"))
686 warn_pointer_arith = 1;
687 else if (!strcmp (p, "-Wno-pointer-arith"))
688 warn_pointer_arith = 0;
689 else if (!strcmp (p, "-Wstrict-prototypes"))
690 warn_strict_prototypes = 1;
691 else if (!strcmp (p, "-Wno-strict-prototypes"))
692 warn_strict_prototypes = 0;
693 else if (!strcmp (p, "-Wmissing-prototypes"))
694 warn_missing_prototypes = 1;
695 else if (!strcmp (p, "-Wno-missing-prototypes"))
696 warn_missing_prototypes = 0;
697 else if (!strcmp (p, "-Wmissing-declarations"))
698 warn_missing_declarations = 1;
699 else if (!strcmp (p, "-Wno-missing-declarations"))
700 warn_missing_declarations = 0;
701 else if (!strcmp (p, "-Wredundant-decls"))
702 warn_redundant_decls = 1;
703 else if (!strcmp (p, "-Wno-redundant-decls"))
704 warn_redundant_decls = 0;
705 else if (!strcmp (p, "-Wnested-externs"))
706 warn_nested_externs = 1;
707 else if (!strcmp (p, "-Wno-nested-externs"))
708 warn_nested_externs = 0;
709 else if (!strcmp (p, "-Wtraditional"))
710 warn_traditional = 1;
711 else if (!strcmp (p, "-Wno-traditional"))
712 warn_traditional = 0;
713 else if (!strncmp (p, "-Wformat=", 9))
714 set_Wformat (atoi (p + 9));
715 else if (!strcmp (p, "-Wformat"))
716 set_Wformat (1);
717 else if (!strcmp (p, "-Wno-format"))
718 set_Wformat (0);
719 else if (!strcmp (p, "-Wformat-y2k"))
720 warn_format_y2k = 1;
721 else if (!strcmp (p, "-Wno-format-y2k"))
722 warn_format_y2k = 0;
723 else if (!strcmp (p, "-Wformat-extra-args"))
724 warn_format_extra_args = 1;
725 else if (!strcmp (p, "-Wno-format-extra-args"))
726 warn_format_extra_args = 0;
727 else if (!strcmp (p, "-Wformat-nonliteral"))
728 warn_format_nonliteral = 1;
729 else if (!strcmp (p, "-Wno-format-nonliteral"))
730 warn_format_nonliteral = 0;
731 else if (!strcmp (p, "-Wformat-security"))
732 warn_format_security = 1;
733 else if (!strcmp (p, "-Wno-format-security"))
734 warn_format_security = 0;
735 else if (!strcmp (p, "-Wchar-subscripts"))
736 warn_char_subscripts = 1;
737 else if (!strcmp (p, "-Wno-char-subscripts"))
738 warn_char_subscripts = 0;
739 else if (!strcmp (p, "-Wconversion"))
740 warn_conversion = 1;
741 else if (!strcmp (p, "-Wno-conversion"))
742 warn_conversion = 0;
743 else if (!strcmp (p, "-Wparentheses"))
744 warn_parentheses = 1;
745 else if (!strcmp (p, "-Wno-parentheses"))
746 warn_parentheses = 0;
747 else if (!strcmp (p, "-Wreturn-type"))
748 warn_return_type = 1;
749 else if (!strcmp (p, "-Wno-return-type"))
750 warn_return_type = 0;
751 else if (!strcmp (p, "-Wsequence-point"))
752 warn_sequence_point = 1;
753 else if (!strcmp (p, "-Wno-sequence-point"))
754 warn_sequence_point = 0;
755 else if (!strcmp (p, "-Wcomment"))
756 ; /* cpp handles this one. */
757 else if (!strcmp (p, "-Wno-comment"))
758 ; /* cpp handles this one. */
759 else if (!strcmp (p, "-Wcomments"))
760 ; /* cpp handles this one. */
761 else if (!strcmp (p, "-Wno-comments"))
762 ; /* cpp handles this one. */
763 else if (!strcmp (p, "-Wtrigraphs"))
764 ; /* cpp handles this one. */
765 else if (!strcmp (p, "-Wno-trigraphs"))
766 ; /* cpp handles this one. */
767 else if (!strcmp (p, "-Wundef"))
768 ; /* cpp handles this one. */
769 else if (!strcmp (p, "-Wno-undef"))
770 ; /* cpp handles this one. */
771 else if (!strcmp (p, "-Wimport"))
772 ; /* cpp handles this one. */
773 else if (!strcmp (p, "-Wno-import"))
774 ; /* cpp handles this one. */
775 else if (!strcmp (p, "-Wmissing-braces"))
776 warn_missing_braces = 1;
777 else if (!strcmp (p, "-Wno-missing-braces"))
778 warn_missing_braces = 0;
779 else if (!strcmp (p, "-Wmain"))
780 warn_main = 1;
781 else if (!strcmp (p, "-Wno-main"))
782 warn_main = -1;
783 else if (!strcmp (p, "-Wsign-compare"))
784 warn_sign_compare = 1;
785 else if (!strcmp (p, "-Wno-sign-compare"))
786 warn_sign_compare = 0;
787 else if (!strcmp (p, "-Wfloat-equal"))
788 warn_float_equal = 1;
789 else if (!strcmp (p, "-Wno-float-equal"))
790 warn_float_equal = 0;
791 else if (!strcmp (p, "-Wmultichar"))
792 warn_multichar = 1;
793 else if (!strcmp (p, "-Wno-multichar"))
794 warn_multichar = 0;
795 else if (!strcmp (p, "-Wdiv-by-zero"))
796 warn_div_by_zero = 1;
797 else if (!strcmp (p, "-Wno-div-by-zero"))
798 warn_div_by_zero = 0;
799 else if (!strcmp (p, "-Wunknown-pragmas"))
800 /* Set to greater than 1, so that even unknown pragmas in system
801 headers will be warned about. */
802 warn_unknown_pragmas = 2;
803 else if (!strcmp (p, "-Wno-unknown-pragmas"))
804 warn_unknown_pragmas = 0;
805 else if (!strcmp (p, "-Wall"))
806 {
807 /* We save the value of warn_uninitialized, since if they put
808 -Wuninitialized on the command line, we need to generate a
809 warning about not using it without also specifying -O. */
810 if (warn_uninitialized != 1)
811 warn_uninitialized = 2;
812 warn_implicit_int = 1;
813 mesg_implicit_function_declaration = 1;
814 warn_return_type = 1;
815 set_Wunused (1);
816 warn_switch = 1;
817 set_Wformat (1);
818 warn_char_subscripts = 1;
819 warn_parentheses = 1;
820 warn_sequence_point = 1;
821 warn_missing_braces = 1;
822 /* We set this to 2 here, but 1 in -Wmain, so -ffreestanding can turn
823 it off only if it's not explicit. */
824 warn_main = 2;
825 /* Only warn about unknown pragmas that are not in system headers. */
826 warn_unknown_pragmas = 1;
827 }
828 else
829 return strings_processed;
830
831 return 1;
832}
833
834void
835c_print_identifier (file, node, indent)
836 FILE *file;
837 tree node;
838 int indent;
839{
840 print_node (file, "global", IDENTIFIER_GLOBAL_VALUE (node), indent + 4);
841 print_node (file, "local", IDENTIFIER_LOCAL_VALUE (node), indent + 4);
842 print_node (file, "label", IDENTIFIER_LABEL_VALUE (node), indent + 4);
843 print_node (file, "implicit", IDENTIFIER_IMPLICIT_DECL (node), indent + 4);
844 print_node (file, "error locus", IDENTIFIER_ERROR_LOCUS (node), indent + 4);
845 print_node (file, "limbo value", IDENTIFIER_LIMBO_VALUE (node), indent + 4);
846 if (C_IS_RESERVED_WORD (node))
847 {
848 tree rid = ridpointers[C_RID_CODE (node)];
849 indent_to (file, indent + 4);
850 fprintf (file, "rid ");
851 fprintf (file, HOST_PTR_PRINTF, (void *)rid);
852 fprintf (file, " \"%s\"", IDENTIFIER_POINTER (rid));
853 }
854}
855
856/* Hook called at end of compilation to assume 1 elt
857 for a top-level tentative array defn that wasn't complete before. */
858
859void
860finish_incomplete_decl (decl)
861 tree decl;
862{
863 if (TREE_CODE (decl) == VAR_DECL)
864 {
865 tree type = TREE_TYPE (decl);
866 if (type != error_mark_node
867 && TREE_CODE (type) == ARRAY_TYPE
868 && ! DECL_EXTERNAL (decl)
869 && TYPE_DOMAIN (type) == 0)
870 {
871 warning_with_decl (decl, "array `%s' assumed to have one element");
872
873 complete_array_type (type, NULL_TREE, 1);
874
875 layout_decl (decl, 0);
876 }
877 }
878}
879
880/* Create a new `struct binding_level'. */
881
882static struct binding_level *
883make_binding_level ()
884{
885 /* NOSTRICT */
886 return (struct binding_level *) xmalloc (sizeof (struct binding_level));
887}
888
889/* Nonzero if we are currently in the global binding level. */
890
891int
892global_bindings_p ()
893{
894 return current_binding_level == global_binding_level;
895}
896
897void
898keep_next_level ()
899{
900 keep_next_level_flag = 1;
901}
902
903/* Nonzero if the current level needs to have a BLOCK made. */
904
905int
906kept_level_p ()
907{
908 return ((current_binding_level->keep_if_subblocks
909 && current_binding_level->blocks != 0)
910 || current_binding_level->keep
911 || current_binding_level->names != 0
912 || (current_binding_level->tags != 0
913 && !current_binding_level->tag_transparent));
914}
915
916/* Identify this binding level as a level of parameters.
917 DEFINITION_FLAG is 1 for a definition, 0 for a declaration.
918 But it turns out there is no way to pass the right value for
919 DEFINITION_FLAG, so we ignore it. */
920
921void
922declare_parm_level (definition_flag)
923 int definition_flag ATTRIBUTE_UNUSED;
924{
925 current_binding_level->parm_flag = 1;
926}
927
928/* Nonzero if currently making parm declarations. */
929
930int
931in_parm_level_p ()
932{
933 return current_binding_level->parm_flag;
934}
935
936/* Enter a new binding level.
937 If TAG_TRANSPARENT is nonzero, do so only for the name space of variables,
938 not for that of tags. */
939
940void
941pushlevel (tag_transparent)
942 int tag_transparent;
943{
944 struct binding_level *newlevel = NULL_BINDING_LEVEL;
945
946 /* If this is the top level of a function,
947 just make sure that NAMED_LABELS is 0. */
948
949 if (current_binding_level == global_binding_level)
950 {
951 named_labels = 0;
952 }
953
954 /* Reuse or create a struct for this binding level. */
955
956 if (free_binding_level)
957 {
958 newlevel = free_binding_level;
959 free_binding_level = free_binding_level->level_chain;
960 }
961 else
962 {
963 newlevel = make_binding_level ();
964 }
965
966 /* Add this level to the front of the chain (stack) of levels that
967 are active. */
968
969 *newlevel = clear_binding_level;
970 newlevel->tag_transparent
971 = (tag_transparent
972 || (current_binding_level
973 ? current_binding_level->subblocks_tag_transparent
974 : 0));
975 newlevel->level_chain = current_binding_level;
976 current_binding_level = newlevel;
977 newlevel->keep = keep_next_level_flag;
978 keep_next_level_flag = 0;
979 newlevel->keep_if_subblocks = keep_next_if_subblocks;
980 keep_next_if_subblocks = 0;
981}
982
983/* Clear the limbo values of all identifiers defined in BLOCK or a subblock. */
984
985static void
986clear_limbo_values (block)
987 tree block;
988{
989 tree tem;
990
991 for (tem = BLOCK_VARS (block); tem; tem = TREE_CHAIN (tem))
992 if (DECL_NAME (tem) != 0)
993 IDENTIFIER_LIMBO_VALUE (DECL_NAME (tem)) = 0;
994
995 for (tem = BLOCK_SUBBLOCKS (block); tem; tem = TREE_CHAIN (tem))
996 clear_limbo_values (tem);
997}
998
999/* Exit a binding level.
1000 Pop the level off, and restore the state of the identifier-decl mappings
1001 that were in effect when this level was entered.
1002
1003 If KEEP is nonzero, this level had explicit declarations, so
1004 and create a "block" (a BLOCK node) for the level
1005 to record its declarations and subblocks for symbol table output.
1006
1007 If FUNCTIONBODY is nonzero, this level is the body of a function,
1008 so create a block as if KEEP were set and also clear out all
1009 label names.
1010
1011 If REVERSE is nonzero, reverse the order of decls before putting
1012 them into the BLOCK. */
1013
1014tree
1015poplevel (keep, reverse, functionbody)
1016 int keep;
1017 int reverse;
1018 int functionbody;
1019{
1020 tree link;
1021 /* The chain of decls was accumulated in reverse order.
1022 Put it into forward order, just for cleanliness. */
1023 tree decls;
1024 tree tags = current_binding_level->tags;
1025 tree subblocks = current_binding_level->blocks;
1026 tree block = 0;
1027 tree decl;
1028 int block_previously_created;
1029
1030 keep |= current_binding_level->keep;
1031
1032 /* This warning is turned off because it causes warnings for
1033 declarations like `extern struct foo *x'. */
1034#if 0
1035 /* Warn about incomplete structure types in this level. */
1036 for (link = tags; link; link = TREE_CHAIN (link))
1037 if (!COMPLETE_TYPE_P (TREE_VALUE (link)))
1038 {
1039 tree type = TREE_VALUE (link);
1040 tree type_name = TYPE_NAME (type);
1041 char *id = IDENTIFIER_POINTER (TREE_CODE (type_name) == IDENTIFIER_NODE
1042 ? type_name
1043 : DECL_NAME (type_name));
1044 switch (TREE_CODE (type))
1045 {
1046 case RECORD_TYPE:
1047 error ("`struct %s' incomplete in scope ending here", id);
1048 break;
1049 case UNION_TYPE:
1050 error ("`union %s' incomplete in scope ending here", id);
1051 break;
1052 case ENUMERAL_TYPE:
1053 error ("`enum %s' incomplete in scope ending here", id);
1054 break;
1055 }
1056 }
1057#endif /* 0 */
1058
1059 /* Get the decls in the order they were written.
1060 Usually current_binding_level->names is in reverse order.
1061 But parameter decls were previously put in forward order. */
1062
1063 if (reverse)
1064 current_binding_level->names
1065 = decls = nreverse (current_binding_level->names);
1066 else
1067 decls = current_binding_level->names;
1068
1069 /* Output any nested inline functions within this block
1070 if they weren't already output. */
1071
1072 for (decl = decls; decl; decl = TREE_CHAIN (decl))
1073 if (TREE_CODE (decl) == FUNCTION_DECL
1074 && ! TREE_ASM_WRITTEN (decl)
1075 && DECL_INITIAL (decl) != 0
1076 && TREE_ADDRESSABLE (decl))
1077 {
1078 /* If this decl was copied from a file-scope decl
1079 on account of a block-scope extern decl,
1080 propagate TREE_ADDRESSABLE to the file-scope decl.
1081
1082 DECL_ABSTRACT_ORIGIN can be set to itself if warn_return_type is
1083 true, since then the decl goes through save_for_inline_copying. */
1084 if (DECL_ABSTRACT_ORIGIN (decl) != 0
1085 && DECL_ABSTRACT_ORIGIN (decl) != decl)
1086 TREE_ADDRESSABLE (DECL_ABSTRACT_ORIGIN (decl)) = 1;
1087 }
1088
1089 /* We used to warn about unused variables in expand_end_bindings,
1090 i.e. while generating RTL. But in function-at-a-time mode we may
1091 choose to never expand a function at all (e.g. auto inlining), so
1092 we do this explicitly now. */
1093 warn_about_unused_variables (getdecls ());
1094
1095 /* If there were any declarations or structure tags in that level,
1096 or if this level is a function body,
1097 create a BLOCK to record them for the life of this function. */
1098
1099 block = 0;
1100 block_previously_created = (current_binding_level->this_block != 0);
1101 if (block_previously_created)
1102 block = current_binding_level->this_block;
1103 else if (keep || functionbody
1104 || (current_binding_level->keep_if_subblocks && subblocks != 0))
1105 block = make_node (BLOCK);
1106 if (block != 0)
1107 {
1108 BLOCK_VARS (block) = decls;
1109 BLOCK_SUBBLOCKS (block) = subblocks;
1110 }
1111
1112 /* In each subblock, record that this is its superior. */
1113
1114 for (link = subblocks; link; link = TREE_CHAIN (link))
1115 BLOCK_SUPERCONTEXT (link) = block;
1116
1117 /* Clear out the meanings of the local variables of this level. */
1118
1119 for (link = decls; link; link = TREE_CHAIN (link))
1120 {
1121 if (DECL_NAME (link) != 0)
1122 {
1123 /* If the ident. was used or addressed via a local extern decl,
1124 don't forget that fact. */
1125 if (DECL_EXTERNAL (link))
1126 {
1127 if (TREE_USED (link))
1128 TREE_USED (DECL_NAME (link)) = 1;
1129 if (TREE_ADDRESSABLE (link))
1130 TREE_ADDRESSABLE (DECL_ASSEMBLER_NAME (link)) = 1;
1131 }
1132 IDENTIFIER_LOCAL_VALUE (DECL_NAME (link)) = 0;
1133 }
1134 }
1135
1136 /* Restore all name-meanings of the outer levels
1137 that were shadowed by this level. */
1138
1139 for (link = current_binding_level->shadowed; link; link = TREE_CHAIN (link))
1140 IDENTIFIER_LOCAL_VALUE (TREE_PURPOSE (link)) = TREE_VALUE (link);
1141
1142 /* If the level being exited is the top level of a function,
1143 check over all the labels, and clear out the current
1144 (function local) meanings of their names. */
1145
1146 if (functionbody)
1147 {
1148 clear_limbo_values (block);
1149
1150 /* If this is the top level block of a function,
1151 the vars are the function's parameters.
1152 Don't leave them in the BLOCK because they are
1153 found in the FUNCTION_DECL instead. */
1154
1155 BLOCK_VARS (block) = 0;
1156
1157 /* Clear out the definitions of all label names,
1158 since their scopes end here,
1159 and add them to BLOCK_VARS. */
1160
1161 for (link = named_labels; link; link = TREE_CHAIN (link))
1162 {
1163 tree label = TREE_VALUE (link);
1164
1165 if (DECL_INITIAL (label) == 0)
1166 {
1167 error_with_decl (label, "label `%s' used but not defined");
1168 /* Avoid crashing later. */
1169 define_label (input_filename, lineno,
1170 DECL_NAME (label));
1171 }
1172 else if (warn_unused_label && !TREE_USED (label))
1173 warning_with_decl (label, "label `%s' defined but not used");
1174 IDENTIFIER_LABEL_VALUE (DECL_NAME (label)) = 0;
1175
1176 /* Put the labels into the "variables" of the
1177 top-level block, so debugger can see them. */
1178 TREE_CHAIN (label) = BLOCK_VARS (block);
1179 BLOCK_VARS (block) = label;
1180 }
1181 }
1182
1183 /* Pop the current level, and free the structure for reuse. */
1184
1185 {
1186 struct binding_level *level = current_binding_level;
1187 current_binding_level = current_binding_level->level_chain;
1188
1189 level->level_chain = free_binding_level;
1190 free_binding_level = level;
1191 }
1192
1193 /* Dispose of the block that we just made inside some higher level. */
1194 if (functionbody)
1195 DECL_INITIAL (current_function_decl) = block;
1196 else if (block)
1197 {
1198 if (!block_previously_created)
1199 current_binding_level->blocks
1200 = chainon (current_binding_level->blocks, block);
1201 }
1202 /* If we did not make a block for the level just exited,
1203 any blocks made for inner levels
1204 (since they cannot be recorded as subblocks in that level)
1205 must be carried forward so they will later become subblocks
1206 of something else. */
1207 else if (subblocks)
1208 current_binding_level->blocks
1209 = chainon (current_binding_level->blocks, subblocks);
1210
1211 /* Set the TYPE_CONTEXTs for all of the tagged types belonging to this
1212 binding contour so that they point to the appropriate construct, i.e.
1213 either to the current FUNCTION_DECL node, or else to the BLOCK node
1214 we just constructed.
1215
1216 Note that for tagged types whose scope is just the formal parameter
1217 list for some function type specification, we can't properly set
1218 their TYPE_CONTEXTs here, because we don't have a pointer to the
1219 appropriate FUNCTION_TYPE node readily available to us. For those
1220 cases, the TYPE_CONTEXTs of the relevant tagged type nodes get set
1221 in `grokdeclarator' as soon as we have created the FUNCTION_TYPE
1222 node which will represent the "scope" for these "parameter list local"
1223 tagged types. */
1224
1225 if (functionbody)
1226 for (link = tags; link; link = TREE_CHAIN (link))
1227 TYPE_CONTEXT (TREE_VALUE (link)) = current_function_decl;
1228 else if (block)
1229 for (link = tags; link; link = TREE_CHAIN (link))
1230 TYPE_CONTEXT (TREE_VALUE (link)) = block;
1231
1232 if (block)
1233 TREE_USED (block) = 1;
1234
1235 return block;
1236}
1237
1238/* Insert BLOCK at the end of the list of subblocks of the
1239 current binding level. This is used when a BIND_EXPR is expanded,
1240 to handle the BLOCK node inside the BIND_EXPR. */
1241
1242void
1243insert_block (block)
1244 tree block;
1245{
1246 TREE_USED (block) = 1;
1247 current_binding_level->blocks
1248 = chainon (current_binding_level->blocks, block);
1249}
1250
1251/* Set the BLOCK node for the innermost scope
1252 (the one we are currently in). */
1253
1254void
1255set_block (block)
1256 tree block;
1257{
1258 current_binding_level->this_block = block;
1259 current_binding_level->names = chainon (current_binding_level->names,
1260 BLOCK_VARS (block));
1261 current_binding_level->blocks = chainon (current_binding_level->blocks,
1262 BLOCK_SUBBLOCKS (block));
1263}
1264
1265void
1266push_label_level ()
1267{
1268 struct binding_level *newlevel;
1269
1270 /* Reuse or create a struct for this binding level. */
1271
1272 if (free_binding_level)
1273 {
1274 newlevel = free_binding_level;
1275 free_binding_level = free_binding_level->level_chain;
1276 }
1277 else
1278 {
1279 newlevel = make_binding_level ();
1280 }
1281
1282 /* Add this level to the front of the chain (stack) of label levels. */
1283
1284 newlevel->level_chain = label_level_chain;
1285 label_level_chain = newlevel;
1286
1287 newlevel->names = named_labels;
1288 newlevel->shadowed = shadowed_labels;
1289 named_labels = 0;
1290 shadowed_labels = 0;
1291}
1292
1293void
1294pop_label_level ()
1295{
1296 struct binding_level *level = label_level_chain;
1297 tree link, prev;
1298
1299 /* Clear out the definitions of the declared labels in this level.
1300 Leave in the list any ordinary, non-declared labels. */
1301 for (link = named_labels, prev = 0; link;)
1302 {
1303 if (C_DECLARED_LABEL_FLAG (TREE_VALUE (link)))
1304 {
1305 if (DECL_SOURCE_LINE (TREE_VALUE (link)) == 0)
1306 {
1307 error_with_decl (TREE_VALUE (link),
1308 "label `%s' used but not defined");
1309 /* Avoid crashing later. */
1310 define_label (input_filename, lineno,
1311 DECL_NAME (TREE_VALUE (link)));
1312 }
1313 else if (warn_unused_label && !TREE_USED (TREE_VALUE (link)))
1314 warning_with_decl (TREE_VALUE (link),
1315 "label `%s' defined but not used");
1316 IDENTIFIER_LABEL_VALUE (DECL_NAME (TREE_VALUE (link))) = 0;
1317
1318 /* Delete this element from the list. */
1319 link = TREE_CHAIN (link);
1320 if (prev)
1321 TREE_CHAIN (prev) = link;
1322 else
1323 named_labels = link;
1324 }
1325 else
1326 {
1327 prev = link;
1328 link = TREE_CHAIN (link);
1329 }
1330 }
1331
1332 /* Bring back all the labels that were shadowed. */
1333 for (link = shadowed_labels; link; link = TREE_CHAIN (link))
1334 if (DECL_NAME (TREE_VALUE (link)) != 0)
1335 IDENTIFIER_LABEL_VALUE (DECL_NAME (TREE_VALUE (link)))
1336 = TREE_VALUE (link);
1337
1338 named_labels = chainon (named_labels, level->names);
1339 shadowed_labels = level->shadowed;
1340
1341 /* Pop the current level, and free the structure for reuse. */
1342 label_level_chain = label_level_chain->level_chain;
1343 level->level_chain = free_binding_level;
1344 free_binding_level = level;
1345}
1346
1347/* Push a definition or a declaration of struct, union or enum tag "name".
1348 "type" should be the type node.
1349 We assume that the tag "name" is not already defined.
1350
1351 Note that the definition may really be just a forward reference.
1352 In that case, the TYPE_SIZE will be zero. */
1353
1354void
1355pushtag (name, type)
1356 tree name, type;
1357{
1358 struct binding_level *b;
1359
1360 /* Find the proper binding level for this type tag. */
1361
1362 for (b = current_binding_level; b->tag_transparent; b = b->level_chain)
1363 continue;
1364
1365 if (name)
1366 {
1367 /* Record the identifier as the type's name if it has none. */
1368
1369 if (TYPE_NAME (type) == 0)
1370 TYPE_NAME (type) = name;
1371 }
1372
1373 b->tags = tree_cons (name, type, b->tags);
1374
1375 /* Create a fake NULL-named TYPE_DECL node whose TREE_TYPE will be the
1376 tagged type we just added to the current binding level. This fake
1377 NULL-named TYPE_DECL node helps dwarfout.c to know when it needs
1378 to output a representation of a tagged type, and it also gives
1379 us a convenient place to record the "scope start" address for the
1380 tagged type. */
1381
1382 TYPE_STUB_DECL (type) = pushdecl (build_decl (TYPE_DECL, NULL_TREE, type));
1383
1384 /* An approximation for now, so we can tell this is a function-scope tag.
1385 This will be updated in poplevel. */
1386 TYPE_CONTEXT (type) = DECL_CONTEXT (TYPE_STUB_DECL (type));
1387}
1388
1389/* Handle when a new declaration NEWDECL
1390 has the same name as an old one OLDDECL
1391 in the same binding contour.
1392 Prints an error message if appropriate.
1393
1394 If safely possible, alter OLDDECL to look like NEWDECL, and return 1.
1395 Otherwise, return 0.
1396
1397 When DIFFERENT_BINDING_LEVEL is true, NEWDECL is an external declaration,
1398 and OLDDECL is in an outer binding level and should thus not be changed. */
1399
1400static int
1401duplicate_decls (newdecl, olddecl, different_binding_level)
1402 tree newdecl, olddecl;
1403 int different_binding_level;
1404{
1405 int types_match = comptypes (TREE_TYPE (newdecl), TREE_TYPE (olddecl));
1406 int new_is_definition = (TREE_CODE (newdecl) == FUNCTION_DECL
1407 && DECL_INITIAL (newdecl) != 0);
1408 tree oldtype = TREE_TYPE (olddecl);
1409 tree newtype = TREE_TYPE (newdecl);
1410 int errmsg = 0;
1411
1412 if (DECL_P (olddecl))
1413 {
1414 if (TREE_CODE (newdecl) == FUNCTION_DECL
1415 && TREE_CODE (olddecl) == FUNCTION_DECL
1416 && (DECL_UNINLINABLE (newdecl) || DECL_UNINLINABLE (olddecl)))
1417 {
1418 if (DECL_DECLARED_INLINE_P (newdecl)
1419 && DECL_UNINLINABLE (newdecl)
1420 && lookup_attribute ("noinline", DECL_ATTRIBUTES (newdecl)))
1421 /* Already warned elsewhere. */;
1422 else if (DECL_DECLARED_INLINE_P (olddecl)
1423 && DECL_UNINLINABLE (olddecl)
1424 && lookup_attribute ("noinline", DECL_ATTRIBUTES (olddecl)))
1425 /* Already warned. */;
1426 else if (DECL_DECLARED_INLINE_P (newdecl)
1427 && ! DECL_DECLARED_INLINE_P (olddecl)
1428 && DECL_UNINLINABLE (olddecl)
1429 && lookup_attribute ("noinline", DECL_ATTRIBUTES (olddecl)))
1430 {
1431 warning_with_decl (newdecl,
1432 "function `%s' redeclared as inline");
1433 warning_with_decl (olddecl,
1434 "previous declaration of function `%s' with attribute noinline");
1435 }
1436 else if (DECL_DECLARED_INLINE_P (olddecl)
1437 && DECL_UNINLINABLE (newdecl)
1438 && lookup_attribute ("noinline", DECL_ATTRIBUTES (newdecl)))
1439 {
1440 warning_with_decl (newdecl,
1441 "function `%s' redeclared with attribute noinline");
1442 warning_with_decl (olddecl,
1443 "previous declaration of function `%s' was inline");
1444 }
1445 }
1446
1447 DECL_ATTRIBUTES (newdecl)
1448 = (*targetm.merge_decl_attributes) (olddecl, newdecl);
1449 }
1450
1451 if (TREE_CODE (newtype) == ERROR_MARK
1452 || TREE_CODE (oldtype) == ERROR_MARK)
1453 types_match = 0;
1454
1455 /* New decl is completely inconsistent with the old one =>
1456 tell caller to replace the old one.
1457 This is always an error except in the case of shadowing a builtin. */
1458 if (TREE_CODE (olddecl) != TREE_CODE (newdecl))
1459 {
1460 if (TREE_CODE (olddecl) == FUNCTION_DECL
1461 && (DECL_BUILT_IN (olddecl)
1462 || DECL_BUILT_IN_NONANSI (olddecl)))
1463 {
1464 /* If you declare a built-in or predefined function name as static,
1465 the old definition is overridden,
1466 but optionally warn this was a bad choice of name. */
1467 if (!TREE_PUBLIC (newdecl))
1468 {
1469 if (!warn_shadow)
1470 ;
1471 else if (DECL_BUILT_IN (olddecl))
1472 warning_with_decl (newdecl, "shadowing built-in function `%s'");
1473 else
1474 warning_with_decl (newdecl, "shadowing library function `%s'");
1475 }
1476 /* Likewise, if the built-in is not ansi, then programs can
1477 override it even globally without an error. */
1478 else if (! DECL_BUILT_IN (olddecl))
1479 warning_with_decl (newdecl,
1480 "library function `%s' declared as non-function");
1481
1482 else if (DECL_BUILT_IN_NONANSI (olddecl))
1483 warning_with_decl (newdecl,
1484 "built-in function `%s' declared as non-function");
1485 else
1486 warning_with_decl (newdecl,
1487 "built-in function `%s' declared as non-function");
1488 }
1489 else
1490 {
1491 error_with_decl (newdecl, "`%s' redeclared as different kind of symbol");
1492 error_with_decl (olddecl, "previous declaration of `%s'");
1493 }
1494
1495 return 0;
1496 }
1497
1498 /* For real parm decl following a forward decl,
1499 return 1 so old decl will be reused. */
1500 if (types_match && TREE_CODE (newdecl) == PARM_DECL
1501 && TREE_ASM_WRITTEN (olddecl) && ! TREE_ASM_WRITTEN (newdecl))
1502 return 1;
1503
1504 /* The new declaration is the same kind of object as the old one.
1505 The declarations may partially match. Print warnings if they don't
1506 match enough. Ultimately, copy most of the information from the new
1507 decl to the old one, and keep using the old one. */
1508
1509 if (flag_traditional && TREE_CODE (newdecl) == FUNCTION_DECL
1510 && IDENTIFIER_IMPLICIT_DECL (DECL_NAME (newdecl)) == olddecl
1511 && DECL_INITIAL (olddecl) == 0)
1512 /* If -traditional, avoid error for redeclaring fcn
1513 after implicit decl. */
1514 ;
1515 else if (TREE_CODE (olddecl) == FUNCTION_DECL
1516 && DECL_BUILT_IN (olddecl))
1517 {
1518 /* A function declaration for a built-in function. */
1519 if (!TREE_PUBLIC (newdecl))
1520 {
1521 /* If you declare a built-in function name as static, the
1522 built-in definition is overridden,
1523 but optionally warn this was a bad choice of name. */
1524 if (warn_shadow)
1525 warning_with_decl (newdecl, "shadowing built-in function `%s'");
1526 /* Discard the old built-in function. */
1527 return 0;
1528 }
1529 else if (!types_match)
1530 {
1531 /* Accept the return type of the new declaration if same modes. */
1532 tree oldreturntype = TREE_TYPE (oldtype);
1533 tree newreturntype = TREE_TYPE (newtype);
1534
1535 if (TYPE_MODE (oldreturntype) == TYPE_MODE (newreturntype))
1536 {
1537 /* Function types may be shared, so we can't just modify
1538 the return type of olddecl's function type. */
1539 tree trytype
1540 = build_function_type (newreturntype,
1541 TYPE_ARG_TYPES (oldtype));
1542 trytype = build_type_attribute_variant (trytype,
1543 TYPE_ATTRIBUTES (oldtype));
1544
1545 types_match = comptypes (newtype, trytype);
1546 if (types_match)
1547 oldtype = trytype;
1548 }
1549 /* Accept harmless mismatch in first argument type also.
1550 This is for the ffs and fprintf builtins. */
1551 if (TYPE_ARG_TYPES (TREE_TYPE (newdecl)) != 0
1552 && TYPE_ARG_TYPES (oldtype) != 0
1553 && TREE_VALUE (TYPE_ARG_TYPES (newtype)) != 0
1554 && TREE_VALUE (TYPE_ARG_TYPES (oldtype)) != 0
1555 && (TYPE_MODE (TREE_VALUE (TYPE_ARG_TYPES (newtype)))
1556 == TYPE_MODE (TREE_VALUE (TYPE_ARG_TYPES (oldtype)))))
1557 {
1558 /* Function types may be shared, so we can't just modify
1559 the return type of olddecl's function type. */
1560 tree trytype
1561 = build_function_type (TREE_TYPE (oldtype),
1562 tree_cons (NULL_TREE,
1563 TREE_VALUE (TYPE_ARG_TYPES (newtype)),
1564 TREE_CHAIN (TYPE_ARG_TYPES (oldtype))));
1565 trytype = build_type_attribute_variant (trytype,
1566 TYPE_ATTRIBUTES (oldtype));
1567
1568 types_match = comptypes (newtype, trytype);
1569 if (types_match)
1570 oldtype = trytype;
1571 }
1572 if (! different_binding_level)
1573 TREE_TYPE (olddecl) = oldtype;
1574 }
1575 else if (TYPE_ARG_TYPES (oldtype) == NULL
1576 && TYPE_ARG_TYPES (newtype) != NULL)
1577 {
1578 /* For bcmp, bzero, fputs the builtin type has arguments not
1579 specified. Use the ones from the prototype so that type checking
1580 is done for them. */
1581 tree trytype
1582 = build_function_type (TREE_TYPE (oldtype),
1583 TYPE_ARG_TYPES (newtype));
1584 trytype = build_type_attribute_variant (trytype,
1585 TYPE_ATTRIBUTES (oldtype));
1586
1587 oldtype = trytype;
1588 if (! different_binding_level)
1589 TREE_TYPE (olddecl) = oldtype;
1590 }
1591 if (!types_match)
1592 {
1593 /* If types don't match for a built-in, throw away the built-in. */
1594 warning_with_decl (newdecl, "conflicting types for built-in function `%s'");
1595 return 0;
1596 }
1597 }
1598 else if (TREE_CODE (olddecl) == FUNCTION_DECL
1599 && DECL_SOURCE_LINE (olddecl) == 0)
1600 {
1601 /* A function declaration for a predeclared function
1602 that isn't actually built in. */
1603 if (!TREE_PUBLIC (newdecl))
1604 {
1605 /* If you declare it as static, the
1606 default definition is overridden. */
1607 return 0;
1608 }
1609 else if (!types_match)
1610 {
1611 /* If the types don't match, preserve volatility indication.
1612 Later on, we will discard everything else about the
1613 default declaration. */
1614 TREE_THIS_VOLATILE (newdecl) |= TREE_THIS_VOLATILE (olddecl);
1615 }
1616 }
1617 /* Permit char *foo () to match void *foo (...) if not pedantic,
1618 if one of them came from a system header file. */
1619 else if (!types_match
1620 && TREE_CODE (olddecl) == FUNCTION_DECL
1621 && TREE_CODE (newdecl) == FUNCTION_DECL
1622 && TREE_CODE (TREE_TYPE (oldtype)) == POINTER_TYPE
1623 && TREE_CODE (TREE_TYPE (newtype)) == POINTER_TYPE
1624 && (DECL_IN_SYSTEM_HEADER (olddecl)
1625 || DECL_IN_SYSTEM_HEADER (newdecl))
1626 && ((TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (newtype))) == void_type_node
1627 && TYPE_ARG_TYPES (oldtype) == 0
1628 && self_promoting_args_p (TYPE_ARG_TYPES (newtype))
1629 && TREE_TYPE (TREE_TYPE (oldtype)) == char_type_node)
1630 ||
1631 (TREE_TYPE (TREE_TYPE (newtype)) == char_type_node
1632 && TYPE_ARG_TYPES (newtype) == 0
1633 && self_promoting_args_p (TYPE_ARG_TYPES (oldtype))
1634 && TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (oldtype))) == void_type_node)))
1635 {
1636 if (pedantic)
1637 pedwarn_with_decl (newdecl, "conflicting types for `%s'");
1638 /* Make sure we keep void * as ret type, not char *. */
1639 if (TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (oldtype))) == void_type_node)
1640 TREE_TYPE (newdecl) = newtype = oldtype;
1641
1642 /* Set DECL_IN_SYSTEM_HEADER, so that if we see another declaration
1643 we will come back here again. */
1644 DECL_IN_SYSTEM_HEADER (newdecl) = 1;
1645 }
1646 else if (!types_match
1647 /* Permit char *foo (int, ...); followed by char *foo ();
1648 if not pedantic. */
1649 && ! (TREE_CODE (olddecl) == FUNCTION_DECL
1650 && ! pedantic
1651 /* Return types must still match. */
1652 && comptypes (TREE_TYPE (oldtype),
1653 TREE_TYPE (newtype))
1654 && TYPE_ARG_TYPES (newtype) == 0))
1655 {
1656 error_with_decl (newdecl, "conflicting types for `%s'");
1657 /* Check for function type mismatch
1658 involving an empty arglist vs a nonempty one. */
1659 if (TREE_CODE (olddecl) == FUNCTION_DECL
1660 && comptypes (TREE_TYPE (oldtype),
1661 TREE_TYPE (newtype))
1662 && ((TYPE_ARG_TYPES (oldtype) == 0
1663 && DECL_INITIAL (olddecl) == 0)
1664 ||
1665 (TYPE_ARG_TYPES (newtype) == 0
1666 && DECL_INITIAL (newdecl) == 0)))
1667 {
1668 /* Classify the problem further. */
1669 tree t = TYPE_ARG_TYPES (oldtype);
1670 if (t == 0)
1671 t = TYPE_ARG_TYPES (newtype);
1672 for (; t; t = TREE_CHAIN (t))
1673 {
1674 tree type = TREE_VALUE (t);
1675
1676 if (TREE_CHAIN (t) == 0
1677 && TYPE_MAIN_VARIANT (type) != void_type_node)
1678 {
1679 error ("a parameter list with an ellipsis can't match an empty parameter name list declaration");
1680 break;
1681 }
1682
1683 if (simple_type_promotes_to (type) != NULL_TREE)
1684 {
1685 error ("an argument type that has a default promotion can't match an empty parameter name list declaration");
1686 break;
1687 }
1688 }
1689 }
1690 error_with_decl (olddecl, "previous declaration of `%s'");
1691 }
1692 else
1693 {
1694 errmsg = redeclaration_error_message (newdecl, olddecl);
1695 if (errmsg)
1696 {
1697 switch (errmsg)
1698 {
1699 case 1:
1700 error_with_decl (newdecl, "redefinition of `%s'");
1701 break;
1702 case 2:
1703 error_with_decl (newdecl, "redeclaration of `%s'");
1704 break;
1705 case 3:
1706 error_with_decl (newdecl, "conflicting declarations of `%s'");
1707 break;
1708 default:
1709 abort ();
1710 }
1711
1712 error_with_decl (olddecl,
1713 ((DECL_INITIAL (olddecl)
1714 && current_binding_level == global_binding_level)
1715 ? "`%s' previously defined here"
1716 : "`%s' previously declared here"));
1717 return 0;
1718 }
1719 else if (TREE_CODE (newdecl) == TYPE_DECL
1720 && (DECL_IN_SYSTEM_HEADER (olddecl)
1721 || DECL_IN_SYSTEM_HEADER (newdecl)))
1722 {
1723 warning_with_decl (newdecl, "redefinition of `%s'");
1724 warning_with_decl
1725 (olddecl,
1726 ((DECL_INITIAL (olddecl)
1727 && current_binding_level == global_binding_level)
1728 ? "`%s' previously defined here"
1729 : "`%s' previously declared here"));
1730 }
1731 else if (TREE_CODE (olddecl) == FUNCTION_DECL
1732 && DECL_INITIAL (olddecl) != 0
1733 && TYPE_ARG_TYPES (oldtype) == 0
1734 && TYPE_ARG_TYPES (newtype) != 0
1735 && TYPE_ACTUAL_ARG_TYPES (oldtype) != 0)
1736 {
1737 tree type, parm;
1738 int nargs;
1739 /* Prototype decl follows defn w/o prototype. */
1740
1741 for (parm = TYPE_ACTUAL_ARG_TYPES (oldtype),
1742 type = TYPE_ARG_TYPES (newtype),
1743 nargs = 1;
1744 ;
1745 parm = TREE_CHAIN (parm), type = TREE_CHAIN (type), nargs++)
1746 {
1747 if (TYPE_MAIN_VARIANT (TREE_VALUE (parm)) == void_type_node
1748 && TYPE_MAIN_VARIANT (TREE_VALUE (type)) == void_type_node)
1749 {
1750 warning_with_decl (newdecl, "prototype for `%s' follows");
1751 warning_with_decl (olddecl, "non-prototype definition here");
1752 break;
1753 }
1754 if (TYPE_MAIN_VARIANT (TREE_VALUE (parm)) == void_type_node
1755 || TYPE_MAIN_VARIANT (TREE_VALUE (type)) == void_type_node)
1756 {
1757 error_with_decl (newdecl,
1758 "prototype for `%s' follows and number of arguments doesn't match");
1759 error_with_decl (olddecl, "non-prototype definition here");
1760 errmsg = 1;
1761 break;
1762 }
1763 /* Type for passing arg must be consistent
1764 with that declared for the arg. */
1765 if (! comptypes (TREE_VALUE (parm), TREE_VALUE (type))
1766 /* If -traditional, allow `unsigned int' instead of `int'
1767 in the prototype. */
1768 && (! (flag_traditional
1769 && TYPE_MAIN_VARIANT (TREE_VALUE (parm)) == integer_type_node
1770 && TYPE_MAIN_VARIANT (TREE_VALUE (type)) == unsigned_type_node)))
1771 {
1772 error_with_decl (newdecl,
1773 "prototype for `%s' follows and argument %d doesn't match",
1774 nargs);
1775 error_with_decl (olddecl, "non-prototype definition here");
1776 errmsg = 1;
1777 break;
1778 }
1779 }
1780 }
1781 /* Warn about mismatches in various flags. */
1782 else
1783 {
1784 /* Warn if function is now inline
1785 but was previously declared not inline and has been called. */
1786 if (TREE_CODE (olddecl) == FUNCTION_DECL
1787 && ! DECL_DECLARED_INLINE_P (olddecl)
1788 && DECL_DECLARED_INLINE_P (newdecl)
1789 && TREE_USED (olddecl))
1790 warning_with_decl (newdecl,
1791 "`%s' declared inline after being called");
1792 if (TREE_CODE (olddecl) == FUNCTION_DECL
1793 && ! DECL_DECLARED_INLINE_P (olddecl)
1794 && DECL_DECLARED_INLINE_P (newdecl)
1795 && DECL_INITIAL (olddecl) != 0)
1796 warning_with_decl (newdecl,
1797 "`%s' declared inline after its definition");
1798
1799 /* If pedantic, warn when static declaration follows a non-static
1800 declaration. Otherwise, do so only for functions. */
1801 if ((pedantic || TREE_CODE (olddecl) == FUNCTION_DECL)
1802 && TREE_PUBLIC (olddecl)
1803 && !TREE_PUBLIC (newdecl))
1804 warning_with_decl (newdecl, "static declaration for `%s' follows non-static");
1805
1806 /* If warn_traditional, warn when a non-static function
1807 declaration follows a static one. */
1808 if (warn_traditional && !in_system_header
1809 && TREE_CODE (olddecl) == FUNCTION_DECL
1810 && !TREE_PUBLIC (olddecl)
1811 && TREE_PUBLIC (newdecl))
1812 warning_with_decl (newdecl, "non-static declaration for `%s' follows static");
1813
1814 /* Warn when const declaration follows a non-const
1815 declaration, but not for functions. */
1816 if (TREE_CODE (olddecl) != FUNCTION_DECL
1817 && !TREE_READONLY (olddecl)
1818 && TREE_READONLY (newdecl))
1819 warning_with_decl (newdecl, "const declaration for `%s' follows non-const");
1820 /* These bits are logically part of the type, for variables.
1821 But not for functions
1822 (where qualifiers are not valid ANSI anyway). */
1823 else if (pedantic && TREE_CODE (olddecl) != FUNCTION_DECL
1824 && (TREE_READONLY (newdecl) != TREE_READONLY (olddecl)
1825 || TREE_THIS_VOLATILE (newdecl) != TREE_THIS_VOLATILE (olddecl)))
1826 pedwarn_with_decl (newdecl, "type qualifiers for `%s' conflict with previous decl");
1827 }
1828 }
1829
1830 /* Optionally warn about more than one declaration for the same name. */
1831 if (errmsg == 0 && warn_redundant_decls && DECL_SOURCE_LINE (olddecl) != 0
1832 /* Don't warn about a function declaration
1833 followed by a definition. */
1834 && !(TREE_CODE (newdecl) == FUNCTION_DECL && DECL_INITIAL (newdecl) != 0
1835 && DECL_INITIAL (olddecl) == 0)
1836 /* Don't warn about extern decl followed by (tentative) definition. */
1837 && !(DECL_EXTERNAL (olddecl) && ! DECL_EXTERNAL (newdecl)))
1838 {
1839 warning_with_decl (newdecl, "redundant redeclaration of `%s' in same scope");
1840 warning_with_decl (olddecl, "previous declaration of `%s'");
1841 }
1842
1843 /* Copy all the DECL_... slots specified in the new decl
1844 except for any that we copy here from the old type.
1845
1846 Past this point, we don't change OLDTYPE and NEWTYPE
1847 even if we change the types of NEWDECL and OLDDECL. */
1848
1849 if (types_match)
1850 {
1851 /* When copying info to olddecl, we store into write_olddecl
1852 instead. This allows us to avoid modifying olddecl when
1853 different_binding_level is true. */
1854 tree write_olddecl = different_binding_level ? newdecl : olddecl;
1855
1856 /* Merge the data types specified in the two decls. */
1857 if (TREE_CODE (newdecl) != FUNCTION_DECL || !DECL_BUILT_IN (olddecl))
1858 {
1859 if (different_binding_level)
1860 {
1861 if (TYPE_ARG_TYPES (oldtype) != 0
1862 && TYPE_ARG_TYPES (newtype) == 0)
1863 TREE_TYPE (newdecl) = common_type (newtype, oldtype);
1864 else
1865 TREE_TYPE (newdecl)
1866 = build_type_attribute_variant
1867 (newtype,
1868 merge_attributes (TYPE_ATTRIBUTES (newtype),
1869 TYPE_ATTRIBUTES (oldtype)));
1870 }
1871 else
1872 TREE_TYPE (newdecl)
1873 = TREE_TYPE (olddecl)
1874 = common_type (newtype, oldtype);
1875 }
1876
1877 /* Lay the type out, unless already done. */
1878 if (oldtype != TREE_TYPE (newdecl))
1879 {
1880 if (TREE_TYPE (newdecl) != error_mark_node)
1881 layout_type (TREE_TYPE (newdecl));
1882 if (TREE_CODE (newdecl) != FUNCTION_DECL
1883 && TREE_CODE (newdecl) != TYPE_DECL
1884 && TREE_CODE (newdecl) != CONST_DECL)
1885 layout_decl (newdecl, 0);
1886 }
1887 else
1888 {
1889 /* Since the type is OLDDECL's, make OLDDECL's size go with. */
1890 DECL_SIZE (newdecl) = DECL_SIZE (olddecl);
1891 DECL_SIZE_UNIT (newdecl) = DECL_SIZE_UNIT (olddecl);
1892 DECL_MODE (newdecl) = DECL_MODE (olddecl);
1893 if (TREE_CODE (olddecl) != FUNCTION_DECL)
1894 if (DECL_ALIGN (olddecl) > DECL_ALIGN (newdecl))
1895 {
1896 DECL_ALIGN (newdecl) = DECL_ALIGN (olddecl);
1897 DECL_USER_ALIGN (newdecl) |= DECL_ALIGN (olddecl);
1898 }
1899 }
1900
1901 /* Keep the old rtl since we can safely use it. */
1902 COPY_DECL_RTL (olddecl, newdecl);
1903
1904 /* Merge the type qualifiers. */
1905 if (TREE_CODE (olddecl) == FUNCTION_DECL
1906 && DECL_BUILT_IN_NONANSI (olddecl) && TREE_THIS_VOLATILE (olddecl)
1907 && ! TREE_THIS_VOLATILE (newdecl))
1908 TREE_THIS_VOLATILE (write_olddecl) = 0;
1909
1910 if (TREE_READONLY (newdecl))
1911 TREE_READONLY (write_olddecl) = 1;
1912
1913 if (TREE_THIS_VOLATILE (newdecl))
1914 {
1915 TREE_THIS_VOLATILE (write_olddecl) = 1;
1916 if (TREE_CODE (newdecl) == VAR_DECL
1917 /* If an automatic variable is re-declared in the same
1918 function scope, but the old declaration was not
1919 volatile, make_var_volatile() would crash because the
1920 variable would have been assigned to a pseudo, not a
1921 MEM. Since this duplicate declaration is invalid
1922 anyway, we just skip the call. */
1923 && errmsg == 0)
1924 make_var_volatile (newdecl);
1925 }
1926
1927 /* Keep source location of definition rather than declaration. */
1928 /* When called with different_binding_level set, keep the old
1929 information so that meaningful diagnostics can be given. */
1930 if (DECL_INITIAL (newdecl) == 0 && DECL_INITIAL (olddecl) != 0
1931 && ! different_binding_level)
1932 {
1933 DECL_SOURCE_LINE (newdecl) = DECL_SOURCE_LINE (olddecl);
1934 DECL_SOURCE_FILE (newdecl) = DECL_SOURCE_FILE (olddecl);
1935 }
1936
1937 /* Merge the unused-warning information. */
1938 if (DECL_IN_SYSTEM_HEADER (olddecl))
1939 DECL_IN_SYSTEM_HEADER (newdecl) = 1;
1940 else if (DECL_IN_SYSTEM_HEADER (newdecl))
1941 DECL_IN_SYSTEM_HEADER (write_olddecl) = 1;
1942
1943 /* Merge the initialization information. */
1944 /* When called with different_binding_level set, don't copy over
1945 DECL_INITIAL, so that we don't accidentally change function
1946 declarations into function definitions. */
1947 if (DECL_INITIAL (newdecl) == 0 && ! different_binding_level)
1948 DECL_INITIAL (newdecl) = DECL_INITIAL (olddecl);
1949
1950 /* Merge the section attribute.
1951 We want to issue an error if the sections conflict but that must be
1952 done later in decl_attributes since we are called before attributes
1953 are assigned. */
1954 if (DECL_SECTION_NAME (newdecl) == NULL_TREE)
1955 DECL_SECTION_NAME (newdecl) = DECL_SECTION_NAME (olddecl);
1956
1957 /* Copy the assembler name.
1958 Currently, it can only be defined in the prototype. */
1959 COPY_DECL_ASSEMBLER_NAME (olddecl, newdecl);
1960
1961 if (TREE_CODE (newdecl) == FUNCTION_DECL)
1962 {
1963 DECL_STATIC_CONSTRUCTOR(newdecl) |= DECL_STATIC_CONSTRUCTOR(olddecl);
1964 DECL_STATIC_DESTRUCTOR (newdecl) |= DECL_STATIC_DESTRUCTOR (olddecl);
1965 DECL_NO_LIMIT_STACK (newdecl) |= DECL_NO_LIMIT_STACK (olddecl);
1966 DECL_NO_INSTRUMENT_FUNCTION_ENTRY_EXIT (newdecl)
1967 |= DECL_NO_INSTRUMENT_FUNCTION_ENTRY_EXIT (olddecl);
1968 }
1969 }
1970 /* If cannot merge, then use the new type and qualifiers,
1971 and don't preserve the old rtl. */
1972 else if (! different_binding_level)
1973 {
1974 TREE_TYPE (olddecl) = TREE_TYPE (newdecl);
1975 TREE_READONLY (olddecl) = TREE_READONLY (newdecl);
1976 TREE_THIS_VOLATILE (olddecl) = TREE_THIS_VOLATILE (newdecl);
1977 TREE_SIDE_EFFECTS (olddecl) = TREE_SIDE_EFFECTS (newdecl);
1978 }
1979
1980 /* Merge the storage class information. */
1981 merge_weak (newdecl, olddecl);
1982
1983 /* For functions, static overrides non-static. */
1984 if (TREE_CODE (newdecl) == FUNCTION_DECL)
1985 {
1986 TREE_PUBLIC (newdecl) &= TREE_PUBLIC (olddecl);
1987 /* This is since we don't automatically
1988 copy the attributes of NEWDECL into OLDDECL. */
1989 /* No need to worry about different_binding_level here because
1990 then TREE_PUBLIC (newdecl) was true. */
1991 TREE_PUBLIC (olddecl) = TREE_PUBLIC (newdecl);
1992 /* If this clears `static', clear it in the identifier too. */
1993 if (! TREE_PUBLIC (olddecl))
1994 TREE_PUBLIC (DECL_NAME (olddecl)) = 0;
1995 }
1996 if (DECL_EXTERNAL (newdecl))
1997 {
1998 if (! different_binding_level)
1999 {
2000 /* Don't mess with these flags on local externs; they remain
2001 external even if there's a declaration at file scope which
2002 isn't. */
2003 TREE_STATIC (newdecl) = TREE_STATIC (olddecl);
2004 DECL_EXTERNAL (newdecl) = DECL_EXTERNAL (olddecl);
2005 }
2006 /* An extern decl does not override previous storage class. */
2007 TREE_PUBLIC (newdecl) = TREE_PUBLIC (olddecl);
2008 if (! DECL_EXTERNAL (newdecl))
2009 DECL_CONTEXT (newdecl) = DECL_CONTEXT (olddecl);
2010 }
2011 else
2012 {
2013 TREE_STATIC (olddecl) = TREE_STATIC (newdecl);
2014 TREE_PUBLIC (olddecl) = TREE_PUBLIC (newdecl);
2015 }
2016
2017 if (TREE_CODE (newdecl) == FUNCTION_DECL)
2018 {
2019 /* If we're redefining a function previously defined as extern
2020 inline, make sure we emit debug info for the inline before we
2021 throw it away, in case it was inlined into a function that hasn't
2022 been written out yet. */
2023 if (new_is_definition && DECL_INITIAL (olddecl) && TREE_USED (olddecl))
2024 {
2025 (*debug_hooks->outlining_inline_function) (olddecl);
2026
2027 /* The new defn must not be inline. */
2028 DECL_INLINE (newdecl) = 0;
2029 DECL_UNINLINABLE (newdecl) = 1;
2030 }
2031 else
2032 {
2033 /* If either decl says `inline', this fn is inline,
2034 unless its definition was passed already. */
2035 if (DECL_DECLARED_INLINE_P (newdecl)
2036 || DECL_DECLARED_INLINE_P (olddecl))
2037 DECL_DECLARED_INLINE_P (newdecl) = 1;
2038
2039 DECL_UNINLINABLE (newdecl) = DECL_UNINLINABLE (olddecl)
2040 = (DECL_UNINLINABLE (newdecl) || DECL_UNINLINABLE (olddecl));
2041 }
2042
2043 if (DECL_BUILT_IN (olddecl))
2044 {
2045 /* Get rid of any built-in function if new arg types don't match it
2046 or if we have a function definition. */
2047 if (! types_match || new_is_definition)
2048 {
2049 if (! different_binding_level)
2050 {
2051 TREE_TYPE (olddecl) = TREE_TYPE (newdecl);
2052 DECL_BUILT_IN_CLASS (olddecl) = NOT_BUILT_IN;
2053 }
2054 }
2055 else
2056 {
2057 /* If redeclaring a builtin function, and not a definition,
2058 it stays built in. */
2059 DECL_BUILT_IN_CLASS (newdecl) = DECL_BUILT_IN_CLASS (olddecl);
2060 DECL_FUNCTION_CODE (newdecl) = DECL_FUNCTION_CODE (olddecl);
2061 }
2062 }
2063
2064 /* Also preserve various other info from the definition. */
2065 if (! new_is_definition)
2066 {
2067 DECL_RESULT (newdecl) = DECL_RESULT (olddecl);
2068 /* When called with different_binding_level set, don't copy over
2069 DECL_INITIAL, so that we don't accidentally change function
2070 declarations into function definitions. */
2071 if (! different_binding_level)
2072 DECL_INITIAL (newdecl) = DECL_INITIAL (olddecl);
2073 DECL_SAVED_INSNS (newdecl) = DECL_SAVED_INSNS (olddecl);
2074 DECL_SAVED_TREE (newdecl) = DECL_SAVED_TREE (olddecl);
2075 DECL_NUM_STMTS (newdecl) = DECL_NUM_STMTS (olddecl);
2076 DECL_ARGUMENTS (newdecl) = DECL_ARGUMENTS (olddecl);
2077
2078 /* Set DECL_INLINE on the declaration if we've got a body
2079 from which to instantiate. */
2080 if (DECL_INLINE (olddecl) && ! DECL_UNINLINABLE (newdecl))
2081 {
2082 DECL_INLINE (newdecl) = 1;
2083 DECL_ABSTRACT_ORIGIN (newdecl)
2084 = (different_binding_level
2085 ? DECL_ORIGIN (olddecl)
2086 : DECL_ABSTRACT_ORIGIN (olddecl));
2087 }
2088 }
2089 else
2090 {
2091 /* If a previous declaration said inline, mark the
2092 definition as inlinable. */
2093 if (DECL_DECLARED_INLINE_P (newdecl)
2094 && ! DECL_UNINLINABLE (newdecl))
2095 DECL_INLINE (newdecl) = 1;
2096 }
2097 }
2098 if (different_binding_level)
2099 return 0;
2100
2101 /* Copy most of the decl-specific fields of NEWDECL into OLDDECL.
2102 But preserve OLDDECL's DECL_UID. */
2103 {
2104 unsigned olddecl_uid = DECL_UID (olddecl);
2105
2106 memcpy ((char *) olddecl + sizeof (struct tree_common),
2107 (char *) newdecl + sizeof (struct tree_common),
2108 sizeof (struct tree_decl) - sizeof (struct tree_common));
2109 DECL_UID (olddecl) = olddecl_uid;
2110 }
2111
2112 /* NEWDECL contains the merged attribute lists.
2113 Update OLDDECL to be the same. */
2114 DECL_ATTRIBUTES (olddecl) = DECL_ATTRIBUTES (newdecl);
2115
2116 return 1;
2117}
2118
2119/* Check whether decl-node X shadows an existing declaration.
2120 OLDLOCAL is the old IDENTIFIER_LOCAL_VALUE of the DECL_NAME of X,
2121 which might be a NULL_TREE. */
2122static void
2123warn_if_shadowing (x, oldlocal)
2124 tree x, oldlocal;
2125{
2126 tree name;
2127
2128 if (DECL_EXTERNAL (x))
2129 return;
2130
2131 name = DECL_NAME (x);
2132
2133 /* Warn if shadowing an argument at the top level of the body. */
2134 if (oldlocal != 0
2135 /* This warning doesn't apply to the parms of a nested fcn. */
2136 && ! current_binding_level->parm_flag
2137 /* Check that this is one level down from the parms. */
2138 && current_binding_level->level_chain->parm_flag
2139 /* Check that the decl being shadowed
2140 comes from the parm level, one level up. */
2141 && chain_member (oldlocal, current_binding_level->level_chain->names))
2142 {
2143 if (TREE_CODE (oldlocal) == PARM_DECL)
2144 pedwarn ("declaration of `%s' shadows a parameter",
2145 IDENTIFIER_POINTER (name));
2146 else
2147 pedwarn ("declaration of `%s' shadows a symbol from the parameter list",
2148 IDENTIFIER_POINTER (name));
2149 }
2150 /* Maybe warn if shadowing something else. */
2151 else if (warn_shadow
2152 /* No shadow warnings for internally generated vars. */
2153 && DECL_SOURCE_LINE (x) != 0
2154 /* No shadow warnings for vars made for inlining. */
2155 && ! DECL_FROM_INLINE (x))
2156 {
2157 if (TREE_CODE (x) == PARM_DECL
2158 && current_binding_level->level_chain->parm_flag)
2159 /* Don't warn about the parm names in function declarator
2160 within a function declarator.
2161 It would be nice to avoid warning in any function
2162 declarator in a declaration, as opposed to a definition,
2163 but there is no way to tell it's not a definition. */
2164 ;
2165 else if (oldlocal)
2166 {
2167 if (TREE_CODE (oldlocal) == PARM_DECL)
2168 shadow_warning ("a parameter", name, oldlocal);
2169 else
2170 shadow_warning ("a previous local", name, oldlocal);
2171 }
2172 else if (IDENTIFIER_GLOBAL_VALUE (name) != 0
2173 && IDENTIFIER_GLOBAL_VALUE (name) != error_mark_node)
2174 shadow_warning ("a global declaration", name,
2175 IDENTIFIER_GLOBAL_VALUE (name));
2176 }
2177}
2178
2179/* Record a decl-node X as belonging to the current lexical scope.
2180 Check for errors (such as an incompatible declaration for the same
2181 name already seen in the same scope).
2182
2183 Returns either X or an old decl for the same name.
2184 If an old decl is returned, it may have been smashed
2185 to agree with what X says. */
2186
2187tree
2188pushdecl (x)
2189 tree x;
2190{
2191 tree t;
2192 tree name = DECL_NAME (x);
2193 struct binding_level *b = current_binding_level;
2194
2195 /* Functions need the lang_decl data. */
2196 if (TREE_CODE (x) == FUNCTION_DECL && ! DECL_LANG_SPECIFIC (x))
2197 DECL_LANG_SPECIFIC (x) = (struct lang_decl *)
2198 ggc_alloc_cleared (sizeof (struct lang_decl));
2199
2200 DECL_CONTEXT (x) = current_function_decl;
2201 /* A local extern declaration for a function doesn't constitute nesting.
2202 A local auto declaration does, since it's a forward decl
2203 for a nested function coming later. */
2204 if ((TREE_CODE (x) == FUNCTION_DECL || TREE_CODE (x) == VAR_DECL)
2205 && DECL_INITIAL (x) == 0 && DECL_EXTERNAL (x))
2206 DECL_CONTEXT (x) = 0;
2207
2208 if (name)
2209 {
2210 int different_binding_level = 0;
2211
2212 if (warn_nested_externs
2213 && DECL_EXTERNAL (x)
2214 && b != global_binding_level
2215 && x != IDENTIFIER_IMPLICIT_DECL (name)
2216 /* No error messages for __FUNCTION__ and __PRETTY_FUNCTION__. */
2217 && !DECL_IN_SYSTEM_HEADER (x))
2218 warning ("nested extern declaration of `%s'",
2219 IDENTIFIER_POINTER (name));
2220
2221 t = lookup_name_current_level (name);
2222 /* Don't type check externs here when -traditional. This is so that
2223 code with conflicting declarations inside blocks will get warnings
2224 not errors. X11 for instance depends on this. */
2225 if (! t && DECL_EXTERNAL (x) && TREE_PUBLIC (x) && ! flag_traditional)
2226 {
2227 t = IDENTIFIER_GLOBAL_VALUE (name);
2228 /* Type decls at global scope don't conflict with externs declared
2229 inside lexical blocks. */
2230 if (! t || TREE_CODE (t) == TYPE_DECL)
2231 /* If there's no visible global declaration, try for an
2232 invisible one. */
2233 t = IDENTIFIER_LIMBO_VALUE (name);
2234 different_binding_level = 1;
2235 }
2236 if (t != 0 && t == error_mark_node)
2237 /* error_mark_node is 0 for a while during initialization! */
2238 {
2239 t = 0;
2240 error_with_decl (x, "`%s' used prior to declaration");
2241 }
2242
2243 /* If this decl is `static' and an implicit decl was seen previously,
2244 warn. But don't complain if -traditional,
2245 since traditional compilers don't complain. */
2246 if (! flag_traditional && TREE_PUBLIC (name)
2247 /* Don't test for DECL_EXTERNAL, because grokdeclarator
2248 sets this for all functions. */
2249 && ! TREE_PUBLIC (x)
2250 && (TREE_CODE (x) == FUNCTION_DECL || b == global_binding_level)
2251 /* We used to warn also for explicit extern followed by static,
2252 but sometimes you need to do it that way. */
2253 && IDENTIFIER_IMPLICIT_DECL (name) != 0)
2254 {
2255 pedwarn ("`%s' was declared implicitly `extern' and later `static'",
2256 IDENTIFIER_POINTER (name));
2257 pedwarn_with_file_and_line
2258 (DECL_SOURCE_FILE (IDENTIFIER_IMPLICIT_DECL (name)),
2259 DECL_SOURCE_LINE (IDENTIFIER_IMPLICIT_DECL (name)),
2260 "previous declaration of `%s'",
2261 IDENTIFIER_POINTER (name));
2262 TREE_THIS_VOLATILE (name) = 1;
2263 }
2264
2265 if (t != 0 && duplicate_decls (x, t, different_binding_level))
2266 {
2267 if (TREE_CODE (t) == PARM_DECL)
2268 {
2269 /* Don't allow more than one "real" duplicate
2270 of a forward parm decl. */
2271 TREE_ASM_WRITTEN (t) = TREE_ASM_WRITTEN (x);
2272 return t;
2273 }
2274 return t;
2275 }
2276
2277 /* If we are processing a typedef statement, generate a whole new
2278 ..._TYPE node (which will be just an variant of the existing
2279 ..._TYPE node with identical properties) and then install the
2280 TYPE_DECL node generated to represent the typedef name as the
2281 TYPE_NAME of this brand new (duplicate) ..._TYPE node.
2282
2283 The whole point here is to end up with a situation where each
2284 and every ..._TYPE node the compiler creates will be uniquely
2285 associated with AT MOST one node representing a typedef name.
2286 This way, even though the compiler substitutes corresponding
2287 ..._TYPE nodes for TYPE_DECL (i.e. "typedef name") nodes very
2288 early on, later parts of the compiler can always do the reverse
2289 translation and get back the corresponding typedef name. For
2290 example, given:
2291
2292 typedef struct S MY_TYPE;
2293 MY_TYPE object;
2294
2295 Later parts of the compiler might only know that `object' was of
2296 type `struct S' if it were not for code just below. With this
2297 code however, later parts of the compiler see something like:
2298
2299 struct S' == struct S
2300 typedef struct S' MY_TYPE;
2301 struct S' object;
2302
2303 And they can then deduce (from the node for type struct S') that
2304 the original object declaration was:
2305
2306 MY_TYPE object;
2307
2308 Being able to do this is important for proper support of protoize,
2309 and also for generating precise symbolic debugging information
2310 which takes full account of the programmer's (typedef) vocabulary.
2311
2312 Obviously, we don't want to generate a duplicate ..._TYPE node if
2313 the TYPE_DECL node that we are now processing really represents a
2314 standard built-in type.
2315
2316 Since all standard types are effectively declared at line zero
2317 in the source file, we can easily check to see if we are working
2318 on a standard type by checking the current value of lineno. */
2319
2320 if (TREE_CODE (x) == TYPE_DECL)
2321 {
2322 if (DECL_SOURCE_LINE (x) == 0)
2323 {
2324 if (TYPE_NAME (TREE_TYPE (x)) == 0)
2325 TYPE_NAME (TREE_TYPE (x)) = x;
2326 }
2327 else if (TREE_TYPE (x) != error_mark_node
2328 && DECL_ORIGINAL_TYPE (x) == NULL_TREE)
2329 {
2330 tree tt = TREE_TYPE (x);
2331 DECL_ORIGINAL_TYPE (x) = tt;
2332 tt = build_type_copy (tt);
2333 TYPE_NAME (tt) = x;
2334 TREE_USED (tt) = TREE_USED (x);
2335 TREE_TYPE (x) = tt;
2336 }
2337 }
2338
2339 /* Multiple external decls of the same identifier ought to match.
2340 Check against both global declarations (when traditional) and out of
2341 scope (limbo) block level declarations.
2342
2343 We get warnings about inline functions where they are defined.
2344 Avoid duplicate warnings where they are used. */
2345 if (TREE_PUBLIC (x)
2346 && ! (TREE_CODE (x) == FUNCTION_DECL && DECL_INLINE (x)))
2347 {
2348 tree decl;
2349
2350 if (flag_traditional && IDENTIFIER_GLOBAL_VALUE (name) != 0
2351 && (DECL_EXTERNAL (IDENTIFIER_GLOBAL_VALUE (name))
2352 || TREE_PUBLIC (IDENTIFIER_GLOBAL_VALUE (name))))
2353 decl = IDENTIFIER_GLOBAL_VALUE (name);
2354 else if (IDENTIFIER_LIMBO_VALUE (name) != 0)
2355 /* Decls in limbo are always extern, so no need to check that. */
2356 decl = IDENTIFIER_LIMBO_VALUE (name);
2357 else
2358 decl = 0;
2359
2360 if (decl && ! comptypes (TREE_TYPE (x), TREE_TYPE (decl))
2361 /* If old decl is built-in, we already warned if we should. */
2362 && !DECL_BUILT_IN (decl))
2363 {
2364 pedwarn_with_decl (x,
2365 "type mismatch with previous external decl");
2366 pedwarn_with_decl (decl, "previous external decl of `%s'");
2367 }
2368 }
2369
2370 /* If a function has had an implicit declaration, and then is defined,
2371 make sure they are compatible. */
2372
2373 if (IDENTIFIER_IMPLICIT_DECL (name) != 0
2374 && IDENTIFIER_GLOBAL_VALUE (name) == 0
2375 && TREE_CODE (x) == FUNCTION_DECL
2376 && ! comptypes (TREE_TYPE (x),
2377 TREE_TYPE (IDENTIFIER_IMPLICIT_DECL (name))))
2378 {
2379 warning_with_decl (x, "type mismatch with previous implicit declaration");
2380 warning_with_decl (IDENTIFIER_IMPLICIT_DECL (name),
2381 "previous implicit declaration of `%s'");
2382 }
2383
2384 /* In PCC-compatibility mode, extern decls of vars with no current decl
2385 take effect at top level no matter where they are. */
2386 if (flag_traditional && DECL_EXTERNAL (x)
2387 && lookup_name (name) == 0)
2388 {
2389 tree type = TREE_TYPE (x);
2390
2391 /* But don't do this if the type contains temporary nodes. */
2392 while (type)
2393 {
2394 if (type == error_mark_node)
2395 break;
2396 if (TYPE_CONTEXT (type))
2397 {
2398 warning_with_decl (x, "type of external `%s' is not global");
2399 /* By exiting the loop early, we leave TYPE nonzero,
2400 and thus prevent globalization of the decl. */
2401 break;
2402 }
2403 else if (TREE_CODE (type) == FUNCTION_TYPE
2404 && TYPE_ARG_TYPES (type) != 0)
2405 /* The types might not be truly local,
2406 but the list of arg types certainly is temporary.
2407 Since prototypes are nontraditional,
2408 ok not to do the traditional thing. */
2409 break;
2410 type = TREE_TYPE (type);
2411 }
2412
2413 if (type == 0)
2414 b = global_binding_level;
2415 }
2416
2417 /* This name is new in its binding level.
2418 Install the new declaration and return it. */
2419 if (b == global_binding_level)
2420 {
2421 /* Install a global value. */
2422
2423 /* If the first global decl has external linkage,
2424 warn if we later see static one. */
2425 if (IDENTIFIER_GLOBAL_VALUE (name) == 0 && TREE_PUBLIC (x))
2426 TREE_PUBLIC (name) = 1;
2427
2428 IDENTIFIER_GLOBAL_VALUE (name) = x;
2429
2430 /* We no longer care about any previous block level declarations. */
2431 IDENTIFIER_LIMBO_VALUE (name) = 0;
2432
2433 /* Don't forget if the function was used via an implicit decl. */
2434 if (IDENTIFIER_IMPLICIT_DECL (name)
2435 && TREE_USED (IDENTIFIER_IMPLICIT_DECL (name)))
2436 TREE_USED (x) = 1, TREE_USED (name) = 1;
2437
2438 /* Don't forget if its address was taken in that way. */
2439 if (IDENTIFIER_IMPLICIT_DECL (name)
2440 && TREE_ADDRESSABLE (IDENTIFIER_IMPLICIT_DECL (name)))
2441 TREE_ADDRESSABLE (x) = 1;
2442
2443 /* Warn about mismatches against previous implicit decl. */
2444 if (IDENTIFIER_IMPLICIT_DECL (name) != 0
2445 /* If this real decl matches the implicit, don't complain. */
2446 && ! (TREE_CODE (x) == FUNCTION_DECL
2447 && (TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (x)))
2448 == integer_type_node)))
2449 pedwarn ("`%s' was previously implicitly declared to return `int'",
2450 IDENTIFIER_POINTER (name));
2451
2452 /* If this decl is `static' and an `extern' was seen previously,
2453 that is erroneous. */
2454 if (TREE_PUBLIC (name)
2455 && ! TREE_PUBLIC (x) && ! DECL_EXTERNAL (x))
2456 {
2457 /* Okay to redeclare an ANSI built-in as static. */
2458 if (t != 0 && DECL_BUILT_IN (t))
2459 ;
2460 /* Okay to declare a non-ANSI built-in as anything. */
2461 else if (t != 0 && DECL_BUILT_IN_NONANSI (t))
2462 ;
2463 /* Okay to have global type decl after an earlier extern
2464 declaration inside a lexical block. */
2465 else if (TREE_CODE (x) == TYPE_DECL)
2466 ;
2467 else if (IDENTIFIER_IMPLICIT_DECL (name))
2468 {
2469 if (! TREE_THIS_VOLATILE (name))
2470 pedwarn ("`%s' was declared implicitly `extern' and later `static'",
2471 IDENTIFIER_POINTER (name));
2472 }
2473 else
2474 pedwarn ("`%s' was declared `extern' and later `static'",
2475 IDENTIFIER_POINTER (name));
2476 }
2477 }
2478 else
2479 {
2480 /* Here to install a non-global value. */
2481 tree oldlocal = IDENTIFIER_LOCAL_VALUE (name);
2482 tree oldglobal = IDENTIFIER_GLOBAL_VALUE (name);
2483
2484 IDENTIFIER_LOCAL_VALUE (name) = x;
2485
2486 /* If this is an extern function declaration, see if we
2487 have a global definition or declaration for the function. */
2488 if (oldlocal == 0
2489 && oldglobal != 0
2490 && TREE_CODE (x) == FUNCTION_DECL
2491 && TREE_CODE (oldglobal) == FUNCTION_DECL
2492 && DECL_EXTERNAL (x)
2493 && ! DECL_DECLARED_INLINE_P (x))
2494 {
2495 /* We have one. Their types must agree. */
2496 if (! comptypes (TREE_TYPE (x),
2497 TREE_TYPE (IDENTIFIER_GLOBAL_VALUE (name))))
2498 pedwarn_with_decl (x, "extern declaration of `%s' doesn't match global one");
2499 else
2500 {
2501 /* Inner extern decl is inline if global one is.
2502 Copy enough to really inline it. */
2503 if (DECL_DECLARED_INLINE_P (oldglobal))
2504 {
2505 DECL_DECLARED_INLINE_P (x)
2506 = DECL_DECLARED_INLINE_P (oldglobal);
2507 DECL_INLINE (x) = DECL_INLINE (oldglobal);
2508 DECL_INITIAL (x) = (current_function_decl == oldglobal
2509 ? 0 : DECL_INITIAL (oldglobal));
2510 DECL_SAVED_INSNS (x) = DECL_SAVED_INSNS (oldglobal);
2511 DECL_NUM_STMTS (x) = DECL_NUM_STMTS (oldglobal);
2512 DECL_ARGUMENTS (x) = DECL_ARGUMENTS (oldglobal);
2513 DECL_RESULT (x) = DECL_RESULT (oldglobal);
2514 TREE_ASM_WRITTEN (x) = TREE_ASM_WRITTEN (oldglobal);
2515 DECL_ABSTRACT_ORIGIN (x)
2516 = DECL_ABSTRACT_ORIGIN (oldglobal);
2517 }
2518 /* Inner extern decl is built-in if global one is. */
2519 if (DECL_BUILT_IN (oldglobal))
2520 {
2521 DECL_BUILT_IN_CLASS (x) = DECL_BUILT_IN_CLASS (oldglobal);
2522 DECL_FUNCTION_CODE (x) = DECL_FUNCTION_CODE (oldglobal);
2523 }
2524 /* Keep the arg types from a file-scope fcn defn. */
2525 if (TYPE_ARG_TYPES (TREE_TYPE (oldglobal)) != 0
2526 && DECL_INITIAL (oldglobal)
2527 && TYPE_ARG_TYPES (TREE_TYPE (x)) == 0)
2528 TREE_TYPE (x) = TREE_TYPE (oldglobal);
2529 }
2530 }
2531
2532#if 0
2533 /* This case is probably sometimes the right thing to do. */
2534 /* If we have a local external declaration,
2535 then any file-scope declaration should not
2536 have been static. */
2537 if (oldlocal == 0 && oldglobal != 0
2538 && !TREE_PUBLIC (oldglobal)
2539 && DECL_EXTERNAL (x) && TREE_PUBLIC (x))
2540 warning ("`%s' locally external but globally static",
2541 IDENTIFIER_POINTER (name));
2542#endif
2543
2544 /* If we have a local external declaration,
2545 and no file-scope declaration has yet been seen,
2546 then if we later have a file-scope decl it must not be static. */
2547 if (oldlocal == 0
2548 && DECL_EXTERNAL (x)
2549 && TREE_PUBLIC (x))
2550 {
2551 if (oldglobal == 0)
2552 TREE_PUBLIC (name) = 1;
2553
2554 /* Save this decl, so that we can do type checking against
2555 other decls after it falls out of scope.
2556
2557 Only save it once. This prevents temporary decls created in
2558 expand_inline_function from being used here, since this
2559 will have been set when the inline function was parsed.
2560 It also helps give slightly better warnings. */
2561 if (IDENTIFIER_LIMBO_VALUE (name) == 0)
2562 IDENTIFIER_LIMBO_VALUE (name) = x;
2563 }
2564
2565 warn_if_shadowing (x, oldlocal);
2566
2567 /* If storing a local value, there may already be one (inherited).
2568 If so, record it for restoration when this binding level ends. */
2569 if (oldlocal != 0)
2570 b->shadowed = tree_cons (name, oldlocal, b->shadowed);
2571 }
2572
2573 /* Keep count of variables in this level with incomplete type.
2574 If the input is erroneous, we can have error_mark in the type
2575 slot (e.g. "f(void a, ...)") - that doesn't count as an
2576 incomplete type. */
2577 if (TREE_TYPE (x) != error_mark_node
2578 && !COMPLETE_TYPE_P (TREE_TYPE (x)))
2579 {
2580 tree element = TREE_TYPE (x);
2581
2582 while (TREE_CODE (element) == ARRAY_TYPE)
2583 element = TREE_TYPE (element);
2584 if (TREE_CODE (element) == RECORD_TYPE
2585 || TREE_CODE (element) == UNION_TYPE)
2586 ++b->n_incomplete;
2587 }
2588 }
2589
2590 /* Put decls on list in reverse order.
2591 We will reverse them later if necessary. */
2592 TREE_CHAIN (x) = b->names;
2593 b->names = x;
2594
2595 return x;
2596}
2597
2598/* Like pushdecl, only it places X in GLOBAL_BINDING_LEVEL, if appropriate. */
2599
2600tree
2601pushdecl_top_level (x)
2602 tree x;
2603{
2604 tree t;
2605 struct binding_level *b = current_binding_level;
2606
2607 current_binding_level = global_binding_level;
2608 t = pushdecl (x);
2609 current_binding_level = b;
2610 return t;
2611}
2612
2613/* Generate an implicit declaration for identifier FUNCTIONID
2614 as a function of type int (). Print a warning if appropriate. */
2615
2616tree
2617implicitly_declare (functionid)
2618 tree functionid;
2619{
2620 tree decl;
2621 int traditional_warning = 0;
2622 /* Only one "implicit declaration" warning per identifier. */
2623 int implicit_warning;
2624
2625 /* We used to reuse an old implicit decl here,
2626 but this loses with inline functions because it can clobber
2627 the saved decl chains. */
2628#if 0
2629 if (IDENTIFIER_IMPLICIT_DECL (functionid) != 0)
2630 decl = IDENTIFIER_IMPLICIT_DECL (functionid);
2631 else
2632#endif
2633 decl = build_decl (FUNCTION_DECL, functionid, default_function_type);
2634
2635 /* Warn of implicit decl following explicit local extern decl.
2636 This is probably a program designed for traditional C. */
2637 if (TREE_PUBLIC (functionid) && IDENTIFIER_GLOBAL_VALUE (functionid) == 0)
2638 traditional_warning = 1;
2639
2640 /* Warn once of an implicit declaration. */
2641 implicit_warning = (IDENTIFIER_IMPLICIT_DECL (functionid) == 0);
2642
2643 DECL_EXTERNAL (decl) = 1;
2644 TREE_PUBLIC (decl) = 1;
2645
2646 /* Record that we have an implicit decl and this is it. */
2647 IDENTIFIER_IMPLICIT_DECL (functionid) = decl;
2648
2649 /* ANSI standard says implicit declarations are in the innermost block.
2650 So we record the decl in the standard fashion.
2651 If flag_traditional is set, pushdecl does it top-level. */
2652 pushdecl (decl);
2653
2654 /* This is a no-op in c-lang.c or something real in objc-actions.c. */
2655 maybe_objc_check_decl (decl);
2656
2657 rest_of_decl_compilation (decl, NULL, 0, 0);
2658
2659 if (implicit_warning)
2660 implicit_decl_warning (functionid);
2661 else if (warn_traditional && traditional_warning)
2662 warning ("function `%s' was previously declared within a block",
2663 IDENTIFIER_POINTER (functionid));
2664
2665 /* Write a record describing this implicit function declaration to the
2666 prototypes file (if requested). */
2667
2668 gen_aux_info_record (decl, 0, 1, 0);
2669
2670 /* Possibly apply some default attributes to this implicit declaration. */
2671 decl_attributes (&decl, NULL_TREE, 0);
2672
2673 return decl;
2674}
2675
2676void
2677implicit_decl_warning (id)
2678 tree id;
2679{
2680 const char *name = IDENTIFIER_POINTER (id);
2681 if (mesg_implicit_function_declaration == 2)
2682 error ("implicit declaration of function `%s'", name);
2683 else if (mesg_implicit_function_declaration == 1)
2684 warning ("implicit declaration of function `%s'", name);
2685}
2686
2687/* Return zero if the declaration NEWDECL is valid
2688 when the declaration OLDDECL (assumed to be for the same name)
2689 has already been seen.
2690 Otherwise return 1 if NEWDECL is a redefinition, 2 if it is a redeclaration,
2691 and 3 if it is a conflicting declaration. */
2692
2693static int
2694redeclaration_error_message (newdecl, olddecl)
2695 tree newdecl, olddecl;
2696{
2697 if (TREE_CODE (newdecl) == TYPE_DECL)
2698 {
2699 if (flag_traditional && TREE_TYPE (newdecl) == TREE_TYPE (olddecl))
2700 return 0;
2701 /* pushdecl creates distinct types for TYPE_DECLs by calling
2702 build_type_copy, so the above comparison generally fails. We do
2703 another test against the TYPE_MAIN_VARIANT of the olddecl, which
2704 is equivalent to what this code used to do before the build_type_copy
2705 call. The variant type distinction should not matter for traditional
2706 code, because it doesn't have type qualifiers. */
2707 if (flag_traditional
2708 && TYPE_MAIN_VARIANT (TREE_TYPE (olddecl)) == TREE_TYPE (newdecl))
2709 return 0;
2710 if (DECL_IN_SYSTEM_HEADER (olddecl) || DECL_IN_SYSTEM_HEADER (newdecl))
2711 return 0;
2712 return 1;
2713 }
2714 else if (TREE_CODE (newdecl) == FUNCTION_DECL)
2715 {
2716 /* Declarations of functions can insist on internal linkage
2717 but they can't be inconsistent with internal linkage,
2718 so there can be no error on that account.
2719 However defining the same name twice is no good. */
2720 if (DECL_INITIAL (olddecl) != 0 && DECL_INITIAL (newdecl) != 0
2721 /* However, defining once as extern inline and a second
2722 time in another way is ok. */
2723 && ! (DECL_DECLARED_INLINE_P (olddecl) && DECL_EXTERNAL (olddecl)
2724 && ! (DECL_DECLARED_INLINE_P (newdecl)
2725 && DECL_EXTERNAL (newdecl))))
2726 return 1;
2727 return 0;
2728 }
2729 else if (DECL_CONTEXT (newdecl) == NULL_TREE)
2730 {
2731 /* Objects declared at top level: */
2732 /* If at least one is a reference, it's ok. */
2733 if (DECL_EXTERNAL (newdecl) || DECL_EXTERNAL (olddecl))
2734 return 0;
2735 /* Reject two definitions. */
2736 if (DECL_INITIAL (olddecl) != 0 && DECL_INITIAL (newdecl) != 0)
2737 return 1;
2738 /* Now we have two tentative defs, or one tentative and one real def. */
2739 /* Insist that the linkage match. */
2740 if (TREE_PUBLIC (olddecl) != TREE_PUBLIC (newdecl))
2741 return 3;
2742 return 0;
2743 }
2744 else if (current_binding_level->parm_flag
2745 && TREE_ASM_WRITTEN (olddecl) && !TREE_ASM_WRITTEN (newdecl))
2746 return 0;
2747 else
2748 {
2749 /* Newdecl has block scope. If olddecl has block scope also, then
2750 reject two definitions, and reject a definition together with an
2751 external reference. Otherwise, it is OK, because newdecl must
2752 be an extern reference to olddecl. */
2753 if (!(DECL_EXTERNAL (newdecl) && DECL_EXTERNAL (olddecl))
2754 && DECL_CONTEXT (newdecl) == DECL_CONTEXT (olddecl))
2755 return 2;
2756 return 0;
2757 }
2758}
2759
2760/* Get the LABEL_DECL corresponding to identifier ID as a label.
2761 Create one if none exists so far for the current function.
2762 This function is called for both label definitions and label references. */
2763
2764tree
2765lookup_label (id)
2766 tree id;
2767{
2768 tree decl = IDENTIFIER_LABEL_VALUE (id);
2769
2770 if (current_function_decl == 0)
2771 {
2772 error ("label %s referenced outside of any function",
2773 IDENTIFIER_POINTER (id));
2774 return 0;
2775 }
2776
2777 /* Use a label already defined or ref'd with this name. */
2778 if (decl != 0)
2779 {
2780 /* But not if it is inherited and wasn't declared to be inheritable. */
2781 if (DECL_CONTEXT (decl) != current_function_decl
2782 && ! C_DECLARED_LABEL_FLAG (decl))
2783 return shadow_label (id);
2784 return decl;
2785 }
2786
2787 decl = build_decl (LABEL_DECL, id, void_type_node);
2788
2789 /* A label not explicitly declared must be local to where it's ref'd. */
2790 DECL_CONTEXT (decl) = current_function_decl;
2791
2792 DECL_MODE (decl) = VOIDmode;
2793
2794 /* Say where one reference is to the label,
2795 for the sake of the error if it is not defined. */
2796 DECL_SOURCE_LINE (decl) = lineno;
2797 DECL_SOURCE_FILE (decl) = input_filename;
2798
2799 IDENTIFIER_LABEL_VALUE (id) = decl;
2800
2801 named_labels = tree_cons (NULL_TREE, decl, named_labels);
2802
2803 return decl;
2804}
2805
2806/* Make a label named NAME in the current function,
2807 shadowing silently any that may be inherited from containing functions
2808 or containing scopes.
2809
2810 Note that valid use, if the label being shadowed
2811 comes from another scope in the same function,
2812 requires calling declare_nonlocal_label right away. */
2813
2814tree
2815shadow_label (name)
2816 tree name;
2817{
2818 tree decl = IDENTIFIER_LABEL_VALUE (name);
2819
2820 if (decl != 0)
2821 {
2822 tree dup;
2823
2824 /* Check to make sure that the label hasn't already been declared
2825 at this label scope */
2826 for (dup = named_labels; dup; dup = TREE_CHAIN (dup))
2827 if (TREE_VALUE (dup) == decl)
2828 {
2829 error ("duplicate label declaration `%s'",
2830 IDENTIFIER_POINTER (name));
2831 error_with_decl (TREE_VALUE (dup),
2832 "this is a previous declaration");
2833 /* Just use the previous declaration. */
2834 return lookup_label (name);
2835 }
2836
2837 shadowed_labels = tree_cons (NULL_TREE, decl, shadowed_labels);
2838 IDENTIFIER_LABEL_VALUE (name) = decl = 0;
2839 }
2840
2841 return lookup_label (name);
2842}
2843
2844/* Define a label, specifying the location in the source file.
2845 Return the LABEL_DECL node for the label, if the definition is valid.
2846 Otherwise return 0. */
2847
2848tree
2849define_label (filename, line, name)
2850 const char *filename;
2851 int line;
2852 tree name;
2853{
2854 tree decl = lookup_label (name);
2855
2856 /* If label with this name is known from an outer context, shadow it. */
2857 if (decl != 0 && DECL_CONTEXT (decl) != current_function_decl)
2858 {
2859 shadowed_labels = tree_cons (NULL_TREE, decl, shadowed_labels);
2860 IDENTIFIER_LABEL_VALUE (name) = 0;
2861 decl = lookup_label (name);
2862 }
2863
2864 if (warn_traditional && !in_system_header && lookup_name (name))
2865 warning_with_file_and_line (filename, line,
2866 "traditional C lacks a separate namespace for labels, identifier `%s' conflicts",
2867 IDENTIFIER_POINTER (name));
2868
2869 if (DECL_INITIAL (decl) != 0)
2870 {
2871 error_with_file_and_line (filename, line, "duplicate label `%s'",
2872 IDENTIFIER_POINTER (name));
2873 return 0;
2874 }
2875 else
2876 {
2877 /* Mark label as having been defined. */
2878 DECL_INITIAL (decl) = error_mark_node;
2879 /* Say where in the source. */
2880 DECL_SOURCE_FILE (decl) = filename;
2881 DECL_SOURCE_LINE (decl) = line;
2882 return decl;
2883 }
2884}
2885
2886/* Return the list of declarations of the current level.
2887 Note that this list is in reverse order unless/until
2888 you nreverse it; and when you do nreverse it, you must
2889 store the result back using `storedecls' or you will lose. */
2890
2891tree
2892getdecls ()
2893{
2894 return current_binding_level->names;
2895}
2896
2897/* Return the list of type-tags (for structs, etc) of the current level. */
2898
2899tree
2900gettags ()
2901{
2902 return current_binding_level->tags;
2903}
2904
2905/* Store the list of declarations of the current level.
2906 This is done for the parameter declarations of a function being defined,
2907 after they are modified in the light of any missing parameters. */
2908
2909static void
2910storedecls (decls)
2911 tree decls;
2912{
2913 current_binding_level->names = decls;
2914}
2915
2916/* Similarly, store the list of tags of the current level. */
2917
2918static void
2919storetags (tags)
2920 tree tags;
2921{
2922 current_binding_level->tags = tags;
2923}
2924
2925/* Given NAME, an IDENTIFIER_NODE,
2926 return the structure (or union or enum) definition for that name.
2927 Searches binding levels from BINDING_LEVEL up to the global level.
2928 If THISLEVEL_ONLY is nonzero, searches only the specified context
2929 (but skips any tag-transparent contexts to find one that is
2930 meaningful for tags).
2931 CODE says which kind of type the caller wants;
2932 it is RECORD_TYPE or UNION_TYPE or ENUMERAL_TYPE.
2933 If the wrong kind of type is found, an error is reported. */
2934
2935static tree
2936lookup_tag (code, name, binding_level, thislevel_only)
2937 enum tree_code code;
2938 struct binding_level *binding_level;
2939 tree name;
2940 int thislevel_only;
2941{
2942 struct binding_level *level;
2943 int thislevel = 1;
2944
2945 for (level = binding_level; level; level = level->level_chain)
2946 {
2947 tree tail;
2948 for (tail = level->tags; tail; tail = TREE_CHAIN (tail))
2949 {
2950 if (TREE_PURPOSE (tail) == name)
2951 {
2952 if (TREE_CODE (TREE_VALUE (tail)) != code)
2953 {
2954 /* Definition isn't the kind we were looking for. */
2955 pending_invalid_xref = name;
2956 pending_invalid_xref_file = input_filename;
2957 pending_invalid_xref_line = lineno;
2958 /* If in the same binding level as a declaration as a tag
2959 of a different type, this must not be allowed to
2960 shadow that tag, so give the error immediately.
2961 (For example, "struct foo; union foo;" is invalid.) */
2962 if (thislevel)
2963 pending_xref_error ();
2964 }
2965 return TREE_VALUE (tail);
2966 }
2967 }
2968 if (! level->tag_transparent)
2969 {
2970 if (thislevel_only)
2971 return NULL_TREE;
2972 thislevel = 0;
2973 }
2974 }
2975 return NULL_TREE;
2976}
2977
2978/* Print an error message now
2979 for a recent invalid struct, union or enum cross reference.
2980 We don't print them immediately because they are not invalid
2981 when used in the `struct foo;' construct for shadowing. */
2982
2983void
2984pending_xref_error ()
2985{
2986 if (pending_invalid_xref != 0)
2987 error_with_file_and_line (pending_invalid_xref_file,
2988 pending_invalid_xref_line,
2989 "`%s' defined as wrong kind of tag",
2990 IDENTIFIER_POINTER (pending_invalid_xref));
2991 pending_invalid_xref = 0;
2992}
2993
2994/* Given a type, find the tag that was defined for it and return the tag name.
2995 Otherwise return 0. */
2996
2997static tree
2998lookup_tag_reverse (type)
2999 tree type;
3000{
3001 struct binding_level *level;
3002
3003 for (level = current_binding_level; level; level = level->level_chain)
3004 {
3005 tree tail;
3006 for (tail = level->tags; tail; tail = TREE_CHAIN (tail))
3007 {
3008 if (TREE_VALUE (tail) == type)
3009 return TREE_PURPOSE (tail);
3010 }
3011 }
3012 return NULL_TREE;
3013}
3014
3015/* Look up NAME in the current binding level and its superiors
3016 in the namespace of variables, functions and typedefs.
3017 Return a ..._DECL node of some kind representing its definition,
3018 or return 0 if it is undefined. */
3019
3020tree
3021lookup_name (name)
3022 tree name;
3023{
3024 tree val;
3025
3026 if (current_binding_level != global_binding_level
3027 && IDENTIFIER_LOCAL_VALUE (name))
3028 val = IDENTIFIER_LOCAL_VALUE (name);
3029 else
3030 val = IDENTIFIER_GLOBAL_VALUE (name);
3031 return val;
3032}
3033
3034/* Similar to `lookup_name' but look only at current binding level. */
3035
3036tree
3037lookup_name_current_level (name)
3038 tree name;
3039{
3040 tree t;
3041
3042 if (current_binding_level == global_binding_level)
3043 return IDENTIFIER_GLOBAL_VALUE (name);
3044
3045 if (IDENTIFIER_LOCAL_VALUE (name) == 0)
3046 return 0;
3047
3048 for (t = current_binding_level->names; t; t = TREE_CHAIN (t))
3049 if (DECL_NAME (t) == name)
3050 break;
3051
3052 return t;
3053}
3054
3055/* Mark ARG for GC. */
3056
3057static void
3058mark_binding_level (arg)
3059 void *arg;
3060{
3061 struct binding_level *level = *(struct binding_level **) arg;
3062
3063 for (; level != 0; level = level->level_chain)
3064 {
3065 ggc_mark_tree (level->names);
3066 ggc_mark_tree (level->tags);
3067 ggc_mark_tree (level->shadowed);
3068 ggc_mark_tree (level->blocks);
3069 ggc_mark_tree (level->this_block);
3070 ggc_mark_tree (level->parm_order);
3071 }
3072}
3073
3074/* Create the predefined scalar types of C,
3075 and some nodes representing standard constants (0, 1, (void *) 0).
3076 Initialize the global binding level.
3077 Make definitions for built-in primitive functions. */
3078
3079void
3080c_init_decl_processing ()
3081{
3082 tree endlink;
3083 tree ptr_ftype_void, ptr_ftype_ptr;
3084
3085 /* Adds some ggc roots, and reserved words for c-parse.in. */
3086 c_parse_init ();
3087
3088 current_function_decl = NULL;
3089 named_labels = NULL;
3090 current_binding_level = NULL_BINDING_LEVEL;
3091 free_binding_level = NULL_BINDING_LEVEL;
3092
3093 /* Make the binding_level structure for global names. */
3094 pushlevel (0);
3095 global_binding_level = current_binding_level;
3096
3097 build_common_tree_nodes (flag_signed_char);
3098
3099 c_common_nodes_and_builtins ();
3100
3101 boolean_type_node = integer_type_node;
3102 boolean_true_node = integer_one_node;
3103 boolean_false_node = integer_zero_node;
3104
3105 c_bool_type_node = make_unsigned_type (BOOL_TYPE_SIZE);
3106 TREE_SET_CODE (c_bool_type_node, BOOLEAN_TYPE);
3107 TYPE_MAX_VALUE (c_bool_type_node) = build_int_2 (1, 0);
3108 TREE_TYPE (TYPE_MAX_VALUE (c_bool_type_node)) = c_bool_type_node;
3109 TYPE_PRECISION (c_bool_type_node) = 1;
3110 pushdecl (build_decl (TYPE_DECL, get_identifier ("_Bool"),
3111 c_bool_type_node));
3112 c_bool_false_node = build_int_2 (0, 0);
3113 TREE_TYPE (c_bool_false_node) = c_bool_type_node;
3114 c_bool_true_node = build_int_2 (1, 0);
3115 TREE_TYPE (c_bool_true_node) = c_bool_type_node;
3116
3117 endlink = void_list_node;
3118 ptr_ftype_void = build_function_type (ptr_type_node, endlink);
3119 ptr_ftype_ptr
3120 = build_function_type (ptr_type_node,
3121 tree_cons (NULL_TREE, ptr_type_node, endlink));
3122
3123 /* Types which are common to the fortran compiler and libf2c. When
3124 changing these, you also need to be concerned with f/com.h. */
3125
3126 if (TYPE_PRECISION (float_type_node)
3127 == TYPE_PRECISION (long_integer_type_node))
3128 {
3129 g77_integer_type_node = long_integer_type_node;
3130 g77_uinteger_type_node = long_unsigned_type_node;
3131 }
3132 else if (TYPE_PRECISION (float_type_node)
3133 == TYPE_PRECISION (integer_type_node))
3134 {
3135 g77_integer_type_node = integer_type_node;
3136 g77_uinteger_type_node = unsigned_type_node;
3137 }
3138 else
3139 g77_integer_type_node = g77_uinteger_type_node = NULL_TREE;
3140
3141 if (g77_integer_type_node != NULL_TREE)
3142 {
3143 pushdecl (build_decl (TYPE_DECL, get_identifier ("__g77_integer"),
3144 g77_integer_type_node));
3145 pushdecl (build_decl (TYPE_DECL, get_identifier ("__g77_uinteger"),
3146 g77_uinteger_type_node));
3147 }
3148
3149 if (TYPE_PRECISION (float_type_node) * 2
3150 == TYPE_PRECISION (long_integer_type_node))
3151 {
3152 g77_longint_type_node = long_integer_type_node;
3153 g77_ulongint_type_node = long_unsigned_type_node;
3154 }
3155 else if (TYPE_PRECISION (float_type_node) * 2
3156 == TYPE_PRECISION (long_long_integer_type_node))
3157 {
3158 g77_longint_type_node = long_long_integer_type_node;
3159 g77_ulongint_type_node = long_long_unsigned_type_node;
3160 }
3161 else
3162 g77_longint_type_node = g77_ulongint_type_node = NULL_TREE;
3163
3164 if (g77_longint_type_node != NULL_TREE)
3165 {
3166 pushdecl (build_decl (TYPE_DECL, get_identifier ("__g77_longint"),
3167 g77_longint_type_node));
3168 pushdecl (build_decl (TYPE_DECL, get_identifier ("__g77_ulongint"),
3169 g77_ulongint_type_node));
3170 }
3171
3172 pedantic_lvalues = pedantic;
3173
3174 make_fname_decl = c_make_fname_decl;
3175 start_fname_decls ();
3176
3177 incomplete_decl_finalize_hook = finish_incomplete_decl;
3178
3179 /* Record our roots. */
3180
3181 ggc_add_tree_root (c_global_trees, CTI_MAX);
3182 ggc_add_root (&c_stmt_tree, 1, sizeof c_stmt_tree, mark_stmt_tree);
3183 ggc_add_tree_root (&c_scope_stmt_stack, 1);
3184 ggc_add_tree_root (&named_labels, 1);
3185 ggc_add_tree_root (&shadowed_labels, 1);
3186 ggc_add_root (&current_binding_level, 1, sizeof current_binding_level,
3187 mark_binding_level);
3188 ggc_add_root (&label_level_chain, 1, sizeof label_level_chain,
3189 mark_binding_level);
3190 ggc_add_tree_root (&static_ctors, 1);
3191 ggc_add_tree_root (&static_dtors, 1);
3192}
3193
3194/* Create the VAR_DECL for __FUNCTION__ etc. ID is the name to give the
3195 decl, NAME is the initialization string and TYPE_DEP indicates whether
3196 NAME depended on the type of the function. As we don't yet implement
3197 delayed emission of static data, we mark the decl as emitted
3198 so it is not placed in the output. Anything using it must therefore pull
3199 out the STRING_CST initializer directly. This does mean that these names
3200 are string merging candidates, which is wrong for C99's __func__. FIXME. */
3201
3202static tree
3203c_make_fname_decl (id, type_dep)
3204 tree id;
3205 int type_dep;
3206{
3207 const char *name = fname_as_string (type_dep);
3208 tree decl, type, init;
3209 size_t length = strlen (name);
3210
3211 type = build_array_type
3212 (build_qualified_type (char_type_node, TYPE_QUAL_CONST),
3213 build_index_type (size_int (length)));
3214
3215 decl = build_decl (VAR_DECL, id, type);
3216 /* We don't push the decl, so have to set its context here. */
3217 DECL_CONTEXT (decl) = current_function_decl;
3218
3219 TREE_STATIC (decl) = 1;
3220 TREE_READONLY (decl) = 1;
3221 DECL_ARTIFICIAL (decl) = 1;
3222
3223 init = build_string (length + 1, name);
3224 TREE_TYPE (init) = type;
3225 DECL_INITIAL (decl) = init;
3226
3227 TREE_USED (decl) = 1;
3228
3229 finish_decl (decl, init, NULL_TREE);
3230
3231 return decl;
3232}
3233
3234/* Return a definition for a builtin function named NAME and whose data type
3235 is TYPE. TYPE should be a function type with argument types.
3236 FUNCTION_CODE tells later passes how to compile calls to this function.
3237 See tree.h for its possible values.
3238
3239 If LIBRARY_NAME is nonzero, use that for DECL_ASSEMBLER_NAME,
3240 the name to be called if we can't opencode the function. */
3241
3242tree
3243builtin_function (name, type, function_code, class, library_name)
3244 const char *name;
3245 tree type;
3246 int function_code;
3247 enum built_in_class class;
3248 const char *library_name;
3249{
3250 tree decl = build_decl (FUNCTION_DECL, get_identifier (name), type);
3251 DECL_EXTERNAL (decl) = 1;
3252 TREE_PUBLIC (decl) = 1;
3253 /* If -traditional, permit redefining a builtin function any way you like.
3254 (Though really, if the program redefines these functions,
3255 it probably won't work right unless compiled with -fno-builtin.) */
3256 if (flag_traditional && name[0] != '_')
3257 DECL_BUILT_IN_NONANSI (decl) = 1;
3258 if (library_name)
3259 SET_DECL_ASSEMBLER_NAME (decl, get_identifier (library_name));
3260 make_decl_rtl (decl, NULL);
3261 pushdecl (decl);
3262 DECL_BUILT_IN_CLASS (decl) = class;
3263 DECL_FUNCTION_CODE (decl) = function_code;
3264
3265 /* The return builtins leave the current function. */
3266 if (function_code == BUILT_IN_RETURN || function_code == BUILT_IN_EH_RETURN)
3267 TREE_THIS_VOLATILE (decl) = 1;
3268
3269 /* Warn if a function in the namespace for users
3270 is used without an occasion to consider it declared. */
3271 if (name[0] != '_' || name[1] != '_')
3272 C_DECL_ANTICIPATED (decl) = 1;
3273
3274 /* Possibly apply some default attributes to this built-in function. */
3275 decl_attributes (&decl, NULL_TREE, 0);
3276
3277 return decl;
3278}
3279
3280/* Apply default attributes to a function, if a system function with default
3281 attributes. */
3282
3283void
3284insert_default_attributes (decl)
3285 tree decl;
3286{
3287 if (!TREE_PUBLIC (decl))
3288 return;
3289 c_common_insert_default_attributes (decl);
3290}
3291
3292/* Called when a declaration is seen that contains no names to declare.
3293 If its type is a reference to a structure, union or enum inherited
3294 from a containing scope, shadow that tag name for the current scope
3295 with a forward reference.
3296 If its type defines a new named structure or union
3297 or defines an enum, it is valid but we need not do anything here.
3298 Otherwise, it is an error. */
3299
3300void
3301shadow_tag (declspecs)
3302 tree declspecs;
3303{
3304 shadow_tag_warned (declspecs, 0);
3305}
3306
3307void
3308shadow_tag_warned (declspecs, warned)
3309 tree declspecs;
3310 int warned;
3311 /* 1 => we have done a pedwarn. 2 => we have done a warning, but
3312 no pedwarn. */
3313{
3314 int found_tag = 0;
3315 tree link;
3316 tree specs, attrs;
3317
3318 pending_invalid_xref = 0;
3319
3320 /* Remove the attributes from declspecs, since they will confuse the
3321 following code. */
3322 split_specs_attrs (declspecs, &specs, &attrs);
3323
3324 for (link = specs; link; link = TREE_CHAIN (link))
3325 {
3326 tree value = TREE_VALUE (link);
3327 enum tree_code code = TREE_CODE (value);
3328
3329 if (code == RECORD_TYPE || code == UNION_TYPE || code == ENUMERAL_TYPE)
3330 /* Used to test also that TYPE_SIZE (value) != 0.
3331 That caused warning for `struct foo;' at top level in the file. */
3332 {
3333 tree name = lookup_tag_reverse (value);
3334 tree t;
3335
3336 found_tag++;
3337
3338 if (name == 0)
3339 {
3340 if (warned != 1 && code != ENUMERAL_TYPE)
3341 /* Empty unnamed enum OK */
3342 {
3343 pedwarn ("unnamed struct/union that defines no instances");
3344 warned = 1;
3345 }
3346 }
3347 else
3348 {
3349 t = lookup_tag (code, name, current_binding_level, 1);
3350
3351 if (t == 0)
3352 {
3353 t = make_node (code);
3354 pushtag (name, t);
3355 }
3356 }
3357 }
3358 else
3359 {
3360 if (!warned && ! in_system_header)
3361 {
3362 warning ("useless keyword or type name in empty declaration");
3363 warned = 2;
3364 }
3365 }
3366 }
3367
3368 if (found_tag > 1)
3369 error ("two types specified in one empty declaration");
3370
3371 if (warned != 1)
3372 {
3373 if (found_tag == 0)
3374 pedwarn ("empty declaration");
3375 }
3376}
3377
3378/* Construct an array declarator. EXPR is the expression inside [], or
3379 NULL_TREE. QUALS are the type qualifiers inside the [] (to be applied
3380 to the pointer to which a parameter array is converted). STATIC_P is
3381 non-zero if "static" is inside the [], zero otherwise. VLA_UNSPEC_P
3382 is non-zero is the array is [*], a VLA of unspecified length which is
3383 nevertheless a complete type (not currently implemented by GCC),
3384 zero otherwise. The declarator is constructed as an ARRAY_REF
3385 (to be decoded by grokdeclarator), whose operand 0 is what's on the
3386 left of the [] (filled by in set_array_declarator_type) and operand 1
3387 is the expression inside; whose TREE_TYPE is the type qualifiers and
3388 which has TREE_STATIC set if "static" is used. */
3389
3390tree
3391build_array_declarator (expr, quals, static_p, vla_unspec_p)
3392 tree expr;
3393 tree quals;
3394 int static_p;
3395 int vla_unspec_p;
3396{
3397 tree decl;
3398 decl = build_nt (ARRAY_REF, NULL_TREE, expr);
3399 TREE_TYPE (decl) = quals;
3400 TREE_STATIC (decl) = (static_p ? 1 : 0);
3401 if (pedantic && !flag_isoc99)
3402 {
3403 if (static_p || quals != NULL_TREE)
3404 pedwarn ("ISO C89 does not support `static' or type qualifiers in parameter array declarators");
3405 if (vla_unspec_p)
3406 pedwarn ("ISO C89 does not support `[*]' array declarators");
3407 }
3408 if (vla_unspec_p)
3409 warning ("GCC does not yet properly implement `[*]' array declarators");
3410 return decl;
3411}
3412
3413/* Set the type of an array declarator. DECL is the declarator, as
3414 constructed by build_array_declarator; TYPE is what appears on the left
3415 of the [] and goes in operand 0. ABSTRACT_P is non-zero if it is an
3416 abstract declarator, zero otherwise; this is used to reject static and
3417 type qualifiers in abstract declarators, where they are not in the
3418 C99 grammar. */
3419
3420tree
3421set_array_declarator_type (decl, type, abstract_p)
3422 tree decl;
3423 tree type;
3424 int abstract_p;
3425{
3426 TREE_OPERAND (decl, 0) = type;
3427 if (abstract_p && (TREE_TYPE (decl) != NULL_TREE || TREE_STATIC (decl)))
3428 error ("static or type qualifiers in abstract declarator");
3429 return decl;
3430}
3431
3432/* Decode a "typename", such as "int **", returning a ..._TYPE node. */
3433
3434tree
3435groktypename (typename)
3436 tree typename;
3437{
3438 tree specs, attrs;
3439
3440 if (TREE_CODE (typename) != TREE_LIST)
3441 return typename;
3442
3443 split_specs_attrs (TREE_PURPOSE (typename), &specs, &attrs);
3444
3445 typename = grokdeclarator (TREE_VALUE (typename), specs, TYPENAME, 0);
3446
3447 /* Apply attributes. */
3448 decl_attributes (&typename, attrs, 0);
3449
3450 return typename;
3451}
3452
3453/* Return a PARM_DECL node for a given pair of specs and declarator. */
3454
3455tree
3456groktypename_in_parm_context (typename)
3457 tree typename;
3458{
3459 if (TREE_CODE (typename) != TREE_LIST)
3460 return typename;
3461 return grokdeclarator (TREE_VALUE (typename),
3462 TREE_PURPOSE (typename),
3463 PARM, 0);
3464}
3465
3466/* Decode a declarator in an ordinary declaration or data definition.
3467 This is called as soon as the type information and variable name
3468 have been parsed, before parsing the initializer if any.
3469 Here we create the ..._DECL node, fill in its type,
3470 and put it on the list of decls for the current context.
3471 The ..._DECL node is returned as the value.
3472
3473 Exception: for arrays where the length is not specified,
3474 the type is left null, to be filled in by `finish_decl'.
3475
3476 Function definitions do not come here; they go to start_function
3477 instead. However, external and forward declarations of functions
3478 do go through here. Structure field declarations are done by
3479 grokfield and not through here. */
3480
3481tree
3482start_decl (declarator, declspecs, initialized, attributes)
3483 tree declarator, declspecs;
3484 int initialized;
3485 tree attributes;
3486{
3487 tree decl;
3488 tree tem;
3489
3490 /* An object declared as __attribute__((deprecated)) suppresses
3491 warnings of uses of other deprecated items. */
3492 if (lookup_attribute ("deprecated", attributes))
3493 deprecated_state = DEPRECATED_SUPPRESS;
3494
3495 decl = grokdeclarator (declarator, declspecs,
3496 NORMAL, initialized);
3497
3498 deprecated_state = DEPRECATED_NORMAL;
3499
3500 if (warn_main > 0 && TREE_CODE (decl) != FUNCTION_DECL
3501 && MAIN_NAME_P (DECL_NAME (decl)))
3502 warning_with_decl (decl, "`%s' is usually a function");
3503
3504 if (initialized)
3505 /* Is it valid for this decl to have an initializer at all?
3506 If not, set INITIALIZED to zero, which will indirectly
3507 tell `finish_decl' to ignore the initializer once it is parsed. */
3508 switch (TREE_CODE (decl))
3509 {
3510 case TYPE_DECL:
3511 /* typedef foo = bar means give foo the same type as bar.
3512 We haven't parsed bar yet, so `finish_decl' will fix that up.
3513 Any other case of an initialization in a TYPE_DECL is an error. */
3514 if (pedantic || list_length (declspecs) > 1)
3515 {
3516 error ("typedef `%s' is initialized",
3517 IDENTIFIER_POINTER (DECL_NAME (decl)));
3518 initialized = 0;
3519 }
3520 break;
3521
3522 case FUNCTION_DECL:
3523 error ("function `%s' is initialized like a variable",
3524 IDENTIFIER_POINTER (DECL_NAME (decl)));
3525 initialized = 0;
3526 break;
3527
3528 case PARM_DECL:
3529 /* DECL_INITIAL in a PARM_DECL is really DECL_ARG_TYPE. */
3530 error ("parameter `%s' is initialized",
3531 IDENTIFIER_POINTER (DECL_NAME (decl)));
3532 initialized = 0;
3533 break;
3534
3535 default:
3536 /* Don't allow initializations for incomplete types
3537 except for arrays which might be completed by the initialization. */
3538
3539 /* This can happen if the array size is an undefined macro. We already
3540 gave a warning, so we don't need another one. */
3541 if (TREE_TYPE (decl) == error_mark_node)
3542 initialized = 0;
3543 else if (COMPLETE_TYPE_P (TREE_TYPE (decl)))
3544 {
3545 /* A complete type is ok if size is fixed. */
3546
3547 if (TREE_CODE (TYPE_SIZE (TREE_TYPE (decl))) != INTEGER_CST
3548 || C_DECL_VARIABLE_SIZE (decl))
3549 {
3550 error ("variable-sized object may not be initialized");
3551 initialized = 0;
3552 }
3553 }
3554 else if (TREE_CODE (TREE_TYPE (decl)) != ARRAY_TYPE)
3555 {
3556 error ("variable `%s' has initializer but incomplete type",
3557 IDENTIFIER_POINTER (DECL_NAME (decl)));
3558 initialized = 0;
3559 }
3560 else if (!COMPLETE_TYPE_P (TREE_TYPE (TREE_TYPE (decl))))
3561 {
3562 error ("elements of array `%s' have incomplete type",
3563 IDENTIFIER_POINTER (DECL_NAME (decl)));
3564 initialized = 0;
3565 }
3566 }
3567
3568 if (initialized)
3569 {
3570#if 0
3571 /* Seems redundant with grokdeclarator. */
3572 if (current_binding_level != global_binding_level
3573 && DECL_EXTERNAL (decl)
3574 && TREE_CODE (decl) != FUNCTION_DECL)
3575 warning ("declaration of `%s' has `extern' and is initialized",
3576 IDENTIFIER_POINTER (DECL_NAME (decl)));
3577#endif
3578 DECL_EXTERNAL (decl) = 0;
3579 if (current_binding_level == global_binding_level)
3580 TREE_STATIC (decl) = 1;
3581
3582 /* Tell `pushdecl' this is an initialized decl
3583 even though we don't yet have the initializer expression.
3584 Also tell `finish_decl' it may store the real initializer. */
3585 DECL_INITIAL (decl) = error_mark_node;
3586 }
3587
3588 /* If this is a function declaration, write a record describing it to the
3589 prototypes file (if requested). */
3590
3591 if (TREE_CODE (decl) == FUNCTION_DECL)
3592 gen_aux_info_record (decl, 0, 0, TYPE_ARG_TYPES (TREE_TYPE (decl)) != 0);
3593
3594 /* ANSI specifies that a tentative definition which is not merged with
3595 a non-tentative definition behaves exactly like a definition with an
3596 initializer equal to zero. (Section 3.7.2)
3597 -fno-common gives strict ANSI behavior. Usually you don't want it.
3598 This matters only for variables with external linkage. */
3599 if (! flag_no_common || ! TREE_PUBLIC (decl))
3600 DECL_COMMON (decl) = 1;
3601
3602 /* Set attributes here so if duplicate decl, will have proper attributes. */
3603 decl_attributes (&decl, attributes, 0);
3604
3605 /* If #pragma weak was used, mark the decl weak now. */
3606 if (current_binding_level == global_binding_level)
3607 maybe_apply_pragma_weak (decl);
3608
3609 if (TREE_CODE (decl) == FUNCTION_DECL
3610 && DECL_DECLARED_INLINE_P (decl)
3611 && DECL_UNINLINABLE (decl)
3612 && lookup_attribute ("noinline", DECL_ATTRIBUTES (decl)))
3613 warning_with_decl (decl,
3614 "inline function `%s' given attribute noinline");
3615
3616 /* Add this decl to the current binding level.
3617 TEM may equal DECL or it may be a previous decl of the same name. */
3618 tem = pushdecl (decl);
3619
3620 /* For a local variable, define the RTL now. */
3621 if (current_binding_level != global_binding_level
3622 /* But not if this is a duplicate decl
3623 and we preserved the rtl from the previous one
3624 (which may or may not happen). */
3625 && !DECL_RTL_SET_P (tem)
3626 && !DECL_CONTEXT (tem))
3627 {
3628 if (TREE_TYPE (tem) != error_mark_node
3629 && COMPLETE_TYPE_P (TREE_TYPE (tem)))
3630 expand_decl (tem);
3631 else if (TREE_CODE (TREE_TYPE (tem)) == ARRAY_TYPE
3632 && DECL_INITIAL (tem) != 0)
3633 expand_decl (tem);
3634 }
3635
3636 return tem;
3637}
3638
3639/* Finish processing of a declaration;
3640 install its initial value.
3641 If the length of an array type is not known before,
3642 it must be determined now, from the initial value, or it is an error. */
3643
3644void
3645finish_decl (decl, init, asmspec_tree)
3646 tree decl, init;
3647 tree asmspec_tree;
3648{
3649 tree type = TREE_TYPE (decl);
3650 int was_incomplete = (DECL_SIZE (decl) == 0);
3651 const char *asmspec = 0;
3652
3653 /* If a name was specified, get the string. */
3654 if (current_binding_level == global_binding_level)
3655 asmspec_tree = maybe_apply_renaming_pragma (decl, asmspec_tree);
3656 if (asmspec_tree)
3657 asmspec = TREE_STRING_POINTER (asmspec_tree);
3658
3659 /* If `start_decl' didn't like having an initialization, ignore it now. */
3660 if (init != 0 && DECL_INITIAL (decl) == 0)
3661 init = 0;
3662
3663 /* Don't crash if parm is initialized. */
3664 if (TREE_CODE (decl) == PARM_DECL)
3665 init = 0;
3666
3667 if (init)
3668 {
3669 if (TREE_CODE (decl) != TYPE_DECL)
3670 store_init_value (decl, init);
3671 else
3672 {
3673 /* typedef foo = bar; store the type of bar as the type of foo. */
3674 TREE_TYPE (decl) = TREE_TYPE (init);
3675 DECL_INITIAL (decl) = init = 0;
3676 }
3677 }
3678
3679 /* Deduce size of array from initialization, if not already known */
3680 if (TREE_CODE (type) == ARRAY_TYPE
3681 && TYPE_DOMAIN (type) == 0
3682 && TREE_CODE (decl) != TYPE_DECL)
3683 {
3684 int do_default
3685 = (TREE_STATIC (decl)
3686 /* Even if pedantic, an external linkage array
3687 may have incomplete type at first. */
3688 ? pedantic && !TREE_PUBLIC (decl)
3689 : !DECL_EXTERNAL (decl));
3690 int failure
3691 = complete_array_type (type, DECL_INITIAL (decl), do_default);
3692
3693 /* Get the completed type made by complete_array_type. */
3694 type = TREE_TYPE (decl);
3695
3696 if (failure == 1)
3697 error_with_decl (decl, "initializer fails to determine size of `%s'");
3698
3699 else if (failure == 2)
3700 {
3701 if (do_default)
3702 error_with_decl (decl, "array size missing in `%s'");
3703 /* If a `static' var's size isn't known,
3704 make it extern as well as static, so it does not get
3705 allocated.
3706 If it is not `static', then do not mark extern;
3707 finish_incomplete_decl will give it a default size
3708 and it will get allocated. */
3709 else if (!pedantic && TREE_STATIC (decl) && ! TREE_PUBLIC (decl))
3710 DECL_EXTERNAL (decl) = 1;
3711 }
3712
3713 /* TYPE_MAX_VALUE is always one less than the number of elements
3714 in the array, because we start counting at zero. Therefore,
3715 warn only if the value is less than zero. */
3716 else if (pedantic && TYPE_DOMAIN (type) != 0
3717 && tree_int_cst_sgn (TYPE_MAX_VALUE (TYPE_DOMAIN (type))) < 0)
3718 error_with_decl (decl, "zero or negative size array `%s'");
3719
3720 layout_decl (decl, 0);
3721 }
3722
3723 if (TREE_CODE (decl) == VAR_DECL)
3724 {
3725 if (DECL_SIZE (decl) == 0 && TREE_TYPE (decl) != error_mark_node
3726 && COMPLETE_TYPE_P (TREE_TYPE (decl)))
3727 layout_decl (decl, 0);
3728
3729 if (DECL_SIZE (decl) == 0
3730 /* Don't give an error if we already gave one earlier. */
3731 && TREE_TYPE (decl) != error_mark_node
3732 && (TREE_STATIC (decl)
3733 ?
3734 /* A static variable with an incomplete type
3735 is an error if it is initialized.
3736 Also if it is not file scope.
3737 Otherwise, let it through, but if it is not `extern'
3738 then it may cause an error message later. */
3739 (DECL_INITIAL (decl) != 0
3740 || DECL_CONTEXT (decl) != 0)
3741 :
3742 /* An automatic variable with an incomplete type
3743 is an error. */
3744 !DECL_EXTERNAL (decl)))
3745 {
3746 error_with_decl (decl, "storage size of `%s' isn't known");
3747 TREE_TYPE (decl) = error_mark_node;
3748 }
3749
3750 if ((DECL_EXTERNAL (decl) || TREE_STATIC (decl))
3751 && DECL_SIZE (decl) != 0)
3752 {
3753 if (TREE_CODE (DECL_SIZE (decl)) == INTEGER_CST)
3754 constant_expression_warning (DECL_SIZE (decl));
3755 else
3756 error_with_decl (decl, "storage size of `%s' isn't constant");
3757 }
3758
3759 if (TREE_USED (type))
3760 TREE_USED (decl) = 1;
3761 }
3762
3763 /* If this is a function and an assembler name is specified, it isn't
3764 builtin any more. Also reset DECL_RTL so we can give it its new
3765 name. */
3766 if (TREE_CODE (decl) == FUNCTION_DECL && asmspec)
3767 {
3768 DECL_BUILT_IN_CLASS (decl) = NOT_BUILT_IN;
3769 SET_DECL_RTL (decl, NULL_RTX);
3770 SET_DECL_ASSEMBLER_NAME (decl, get_identifier (asmspec));
3771 }
3772
3773 /* Output the assembler code and/or RTL code for variables and functions,
3774 unless the type is an undefined structure or union.
3775 If not, it will get done when the type is completed. */
3776
3777 if (TREE_CODE (decl) == VAR_DECL || TREE_CODE (decl) == FUNCTION_DECL)
3778 {
3779 /* This is a no-op in c-lang.c or something real in objc-actions.c. */
3780 maybe_objc_check_decl (decl);
3781
3782 if (!DECL_CONTEXT (decl))
3783 {
3784 if (DECL_INITIAL (decl) == NULL_TREE
3785 || DECL_INITIAL (decl) == error_mark_node)
3786 /* Don't output anything
3787 when a tentative file-scope definition is seen.
3788 But at end of compilation, do output code for them. */
3789 DECL_DEFER_OUTPUT (decl) = 1;
3790 rest_of_decl_compilation (decl, asmspec,
3791 (DECL_CONTEXT (decl) == 0
3792 || TREE_ASM_WRITTEN (decl)), 0);
3793 }
3794 else
3795 {
3796 /* This is a local variable. If there is an ASMSPEC, the
3797 user has requested that we handle it specially. */
3798 if (asmspec)
3799 {
3800 /* In conjunction with an ASMSPEC, the `register'
3801 keyword indicates that we should place the variable
3802 in a particular register. */
3803 if (DECL_REGISTER (decl))
3804 DECL_C_HARD_REGISTER (decl) = 1;
3805
3806 /* If this is not a static variable, issue a warning.
3807 It doesn't make any sense to give an ASMSPEC for an
3808 ordinary, non-register local variable. Historically,
3809 GCC has accepted -- but ignored -- the ASMSPEC in
3810 this case. */
3811 if (TREE_CODE (decl) == VAR_DECL
3812 && !DECL_REGISTER (decl)
3813 && !TREE_STATIC (decl))
3814 warning_with_decl (decl,
3815 "ignoring asm-specifier for non-static local variable `%s'");
3816 else
3817 SET_DECL_ASSEMBLER_NAME (decl, get_identifier (asmspec));
3818 }
3819
3820 if (TREE_CODE (decl) != FUNCTION_DECL)
3821 add_decl_stmt (decl);
3822 }
3823
3824 if (DECL_CONTEXT (decl) != 0)
3825 {
3826 /* Recompute the RTL of a local array now
3827 if it used to be an incomplete type. */
3828 if (was_incomplete
3829 && ! TREE_STATIC (decl) && ! DECL_EXTERNAL (decl))
3830 {
3831 /* If we used it already as memory, it must stay in memory. */
3832 TREE_ADDRESSABLE (decl) = TREE_USED (decl);
3833 /* If it's still incomplete now, no init will save it. */
3834 if (DECL_SIZE (decl) == 0)
3835 DECL_INITIAL (decl) = 0;
3836 }
3837 }
3838 }
3839
3840 if (TREE_CODE (decl) == TYPE_DECL)
3841 {
3842 /* This is a no-op in c-lang.c or something real in objc-actions.c. */
3843 maybe_objc_check_decl (decl);
3844 rest_of_decl_compilation (decl, NULL, DECL_CONTEXT (decl) == 0, 0);
3845 }
3846
3847 /* At the end of a declaration, throw away any variable type sizes
3848 of types defined inside that declaration. There is no use
3849 computing them in the following function definition. */
3850 if (current_binding_level == global_binding_level)
3851 get_pending_sizes ();
3852}
3853
3854/* If DECL has a cleanup, build and return that cleanup here.
3855 This is a callback called by expand_expr. */
3856
3857tree
3858maybe_build_cleanup (decl)
3859 tree decl ATTRIBUTE_UNUSED;
3860{
3861 /* There are no cleanups in C. */
3862 return NULL_TREE;
3863}
3864
3865/* Given a parsed parameter declaration,
3866 decode it into a PARM_DECL and push that on the current binding level.
3867 Also, for the sake of forward parm decls,
3868 record the given order of parms in `parm_order'. */
3869
3870void
3871push_parm_decl (parm)
3872 tree parm;
3873{
3874 tree decl;
3875 int old_immediate_size_expand = immediate_size_expand;
3876 /* Don't try computing parm sizes now -- wait till fn is called. */
3877 immediate_size_expand = 0;
3878
3879 decl = grokdeclarator (TREE_VALUE (TREE_PURPOSE (parm)),
3880 TREE_PURPOSE (TREE_PURPOSE (parm)), PARM, 0);
3881 decl_attributes (&decl, TREE_VALUE (parm), 0);
3882
3883#if 0
3884 if (DECL_NAME (decl))
3885 {
3886 tree olddecl;
3887 olddecl = lookup_name (DECL_NAME (decl));
3888 if (pedantic && olddecl != 0 && TREE_CODE (olddecl) == TYPE_DECL)
3889 pedwarn_with_decl (decl,
3890 "ISO C forbids parameter `%s' shadowing typedef");
3891 }
3892#endif
3893
3894 decl = pushdecl (decl);
3895
3896 immediate_size_expand = old_immediate_size_expand;
3897
3898 current_binding_level->parm_order
3899 = tree_cons (NULL_TREE, decl, current_binding_level->parm_order);
3900
3901 /* Add this decl to the current binding level. */
3902 finish_decl (decl, NULL_TREE, NULL_TREE);
3903}
3904
3905/* Clear the given order of parms in `parm_order'.
3906 Used at start of parm list,
3907 and also at semicolon terminating forward decls. */
3908
3909void
3910clear_parm_order ()
3911{
3912 current_binding_level->parm_order = NULL_TREE;
3913}
3914
3915/* Build a COMPOUND_LITERAL_EXPR. TYPE is the type given in the compound
3916 literal, which may be an incomplete array type completed by the
3917 initializer; INIT is a CONSTRUCTOR that initializes the compound
3918 literal. */
3919
3920tree
3921build_compound_literal (type, init)
3922 tree type;
3923 tree init;
3924{
3925 /* We do not use start_decl here because we have a type, not a declarator;
3926 and do not use finish_decl because the decl should be stored inside
3927 the COMPOUND_LITERAL_EXPR rather than added elsewhere as a DECL_STMT. */
3928 tree decl = build_decl (VAR_DECL, NULL_TREE, type);
3929 tree complit;
3930 tree stmt;
3931 DECL_EXTERNAL (decl) = 0;
3932 TREE_PUBLIC (decl) = 0;
3933 TREE_STATIC (decl) = (current_binding_level == global_binding_level);
3934 DECL_CONTEXT (decl) = current_function_decl;
3935 TREE_USED (decl) = 1;
3936 TREE_TYPE (decl) = type;
3937 store_init_value (decl, init);
3938
3939 if (TREE_CODE (type) == ARRAY_TYPE && !COMPLETE_TYPE_P (type))
3940 {
3941 int failure = complete_array_type (type, DECL_INITIAL (decl), 1);
3942 if (failure)
3943 abort ();
3944 }
3945
3946 type = TREE_TYPE (decl);
3947 if (type == error_mark_node || !COMPLETE_TYPE_P (type))
3948 return error_mark_node;
3949
3950 stmt = build_stmt (DECL_STMT, decl);
3951 complit = build1 (COMPOUND_LITERAL_EXPR, TREE_TYPE (decl), stmt);
3952 TREE_SIDE_EFFECTS (complit) = 1;
3953
3954 layout_decl (decl, 0);
3955
3956 if (TREE_STATIC (decl))
3957 {
3958 /* This decl needs a name for the assembler output. We also need
3959 a unique suffix to be added to the name, for which DECL_CONTEXT
3960 must be set. */
3961 DECL_NAME (decl) = get_identifier ("__compound_literal");
3962 DECL_CONTEXT (decl) = complit;
3963 rest_of_decl_compilation (decl, NULL, 1, 0);
3964 DECL_CONTEXT (decl) = NULL_TREE;
3965 }
3966
3967 return complit;
3968}
3969
3970/* Make TYPE a complete type based on INITIAL_VALUE.
3971 Return 0 if successful, 1 if INITIAL_VALUE can't be deciphered,
3972 2 if there was no information (in which case assume 1 if DO_DEFAULT). */
3973
3974int
3975complete_array_type (type, initial_value, do_default)
3976 tree type;
3977 tree initial_value;
3978 int do_default;
3979{
3980 tree maxindex = NULL_TREE;
3981 int value = 0;
3982
3983 if (initial_value)
3984 {
3985 /* Note MAXINDEX is really the maximum index,
3986 one less than the size. */
3987 if (TREE_CODE (initial_value) == STRING_CST)
3988 {
3989 int eltsize
3990 = int_size_in_bytes (TREE_TYPE (TREE_TYPE (initial_value)));
3991 maxindex = build_int_2 ((TREE_STRING_LENGTH (initial_value)
3992 / eltsize) - 1, 0);
3993 }
3994 else if (TREE_CODE (initial_value) == CONSTRUCTOR)
3995 {
3996 tree elts = CONSTRUCTOR_ELTS (initial_value);
3997 maxindex = build_int_2 (-1, -1);
3998 for (; elts; elts = TREE_CHAIN (elts))
3999 {
4000 if (TREE_PURPOSE (elts))
4001 maxindex = TREE_PURPOSE (elts);
4002 else
4003 maxindex = fold (build (PLUS_EXPR, integer_type_node,
4004 maxindex, integer_one_node));
4005 }
4006 maxindex = copy_node (maxindex);
4007 }
4008 else
4009 {
4010 /* Make an error message unless that happened already. */
4011 if (initial_value != error_mark_node)
4012 value = 1;
4013
4014 /* Prevent further error messages. */
4015 maxindex = build_int_2 (0, 0);
4016 }
4017 }
4018
4019 if (!maxindex)
4020 {
4021 if (do_default)
4022 maxindex = build_int_2 (0, 0);
4023 value = 2;
4024 }
4025
4026 if (maxindex)
4027 {
4028 TYPE_DOMAIN (type) = build_index_type (maxindex);
4029 if (!TREE_TYPE (maxindex))
4030 TREE_TYPE (maxindex) = TYPE_DOMAIN (type);
4031 }
4032
4033 /* Lay out the type now that we can get the real answer. */
4034
4035 layout_type (type);
4036
4037 return value;
4038}
4039
4040/* Given declspecs and a declarator,
4041 determine the name and type of the object declared
4042 and construct a ..._DECL node for it.
4043 (In one case we can return a ..._TYPE node instead.
4044 For invalid input we sometimes return 0.)
4045
4046 DECLSPECS is a chain of tree_list nodes whose value fields
4047 are the storage classes and type specifiers.
4048
4049 DECL_CONTEXT says which syntactic context this declaration is in:
4050 NORMAL for most contexts. Make a VAR_DECL or FUNCTION_DECL or TYPE_DECL.
4051 FUNCDEF for a function definition. Like NORMAL but a few different
4052 error messages in each case. Return value may be zero meaning
4053 this definition is too screwy to try to parse.
4054 PARM for a parameter declaration (either within a function prototype
4055 or before a function body). Make a PARM_DECL, or return void_type_node.
4056 TYPENAME if for a typename (in a cast or sizeof).
4057 Don't make a DECL node; just return the ..._TYPE node.
4058 FIELD for a struct or union field; make a FIELD_DECL.
4059 BITFIELD for a field with specified width.
4060 INITIALIZED is 1 if the decl has an initializer.
4061
4062 In the TYPENAME case, DECLARATOR is really an absolute declarator.
4063 It may also be so in the PARM case, for a prototype where the
4064 argument type is specified but not the name.
4065
4066 This function is where the complicated C meanings of `static'
4067 and `extern' are interpreted. */
4068
4069static tree
4070grokdeclarator (declarator, declspecs, decl_context, initialized)
4071 tree declspecs;
4072 tree declarator;
4073 enum decl_context decl_context;
4074 int initialized;
4075{
4076 int specbits = 0;
4077 tree spec;
4078 tree type = NULL_TREE;
4079 int longlong = 0;
4080 int constp;
4081 int restrictp;
4082 int volatilep;
4083 int type_quals = TYPE_UNQUALIFIED;
4084 int inlinep;
4085 int explicit_int = 0;
4086 int explicit_char = 0;
4087 int defaulted_int = 0;
4088 tree typedef_decl = 0;
4089 const char *name;
4090 tree typedef_type = 0;
4091 int funcdef_flag = 0;
4092 enum tree_code innermost_code = ERROR_MARK;
4093 int bitfield = 0;
4094 int size_varies = 0;
4095 tree decl_attr = NULL_TREE;
4096 tree array_ptr_quals = NULL_TREE;
4097 int array_parm_static = 0;
4098 tree returned_attrs = NULL_TREE;
4099
4100 if (decl_context == BITFIELD)
4101 bitfield = 1, decl_context = FIELD;
4102
4103 if (decl_context == FUNCDEF)
4104 funcdef_flag = 1, decl_context = NORMAL;
4105
4106 /* Look inside a declarator for the name being declared
4107 and get it as a string, for an error message. */
4108 {
4109 tree decl = declarator;
4110 name = 0;
4111
4112 while (decl)
4113 switch (TREE_CODE (decl))
4114 {
4115 case ARRAY_REF:
4116 case INDIRECT_REF:
4117 case CALL_EXPR:
4118 innermost_code = TREE_CODE (decl);
4119 decl = TREE_OPERAND (decl, 0);
4120 break;
4121
4122 case TREE_LIST:
4123 decl = TREE_VALUE (decl);
4124 break;
4125
4126 case IDENTIFIER_NODE:
4127 name = IDENTIFIER_POINTER (decl);
4128 decl = 0;
4129 break;
4130
4131 default:
4132 abort ();
4133 }
4134 if (name == 0)
4135 name = "type name";
4136 }
4137
4138 /* A function definition's declarator must have the form of
4139 a function declarator. */
4140
4141 if (funcdef_flag && innermost_code != CALL_EXPR)
4142 return 0;
4143
4144 /* Anything declared one level down from the top level
4145 must be one of the parameters of a function
4146 (because the body is at least two levels down). */
4147
4148 /* If this looks like a function definition, make it one,
4149 even if it occurs where parms are expected.
4150 Then store_parm_decls will reject it and not use it as a parm. */
4151 if (decl_context == NORMAL && !funcdef_flag
4152 && current_binding_level->parm_flag)
4153 decl_context = PARM;
4154
4155 /* Look through the decl specs and record which ones appear.
4156 Some typespecs are defined as built-in typenames.
4157 Others, the ones that are modifiers of other types,
4158 are represented by bits in SPECBITS: set the bits for
4159 the modifiers that appear. Storage class keywords are also in SPECBITS.
4160
4161 If there is a typedef name or a type, store the type in TYPE.
4162 This includes builtin typedefs such as `int'.
4163
4164 Set EXPLICIT_INT or EXPLICIT_CHAR if the type is `int' or `char'
4165 and did not come from a user typedef.
4166
4167 Set LONGLONG if `long' is mentioned twice. */
4168
4169 for (spec = declspecs; spec; spec = TREE_CHAIN (spec))
4170 {
4171 tree id = TREE_VALUE (spec);
4172
4173 /* If the entire declaration is itself tagged as deprecated then
4174 suppress reports of deprecated items. */
4175 if (id && TREE_DEPRECATED (id))
4176 {
4177 if (deprecated_state != DEPRECATED_SUPPRESS)
4178 warn_deprecated_use (id);
4179 }
4180
4181 if (id == ridpointers[(int) RID_INT])
4182 explicit_int = 1;
4183 if (id == ridpointers[(int) RID_CHAR])
4184 explicit_char = 1;
4185
4186 if (TREE_CODE (id) == IDENTIFIER_NODE && C_IS_RESERVED_WORD (id))
4187 {
4188 enum rid i = C_RID_CODE (id);
4189 if ((int) i <= (int) RID_LAST_MODIFIER)
4190 {
4191 if (i == RID_LONG && (specbits & (1 << (int) i)))
4192 {
4193 if (longlong)
4194 error ("`long long long' is too long for GCC");
4195 else
4196 {
4197 if (pedantic && !flag_isoc99 && ! in_system_header
4198 && warn_long_long)
4199 pedwarn ("ISO C89 does not support `long long'");
4200 longlong = 1;
4201 }
4202 }
4203 else if (specbits & (1 << (int) i))
4204 pedwarn ("duplicate `%s'", IDENTIFIER_POINTER (id));
4205 specbits |= 1 << (int) i;
4206 goto found;
4207 }
4208 }
4209 if (type)
4210 error ("two or more data types in declaration of `%s'", name);
4211 /* Actual typedefs come to us as TYPE_DECL nodes. */
4212 else if (TREE_CODE (id) == TYPE_DECL)
4213 {
4214 if (TREE_TYPE (id) == error_mark_node)
4215 ; /* Allow the type to default to int to avoid cascading errors. */
4216 else
4217 {
4218 type = TREE_TYPE (id);
4219 decl_attr = DECL_ATTRIBUTES (id);
4220 typedef_decl = id;
4221 }
4222 }
4223 /* Built-in types come as identifiers. */
4224 else if (TREE_CODE (id) == IDENTIFIER_NODE)
4225 {
4226 tree t = lookup_name (id);
4227 if (TREE_TYPE (t) == error_mark_node)
4228 ;
4229 else if (!t || TREE_CODE (t) != TYPE_DECL)
4230 error ("`%s' fails to be a typedef or built in type",
4231 IDENTIFIER_POINTER (id));
4232 else
4233 {
4234 type = TREE_TYPE (t);
4235 typedef_decl = t;
4236 }
4237 }
4238 else if (TREE_CODE (id) != ERROR_MARK)
4239 type = id;
4240
4241 found:
4242 ;
4243 }
4244
4245 typedef_type = type;
4246 if (type)
4247 size_varies = C_TYPE_VARIABLE_SIZE (type);
4248
4249 /* No type at all: default to `int', and set DEFAULTED_INT
4250 because it was not a user-defined typedef. */
4251
4252 if (type == 0)
4253 {
4254 if ((! (specbits & ((1 << (int) RID_LONG) | (1 << (int) RID_SHORT)
4255 | (1 << (int) RID_SIGNED)
4256 | (1 << (int) RID_UNSIGNED)
4257 | (1 << (int) RID_COMPLEX))))
4258 /* Don't warn about typedef foo = bar. */
4259 && ! (specbits & (1 << (int) RID_TYPEDEF) && initialized)
4260 && ! in_system_header)
4261 {
4262 /* Issue a warning if this is an ISO C 99 program or if -Wreturn-type
4263 and this is a function, or if -Wimplicit; prefer the former
4264 warning since it is more explicit. */
4265 if ((warn_implicit_int || warn_return_type || flag_isoc99)
4266 && funcdef_flag)
4267 warn_about_return_type = 1;
4268 else if (warn_implicit_int || flag_isoc99)
4269 pedwarn_c99 ("type defaults to `int' in declaration of `%s'",
4270 name);
4271 }
4272
4273 defaulted_int = 1;
4274 type = integer_type_node;
4275 }
4276
4277 /* Now process the modifiers that were specified
4278 and check for invalid combinations. */
4279
4280 /* Long double is a special combination. */
4281
4282 if ((specbits & 1 << (int) RID_LONG) && ! longlong
4283 && TYPE_MAIN_VARIANT (type) == double_type_node)
4284 {
4285 specbits &= ~(1 << (int) RID_LONG);
4286 type = long_double_type_node;
4287 }
4288
4289 /* Check all other uses of type modifiers. */
4290
4291 if (specbits & ((1 << (int) RID_LONG) | (1 << (int) RID_SHORT)
4292 | (1 << (int) RID_UNSIGNED) | (1 << (int) RID_SIGNED)))
4293 {
4294 int ok = 0;
4295
4296 if ((specbits & 1 << (int) RID_LONG)
4297 && (specbits & 1 << (int) RID_SHORT))
4298 error ("both long and short specified for `%s'", name);
4299 else if (((specbits & 1 << (int) RID_LONG)
4300 || (specbits & 1 << (int) RID_SHORT))
4301 && explicit_char)
4302 error ("long or short specified with char for `%s'", name);
4303 else if (((specbits & 1 << (int) RID_LONG)
4304 || (specbits & 1 << (int) RID_SHORT))
4305 && TREE_CODE (type) == REAL_TYPE)
4306 {
4307 static int already = 0;
4308
4309 error ("long or short specified with floating type for `%s'", name);
4310 if (! already && ! pedantic)
4311 {
4312 error ("the only valid combination is `long double'");
4313 already = 1;
4314 }
4315 }
4316 else if ((specbits & 1 << (int) RID_SIGNED)
4317 && (specbits & 1 << (int) RID_UNSIGNED))
4318 error ("both signed and unsigned specified for `%s'", name);
4319 else if (TREE_CODE (type) != INTEGER_TYPE)
4320 error ("long, short, signed or unsigned invalid for `%s'", name);
4321 else
4322 {
4323 ok = 1;
4324 if (!explicit_int && !defaulted_int && !explicit_char && pedantic)
4325 {
4326 pedwarn ("long, short, signed or unsigned used invalidly for `%s'",
4327 name);
4328 if (flag_pedantic_errors)
4329 ok = 0;
4330 }
4331 }
4332
4333 /* Discard the type modifiers if they are invalid. */
4334 if (! ok)
4335 {
4336 specbits &= ~((1 << (int) RID_LONG) | (1 << (int) RID_SHORT)
4337 | (1 << (int) RID_UNSIGNED) | (1 << (int) RID_SIGNED));
4338 longlong = 0;
4339 }
4340 }
4341
4342 if ((specbits & (1 << (int) RID_COMPLEX))
4343 && TREE_CODE (type) != INTEGER_TYPE && TREE_CODE (type) != REAL_TYPE)
4344 {
4345 error ("complex invalid for `%s'", name);
4346 specbits &= ~(1 << (int) RID_COMPLEX);
4347 }
4348
4349 /* Decide whether an integer type is signed or not.
4350 Optionally treat bitfields as signed by default. */
4351 if (specbits & 1 << (int) RID_UNSIGNED
4352 /* Traditionally, all bitfields are unsigned. */
4353 || (bitfield && flag_traditional
4354 && (! explicit_flag_signed_bitfields || !flag_signed_bitfields))
4355 || (bitfield && ! flag_signed_bitfields
4356 && (explicit_int || defaulted_int || explicit_char
4357 /* A typedef for plain `int' without `signed'
4358 can be controlled just like plain `int'. */
4359 || ! (typedef_decl != 0
4360 && C_TYPEDEF_EXPLICITLY_SIGNED (typedef_decl)))
4361 && TREE_CODE (type) != ENUMERAL_TYPE
4362 && !(specbits & 1 << (int) RID_SIGNED)))
4363 {
4364 if (longlong)
4365 type = long_long_unsigned_type_node;
4366 else if (specbits & 1 << (int) RID_LONG)
4367 type = long_unsigned_type_node;
4368 else if (specbits & 1 << (int) RID_SHORT)
4369 type = short_unsigned_type_node;
4370 else if (type == char_type_node)
4371 type = unsigned_char_type_node;
4372 else if (typedef_decl)
4373 type = unsigned_type (type);
4374 else
4375 type = unsigned_type_node;
4376 }
4377 else if ((specbits & 1 << (int) RID_SIGNED)
4378 && type == char_type_node)
4379 type = signed_char_type_node;
4380 else if (longlong)
4381 type = long_long_integer_type_node;
4382 else if (specbits & 1 << (int) RID_LONG)
4383 type = long_integer_type_node;
4384 else if (specbits & 1 << (int) RID_SHORT)
4385 type = short_integer_type_node;
4386
4387 if (specbits & 1 << (int) RID_COMPLEX)
4388 {
4389 if (pedantic && !flag_isoc99)
4390 pedwarn ("ISO C89 does not support complex types");
4391 /* If we just have "complex", it is equivalent to
4392 "complex double", but if any modifiers at all are specified it is
4393 the complex form of TYPE. E.g, "complex short" is
4394 "complex short int". */
4395
4396 if (defaulted_int && ! longlong
4397 && ! (specbits & ((1 << (int) RID_LONG) | (1 << (int) RID_SHORT)
4398 | (1 << (int) RID_SIGNED)
4399 | (1 << (int) RID_UNSIGNED))))
4400 {
4401 if (pedantic)
4402 pedwarn ("ISO C does not support plain `complex' meaning `double complex'");
4403 type = complex_double_type_node;
4404 }
4405 else if (type == integer_type_node)
4406 {
4407 if (pedantic)
4408 pedwarn ("ISO C does not support complex integer types");
4409 type = complex_integer_type_node;
4410 }
4411 else if (type == float_type_node)
4412 type = complex_float_type_node;
4413 else if (type == double_type_node)
4414 type = complex_double_type_node;
4415 else if (type == long_double_type_node)
4416 type = complex_long_double_type_node;
4417 else
4418 {
4419 if (pedantic)
4420 pedwarn ("ISO C does not support complex integer types");
4421 type = build_complex_type (type);
4422 }
4423 }
4424
4425 /* Figure out the type qualifiers for the declaration. There are
4426 two ways a declaration can become qualified. One is something
4427 like `const int i' where the `const' is explicit. Another is
4428 something like `typedef const int CI; CI i' where the type of the
4429 declaration contains the `const'. */
4430 constp = !! (specbits & 1 << (int) RID_CONST) + TYPE_READONLY (type);
4431 restrictp = !! (specbits & 1 << (int) RID_RESTRICT) + TYPE_RESTRICT (type);
4432 volatilep = !! (specbits & 1 << (int) RID_VOLATILE) + TYPE_VOLATILE (type);
4433 inlinep = !! (specbits & (1 << (int) RID_INLINE));
4434 if (constp > 1 && ! flag_isoc99)
4435 pedwarn ("duplicate `const'");
4436 if (restrictp > 1 && ! flag_isoc99)
4437 pedwarn ("duplicate `restrict'");
4438 if (volatilep > 1 && ! flag_isoc99)
4439 pedwarn ("duplicate `volatile'");
4440 if (! flag_gen_aux_info && (TYPE_QUALS (type)))
4441 type = TYPE_MAIN_VARIANT (type);
4442 type_quals = ((constp ? TYPE_QUAL_CONST : 0)
4443 | (restrictp ? TYPE_QUAL_RESTRICT : 0)
4444 | (volatilep ? TYPE_QUAL_VOLATILE : 0));
4445
4446 /* Warn if two storage classes are given. Default to `auto'. */
4447
4448 {
4449 int nclasses = 0;
4450
4451 if (specbits & 1 << (int) RID_AUTO) nclasses++;
4452 if (specbits & 1 << (int) RID_STATIC) nclasses++;
4453 if (specbits & 1 << (int) RID_EXTERN) nclasses++;
4454 if (specbits & 1 << (int) RID_REGISTER) nclasses++;
4455 if (specbits & 1 << (int) RID_TYPEDEF) nclasses++;
4456
4457 /* Warn about storage classes that are invalid for certain
4458 kinds of declarations (parameters, typenames, etc.). */
4459
4460 if (nclasses > 1)
4461 error ("multiple storage classes in declaration of `%s'", name);
4462 else if (funcdef_flag
4463 && (specbits
4464 & ((1 << (int) RID_REGISTER)
4465 | (1 << (int) RID_AUTO)
4466 | (1 << (int) RID_TYPEDEF))))
4467 {
4468 if (specbits & 1 << (int) RID_AUTO
4469 && (pedantic || current_binding_level == global_binding_level))
4470 pedwarn ("function definition declared `auto'");
4471 if (specbits & 1 << (int) RID_REGISTER)
4472 error ("function definition declared `register'");
4473 if (specbits & 1 << (int) RID_TYPEDEF)
4474 error ("function definition declared `typedef'");
4475 specbits &= ~((1 << (int) RID_TYPEDEF) | (1 << (int) RID_REGISTER)
4476 | (1 << (int) RID_AUTO));
4477 }
4478 else if (decl_context != NORMAL && nclasses > 0)
4479 {
4480 if (decl_context == PARM && specbits & 1 << (int) RID_REGISTER)
4481 ;
4482 else
4483 {
4484 switch (decl_context)
4485 {
4486 case FIELD:
4487 error ("storage class specified for structure field `%s'",
4488 name);
4489 break;
4490 case PARM:
4491 error ("storage class specified for parameter `%s'", name);
4492 break;
4493 default:
4494 error ("storage class specified for typename");
4495 break;
4496 }
4497 specbits &= ~((1 << (int) RID_TYPEDEF) | (1 << (int) RID_REGISTER)
4498 | (1 << (int) RID_AUTO) | (1 << (int) RID_STATIC)
4499 | (1 << (int) RID_EXTERN));
4500 }
4501 }
4502 else if (specbits & 1 << (int) RID_EXTERN && initialized && ! funcdef_flag)
4503 {
4504 /* `extern' with initialization is invalid if not at top level. */
4505 if (current_binding_level == global_binding_level)
4506 warning ("`%s' initialized and declared `extern'", name);
4507 else
4508 error ("`%s' has both `extern' and initializer", name);
4509 }
4510 else if (specbits & 1 << (int) RID_EXTERN && funcdef_flag
4511 && current_binding_level != global_binding_level)
4512 error ("nested function `%s' declared `extern'", name);
4513 else if (current_binding_level == global_binding_level
4514 && specbits & (1 << (int) RID_AUTO))
4515 error ("top-level declaration of `%s' specifies `auto'", name);
4516 }
4517
4518 /* Now figure out the structure of the declarator proper.
4519 Descend through it, creating more complex types, until we reach
4520 the declared identifier (or NULL_TREE, in an absolute declarator). */
4521
4522 while (declarator && TREE_CODE (declarator) != IDENTIFIER_NODE)
4523 {
4524 if (type == error_mark_node)
4525 {
4526 declarator = TREE_OPERAND (declarator, 0);
4527 continue;
4528 }
4529
4530 /* Each level of DECLARATOR is either an ARRAY_REF (for ...[..]),
4531 an INDIRECT_REF (for *...),
4532 a CALL_EXPR (for ...(...)),
4533 a TREE_LIST (for nested attributes),
4534 an identifier (for the name being declared)
4535 or a null pointer (for the place in an absolute declarator
4536 where the name was omitted).
4537 For the last two cases, we have just exited the loop.
4538
4539 At this point, TYPE is the type of elements of an array,
4540 or for a function to return, or for a pointer to point to.
4541 After this sequence of ifs, TYPE is the type of the
4542 array or function or pointer, and DECLARATOR has had its
4543 outermost layer removed. */
4544
4545 if (array_ptr_quals != NULL_TREE || array_parm_static)
4546 {
4547 /* Only the innermost declarator (making a parameter be of
4548 array type which is converted to pointer type)
4549 may have static or type qualifiers. */
4550 error ("static or type qualifiers in non-parameter array declarator");
4551 array_ptr_quals = NULL_TREE;
4552 array_parm_static = 0;
4553 }
4554
4555 if (TREE_CODE (declarator) == TREE_LIST)
4556 {
4557 /* We encode a declarator with embedded attributes using
4558 a TREE_LIST. */
4559 tree attrs = TREE_PURPOSE (declarator);
4560 tree inner_decl;
4561 int attr_flags = 0;
4562 declarator = TREE_VALUE (declarator);
4563 inner_decl = declarator;
4564 while (inner_decl != NULL_TREE
4565 && TREE_CODE (inner_decl) == TREE_LIST)
4566 inner_decl = TREE_VALUE (inner_decl);
4567 if (inner_decl == NULL_TREE
4568 || TREE_CODE (inner_decl) == IDENTIFIER_NODE)
4569 attr_flags |= (int) ATTR_FLAG_DECL_NEXT;
4570 else if (TREE_CODE (inner_decl) == CALL_EXPR)
4571 attr_flags |= (int) ATTR_FLAG_FUNCTION_NEXT;
4572 else if (TREE_CODE (inner_decl) == ARRAY_REF)
4573 attr_flags |= (int) ATTR_FLAG_ARRAY_NEXT;
4574 returned_attrs = decl_attributes (&type,
4575 chainon (returned_attrs, attrs),
4576 attr_flags);
4577 }
4578 else if (TREE_CODE (declarator) == ARRAY_REF)
4579 {
4580 tree itype = NULL_TREE;
4581 tree size = TREE_OPERAND (declarator, 1);
4582 /* The index is a signed object `sizetype' bits wide. */
4583 tree index_type = signed_type (sizetype);
4584
4585 array_ptr_quals = TREE_TYPE (declarator);
4586 array_parm_static = TREE_STATIC (declarator);
4587
4588 declarator = TREE_OPERAND (declarator, 0);
4589
4590 /* Check for some types that there cannot be arrays of. */
4591
4592 if (VOID_TYPE_P (type))
4593 {
4594 error ("declaration of `%s' as array of voids", name);
4595 type = error_mark_node;
4596 }
4597
4598 if (TREE_CODE (type) == FUNCTION_TYPE)
4599 {
4600 error ("declaration of `%s' as array of functions", name);
4601 type = error_mark_node;
4602 }
4603
4604 if (size == error_mark_node)
4605 type = error_mark_node;
4606
4607 if (type == error_mark_node)
4608 continue;
4609
4610 /* If size was specified, set ITYPE to a range-type for that size.
4611 Otherwise, ITYPE remains null. finish_decl may figure it out
4612 from an initial value. */
4613
4614 if (size)
4615 {
4616 /* Strip NON_LVALUE_EXPRs since we aren't using as an lvalue. */
4617 STRIP_TYPE_NOPS (size);
4618
4619 if (! INTEGRAL_TYPE_P (TREE_TYPE (size)))
4620 {
4621 error ("size of array `%s' has non-integer type", name);
4622 size = integer_one_node;
4623 }
4624
4625 if (pedantic && integer_zerop (size))
4626 pedwarn ("ISO C forbids zero-size array `%s'", name);
4627
4628 if (TREE_CODE (size) == INTEGER_CST)
4629 {
4630 constant_expression_warning (size);
4631 if (tree_int_cst_sgn (size) < 0)
4632 {
4633 error ("size of array `%s' is negative", name);
4634 size = integer_one_node;
4635 }
4636 }
4637 else
4638 {
4639 /* Make sure the array size remains visibly nonconstant
4640 even if it is (eg) a const variable with known value. */
4641 size_varies = 1;
4642
4643 if (pedantic)
4644 {
4645 if (TREE_CONSTANT (size))
4646 pedwarn ("ISO C89 forbids array `%s' whose size can't be evaluated",
4647 name);
4648 else
4649 pedwarn ("ISO C89 forbids variable-size array `%s'",
4650 name);
4651 }
4652 }
4653
4654 if (integer_zerop (size))
4655 {
4656 /* A zero-length array cannot be represented with an
4657 unsigned index type, which is what we'll get with
4658 build_index_type. Create an open-ended range instead. */
4659 itype = build_range_type (sizetype, size, NULL_TREE);
4660 }
4661 else
4662 {
4663 /* Compute the maximum valid index, that is, size - 1.
4664 Do the calculation in index_type, so that if it is
4665 a variable the computations will be done in the
4666 proper mode. */
4667 itype = fold (build (MINUS_EXPR, index_type,
4668 convert (index_type, size),
4669 convert (index_type, size_one_node)));
4670
4671 /* If that overflowed, the array is too big.
4672 ??? While a size of INT_MAX+1 technically shouldn't
4673 cause an overflow (because we subtract 1), the overflow
4674 is recorded during the conversion to index_type, before
4675 the subtraction. Handling this case seems like an
4676 unnecessary complication. */
4677 if (TREE_OVERFLOW (itype))
4678 {
4679 error ("size of array `%s' is too large", name);
4680 type = error_mark_node;
4681 continue;
4682 }
4683
4684 if (size_varies)
4685 itype = variable_size (itype);
4686 itype = build_index_type (itype);
4687 }
4688 }
4689 else if (decl_context == FIELD)
4690 {
4691 if (pedantic && !flag_isoc99 && !in_system_header)
4692 pedwarn ("ISO C89 does not support flexible array members");
4693
4694 /* ISO C99 Flexible array members are effectively identical
4695 to GCC's zero-length array extension. */
4696 itype = build_range_type (sizetype, size_zero_node, NULL_TREE);
4697 }
4698
4699 /* If pedantic, complain about arrays of incomplete types. */
4700
4701 if (pedantic && !COMPLETE_TYPE_P (type))
4702 pedwarn ("array type has incomplete element type");
4703
4704#if 0
4705 /* We shouldn't have a function type here at all!
4706 Functions aren't allowed as array elements. */
4707 if (pedantic && TREE_CODE (type) == FUNCTION_TYPE
4708 && (constp || volatilep))
4709 pedwarn ("ISO C forbids const or volatile function types");
4710#endif
4711
4712 /* Build the array type itself, then merge any constancy or
4713 volatility into the target type. We must do it in this order
4714 to ensure that the TYPE_MAIN_VARIANT field of the array type
4715 is set correctly. */
4716
4717 type = build_array_type (type, itype);
4718 if (type_quals)
4719 type = c_build_qualified_type (type, type_quals);
4720
4721 if (size_varies)
4722 C_TYPE_VARIABLE_SIZE (type) = 1;
4723
4724 /* The GCC extension for zero-length arrays differs from
4725 ISO flexible array members in that sizeof yields zero. */
4726 if (size && integer_zerop (size))
4727 {
4728 layout_type (type);
4729 TYPE_SIZE (type) = bitsize_zero_node;
4730 TYPE_SIZE_UNIT (type) = size_zero_node;
4731 }
4732 if (decl_context != PARM
4733 && (array_ptr_quals != NULL_TREE || array_parm_static))
4734 {
4735 error ("static or type qualifiers in non-parameter array declarator");
4736 array_ptr_quals = NULL_TREE;
4737 array_parm_static = 0;
4738 }
4739 }
4740 else if (TREE_CODE (declarator) == CALL_EXPR)
4741 {
4742 tree arg_types;
4743
4744 /* Declaring a function type.
4745 Make sure we have a valid type for the function to return. */
4746 if (type == error_mark_node)
4747 continue;
4748
4749 size_varies = 0;
4750
4751 /* Warn about some types functions can't return. */
4752
4753 if (TREE_CODE (type) == FUNCTION_TYPE)
4754 {
4755 error ("`%s' declared as function returning a function", name);
4756 type = integer_type_node;
4757 }
4758 if (TREE_CODE (type) == ARRAY_TYPE)
4759 {
4760 error ("`%s' declared as function returning an array", name);
4761 type = integer_type_node;
4762 }
4763
4764#ifndef TRADITIONAL_RETURN_FLOAT
4765 /* Traditionally, declaring return type float means double. */
4766
4767 if (flag_traditional && TYPE_MAIN_VARIANT (type) == float_type_node)
4768 type = double_type_node;
4769#endif /* TRADITIONAL_RETURN_FLOAT */
4770
4771 /* Construct the function type and go to the next
4772 inner layer of declarator. */
4773
4774 arg_types = grokparms (TREE_OPERAND (declarator, 1),
4775 funcdef_flag
4776 /* Say it's a definition
4777 only for the CALL_EXPR
4778 closest to the identifier. */
4779 && TREE_CODE (TREE_OPERAND (declarator, 0)) == IDENTIFIER_NODE);
4780 /* Type qualifiers before the return type of the function
4781 qualify the return type, not the function type. */
4782 if (type_quals)
4783 {
4784 /* Type qualifiers on a function return type are normally
4785 permitted by the standard but have no effect, so give a
4786 warning at -W. Qualifiers on a void return type have
4787 meaning as a GNU extension, and are banned on function
4788 definitions in ISO C. FIXME: strictly we shouldn't
4789 pedwarn for qualified void return types except on function
4790 definitions, but not doing so could lead to the undesirable
4791 state of a "volatile void" function return type not being
4792 warned about, and a use of the function being compiled
4793 with GNU semantics, with no diagnostics under -pedantic. */
4794 if (VOID_TYPE_P (type) && pedantic && !in_system_header)
4795 pedwarn ("ISO C forbids qualified void function return type");
4796 else if (extra_warnings
4797 && !(VOID_TYPE_P (type)
4798 && type_quals == TYPE_QUAL_VOLATILE))
4799 warning ("type qualifiers ignored on function return type");
4800
4801 type = c_build_qualified_type (type, type_quals);
4802 }
4803 type_quals = TYPE_UNQUALIFIED;
4804
4805 type = build_function_type (type, arg_types);
4806 declarator = TREE_OPERAND (declarator, 0);
4807
4808 /* Set the TYPE_CONTEXTs for each tagged type which is local to
4809 the formal parameter list of this FUNCTION_TYPE to point to
4810 the FUNCTION_TYPE node itself. */
4811
4812 {
4813 tree link;
4814
4815 for (link = last_function_parm_tags;
4816 link;
4817 link = TREE_CHAIN (link))
4818 TYPE_CONTEXT (TREE_VALUE (link)) = type;
4819 }
4820 }
4821 else if (TREE_CODE (declarator) == INDIRECT_REF)
4822 {
4823 /* Merge any constancy or volatility into the target type
4824 for the pointer. */
4825
4826 if (pedantic && TREE_CODE (type) == FUNCTION_TYPE
4827 && type_quals)
4828 pedwarn ("ISO C forbids qualified function types");
4829 if (type_quals)
4830 type = c_build_qualified_type (type, type_quals);
4831 type_quals = TYPE_UNQUALIFIED;
4832 size_varies = 0;
4833
4834 type = build_pointer_type (type);
4835
4836 /* Process a list of type modifier keywords
4837 (such as const or volatile) that were given inside the `*'. */
4838
4839 if (TREE_TYPE (declarator))
4840 {
4841 tree typemodlist;
4842 int erred = 0;
4843
4844 constp = 0;
4845 volatilep = 0;
4846 restrictp = 0;
4847 for (typemodlist = TREE_TYPE (declarator); typemodlist;
4848 typemodlist = TREE_CHAIN (typemodlist))
4849 {
4850 tree qualifier = TREE_VALUE (typemodlist);
4851
4852 if (C_IS_RESERVED_WORD (qualifier))
4853 {
4854 if (C_RID_CODE (qualifier) == RID_CONST)
4855 constp++;
4856 else if (C_RID_CODE (qualifier) == RID_VOLATILE)
4857 volatilep++;
4858 else if (C_RID_CODE (qualifier) == RID_RESTRICT)
4859 restrictp++;
4860 else
4861 erred++;
4862 }
4863 else
4864 erred++;
4865 }
4866
4867 if (erred)
4868 error ("invalid type modifier within pointer declarator");
4869 if (constp > 1 && ! flag_isoc99)
4870 pedwarn ("duplicate `const'");
4871 if (volatilep > 1 && ! flag_isoc99)
4872 pedwarn ("duplicate `volatile'");
4873 if (restrictp > 1 && ! flag_isoc99)
4874 pedwarn ("duplicate `restrict'");
4875
4876 type_quals = ((constp ? TYPE_QUAL_CONST : 0)
4877 | (restrictp ? TYPE_QUAL_RESTRICT : 0)
4878 | (volatilep ? TYPE_QUAL_VOLATILE : 0));
4879 }
4880
4881 declarator = TREE_OPERAND (declarator, 0);
4882 }
4883 else
4884 abort ();
4885
4886 }
4887
4888 /* Now TYPE has the actual type. */
4889
4890 /* Did array size calculations overflow? */
4891
4892 if (TREE_CODE (type) == ARRAY_TYPE
4893 && COMPLETE_TYPE_P (type)
4894 && TREE_OVERFLOW (TYPE_SIZE (type)))
4895 {
4896 error ("size of array `%s' is too large", name);
4897 /* If we proceed with the array type as it is, we'll eventually
4898 crash in tree_low_cst(). */
4899 type = error_mark_node;
4900 }
4901
4902 /* If this is declaring a typedef name, return a TYPE_DECL. */
4903
4904 if (specbits & (1 << (int) RID_TYPEDEF))
4905 {
4906 tree decl;
4907 /* Note that the grammar rejects storage classes
4908 in typenames, fields or parameters */
4909 if (pedantic && TREE_CODE (type) == FUNCTION_TYPE
4910 && type_quals)
4911 pedwarn ("ISO C forbids qualified function types");
4912 if (type_quals)
4913 type = c_build_qualified_type (type, type_quals);
4914 decl = build_decl (TYPE_DECL, declarator, type);
4915 if ((specbits & (1 << (int) RID_SIGNED))
4916 || (typedef_decl && C_TYPEDEF_EXPLICITLY_SIGNED (typedef_decl)))
4917 C_TYPEDEF_EXPLICITLY_SIGNED (decl) = 1;
4918 decl_attributes (&decl, returned_attrs, 0);
4919 return decl;
4920 }
4921
4922 /* Detect the case of an array type of unspecified size
4923 which came, as such, direct from a typedef name.
4924 We must copy the type, so that each identifier gets
4925 a distinct type, so that each identifier's size can be
4926 controlled separately by its own initializer. */
4927
4928 if (type != 0 && typedef_type != 0
4929 && TREE_CODE (type) == ARRAY_TYPE && TYPE_DOMAIN (type) == 0
4930 && TYPE_MAIN_VARIANT (type) == TYPE_MAIN_VARIANT (typedef_type))
4931 {
4932 type = build_array_type (TREE_TYPE (type), 0);
4933 if (size_varies)
4934 C_TYPE_VARIABLE_SIZE (type) = 1;
4935 }
4936
4937 /* If this is a type name (such as, in a cast or sizeof),
4938 compute the type and return it now. */
4939
4940 if (decl_context == TYPENAME)
4941 {
4942 /* Note that the grammar rejects storage classes
4943 in typenames, fields or parameters */
4944 if (pedantic && TREE_CODE (type) == FUNCTION_TYPE
4945 && type_quals)
4946 pedwarn ("ISO C forbids const or volatile function types");
4947 if (type_quals)
4948 type = c_build_qualified_type (type, type_quals);
4949 decl_attributes (&type, returned_attrs, 0);
4950 return type;
4951 }
4952
4953 /* Aside from typedefs and type names (handle above),
4954 `void' at top level (not within pointer)
4955 is allowed only in public variables.
4956 We don't complain about parms either, but that is because
4957 a better error message can be made later. */
4958
4959 if (VOID_TYPE_P (type) && decl_context != PARM
4960 && ! ((decl_context != FIELD && TREE_CODE (type) != FUNCTION_TYPE)
4961 && ((specbits & (1 << (int) RID_EXTERN))
4962 || (current_binding_level == global_binding_level
4963 && !(specbits
4964 & ((1 << (int) RID_STATIC) | (1 << (int) RID_REGISTER)))))))
4965 {
4966 error ("variable or field `%s' declared void", name);
4967 type = integer_type_node;
4968 }
4969
4970 /* Now create the decl, which may be a VAR_DECL, a PARM_DECL
4971 or a FUNCTION_DECL, depending on DECL_CONTEXT and TYPE. */
4972
4973 {
4974 tree decl;
4975
4976 if (decl_context == PARM)
4977 {
4978 tree type_as_written;
4979 tree promoted_type;
4980
4981 /* A parameter declared as an array of T is really a pointer to T.
4982 One declared as a function is really a pointer to a function. */
4983
4984 if (TREE_CODE (type) == ARRAY_TYPE)
4985 {
4986 /* Transfer const-ness of array into that of type pointed to. */
4987 type = TREE_TYPE (type);
4988 if (type_quals)
4989 type = c_build_qualified_type (type, type_quals);
4990 type = build_pointer_type (type);
4991 type_quals = TYPE_UNQUALIFIED;
4992 if (array_ptr_quals)
4993 {
4994 tree new_ptr_quals, new_ptr_attrs;
4995 int erred = 0;
4996 split_specs_attrs (array_ptr_quals, &new_ptr_quals, &new_ptr_attrs);
4997 /* We don't yet implement attributes in this context. */
4998 if (new_ptr_attrs != NULL_TREE)
4999 warning ("attributes in parameter array declarator ignored");
5000
5001 constp = 0;
5002 volatilep = 0;
5003 restrictp = 0;
5004 for (; new_ptr_quals; new_ptr_quals = TREE_CHAIN (new_ptr_quals))
5005 {
5006 tree qualifier = TREE_VALUE (new_ptr_quals);
5007
5008 if (C_IS_RESERVED_WORD (qualifier))
5009 {
5010 if (C_RID_CODE (qualifier) == RID_CONST)
5011 constp++;
5012 else if (C_RID_CODE (qualifier) == RID_VOLATILE)
5013 volatilep++;
5014 else if (C_RID_CODE (qualifier) == RID_RESTRICT)
5015 restrictp++;
5016 else
5017 erred++;
5018 }
5019 else
5020 erred++;
5021 }
5022
5023 if (erred)
5024 error ("invalid type modifier within array declarator");
5025
5026 type_quals = ((constp ? TYPE_QUAL_CONST : 0)
5027 | (restrictp ? TYPE_QUAL_RESTRICT : 0)
5028 | (volatilep ? TYPE_QUAL_VOLATILE : 0));
5029 }
5030 size_varies = 0;
5031 }
5032 else if (TREE_CODE (type) == FUNCTION_TYPE)
5033 {
5034 if (pedantic && type_quals)
5035 pedwarn ("ISO C forbids qualified function types");
5036 if (type_quals)
5037 type = c_build_qualified_type (type, type_quals);
5038 type = build_pointer_type (type);
5039 type_quals = TYPE_UNQUALIFIED;
5040 }
5041 else if (type_quals)
5042 type = c_build_qualified_type (type, type_quals);
5043
5044 type_as_written = type;
5045
5046 decl = build_decl (PARM_DECL, declarator, type);
5047 if (size_varies)
5048 C_DECL_VARIABLE_SIZE (decl) = 1;
5049
5050 /* Compute the type actually passed in the parmlist,
5051 for the case where there is no prototype.
5052 (For example, shorts and chars are passed as ints.)
5053 When there is a prototype, this is overridden later. */
5054
5055 if (type == error_mark_node)
5056 promoted_type = type;
5057 else
5058 {
5059 promoted_type = simple_type_promotes_to (type);
5060 if (! promoted_type)
5061 promoted_type = type;
5062 }
5063
5064 DECL_ARG_TYPE (decl) = promoted_type;
5065 DECL_ARG_TYPE_AS_WRITTEN (decl) = type_as_written;
5066 }
5067 else if (decl_context == FIELD)
5068 {
5069 /* Structure field. It may not be a function. */
5070
5071 if (TREE_CODE (type) == FUNCTION_TYPE)
5072 {
5073 error ("field `%s' declared as a function", name);
5074 type = build_pointer_type (type);
5075 }
5076 else if (TREE_CODE (type) != ERROR_MARK
5077 && !COMPLETE_OR_UNBOUND_ARRAY_TYPE_P (type))
5078 {
5079 error ("field `%s' has incomplete type", name);
5080 type = error_mark_node;
5081 }
5082 /* Move type qualifiers down to element of an array. */
5083 if (TREE_CODE (type) == ARRAY_TYPE && type_quals)
5084 {
5085 type = build_array_type (c_build_qualified_type (TREE_TYPE (type),
5086 type_quals),
5087 TYPE_DOMAIN (type));
5088#if 0
5089 /* Leave the field const or volatile as well. */
5090 type_quals = TYPE_UNQUALIFIED;
5091#endif
5092 }
5093 decl = build_decl (FIELD_DECL, declarator, type);
5094 DECL_NONADDRESSABLE_P (decl) = bitfield;
5095
5096 if (size_varies)
5097 C_DECL_VARIABLE_SIZE (decl) = 1;
5098 }
5099 else if (TREE_CODE (type) == FUNCTION_TYPE)
5100 {
5101 /* Every function declaration is "external"
5102 except for those which are inside a function body
5103 in which `auto' is used.
5104 That is a case not specified by ANSI C,
5105 and we use it for forward declarations for nested functions. */
5106 int extern_ref = (!(specbits & (1 << (int) RID_AUTO))
5107 || current_binding_level == global_binding_level);
5108
5109 if (specbits & (1 << (int) RID_AUTO)
5110 && (pedantic || current_binding_level == global_binding_level))
5111 pedwarn ("invalid storage class for function `%s'", name);
5112 if (specbits & (1 << (int) RID_REGISTER))
5113 error ("invalid storage class for function `%s'", name);
5114 /* Function declaration not at top level.
5115 Storage classes other than `extern' are not allowed
5116 and `extern' makes no difference. */
5117 if (current_binding_level != global_binding_level
5118 && (specbits & ((1 << (int) RID_STATIC) | (1 << (int) RID_INLINE)))
5119 && pedantic)
5120 pedwarn ("invalid storage class for function `%s'", name);
5121
5122 decl = build_decl (FUNCTION_DECL, declarator, type);
5123 decl = build_decl_attribute_variant (decl, decl_attr);
5124
5125 DECL_LANG_SPECIFIC (decl) = (struct lang_decl *)
5126 ggc_alloc_cleared (sizeof (struct lang_decl));
5127
5128 if (pedantic && type_quals && ! DECL_IN_SYSTEM_HEADER (decl))
5129 pedwarn ("ISO C forbids qualified function types");
5130
5131 /* GNU C interprets a `volatile void' return type to indicate
5132 that the function does not return. */
5133 if ((type_quals & TYPE_QUAL_VOLATILE)
5134 && !VOID_TYPE_P (TREE_TYPE (TREE_TYPE (decl))))
5135 warning ("`noreturn' function returns non-void value");
5136
5137 if (extern_ref)
5138 DECL_EXTERNAL (decl) = 1;
5139 /* Record absence of global scope for `static' or `auto'. */
5140 TREE_PUBLIC (decl)
5141 = !(specbits & ((1 << (int) RID_STATIC) | (1 << (int) RID_AUTO)));
5142
5143 if (defaulted_int)
5144 C_FUNCTION_IMPLICIT_INT (decl) = 1;
5145
5146 /* Record presence of `inline', if it is reasonable. */
5147 if (MAIN_NAME_P (declarator))
5148 {
5149 if (inlinep)
5150 warning ("cannot inline function `main'");
5151 }
5152 else if (inlinep)
5153 {
5154 /* Assume that otherwise the function can be inlined. */
5155 DECL_DECLARED_INLINE_P (decl) = 1;
5156
5157 /* Do not mark bare declarations as DECL_INLINE. Doing so
5158 in the presence of multiple declarations can result in
5159 the abstract origin pointing between the declarations,
5160 which will confuse dwarf2out. */
5161 if (initialized)
5162 {
5163 DECL_INLINE (decl) = 1;
5164 if (specbits & (1 << (int) RID_EXTERN))
5165 current_extern_inline = 1;
5166 }
5167 }
5168 /* If -finline-functions, assume it can be inlined. This does
5169 two things: let the function be deferred until it is actually
5170 needed, and let dwarf2 know that the function is inlinable. */
5171 else if (flag_inline_trees == 2 && initialized)
5172 {
5173 DECL_INLINE (decl) = 1;
5174 DECL_DECLARED_INLINE_P (decl) = 0;
5175 }
5176 }
5177 else
5178 {
5179 /* It's a variable. */
5180 /* An uninitialized decl with `extern' is a reference. */
5181 int extern_ref = !initialized && (specbits & (1 << (int) RID_EXTERN));
5182
5183 /* Move type qualifiers down to element of an array. */
5184 if (TREE_CODE (type) == ARRAY_TYPE && type_quals)
5185 {
5186 int saved_align = TYPE_ALIGN(type);
5187 type = build_array_type (c_build_qualified_type (TREE_TYPE (type),
5188 type_quals),
5189 TYPE_DOMAIN (type));
5190 TYPE_ALIGN (type) = saved_align;
5191#if 0 /* Leave the variable const or volatile as well. */
5192 type_quals = TYPE_UNQUALIFIED;
5193#endif
5194 }
5195 else if (type_quals)
5196 type = c_build_qualified_type (type, type_quals);
5197
5198 decl = build_decl (VAR_DECL, declarator, type);
5199 if (size_varies)
5200 C_DECL_VARIABLE_SIZE (decl) = 1;
5201
5202 if (inlinep)
5203 pedwarn_with_decl (decl, "variable `%s' declared `inline'");
5204
5205 DECL_EXTERNAL (decl) = extern_ref;
5206 /* At top level, the presence of a `static' or `register' storage
5207 class specifier, or the absence of all storage class specifiers
5208 makes this declaration a definition (perhaps tentative). Also,
5209 the absence of both `static' and `register' makes it public. */
5210 if (current_binding_level == global_binding_level)
5211 {
5212 TREE_PUBLIC (decl)
5213 = !(specbits
5214 & ((1 << (int) RID_STATIC) | (1 << (int) RID_REGISTER)));
5215 TREE_STATIC (decl) = ! DECL_EXTERNAL (decl);
5216 }
5217 /* Not at top level, only `static' makes a static definition. */
5218 else
5219 {
5220 TREE_STATIC (decl) = (specbits & (1 << (int) RID_STATIC)) != 0;
5221 TREE_PUBLIC (decl) = DECL_EXTERNAL (decl);
5222 }
5223 }
5224
5225 /* Record `register' declaration for warnings on &
5226 and in case doing stupid register allocation. */
5227
5228 if (specbits & (1 << (int) RID_REGISTER))
5229 DECL_REGISTER (decl) = 1;
5230
5231 /* Record constancy and volatility. */
5232 c_apply_type_quals_to_decl (type_quals, decl);
5233
5234 /* If a type has volatile components, it should be stored in memory.
5235 Otherwise, the fact that those components are volatile
5236 will be ignored, and would even crash the compiler. */
5237 if (C_TYPE_FIELDS_VOLATILE (TREE_TYPE (decl)))
5238 mark_addressable (decl);
5239
5240 decl_attributes (&decl, returned_attrs, 0);
5241
5242 return decl;
5243 }
5244}
5245
5246/* Decode the parameter-list info for a function type or function definition.
5247 The argument is the value returned by `get_parm_info' (or made in parse.y
5248 if there is an identifier list instead of a parameter decl list).
5249 These two functions are separate because when a function returns
5250 or receives functions then each is called multiple times but the order
5251 of calls is different. The last call to `grokparms' is always the one
5252 that contains the formal parameter names of a function definition.
5253
5254 Store in `last_function_parms' a chain of the decls of parms.
5255 Also store in `last_function_parm_tags' a chain of the struct, union,
5256 and enum tags declared among the parms.
5257
5258 Return a list of arg types to use in the FUNCTION_TYPE for this function.
5259
5260 FUNCDEF_FLAG is nonzero for a function definition, 0 for
5261 a mere declaration. A nonempty identifier-list gets an error message
5262 when FUNCDEF_FLAG is zero. */
5263
5264static tree
5265grokparms (parms_info, funcdef_flag)
5266 tree parms_info;
5267 int funcdef_flag;
5268{
5269 tree first_parm = TREE_CHAIN (parms_info);
5270
5271 last_function_parms = TREE_PURPOSE (parms_info);
5272 last_function_parm_tags = TREE_VALUE (parms_info);
5273
5274 if (warn_strict_prototypes && first_parm == 0 && !funcdef_flag
5275 && !in_system_header)
5276 warning ("function declaration isn't a prototype");
5277
5278 if (first_parm != 0
5279 && TREE_CODE (TREE_VALUE (first_parm)) == IDENTIFIER_NODE)
5280 {
5281 if (! funcdef_flag)
5282 pedwarn ("parameter names (without types) in function declaration");
5283
5284 last_function_parms = first_parm;
5285 return 0;
5286 }
5287 else
5288 {
5289 tree parm;
5290 tree typelt;
5291 /* We no longer test FUNCDEF_FLAG.
5292 If the arg types are incomplete in a declaration,
5293 they must include undefined tags.
5294 These tags can never be defined in the scope of the declaration,
5295 so the types can never be completed,
5296 and no call can be compiled successfully. */
5297#if 0
5298 /* In a fcn definition, arg types must be complete. */
5299 if (funcdef_flag)
5300#endif
5301 for (parm = last_function_parms, typelt = first_parm;
5302 parm;
5303 parm = TREE_CHAIN (parm))
5304 /* Skip over any enumeration constants declared here. */
5305 if (TREE_CODE (parm) == PARM_DECL)
5306 {
5307 /* Barf if the parameter itself has an incomplete type. */
5308 tree type = TREE_VALUE (typelt);
5309 if (type == error_mark_node)
5310 continue;
5311 if (!COMPLETE_TYPE_P (type))
5312 {
5313 if (funcdef_flag && DECL_NAME (parm) != 0)
5314 error ("parameter `%s' has incomplete type",
5315 IDENTIFIER_POINTER (DECL_NAME (parm)));
5316 else
5317 warning ("parameter has incomplete type");
5318 if (funcdef_flag)
5319 {
5320 TREE_VALUE (typelt) = error_mark_node;
5321 TREE_TYPE (parm) = error_mark_node;
5322 }
5323 }
5324#if 0
5325 /* This has been replaced by parm_tags_warning, which
5326 uses a more accurate criterion for what to warn
5327 about. */
5328 else
5329 {
5330 /* Now warn if is a pointer to an incomplete type. */
5331 while (TREE_CODE (type) == POINTER_TYPE
5332 || TREE_CODE (type) == REFERENCE_TYPE)
5333 type = TREE_TYPE (type);
5334 type = TYPE_MAIN_VARIANT (type);
5335 if (!COMPLETE_TYPE_P (type))
5336 {
5337 if (DECL_NAME (parm) != 0)
5338 warning ("parameter `%s' points to incomplete type",
5339 IDENTIFIER_POINTER (DECL_NAME (parm)));
5340 else
5341 warning ("parameter points to incomplete type");
5342 }
5343 }
5344#endif
5345 typelt = TREE_CHAIN (typelt);
5346 }
5347
5348 return first_parm;
5349 }
5350}
5351
5352/* Return a tree_list node with info on a parameter list just parsed.
5353 The TREE_PURPOSE is a chain of decls of those parms.
5354 The TREE_VALUE is a list of structure, union and enum tags defined.
5355 The TREE_CHAIN is a list of argument types to go in the FUNCTION_TYPE.
5356 This tree_list node is later fed to `grokparms'.
5357
5358 VOID_AT_END nonzero means append `void' to the end of the type-list.
5359 Zero means the parmlist ended with an ellipsis so don't append `void'. */
5360
5361tree
5362get_parm_info (void_at_end)
5363 int void_at_end;
5364{
5365 tree decl, t;
5366 tree types = 0;
5367 int erred = 0;
5368 tree tags = gettags ();
5369 tree parms = getdecls ();
5370 tree new_parms = 0;
5371 tree order = current_binding_level->parm_order;
5372
5373 /* Just `void' (and no ellipsis) is special. There are really no parms.
5374 But if the `void' is qualified (by `const' or `volatile') or has a
5375 storage class specifier (`register'), then the behavior is undefined;
5376 by not counting it as the special case of `void' we will cause an
5377 error later. Typedefs for `void' are OK (see DR#157). */
5378 if (void_at_end && parms != 0
5379 && TREE_CHAIN (parms) == 0
5380 && VOID_TYPE_P (TREE_TYPE (parms))
5381 && ! TREE_THIS_VOLATILE (parms)
5382 && ! TREE_READONLY (parms)
5383 && ! DECL_REGISTER (parms)
5384 && DECL_NAME (parms) == 0)
5385 {
5386 parms = NULL_TREE;
5387 storedecls (NULL_TREE);
5388 return tree_cons (NULL_TREE, NULL_TREE,
5389 tree_cons (NULL_TREE, void_type_node, NULL_TREE));
5390 }
5391
5392 /* Extract enumerator values and other non-parms declared with the parms.
5393 Likewise any forward parm decls that didn't have real parm decls. */
5394 for (decl = parms; decl;)
5395 {
5396 tree next = TREE_CHAIN (decl);
5397
5398 if (TREE_CODE (decl) != PARM_DECL)
5399 {
5400 TREE_CHAIN (decl) = new_parms;
5401 new_parms = decl;
5402 }
5403 else if (TREE_ASM_WRITTEN (decl))
5404 {
5405 error_with_decl (decl,
5406 "parameter `%s' has just a forward declaration");
5407 TREE_CHAIN (decl) = new_parms;
5408 new_parms = decl;
5409 }
5410 decl = next;
5411 }
5412
5413 /* Put the parm decls back in the order they were in in the parm list. */
5414 for (t = order; t; t = TREE_CHAIN (t))
5415 {
5416 if (TREE_CHAIN (t))
5417 TREE_CHAIN (TREE_VALUE (t)) = TREE_VALUE (TREE_CHAIN (t));
5418 else
5419 TREE_CHAIN (TREE_VALUE (t)) = 0;
5420 }
5421
5422 new_parms = chainon (order ? nreverse (TREE_VALUE (order)) : 0,
5423 new_parms);
5424
5425 /* Store the parmlist in the binding level since the old one
5426 is no longer a valid list. (We have changed the chain pointers.) */
5427 storedecls (new_parms);
5428
5429 for (decl = new_parms; decl; decl = TREE_CHAIN (decl))
5430 /* There may also be declarations for enumerators if an enumeration
5431 type is declared among the parms. Ignore them here. */
5432 if (TREE_CODE (decl) == PARM_DECL)
5433 {
5434 /* Since there is a prototype,
5435 args are passed in their declared types. */
5436 tree type = TREE_TYPE (decl);
5437 DECL_ARG_TYPE (decl) = type;
5438 if (PROMOTE_PROTOTYPES
5439 && INTEGRAL_TYPE_P (type)
5440 && TYPE_PRECISION (type) < TYPE_PRECISION (integer_type_node))
5441 DECL_ARG_TYPE (decl) = integer_type_node;
5442
5443 types = tree_cons (NULL_TREE, TREE_TYPE (decl), types);
5444 if (VOID_TYPE_P (TREE_VALUE (types)) && ! erred
5445 && DECL_NAME (decl) == 0)
5446 {
5447 error ("`void' in parameter list must be the entire list");
5448 erred = 1;
5449 }
5450 }
5451
5452 if (void_at_end)
5453 return tree_cons (new_parms, tags,
5454 nreverse (tree_cons (NULL_TREE, void_type_node, types)));
5455
5456 return tree_cons (new_parms, tags, nreverse (types));
5457}
5458
5459/* At end of parameter list, warn about any struct, union or enum tags
5460 defined within. Do so because these types cannot ever become complete. */
5461
5462void
5463parmlist_tags_warning ()
5464{
5465 tree elt;
5466 static int already;
5467
5468 for (elt = current_binding_level->tags; elt; elt = TREE_CHAIN (elt))
5469 {
5470 enum tree_code code = TREE_CODE (TREE_VALUE (elt));
5471 /* An anonymous union parm type is meaningful as a GNU extension.
5472 So don't warn for that. */
5473 if (code == UNION_TYPE && TREE_PURPOSE (elt) == 0 && !pedantic)
5474 continue;
5475 if (TREE_PURPOSE (elt) != 0)
5476 {
5477 if (code == RECORD_TYPE)
5478 warning ("`struct %s' declared inside parameter list",
5479 IDENTIFIER_POINTER (TREE_PURPOSE (elt)));
5480 else if (code == UNION_TYPE)
5481 warning ("`union %s' declared inside parameter list",
5482 IDENTIFIER_POINTER (TREE_PURPOSE (elt)));
5483 else
5484 warning ("`enum %s' declared inside parameter list",
5485 IDENTIFIER_POINTER (TREE_PURPOSE (elt)));
5486 }
5487 else
5488 {
5489 /* For translation these need to be separate warnings */
5490 if (code == RECORD_TYPE)
5491 warning ("anonymous struct declared inside parameter list");
5492 else if (code == UNION_TYPE)
5493 warning ("anonymous union declared inside parameter list");
5494 else
5495 warning ("anonymous enum declared inside parameter list");
5496 }
5497 if (! already)
5498 {
5499 warning ("its scope is only this definition or declaration, which is probably not what you want");
5500 already = 1;
5501 }
5502 }
5503}
5504
5505/* Get the struct, enum or union (CODE says which) with tag NAME.
5506 Define the tag as a forward-reference if it is not defined. */
5507
5508tree
5509xref_tag (code, name)
5510 enum tree_code code;
5511 tree name;
5512{
5513 /* If a cross reference is requested, look up the type
5514 already defined for this tag and return it. */
5515
5516 tree ref = lookup_tag (code, name, current_binding_level, 0);
5517 /* If this is the right type of tag, return what we found.
5518 (This reference will be shadowed by shadow_tag later if appropriate.)
5519 If this is the wrong type of tag, do not return it. If it was the
5520 wrong type in the same binding level, we will have had an error
5521 message already; if in a different binding level and declaring
5522 a name, pending_xref_error will give an error message; but if in a
5523 different binding level and not declaring a name, this tag should
5524 shadow the previous declaration of a different type of tag, and
5525 this would not work properly if we return the reference found.
5526 (For example, with "struct foo" in an outer scope, "union foo;"
5527 must shadow that tag with a new one of union type.) */
5528 if (ref && TREE_CODE (ref) == code)
5529 return ref;
5530
5531 /* If no such tag is yet defined, create a forward-reference node
5532 and record it as the "definition".
5533 When a real declaration of this type is found,
5534 the forward-reference will be altered into a real type. */
5535
5536 ref = make_node (code);
5537 if (code == ENUMERAL_TYPE)
5538 {
5539 /* Give the type a default layout like unsigned int
5540 to avoid crashing if it does not get defined. */
5541 TYPE_MODE (ref) = TYPE_MODE (unsigned_type_node);
5542 TYPE_ALIGN (ref) = TYPE_ALIGN (unsigned_type_node);
5543 TYPE_USER_ALIGN (ref) = 0;
5544 TREE_UNSIGNED (ref) = 1;
5545 TYPE_PRECISION (ref) = TYPE_PRECISION (unsigned_type_node);
5546 TYPE_MIN_VALUE (ref) = TYPE_MIN_VALUE (unsigned_type_node);
5547 TYPE_MAX_VALUE (ref) = TYPE_MAX_VALUE (unsigned_type_node);
5548 }
5549
5550 pushtag (name, ref);
5551
5552 return ref;
5553}
5554
5555/* Make sure that the tag NAME is defined *in the current binding level*
5556 at least as a forward reference.
5557 CODE says which kind of tag NAME ought to be. */
5558
5559tree
5560start_struct (code, name)
5561 enum tree_code code;
5562 tree name;
5563{
5564 /* If there is already a tag defined at this binding level
5565 (as a forward reference), just return it. */
5566
5567 tree ref = 0;
5568
5569 if (name != 0)
5570 ref = lookup_tag (code, name, current_binding_level, 1);
5571 if (ref && TREE_CODE (ref) == code)
5572 {
5573 C_TYPE_BEING_DEFINED (ref) = 1;
5574 TYPE_PACKED (ref) = flag_pack_struct;
5575 if (TYPE_FIELDS (ref))
5576 {
5577 if (code == UNION_TYPE)
5578 error ("redefinition of `union %s'",
5579 IDENTIFIER_POINTER (name));
5580 else
5581 error ("redefinition of `struct %s'",
5582 IDENTIFIER_POINTER (name));
5583 }
5584
5585 return ref;
5586 }
5587
5588 /* Otherwise create a forward-reference just so the tag is in scope. */
5589
5590 ref = make_node (code);
5591 pushtag (name, ref);
5592 C_TYPE_BEING_DEFINED (ref) = 1;
5593 TYPE_PACKED (ref) = flag_pack_struct;
5594 return ref;
5595}
5596
5597/* Process the specs, declarator (NULL if omitted) and width (NULL if omitted)
5598 of a structure component, returning a FIELD_DECL node.
5599 WIDTH is non-NULL for bit fields only, and is an INTEGER_CST node.
5600
5601 This is done during the parsing of the struct declaration.
5602 The FIELD_DECL nodes are chained together and the lot of them
5603 are ultimately passed to `build_struct' to make the RECORD_TYPE node. */
5604
5605tree
5606grokfield (filename, line, declarator, declspecs, width)
5607 const char *filename ATTRIBUTE_UNUSED;
5608 int line ATTRIBUTE_UNUSED;
5609 tree declarator, declspecs, width;
5610{
5611 tree value;
5612
5613 if (declarator == NULL_TREE && width == NULL_TREE)
5614 {
5615 /* This is an unnamed decl. We only support unnamed
5616 structs/unions, so check for other things and refuse them. */
5617 if (TREE_CODE (TREE_VALUE (declspecs)) != RECORD_TYPE
5618 && TREE_CODE (TREE_VALUE (declspecs)) != UNION_TYPE)
5619 {
5620 error ("unnamed fields of type other than struct or union are not allowed");
5621 return NULL_TREE;
5622 }
5623 }
5624
5625 value = grokdeclarator (declarator, declspecs, width ? BITFIELD : FIELD, 0);
5626
5627 finish_decl (value, NULL_TREE, NULL_TREE);
5628 DECL_INITIAL (value) = width;
5629
5630 maybe_objc_check_decl (value);
5631 return value;
5632}
5633
5634/* Fill in the fields of a RECORD_TYPE or UNION_TYPE node, T.
5635 FIELDLIST is a chain of FIELD_DECL nodes for the fields.
5636 ATTRIBUTES are attributes to be applied to the structure. */
5637
5638tree
5639finish_struct (t, fieldlist, attributes)
5640 tree t;
5641 tree fieldlist;
5642 tree attributes;
5643{
5644 tree x;
5645 int toplevel = global_binding_level == current_binding_level;
5646 int saw_named_field;
5647
5648 /* If this type was previously laid out as a forward reference,
5649 make sure we lay it out again. */
5650
5651 TYPE_SIZE (t) = 0;
5652
5653 decl_attributes (&t, attributes, (int) ATTR_FLAG_TYPE_IN_PLACE);
5654
5655 /* Nameless union parm types are useful as GCC extension. */
5656 if (! (TREE_CODE (t) == UNION_TYPE && TYPE_NAME (t) == 0) && !pedantic)
5657 /* Otherwise, warn about any struct or union def. in parmlist. */
5658 if (in_parm_level_p ())
5659 {
5660 if (pedantic)
5661 pedwarn ("%s defined inside parms",
5662 TREE_CODE (t) == UNION_TYPE ? _("union") : _("structure"));
5663 else if (! flag_traditional)
5664 warning ("%s defined inside parms",
5665 TREE_CODE (t) == UNION_TYPE ? _("union") : _("structure"));
5666 }
5667
5668 if (pedantic)
5669 {
5670 for (x = fieldlist; x; x = TREE_CHAIN (x))
5671 if (DECL_NAME (x) != 0)
5672 break;
5673
5674 if (x == 0)
5675 pedwarn ("%s has no %s",
5676 TREE_CODE (t) == UNION_TYPE ? _("union") : _("struct"),
5677 fieldlist ? _("named members") : _("members"));
5678 }
5679
5680 /* Install struct as DECL_CONTEXT of each field decl.
5681 Also process specified field sizes,m which is found in the DECL_INITIAL.
5682 Store 0 there, except for ": 0" fields (so we can find them
5683 and delete them, below). */
5684
5685 saw_named_field = 0;
5686 for (x = fieldlist; x; x = TREE_CHAIN (x))
5687 {
5688 DECL_CONTEXT (x) = t;
5689 DECL_PACKED (x) |= TYPE_PACKED (t);
5690
5691 /* If any field is const, the structure type is pseudo-const. */
5692 if (TREE_READONLY (x))
5693 C_TYPE_FIELDS_READONLY (t) = 1;
5694 else
5695 {
5696 /* A field that is pseudo-const makes the structure likewise. */
5697 tree t1 = TREE_TYPE (x);
5698 while (TREE_CODE (t1) == ARRAY_TYPE)
5699 t1 = TREE_TYPE (t1);
5700 if ((TREE_CODE (t1) == RECORD_TYPE || TREE_CODE (t1) == UNION_TYPE)
5701 && C_TYPE_FIELDS_READONLY (t1))
5702 C_TYPE_FIELDS_READONLY (t) = 1;
5703 }
5704
5705 /* Any field that is volatile means variables of this type must be
5706 treated in some ways as volatile. */
5707 if (TREE_THIS_VOLATILE (x))
5708 C_TYPE_FIELDS_VOLATILE (t) = 1;
5709
5710 /* Any field of nominal variable size implies structure is too. */
5711 if (C_DECL_VARIABLE_SIZE (x))
5712 C_TYPE_VARIABLE_SIZE (t) = 1;
5713
5714 /* Detect invalid nested redefinition. */
5715 if (TREE_TYPE (x) == t)
5716 error ("nested redefinition of `%s'",
5717 IDENTIFIER_POINTER (TYPE_NAME (t)));
5718
5719 /* Detect invalid bit-field size. */
5720 if (DECL_INITIAL (x))
5721 STRIP_NOPS (DECL_INITIAL (x));
5722 if (DECL_INITIAL (x))
5723 {
5724 if (TREE_CODE (DECL_INITIAL (x)) == INTEGER_CST)
5725 constant_expression_warning (DECL_INITIAL (x));
5726 else
5727 {
5728 error_with_decl (x,
5729 "bit-field `%s' width not an integer constant");
5730 DECL_INITIAL (x) = NULL;
5731 }
5732 }
5733
5734 /* Detect invalid bit-field type. */
5735 if (DECL_INITIAL (x)
5736 && TREE_CODE (TREE_TYPE (x)) != INTEGER_TYPE
5737 && TREE_CODE (TREE_TYPE (x)) != BOOLEAN_TYPE
5738 && TREE_CODE (TREE_TYPE (x)) != ENUMERAL_TYPE)
5739 {
5740 error_with_decl (x, "bit-field `%s' has invalid type");
5741 DECL_INITIAL (x) = NULL;
5742 }
5743
5744 if (DECL_INITIAL (x) && pedantic
5745 && TYPE_MAIN_VARIANT (TREE_TYPE (x)) != integer_type_node
5746 && TYPE_MAIN_VARIANT (TREE_TYPE (x)) != unsigned_type_node
5747 && TYPE_MAIN_VARIANT (TREE_TYPE (x)) != c_bool_type_node
5748 /* Accept an enum that's equivalent to int or unsigned int. */
5749 && !(TREE_CODE (TREE_TYPE (x)) == ENUMERAL_TYPE
5750 && (TYPE_PRECISION (TREE_TYPE (x))
5751 == TYPE_PRECISION (integer_type_node))))
5752 pedwarn_with_decl (x, "bit-field `%s' type invalid in ISO C");
5753
5754 /* Detect and ignore out of range field width and process valid
5755 field widths. */
5756 if (DECL_INITIAL (x))
5757 {
5758 int max_width
5759 = (TYPE_MAIN_VARIANT (TREE_TYPE (x)) == c_bool_type_node
5760 ? CHAR_TYPE_SIZE : TYPE_PRECISION (TREE_TYPE (x)));
5761
5762 if (tree_int_cst_sgn (DECL_INITIAL (x)) < 0)
5763 error_with_decl (x, "negative width in bit-field `%s'");
5764 else if (0 < compare_tree_int (DECL_INITIAL (x), max_width))
5765 pedwarn_with_decl (x, "width of `%s' exceeds its type");
5766 else if (integer_zerop (DECL_INITIAL (x)) && DECL_NAME (x) != 0)
5767 error_with_decl (x, "zero width for bit-field `%s'");
5768 else
5769 {
5770 /* The test above has assured us that TREE_INT_CST_HIGH is 0. */
5771 unsigned HOST_WIDE_INT width
5772 = tree_low_cst (DECL_INITIAL (x), 1);
5773
5774 if (TREE_CODE (TREE_TYPE (x)) == ENUMERAL_TYPE
5775 && (width < min_precision (TYPE_MIN_VALUE (TREE_TYPE (x)),
5776 TREE_UNSIGNED (TREE_TYPE (x)))
5777 || (width
5778 < min_precision (TYPE_MAX_VALUE (TREE_TYPE (x)),
5779 TREE_UNSIGNED (TREE_TYPE (x))))))
5780 warning_with_decl (x,
5781 "`%s' is narrower than values of its type");
5782
5783 DECL_SIZE (x) = bitsize_int (width);
5784 DECL_BIT_FIELD (x) = 1;
5785 SET_DECL_C_BIT_FIELD (x);
5786
5787 if (width == 0
5788 && ! (* targetm.ms_bitfield_layout_p) (t))
5789 {
5790 /* field size 0 => force desired amount of alignment. */
5791#ifdef EMPTY_FIELD_BOUNDARY
5792 DECL_ALIGN (x) = MAX (DECL_ALIGN (x), EMPTY_FIELD_BOUNDARY);
5793#endif
5794#ifdef PCC_BITFIELD_TYPE_MATTERS
5795 if (PCC_BITFIELD_TYPE_MATTERS)
5796 {
5797 DECL_ALIGN (x) = MAX (DECL_ALIGN (x),
5798 TYPE_ALIGN (TREE_TYPE (x)));
5799 DECL_USER_ALIGN (x) |= TYPE_USER_ALIGN (TREE_TYPE (x));
5800 }
5801#endif
5802 }
5803 }
5804 }
5805
5806 else if (TREE_TYPE (x) != error_mark_node)
5807 {
5808 unsigned int min_align = (DECL_PACKED (x) ? BITS_PER_UNIT
5809 : TYPE_ALIGN (TREE_TYPE (x)));
5810
5811 /* Non-bit-fields are aligned for their type, except packed
5812 fields which require only BITS_PER_UNIT alignment. */
5813 DECL_ALIGN (x) = MAX (DECL_ALIGN (x), min_align);
5814 if (! DECL_PACKED (x))
5815 DECL_USER_ALIGN (x) |= TYPE_USER_ALIGN (TREE_TYPE (x));
5816 }
5817
5818 DECL_INITIAL (x) = 0;
5819
5820 /* Detect flexible array member in an invalid context. */
5821 if (TREE_CODE (TREE_TYPE (x)) == ARRAY_TYPE
5822 && TYPE_SIZE (TREE_TYPE (x)) == NULL_TREE
5823 && TYPE_DOMAIN (TREE_TYPE (x)) != NULL_TREE
5824 && TYPE_MAX_VALUE (TYPE_DOMAIN (TREE_TYPE (x))) == NULL_TREE)
5825 {
5826 if (TREE_CODE (t) == UNION_TYPE)
5827 error_with_decl (x, "flexible array member in union");
5828 else if (TREE_CHAIN (x) != NULL_TREE)
5829 error_with_decl (x, "flexible array member not at end of struct");
5830 else if (! saw_named_field)
5831 error_with_decl (x, "flexible array member in otherwise empty struct");
5832 }
5833 if (DECL_NAME (x))
5834 saw_named_field = 1;
5835 }
5836
5837 /* Delete all duplicate fields from the fieldlist */
5838 for (x = fieldlist; x && TREE_CHAIN (x);)
5839 /* Anonymous fields aren't duplicates. */
5840 if (DECL_NAME (TREE_CHAIN (x)) == 0)
5841 x = TREE_CHAIN (x);
5842 else
5843 {
5844 tree y = fieldlist;
5845
5846 while (1)
5847 {
5848 if (DECL_NAME (y) == DECL_NAME (TREE_CHAIN (x)))
5849 break;
5850 if (y == x)
5851 break;
5852 y = TREE_CHAIN (y);
5853 }
5854 if (DECL_NAME (y) == DECL_NAME (TREE_CHAIN (x)))
5855 {
5856 error_with_decl (TREE_CHAIN (x), "duplicate member `%s'");
5857 TREE_CHAIN (x) = TREE_CHAIN (TREE_CHAIN (x));
5858 }
5859 else
5860 x = TREE_CHAIN (x);
5861 }
5862
5863 /* Now we have the nearly final fieldlist. Record it,
5864 then lay out the structure or union (including the fields). */
5865
5866 TYPE_FIELDS (t) = fieldlist;
5867
5868 layout_type (t);
5869
5870 /* Delete all zero-width bit-fields from the fieldlist */
5871 {
5872 tree *fieldlistp = &fieldlist;
5873 while (*fieldlistp)
5874 if (TREE_CODE (*fieldlistp) == FIELD_DECL && DECL_INITIAL (*fieldlistp))
5875 *fieldlistp = TREE_CHAIN (*fieldlistp);
5876 else
5877 fieldlistp = &TREE_CHAIN (*fieldlistp);
5878 }
5879
5880 /* Now we have the truly final field list.
5881 Store it in this type and in the variants. */
5882
5883 TYPE_FIELDS (t) = fieldlist;
5884
5885 for (x = TYPE_MAIN_VARIANT (t); x; x = TYPE_NEXT_VARIANT (x))
5886 {
5887 TYPE_FIELDS (x) = TYPE_FIELDS (t);
5888 TYPE_LANG_SPECIFIC (x) = TYPE_LANG_SPECIFIC (t);
5889 TYPE_ALIGN (x) = TYPE_ALIGN (t);
5890 TYPE_USER_ALIGN (x) = TYPE_USER_ALIGN (t);
5891 }
5892
5893 /* If this was supposed to be a transparent union, but we can't
5894 make it one, warn and turn off the flag. */
5895 if (TREE_CODE (t) == UNION_TYPE
5896 && TYPE_TRANSPARENT_UNION (t)
5897 && TYPE_MODE (t) != DECL_MODE (TYPE_FIELDS (t)))
5898 {
5899 TYPE_TRANSPARENT_UNION (t) = 0;
5900 warning ("union cannot be made transparent");
5901 }
5902
5903 /* If this structure or union completes the type of any previous
5904 variable declaration, lay it out and output its rtl. */
5905
5906 if (current_binding_level->n_incomplete != 0)
5907 {
5908 tree decl;
5909 for (decl = current_binding_level->names; decl; decl = TREE_CHAIN (decl))
5910 {
5911 if (TYPE_MAIN_VARIANT (TREE_TYPE (decl)) == TYPE_MAIN_VARIANT (t)
5912 && TREE_CODE (decl) != TYPE_DECL)
5913 {
5914 layout_decl (decl, 0);
5915 /* This is a no-op in c-lang.c or something real in objc-actions.c. */
5916 maybe_objc_check_decl (decl);
5917 rest_of_decl_compilation (decl, NULL, toplevel, 0);
5918 if (! toplevel)
5919 expand_decl (decl);
5920 if (--current_binding_level->n_incomplete == 0)
5921 break;
5922 }
5923 else if (!COMPLETE_TYPE_P (TREE_TYPE (decl))
5924 && TREE_CODE (TREE_TYPE (decl)) == ARRAY_TYPE)
5925 {
5926 tree element = TREE_TYPE (decl);
5927 while (TREE_CODE (element) == ARRAY_TYPE)
5928 element = TREE_TYPE (element);
5929 if (element == t)
5930 {
5931 layout_array_type (TREE_TYPE (decl));
5932 if (TREE_CODE (decl) != TYPE_DECL)
5933 {
5934 layout_decl (decl, 0);
5935 maybe_objc_check_decl (decl);
5936 rest_of_decl_compilation (decl, NULL, toplevel, 0);
5937 if (! toplevel)
5938 expand_decl (decl);
5939 }
5940 if (--current_binding_level->n_incomplete == 0)
5941 break;
5942 }
5943 }
5944 }
5945 }
5946
5947 /* Finish debugging output for this type. */
5948 rest_of_type_compilation (t, toplevel);
5949
5950 return t;
5951}
5952
5953/* Lay out the type T, and its element type, and so on. */
5954
5955static void
5956layout_array_type (t)
5957 tree t;
5958{
5959 if (TREE_CODE (TREE_TYPE (t)) == ARRAY_TYPE)
5960 layout_array_type (TREE_TYPE (t));
5961 layout_type (t);
5962}
5963
5964/* Begin compiling the definition of an enumeration type.
5965 NAME is its name (or null if anonymous).
5966 Returns the type object, as yet incomplete.
5967 Also records info about it so that build_enumerator
5968 may be used to declare the individual values as they are read. */
5969
5970tree
5971start_enum (name)
5972 tree name;
5973{
5974 tree enumtype = 0;
5975
5976 /* If this is the real definition for a previous forward reference,
5977 fill in the contents in the same object that used to be the
5978 forward reference. */
5979
5980 if (name != 0)
5981 enumtype = lookup_tag (ENUMERAL_TYPE, name, current_binding_level, 1);
5982
5983 if (enumtype == 0 || TREE_CODE (enumtype) != ENUMERAL_TYPE)
5984 {
5985 enumtype = make_node (ENUMERAL_TYPE);
5986 pushtag (name, enumtype);
5987 }
5988
5989 C_TYPE_BEING_DEFINED (enumtype) = 1;
5990
5991 if (TYPE_VALUES (enumtype) != 0)
5992 {
5993 /* This enum is a named one that has been declared already. */
5994 error ("redeclaration of `enum %s'", IDENTIFIER_POINTER (name));
5995
5996 /* Completely replace its old definition.
5997 The old enumerators remain defined, however. */
5998 TYPE_VALUES (enumtype) = 0;
5999 }
6000
6001 enum_next_value = integer_zero_node;
6002 enum_overflow = 0;
6003
6004 if (flag_short_enums)
6005 TYPE_PACKED (enumtype) = 1;
6006
6007 return enumtype;
6008}
6009
6010/* After processing and defining all the values of an enumeration type,
6011 install their decls in the enumeration type and finish it off.
6012 ENUMTYPE is the type object, VALUES a list of decl-value pairs,
6013 and ATTRIBUTES are the specified attributes.
6014 Returns ENUMTYPE. */
6015
6016tree
6017finish_enum (enumtype, values, attributes)
6018 tree enumtype;
6019 tree values;
6020 tree attributes;
6021{
6022 tree pair, tem;
6023 tree minnode = 0, maxnode = 0, enum_value_type;
6024 int precision, unsign;
6025 int toplevel = (global_binding_level == current_binding_level);
6026
6027 if (in_parm_level_p ())
6028 warning ("enum defined inside parms");
6029
6030 decl_attributes (&enumtype, attributes, (int) ATTR_FLAG_TYPE_IN_PLACE);
6031
6032 /* Calculate the maximum value of any enumerator in this type. */
6033
6034 if (values == error_mark_node)
6035 minnode = maxnode = integer_zero_node;
6036 else
6037 {
6038 minnode = maxnode = TREE_VALUE (values);
6039 for (pair = TREE_CHAIN (values); pair; pair = TREE_CHAIN (pair))
6040 {
6041 tree value = TREE_VALUE (pair);
6042 if (tree_int_cst_lt (maxnode, value))
6043 maxnode = value;
6044 if (tree_int_cst_lt (value, minnode))
6045 minnode = value;
6046 }
6047 }
6048
6049 /* Construct the final type of this enumeration. It is the same
6050 as one of the integral types - the narrowest one that fits, except
6051 that normally we only go as narrow as int - and signed iff any of
6052 the values are negative. */
6053 unsign = (tree_int_cst_sgn (minnode) >= 0);
6054 precision = MAX (min_precision (minnode, unsign),
6055 min_precision (maxnode, unsign));
6056 if (TYPE_PACKED (enumtype) || precision > TYPE_PRECISION (integer_type_node))
6057 {
6058 tree narrowest = type_for_size (precision, unsign);
6059 if (narrowest == 0)
6060 {
6061 warning ("enumeration values exceed range of largest integer");
6062 narrowest = long_long_integer_type_node;
6063 }
6064
6065 precision = TYPE_PRECISION (narrowest);
6066 }
6067 else
6068 precision = TYPE_PRECISION (integer_type_node);
6069
6070 if (precision == TYPE_PRECISION (integer_type_node))
6071 enum_value_type = type_for_size (precision, 0);
6072 else
6073 enum_value_type = enumtype;
6074
6075 TYPE_MIN_VALUE (enumtype) = minnode;
6076 TYPE_MAX_VALUE (enumtype) = maxnode;
6077 TYPE_PRECISION (enumtype) = precision;
6078 TREE_UNSIGNED (enumtype) = unsign;
6079 TYPE_SIZE (enumtype) = 0;
6080 layout_type (enumtype);
6081
6082 if (values != error_mark_node)
6083 {
6084 /* Change the type of the enumerators to be the enum type. We
6085 need to do this irrespective of the size of the enum, for
6086 proper type checking. Replace the DECL_INITIALs of the
6087 enumerators, and the value slots of the list, with copies
6088 that have the enum type; they cannot be modified in place
6089 because they may be shared (e.g. integer_zero_node) Finally,
6090 change the purpose slots to point to the names of the decls. */
6091 for (pair = values; pair; pair = TREE_CHAIN (pair))
6092 {
6093 tree enu = TREE_PURPOSE (pair);
6094
6095 TREE_TYPE (enu) = enumtype;
6096 DECL_SIZE (enu) = TYPE_SIZE (enumtype);
6097 DECL_SIZE_UNIT (enu) = TYPE_SIZE_UNIT (enumtype);
6098 DECL_ALIGN (enu) = TYPE_ALIGN (enumtype);
6099 DECL_USER_ALIGN (enu) = TYPE_USER_ALIGN (enumtype);
6100 DECL_MODE (enu) = TYPE_MODE (enumtype);
6101
6102 /* The ISO C Standard mandates enumerators to have type int,
6103 even though the underlying type of an enum type is
6104 unspecified. Here we convert any enumerators that fit in
6105 an int to type int, to avoid promotions to unsigned types
6106 when comparing integers with enumerators that fit in the
6107 int range. When -pedantic is given, build_enumerator()
6108 would have already taken care of those that don't fit. */
6109 if (int_fits_type_p (DECL_INITIAL (enu), enum_value_type))
6110 DECL_INITIAL (enu) = convert (enum_value_type, DECL_INITIAL (enu));
6111 else
6112 DECL_INITIAL (enu) = convert (enumtype, DECL_INITIAL (enu));
6113
6114 TREE_PURPOSE (pair) = DECL_NAME (enu);
6115 TREE_VALUE (pair) = DECL_INITIAL (enu);
6116 }
6117
6118 TYPE_VALUES (enumtype) = values;
6119 }
6120
6121 /* Fix up all variant types of this enum type. */
6122 for (tem = TYPE_MAIN_VARIANT (enumtype); tem; tem = TYPE_NEXT_VARIANT (tem))
6123 {
6124 if (tem == enumtype)
6125 continue;
6126 TYPE_VALUES (tem) = TYPE_VALUES (enumtype);
6127 TYPE_MIN_VALUE (tem) = TYPE_MIN_VALUE (enumtype);
6128 TYPE_MAX_VALUE (tem) = TYPE_MAX_VALUE (enumtype);
6129 TYPE_SIZE (tem) = TYPE_SIZE (enumtype);
6130 TYPE_SIZE_UNIT (tem) = TYPE_SIZE_UNIT (enumtype);
6131 TYPE_MODE (tem) = TYPE_MODE (enumtype);
6132 TYPE_PRECISION (tem) = TYPE_PRECISION (enumtype);
6133 TYPE_ALIGN (tem) = TYPE_ALIGN (enumtype);
6134 TYPE_USER_ALIGN (tem) = TYPE_USER_ALIGN (enumtype);
6135 TREE_UNSIGNED (tem) = TREE_UNSIGNED (enumtype);
6136 }
6137
6138 /* Finish debugging output for this type. */
6139 rest_of_type_compilation (enumtype, toplevel);
6140
6141 return enumtype;
6142}
6143
6144/* Build and install a CONST_DECL for one value of the
6145 current enumeration type (one that was begun with start_enum).
6146 Return a tree-list containing the CONST_DECL and its value.
6147 Assignment of sequential values by default is handled here. */
6148
6149tree
6150build_enumerator (name, value)
6151 tree name, value;
6152{
6153 tree decl, type;
6154
6155 /* Validate and default VALUE. */
6156
6157 /* Remove no-op casts from the value. */
6158 if (value)
6159 STRIP_TYPE_NOPS (value);
6160
6161 if (value != 0)
6162 {
6163 if (TREE_CODE (value) == INTEGER_CST)
6164 {
6165 value = default_conversion (value);
6166 constant_expression_warning (value);
6167 }
6168 else
6169 {
6170 error ("enumerator value for `%s' not integer constant",
6171 IDENTIFIER_POINTER (name));
6172 value = 0;
6173 }
6174 }
6175
6176 /* Default based on previous value. */
6177 /* It should no longer be possible to have NON_LVALUE_EXPR
6178 in the default. */
6179 if (value == 0)
6180 {
6181 value = enum_next_value;
6182 if (enum_overflow)
6183 error ("overflow in enumeration values");
6184 }
6185
6186 if (pedantic && ! int_fits_type_p (value, integer_type_node))
6187 {
6188 pedwarn ("ISO C restricts enumerator values to range of `int'");
6189 value = convert (integer_type_node, value);
6190 }
6191
6192 /* Set basis for default for next value. */
6193 enum_next_value = build_binary_op (PLUS_EXPR, value, integer_one_node, 0);
6194 enum_overflow = tree_int_cst_lt (enum_next_value, value);
6195
6196 /* Now create a declaration for the enum value name. */
6197
6198 type = TREE_TYPE (value);
6199 type = type_for_size (MAX (TYPE_PRECISION (type),
6200 TYPE_PRECISION (integer_type_node)),
6201 ((flag_traditional
6202 || TYPE_PRECISION (type) >= TYPE_PRECISION (integer_type_node))
6203 && TREE_UNSIGNED (type)));
6204
6205 decl = build_decl (CONST_DECL, name, type);
6206 DECL_INITIAL (decl) = convert (type, value);
6207 pushdecl (decl);
6208
6209 return tree_cons (decl, value, NULL_TREE);
6210}
6211
6212
6213/* Create the FUNCTION_DECL for a function definition.
6214 DECLSPECS, DECLARATOR and ATTRIBUTES are the parts of
6215 the declaration; they describe the function's name and the type it returns,
6216 but twisted together in a fashion that parallels the syntax of C.
6217
6218 This function creates a binding context for the function body
6219 as well as setting up the FUNCTION_DECL in current_function_decl.
6220
6221 Returns 1 on success. If the DECLARATOR is not suitable for a function
6222 (it defines a datum instead), we return 0, which tells
6223 yyparse to report a parse error. */
6224
6225int
6226start_function (declspecs, declarator, attributes)
6227 tree declarator, declspecs, attributes;
6228{
6229 tree decl1, old_decl;
6230 tree restype;
6231 int old_immediate_size_expand = immediate_size_expand;
6232
6233 current_function_returns_value = 0; /* Assume, until we see it does. */
6234 current_function_returns_null = 0;
6235 current_function_returns_abnormally = 0;
6236 warn_about_return_type = 0;
6237 current_extern_inline = 0;
6238 c_function_varargs = 0;
6239 named_labels = 0;
6240 shadowed_labels = 0;
6241
6242 /* Don't expand any sizes in the return type of the function. */
6243 immediate_size_expand = 0;
6244
6245 decl1 = grokdeclarator (declarator, declspecs, FUNCDEF, 1);
6246
6247 /* If the declarator is not suitable for a function definition,
6248 cause a syntax error. */
6249 if (decl1 == 0)
6250 {
6251 immediate_size_expand = old_immediate_size_expand;
6252 return 0;
6253 }
6254
6255 decl_attributes (&decl1, attributes, 0);
6256
6257 /* If #pragma weak was used, mark the decl weak now. */
6258 if (current_binding_level == global_binding_level)
6259 maybe_apply_pragma_weak (decl1);
6260
6261 if (DECL_DECLARED_INLINE_P (decl1)
6262 && DECL_UNINLINABLE (decl1)
6263 && lookup_attribute ("noinline", DECL_ATTRIBUTES (decl1)))
6264 warning_with_decl (decl1,
6265 "inline function `%s' given attribute noinline");
6266
6267 announce_function (decl1);
6268
6269 if (!COMPLETE_OR_VOID_TYPE_P (TREE_TYPE (TREE_TYPE (decl1))))
6270 {
6271 error ("return type is an incomplete type");
6272 /* Make it return void instead. */
6273 TREE_TYPE (decl1)
6274 = build_function_type (void_type_node,
6275 TYPE_ARG_TYPES (TREE_TYPE (decl1)));
6276 }
6277
6278 if (warn_about_return_type)
6279 pedwarn_c99 ("return type defaults to `int'");
6280
6281 /* Save the parm names or decls from this function's declarator
6282 where store_parm_decls will find them. */
6283 current_function_parms = last_function_parms;
6284 current_function_parm_tags = last_function_parm_tags;
6285
6286 /* Make the init_value nonzero so pushdecl knows this is not tentative.
6287 error_mark_node is replaced below (in poplevel) with the BLOCK. */
6288 DECL_INITIAL (decl1) = error_mark_node;
6289
6290 /* If this definition isn't a prototype and we had a prototype declaration
6291 before, copy the arg type info from that prototype.
6292 But not if what we had before was a builtin function. */
6293 old_decl = lookup_name_current_level (DECL_NAME (decl1));
6294 if (old_decl != 0 && TREE_CODE (TREE_TYPE (old_decl)) == FUNCTION_TYPE
6295 && !DECL_BUILT_IN (old_decl)
6296 && (TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (decl1)))
6297 == TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (old_decl))))
6298 && TYPE_ARG_TYPES (TREE_TYPE (decl1)) == 0)
6299 {
6300 TREE_TYPE (decl1) = TREE_TYPE (old_decl);
6301 current_function_prototype_file = DECL_SOURCE_FILE (old_decl);
6302 current_function_prototype_line = DECL_SOURCE_LINE (old_decl);
6303 }
6304
6305 /* If there is no explicit declaration, look for any out-of-scope implicit
6306 declarations. */
6307 if (old_decl == 0)
6308 old_decl = IDENTIFIER_IMPLICIT_DECL (DECL_NAME (decl1));
6309
6310 /* Optionally warn of old-fashioned def with no previous prototype. */
6311 if (warn_strict_prototypes
6312 && TYPE_ARG_TYPES (TREE_TYPE (decl1)) == 0
6313 && !(old_decl != 0
6314 && (TYPE_ARG_TYPES (TREE_TYPE (old_decl)) != 0
6315 || (DECL_BUILT_IN (old_decl)
597 }
598 else
599 error ("unknown C standard `%s'", argstart);
600 }
601 else if (!strcmp (p, "-fdollars-in-identifiers"))
602 dollars_in_ident = 1;
603 else if (!strcmp (p, "-fno-dollars-in-identifiers"))
604 dollars_in_ident = 0;
605 else if (!strcmp (p, "-fsigned-char"))
606 flag_signed_char = 1;
607 else if (!strcmp (p, "-funsigned-char"))
608 flag_signed_char = 0;
609 else if (!strcmp (p, "-fno-signed-char"))
610 flag_signed_char = 0;
611 else if (!strcmp (p, "-fno-unsigned-char"))
612 flag_signed_char = 1;
613 else if (!strcmp (p, "-fsigned-bitfields")
614 || !strcmp (p, "-fno-unsigned-bitfields"))
615 {
616 flag_signed_bitfields = 1;
617 explicit_flag_signed_bitfields = 1;
618 }
619 else if (!strcmp (p, "-funsigned-bitfields")
620 || !strcmp (p, "-fno-signed-bitfields"))
621 {
622 flag_signed_bitfields = 0;
623 explicit_flag_signed_bitfields = 1;
624 }
625 else if (!strcmp (p, "-fshort-enums"))
626 flag_short_enums = 1;
627 else if (!strcmp (p, "-fno-short-enums"))
628 flag_short_enums = 0;
629 else if (!strcmp (p, "-fshort-wchar"))
630 flag_short_wchar = 1;
631 else if (!strcmp (p, "-fno-short-wchar"))
632 flag_short_wchar = 0;
633 else if (!strcmp (p, "-fcond-mismatch"))
634 flag_cond_mismatch = 1;
635 else if (!strcmp (p, "-fno-cond-mismatch"))
636 flag_cond_mismatch = 0;
637 else if (!strcmp (p, "-fshort-double"))
638 flag_short_double = 1;
639 else if (!strcmp (p, "-fno-short-double"))
640 flag_short_double = 0;
641 else if (!strcmp (p, "-fasm"))
642 flag_no_asm = 0;
643 else if (!strcmp (p, "-fno-asm"))
644 flag_no_asm = 1;
645 else if (!strcmp (p, "-fbuiltin"))
646 flag_no_builtin = 0;
647 else if (!strcmp (p, "-fno-builtin"))
648 flag_no_builtin = 1;
649 else if (!strncmp (p, "-fno-builtin-", strlen ("-fno-builtin-")))
650 disable_builtin_function (p + strlen ("-fno-builtin-"));
651 else if (p[0] == '-' && p[1] == 'f' && dump_switch_p (p + 2))
652 ;
653 else if (!strcmp (p, "-ansi"))
654 goto iso_1990;
655 else if (!strcmp (p, "-Werror-implicit-function-declaration"))
656 mesg_implicit_function_declaration = 2;
657 else if (!strcmp (p, "-Wimplicit-function-declaration"))
658 mesg_implicit_function_declaration = 1;
659 else if (!strcmp (p, "-Wno-implicit-function-declaration"))
660 mesg_implicit_function_declaration = 0;
661 else if (!strcmp (p, "-Wimplicit-int"))
662 warn_implicit_int = 1;
663 else if (!strcmp (p, "-Wno-implicit-int"))
664 warn_implicit_int = 0;
665 else if (!strcmp (p, "-Wimplicit"))
666 {
667 warn_implicit_int = 1;
668 if (mesg_implicit_function_declaration != 2)
669 mesg_implicit_function_declaration = 1;
670 }
671 else if (!strcmp (p, "-Wno-implicit"))
672 warn_implicit_int = 0, mesg_implicit_function_declaration = 0;
673 else if (!strcmp (p, "-Wlong-long"))
674 warn_long_long = 1;
675 else if (!strcmp (p, "-Wno-long-long"))
676 warn_long_long = 0;
677 else if (!strcmp (p, "-Wwrite-strings"))
678 flag_const_strings = 1;
679 else if (!strcmp (p, "-Wno-write-strings"))
680 flag_const_strings = 0;
681 else if (!strcmp (p, "-Wcast-qual"))
682 warn_cast_qual = 1;
683 else if (!strcmp (p, "-Wno-cast-qual"))
684 warn_cast_qual = 0;
685 else if (!strcmp (p, "-Wbad-function-cast"))
686 warn_bad_function_cast = 1;
687 else if (!strcmp (p, "-Wno-bad-function-cast"))
688 warn_bad_function_cast = 0;
689 else if (!strcmp (p, "-Wno-missing-noreturn"))
690 warn_missing_noreturn = 0;
691 else if (!strcmp (p, "-Wmissing-format-attribute"))
692 warn_missing_format_attribute = 1;
693 else if (!strcmp (p, "-Wno-missing-format-attribute"))
694 warn_missing_format_attribute = 0;
695 else if (!strcmp (p, "-Wpointer-arith"))
696 warn_pointer_arith = 1;
697 else if (!strcmp (p, "-Wno-pointer-arith"))
698 warn_pointer_arith = 0;
699 else if (!strcmp (p, "-Wstrict-prototypes"))
700 warn_strict_prototypes = 1;
701 else if (!strcmp (p, "-Wno-strict-prototypes"))
702 warn_strict_prototypes = 0;
703 else if (!strcmp (p, "-Wmissing-prototypes"))
704 warn_missing_prototypes = 1;
705 else if (!strcmp (p, "-Wno-missing-prototypes"))
706 warn_missing_prototypes = 0;
707 else if (!strcmp (p, "-Wmissing-declarations"))
708 warn_missing_declarations = 1;
709 else if (!strcmp (p, "-Wno-missing-declarations"))
710 warn_missing_declarations = 0;
711 else if (!strcmp (p, "-Wredundant-decls"))
712 warn_redundant_decls = 1;
713 else if (!strcmp (p, "-Wno-redundant-decls"))
714 warn_redundant_decls = 0;
715 else if (!strcmp (p, "-Wnested-externs"))
716 warn_nested_externs = 1;
717 else if (!strcmp (p, "-Wno-nested-externs"))
718 warn_nested_externs = 0;
719 else if (!strcmp (p, "-Wtraditional"))
720 warn_traditional = 1;
721 else if (!strcmp (p, "-Wno-traditional"))
722 warn_traditional = 0;
723 else if (!strncmp (p, "-Wformat=", 9))
724 set_Wformat (atoi (p + 9));
725 else if (!strcmp (p, "-Wformat"))
726 set_Wformat (1);
727 else if (!strcmp (p, "-Wno-format"))
728 set_Wformat (0);
729 else if (!strcmp (p, "-Wformat-y2k"))
730 warn_format_y2k = 1;
731 else if (!strcmp (p, "-Wno-format-y2k"))
732 warn_format_y2k = 0;
733 else if (!strcmp (p, "-Wformat-extra-args"))
734 warn_format_extra_args = 1;
735 else if (!strcmp (p, "-Wno-format-extra-args"))
736 warn_format_extra_args = 0;
737 else if (!strcmp (p, "-Wformat-nonliteral"))
738 warn_format_nonliteral = 1;
739 else if (!strcmp (p, "-Wno-format-nonliteral"))
740 warn_format_nonliteral = 0;
741 else if (!strcmp (p, "-Wformat-security"))
742 warn_format_security = 1;
743 else if (!strcmp (p, "-Wno-format-security"))
744 warn_format_security = 0;
745 else if (!strcmp (p, "-Wchar-subscripts"))
746 warn_char_subscripts = 1;
747 else if (!strcmp (p, "-Wno-char-subscripts"))
748 warn_char_subscripts = 0;
749 else if (!strcmp (p, "-Wconversion"))
750 warn_conversion = 1;
751 else if (!strcmp (p, "-Wno-conversion"))
752 warn_conversion = 0;
753 else if (!strcmp (p, "-Wparentheses"))
754 warn_parentheses = 1;
755 else if (!strcmp (p, "-Wno-parentheses"))
756 warn_parentheses = 0;
757 else if (!strcmp (p, "-Wreturn-type"))
758 warn_return_type = 1;
759 else if (!strcmp (p, "-Wno-return-type"))
760 warn_return_type = 0;
761 else if (!strcmp (p, "-Wsequence-point"))
762 warn_sequence_point = 1;
763 else if (!strcmp (p, "-Wno-sequence-point"))
764 warn_sequence_point = 0;
765 else if (!strcmp (p, "-Wcomment"))
766 ; /* cpp handles this one. */
767 else if (!strcmp (p, "-Wno-comment"))
768 ; /* cpp handles this one. */
769 else if (!strcmp (p, "-Wcomments"))
770 ; /* cpp handles this one. */
771 else if (!strcmp (p, "-Wno-comments"))
772 ; /* cpp handles this one. */
773 else if (!strcmp (p, "-Wtrigraphs"))
774 ; /* cpp handles this one. */
775 else if (!strcmp (p, "-Wno-trigraphs"))
776 ; /* cpp handles this one. */
777 else if (!strcmp (p, "-Wundef"))
778 ; /* cpp handles this one. */
779 else if (!strcmp (p, "-Wno-undef"))
780 ; /* cpp handles this one. */
781 else if (!strcmp (p, "-Wimport"))
782 ; /* cpp handles this one. */
783 else if (!strcmp (p, "-Wno-import"))
784 ; /* cpp handles this one. */
785 else if (!strcmp (p, "-Wmissing-braces"))
786 warn_missing_braces = 1;
787 else if (!strcmp (p, "-Wno-missing-braces"))
788 warn_missing_braces = 0;
789 else if (!strcmp (p, "-Wmain"))
790 warn_main = 1;
791 else if (!strcmp (p, "-Wno-main"))
792 warn_main = -1;
793 else if (!strcmp (p, "-Wsign-compare"))
794 warn_sign_compare = 1;
795 else if (!strcmp (p, "-Wno-sign-compare"))
796 warn_sign_compare = 0;
797 else if (!strcmp (p, "-Wfloat-equal"))
798 warn_float_equal = 1;
799 else if (!strcmp (p, "-Wno-float-equal"))
800 warn_float_equal = 0;
801 else if (!strcmp (p, "-Wmultichar"))
802 warn_multichar = 1;
803 else if (!strcmp (p, "-Wno-multichar"))
804 warn_multichar = 0;
805 else if (!strcmp (p, "-Wdiv-by-zero"))
806 warn_div_by_zero = 1;
807 else if (!strcmp (p, "-Wno-div-by-zero"))
808 warn_div_by_zero = 0;
809 else if (!strcmp (p, "-Wunknown-pragmas"))
810 /* Set to greater than 1, so that even unknown pragmas in system
811 headers will be warned about. */
812 warn_unknown_pragmas = 2;
813 else if (!strcmp (p, "-Wno-unknown-pragmas"))
814 warn_unknown_pragmas = 0;
815 else if (!strcmp (p, "-Wall"))
816 {
817 /* We save the value of warn_uninitialized, since if they put
818 -Wuninitialized on the command line, we need to generate a
819 warning about not using it without also specifying -O. */
820 if (warn_uninitialized != 1)
821 warn_uninitialized = 2;
822 warn_implicit_int = 1;
823 mesg_implicit_function_declaration = 1;
824 warn_return_type = 1;
825 set_Wunused (1);
826 warn_switch = 1;
827 set_Wformat (1);
828 warn_char_subscripts = 1;
829 warn_parentheses = 1;
830 warn_sequence_point = 1;
831 warn_missing_braces = 1;
832 /* We set this to 2 here, but 1 in -Wmain, so -ffreestanding can turn
833 it off only if it's not explicit. */
834 warn_main = 2;
835 /* Only warn about unknown pragmas that are not in system headers. */
836 warn_unknown_pragmas = 1;
837 }
838 else
839 return strings_processed;
840
841 return 1;
842}
843
844void
845c_print_identifier (file, node, indent)
846 FILE *file;
847 tree node;
848 int indent;
849{
850 print_node (file, "global", IDENTIFIER_GLOBAL_VALUE (node), indent + 4);
851 print_node (file, "local", IDENTIFIER_LOCAL_VALUE (node), indent + 4);
852 print_node (file, "label", IDENTIFIER_LABEL_VALUE (node), indent + 4);
853 print_node (file, "implicit", IDENTIFIER_IMPLICIT_DECL (node), indent + 4);
854 print_node (file, "error locus", IDENTIFIER_ERROR_LOCUS (node), indent + 4);
855 print_node (file, "limbo value", IDENTIFIER_LIMBO_VALUE (node), indent + 4);
856 if (C_IS_RESERVED_WORD (node))
857 {
858 tree rid = ridpointers[C_RID_CODE (node)];
859 indent_to (file, indent + 4);
860 fprintf (file, "rid ");
861 fprintf (file, HOST_PTR_PRINTF, (void *)rid);
862 fprintf (file, " \"%s\"", IDENTIFIER_POINTER (rid));
863 }
864}
865
866/* Hook called at end of compilation to assume 1 elt
867 for a top-level tentative array defn that wasn't complete before. */
868
869void
870finish_incomplete_decl (decl)
871 tree decl;
872{
873 if (TREE_CODE (decl) == VAR_DECL)
874 {
875 tree type = TREE_TYPE (decl);
876 if (type != error_mark_node
877 && TREE_CODE (type) == ARRAY_TYPE
878 && ! DECL_EXTERNAL (decl)
879 && TYPE_DOMAIN (type) == 0)
880 {
881 warning_with_decl (decl, "array `%s' assumed to have one element");
882
883 complete_array_type (type, NULL_TREE, 1);
884
885 layout_decl (decl, 0);
886 }
887 }
888}
889
890/* Create a new `struct binding_level'. */
891
892static struct binding_level *
893make_binding_level ()
894{
895 /* NOSTRICT */
896 return (struct binding_level *) xmalloc (sizeof (struct binding_level));
897}
898
899/* Nonzero if we are currently in the global binding level. */
900
901int
902global_bindings_p ()
903{
904 return current_binding_level == global_binding_level;
905}
906
907void
908keep_next_level ()
909{
910 keep_next_level_flag = 1;
911}
912
913/* Nonzero if the current level needs to have a BLOCK made. */
914
915int
916kept_level_p ()
917{
918 return ((current_binding_level->keep_if_subblocks
919 && current_binding_level->blocks != 0)
920 || current_binding_level->keep
921 || current_binding_level->names != 0
922 || (current_binding_level->tags != 0
923 && !current_binding_level->tag_transparent));
924}
925
926/* Identify this binding level as a level of parameters.
927 DEFINITION_FLAG is 1 for a definition, 0 for a declaration.
928 But it turns out there is no way to pass the right value for
929 DEFINITION_FLAG, so we ignore it. */
930
931void
932declare_parm_level (definition_flag)
933 int definition_flag ATTRIBUTE_UNUSED;
934{
935 current_binding_level->parm_flag = 1;
936}
937
938/* Nonzero if currently making parm declarations. */
939
940int
941in_parm_level_p ()
942{
943 return current_binding_level->parm_flag;
944}
945
946/* Enter a new binding level.
947 If TAG_TRANSPARENT is nonzero, do so only for the name space of variables,
948 not for that of tags. */
949
950void
951pushlevel (tag_transparent)
952 int tag_transparent;
953{
954 struct binding_level *newlevel = NULL_BINDING_LEVEL;
955
956 /* If this is the top level of a function,
957 just make sure that NAMED_LABELS is 0. */
958
959 if (current_binding_level == global_binding_level)
960 {
961 named_labels = 0;
962 }
963
964 /* Reuse or create a struct for this binding level. */
965
966 if (free_binding_level)
967 {
968 newlevel = free_binding_level;
969 free_binding_level = free_binding_level->level_chain;
970 }
971 else
972 {
973 newlevel = make_binding_level ();
974 }
975
976 /* Add this level to the front of the chain (stack) of levels that
977 are active. */
978
979 *newlevel = clear_binding_level;
980 newlevel->tag_transparent
981 = (tag_transparent
982 || (current_binding_level
983 ? current_binding_level->subblocks_tag_transparent
984 : 0));
985 newlevel->level_chain = current_binding_level;
986 current_binding_level = newlevel;
987 newlevel->keep = keep_next_level_flag;
988 keep_next_level_flag = 0;
989 newlevel->keep_if_subblocks = keep_next_if_subblocks;
990 keep_next_if_subblocks = 0;
991}
992
993/* Clear the limbo values of all identifiers defined in BLOCK or a subblock. */
994
995static void
996clear_limbo_values (block)
997 tree block;
998{
999 tree tem;
1000
1001 for (tem = BLOCK_VARS (block); tem; tem = TREE_CHAIN (tem))
1002 if (DECL_NAME (tem) != 0)
1003 IDENTIFIER_LIMBO_VALUE (DECL_NAME (tem)) = 0;
1004
1005 for (tem = BLOCK_SUBBLOCKS (block); tem; tem = TREE_CHAIN (tem))
1006 clear_limbo_values (tem);
1007}
1008
1009/* Exit a binding level.
1010 Pop the level off, and restore the state of the identifier-decl mappings
1011 that were in effect when this level was entered.
1012
1013 If KEEP is nonzero, this level had explicit declarations, so
1014 and create a "block" (a BLOCK node) for the level
1015 to record its declarations and subblocks for symbol table output.
1016
1017 If FUNCTIONBODY is nonzero, this level is the body of a function,
1018 so create a block as if KEEP were set and also clear out all
1019 label names.
1020
1021 If REVERSE is nonzero, reverse the order of decls before putting
1022 them into the BLOCK. */
1023
1024tree
1025poplevel (keep, reverse, functionbody)
1026 int keep;
1027 int reverse;
1028 int functionbody;
1029{
1030 tree link;
1031 /* The chain of decls was accumulated in reverse order.
1032 Put it into forward order, just for cleanliness. */
1033 tree decls;
1034 tree tags = current_binding_level->tags;
1035 tree subblocks = current_binding_level->blocks;
1036 tree block = 0;
1037 tree decl;
1038 int block_previously_created;
1039
1040 keep |= current_binding_level->keep;
1041
1042 /* This warning is turned off because it causes warnings for
1043 declarations like `extern struct foo *x'. */
1044#if 0
1045 /* Warn about incomplete structure types in this level. */
1046 for (link = tags; link; link = TREE_CHAIN (link))
1047 if (!COMPLETE_TYPE_P (TREE_VALUE (link)))
1048 {
1049 tree type = TREE_VALUE (link);
1050 tree type_name = TYPE_NAME (type);
1051 char *id = IDENTIFIER_POINTER (TREE_CODE (type_name) == IDENTIFIER_NODE
1052 ? type_name
1053 : DECL_NAME (type_name));
1054 switch (TREE_CODE (type))
1055 {
1056 case RECORD_TYPE:
1057 error ("`struct %s' incomplete in scope ending here", id);
1058 break;
1059 case UNION_TYPE:
1060 error ("`union %s' incomplete in scope ending here", id);
1061 break;
1062 case ENUMERAL_TYPE:
1063 error ("`enum %s' incomplete in scope ending here", id);
1064 break;
1065 }
1066 }
1067#endif /* 0 */
1068
1069 /* Get the decls in the order they were written.
1070 Usually current_binding_level->names is in reverse order.
1071 But parameter decls were previously put in forward order. */
1072
1073 if (reverse)
1074 current_binding_level->names
1075 = decls = nreverse (current_binding_level->names);
1076 else
1077 decls = current_binding_level->names;
1078
1079 /* Output any nested inline functions within this block
1080 if they weren't already output. */
1081
1082 for (decl = decls; decl; decl = TREE_CHAIN (decl))
1083 if (TREE_CODE (decl) == FUNCTION_DECL
1084 && ! TREE_ASM_WRITTEN (decl)
1085 && DECL_INITIAL (decl) != 0
1086 && TREE_ADDRESSABLE (decl))
1087 {
1088 /* If this decl was copied from a file-scope decl
1089 on account of a block-scope extern decl,
1090 propagate TREE_ADDRESSABLE to the file-scope decl.
1091
1092 DECL_ABSTRACT_ORIGIN can be set to itself if warn_return_type is
1093 true, since then the decl goes through save_for_inline_copying. */
1094 if (DECL_ABSTRACT_ORIGIN (decl) != 0
1095 && DECL_ABSTRACT_ORIGIN (decl) != decl)
1096 TREE_ADDRESSABLE (DECL_ABSTRACT_ORIGIN (decl)) = 1;
1097 }
1098
1099 /* We used to warn about unused variables in expand_end_bindings,
1100 i.e. while generating RTL. But in function-at-a-time mode we may
1101 choose to never expand a function at all (e.g. auto inlining), so
1102 we do this explicitly now. */
1103 warn_about_unused_variables (getdecls ());
1104
1105 /* If there were any declarations or structure tags in that level,
1106 or if this level is a function body,
1107 create a BLOCK to record them for the life of this function. */
1108
1109 block = 0;
1110 block_previously_created = (current_binding_level->this_block != 0);
1111 if (block_previously_created)
1112 block = current_binding_level->this_block;
1113 else if (keep || functionbody
1114 || (current_binding_level->keep_if_subblocks && subblocks != 0))
1115 block = make_node (BLOCK);
1116 if (block != 0)
1117 {
1118 BLOCK_VARS (block) = decls;
1119 BLOCK_SUBBLOCKS (block) = subblocks;
1120 }
1121
1122 /* In each subblock, record that this is its superior. */
1123
1124 for (link = subblocks; link; link = TREE_CHAIN (link))
1125 BLOCK_SUPERCONTEXT (link) = block;
1126
1127 /* Clear out the meanings of the local variables of this level. */
1128
1129 for (link = decls; link; link = TREE_CHAIN (link))
1130 {
1131 if (DECL_NAME (link) != 0)
1132 {
1133 /* If the ident. was used or addressed via a local extern decl,
1134 don't forget that fact. */
1135 if (DECL_EXTERNAL (link))
1136 {
1137 if (TREE_USED (link))
1138 TREE_USED (DECL_NAME (link)) = 1;
1139 if (TREE_ADDRESSABLE (link))
1140 TREE_ADDRESSABLE (DECL_ASSEMBLER_NAME (link)) = 1;
1141 }
1142 IDENTIFIER_LOCAL_VALUE (DECL_NAME (link)) = 0;
1143 }
1144 }
1145
1146 /* Restore all name-meanings of the outer levels
1147 that were shadowed by this level. */
1148
1149 for (link = current_binding_level->shadowed; link; link = TREE_CHAIN (link))
1150 IDENTIFIER_LOCAL_VALUE (TREE_PURPOSE (link)) = TREE_VALUE (link);
1151
1152 /* If the level being exited is the top level of a function,
1153 check over all the labels, and clear out the current
1154 (function local) meanings of their names. */
1155
1156 if (functionbody)
1157 {
1158 clear_limbo_values (block);
1159
1160 /* If this is the top level block of a function,
1161 the vars are the function's parameters.
1162 Don't leave them in the BLOCK because they are
1163 found in the FUNCTION_DECL instead. */
1164
1165 BLOCK_VARS (block) = 0;
1166
1167 /* Clear out the definitions of all label names,
1168 since their scopes end here,
1169 and add them to BLOCK_VARS. */
1170
1171 for (link = named_labels; link; link = TREE_CHAIN (link))
1172 {
1173 tree label = TREE_VALUE (link);
1174
1175 if (DECL_INITIAL (label) == 0)
1176 {
1177 error_with_decl (label, "label `%s' used but not defined");
1178 /* Avoid crashing later. */
1179 define_label (input_filename, lineno,
1180 DECL_NAME (label));
1181 }
1182 else if (warn_unused_label && !TREE_USED (label))
1183 warning_with_decl (label, "label `%s' defined but not used");
1184 IDENTIFIER_LABEL_VALUE (DECL_NAME (label)) = 0;
1185
1186 /* Put the labels into the "variables" of the
1187 top-level block, so debugger can see them. */
1188 TREE_CHAIN (label) = BLOCK_VARS (block);
1189 BLOCK_VARS (block) = label;
1190 }
1191 }
1192
1193 /* Pop the current level, and free the structure for reuse. */
1194
1195 {
1196 struct binding_level *level = current_binding_level;
1197 current_binding_level = current_binding_level->level_chain;
1198
1199 level->level_chain = free_binding_level;
1200 free_binding_level = level;
1201 }
1202
1203 /* Dispose of the block that we just made inside some higher level. */
1204 if (functionbody)
1205 DECL_INITIAL (current_function_decl) = block;
1206 else if (block)
1207 {
1208 if (!block_previously_created)
1209 current_binding_level->blocks
1210 = chainon (current_binding_level->blocks, block);
1211 }
1212 /* If we did not make a block for the level just exited,
1213 any blocks made for inner levels
1214 (since they cannot be recorded as subblocks in that level)
1215 must be carried forward so they will later become subblocks
1216 of something else. */
1217 else if (subblocks)
1218 current_binding_level->blocks
1219 = chainon (current_binding_level->blocks, subblocks);
1220
1221 /* Set the TYPE_CONTEXTs for all of the tagged types belonging to this
1222 binding contour so that they point to the appropriate construct, i.e.
1223 either to the current FUNCTION_DECL node, or else to the BLOCK node
1224 we just constructed.
1225
1226 Note that for tagged types whose scope is just the formal parameter
1227 list for some function type specification, we can't properly set
1228 their TYPE_CONTEXTs here, because we don't have a pointer to the
1229 appropriate FUNCTION_TYPE node readily available to us. For those
1230 cases, the TYPE_CONTEXTs of the relevant tagged type nodes get set
1231 in `grokdeclarator' as soon as we have created the FUNCTION_TYPE
1232 node which will represent the "scope" for these "parameter list local"
1233 tagged types. */
1234
1235 if (functionbody)
1236 for (link = tags; link; link = TREE_CHAIN (link))
1237 TYPE_CONTEXT (TREE_VALUE (link)) = current_function_decl;
1238 else if (block)
1239 for (link = tags; link; link = TREE_CHAIN (link))
1240 TYPE_CONTEXT (TREE_VALUE (link)) = block;
1241
1242 if (block)
1243 TREE_USED (block) = 1;
1244
1245 return block;
1246}
1247
1248/* Insert BLOCK at the end of the list of subblocks of the
1249 current binding level. This is used when a BIND_EXPR is expanded,
1250 to handle the BLOCK node inside the BIND_EXPR. */
1251
1252void
1253insert_block (block)
1254 tree block;
1255{
1256 TREE_USED (block) = 1;
1257 current_binding_level->blocks
1258 = chainon (current_binding_level->blocks, block);
1259}
1260
1261/* Set the BLOCK node for the innermost scope
1262 (the one we are currently in). */
1263
1264void
1265set_block (block)
1266 tree block;
1267{
1268 current_binding_level->this_block = block;
1269 current_binding_level->names = chainon (current_binding_level->names,
1270 BLOCK_VARS (block));
1271 current_binding_level->blocks = chainon (current_binding_level->blocks,
1272 BLOCK_SUBBLOCKS (block));
1273}
1274
1275void
1276push_label_level ()
1277{
1278 struct binding_level *newlevel;
1279
1280 /* Reuse or create a struct for this binding level. */
1281
1282 if (free_binding_level)
1283 {
1284 newlevel = free_binding_level;
1285 free_binding_level = free_binding_level->level_chain;
1286 }
1287 else
1288 {
1289 newlevel = make_binding_level ();
1290 }
1291
1292 /* Add this level to the front of the chain (stack) of label levels. */
1293
1294 newlevel->level_chain = label_level_chain;
1295 label_level_chain = newlevel;
1296
1297 newlevel->names = named_labels;
1298 newlevel->shadowed = shadowed_labels;
1299 named_labels = 0;
1300 shadowed_labels = 0;
1301}
1302
1303void
1304pop_label_level ()
1305{
1306 struct binding_level *level = label_level_chain;
1307 tree link, prev;
1308
1309 /* Clear out the definitions of the declared labels in this level.
1310 Leave in the list any ordinary, non-declared labels. */
1311 for (link = named_labels, prev = 0; link;)
1312 {
1313 if (C_DECLARED_LABEL_FLAG (TREE_VALUE (link)))
1314 {
1315 if (DECL_SOURCE_LINE (TREE_VALUE (link)) == 0)
1316 {
1317 error_with_decl (TREE_VALUE (link),
1318 "label `%s' used but not defined");
1319 /* Avoid crashing later. */
1320 define_label (input_filename, lineno,
1321 DECL_NAME (TREE_VALUE (link)));
1322 }
1323 else if (warn_unused_label && !TREE_USED (TREE_VALUE (link)))
1324 warning_with_decl (TREE_VALUE (link),
1325 "label `%s' defined but not used");
1326 IDENTIFIER_LABEL_VALUE (DECL_NAME (TREE_VALUE (link))) = 0;
1327
1328 /* Delete this element from the list. */
1329 link = TREE_CHAIN (link);
1330 if (prev)
1331 TREE_CHAIN (prev) = link;
1332 else
1333 named_labels = link;
1334 }
1335 else
1336 {
1337 prev = link;
1338 link = TREE_CHAIN (link);
1339 }
1340 }
1341
1342 /* Bring back all the labels that were shadowed. */
1343 for (link = shadowed_labels; link; link = TREE_CHAIN (link))
1344 if (DECL_NAME (TREE_VALUE (link)) != 0)
1345 IDENTIFIER_LABEL_VALUE (DECL_NAME (TREE_VALUE (link)))
1346 = TREE_VALUE (link);
1347
1348 named_labels = chainon (named_labels, level->names);
1349 shadowed_labels = level->shadowed;
1350
1351 /* Pop the current level, and free the structure for reuse. */
1352 label_level_chain = label_level_chain->level_chain;
1353 level->level_chain = free_binding_level;
1354 free_binding_level = level;
1355}
1356
1357/* Push a definition or a declaration of struct, union or enum tag "name".
1358 "type" should be the type node.
1359 We assume that the tag "name" is not already defined.
1360
1361 Note that the definition may really be just a forward reference.
1362 In that case, the TYPE_SIZE will be zero. */
1363
1364void
1365pushtag (name, type)
1366 tree name, type;
1367{
1368 struct binding_level *b;
1369
1370 /* Find the proper binding level for this type tag. */
1371
1372 for (b = current_binding_level; b->tag_transparent; b = b->level_chain)
1373 continue;
1374
1375 if (name)
1376 {
1377 /* Record the identifier as the type's name if it has none. */
1378
1379 if (TYPE_NAME (type) == 0)
1380 TYPE_NAME (type) = name;
1381 }
1382
1383 b->tags = tree_cons (name, type, b->tags);
1384
1385 /* Create a fake NULL-named TYPE_DECL node whose TREE_TYPE will be the
1386 tagged type we just added to the current binding level. This fake
1387 NULL-named TYPE_DECL node helps dwarfout.c to know when it needs
1388 to output a representation of a tagged type, and it also gives
1389 us a convenient place to record the "scope start" address for the
1390 tagged type. */
1391
1392 TYPE_STUB_DECL (type) = pushdecl (build_decl (TYPE_DECL, NULL_TREE, type));
1393
1394 /* An approximation for now, so we can tell this is a function-scope tag.
1395 This will be updated in poplevel. */
1396 TYPE_CONTEXT (type) = DECL_CONTEXT (TYPE_STUB_DECL (type));
1397}
1398
1399/* Handle when a new declaration NEWDECL
1400 has the same name as an old one OLDDECL
1401 in the same binding contour.
1402 Prints an error message if appropriate.
1403
1404 If safely possible, alter OLDDECL to look like NEWDECL, and return 1.
1405 Otherwise, return 0.
1406
1407 When DIFFERENT_BINDING_LEVEL is true, NEWDECL is an external declaration,
1408 and OLDDECL is in an outer binding level and should thus not be changed. */
1409
1410static int
1411duplicate_decls (newdecl, olddecl, different_binding_level)
1412 tree newdecl, olddecl;
1413 int different_binding_level;
1414{
1415 int types_match = comptypes (TREE_TYPE (newdecl), TREE_TYPE (olddecl));
1416 int new_is_definition = (TREE_CODE (newdecl) == FUNCTION_DECL
1417 && DECL_INITIAL (newdecl) != 0);
1418 tree oldtype = TREE_TYPE (olddecl);
1419 tree newtype = TREE_TYPE (newdecl);
1420 int errmsg = 0;
1421
1422 if (DECL_P (olddecl))
1423 {
1424 if (TREE_CODE (newdecl) == FUNCTION_DECL
1425 && TREE_CODE (olddecl) == FUNCTION_DECL
1426 && (DECL_UNINLINABLE (newdecl) || DECL_UNINLINABLE (olddecl)))
1427 {
1428 if (DECL_DECLARED_INLINE_P (newdecl)
1429 && DECL_UNINLINABLE (newdecl)
1430 && lookup_attribute ("noinline", DECL_ATTRIBUTES (newdecl)))
1431 /* Already warned elsewhere. */;
1432 else if (DECL_DECLARED_INLINE_P (olddecl)
1433 && DECL_UNINLINABLE (olddecl)
1434 && lookup_attribute ("noinline", DECL_ATTRIBUTES (olddecl)))
1435 /* Already warned. */;
1436 else if (DECL_DECLARED_INLINE_P (newdecl)
1437 && ! DECL_DECLARED_INLINE_P (olddecl)
1438 && DECL_UNINLINABLE (olddecl)
1439 && lookup_attribute ("noinline", DECL_ATTRIBUTES (olddecl)))
1440 {
1441 warning_with_decl (newdecl,
1442 "function `%s' redeclared as inline");
1443 warning_with_decl (olddecl,
1444 "previous declaration of function `%s' with attribute noinline");
1445 }
1446 else if (DECL_DECLARED_INLINE_P (olddecl)
1447 && DECL_UNINLINABLE (newdecl)
1448 && lookup_attribute ("noinline", DECL_ATTRIBUTES (newdecl)))
1449 {
1450 warning_with_decl (newdecl,
1451 "function `%s' redeclared with attribute noinline");
1452 warning_with_decl (olddecl,
1453 "previous declaration of function `%s' was inline");
1454 }
1455 }
1456
1457 DECL_ATTRIBUTES (newdecl)
1458 = (*targetm.merge_decl_attributes) (olddecl, newdecl);
1459 }
1460
1461 if (TREE_CODE (newtype) == ERROR_MARK
1462 || TREE_CODE (oldtype) == ERROR_MARK)
1463 types_match = 0;
1464
1465 /* New decl is completely inconsistent with the old one =>
1466 tell caller to replace the old one.
1467 This is always an error except in the case of shadowing a builtin. */
1468 if (TREE_CODE (olddecl) != TREE_CODE (newdecl))
1469 {
1470 if (TREE_CODE (olddecl) == FUNCTION_DECL
1471 && (DECL_BUILT_IN (olddecl)
1472 || DECL_BUILT_IN_NONANSI (olddecl)))
1473 {
1474 /* If you declare a built-in or predefined function name as static,
1475 the old definition is overridden,
1476 but optionally warn this was a bad choice of name. */
1477 if (!TREE_PUBLIC (newdecl))
1478 {
1479 if (!warn_shadow)
1480 ;
1481 else if (DECL_BUILT_IN (olddecl))
1482 warning_with_decl (newdecl, "shadowing built-in function `%s'");
1483 else
1484 warning_with_decl (newdecl, "shadowing library function `%s'");
1485 }
1486 /* Likewise, if the built-in is not ansi, then programs can
1487 override it even globally without an error. */
1488 else if (! DECL_BUILT_IN (olddecl))
1489 warning_with_decl (newdecl,
1490 "library function `%s' declared as non-function");
1491
1492 else if (DECL_BUILT_IN_NONANSI (olddecl))
1493 warning_with_decl (newdecl,
1494 "built-in function `%s' declared as non-function");
1495 else
1496 warning_with_decl (newdecl,
1497 "built-in function `%s' declared as non-function");
1498 }
1499 else
1500 {
1501 error_with_decl (newdecl, "`%s' redeclared as different kind of symbol");
1502 error_with_decl (olddecl, "previous declaration of `%s'");
1503 }
1504
1505 return 0;
1506 }
1507
1508 /* For real parm decl following a forward decl,
1509 return 1 so old decl will be reused. */
1510 if (types_match && TREE_CODE (newdecl) == PARM_DECL
1511 && TREE_ASM_WRITTEN (olddecl) && ! TREE_ASM_WRITTEN (newdecl))
1512 return 1;
1513
1514 /* The new declaration is the same kind of object as the old one.
1515 The declarations may partially match. Print warnings if they don't
1516 match enough. Ultimately, copy most of the information from the new
1517 decl to the old one, and keep using the old one. */
1518
1519 if (flag_traditional && TREE_CODE (newdecl) == FUNCTION_DECL
1520 && IDENTIFIER_IMPLICIT_DECL (DECL_NAME (newdecl)) == olddecl
1521 && DECL_INITIAL (olddecl) == 0)
1522 /* If -traditional, avoid error for redeclaring fcn
1523 after implicit decl. */
1524 ;
1525 else if (TREE_CODE (olddecl) == FUNCTION_DECL
1526 && DECL_BUILT_IN (olddecl))
1527 {
1528 /* A function declaration for a built-in function. */
1529 if (!TREE_PUBLIC (newdecl))
1530 {
1531 /* If you declare a built-in function name as static, the
1532 built-in definition is overridden,
1533 but optionally warn this was a bad choice of name. */
1534 if (warn_shadow)
1535 warning_with_decl (newdecl, "shadowing built-in function `%s'");
1536 /* Discard the old built-in function. */
1537 return 0;
1538 }
1539 else if (!types_match)
1540 {
1541 /* Accept the return type of the new declaration if same modes. */
1542 tree oldreturntype = TREE_TYPE (oldtype);
1543 tree newreturntype = TREE_TYPE (newtype);
1544
1545 if (TYPE_MODE (oldreturntype) == TYPE_MODE (newreturntype))
1546 {
1547 /* Function types may be shared, so we can't just modify
1548 the return type of olddecl's function type. */
1549 tree trytype
1550 = build_function_type (newreturntype,
1551 TYPE_ARG_TYPES (oldtype));
1552 trytype = build_type_attribute_variant (trytype,
1553 TYPE_ATTRIBUTES (oldtype));
1554
1555 types_match = comptypes (newtype, trytype);
1556 if (types_match)
1557 oldtype = trytype;
1558 }
1559 /* Accept harmless mismatch in first argument type also.
1560 This is for the ffs and fprintf builtins. */
1561 if (TYPE_ARG_TYPES (TREE_TYPE (newdecl)) != 0
1562 && TYPE_ARG_TYPES (oldtype) != 0
1563 && TREE_VALUE (TYPE_ARG_TYPES (newtype)) != 0
1564 && TREE_VALUE (TYPE_ARG_TYPES (oldtype)) != 0
1565 && (TYPE_MODE (TREE_VALUE (TYPE_ARG_TYPES (newtype)))
1566 == TYPE_MODE (TREE_VALUE (TYPE_ARG_TYPES (oldtype)))))
1567 {
1568 /* Function types may be shared, so we can't just modify
1569 the return type of olddecl's function type. */
1570 tree trytype
1571 = build_function_type (TREE_TYPE (oldtype),
1572 tree_cons (NULL_TREE,
1573 TREE_VALUE (TYPE_ARG_TYPES (newtype)),
1574 TREE_CHAIN (TYPE_ARG_TYPES (oldtype))));
1575 trytype = build_type_attribute_variant (trytype,
1576 TYPE_ATTRIBUTES (oldtype));
1577
1578 types_match = comptypes (newtype, trytype);
1579 if (types_match)
1580 oldtype = trytype;
1581 }
1582 if (! different_binding_level)
1583 TREE_TYPE (olddecl) = oldtype;
1584 }
1585 else if (TYPE_ARG_TYPES (oldtype) == NULL
1586 && TYPE_ARG_TYPES (newtype) != NULL)
1587 {
1588 /* For bcmp, bzero, fputs the builtin type has arguments not
1589 specified. Use the ones from the prototype so that type checking
1590 is done for them. */
1591 tree trytype
1592 = build_function_type (TREE_TYPE (oldtype),
1593 TYPE_ARG_TYPES (newtype));
1594 trytype = build_type_attribute_variant (trytype,
1595 TYPE_ATTRIBUTES (oldtype));
1596
1597 oldtype = trytype;
1598 if (! different_binding_level)
1599 TREE_TYPE (olddecl) = oldtype;
1600 }
1601 if (!types_match)
1602 {
1603 /* If types don't match for a built-in, throw away the built-in. */
1604 warning_with_decl (newdecl, "conflicting types for built-in function `%s'");
1605 return 0;
1606 }
1607 }
1608 else if (TREE_CODE (olddecl) == FUNCTION_DECL
1609 && DECL_SOURCE_LINE (olddecl) == 0)
1610 {
1611 /* A function declaration for a predeclared function
1612 that isn't actually built in. */
1613 if (!TREE_PUBLIC (newdecl))
1614 {
1615 /* If you declare it as static, the
1616 default definition is overridden. */
1617 return 0;
1618 }
1619 else if (!types_match)
1620 {
1621 /* If the types don't match, preserve volatility indication.
1622 Later on, we will discard everything else about the
1623 default declaration. */
1624 TREE_THIS_VOLATILE (newdecl) |= TREE_THIS_VOLATILE (olddecl);
1625 }
1626 }
1627 /* Permit char *foo () to match void *foo (...) if not pedantic,
1628 if one of them came from a system header file. */
1629 else if (!types_match
1630 && TREE_CODE (olddecl) == FUNCTION_DECL
1631 && TREE_CODE (newdecl) == FUNCTION_DECL
1632 && TREE_CODE (TREE_TYPE (oldtype)) == POINTER_TYPE
1633 && TREE_CODE (TREE_TYPE (newtype)) == POINTER_TYPE
1634 && (DECL_IN_SYSTEM_HEADER (olddecl)
1635 || DECL_IN_SYSTEM_HEADER (newdecl))
1636 && ((TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (newtype))) == void_type_node
1637 && TYPE_ARG_TYPES (oldtype) == 0
1638 && self_promoting_args_p (TYPE_ARG_TYPES (newtype))
1639 && TREE_TYPE (TREE_TYPE (oldtype)) == char_type_node)
1640 ||
1641 (TREE_TYPE (TREE_TYPE (newtype)) == char_type_node
1642 && TYPE_ARG_TYPES (newtype) == 0
1643 && self_promoting_args_p (TYPE_ARG_TYPES (oldtype))
1644 && TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (oldtype))) == void_type_node)))
1645 {
1646 if (pedantic)
1647 pedwarn_with_decl (newdecl, "conflicting types for `%s'");
1648 /* Make sure we keep void * as ret type, not char *. */
1649 if (TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (oldtype))) == void_type_node)
1650 TREE_TYPE (newdecl) = newtype = oldtype;
1651
1652 /* Set DECL_IN_SYSTEM_HEADER, so that if we see another declaration
1653 we will come back here again. */
1654 DECL_IN_SYSTEM_HEADER (newdecl) = 1;
1655 }
1656 else if (!types_match
1657 /* Permit char *foo (int, ...); followed by char *foo ();
1658 if not pedantic. */
1659 && ! (TREE_CODE (olddecl) == FUNCTION_DECL
1660 && ! pedantic
1661 /* Return types must still match. */
1662 && comptypes (TREE_TYPE (oldtype),
1663 TREE_TYPE (newtype))
1664 && TYPE_ARG_TYPES (newtype) == 0))
1665 {
1666 error_with_decl (newdecl, "conflicting types for `%s'");
1667 /* Check for function type mismatch
1668 involving an empty arglist vs a nonempty one. */
1669 if (TREE_CODE (olddecl) == FUNCTION_DECL
1670 && comptypes (TREE_TYPE (oldtype),
1671 TREE_TYPE (newtype))
1672 && ((TYPE_ARG_TYPES (oldtype) == 0
1673 && DECL_INITIAL (olddecl) == 0)
1674 ||
1675 (TYPE_ARG_TYPES (newtype) == 0
1676 && DECL_INITIAL (newdecl) == 0)))
1677 {
1678 /* Classify the problem further. */
1679 tree t = TYPE_ARG_TYPES (oldtype);
1680 if (t == 0)
1681 t = TYPE_ARG_TYPES (newtype);
1682 for (; t; t = TREE_CHAIN (t))
1683 {
1684 tree type = TREE_VALUE (t);
1685
1686 if (TREE_CHAIN (t) == 0
1687 && TYPE_MAIN_VARIANT (type) != void_type_node)
1688 {
1689 error ("a parameter list with an ellipsis can't match an empty parameter name list declaration");
1690 break;
1691 }
1692
1693 if (simple_type_promotes_to (type) != NULL_TREE)
1694 {
1695 error ("an argument type that has a default promotion can't match an empty parameter name list declaration");
1696 break;
1697 }
1698 }
1699 }
1700 error_with_decl (olddecl, "previous declaration of `%s'");
1701 }
1702 else
1703 {
1704 errmsg = redeclaration_error_message (newdecl, olddecl);
1705 if (errmsg)
1706 {
1707 switch (errmsg)
1708 {
1709 case 1:
1710 error_with_decl (newdecl, "redefinition of `%s'");
1711 break;
1712 case 2:
1713 error_with_decl (newdecl, "redeclaration of `%s'");
1714 break;
1715 case 3:
1716 error_with_decl (newdecl, "conflicting declarations of `%s'");
1717 break;
1718 default:
1719 abort ();
1720 }
1721
1722 error_with_decl (olddecl,
1723 ((DECL_INITIAL (olddecl)
1724 && current_binding_level == global_binding_level)
1725 ? "`%s' previously defined here"
1726 : "`%s' previously declared here"));
1727 return 0;
1728 }
1729 else if (TREE_CODE (newdecl) == TYPE_DECL
1730 && (DECL_IN_SYSTEM_HEADER (olddecl)
1731 || DECL_IN_SYSTEM_HEADER (newdecl)))
1732 {
1733 warning_with_decl (newdecl, "redefinition of `%s'");
1734 warning_with_decl
1735 (olddecl,
1736 ((DECL_INITIAL (olddecl)
1737 && current_binding_level == global_binding_level)
1738 ? "`%s' previously defined here"
1739 : "`%s' previously declared here"));
1740 }
1741 else if (TREE_CODE (olddecl) == FUNCTION_DECL
1742 && DECL_INITIAL (olddecl) != 0
1743 && TYPE_ARG_TYPES (oldtype) == 0
1744 && TYPE_ARG_TYPES (newtype) != 0
1745 && TYPE_ACTUAL_ARG_TYPES (oldtype) != 0)
1746 {
1747 tree type, parm;
1748 int nargs;
1749 /* Prototype decl follows defn w/o prototype. */
1750
1751 for (parm = TYPE_ACTUAL_ARG_TYPES (oldtype),
1752 type = TYPE_ARG_TYPES (newtype),
1753 nargs = 1;
1754 ;
1755 parm = TREE_CHAIN (parm), type = TREE_CHAIN (type), nargs++)
1756 {
1757 if (TYPE_MAIN_VARIANT (TREE_VALUE (parm)) == void_type_node
1758 && TYPE_MAIN_VARIANT (TREE_VALUE (type)) == void_type_node)
1759 {
1760 warning_with_decl (newdecl, "prototype for `%s' follows");
1761 warning_with_decl (olddecl, "non-prototype definition here");
1762 break;
1763 }
1764 if (TYPE_MAIN_VARIANT (TREE_VALUE (parm)) == void_type_node
1765 || TYPE_MAIN_VARIANT (TREE_VALUE (type)) == void_type_node)
1766 {
1767 error_with_decl (newdecl,
1768 "prototype for `%s' follows and number of arguments doesn't match");
1769 error_with_decl (olddecl, "non-prototype definition here");
1770 errmsg = 1;
1771 break;
1772 }
1773 /* Type for passing arg must be consistent
1774 with that declared for the arg. */
1775 if (! comptypes (TREE_VALUE (parm), TREE_VALUE (type))
1776 /* If -traditional, allow `unsigned int' instead of `int'
1777 in the prototype. */
1778 && (! (flag_traditional
1779 && TYPE_MAIN_VARIANT (TREE_VALUE (parm)) == integer_type_node
1780 && TYPE_MAIN_VARIANT (TREE_VALUE (type)) == unsigned_type_node)))
1781 {
1782 error_with_decl (newdecl,
1783 "prototype for `%s' follows and argument %d doesn't match",
1784 nargs);
1785 error_with_decl (olddecl, "non-prototype definition here");
1786 errmsg = 1;
1787 break;
1788 }
1789 }
1790 }
1791 /* Warn about mismatches in various flags. */
1792 else
1793 {
1794 /* Warn if function is now inline
1795 but was previously declared not inline and has been called. */
1796 if (TREE_CODE (olddecl) == FUNCTION_DECL
1797 && ! DECL_DECLARED_INLINE_P (olddecl)
1798 && DECL_DECLARED_INLINE_P (newdecl)
1799 && TREE_USED (olddecl))
1800 warning_with_decl (newdecl,
1801 "`%s' declared inline after being called");
1802 if (TREE_CODE (olddecl) == FUNCTION_DECL
1803 && ! DECL_DECLARED_INLINE_P (olddecl)
1804 && DECL_DECLARED_INLINE_P (newdecl)
1805 && DECL_INITIAL (olddecl) != 0)
1806 warning_with_decl (newdecl,
1807 "`%s' declared inline after its definition");
1808
1809 /* If pedantic, warn when static declaration follows a non-static
1810 declaration. Otherwise, do so only for functions. */
1811 if ((pedantic || TREE_CODE (olddecl) == FUNCTION_DECL)
1812 && TREE_PUBLIC (olddecl)
1813 && !TREE_PUBLIC (newdecl))
1814 warning_with_decl (newdecl, "static declaration for `%s' follows non-static");
1815
1816 /* If warn_traditional, warn when a non-static function
1817 declaration follows a static one. */
1818 if (warn_traditional && !in_system_header
1819 && TREE_CODE (olddecl) == FUNCTION_DECL
1820 && !TREE_PUBLIC (olddecl)
1821 && TREE_PUBLIC (newdecl))
1822 warning_with_decl (newdecl, "non-static declaration for `%s' follows static");
1823
1824 /* Warn when const declaration follows a non-const
1825 declaration, but not for functions. */
1826 if (TREE_CODE (olddecl) != FUNCTION_DECL
1827 && !TREE_READONLY (olddecl)
1828 && TREE_READONLY (newdecl))
1829 warning_with_decl (newdecl, "const declaration for `%s' follows non-const");
1830 /* These bits are logically part of the type, for variables.
1831 But not for functions
1832 (where qualifiers are not valid ANSI anyway). */
1833 else if (pedantic && TREE_CODE (olddecl) != FUNCTION_DECL
1834 && (TREE_READONLY (newdecl) != TREE_READONLY (olddecl)
1835 || TREE_THIS_VOLATILE (newdecl) != TREE_THIS_VOLATILE (olddecl)))
1836 pedwarn_with_decl (newdecl, "type qualifiers for `%s' conflict with previous decl");
1837 }
1838 }
1839
1840 /* Optionally warn about more than one declaration for the same name. */
1841 if (errmsg == 0 && warn_redundant_decls && DECL_SOURCE_LINE (olddecl) != 0
1842 /* Don't warn about a function declaration
1843 followed by a definition. */
1844 && !(TREE_CODE (newdecl) == FUNCTION_DECL && DECL_INITIAL (newdecl) != 0
1845 && DECL_INITIAL (olddecl) == 0)
1846 /* Don't warn about extern decl followed by (tentative) definition. */
1847 && !(DECL_EXTERNAL (olddecl) && ! DECL_EXTERNAL (newdecl)))
1848 {
1849 warning_with_decl (newdecl, "redundant redeclaration of `%s' in same scope");
1850 warning_with_decl (olddecl, "previous declaration of `%s'");
1851 }
1852
1853 /* Copy all the DECL_... slots specified in the new decl
1854 except for any that we copy here from the old type.
1855
1856 Past this point, we don't change OLDTYPE and NEWTYPE
1857 even if we change the types of NEWDECL and OLDDECL. */
1858
1859 if (types_match)
1860 {
1861 /* When copying info to olddecl, we store into write_olddecl
1862 instead. This allows us to avoid modifying olddecl when
1863 different_binding_level is true. */
1864 tree write_olddecl = different_binding_level ? newdecl : olddecl;
1865
1866 /* Merge the data types specified in the two decls. */
1867 if (TREE_CODE (newdecl) != FUNCTION_DECL || !DECL_BUILT_IN (olddecl))
1868 {
1869 if (different_binding_level)
1870 {
1871 if (TYPE_ARG_TYPES (oldtype) != 0
1872 && TYPE_ARG_TYPES (newtype) == 0)
1873 TREE_TYPE (newdecl) = common_type (newtype, oldtype);
1874 else
1875 TREE_TYPE (newdecl)
1876 = build_type_attribute_variant
1877 (newtype,
1878 merge_attributes (TYPE_ATTRIBUTES (newtype),
1879 TYPE_ATTRIBUTES (oldtype)));
1880 }
1881 else
1882 TREE_TYPE (newdecl)
1883 = TREE_TYPE (olddecl)
1884 = common_type (newtype, oldtype);
1885 }
1886
1887 /* Lay the type out, unless already done. */
1888 if (oldtype != TREE_TYPE (newdecl))
1889 {
1890 if (TREE_TYPE (newdecl) != error_mark_node)
1891 layout_type (TREE_TYPE (newdecl));
1892 if (TREE_CODE (newdecl) != FUNCTION_DECL
1893 && TREE_CODE (newdecl) != TYPE_DECL
1894 && TREE_CODE (newdecl) != CONST_DECL)
1895 layout_decl (newdecl, 0);
1896 }
1897 else
1898 {
1899 /* Since the type is OLDDECL's, make OLDDECL's size go with. */
1900 DECL_SIZE (newdecl) = DECL_SIZE (olddecl);
1901 DECL_SIZE_UNIT (newdecl) = DECL_SIZE_UNIT (olddecl);
1902 DECL_MODE (newdecl) = DECL_MODE (olddecl);
1903 if (TREE_CODE (olddecl) != FUNCTION_DECL)
1904 if (DECL_ALIGN (olddecl) > DECL_ALIGN (newdecl))
1905 {
1906 DECL_ALIGN (newdecl) = DECL_ALIGN (olddecl);
1907 DECL_USER_ALIGN (newdecl) |= DECL_ALIGN (olddecl);
1908 }
1909 }
1910
1911 /* Keep the old rtl since we can safely use it. */
1912 COPY_DECL_RTL (olddecl, newdecl);
1913
1914 /* Merge the type qualifiers. */
1915 if (TREE_CODE (olddecl) == FUNCTION_DECL
1916 && DECL_BUILT_IN_NONANSI (olddecl) && TREE_THIS_VOLATILE (olddecl)
1917 && ! TREE_THIS_VOLATILE (newdecl))
1918 TREE_THIS_VOLATILE (write_olddecl) = 0;
1919
1920 if (TREE_READONLY (newdecl))
1921 TREE_READONLY (write_olddecl) = 1;
1922
1923 if (TREE_THIS_VOLATILE (newdecl))
1924 {
1925 TREE_THIS_VOLATILE (write_olddecl) = 1;
1926 if (TREE_CODE (newdecl) == VAR_DECL
1927 /* If an automatic variable is re-declared in the same
1928 function scope, but the old declaration was not
1929 volatile, make_var_volatile() would crash because the
1930 variable would have been assigned to a pseudo, not a
1931 MEM. Since this duplicate declaration is invalid
1932 anyway, we just skip the call. */
1933 && errmsg == 0)
1934 make_var_volatile (newdecl);
1935 }
1936
1937 /* Keep source location of definition rather than declaration. */
1938 /* When called with different_binding_level set, keep the old
1939 information so that meaningful diagnostics can be given. */
1940 if (DECL_INITIAL (newdecl) == 0 && DECL_INITIAL (olddecl) != 0
1941 && ! different_binding_level)
1942 {
1943 DECL_SOURCE_LINE (newdecl) = DECL_SOURCE_LINE (olddecl);
1944 DECL_SOURCE_FILE (newdecl) = DECL_SOURCE_FILE (olddecl);
1945 }
1946
1947 /* Merge the unused-warning information. */
1948 if (DECL_IN_SYSTEM_HEADER (olddecl))
1949 DECL_IN_SYSTEM_HEADER (newdecl) = 1;
1950 else if (DECL_IN_SYSTEM_HEADER (newdecl))
1951 DECL_IN_SYSTEM_HEADER (write_olddecl) = 1;
1952
1953 /* Merge the initialization information. */
1954 /* When called with different_binding_level set, don't copy over
1955 DECL_INITIAL, so that we don't accidentally change function
1956 declarations into function definitions. */
1957 if (DECL_INITIAL (newdecl) == 0 && ! different_binding_level)
1958 DECL_INITIAL (newdecl) = DECL_INITIAL (olddecl);
1959
1960 /* Merge the section attribute.
1961 We want to issue an error if the sections conflict but that must be
1962 done later in decl_attributes since we are called before attributes
1963 are assigned. */
1964 if (DECL_SECTION_NAME (newdecl) == NULL_TREE)
1965 DECL_SECTION_NAME (newdecl) = DECL_SECTION_NAME (olddecl);
1966
1967 /* Copy the assembler name.
1968 Currently, it can only be defined in the prototype. */
1969 COPY_DECL_ASSEMBLER_NAME (olddecl, newdecl);
1970
1971 if (TREE_CODE (newdecl) == FUNCTION_DECL)
1972 {
1973 DECL_STATIC_CONSTRUCTOR(newdecl) |= DECL_STATIC_CONSTRUCTOR(olddecl);
1974 DECL_STATIC_DESTRUCTOR (newdecl) |= DECL_STATIC_DESTRUCTOR (olddecl);
1975 DECL_NO_LIMIT_STACK (newdecl) |= DECL_NO_LIMIT_STACK (olddecl);
1976 DECL_NO_INSTRUMENT_FUNCTION_ENTRY_EXIT (newdecl)
1977 |= DECL_NO_INSTRUMENT_FUNCTION_ENTRY_EXIT (olddecl);
1978 }
1979 }
1980 /* If cannot merge, then use the new type and qualifiers,
1981 and don't preserve the old rtl. */
1982 else if (! different_binding_level)
1983 {
1984 TREE_TYPE (olddecl) = TREE_TYPE (newdecl);
1985 TREE_READONLY (olddecl) = TREE_READONLY (newdecl);
1986 TREE_THIS_VOLATILE (olddecl) = TREE_THIS_VOLATILE (newdecl);
1987 TREE_SIDE_EFFECTS (olddecl) = TREE_SIDE_EFFECTS (newdecl);
1988 }
1989
1990 /* Merge the storage class information. */
1991 merge_weak (newdecl, olddecl);
1992
1993 /* For functions, static overrides non-static. */
1994 if (TREE_CODE (newdecl) == FUNCTION_DECL)
1995 {
1996 TREE_PUBLIC (newdecl) &= TREE_PUBLIC (olddecl);
1997 /* This is since we don't automatically
1998 copy the attributes of NEWDECL into OLDDECL. */
1999 /* No need to worry about different_binding_level here because
2000 then TREE_PUBLIC (newdecl) was true. */
2001 TREE_PUBLIC (olddecl) = TREE_PUBLIC (newdecl);
2002 /* If this clears `static', clear it in the identifier too. */
2003 if (! TREE_PUBLIC (olddecl))
2004 TREE_PUBLIC (DECL_NAME (olddecl)) = 0;
2005 }
2006 if (DECL_EXTERNAL (newdecl))
2007 {
2008 if (! different_binding_level)
2009 {
2010 /* Don't mess with these flags on local externs; they remain
2011 external even if there's a declaration at file scope which
2012 isn't. */
2013 TREE_STATIC (newdecl) = TREE_STATIC (olddecl);
2014 DECL_EXTERNAL (newdecl) = DECL_EXTERNAL (olddecl);
2015 }
2016 /* An extern decl does not override previous storage class. */
2017 TREE_PUBLIC (newdecl) = TREE_PUBLIC (olddecl);
2018 if (! DECL_EXTERNAL (newdecl))
2019 DECL_CONTEXT (newdecl) = DECL_CONTEXT (olddecl);
2020 }
2021 else
2022 {
2023 TREE_STATIC (olddecl) = TREE_STATIC (newdecl);
2024 TREE_PUBLIC (olddecl) = TREE_PUBLIC (newdecl);
2025 }
2026
2027 if (TREE_CODE (newdecl) == FUNCTION_DECL)
2028 {
2029 /* If we're redefining a function previously defined as extern
2030 inline, make sure we emit debug info for the inline before we
2031 throw it away, in case it was inlined into a function that hasn't
2032 been written out yet. */
2033 if (new_is_definition && DECL_INITIAL (olddecl) && TREE_USED (olddecl))
2034 {
2035 (*debug_hooks->outlining_inline_function) (olddecl);
2036
2037 /* The new defn must not be inline. */
2038 DECL_INLINE (newdecl) = 0;
2039 DECL_UNINLINABLE (newdecl) = 1;
2040 }
2041 else
2042 {
2043 /* If either decl says `inline', this fn is inline,
2044 unless its definition was passed already. */
2045 if (DECL_DECLARED_INLINE_P (newdecl)
2046 || DECL_DECLARED_INLINE_P (olddecl))
2047 DECL_DECLARED_INLINE_P (newdecl) = 1;
2048
2049 DECL_UNINLINABLE (newdecl) = DECL_UNINLINABLE (olddecl)
2050 = (DECL_UNINLINABLE (newdecl) || DECL_UNINLINABLE (olddecl));
2051 }
2052
2053 if (DECL_BUILT_IN (olddecl))
2054 {
2055 /* Get rid of any built-in function if new arg types don't match it
2056 or if we have a function definition. */
2057 if (! types_match || new_is_definition)
2058 {
2059 if (! different_binding_level)
2060 {
2061 TREE_TYPE (olddecl) = TREE_TYPE (newdecl);
2062 DECL_BUILT_IN_CLASS (olddecl) = NOT_BUILT_IN;
2063 }
2064 }
2065 else
2066 {
2067 /* If redeclaring a builtin function, and not a definition,
2068 it stays built in. */
2069 DECL_BUILT_IN_CLASS (newdecl) = DECL_BUILT_IN_CLASS (olddecl);
2070 DECL_FUNCTION_CODE (newdecl) = DECL_FUNCTION_CODE (olddecl);
2071 }
2072 }
2073
2074 /* Also preserve various other info from the definition. */
2075 if (! new_is_definition)
2076 {
2077 DECL_RESULT (newdecl) = DECL_RESULT (olddecl);
2078 /* When called with different_binding_level set, don't copy over
2079 DECL_INITIAL, so that we don't accidentally change function
2080 declarations into function definitions. */
2081 if (! different_binding_level)
2082 DECL_INITIAL (newdecl) = DECL_INITIAL (olddecl);
2083 DECL_SAVED_INSNS (newdecl) = DECL_SAVED_INSNS (olddecl);
2084 DECL_SAVED_TREE (newdecl) = DECL_SAVED_TREE (olddecl);
2085 DECL_NUM_STMTS (newdecl) = DECL_NUM_STMTS (olddecl);
2086 DECL_ARGUMENTS (newdecl) = DECL_ARGUMENTS (olddecl);
2087
2088 /* Set DECL_INLINE on the declaration if we've got a body
2089 from which to instantiate. */
2090 if (DECL_INLINE (olddecl) && ! DECL_UNINLINABLE (newdecl))
2091 {
2092 DECL_INLINE (newdecl) = 1;
2093 DECL_ABSTRACT_ORIGIN (newdecl)
2094 = (different_binding_level
2095 ? DECL_ORIGIN (olddecl)
2096 : DECL_ABSTRACT_ORIGIN (olddecl));
2097 }
2098 }
2099 else
2100 {
2101 /* If a previous declaration said inline, mark the
2102 definition as inlinable. */
2103 if (DECL_DECLARED_INLINE_P (newdecl)
2104 && ! DECL_UNINLINABLE (newdecl))
2105 DECL_INLINE (newdecl) = 1;
2106 }
2107 }
2108 if (different_binding_level)
2109 return 0;
2110
2111 /* Copy most of the decl-specific fields of NEWDECL into OLDDECL.
2112 But preserve OLDDECL's DECL_UID. */
2113 {
2114 unsigned olddecl_uid = DECL_UID (olddecl);
2115
2116 memcpy ((char *) olddecl + sizeof (struct tree_common),
2117 (char *) newdecl + sizeof (struct tree_common),
2118 sizeof (struct tree_decl) - sizeof (struct tree_common));
2119 DECL_UID (olddecl) = olddecl_uid;
2120 }
2121
2122 /* NEWDECL contains the merged attribute lists.
2123 Update OLDDECL to be the same. */
2124 DECL_ATTRIBUTES (olddecl) = DECL_ATTRIBUTES (newdecl);
2125
2126 return 1;
2127}
2128
2129/* Check whether decl-node X shadows an existing declaration.
2130 OLDLOCAL is the old IDENTIFIER_LOCAL_VALUE of the DECL_NAME of X,
2131 which might be a NULL_TREE. */
2132static void
2133warn_if_shadowing (x, oldlocal)
2134 tree x, oldlocal;
2135{
2136 tree name;
2137
2138 if (DECL_EXTERNAL (x))
2139 return;
2140
2141 name = DECL_NAME (x);
2142
2143 /* Warn if shadowing an argument at the top level of the body. */
2144 if (oldlocal != 0
2145 /* This warning doesn't apply to the parms of a nested fcn. */
2146 && ! current_binding_level->parm_flag
2147 /* Check that this is one level down from the parms. */
2148 && current_binding_level->level_chain->parm_flag
2149 /* Check that the decl being shadowed
2150 comes from the parm level, one level up. */
2151 && chain_member (oldlocal, current_binding_level->level_chain->names))
2152 {
2153 if (TREE_CODE (oldlocal) == PARM_DECL)
2154 pedwarn ("declaration of `%s' shadows a parameter",
2155 IDENTIFIER_POINTER (name));
2156 else
2157 pedwarn ("declaration of `%s' shadows a symbol from the parameter list",
2158 IDENTIFIER_POINTER (name));
2159 }
2160 /* Maybe warn if shadowing something else. */
2161 else if (warn_shadow
2162 /* No shadow warnings for internally generated vars. */
2163 && DECL_SOURCE_LINE (x) != 0
2164 /* No shadow warnings for vars made for inlining. */
2165 && ! DECL_FROM_INLINE (x))
2166 {
2167 if (TREE_CODE (x) == PARM_DECL
2168 && current_binding_level->level_chain->parm_flag)
2169 /* Don't warn about the parm names in function declarator
2170 within a function declarator.
2171 It would be nice to avoid warning in any function
2172 declarator in a declaration, as opposed to a definition,
2173 but there is no way to tell it's not a definition. */
2174 ;
2175 else if (oldlocal)
2176 {
2177 if (TREE_CODE (oldlocal) == PARM_DECL)
2178 shadow_warning ("a parameter", name, oldlocal);
2179 else
2180 shadow_warning ("a previous local", name, oldlocal);
2181 }
2182 else if (IDENTIFIER_GLOBAL_VALUE (name) != 0
2183 && IDENTIFIER_GLOBAL_VALUE (name) != error_mark_node)
2184 shadow_warning ("a global declaration", name,
2185 IDENTIFIER_GLOBAL_VALUE (name));
2186 }
2187}
2188
2189/* Record a decl-node X as belonging to the current lexical scope.
2190 Check for errors (such as an incompatible declaration for the same
2191 name already seen in the same scope).
2192
2193 Returns either X or an old decl for the same name.
2194 If an old decl is returned, it may have been smashed
2195 to agree with what X says. */
2196
2197tree
2198pushdecl (x)
2199 tree x;
2200{
2201 tree t;
2202 tree name = DECL_NAME (x);
2203 struct binding_level *b = current_binding_level;
2204
2205 /* Functions need the lang_decl data. */
2206 if (TREE_CODE (x) == FUNCTION_DECL && ! DECL_LANG_SPECIFIC (x))
2207 DECL_LANG_SPECIFIC (x) = (struct lang_decl *)
2208 ggc_alloc_cleared (sizeof (struct lang_decl));
2209
2210 DECL_CONTEXT (x) = current_function_decl;
2211 /* A local extern declaration for a function doesn't constitute nesting.
2212 A local auto declaration does, since it's a forward decl
2213 for a nested function coming later. */
2214 if ((TREE_CODE (x) == FUNCTION_DECL || TREE_CODE (x) == VAR_DECL)
2215 && DECL_INITIAL (x) == 0 && DECL_EXTERNAL (x))
2216 DECL_CONTEXT (x) = 0;
2217
2218 if (name)
2219 {
2220 int different_binding_level = 0;
2221
2222 if (warn_nested_externs
2223 && DECL_EXTERNAL (x)
2224 && b != global_binding_level
2225 && x != IDENTIFIER_IMPLICIT_DECL (name)
2226 /* No error messages for __FUNCTION__ and __PRETTY_FUNCTION__. */
2227 && !DECL_IN_SYSTEM_HEADER (x))
2228 warning ("nested extern declaration of `%s'",
2229 IDENTIFIER_POINTER (name));
2230
2231 t = lookup_name_current_level (name);
2232 /* Don't type check externs here when -traditional. This is so that
2233 code with conflicting declarations inside blocks will get warnings
2234 not errors. X11 for instance depends on this. */
2235 if (! t && DECL_EXTERNAL (x) && TREE_PUBLIC (x) && ! flag_traditional)
2236 {
2237 t = IDENTIFIER_GLOBAL_VALUE (name);
2238 /* Type decls at global scope don't conflict with externs declared
2239 inside lexical blocks. */
2240 if (! t || TREE_CODE (t) == TYPE_DECL)
2241 /* If there's no visible global declaration, try for an
2242 invisible one. */
2243 t = IDENTIFIER_LIMBO_VALUE (name);
2244 different_binding_level = 1;
2245 }
2246 if (t != 0 && t == error_mark_node)
2247 /* error_mark_node is 0 for a while during initialization! */
2248 {
2249 t = 0;
2250 error_with_decl (x, "`%s' used prior to declaration");
2251 }
2252
2253 /* If this decl is `static' and an implicit decl was seen previously,
2254 warn. But don't complain if -traditional,
2255 since traditional compilers don't complain. */
2256 if (! flag_traditional && TREE_PUBLIC (name)
2257 /* Don't test for DECL_EXTERNAL, because grokdeclarator
2258 sets this for all functions. */
2259 && ! TREE_PUBLIC (x)
2260 && (TREE_CODE (x) == FUNCTION_DECL || b == global_binding_level)
2261 /* We used to warn also for explicit extern followed by static,
2262 but sometimes you need to do it that way. */
2263 && IDENTIFIER_IMPLICIT_DECL (name) != 0)
2264 {
2265 pedwarn ("`%s' was declared implicitly `extern' and later `static'",
2266 IDENTIFIER_POINTER (name));
2267 pedwarn_with_file_and_line
2268 (DECL_SOURCE_FILE (IDENTIFIER_IMPLICIT_DECL (name)),
2269 DECL_SOURCE_LINE (IDENTIFIER_IMPLICIT_DECL (name)),
2270 "previous declaration of `%s'",
2271 IDENTIFIER_POINTER (name));
2272 TREE_THIS_VOLATILE (name) = 1;
2273 }
2274
2275 if (t != 0 && duplicate_decls (x, t, different_binding_level))
2276 {
2277 if (TREE_CODE (t) == PARM_DECL)
2278 {
2279 /* Don't allow more than one "real" duplicate
2280 of a forward parm decl. */
2281 TREE_ASM_WRITTEN (t) = TREE_ASM_WRITTEN (x);
2282 return t;
2283 }
2284 return t;
2285 }
2286
2287 /* If we are processing a typedef statement, generate a whole new
2288 ..._TYPE node (which will be just an variant of the existing
2289 ..._TYPE node with identical properties) and then install the
2290 TYPE_DECL node generated to represent the typedef name as the
2291 TYPE_NAME of this brand new (duplicate) ..._TYPE node.
2292
2293 The whole point here is to end up with a situation where each
2294 and every ..._TYPE node the compiler creates will be uniquely
2295 associated with AT MOST one node representing a typedef name.
2296 This way, even though the compiler substitutes corresponding
2297 ..._TYPE nodes for TYPE_DECL (i.e. "typedef name") nodes very
2298 early on, later parts of the compiler can always do the reverse
2299 translation and get back the corresponding typedef name. For
2300 example, given:
2301
2302 typedef struct S MY_TYPE;
2303 MY_TYPE object;
2304
2305 Later parts of the compiler might only know that `object' was of
2306 type `struct S' if it were not for code just below. With this
2307 code however, later parts of the compiler see something like:
2308
2309 struct S' == struct S
2310 typedef struct S' MY_TYPE;
2311 struct S' object;
2312
2313 And they can then deduce (from the node for type struct S') that
2314 the original object declaration was:
2315
2316 MY_TYPE object;
2317
2318 Being able to do this is important for proper support of protoize,
2319 and also for generating precise symbolic debugging information
2320 which takes full account of the programmer's (typedef) vocabulary.
2321
2322 Obviously, we don't want to generate a duplicate ..._TYPE node if
2323 the TYPE_DECL node that we are now processing really represents a
2324 standard built-in type.
2325
2326 Since all standard types are effectively declared at line zero
2327 in the source file, we can easily check to see if we are working
2328 on a standard type by checking the current value of lineno. */
2329
2330 if (TREE_CODE (x) == TYPE_DECL)
2331 {
2332 if (DECL_SOURCE_LINE (x) == 0)
2333 {
2334 if (TYPE_NAME (TREE_TYPE (x)) == 0)
2335 TYPE_NAME (TREE_TYPE (x)) = x;
2336 }
2337 else if (TREE_TYPE (x) != error_mark_node
2338 && DECL_ORIGINAL_TYPE (x) == NULL_TREE)
2339 {
2340 tree tt = TREE_TYPE (x);
2341 DECL_ORIGINAL_TYPE (x) = tt;
2342 tt = build_type_copy (tt);
2343 TYPE_NAME (tt) = x;
2344 TREE_USED (tt) = TREE_USED (x);
2345 TREE_TYPE (x) = tt;
2346 }
2347 }
2348
2349 /* Multiple external decls of the same identifier ought to match.
2350 Check against both global declarations (when traditional) and out of
2351 scope (limbo) block level declarations.
2352
2353 We get warnings about inline functions where they are defined.
2354 Avoid duplicate warnings where they are used. */
2355 if (TREE_PUBLIC (x)
2356 && ! (TREE_CODE (x) == FUNCTION_DECL && DECL_INLINE (x)))
2357 {
2358 tree decl;
2359
2360 if (flag_traditional && IDENTIFIER_GLOBAL_VALUE (name) != 0
2361 && (DECL_EXTERNAL (IDENTIFIER_GLOBAL_VALUE (name))
2362 || TREE_PUBLIC (IDENTIFIER_GLOBAL_VALUE (name))))
2363 decl = IDENTIFIER_GLOBAL_VALUE (name);
2364 else if (IDENTIFIER_LIMBO_VALUE (name) != 0)
2365 /* Decls in limbo are always extern, so no need to check that. */
2366 decl = IDENTIFIER_LIMBO_VALUE (name);
2367 else
2368 decl = 0;
2369
2370 if (decl && ! comptypes (TREE_TYPE (x), TREE_TYPE (decl))
2371 /* If old decl is built-in, we already warned if we should. */
2372 && !DECL_BUILT_IN (decl))
2373 {
2374 pedwarn_with_decl (x,
2375 "type mismatch with previous external decl");
2376 pedwarn_with_decl (decl, "previous external decl of `%s'");
2377 }
2378 }
2379
2380 /* If a function has had an implicit declaration, and then is defined,
2381 make sure they are compatible. */
2382
2383 if (IDENTIFIER_IMPLICIT_DECL (name) != 0
2384 && IDENTIFIER_GLOBAL_VALUE (name) == 0
2385 && TREE_CODE (x) == FUNCTION_DECL
2386 && ! comptypes (TREE_TYPE (x),
2387 TREE_TYPE (IDENTIFIER_IMPLICIT_DECL (name))))
2388 {
2389 warning_with_decl (x, "type mismatch with previous implicit declaration");
2390 warning_with_decl (IDENTIFIER_IMPLICIT_DECL (name),
2391 "previous implicit declaration of `%s'");
2392 }
2393
2394 /* In PCC-compatibility mode, extern decls of vars with no current decl
2395 take effect at top level no matter where they are. */
2396 if (flag_traditional && DECL_EXTERNAL (x)
2397 && lookup_name (name) == 0)
2398 {
2399 tree type = TREE_TYPE (x);
2400
2401 /* But don't do this if the type contains temporary nodes. */
2402 while (type)
2403 {
2404 if (type == error_mark_node)
2405 break;
2406 if (TYPE_CONTEXT (type))
2407 {
2408 warning_with_decl (x, "type of external `%s' is not global");
2409 /* By exiting the loop early, we leave TYPE nonzero,
2410 and thus prevent globalization of the decl. */
2411 break;
2412 }
2413 else if (TREE_CODE (type) == FUNCTION_TYPE
2414 && TYPE_ARG_TYPES (type) != 0)
2415 /* The types might not be truly local,
2416 but the list of arg types certainly is temporary.
2417 Since prototypes are nontraditional,
2418 ok not to do the traditional thing. */
2419 break;
2420 type = TREE_TYPE (type);
2421 }
2422
2423 if (type == 0)
2424 b = global_binding_level;
2425 }
2426
2427 /* This name is new in its binding level.
2428 Install the new declaration and return it. */
2429 if (b == global_binding_level)
2430 {
2431 /* Install a global value. */
2432
2433 /* If the first global decl has external linkage,
2434 warn if we later see static one. */
2435 if (IDENTIFIER_GLOBAL_VALUE (name) == 0 && TREE_PUBLIC (x))
2436 TREE_PUBLIC (name) = 1;
2437
2438 IDENTIFIER_GLOBAL_VALUE (name) = x;
2439
2440 /* We no longer care about any previous block level declarations. */
2441 IDENTIFIER_LIMBO_VALUE (name) = 0;
2442
2443 /* Don't forget if the function was used via an implicit decl. */
2444 if (IDENTIFIER_IMPLICIT_DECL (name)
2445 && TREE_USED (IDENTIFIER_IMPLICIT_DECL (name)))
2446 TREE_USED (x) = 1, TREE_USED (name) = 1;
2447
2448 /* Don't forget if its address was taken in that way. */
2449 if (IDENTIFIER_IMPLICIT_DECL (name)
2450 && TREE_ADDRESSABLE (IDENTIFIER_IMPLICIT_DECL (name)))
2451 TREE_ADDRESSABLE (x) = 1;
2452
2453 /* Warn about mismatches against previous implicit decl. */
2454 if (IDENTIFIER_IMPLICIT_DECL (name) != 0
2455 /* If this real decl matches the implicit, don't complain. */
2456 && ! (TREE_CODE (x) == FUNCTION_DECL
2457 && (TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (x)))
2458 == integer_type_node)))
2459 pedwarn ("`%s' was previously implicitly declared to return `int'",
2460 IDENTIFIER_POINTER (name));
2461
2462 /* If this decl is `static' and an `extern' was seen previously,
2463 that is erroneous. */
2464 if (TREE_PUBLIC (name)
2465 && ! TREE_PUBLIC (x) && ! DECL_EXTERNAL (x))
2466 {
2467 /* Okay to redeclare an ANSI built-in as static. */
2468 if (t != 0 && DECL_BUILT_IN (t))
2469 ;
2470 /* Okay to declare a non-ANSI built-in as anything. */
2471 else if (t != 0 && DECL_BUILT_IN_NONANSI (t))
2472 ;
2473 /* Okay to have global type decl after an earlier extern
2474 declaration inside a lexical block. */
2475 else if (TREE_CODE (x) == TYPE_DECL)
2476 ;
2477 else if (IDENTIFIER_IMPLICIT_DECL (name))
2478 {
2479 if (! TREE_THIS_VOLATILE (name))
2480 pedwarn ("`%s' was declared implicitly `extern' and later `static'",
2481 IDENTIFIER_POINTER (name));
2482 }
2483 else
2484 pedwarn ("`%s' was declared `extern' and later `static'",
2485 IDENTIFIER_POINTER (name));
2486 }
2487 }
2488 else
2489 {
2490 /* Here to install a non-global value. */
2491 tree oldlocal = IDENTIFIER_LOCAL_VALUE (name);
2492 tree oldglobal = IDENTIFIER_GLOBAL_VALUE (name);
2493
2494 IDENTIFIER_LOCAL_VALUE (name) = x;
2495
2496 /* If this is an extern function declaration, see if we
2497 have a global definition or declaration for the function. */
2498 if (oldlocal == 0
2499 && oldglobal != 0
2500 && TREE_CODE (x) == FUNCTION_DECL
2501 && TREE_CODE (oldglobal) == FUNCTION_DECL
2502 && DECL_EXTERNAL (x)
2503 && ! DECL_DECLARED_INLINE_P (x))
2504 {
2505 /* We have one. Their types must agree. */
2506 if (! comptypes (TREE_TYPE (x),
2507 TREE_TYPE (IDENTIFIER_GLOBAL_VALUE (name))))
2508 pedwarn_with_decl (x, "extern declaration of `%s' doesn't match global one");
2509 else
2510 {
2511 /* Inner extern decl is inline if global one is.
2512 Copy enough to really inline it. */
2513 if (DECL_DECLARED_INLINE_P (oldglobal))
2514 {
2515 DECL_DECLARED_INLINE_P (x)
2516 = DECL_DECLARED_INLINE_P (oldglobal);
2517 DECL_INLINE (x) = DECL_INLINE (oldglobal);
2518 DECL_INITIAL (x) = (current_function_decl == oldglobal
2519 ? 0 : DECL_INITIAL (oldglobal));
2520 DECL_SAVED_INSNS (x) = DECL_SAVED_INSNS (oldglobal);
2521 DECL_NUM_STMTS (x) = DECL_NUM_STMTS (oldglobal);
2522 DECL_ARGUMENTS (x) = DECL_ARGUMENTS (oldglobal);
2523 DECL_RESULT (x) = DECL_RESULT (oldglobal);
2524 TREE_ASM_WRITTEN (x) = TREE_ASM_WRITTEN (oldglobal);
2525 DECL_ABSTRACT_ORIGIN (x)
2526 = DECL_ABSTRACT_ORIGIN (oldglobal);
2527 }
2528 /* Inner extern decl is built-in if global one is. */
2529 if (DECL_BUILT_IN (oldglobal))
2530 {
2531 DECL_BUILT_IN_CLASS (x) = DECL_BUILT_IN_CLASS (oldglobal);
2532 DECL_FUNCTION_CODE (x) = DECL_FUNCTION_CODE (oldglobal);
2533 }
2534 /* Keep the arg types from a file-scope fcn defn. */
2535 if (TYPE_ARG_TYPES (TREE_TYPE (oldglobal)) != 0
2536 && DECL_INITIAL (oldglobal)
2537 && TYPE_ARG_TYPES (TREE_TYPE (x)) == 0)
2538 TREE_TYPE (x) = TREE_TYPE (oldglobal);
2539 }
2540 }
2541
2542#if 0
2543 /* This case is probably sometimes the right thing to do. */
2544 /* If we have a local external declaration,
2545 then any file-scope declaration should not
2546 have been static. */
2547 if (oldlocal == 0 && oldglobal != 0
2548 && !TREE_PUBLIC (oldglobal)
2549 && DECL_EXTERNAL (x) && TREE_PUBLIC (x))
2550 warning ("`%s' locally external but globally static",
2551 IDENTIFIER_POINTER (name));
2552#endif
2553
2554 /* If we have a local external declaration,
2555 and no file-scope declaration has yet been seen,
2556 then if we later have a file-scope decl it must not be static. */
2557 if (oldlocal == 0
2558 && DECL_EXTERNAL (x)
2559 && TREE_PUBLIC (x))
2560 {
2561 if (oldglobal == 0)
2562 TREE_PUBLIC (name) = 1;
2563
2564 /* Save this decl, so that we can do type checking against
2565 other decls after it falls out of scope.
2566
2567 Only save it once. This prevents temporary decls created in
2568 expand_inline_function from being used here, since this
2569 will have been set when the inline function was parsed.
2570 It also helps give slightly better warnings. */
2571 if (IDENTIFIER_LIMBO_VALUE (name) == 0)
2572 IDENTIFIER_LIMBO_VALUE (name) = x;
2573 }
2574
2575 warn_if_shadowing (x, oldlocal);
2576
2577 /* If storing a local value, there may already be one (inherited).
2578 If so, record it for restoration when this binding level ends. */
2579 if (oldlocal != 0)
2580 b->shadowed = tree_cons (name, oldlocal, b->shadowed);
2581 }
2582
2583 /* Keep count of variables in this level with incomplete type.
2584 If the input is erroneous, we can have error_mark in the type
2585 slot (e.g. "f(void a, ...)") - that doesn't count as an
2586 incomplete type. */
2587 if (TREE_TYPE (x) != error_mark_node
2588 && !COMPLETE_TYPE_P (TREE_TYPE (x)))
2589 {
2590 tree element = TREE_TYPE (x);
2591
2592 while (TREE_CODE (element) == ARRAY_TYPE)
2593 element = TREE_TYPE (element);
2594 if (TREE_CODE (element) == RECORD_TYPE
2595 || TREE_CODE (element) == UNION_TYPE)
2596 ++b->n_incomplete;
2597 }
2598 }
2599
2600 /* Put decls on list in reverse order.
2601 We will reverse them later if necessary. */
2602 TREE_CHAIN (x) = b->names;
2603 b->names = x;
2604
2605 return x;
2606}
2607
2608/* Like pushdecl, only it places X in GLOBAL_BINDING_LEVEL, if appropriate. */
2609
2610tree
2611pushdecl_top_level (x)
2612 tree x;
2613{
2614 tree t;
2615 struct binding_level *b = current_binding_level;
2616
2617 current_binding_level = global_binding_level;
2618 t = pushdecl (x);
2619 current_binding_level = b;
2620 return t;
2621}
2622
2623/* Generate an implicit declaration for identifier FUNCTIONID
2624 as a function of type int (). Print a warning if appropriate. */
2625
2626tree
2627implicitly_declare (functionid)
2628 tree functionid;
2629{
2630 tree decl;
2631 int traditional_warning = 0;
2632 /* Only one "implicit declaration" warning per identifier. */
2633 int implicit_warning;
2634
2635 /* We used to reuse an old implicit decl here,
2636 but this loses with inline functions because it can clobber
2637 the saved decl chains. */
2638#if 0
2639 if (IDENTIFIER_IMPLICIT_DECL (functionid) != 0)
2640 decl = IDENTIFIER_IMPLICIT_DECL (functionid);
2641 else
2642#endif
2643 decl = build_decl (FUNCTION_DECL, functionid, default_function_type);
2644
2645 /* Warn of implicit decl following explicit local extern decl.
2646 This is probably a program designed for traditional C. */
2647 if (TREE_PUBLIC (functionid) && IDENTIFIER_GLOBAL_VALUE (functionid) == 0)
2648 traditional_warning = 1;
2649
2650 /* Warn once of an implicit declaration. */
2651 implicit_warning = (IDENTIFIER_IMPLICIT_DECL (functionid) == 0);
2652
2653 DECL_EXTERNAL (decl) = 1;
2654 TREE_PUBLIC (decl) = 1;
2655
2656 /* Record that we have an implicit decl and this is it. */
2657 IDENTIFIER_IMPLICIT_DECL (functionid) = decl;
2658
2659 /* ANSI standard says implicit declarations are in the innermost block.
2660 So we record the decl in the standard fashion.
2661 If flag_traditional is set, pushdecl does it top-level. */
2662 pushdecl (decl);
2663
2664 /* This is a no-op in c-lang.c or something real in objc-actions.c. */
2665 maybe_objc_check_decl (decl);
2666
2667 rest_of_decl_compilation (decl, NULL, 0, 0);
2668
2669 if (implicit_warning)
2670 implicit_decl_warning (functionid);
2671 else if (warn_traditional && traditional_warning)
2672 warning ("function `%s' was previously declared within a block",
2673 IDENTIFIER_POINTER (functionid));
2674
2675 /* Write a record describing this implicit function declaration to the
2676 prototypes file (if requested). */
2677
2678 gen_aux_info_record (decl, 0, 1, 0);
2679
2680 /* Possibly apply some default attributes to this implicit declaration. */
2681 decl_attributes (&decl, NULL_TREE, 0);
2682
2683 return decl;
2684}
2685
2686void
2687implicit_decl_warning (id)
2688 tree id;
2689{
2690 const char *name = IDENTIFIER_POINTER (id);
2691 if (mesg_implicit_function_declaration == 2)
2692 error ("implicit declaration of function `%s'", name);
2693 else if (mesg_implicit_function_declaration == 1)
2694 warning ("implicit declaration of function `%s'", name);
2695}
2696
2697/* Return zero if the declaration NEWDECL is valid
2698 when the declaration OLDDECL (assumed to be for the same name)
2699 has already been seen.
2700 Otherwise return 1 if NEWDECL is a redefinition, 2 if it is a redeclaration,
2701 and 3 if it is a conflicting declaration. */
2702
2703static int
2704redeclaration_error_message (newdecl, olddecl)
2705 tree newdecl, olddecl;
2706{
2707 if (TREE_CODE (newdecl) == TYPE_DECL)
2708 {
2709 if (flag_traditional && TREE_TYPE (newdecl) == TREE_TYPE (olddecl))
2710 return 0;
2711 /* pushdecl creates distinct types for TYPE_DECLs by calling
2712 build_type_copy, so the above comparison generally fails. We do
2713 another test against the TYPE_MAIN_VARIANT of the olddecl, which
2714 is equivalent to what this code used to do before the build_type_copy
2715 call. The variant type distinction should not matter for traditional
2716 code, because it doesn't have type qualifiers. */
2717 if (flag_traditional
2718 && TYPE_MAIN_VARIANT (TREE_TYPE (olddecl)) == TREE_TYPE (newdecl))
2719 return 0;
2720 if (DECL_IN_SYSTEM_HEADER (olddecl) || DECL_IN_SYSTEM_HEADER (newdecl))
2721 return 0;
2722 return 1;
2723 }
2724 else if (TREE_CODE (newdecl) == FUNCTION_DECL)
2725 {
2726 /* Declarations of functions can insist on internal linkage
2727 but they can't be inconsistent with internal linkage,
2728 so there can be no error on that account.
2729 However defining the same name twice is no good. */
2730 if (DECL_INITIAL (olddecl) != 0 && DECL_INITIAL (newdecl) != 0
2731 /* However, defining once as extern inline and a second
2732 time in another way is ok. */
2733 && ! (DECL_DECLARED_INLINE_P (olddecl) && DECL_EXTERNAL (olddecl)
2734 && ! (DECL_DECLARED_INLINE_P (newdecl)
2735 && DECL_EXTERNAL (newdecl))))
2736 return 1;
2737 return 0;
2738 }
2739 else if (DECL_CONTEXT (newdecl) == NULL_TREE)
2740 {
2741 /* Objects declared at top level: */
2742 /* If at least one is a reference, it's ok. */
2743 if (DECL_EXTERNAL (newdecl) || DECL_EXTERNAL (olddecl))
2744 return 0;
2745 /* Reject two definitions. */
2746 if (DECL_INITIAL (olddecl) != 0 && DECL_INITIAL (newdecl) != 0)
2747 return 1;
2748 /* Now we have two tentative defs, or one tentative and one real def. */
2749 /* Insist that the linkage match. */
2750 if (TREE_PUBLIC (olddecl) != TREE_PUBLIC (newdecl))
2751 return 3;
2752 return 0;
2753 }
2754 else if (current_binding_level->parm_flag
2755 && TREE_ASM_WRITTEN (olddecl) && !TREE_ASM_WRITTEN (newdecl))
2756 return 0;
2757 else
2758 {
2759 /* Newdecl has block scope. If olddecl has block scope also, then
2760 reject two definitions, and reject a definition together with an
2761 external reference. Otherwise, it is OK, because newdecl must
2762 be an extern reference to olddecl. */
2763 if (!(DECL_EXTERNAL (newdecl) && DECL_EXTERNAL (olddecl))
2764 && DECL_CONTEXT (newdecl) == DECL_CONTEXT (olddecl))
2765 return 2;
2766 return 0;
2767 }
2768}
2769
2770/* Get the LABEL_DECL corresponding to identifier ID as a label.
2771 Create one if none exists so far for the current function.
2772 This function is called for both label definitions and label references. */
2773
2774tree
2775lookup_label (id)
2776 tree id;
2777{
2778 tree decl = IDENTIFIER_LABEL_VALUE (id);
2779
2780 if (current_function_decl == 0)
2781 {
2782 error ("label %s referenced outside of any function",
2783 IDENTIFIER_POINTER (id));
2784 return 0;
2785 }
2786
2787 /* Use a label already defined or ref'd with this name. */
2788 if (decl != 0)
2789 {
2790 /* But not if it is inherited and wasn't declared to be inheritable. */
2791 if (DECL_CONTEXT (decl) != current_function_decl
2792 && ! C_DECLARED_LABEL_FLAG (decl))
2793 return shadow_label (id);
2794 return decl;
2795 }
2796
2797 decl = build_decl (LABEL_DECL, id, void_type_node);
2798
2799 /* A label not explicitly declared must be local to where it's ref'd. */
2800 DECL_CONTEXT (decl) = current_function_decl;
2801
2802 DECL_MODE (decl) = VOIDmode;
2803
2804 /* Say where one reference is to the label,
2805 for the sake of the error if it is not defined. */
2806 DECL_SOURCE_LINE (decl) = lineno;
2807 DECL_SOURCE_FILE (decl) = input_filename;
2808
2809 IDENTIFIER_LABEL_VALUE (id) = decl;
2810
2811 named_labels = tree_cons (NULL_TREE, decl, named_labels);
2812
2813 return decl;
2814}
2815
2816/* Make a label named NAME in the current function,
2817 shadowing silently any that may be inherited from containing functions
2818 or containing scopes.
2819
2820 Note that valid use, if the label being shadowed
2821 comes from another scope in the same function,
2822 requires calling declare_nonlocal_label right away. */
2823
2824tree
2825shadow_label (name)
2826 tree name;
2827{
2828 tree decl = IDENTIFIER_LABEL_VALUE (name);
2829
2830 if (decl != 0)
2831 {
2832 tree dup;
2833
2834 /* Check to make sure that the label hasn't already been declared
2835 at this label scope */
2836 for (dup = named_labels; dup; dup = TREE_CHAIN (dup))
2837 if (TREE_VALUE (dup) == decl)
2838 {
2839 error ("duplicate label declaration `%s'",
2840 IDENTIFIER_POINTER (name));
2841 error_with_decl (TREE_VALUE (dup),
2842 "this is a previous declaration");
2843 /* Just use the previous declaration. */
2844 return lookup_label (name);
2845 }
2846
2847 shadowed_labels = tree_cons (NULL_TREE, decl, shadowed_labels);
2848 IDENTIFIER_LABEL_VALUE (name) = decl = 0;
2849 }
2850
2851 return lookup_label (name);
2852}
2853
2854/* Define a label, specifying the location in the source file.
2855 Return the LABEL_DECL node for the label, if the definition is valid.
2856 Otherwise return 0. */
2857
2858tree
2859define_label (filename, line, name)
2860 const char *filename;
2861 int line;
2862 tree name;
2863{
2864 tree decl = lookup_label (name);
2865
2866 /* If label with this name is known from an outer context, shadow it. */
2867 if (decl != 0 && DECL_CONTEXT (decl) != current_function_decl)
2868 {
2869 shadowed_labels = tree_cons (NULL_TREE, decl, shadowed_labels);
2870 IDENTIFIER_LABEL_VALUE (name) = 0;
2871 decl = lookup_label (name);
2872 }
2873
2874 if (warn_traditional && !in_system_header && lookup_name (name))
2875 warning_with_file_and_line (filename, line,
2876 "traditional C lacks a separate namespace for labels, identifier `%s' conflicts",
2877 IDENTIFIER_POINTER (name));
2878
2879 if (DECL_INITIAL (decl) != 0)
2880 {
2881 error_with_file_and_line (filename, line, "duplicate label `%s'",
2882 IDENTIFIER_POINTER (name));
2883 return 0;
2884 }
2885 else
2886 {
2887 /* Mark label as having been defined. */
2888 DECL_INITIAL (decl) = error_mark_node;
2889 /* Say where in the source. */
2890 DECL_SOURCE_FILE (decl) = filename;
2891 DECL_SOURCE_LINE (decl) = line;
2892 return decl;
2893 }
2894}
2895
2896/* Return the list of declarations of the current level.
2897 Note that this list is in reverse order unless/until
2898 you nreverse it; and when you do nreverse it, you must
2899 store the result back using `storedecls' or you will lose. */
2900
2901tree
2902getdecls ()
2903{
2904 return current_binding_level->names;
2905}
2906
2907/* Return the list of type-tags (for structs, etc) of the current level. */
2908
2909tree
2910gettags ()
2911{
2912 return current_binding_level->tags;
2913}
2914
2915/* Store the list of declarations of the current level.
2916 This is done for the parameter declarations of a function being defined,
2917 after they are modified in the light of any missing parameters. */
2918
2919static void
2920storedecls (decls)
2921 tree decls;
2922{
2923 current_binding_level->names = decls;
2924}
2925
2926/* Similarly, store the list of tags of the current level. */
2927
2928static void
2929storetags (tags)
2930 tree tags;
2931{
2932 current_binding_level->tags = tags;
2933}
2934
2935/* Given NAME, an IDENTIFIER_NODE,
2936 return the structure (or union or enum) definition for that name.
2937 Searches binding levels from BINDING_LEVEL up to the global level.
2938 If THISLEVEL_ONLY is nonzero, searches only the specified context
2939 (but skips any tag-transparent contexts to find one that is
2940 meaningful for tags).
2941 CODE says which kind of type the caller wants;
2942 it is RECORD_TYPE or UNION_TYPE or ENUMERAL_TYPE.
2943 If the wrong kind of type is found, an error is reported. */
2944
2945static tree
2946lookup_tag (code, name, binding_level, thislevel_only)
2947 enum tree_code code;
2948 struct binding_level *binding_level;
2949 tree name;
2950 int thislevel_only;
2951{
2952 struct binding_level *level;
2953 int thislevel = 1;
2954
2955 for (level = binding_level; level; level = level->level_chain)
2956 {
2957 tree tail;
2958 for (tail = level->tags; tail; tail = TREE_CHAIN (tail))
2959 {
2960 if (TREE_PURPOSE (tail) == name)
2961 {
2962 if (TREE_CODE (TREE_VALUE (tail)) != code)
2963 {
2964 /* Definition isn't the kind we were looking for. */
2965 pending_invalid_xref = name;
2966 pending_invalid_xref_file = input_filename;
2967 pending_invalid_xref_line = lineno;
2968 /* If in the same binding level as a declaration as a tag
2969 of a different type, this must not be allowed to
2970 shadow that tag, so give the error immediately.
2971 (For example, "struct foo; union foo;" is invalid.) */
2972 if (thislevel)
2973 pending_xref_error ();
2974 }
2975 return TREE_VALUE (tail);
2976 }
2977 }
2978 if (! level->tag_transparent)
2979 {
2980 if (thislevel_only)
2981 return NULL_TREE;
2982 thislevel = 0;
2983 }
2984 }
2985 return NULL_TREE;
2986}
2987
2988/* Print an error message now
2989 for a recent invalid struct, union or enum cross reference.
2990 We don't print them immediately because they are not invalid
2991 when used in the `struct foo;' construct for shadowing. */
2992
2993void
2994pending_xref_error ()
2995{
2996 if (pending_invalid_xref != 0)
2997 error_with_file_and_line (pending_invalid_xref_file,
2998 pending_invalid_xref_line,
2999 "`%s' defined as wrong kind of tag",
3000 IDENTIFIER_POINTER (pending_invalid_xref));
3001 pending_invalid_xref = 0;
3002}
3003
3004/* Given a type, find the tag that was defined for it and return the tag name.
3005 Otherwise return 0. */
3006
3007static tree
3008lookup_tag_reverse (type)
3009 tree type;
3010{
3011 struct binding_level *level;
3012
3013 for (level = current_binding_level; level; level = level->level_chain)
3014 {
3015 tree tail;
3016 for (tail = level->tags; tail; tail = TREE_CHAIN (tail))
3017 {
3018 if (TREE_VALUE (tail) == type)
3019 return TREE_PURPOSE (tail);
3020 }
3021 }
3022 return NULL_TREE;
3023}
3024
3025/* Look up NAME in the current binding level and its superiors
3026 in the namespace of variables, functions and typedefs.
3027 Return a ..._DECL node of some kind representing its definition,
3028 or return 0 if it is undefined. */
3029
3030tree
3031lookup_name (name)
3032 tree name;
3033{
3034 tree val;
3035
3036 if (current_binding_level != global_binding_level
3037 && IDENTIFIER_LOCAL_VALUE (name))
3038 val = IDENTIFIER_LOCAL_VALUE (name);
3039 else
3040 val = IDENTIFIER_GLOBAL_VALUE (name);
3041 return val;
3042}
3043
3044/* Similar to `lookup_name' but look only at current binding level. */
3045
3046tree
3047lookup_name_current_level (name)
3048 tree name;
3049{
3050 tree t;
3051
3052 if (current_binding_level == global_binding_level)
3053 return IDENTIFIER_GLOBAL_VALUE (name);
3054
3055 if (IDENTIFIER_LOCAL_VALUE (name) == 0)
3056 return 0;
3057
3058 for (t = current_binding_level->names; t; t = TREE_CHAIN (t))
3059 if (DECL_NAME (t) == name)
3060 break;
3061
3062 return t;
3063}
3064
3065/* Mark ARG for GC. */
3066
3067static void
3068mark_binding_level (arg)
3069 void *arg;
3070{
3071 struct binding_level *level = *(struct binding_level **) arg;
3072
3073 for (; level != 0; level = level->level_chain)
3074 {
3075 ggc_mark_tree (level->names);
3076 ggc_mark_tree (level->tags);
3077 ggc_mark_tree (level->shadowed);
3078 ggc_mark_tree (level->blocks);
3079 ggc_mark_tree (level->this_block);
3080 ggc_mark_tree (level->parm_order);
3081 }
3082}
3083
3084/* Create the predefined scalar types of C,
3085 and some nodes representing standard constants (0, 1, (void *) 0).
3086 Initialize the global binding level.
3087 Make definitions for built-in primitive functions. */
3088
3089void
3090c_init_decl_processing ()
3091{
3092 tree endlink;
3093 tree ptr_ftype_void, ptr_ftype_ptr;
3094
3095 /* Adds some ggc roots, and reserved words for c-parse.in. */
3096 c_parse_init ();
3097
3098 current_function_decl = NULL;
3099 named_labels = NULL;
3100 current_binding_level = NULL_BINDING_LEVEL;
3101 free_binding_level = NULL_BINDING_LEVEL;
3102
3103 /* Make the binding_level structure for global names. */
3104 pushlevel (0);
3105 global_binding_level = current_binding_level;
3106
3107 build_common_tree_nodes (flag_signed_char);
3108
3109 c_common_nodes_and_builtins ();
3110
3111 boolean_type_node = integer_type_node;
3112 boolean_true_node = integer_one_node;
3113 boolean_false_node = integer_zero_node;
3114
3115 c_bool_type_node = make_unsigned_type (BOOL_TYPE_SIZE);
3116 TREE_SET_CODE (c_bool_type_node, BOOLEAN_TYPE);
3117 TYPE_MAX_VALUE (c_bool_type_node) = build_int_2 (1, 0);
3118 TREE_TYPE (TYPE_MAX_VALUE (c_bool_type_node)) = c_bool_type_node;
3119 TYPE_PRECISION (c_bool_type_node) = 1;
3120 pushdecl (build_decl (TYPE_DECL, get_identifier ("_Bool"),
3121 c_bool_type_node));
3122 c_bool_false_node = build_int_2 (0, 0);
3123 TREE_TYPE (c_bool_false_node) = c_bool_type_node;
3124 c_bool_true_node = build_int_2 (1, 0);
3125 TREE_TYPE (c_bool_true_node) = c_bool_type_node;
3126
3127 endlink = void_list_node;
3128 ptr_ftype_void = build_function_type (ptr_type_node, endlink);
3129 ptr_ftype_ptr
3130 = build_function_type (ptr_type_node,
3131 tree_cons (NULL_TREE, ptr_type_node, endlink));
3132
3133 /* Types which are common to the fortran compiler and libf2c. When
3134 changing these, you also need to be concerned with f/com.h. */
3135
3136 if (TYPE_PRECISION (float_type_node)
3137 == TYPE_PRECISION (long_integer_type_node))
3138 {
3139 g77_integer_type_node = long_integer_type_node;
3140 g77_uinteger_type_node = long_unsigned_type_node;
3141 }
3142 else if (TYPE_PRECISION (float_type_node)
3143 == TYPE_PRECISION (integer_type_node))
3144 {
3145 g77_integer_type_node = integer_type_node;
3146 g77_uinteger_type_node = unsigned_type_node;
3147 }
3148 else
3149 g77_integer_type_node = g77_uinteger_type_node = NULL_TREE;
3150
3151 if (g77_integer_type_node != NULL_TREE)
3152 {
3153 pushdecl (build_decl (TYPE_DECL, get_identifier ("__g77_integer"),
3154 g77_integer_type_node));
3155 pushdecl (build_decl (TYPE_DECL, get_identifier ("__g77_uinteger"),
3156 g77_uinteger_type_node));
3157 }
3158
3159 if (TYPE_PRECISION (float_type_node) * 2
3160 == TYPE_PRECISION (long_integer_type_node))
3161 {
3162 g77_longint_type_node = long_integer_type_node;
3163 g77_ulongint_type_node = long_unsigned_type_node;
3164 }
3165 else if (TYPE_PRECISION (float_type_node) * 2
3166 == TYPE_PRECISION (long_long_integer_type_node))
3167 {
3168 g77_longint_type_node = long_long_integer_type_node;
3169 g77_ulongint_type_node = long_long_unsigned_type_node;
3170 }
3171 else
3172 g77_longint_type_node = g77_ulongint_type_node = NULL_TREE;
3173
3174 if (g77_longint_type_node != NULL_TREE)
3175 {
3176 pushdecl (build_decl (TYPE_DECL, get_identifier ("__g77_longint"),
3177 g77_longint_type_node));
3178 pushdecl (build_decl (TYPE_DECL, get_identifier ("__g77_ulongint"),
3179 g77_ulongint_type_node));
3180 }
3181
3182 pedantic_lvalues = pedantic;
3183
3184 make_fname_decl = c_make_fname_decl;
3185 start_fname_decls ();
3186
3187 incomplete_decl_finalize_hook = finish_incomplete_decl;
3188
3189 /* Record our roots. */
3190
3191 ggc_add_tree_root (c_global_trees, CTI_MAX);
3192 ggc_add_root (&c_stmt_tree, 1, sizeof c_stmt_tree, mark_stmt_tree);
3193 ggc_add_tree_root (&c_scope_stmt_stack, 1);
3194 ggc_add_tree_root (&named_labels, 1);
3195 ggc_add_tree_root (&shadowed_labels, 1);
3196 ggc_add_root (&current_binding_level, 1, sizeof current_binding_level,
3197 mark_binding_level);
3198 ggc_add_root (&label_level_chain, 1, sizeof label_level_chain,
3199 mark_binding_level);
3200 ggc_add_tree_root (&static_ctors, 1);
3201 ggc_add_tree_root (&static_dtors, 1);
3202}
3203
3204/* Create the VAR_DECL for __FUNCTION__ etc. ID is the name to give the
3205 decl, NAME is the initialization string and TYPE_DEP indicates whether
3206 NAME depended on the type of the function. As we don't yet implement
3207 delayed emission of static data, we mark the decl as emitted
3208 so it is not placed in the output. Anything using it must therefore pull
3209 out the STRING_CST initializer directly. This does mean that these names
3210 are string merging candidates, which is wrong for C99's __func__. FIXME. */
3211
3212static tree
3213c_make_fname_decl (id, type_dep)
3214 tree id;
3215 int type_dep;
3216{
3217 const char *name = fname_as_string (type_dep);
3218 tree decl, type, init;
3219 size_t length = strlen (name);
3220
3221 type = build_array_type
3222 (build_qualified_type (char_type_node, TYPE_QUAL_CONST),
3223 build_index_type (size_int (length)));
3224
3225 decl = build_decl (VAR_DECL, id, type);
3226 /* We don't push the decl, so have to set its context here. */
3227 DECL_CONTEXT (decl) = current_function_decl;
3228
3229 TREE_STATIC (decl) = 1;
3230 TREE_READONLY (decl) = 1;
3231 DECL_ARTIFICIAL (decl) = 1;
3232
3233 init = build_string (length + 1, name);
3234 TREE_TYPE (init) = type;
3235 DECL_INITIAL (decl) = init;
3236
3237 TREE_USED (decl) = 1;
3238
3239 finish_decl (decl, init, NULL_TREE);
3240
3241 return decl;
3242}
3243
3244/* Return a definition for a builtin function named NAME and whose data type
3245 is TYPE. TYPE should be a function type with argument types.
3246 FUNCTION_CODE tells later passes how to compile calls to this function.
3247 See tree.h for its possible values.
3248
3249 If LIBRARY_NAME is nonzero, use that for DECL_ASSEMBLER_NAME,
3250 the name to be called if we can't opencode the function. */
3251
3252tree
3253builtin_function (name, type, function_code, class, library_name)
3254 const char *name;
3255 tree type;
3256 int function_code;
3257 enum built_in_class class;
3258 const char *library_name;
3259{
3260 tree decl = build_decl (FUNCTION_DECL, get_identifier (name), type);
3261 DECL_EXTERNAL (decl) = 1;
3262 TREE_PUBLIC (decl) = 1;
3263 /* If -traditional, permit redefining a builtin function any way you like.
3264 (Though really, if the program redefines these functions,
3265 it probably won't work right unless compiled with -fno-builtin.) */
3266 if (flag_traditional && name[0] != '_')
3267 DECL_BUILT_IN_NONANSI (decl) = 1;
3268 if (library_name)
3269 SET_DECL_ASSEMBLER_NAME (decl, get_identifier (library_name));
3270 make_decl_rtl (decl, NULL);
3271 pushdecl (decl);
3272 DECL_BUILT_IN_CLASS (decl) = class;
3273 DECL_FUNCTION_CODE (decl) = function_code;
3274
3275 /* The return builtins leave the current function. */
3276 if (function_code == BUILT_IN_RETURN || function_code == BUILT_IN_EH_RETURN)
3277 TREE_THIS_VOLATILE (decl) = 1;
3278
3279 /* Warn if a function in the namespace for users
3280 is used without an occasion to consider it declared. */
3281 if (name[0] != '_' || name[1] != '_')
3282 C_DECL_ANTICIPATED (decl) = 1;
3283
3284 /* Possibly apply some default attributes to this built-in function. */
3285 decl_attributes (&decl, NULL_TREE, 0);
3286
3287 return decl;
3288}
3289
3290/* Apply default attributes to a function, if a system function with default
3291 attributes. */
3292
3293void
3294insert_default_attributes (decl)
3295 tree decl;
3296{
3297 if (!TREE_PUBLIC (decl))
3298 return;
3299 c_common_insert_default_attributes (decl);
3300}
3301
3302/* Called when a declaration is seen that contains no names to declare.
3303 If its type is a reference to a structure, union or enum inherited
3304 from a containing scope, shadow that tag name for the current scope
3305 with a forward reference.
3306 If its type defines a new named structure or union
3307 or defines an enum, it is valid but we need not do anything here.
3308 Otherwise, it is an error. */
3309
3310void
3311shadow_tag (declspecs)
3312 tree declspecs;
3313{
3314 shadow_tag_warned (declspecs, 0);
3315}
3316
3317void
3318shadow_tag_warned (declspecs, warned)
3319 tree declspecs;
3320 int warned;
3321 /* 1 => we have done a pedwarn. 2 => we have done a warning, but
3322 no pedwarn. */
3323{
3324 int found_tag = 0;
3325 tree link;
3326 tree specs, attrs;
3327
3328 pending_invalid_xref = 0;
3329
3330 /* Remove the attributes from declspecs, since they will confuse the
3331 following code. */
3332 split_specs_attrs (declspecs, &specs, &attrs);
3333
3334 for (link = specs; link; link = TREE_CHAIN (link))
3335 {
3336 tree value = TREE_VALUE (link);
3337 enum tree_code code = TREE_CODE (value);
3338
3339 if (code == RECORD_TYPE || code == UNION_TYPE || code == ENUMERAL_TYPE)
3340 /* Used to test also that TYPE_SIZE (value) != 0.
3341 That caused warning for `struct foo;' at top level in the file. */
3342 {
3343 tree name = lookup_tag_reverse (value);
3344 tree t;
3345
3346 found_tag++;
3347
3348 if (name == 0)
3349 {
3350 if (warned != 1 && code != ENUMERAL_TYPE)
3351 /* Empty unnamed enum OK */
3352 {
3353 pedwarn ("unnamed struct/union that defines no instances");
3354 warned = 1;
3355 }
3356 }
3357 else
3358 {
3359 t = lookup_tag (code, name, current_binding_level, 1);
3360
3361 if (t == 0)
3362 {
3363 t = make_node (code);
3364 pushtag (name, t);
3365 }
3366 }
3367 }
3368 else
3369 {
3370 if (!warned && ! in_system_header)
3371 {
3372 warning ("useless keyword or type name in empty declaration");
3373 warned = 2;
3374 }
3375 }
3376 }
3377
3378 if (found_tag > 1)
3379 error ("two types specified in one empty declaration");
3380
3381 if (warned != 1)
3382 {
3383 if (found_tag == 0)
3384 pedwarn ("empty declaration");
3385 }
3386}
3387
3388/* Construct an array declarator. EXPR is the expression inside [], or
3389 NULL_TREE. QUALS are the type qualifiers inside the [] (to be applied
3390 to the pointer to which a parameter array is converted). STATIC_P is
3391 non-zero if "static" is inside the [], zero otherwise. VLA_UNSPEC_P
3392 is non-zero is the array is [*], a VLA of unspecified length which is
3393 nevertheless a complete type (not currently implemented by GCC),
3394 zero otherwise. The declarator is constructed as an ARRAY_REF
3395 (to be decoded by grokdeclarator), whose operand 0 is what's on the
3396 left of the [] (filled by in set_array_declarator_type) and operand 1
3397 is the expression inside; whose TREE_TYPE is the type qualifiers and
3398 which has TREE_STATIC set if "static" is used. */
3399
3400tree
3401build_array_declarator (expr, quals, static_p, vla_unspec_p)
3402 tree expr;
3403 tree quals;
3404 int static_p;
3405 int vla_unspec_p;
3406{
3407 tree decl;
3408 decl = build_nt (ARRAY_REF, NULL_TREE, expr);
3409 TREE_TYPE (decl) = quals;
3410 TREE_STATIC (decl) = (static_p ? 1 : 0);
3411 if (pedantic && !flag_isoc99)
3412 {
3413 if (static_p || quals != NULL_TREE)
3414 pedwarn ("ISO C89 does not support `static' or type qualifiers in parameter array declarators");
3415 if (vla_unspec_p)
3416 pedwarn ("ISO C89 does not support `[*]' array declarators");
3417 }
3418 if (vla_unspec_p)
3419 warning ("GCC does not yet properly implement `[*]' array declarators");
3420 return decl;
3421}
3422
3423/* Set the type of an array declarator. DECL is the declarator, as
3424 constructed by build_array_declarator; TYPE is what appears on the left
3425 of the [] and goes in operand 0. ABSTRACT_P is non-zero if it is an
3426 abstract declarator, zero otherwise; this is used to reject static and
3427 type qualifiers in abstract declarators, where they are not in the
3428 C99 grammar. */
3429
3430tree
3431set_array_declarator_type (decl, type, abstract_p)
3432 tree decl;
3433 tree type;
3434 int abstract_p;
3435{
3436 TREE_OPERAND (decl, 0) = type;
3437 if (abstract_p && (TREE_TYPE (decl) != NULL_TREE || TREE_STATIC (decl)))
3438 error ("static or type qualifiers in abstract declarator");
3439 return decl;
3440}
3441
3442/* Decode a "typename", such as "int **", returning a ..._TYPE node. */
3443
3444tree
3445groktypename (typename)
3446 tree typename;
3447{
3448 tree specs, attrs;
3449
3450 if (TREE_CODE (typename) != TREE_LIST)
3451 return typename;
3452
3453 split_specs_attrs (TREE_PURPOSE (typename), &specs, &attrs);
3454
3455 typename = grokdeclarator (TREE_VALUE (typename), specs, TYPENAME, 0);
3456
3457 /* Apply attributes. */
3458 decl_attributes (&typename, attrs, 0);
3459
3460 return typename;
3461}
3462
3463/* Return a PARM_DECL node for a given pair of specs and declarator. */
3464
3465tree
3466groktypename_in_parm_context (typename)
3467 tree typename;
3468{
3469 if (TREE_CODE (typename) != TREE_LIST)
3470 return typename;
3471 return grokdeclarator (TREE_VALUE (typename),
3472 TREE_PURPOSE (typename),
3473 PARM, 0);
3474}
3475
3476/* Decode a declarator in an ordinary declaration or data definition.
3477 This is called as soon as the type information and variable name
3478 have been parsed, before parsing the initializer if any.
3479 Here we create the ..._DECL node, fill in its type,
3480 and put it on the list of decls for the current context.
3481 The ..._DECL node is returned as the value.
3482
3483 Exception: for arrays where the length is not specified,
3484 the type is left null, to be filled in by `finish_decl'.
3485
3486 Function definitions do not come here; they go to start_function
3487 instead. However, external and forward declarations of functions
3488 do go through here. Structure field declarations are done by
3489 grokfield and not through here. */
3490
3491tree
3492start_decl (declarator, declspecs, initialized, attributes)
3493 tree declarator, declspecs;
3494 int initialized;
3495 tree attributes;
3496{
3497 tree decl;
3498 tree tem;
3499
3500 /* An object declared as __attribute__((deprecated)) suppresses
3501 warnings of uses of other deprecated items. */
3502 if (lookup_attribute ("deprecated", attributes))
3503 deprecated_state = DEPRECATED_SUPPRESS;
3504
3505 decl = grokdeclarator (declarator, declspecs,
3506 NORMAL, initialized);
3507
3508 deprecated_state = DEPRECATED_NORMAL;
3509
3510 if (warn_main > 0 && TREE_CODE (decl) != FUNCTION_DECL
3511 && MAIN_NAME_P (DECL_NAME (decl)))
3512 warning_with_decl (decl, "`%s' is usually a function");
3513
3514 if (initialized)
3515 /* Is it valid for this decl to have an initializer at all?
3516 If not, set INITIALIZED to zero, which will indirectly
3517 tell `finish_decl' to ignore the initializer once it is parsed. */
3518 switch (TREE_CODE (decl))
3519 {
3520 case TYPE_DECL:
3521 /* typedef foo = bar means give foo the same type as bar.
3522 We haven't parsed bar yet, so `finish_decl' will fix that up.
3523 Any other case of an initialization in a TYPE_DECL is an error. */
3524 if (pedantic || list_length (declspecs) > 1)
3525 {
3526 error ("typedef `%s' is initialized",
3527 IDENTIFIER_POINTER (DECL_NAME (decl)));
3528 initialized = 0;
3529 }
3530 break;
3531
3532 case FUNCTION_DECL:
3533 error ("function `%s' is initialized like a variable",
3534 IDENTIFIER_POINTER (DECL_NAME (decl)));
3535 initialized = 0;
3536 break;
3537
3538 case PARM_DECL:
3539 /* DECL_INITIAL in a PARM_DECL is really DECL_ARG_TYPE. */
3540 error ("parameter `%s' is initialized",
3541 IDENTIFIER_POINTER (DECL_NAME (decl)));
3542 initialized = 0;
3543 break;
3544
3545 default:
3546 /* Don't allow initializations for incomplete types
3547 except for arrays which might be completed by the initialization. */
3548
3549 /* This can happen if the array size is an undefined macro. We already
3550 gave a warning, so we don't need another one. */
3551 if (TREE_TYPE (decl) == error_mark_node)
3552 initialized = 0;
3553 else if (COMPLETE_TYPE_P (TREE_TYPE (decl)))
3554 {
3555 /* A complete type is ok if size is fixed. */
3556
3557 if (TREE_CODE (TYPE_SIZE (TREE_TYPE (decl))) != INTEGER_CST
3558 || C_DECL_VARIABLE_SIZE (decl))
3559 {
3560 error ("variable-sized object may not be initialized");
3561 initialized = 0;
3562 }
3563 }
3564 else if (TREE_CODE (TREE_TYPE (decl)) != ARRAY_TYPE)
3565 {
3566 error ("variable `%s' has initializer but incomplete type",
3567 IDENTIFIER_POINTER (DECL_NAME (decl)));
3568 initialized = 0;
3569 }
3570 else if (!COMPLETE_TYPE_P (TREE_TYPE (TREE_TYPE (decl))))
3571 {
3572 error ("elements of array `%s' have incomplete type",
3573 IDENTIFIER_POINTER (DECL_NAME (decl)));
3574 initialized = 0;
3575 }
3576 }
3577
3578 if (initialized)
3579 {
3580#if 0
3581 /* Seems redundant with grokdeclarator. */
3582 if (current_binding_level != global_binding_level
3583 && DECL_EXTERNAL (decl)
3584 && TREE_CODE (decl) != FUNCTION_DECL)
3585 warning ("declaration of `%s' has `extern' and is initialized",
3586 IDENTIFIER_POINTER (DECL_NAME (decl)));
3587#endif
3588 DECL_EXTERNAL (decl) = 0;
3589 if (current_binding_level == global_binding_level)
3590 TREE_STATIC (decl) = 1;
3591
3592 /* Tell `pushdecl' this is an initialized decl
3593 even though we don't yet have the initializer expression.
3594 Also tell `finish_decl' it may store the real initializer. */
3595 DECL_INITIAL (decl) = error_mark_node;
3596 }
3597
3598 /* If this is a function declaration, write a record describing it to the
3599 prototypes file (if requested). */
3600
3601 if (TREE_CODE (decl) == FUNCTION_DECL)
3602 gen_aux_info_record (decl, 0, 0, TYPE_ARG_TYPES (TREE_TYPE (decl)) != 0);
3603
3604 /* ANSI specifies that a tentative definition which is not merged with
3605 a non-tentative definition behaves exactly like a definition with an
3606 initializer equal to zero. (Section 3.7.2)
3607 -fno-common gives strict ANSI behavior. Usually you don't want it.
3608 This matters only for variables with external linkage. */
3609 if (! flag_no_common || ! TREE_PUBLIC (decl))
3610 DECL_COMMON (decl) = 1;
3611
3612 /* Set attributes here so if duplicate decl, will have proper attributes. */
3613 decl_attributes (&decl, attributes, 0);
3614
3615 /* If #pragma weak was used, mark the decl weak now. */
3616 if (current_binding_level == global_binding_level)
3617 maybe_apply_pragma_weak (decl);
3618
3619 if (TREE_CODE (decl) == FUNCTION_DECL
3620 && DECL_DECLARED_INLINE_P (decl)
3621 && DECL_UNINLINABLE (decl)
3622 && lookup_attribute ("noinline", DECL_ATTRIBUTES (decl)))
3623 warning_with_decl (decl,
3624 "inline function `%s' given attribute noinline");
3625
3626 /* Add this decl to the current binding level.
3627 TEM may equal DECL or it may be a previous decl of the same name. */
3628 tem = pushdecl (decl);
3629
3630 /* For a local variable, define the RTL now. */
3631 if (current_binding_level != global_binding_level
3632 /* But not if this is a duplicate decl
3633 and we preserved the rtl from the previous one
3634 (which may or may not happen). */
3635 && !DECL_RTL_SET_P (tem)
3636 && !DECL_CONTEXT (tem))
3637 {
3638 if (TREE_TYPE (tem) != error_mark_node
3639 && COMPLETE_TYPE_P (TREE_TYPE (tem)))
3640 expand_decl (tem);
3641 else if (TREE_CODE (TREE_TYPE (tem)) == ARRAY_TYPE
3642 && DECL_INITIAL (tem) != 0)
3643 expand_decl (tem);
3644 }
3645
3646 return tem;
3647}
3648
3649/* Finish processing of a declaration;
3650 install its initial value.
3651 If the length of an array type is not known before,
3652 it must be determined now, from the initial value, or it is an error. */
3653
3654void
3655finish_decl (decl, init, asmspec_tree)
3656 tree decl, init;
3657 tree asmspec_tree;
3658{
3659 tree type = TREE_TYPE (decl);
3660 int was_incomplete = (DECL_SIZE (decl) == 0);
3661 const char *asmspec = 0;
3662
3663 /* If a name was specified, get the string. */
3664 if (current_binding_level == global_binding_level)
3665 asmspec_tree = maybe_apply_renaming_pragma (decl, asmspec_tree);
3666 if (asmspec_tree)
3667 asmspec = TREE_STRING_POINTER (asmspec_tree);
3668
3669 /* If `start_decl' didn't like having an initialization, ignore it now. */
3670 if (init != 0 && DECL_INITIAL (decl) == 0)
3671 init = 0;
3672
3673 /* Don't crash if parm is initialized. */
3674 if (TREE_CODE (decl) == PARM_DECL)
3675 init = 0;
3676
3677 if (init)
3678 {
3679 if (TREE_CODE (decl) != TYPE_DECL)
3680 store_init_value (decl, init);
3681 else
3682 {
3683 /* typedef foo = bar; store the type of bar as the type of foo. */
3684 TREE_TYPE (decl) = TREE_TYPE (init);
3685 DECL_INITIAL (decl) = init = 0;
3686 }
3687 }
3688
3689 /* Deduce size of array from initialization, if not already known */
3690 if (TREE_CODE (type) == ARRAY_TYPE
3691 && TYPE_DOMAIN (type) == 0
3692 && TREE_CODE (decl) != TYPE_DECL)
3693 {
3694 int do_default
3695 = (TREE_STATIC (decl)
3696 /* Even if pedantic, an external linkage array
3697 may have incomplete type at first. */
3698 ? pedantic && !TREE_PUBLIC (decl)
3699 : !DECL_EXTERNAL (decl));
3700 int failure
3701 = complete_array_type (type, DECL_INITIAL (decl), do_default);
3702
3703 /* Get the completed type made by complete_array_type. */
3704 type = TREE_TYPE (decl);
3705
3706 if (failure == 1)
3707 error_with_decl (decl, "initializer fails to determine size of `%s'");
3708
3709 else if (failure == 2)
3710 {
3711 if (do_default)
3712 error_with_decl (decl, "array size missing in `%s'");
3713 /* If a `static' var's size isn't known,
3714 make it extern as well as static, so it does not get
3715 allocated.
3716 If it is not `static', then do not mark extern;
3717 finish_incomplete_decl will give it a default size
3718 and it will get allocated. */
3719 else if (!pedantic && TREE_STATIC (decl) && ! TREE_PUBLIC (decl))
3720 DECL_EXTERNAL (decl) = 1;
3721 }
3722
3723 /* TYPE_MAX_VALUE is always one less than the number of elements
3724 in the array, because we start counting at zero. Therefore,
3725 warn only if the value is less than zero. */
3726 else if (pedantic && TYPE_DOMAIN (type) != 0
3727 && tree_int_cst_sgn (TYPE_MAX_VALUE (TYPE_DOMAIN (type))) < 0)
3728 error_with_decl (decl, "zero or negative size array `%s'");
3729
3730 layout_decl (decl, 0);
3731 }
3732
3733 if (TREE_CODE (decl) == VAR_DECL)
3734 {
3735 if (DECL_SIZE (decl) == 0 && TREE_TYPE (decl) != error_mark_node
3736 && COMPLETE_TYPE_P (TREE_TYPE (decl)))
3737 layout_decl (decl, 0);
3738
3739 if (DECL_SIZE (decl) == 0
3740 /* Don't give an error if we already gave one earlier. */
3741 && TREE_TYPE (decl) != error_mark_node
3742 && (TREE_STATIC (decl)
3743 ?
3744 /* A static variable with an incomplete type
3745 is an error if it is initialized.
3746 Also if it is not file scope.
3747 Otherwise, let it through, but if it is not `extern'
3748 then it may cause an error message later. */
3749 (DECL_INITIAL (decl) != 0
3750 || DECL_CONTEXT (decl) != 0)
3751 :
3752 /* An automatic variable with an incomplete type
3753 is an error. */
3754 !DECL_EXTERNAL (decl)))
3755 {
3756 error_with_decl (decl, "storage size of `%s' isn't known");
3757 TREE_TYPE (decl) = error_mark_node;
3758 }
3759
3760 if ((DECL_EXTERNAL (decl) || TREE_STATIC (decl))
3761 && DECL_SIZE (decl) != 0)
3762 {
3763 if (TREE_CODE (DECL_SIZE (decl)) == INTEGER_CST)
3764 constant_expression_warning (DECL_SIZE (decl));
3765 else
3766 error_with_decl (decl, "storage size of `%s' isn't constant");
3767 }
3768
3769 if (TREE_USED (type))
3770 TREE_USED (decl) = 1;
3771 }
3772
3773 /* If this is a function and an assembler name is specified, it isn't
3774 builtin any more. Also reset DECL_RTL so we can give it its new
3775 name. */
3776 if (TREE_CODE (decl) == FUNCTION_DECL && asmspec)
3777 {
3778 DECL_BUILT_IN_CLASS (decl) = NOT_BUILT_IN;
3779 SET_DECL_RTL (decl, NULL_RTX);
3780 SET_DECL_ASSEMBLER_NAME (decl, get_identifier (asmspec));
3781 }
3782
3783 /* Output the assembler code and/or RTL code for variables and functions,
3784 unless the type is an undefined structure or union.
3785 If not, it will get done when the type is completed. */
3786
3787 if (TREE_CODE (decl) == VAR_DECL || TREE_CODE (decl) == FUNCTION_DECL)
3788 {
3789 /* This is a no-op in c-lang.c or something real in objc-actions.c. */
3790 maybe_objc_check_decl (decl);
3791
3792 if (!DECL_CONTEXT (decl))
3793 {
3794 if (DECL_INITIAL (decl) == NULL_TREE
3795 || DECL_INITIAL (decl) == error_mark_node)
3796 /* Don't output anything
3797 when a tentative file-scope definition is seen.
3798 But at end of compilation, do output code for them. */
3799 DECL_DEFER_OUTPUT (decl) = 1;
3800 rest_of_decl_compilation (decl, asmspec,
3801 (DECL_CONTEXT (decl) == 0
3802 || TREE_ASM_WRITTEN (decl)), 0);
3803 }
3804 else
3805 {
3806 /* This is a local variable. If there is an ASMSPEC, the
3807 user has requested that we handle it specially. */
3808 if (asmspec)
3809 {
3810 /* In conjunction with an ASMSPEC, the `register'
3811 keyword indicates that we should place the variable
3812 in a particular register. */
3813 if (DECL_REGISTER (decl))
3814 DECL_C_HARD_REGISTER (decl) = 1;
3815
3816 /* If this is not a static variable, issue a warning.
3817 It doesn't make any sense to give an ASMSPEC for an
3818 ordinary, non-register local variable. Historically,
3819 GCC has accepted -- but ignored -- the ASMSPEC in
3820 this case. */
3821 if (TREE_CODE (decl) == VAR_DECL
3822 && !DECL_REGISTER (decl)
3823 && !TREE_STATIC (decl))
3824 warning_with_decl (decl,
3825 "ignoring asm-specifier for non-static local variable `%s'");
3826 else
3827 SET_DECL_ASSEMBLER_NAME (decl, get_identifier (asmspec));
3828 }
3829
3830 if (TREE_CODE (decl) != FUNCTION_DECL)
3831 add_decl_stmt (decl);
3832 }
3833
3834 if (DECL_CONTEXT (decl) != 0)
3835 {
3836 /* Recompute the RTL of a local array now
3837 if it used to be an incomplete type. */
3838 if (was_incomplete
3839 && ! TREE_STATIC (decl) && ! DECL_EXTERNAL (decl))
3840 {
3841 /* If we used it already as memory, it must stay in memory. */
3842 TREE_ADDRESSABLE (decl) = TREE_USED (decl);
3843 /* If it's still incomplete now, no init will save it. */
3844 if (DECL_SIZE (decl) == 0)
3845 DECL_INITIAL (decl) = 0;
3846 }
3847 }
3848 }
3849
3850 if (TREE_CODE (decl) == TYPE_DECL)
3851 {
3852 /* This is a no-op in c-lang.c or something real in objc-actions.c. */
3853 maybe_objc_check_decl (decl);
3854 rest_of_decl_compilation (decl, NULL, DECL_CONTEXT (decl) == 0, 0);
3855 }
3856
3857 /* At the end of a declaration, throw away any variable type sizes
3858 of types defined inside that declaration. There is no use
3859 computing them in the following function definition. */
3860 if (current_binding_level == global_binding_level)
3861 get_pending_sizes ();
3862}
3863
3864/* If DECL has a cleanup, build and return that cleanup here.
3865 This is a callback called by expand_expr. */
3866
3867tree
3868maybe_build_cleanup (decl)
3869 tree decl ATTRIBUTE_UNUSED;
3870{
3871 /* There are no cleanups in C. */
3872 return NULL_TREE;
3873}
3874
3875/* Given a parsed parameter declaration,
3876 decode it into a PARM_DECL and push that on the current binding level.
3877 Also, for the sake of forward parm decls,
3878 record the given order of parms in `parm_order'. */
3879
3880void
3881push_parm_decl (parm)
3882 tree parm;
3883{
3884 tree decl;
3885 int old_immediate_size_expand = immediate_size_expand;
3886 /* Don't try computing parm sizes now -- wait till fn is called. */
3887 immediate_size_expand = 0;
3888
3889 decl = grokdeclarator (TREE_VALUE (TREE_PURPOSE (parm)),
3890 TREE_PURPOSE (TREE_PURPOSE (parm)), PARM, 0);
3891 decl_attributes (&decl, TREE_VALUE (parm), 0);
3892
3893#if 0
3894 if (DECL_NAME (decl))
3895 {
3896 tree olddecl;
3897 olddecl = lookup_name (DECL_NAME (decl));
3898 if (pedantic && olddecl != 0 && TREE_CODE (olddecl) == TYPE_DECL)
3899 pedwarn_with_decl (decl,
3900 "ISO C forbids parameter `%s' shadowing typedef");
3901 }
3902#endif
3903
3904 decl = pushdecl (decl);
3905
3906 immediate_size_expand = old_immediate_size_expand;
3907
3908 current_binding_level->parm_order
3909 = tree_cons (NULL_TREE, decl, current_binding_level->parm_order);
3910
3911 /* Add this decl to the current binding level. */
3912 finish_decl (decl, NULL_TREE, NULL_TREE);
3913}
3914
3915/* Clear the given order of parms in `parm_order'.
3916 Used at start of parm list,
3917 and also at semicolon terminating forward decls. */
3918
3919void
3920clear_parm_order ()
3921{
3922 current_binding_level->parm_order = NULL_TREE;
3923}
3924
3925/* Build a COMPOUND_LITERAL_EXPR. TYPE is the type given in the compound
3926 literal, which may be an incomplete array type completed by the
3927 initializer; INIT is a CONSTRUCTOR that initializes the compound
3928 literal. */
3929
3930tree
3931build_compound_literal (type, init)
3932 tree type;
3933 tree init;
3934{
3935 /* We do not use start_decl here because we have a type, not a declarator;
3936 and do not use finish_decl because the decl should be stored inside
3937 the COMPOUND_LITERAL_EXPR rather than added elsewhere as a DECL_STMT. */
3938 tree decl = build_decl (VAR_DECL, NULL_TREE, type);
3939 tree complit;
3940 tree stmt;
3941 DECL_EXTERNAL (decl) = 0;
3942 TREE_PUBLIC (decl) = 0;
3943 TREE_STATIC (decl) = (current_binding_level == global_binding_level);
3944 DECL_CONTEXT (decl) = current_function_decl;
3945 TREE_USED (decl) = 1;
3946 TREE_TYPE (decl) = type;
3947 store_init_value (decl, init);
3948
3949 if (TREE_CODE (type) == ARRAY_TYPE && !COMPLETE_TYPE_P (type))
3950 {
3951 int failure = complete_array_type (type, DECL_INITIAL (decl), 1);
3952 if (failure)
3953 abort ();
3954 }
3955
3956 type = TREE_TYPE (decl);
3957 if (type == error_mark_node || !COMPLETE_TYPE_P (type))
3958 return error_mark_node;
3959
3960 stmt = build_stmt (DECL_STMT, decl);
3961 complit = build1 (COMPOUND_LITERAL_EXPR, TREE_TYPE (decl), stmt);
3962 TREE_SIDE_EFFECTS (complit) = 1;
3963
3964 layout_decl (decl, 0);
3965
3966 if (TREE_STATIC (decl))
3967 {
3968 /* This decl needs a name for the assembler output. We also need
3969 a unique suffix to be added to the name, for which DECL_CONTEXT
3970 must be set. */
3971 DECL_NAME (decl) = get_identifier ("__compound_literal");
3972 DECL_CONTEXT (decl) = complit;
3973 rest_of_decl_compilation (decl, NULL, 1, 0);
3974 DECL_CONTEXT (decl) = NULL_TREE;
3975 }
3976
3977 return complit;
3978}
3979
3980/* Make TYPE a complete type based on INITIAL_VALUE.
3981 Return 0 if successful, 1 if INITIAL_VALUE can't be deciphered,
3982 2 if there was no information (in which case assume 1 if DO_DEFAULT). */
3983
3984int
3985complete_array_type (type, initial_value, do_default)
3986 tree type;
3987 tree initial_value;
3988 int do_default;
3989{
3990 tree maxindex = NULL_TREE;
3991 int value = 0;
3992
3993 if (initial_value)
3994 {
3995 /* Note MAXINDEX is really the maximum index,
3996 one less than the size. */
3997 if (TREE_CODE (initial_value) == STRING_CST)
3998 {
3999 int eltsize
4000 = int_size_in_bytes (TREE_TYPE (TREE_TYPE (initial_value)));
4001 maxindex = build_int_2 ((TREE_STRING_LENGTH (initial_value)
4002 / eltsize) - 1, 0);
4003 }
4004 else if (TREE_CODE (initial_value) == CONSTRUCTOR)
4005 {
4006 tree elts = CONSTRUCTOR_ELTS (initial_value);
4007 maxindex = build_int_2 (-1, -1);
4008 for (; elts; elts = TREE_CHAIN (elts))
4009 {
4010 if (TREE_PURPOSE (elts))
4011 maxindex = TREE_PURPOSE (elts);
4012 else
4013 maxindex = fold (build (PLUS_EXPR, integer_type_node,
4014 maxindex, integer_one_node));
4015 }
4016 maxindex = copy_node (maxindex);
4017 }
4018 else
4019 {
4020 /* Make an error message unless that happened already. */
4021 if (initial_value != error_mark_node)
4022 value = 1;
4023
4024 /* Prevent further error messages. */
4025 maxindex = build_int_2 (0, 0);
4026 }
4027 }
4028
4029 if (!maxindex)
4030 {
4031 if (do_default)
4032 maxindex = build_int_2 (0, 0);
4033 value = 2;
4034 }
4035
4036 if (maxindex)
4037 {
4038 TYPE_DOMAIN (type) = build_index_type (maxindex);
4039 if (!TREE_TYPE (maxindex))
4040 TREE_TYPE (maxindex) = TYPE_DOMAIN (type);
4041 }
4042
4043 /* Lay out the type now that we can get the real answer. */
4044
4045 layout_type (type);
4046
4047 return value;
4048}
4049
4050/* Given declspecs and a declarator,
4051 determine the name and type of the object declared
4052 and construct a ..._DECL node for it.
4053 (In one case we can return a ..._TYPE node instead.
4054 For invalid input we sometimes return 0.)
4055
4056 DECLSPECS is a chain of tree_list nodes whose value fields
4057 are the storage classes and type specifiers.
4058
4059 DECL_CONTEXT says which syntactic context this declaration is in:
4060 NORMAL for most contexts. Make a VAR_DECL or FUNCTION_DECL or TYPE_DECL.
4061 FUNCDEF for a function definition. Like NORMAL but a few different
4062 error messages in each case. Return value may be zero meaning
4063 this definition is too screwy to try to parse.
4064 PARM for a parameter declaration (either within a function prototype
4065 or before a function body). Make a PARM_DECL, or return void_type_node.
4066 TYPENAME if for a typename (in a cast or sizeof).
4067 Don't make a DECL node; just return the ..._TYPE node.
4068 FIELD for a struct or union field; make a FIELD_DECL.
4069 BITFIELD for a field with specified width.
4070 INITIALIZED is 1 if the decl has an initializer.
4071
4072 In the TYPENAME case, DECLARATOR is really an absolute declarator.
4073 It may also be so in the PARM case, for a prototype where the
4074 argument type is specified but not the name.
4075
4076 This function is where the complicated C meanings of `static'
4077 and `extern' are interpreted. */
4078
4079static tree
4080grokdeclarator (declarator, declspecs, decl_context, initialized)
4081 tree declspecs;
4082 tree declarator;
4083 enum decl_context decl_context;
4084 int initialized;
4085{
4086 int specbits = 0;
4087 tree spec;
4088 tree type = NULL_TREE;
4089 int longlong = 0;
4090 int constp;
4091 int restrictp;
4092 int volatilep;
4093 int type_quals = TYPE_UNQUALIFIED;
4094 int inlinep;
4095 int explicit_int = 0;
4096 int explicit_char = 0;
4097 int defaulted_int = 0;
4098 tree typedef_decl = 0;
4099 const char *name;
4100 tree typedef_type = 0;
4101 int funcdef_flag = 0;
4102 enum tree_code innermost_code = ERROR_MARK;
4103 int bitfield = 0;
4104 int size_varies = 0;
4105 tree decl_attr = NULL_TREE;
4106 tree array_ptr_quals = NULL_TREE;
4107 int array_parm_static = 0;
4108 tree returned_attrs = NULL_TREE;
4109
4110 if (decl_context == BITFIELD)
4111 bitfield = 1, decl_context = FIELD;
4112
4113 if (decl_context == FUNCDEF)
4114 funcdef_flag = 1, decl_context = NORMAL;
4115
4116 /* Look inside a declarator for the name being declared
4117 and get it as a string, for an error message. */
4118 {
4119 tree decl = declarator;
4120 name = 0;
4121
4122 while (decl)
4123 switch (TREE_CODE (decl))
4124 {
4125 case ARRAY_REF:
4126 case INDIRECT_REF:
4127 case CALL_EXPR:
4128 innermost_code = TREE_CODE (decl);
4129 decl = TREE_OPERAND (decl, 0);
4130 break;
4131
4132 case TREE_LIST:
4133 decl = TREE_VALUE (decl);
4134 break;
4135
4136 case IDENTIFIER_NODE:
4137 name = IDENTIFIER_POINTER (decl);
4138 decl = 0;
4139 break;
4140
4141 default:
4142 abort ();
4143 }
4144 if (name == 0)
4145 name = "type name";
4146 }
4147
4148 /* A function definition's declarator must have the form of
4149 a function declarator. */
4150
4151 if (funcdef_flag && innermost_code != CALL_EXPR)
4152 return 0;
4153
4154 /* Anything declared one level down from the top level
4155 must be one of the parameters of a function
4156 (because the body is at least two levels down). */
4157
4158 /* If this looks like a function definition, make it one,
4159 even if it occurs where parms are expected.
4160 Then store_parm_decls will reject it and not use it as a parm. */
4161 if (decl_context == NORMAL && !funcdef_flag
4162 && current_binding_level->parm_flag)
4163 decl_context = PARM;
4164
4165 /* Look through the decl specs and record which ones appear.
4166 Some typespecs are defined as built-in typenames.
4167 Others, the ones that are modifiers of other types,
4168 are represented by bits in SPECBITS: set the bits for
4169 the modifiers that appear. Storage class keywords are also in SPECBITS.
4170
4171 If there is a typedef name or a type, store the type in TYPE.
4172 This includes builtin typedefs such as `int'.
4173
4174 Set EXPLICIT_INT or EXPLICIT_CHAR if the type is `int' or `char'
4175 and did not come from a user typedef.
4176
4177 Set LONGLONG if `long' is mentioned twice. */
4178
4179 for (spec = declspecs; spec; spec = TREE_CHAIN (spec))
4180 {
4181 tree id = TREE_VALUE (spec);
4182
4183 /* If the entire declaration is itself tagged as deprecated then
4184 suppress reports of deprecated items. */
4185 if (id && TREE_DEPRECATED (id))
4186 {
4187 if (deprecated_state != DEPRECATED_SUPPRESS)
4188 warn_deprecated_use (id);
4189 }
4190
4191 if (id == ridpointers[(int) RID_INT])
4192 explicit_int = 1;
4193 if (id == ridpointers[(int) RID_CHAR])
4194 explicit_char = 1;
4195
4196 if (TREE_CODE (id) == IDENTIFIER_NODE && C_IS_RESERVED_WORD (id))
4197 {
4198 enum rid i = C_RID_CODE (id);
4199 if ((int) i <= (int) RID_LAST_MODIFIER)
4200 {
4201 if (i == RID_LONG && (specbits & (1 << (int) i)))
4202 {
4203 if (longlong)
4204 error ("`long long long' is too long for GCC");
4205 else
4206 {
4207 if (pedantic && !flag_isoc99 && ! in_system_header
4208 && warn_long_long)
4209 pedwarn ("ISO C89 does not support `long long'");
4210 longlong = 1;
4211 }
4212 }
4213 else if (specbits & (1 << (int) i))
4214 pedwarn ("duplicate `%s'", IDENTIFIER_POINTER (id));
4215 specbits |= 1 << (int) i;
4216 goto found;
4217 }
4218 }
4219 if (type)
4220 error ("two or more data types in declaration of `%s'", name);
4221 /* Actual typedefs come to us as TYPE_DECL nodes. */
4222 else if (TREE_CODE (id) == TYPE_DECL)
4223 {
4224 if (TREE_TYPE (id) == error_mark_node)
4225 ; /* Allow the type to default to int to avoid cascading errors. */
4226 else
4227 {
4228 type = TREE_TYPE (id);
4229 decl_attr = DECL_ATTRIBUTES (id);
4230 typedef_decl = id;
4231 }
4232 }
4233 /* Built-in types come as identifiers. */
4234 else if (TREE_CODE (id) == IDENTIFIER_NODE)
4235 {
4236 tree t = lookup_name (id);
4237 if (TREE_TYPE (t) == error_mark_node)
4238 ;
4239 else if (!t || TREE_CODE (t) != TYPE_DECL)
4240 error ("`%s' fails to be a typedef or built in type",
4241 IDENTIFIER_POINTER (id));
4242 else
4243 {
4244 type = TREE_TYPE (t);
4245 typedef_decl = t;
4246 }
4247 }
4248 else if (TREE_CODE (id) != ERROR_MARK)
4249 type = id;
4250
4251 found:
4252 ;
4253 }
4254
4255 typedef_type = type;
4256 if (type)
4257 size_varies = C_TYPE_VARIABLE_SIZE (type);
4258
4259 /* No type at all: default to `int', and set DEFAULTED_INT
4260 because it was not a user-defined typedef. */
4261
4262 if (type == 0)
4263 {
4264 if ((! (specbits & ((1 << (int) RID_LONG) | (1 << (int) RID_SHORT)
4265 | (1 << (int) RID_SIGNED)
4266 | (1 << (int) RID_UNSIGNED)
4267 | (1 << (int) RID_COMPLEX))))
4268 /* Don't warn about typedef foo = bar. */
4269 && ! (specbits & (1 << (int) RID_TYPEDEF) && initialized)
4270 && ! in_system_header)
4271 {
4272 /* Issue a warning if this is an ISO C 99 program or if -Wreturn-type
4273 and this is a function, or if -Wimplicit; prefer the former
4274 warning since it is more explicit. */
4275 if ((warn_implicit_int || warn_return_type || flag_isoc99)
4276 && funcdef_flag)
4277 warn_about_return_type = 1;
4278 else if (warn_implicit_int || flag_isoc99)
4279 pedwarn_c99 ("type defaults to `int' in declaration of `%s'",
4280 name);
4281 }
4282
4283 defaulted_int = 1;
4284 type = integer_type_node;
4285 }
4286
4287 /* Now process the modifiers that were specified
4288 and check for invalid combinations. */
4289
4290 /* Long double is a special combination. */
4291
4292 if ((specbits & 1 << (int) RID_LONG) && ! longlong
4293 && TYPE_MAIN_VARIANT (type) == double_type_node)
4294 {
4295 specbits &= ~(1 << (int) RID_LONG);
4296 type = long_double_type_node;
4297 }
4298
4299 /* Check all other uses of type modifiers. */
4300
4301 if (specbits & ((1 << (int) RID_LONG) | (1 << (int) RID_SHORT)
4302 | (1 << (int) RID_UNSIGNED) | (1 << (int) RID_SIGNED)))
4303 {
4304 int ok = 0;
4305
4306 if ((specbits & 1 << (int) RID_LONG)
4307 && (specbits & 1 << (int) RID_SHORT))
4308 error ("both long and short specified for `%s'", name);
4309 else if (((specbits & 1 << (int) RID_LONG)
4310 || (specbits & 1 << (int) RID_SHORT))
4311 && explicit_char)
4312 error ("long or short specified with char for `%s'", name);
4313 else if (((specbits & 1 << (int) RID_LONG)
4314 || (specbits & 1 << (int) RID_SHORT))
4315 && TREE_CODE (type) == REAL_TYPE)
4316 {
4317 static int already = 0;
4318
4319 error ("long or short specified with floating type for `%s'", name);
4320 if (! already && ! pedantic)
4321 {
4322 error ("the only valid combination is `long double'");
4323 already = 1;
4324 }
4325 }
4326 else if ((specbits & 1 << (int) RID_SIGNED)
4327 && (specbits & 1 << (int) RID_UNSIGNED))
4328 error ("both signed and unsigned specified for `%s'", name);
4329 else if (TREE_CODE (type) != INTEGER_TYPE)
4330 error ("long, short, signed or unsigned invalid for `%s'", name);
4331 else
4332 {
4333 ok = 1;
4334 if (!explicit_int && !defaulted_int && !explicit_char && pedantic)
4335 {
4336 pedwarn ("long, short, signed or unsigned used invalidly for `%s'",
4337 name);
4338 if (flag_pedantic_errors)
4339 ok = 0;
4340 }
4341 }
4342
4343 /* Discard the type modifiers if they are invalid. */
4344 if (! ok)
4345 {
4346 specbits &= ~((1 << (int) RID_LONG) | (1 << (int) RID_SHORT)
4347 | (1 << (int) RID_UNSIGNED) | (1 << (int) RID_SIGNED));
4348 longlong = 0;
4349 }
4350 }
4351
4352 if ((specbits & (1 << (int) RID_COMPLEX))
4353 && TREE_CODE (type) != INTEGER_TYPE && TREE_CODE (type) != REAL_TYPE)
4354 {
4355 error ("complex invalid for `%s'", name);
4356 specbits &= ~(1 << (int) RID_COMPLEX);
4357 }
4358
4359 /* Decide whether an integer type is signed or not.
4360 Optionally treat bitfields as signed by default. */
4361 if (specbits & 1 << (int) RID_UNSIGNED
4362 /* Traditionally, all bitfields are unsigned. */
4363 || (bitfield && flag_traditional
4364 && (! explicit_flag_signed_bitfields || !flag_signed_bitfields))
4365 || (bitfield && ! flag_signed_bitfields
4366 && (explicit_int || defaulted_int || explicit_char
4367 /* A typedef for plain `int' without `signed'
4368 can be controlled just like plain `int'. */
4369 || ! (typedef_decl != 0
4370 && C_TYPEDEF_EXPLICITLY_SIGNED (typedef_decl)))
4371 && TREE_CODE (type) != ENUMERAL_TYPE
4372 && !(specbits & 1 << (int) RID_SIGNED)))
4373 {
4374 if (longlong)
4375 type = long_long_unsigned_type_node;
4376 else if (specbits & 1 << (int) RID_LONG)
4377 type = long_unsigned_type_node;
4378 else if (specbits & 1 << (int) RID_SHORT)
4379 type = short_unsigned_type_node;
4380 else if (type == char_type_node)
4381 type = unsigned_char_type_node;
4382 else if (typedef_decl)
4383 type = unsigned_type (type);
4384 else
4385 type = unsigned_type_node;
4386 }
4387 else if ((specbits & 1 << (int) RID_SIGNED)
4388 && type == char_type_node)
4389 type = signed_char_type_node;
4390 else if (longlong)
4391 type = long_long_integer_type_node;
4392 else if (specbits & 1 << (int) RID_LONG)
4393 type = long_integer_type_node;
4394 else if (specbits & 1 << (int) RID_SHORT)
4395 type = short_integer_type_node;
4396
4397 if (specbits & 1 << (int) RID_COMPLEX)
4398 {
4399 if (pedantic && !flag_isoc99)
4400 pedwarn ("ISO C89 does not support complex types");
4401 /* If we just have "complex", it is equivalent to
4402 "complex double", but if any modifiers at all are specified it is
4403 the complex form of TYPE. E.g, "complex short" is
4404 "complex short int". */
4405
4406 if (defaulted_int && ! longlong
4407 && ! (specbits & ((1 << (int) RID_LONG) | (1 << (int) RID_SHORT)
4408 | (1 << (int) RID_SIGNED)
4409 | (1 << (int) RID_UNSIGNED))))
4410 {
4411 if (pedantic)
4412 pedwarn ("ISO C does not support plain `complex' meaning `double complex'");
4413 type = complex_double_type_node;
4414 }
4415 else if (type == integer_type_node)
4416 {
4417 if (pedantic)
4418 pedwarn ("ISO C does not support complex integer types");
4419 type = complex_integer_type_node;
4420 }
4421 else if (type == float_type_node)
4422 type = complex_float_type_node;
4423 else if (type == double_type_node)
4424 type = complex_double_type_node;
4425 else if (type == long_double_type_node)
4426 type = complex_long_double_type_node;
4427 else
4428 {
4429 if (pedantic)
4430 pedwarn ("ISO C does not support complex integer types");
4431 type = build_complex_type (type);
4432 }
4433 }
4434
4435 /* Figure out the type qualifiers for the declaration. There are
4436 two ways a declaration can become qualified. One is something
4437 like `const int i' where the `const' is explicit. Another is
4438 something like `typedef const int CI; CI i' where the type of the
4439 declaration contains the `const'. */
4440 constp = !! (specbits & 1 << (int) RID_CONST) + TYPE_READONLY (type);
4441 restrictp = !! (specbits & 1 << (int) RID_RESTRICT) + TYPE_RESTRICT (type);
4442 volatilep = !! (specbits & 1 << (int) RID_VOLATILE) + TYPE_VOLATILE (type);
4443 inlinep = !! (specbits & (1 << (int) RID_INLINE));
4444 if (constp > 1 && ! flag_isoc99)
4445 pedwarn ("duplicate `const'");
4446 if (restrictp > 1 && ! flag_isoc99)
4447 pedwarn ("duplicate `restrict'");
4448 if (volatilep > 1 && ! flag_isoc99)
4449 pedwarn ("duplicate `volatile'");
4450 if (! flag_gen_aux_info && (TYPE_QUALS (type)))
4451 type = TYPE_MAIN_VARIANT (type);
4452 type_quals = ((constp ? TYPE_QUAL_CONST : 0)
4453 | (restrictp ? TYPE_QUAL_RESTRICT : 0)
4454 | (volatilep ? TYPE_QUAL_VOLATILE : 0));
4455
4456 /* Warn if two storage classes are given. Default to `auto'. */
4457
4458 {
4459 int nclasses = 0;
4460
4461 if (specbits & 1 << (int) RID_AUTO) nclasses++;
4462 if (specbits & 1 << (int) RID_STATIC) nclasses++;
4463 if (specbits & 1 << (int) RID_EXTERN) nclasses++;
4464 if (specbits & 1 << (int) RID_REGISTER) nclasses++;
4465 if (specbits & 1 << (int) RID_TYPEDEF) nclasses++;
4466
4467 /* Warn about storage classes that are invalid for certain
4468 kinds of declarations (parameters, typenames, etc.). */
4469
4470 if (nclasses > 1)
4471 error ("multiple storage classes in declaration of `%s'", name);
4472 else if (funcdef_flag
4473 && (specbits
4474 & ((1 << (int) RID_REGISTER)
4475 | (1 << (int) RID_AUTO)
4476 | (1 << (int) RID_TYPEDEF))))
4477 {
4478 if (specbits & 1 << (int) RID_AUTO
4479 && (pedantic || current_binding_level == global_binding_level))
4480 pedwarn ("function definition declared `auto'");
4481 if (specbits & 1 << (int) RID_REGISTER)
4482 error ("function definition declared `register'");
4483 if (specbits & 1 << (int) RID_TYPEDEF)
4484 error ("function definition declared `typedef'");
4485 specbits &= ~((1 << (int) RID_TYPEDEF) | (1 << (int) RID_REGISTER)
4486 | (1 << (int) RID_AUTO));
4487 }
4488 else if (decl_context != NORMAL && nclasses > 0)
4489 {
4490 if (decl_context == PARM && specbits & 1 << (int) RID_REGISTER)
4491 ;
4492 else
4493 {
4494 switch (decl_context)
4495 {
4496 case FIELD:
4497 error ("storage class specified for structure field `%s'",
4498 name);
4499 break;
4500 case PARM:
4501 error ("storage class specified for parameter `%s'", name);
4502 break;
4503 default:
4504 error ("storage class specified for typename");
4505 break;
4506 }
4507 specbits &= ~((1 << (int) RID_TYPEDEF) | (1 << (int) RID_REGISTER)
4508 | (1 << (int) RID_AUTO) | (1 << (int) RID_STATIC)
4509 | (1 << (int) RID_EXTERN));
4510 }
4511 }
4512 else if (specbits & 1 << (int) RID_EXTERN && initialized && ! funcdef_flag)
4513 {
4514 /* `extern' with initialization is invalid if not at top level. */
4515 if (current_binding_level == global_binding_level)
4516 warning ("`%s' initialized and declared `extern'", name);
4517 else
4518 error ("`%s' has both `extern' and initializer", name);
4519 }
4520 else if (specbits & 1 << (int) RID_EXTERN && funcdef_flag
4521 && current_binding_level != global_binding_level)
4522 error ("nested function `%s' declared `extern'", name);
4523 else if (current_binding_level == global_binding_level
4524 && specbits & (1 << (int) RID_AUTO))
4525 error ("top-level declaration of `%s' specifies `auto'", name);
4526 }
4527
4528 /* Now figure out the structure of the declarator proper.
4529 Descend through it, creating more complex types, until we reach
4530 the declared identifier (or NULL_TREE, in an absolute declarator). */
4531
4532 while (declarator && TREE_CODE (declarator) != IDENTIFIER_NODE)
4533 {
4534 if (type == error_mark_node)
4535 {
4536 declarator = TREE_OPERAND (declarator, 0);
4537 continue;
4538 }
4539
4540 /* Each level of DECLARATOR is either an ARRAY_REF (for ...[..]),
4541 an INDIRECT_REF (for *...),
4542 a CALL_EXPR (for ...(...)),
4543 a TREE_LIST (for nested attributes),
4544 an identifier (for the name being declared)
4545 or a null pointer (for the place in an absolute declarator
4546 where the name was omitted).
4547 For the last two cases, we have just exited the loop.
4548
4549 At this point, TYPE is the type of elements of an array,
4550 or for a function to return, or for a pointer to point to.
4551 After this sequence of ifs, TYPE is the type of the
4552 array or function or pointer, and DECLARATOR has had its
4553 outermost layer removed. */
4554
4555 if (array_ptr_quals != NULL_TREE || array_parm_static)
4556 {
4557 /* Only the innermost declarator (making a parameter be of
4558 array type which is converted to pointer type)
4559 may have static or type qualifiers. */
4560 error ("static or type qualifiers in non-parameter array declarator");
4561 array_ptr_quals = NULL_TREE;
4562 array_parm_static = 0;
4563 }
4564
4565 if (TREE_CODE (declarator) == TREE_LIST)
4566 {
4567 /* We encode a declarator with embedded attributes using
4568 a TREE_LIST. */
4569 tree attrs = TREE_PURPOSE (declarator);
4570 tree inner_decl;
4571 int attr_flags = 0;
4572 declarator = TREE_VALUE (declarator);
4573 inner_decl = declarator;
4574 while (inner_decl != NULL_TREE
4575 && TREE_CODE (inner_decl) == TREE_LIST)
4576 inner_decl = TREE_VALUE (inner_decl);
4577 if (inner_decl == NULL_TREE
4578 || TREE_CODE (inner_decl) == IDENTIFIER_NODE)
4579 attr_flags |= (int) ATTR_FLAG_DECL_NEXT;
4580 else if (TREE_CODE (inner_decl) == CALL_EXPR)
4581 attr_flags |= (int) ATTR_FLAG_FUNCTION_NEXT;
4582 else if (TREE_CODE (inner_decl) == ARRAY_REF)
4583 attr_flags |= (int) ATTR_FLAG_ARRAY_NEXT;
4584 returned_attrs = decl_attributes (&type,
4585 chainon (returned_attrs, attrs),
4586 attr_flags);
4587 }
4588 else if (TREE_CODE (declarator) == ARRAY_REF)
4589 {
4590 tree itype = NULL_TREE;
4591 tree size = TREE_OPERAND (declarator, 1);
4592 /* The index is a signed object `sizetype' bits wide. */
4593 tree index_type = signed_type (sizetype);
4594
4595 array_ptr_quals = TREE_TYPE (declarator);
4596 array_parm_static = TREE_STATIC (declarator);
4597
4598 declarator = TREE_OPERAND (declarator, 0);
4599
4600 /* Check for some types that there cannot be arrays of. */
4601
4602 if (VOID_TYPE_P (type))
4603 {
4604 error ("declaration of `%s' as array of voids", name);
4605 type = error_mark_node;
4606 }
4607
4608 if (TREE_CODE (type) == FUNCTION_TYPE)
4609 {
4610 error ("declaration of `%s' as array of functions", name);
4611 type = error_mark_node;
4612 }
4613
4614 if (size == error_mark_node)
4615 type = error_mark_node;
4616
4617 if (type == error_mark_node)
4618 continue;
4619
4620 /* If size was specified, set ITYPE to a range-type for that size.
4621 Otherwise, ITYPE remains null. finish_decl may figure it out
4622 from an initial value. */
4623
4624 if (size)
4625 {
4626 /* Strip NON_LVALUE_EXPRs since we aren't using as an lvalue. */
4627 STRIP_TYPE_NOPS (size);
4628
4629 if (! INTEGRAL_TYPE_P (TREE_TYPE (size)))
4630 {
4631 error ("size of array `%s' has non-integer type", name);
4632 size = integer_one_node;
4633 }
4634
4635 if (pedantic && integer_zerop (size))
4636 pedwarn ("ISO C forbids zero-size array `%s'", name);
4637
4638 if (TREE_CODE (size) == INTEGER_CST)
4639 {
4640 constant_expression_warning (size);
4641 if (tree_int_cst_sgn (size) < 0)
4642 {
4643 error ("size of array `%s' is negative", name);
4644 size = integer_one_node;
4645 }
4646 }
4647 else
4648 {
4649 /* Make sure the array size remains visibly nonconstant
4650 even if it is (eg) a const variable with known value. */
4651 size_varies = 1;
4652
4653 if (pedantic)
4654 {
4655 if (TREE_CONSTANT (size))
4656 pedwarn ("ISO C89 forbids array `%s' whose size can't be evaluated",
4657 name);
4658 else
4659 pedwarn ("ISO C89 forbids variable-size array `%s'",
4660 name);
4661 }
4662 }
4663
4664 if (integer_zerop (size))
4665 {
4666 /* A zero-length array cannot be represented with an
4667 unsigned index type, which is what we'll get with
4668 build_index_type. Create an open-ended range instead. */
4669 itype = build_range_type (sizetype, size, NULL_TREE);
4670 }
4671 else
4672 {
4673 /* Compute the maximum valid index, that is, size - 1.
4674 Do the calculation in index_type, so that if it is
4675 a variable the computations will be done in the
4676 proper mode. */
4677 itype = fold (build (MINUS_EXPR, index_type,
4678 convert (index_type, size),
4679 convert (index_type, size_one_node)));
4680
4681 /* If that overflowed, the array is too big.
4682 ??? While a size of INT_MAX+1 technically shouldn't
4683 cause an overflow (because we subtract 1), the overflow
4684 is recorded during the conversion to index_type, before
4685 the subtraction. Handling this case seems like an
4686 unnecessary complication. */
4687 if (TREE_OVERFLOW (itype))
4688 {
4689 error ("size of array `%s' is too large", name);
4690 type = error_mark_node;
4691 continue;
4692 }
4693
4694 if (size_varies)
4695 itype = variable_size (itype);
4696 itype = build_index_type (itype);
4697 }
4698 }
4699 else if (decl_context == FIELD)
4700 {
4701 if (pedantic && !flag_isoc99 && !in_system_header)
4702 pedwarn ("ISO C89 does not support flexible array members");
4703
4704 /* ISO C99 Flexible array members are effectively identical
4705 to GCC's zero-length array extension. */
4706 itype = build_range_type (sizetype, size_zero_node, NULL_TREE);
4707 }
4708
4709 /* If pedantic, complain about arrays of incomplete types. */
4710
4711 if (pedantic && !COMPLETE_TYPE_P (type))
4712 pedwarn ("array type has incomplete element type");
4713
4714#if 0
4715 /* We shouldn't have a function type here at all!
4716 Functions aren't allowed as array elements. */
4717 if (pedantic && TREE_CODE (type) == FUNCTION_TYPE
4718 && (constp || volatilep))
4719 pedwarn ("ISO C forbids const or volatile function types");
4720#endif
4721
4722 /* Build the array type itself, then merge any constancy or
4723 volatility into the target type. We must do it in this order
4724 to ensure that the TYPE_MAIN_VARIANT field of the array type
4725 is set correctly. */
4726
4727 type = build_array_type (type, itype);
4728 if (type_quals)
4729 type = c_build_qualified_type (type, type_quals);
4730
4731 if (size_varies)
4732 C_TYPE_VARIABLE_SIZE (type) = 1;
4733
4734 /* The GCC extension for zero-length arrays differs from
4735 ISO flexible array members in that sizeof yields zero. */
4736 if (size && integer_zerop (size))
4737 {
4738 layout_type (type);
4739 TYPE_SIZE (type) = bitsize_zero_node;
4740 TYPE_SIZE_UNIT (type) = size_zero_node;
4741 }
4742 if (decl_context != PARM
4743 && (array_ptr_quals != NULL_TREE || array_parm_static))
4744 {
4745 error ("static or type qualifiers in non-parameter array declarator");
4746 array_ptr_quals = NULL_TREE;
4747 array_parm_static = 0;
4748 }
4749 }
4750 else if (TREE_CODE (declarator) == CALL_EXPR)
4751 {
4752 tree arg_types;
4753
4754 /* Declaring a function type.
4755 Make sure we have a valid type for the function to return. */
4756 if (type == error_mark_node)
4757 continue;
4758
4759 size_varies = 0;
4760
4761 /* Warn about some types functions can't return. */
4762
4763 if (TREE_CODE (type) == FUNCTION_TYPE)
4764 {
4765 error ("`%s' declared as function returning a function", name);
4766 type = integer_type_node;
4767 }
4768 if (TREE_CODE (type) == ARRAY_TYPE)
4769 {
4770 error ("`%s' declared as function returning an array", name);
4771 type = integer_type_node;
4772 }
4773
4774#ifndef TRADITIONAL_RETURN_FLOAT
4775 /* Traditionally, declaring return type float means double. */
4776
4777 if (flag_traditional && TYPE_MAIN_VARIANT (type) == float_type_node)
4778 type = double_type_node;
4779#endif /* TRADITIONAL_RETURN_FLOAT */
4780
4781 /* Construct the function type and go to the next
4782 inner layer of declarator. */
4783
4784 arg_types = grokparms (TREE_OPERAND (declarator, 1),
4785 funcdef_flag
4786 /* Say it's a definition
4787 only for the CALL_EXPR
4788 closest to the identifier. */
4789 && TREE_CODE (TREE_OPERAND (declarator, 0)) == IDENTIFIER_NODE);
4790 /* Type qualifiers before the return type of the function
4791 qualify the return type, not the function type. */
4792 if (type_quals)
4793 {
4794 /* Type qualifiers on a function return type are normally
4795 permitted by the standard but have no effect, so give a
4796 warning at -W. Qualifiers on a void return type have
4797 meaning as a GNU extension, and are banned on function
4798 definitions in ISO C. FIXME: strictly we shouldn't
4799 pedwarn for qualified void return types except on function
4800 definitions, but not doing so could lead to the undesirable
4801 state of a "volatile void" function return type not being
4802 warned about, and a use of the function being compiled
4803 with GNU semantics, with no diagnostics under -pedantic. */
4804 if (VOID_TYPE_P (type) && pedantic && !in_system_header)
4805 pedwarn ("ISO C forbids qualified void function return type");
4806 else if (extra_warnings
4807 && !(VOID_TYPE_P (type)
4808 && type_quals == TYPE_QUAL_VOLATILE))
4809 warning ("type qualifiers ignored on function return type");
4810
4811 type = c_build_qualified_type (type, type_quals);
4812 }
4813 type_quals = TYPE_UNQUALIFIED;
4814
4815 type = build_function_type (type, arg_types);
4816 declarator = TREE_OPERAND (declarator, 0);
4817
4818 /* Set the TYPE_CONTEXTs for each tagged type which is local to
4819 the formal parameter list of this FUNCTION_TYPE to point to
4820 the FUNCTION_TYPE node itself. */
4821
4822 {
4823 tree link;
4824
4825 for (link = last_function_parm_tags;
4826 link;
4827 link = TREE_CHAIN (link))
4828 TYPE_CONTEXT (TREE_VALUE (link)) = type;
4829 }
4830 }
4831 else if (TREE_CODE (declarator) == INDIRECT_REF)
4832 {
4833 /* Merge any constancy or volatility into the target type
4834 for the pointer. */
4835
4836 if (pedantic && TREE_CODE (type) == FUNCTION_TYPE
4837 && type_quals)
4838 pedwarn ("ISO C forbids qualified function types");
4839 if (type_quals)
4840 type = c_build_qualified_type (type, type_quals);
4841 type_quals = TYPE_UNQUALIFIED;
4842 size_varies = 0;
4843
4844 type = build_pointer_type (type);
4845
4846 /* Process a list of type modifier keywords
4847 (such as const or volatile) that were given inside the `*'. */
4848
4849 if (TREE_TYPE (declarator))
4850 {
4851 tree typemodlist;
4852 int erred = 0;
4853
4854 constp = 0;
4855 volatilep = 0;
4856 restrictp = 0;
4857 for (typemodlist = TREE_TYPE (declarator); typemodlist;
4858 typemodlist = TREE_CHAIN (typemodlist))
4859 {
4860 tree qualifier = TREE_VALUE (typemodlist);
4861
4862 if (C_IS_RESERVED_WORD (qualifier))
4863 {
4864 if (C_RID_CODE (qualifier) == RID_CONST)
4865 constp++;
4866 else if (C_RID_CODE (qualifier) == RID_VOLATILE)
4867 volatilep++;
4868 else if (C_RID_CODE (qualifier) == RID_RESTRICT)
4869 restrictp++;
4870 else
4871 erred++;
4872 }
4873 else
4874 erred++;
4875 }
4876
4877 if (erred)
4878 error ("invalid type modifier within pointer declarator");
4879 if (constp > 1 && ! flag_isoc99)
4880 pedwarn ("duplicate `const'");
4881 if (volatilep > 1 && ! flag_isoc99)
4882 pedwarn ("duplicate `volatile'");
4883 if (restrictp > 1 && ! flag_isoc99)
4884 pedwarn ("duplicate `restrict'");
4885
4886 type_quals = ((constp ? TYPE_QUAL_CONST : 0)
4887 | (restrictp ? TYPE_QUAL_RESTRICT : 0)
4888 | (volatilep ? TYPE_QUAL_VOLATILE : 0));
4889 }
4890
4891 declarator = TREE_OPERAND (declarator, 0);
4892 }
4893 else
4894 abort ();
4895
4896 }
4897
4898 /* Now TYPE has the actual type. */
4899
4900 /* Did array size calculations overflow? */
4901
4902 if (TREE_CODE (type) == ARRAY_TYPE
4903 && COMPLETE_TYPE_P (type)
4904 && TREE_OVERFLOW (TYPE_SIZE (type)))
4905 {
4906 error ("size of array `%s' is too large", name);
4907 /* If we proceed with the array type as it is, we'll eventually
4908 crash in tree_low_cst(). */
4909 type = error_mark_node;
4910 }
4911
4912 /* If this is declaring a typedef name, return a TYPE_DECL. */
4913
4914 if (specbits & (1 << (int) RID_TYPEDEF))
4915 {
4916 tree decl;
4917 /* Note that the grammar rejects storage classes
4918 in typenames, fields or parameters */
4919 if (pedantic && TREE_CODE (type) == FUNCTION_TYPE
4920 && type_quals)
4921 pedwarn ("ISO C forbids qualified function types");
4922 if (type_quals)
4923 type = c_build_qualified_type (type, type_quals);
4924 decl = build_decl (TYPE_DECL, declarator, type);
4925 if ((specbits & (1 << (int) RID_SIGNED))
4926 || (typedef_decl && C_TYPEDEF_EXPLICITLY_SIGNED (typedef_decl)))
4927 C_TYPEDEF_EXPLICITLY_SIGNED (decl) = 1;
4928 decl_attributes (&decl, returned_attrs, 0);
4929 return decl;
4930 }
4931
4932 /* Detect the case of an array type of unspecified size
4933 which came, as such, direct from a typedef name.
4934 We must copy the type, so that each identifier gets
4935 a distinct type, so that each identifier's size can be
4936 controlled separately by its own initializer. */
4937
4938 if (type != 0 && typedef_type != 0
4939 && TREE_CODE (type) == ARRAY_TYPE && TYPE_DOMAIN (type) == 0
4940 && TYPE_MAIN_VARIANT (type) == TYPE_MAIN_VARIANT (typedef_type))
4941 {
4942 type = build_array_type (TREE_TYPE (type), 0);
4943 if (size_varies)
4944 C_TYPE_VARIABLE_SIZE (type) = 1;
4945 }
4946
4947 /* If this is a type name (such as, in a cast or sizeof),
4948 compute the type and return it now. */
4949
4950 if (decl_context == TYPENAME)
4951 {
4952 /* Note that the grammar rejects storage classes
4953 in typenames, fields or parameters */
4954 if (pedantic && TREE_CODE (type) == FUNCTION_TYPE
4955 && type_quals)
4956 pedwarn ("ISO C forbids const or volatile function types");
4957 if (type_quals)
4958 type = c_build_qualified_type (type, type_quals);
4959 decl_attributes (&type, returned_attrs, 0);
4960 return type;
4961 }
4962
4963 /* Aside from typedefs and type names (handle above),
4964 `void' at top level (not within pointer)
4965 is allowed only in public variables.
4966 We don't complain about parms either, but that is because
4967 a better error message can be made later. */
4968
4969 if (VOID_TYPE_P (type) && decl_context != PARM
4970 && ! ((decl_context != FIELD && TREE_CODE (type) != FUNCTION_TYPE)
4971 && ((specbits & (1 << (int) RID_EXTERN))
4972 || (current_binding_level == global_binding_level
4973 && !(specbits
4974 & ((1 << (int) RID_STATIC) | (1 << (int) RID_REGISTER)))))))
4975 {
4976 error ("variable or field `%s' declared void", name);
4977 type = integer_type_node;
4978 }
4979
4980 /* Now create the decl, which may be a VAR_DECL, a PARM_DECL
4981 or a FUNCTION_DECL, depending on DECL_CONTEXT and TYPE. */
4982
4983 {
4984 tree decl;
4985
4986 if (decl_context == PARM)
4987 {
4988 tree type_as_written;
4989 tree promoted_type;
4990
4991 /* A parameter declared as an array of T is really a pointer to T.
4992 One declared as a function is really a pointer to a function. */
4993
4994 if (TREE_CODE (type) == ARRAY_TYPE)
4995 {
4996 /* Transfer const-ness of array into that of type pointed to. */
4997 type = TREE_TYPE (type);
4998 if (type_quals)
4999 type = c_build_qualified_type (type, type_quals);
5000 type = build_pointer_type (type);
5001 type_quals = TYPE_UNQUALIFIED;
5002 if (array_ptr_quals)
5003 {
5004 tree new_ptr_quals, new_ptr_attrs;
5005 int erred = 0;
5006 split_specs_attrs (array_ptr_quals, &new_ptr_quals, &new_ptr_attrs);
5007 /* We don't yet implement attributes in this context. */
5008 if (new_ptr_attrs != NULL_TREE)
5009 warning ("attributes in parameter array declarator ignored");
5010
5011 constp = 0;
5012 volatilep = 0;
5013 restrictp = 0;
5014 for (; new_ptr_quals; new_ptr_quals = TREE_CHAIN (new_ptr_quals))
5015 {
5016 tree qualifier = TREE_VALUE (new_ptr_quals);
5017
5018 if (C_IS_RESERVED_WORD (qualifier))
5019 {
5020 if (C_RID_CODE (qualifier) == RID_CONST)
5021 constp++;
5022 else if (C_RID_CODE (qualifier) == RID_VOLATILE)
5023 volatilep++;
5024 else if (C_RID_CODE (qualifier) == RID_RESTRICT)
5025 restrictp++;
5026 else
5027 erred++;
5028 }
5029 else
5030 erred++;
5031 }
5032
5033 if (erred)
5034 error ("invalid type modifier within array declarator");
5035
5036 type_quals = ((constp ? TYPE_QUAL_CONST : 0)
5037 | (restrictp ? TYPE_QUAL_RESTRICT : 0)
5038 | (volatilep ? TYPE_QUAL_VOLATILE : 0));
5039 }
5040 size_varies = 0;
5041 }
5042 else if (TREE_CODE (type) == FUNCTION_TYPE)
5043 {
5044 if (pedantic && type_quals)
5045 pedwarn ("ISO C forbids qualified function types");
5046 if (type_quals)
5047 type = c_build_qualified_type (type, type_quals);
5048 type = build_pointer_type (type);
5049 type_quals = TYPE_UNQUALIFIED;
5050 }
5051 else if (type_quals)
5052 type = c_build_qualified_type (type, type_quals);
5053
5054 type_as_written = type;
5055
5056 decl = build_decl (PARM_DECL, declarator, type);
5057 if (size_varies)
5058 C_DECL_VARIABLE_SIZE (decl) = 1;
5059
5060 /* Compute the type actually passed in the parmlist,
5061 for the case where there is no prototype.
5062 (For example, shorts and chars are passed as ints.)
5063 When there is a prototype, this is overridden later. */
5064
5065 if (type == error_mark_node)
5066 promoted_type = type;
5067 else
5068 {
5069 promoted_type = simple_type_promotes_to (type);
5070 if (! promoted_type)
5071 promoted_type = type;
5072 }
5073
5074 DECL_ARG_TYPE (decl) = promoted_type;
5075 DECL_ARG_TYPE_AS_WRITTEN (decl) = type_as_written;
5076 }
5077 else if (decl_context == FIELD)
5078 {
5079 /* Structure field. It may not be a function. */
5080
5081 if (TREE_CODE (type) == FUNCTION_TYPE)
5082 {
5083 error ("field `%s' declared as a function", name);
5084 type = build_pointer_type (type);
5085 }
5086 else if (TREE_CODE (type) != ERROR_MARK
5087 && !COMPLETE_OR_UNBOUND_ARRAY_TYPE_P (type))
5088 {
5089 error ("field `%s' has incomplete type", name);
5090 type = error_mark_node;
5091 }
5092 /* Move type qualifiers down to element of an array. */
5093 if (TREE_CODE (type) == ARRAY_TYPE && type_quals)
5094 {
5095 type = build_array_type (c_build_qualified_type (TREE_TYPE (type),
5096 type_quals),
5097 TYPE_DOMAIN (type));
5098#if 0
5099 /* Leave the field const or volatile as well. */
5100 type_quals = TYPE_UNQUALIFIED;
5101#endif
5102 }
5103 decl = build_decl (FIELD_DECL, declarator, type);
5104 DECL_NONADDRESSABLE_P (decl) = bitfield;
5105
5106 if (size_varies)
5107 C_DECL_VARIABLE_SIZE (decl) = 1;
5108 }
5109 else if (TREE_CODE (type) == FUNCTION_TYPE)
5110 {
5111 /* Every function declaration is "external"
5112 except for those which are inside a function body
5113 in which `auto' is used.
5114 That is a case not specified by ANSI C,
5115 and we use it for forward declarations for nested functions. */
5116 int extern_ref = (!(specbits & (1 << (int) RID_AUTO))
5117 || current_binding_level == global_binding_level);
5118
5119 if (specbits & (1 << (int) RID_AUTO)
5120 && (pedantic || current_binding_level == global_binding_level))
5121 pedwarn ("invalid storage class for function `%s'", name);
5122 if (specbits & (1 << (int) RID_REGISTER))
5123 error ("invalid storage class for function `%s'", name);
5124 /* Function declaration not at top level.
5125 Storage classes other than `extern' are not allowed
5126 and `extern' makes no difference. */
5127 if (current_binding_level != global_binding_level
5128 && (specbits & ((1 << (int) RID_STATIC) | (1 << (int) RID_INLINE)))
5129 && pedantic)
5130 pedwarn ("invalid storage class for function `%s'", name);
5131
5132 decl = build_decl (FUNCTION_DECL, declarator, type);
5133 decl = build_decl_attribute_variant (decl, decl_attr);
5134
5135 DECL_LANG_SPECIFIC (decl) = (struct lang_decl *)
5136 ggc_alloc_cleared (sizeof (struct lang_decl));
5137
5138 if (pedantic && type_quals && ! DECL_IN_SYSTEM_HEADER (decl))
5139 pedwarn ("ISO C forbids qualified function types");
5140
5141 /* GNU C interprets a `volatile void' return type to indicate
5142 that the function does not return. */
5143 if ((type_quals & TYPE_QUAL_VOLATILE)
5144 && !VOID_TYPE_P (TREE_TYPE (TREE_TYPE (decl))))
5145 warning ("`noreturn' function returns non-void value");
5146
5147 if (extern_ref)
5148 DECL_EXTERNAL (decl) = 1;
5149 /* Record absence of global scope for `static' or `auto'. */
5150 TREE_PUBLIC (decl)
5151 = !(specbits & ((1 << (int) RID_STATIC) | (1 << (int) RID_AUTO)));
5152
5153 if (defaulted_int)
5154 C_FUNCTION_IMPLICIT_INT (decl) = 1;
5155
5156 /* Record presence of `inline', if it is reasonable. */
5157 if (MAIN_NAME_P (declarator))
5158 {
5159 if (inlinep)
5160 warning ("cannot inline function `main'");
5161 }
5162 else if (inlinep)
5163 {
5164 /* Assume that otherwise the function can be inlined. */
5165 DECL_DECLARED_INLINE_P (decl) = 1;
5166
5167 /* Do not mark bare declarations as DECL_INLINE. Doing so
5168 in the presence of multiple declarations can result in
5169 the abstract origin pointing between the declarations,
5170 which will confuse dwarf2out. */
5171 if (initialized)
5172 {
5173 DECL_INLINE (decl) = 1;
5174 if (specbits & (1 << (int) RID_EXTERN))
5175 current_extern_inline = 1;
5176 }
5177 }
5178 /* If -finline-functions, assume it can be inlined. This does
5179 two things: let the function be deferred until it is actually
5180 needed, and let dwarf2 know that the function is inlinable. */
5181 else if (flag_inline_trees == 2 && initialized)
5182 {
5183 DECL_INLINE (decl) = 1;
5184 DECL_DECLARED_INLINE_P (decl) = 0;
5185 }
5186 }
5187 else
5188 {
5189 /* It's a variable. */
5190 /* An uninitialized decl with `extern' is a reference. */
5191 int extern_ref = !initialized && (specbits & (1 << (int) RID_EXTERN));
5192
5193 /* Move type qualifiers down to element of an array. */
5194 if (TREE_CODE (type) == ARRAY_TYPE && type_quals)
5195 {
5196 int saved_align = TYPE_ALIGN(type);
5197 type = build_array_type (c_build_qualified_type (TREE_TYPE (type),
5198 type_quals),
5199 TYPE_DOMAIN (type));
5200 TYPE_ALIGN (type) = saved_align;
5201#if 0 /* Leave the variable const or volatile as well. */
5202 type_quals = TYPE_UNQUALIFIED;
5203#endif
5204 }
5205 else if (type_quals)
5206 type = c_build_qualified_type (type, type_quals);
5207
5208 decl = build_decl (VAR_DECL, declarator, type);
5209 if (size_varies)
5210 C_DECL_VARIABLE_SIZE (decl) = 1;
5211
5212 if (inlinep)
5213 pedwarn_with_decl (decl, "variable `%s' declared `inline'");
5214
5215 DECL_EXTERNAL (decl) = extern_ref;
5216 /* At top level, the presence of a `static' or `register' storage
5217 class specifier, or the absence of all storage class specifiers
5218 makes this declaration a definition (perhaps tentative). Also,
5219 the absence of both `static' and `register' makes it public. */
5220 if (current_binding_level == global_binding_level)
5221 {
5222 TREE_PUBLIC (decl)
5223 = !(specbits
5224 & ((1 << (int) RID_STATIC) | (1 << (int) RID_REGISTER)));
5225 TREE_STATIC (decl) = ! DECL_EXTERNAL (decl);
5226 }
5227 /* Not at top level, only `static' makes a static definition. */
5228 else
5229 {
5230 TREE_STATIC (decl) = (specbits & (1 << (int) RID_STATIC)) != 0;
5231 TREE_PUBLIC (decl) = DECL_EXTERNAL (decl);
5232 }
5233 }
5234
5235 /* Record `register' declaration for warnings on &
5236 and in case doing stupid register allocation. */
5237
5238 if (specbits & (1 << (int) RID_REGISTER))
5239 DECL_REGISTER (decl) = 1;
5240
5241 /* Record constancy and volatility. */
5242 c_apply_type_quals_to_decl (type_quals, decl);
5243
5244 /* If a type has volatile components, it should be stored in memory.
5245 Otherwise, the fact that those components are volatile
5246 will be ignored, and would even crash the compiler. */
5247 if (C_TYPE_FIELDS_VOLATILE (TREE_TYPE (decl)))
5248 mark_addressable (decl);
5249
5250 decl_attributes (&decl, returned_attrs, 0);
5251
5252 return decl;
5253 }
5254}
5255
5256/* Decode the parameter-list info for a function type or function definition.
5257 The argument is the value returned by `get_parm_info' (or made in parse.y
5258 if there is an identifier list instead of a parameter decl list).
5259 These two functions are separate because when a function returns
5260 or receives functions then each is called multiple times but the order
5261 of calls is different. The last call to `grokparms' is always the one
5262 that contains the formal parameter names of a function definition.
5263
5264 Store in `last_function_parms' a chain of the decls of parms.
5265 Also store in `last_function_parm_tags' a chain of the struct, union,
5266 and enum tags declared among the parms.
5267
5268 Return a list of arg types to use in the FUNCTION_TYPE for this function.
5269
5270 FUNCDEF_FLAG is nonzero for a function definition, 0 for
5271 a mere declaration. A nonempty identifier-list gets an error message
5272 when FUNCDEF_FLAG is zero. */
5273
5274static tree
5275grokparms (parms_info, funcdef_flag)
5276 tree parms_info;
5277 int funcdef_flag;
5278{
5279 tree first_parm = TREE_CHAIN (parms_info);
5280
5281 last_function_parms = TREE_PURPOSE (parms_info);
5282 last_function_parm_tags = TREE_VALUE (parms_info);
5283
5284 if (warn_strict_prototypes && first_parm == 0 && !funcdef_flag
5285 && !in_system_header)
5286 warning ("function declaration isn't a prototype");
5287
5288 if (first_parm != 0
5289 && TREE_CODE (TREE_VALUE (first_parm)) == IDENTIFIER_NODE)
5290 {
5291 if (! funcdef_flag)
5292 pedwarn ("parameter names (without types) in function declaration");
5293
5294 last_function_parms = first_parm;
5295 return 0;
5296 }
5297 else
5298 {
5299 tree parm;
5300 tree typelt;
5301 /* We no longer test FUNCDEF_FLAG.
5302 If the arg types are incomplete in a declaration,
5303 they must include undefined tags.
5304 These tags can never be defined in the scope of the declaration,
5305 so the types can never be completed,
5306 and no call can be compiled successfully. */
5307#if 0
5308 /* In a fcn definition, arg types must be complete. */
5309 if (funcdef_flag)
5310#endif
5311 for (parm = last_function_parms, typelt = first_parm;
5312 parm;
5313 parm = TREE_CHAIN (parm))
5314 /* Skip over any enumeration constants declared here. */
5315 if (TREE_CODE (parm) == PARM_DECL)
5316 {
5317 /* Barf if the parameter itself has an incomplete type. */
5318 tree type = TREE_VALUE (typelt);
5319 if (type == error_mark_node)
5320 continue;
5321 if (!COMPLETE_TYPE_P (type))
5322 {
5323 if (funcdef_flag && DECL_NAME (parm) != 0)
5324 error ("parameter `%s' has incomplete type",
5325 IDENTIFIER_POINTER (DECL_NAME (parm)));
5326 else
5327 warning ("parameter has incomplete type");
5328 if (funcdef_flag)
5329 {
5330 TREE_VALUE (typelt) = error_mark_node;
5331 TREE_TYPE (parm) = error_mark_node;
5332 }
5333 }
5334#if 0
5335 /* This has been replaced by parm_tags_warning, which
5336 uses a more accurate criterion for what to warn
5337 about. */
5338 else
5339 {
5340 /* Now warn if is a pointer to an incomplete type. */
5341 while (TREE_CODE (type) == POINTER_TYPE
5342 || TREE_CODE (type) == REFERENCE_TYPE)
5343 type = TREE_TYPE (type);
5344 type = TYPE_MAIN_VARIANT (type);
5345 if (!COMPLETE_TYPE_P (type))
5346 {
5347 if (DECL_NAME (parm) != 0)
5348 warning ("parameter `%s' points to incomplete type",
5349 IDENTIFIER_POINTER (DECL_NAME (parm)));
5350 else
5351 warning ("parameter points to incomplete type");
5352 }
5353 }
5354#endif
5355 typelt = TREE_CHAIN (typelt);
5356 }
5357
5358 return first_parm;
5359 }
5360}
5361
5362/* Return a tree_list node with info on a parameter list just parsed.
5363 The TREE_PURPOSE is a chain of decls of those parms.
5364 The TREE_VALUE is a list of structure, union and enum tags defined.
5365 The TREE_CHAIN is a list of argument types to go in the FUNCTION_TYPE.
5366 This tree_list node is later fed to `grokparms'.
5367
5368 VOID_AT_END nonzero means append `void' to the end of the type-list.
5369 Zero means the parmlist ended with an ellipsis so don't append `void'. */
5370
5371tree
5372get_parm_info (void_at_end)
5373 int void_at_end;
5374{
5375 tree decl, t;
5376 tree types = 0;
5377 int erred = 0;
5378 tree tags = gettags ();
5379 tree parms = getdecls ();
5380 tree new_parms = 0;
5381 tree order = current_binding_level->parm_order;
5382
5383 /* Just `void' (and no ellipsis) is special. There are really no parms.
5384 But if the `void' is qualified (by `const' or `volatile') or has a
5385 storage class specifier (`register'), then the behavior is undefined;
5386 by not counting it as the special case of `void' we will cause an
5387 error later. Typedefs for `void' are OK (see DR#157). */
5388 if (void_at_end && parms != 0
5389 && TREE_CHAIN (parms) == 0
5390 && VOID_TYPE_P (TREE_TYPE (parms))
5391 && ! TREE_THIS_VOLATILE (parms)
5392 && ! TREE_READONLY (parms)
5393 && ! DECL_REGISTER (parms)
5394 && DECL_NAME (parms) == 0)
5395 {
5396 parms = NULL_TREE;
5397 storedecls (NULL_TREE);
5398 return tree_cons (NULL_TREE, NULL_TREE,
5399 tree_cons (NULL_TREE, void_type_node, NULL_TREE));
5400 }
5401
5402 /* Extract enumerator values and other non-parms declared with the parms.
5403 Likewise any forward parm decls that didn't have real parm decls. */
5404 for (decl = parms; decl;)
5405 {
5406 tree next = TREE_CHAIN (decl);
5407
5408 if (TREE_CODE (decl) != PARM_DECL)
5409 {
5410 TREE_CHAIN (decl) = new_parms;
5411 new_parms = decl;
5412 }
5413 else if (TREE_ASM_WRITTEN (decl))
5414 {
5415 error_with_decl (decl,
5416 "parameter `%s' has just a forward declaration");
5417 TREE_CHAIN (decl) = new_parms;
5418 new_parms = decl;
5419 }
5420 decl = next;
5421 }
5422
5423 /* Put the parm decls back in the order they were in in the parm list. */
5424 for (t = order; t; t = TREE_CHAIN (t))
5425 {
5426 if (TREE_CHAIN (t))
5427 TREE_CHAIN (TREE_VALUE (t)) = TREE_VALUE (TREE_CHAIN (t));
5428 else
5429 TREE_CHAIN (TREE_VALUE (t)) = 0;
5430 }
5431
5432 new_parms = chainon (order ? nreverse (TREE_VALUE (order)) : 0,
5433 new_parms);
5434
5435 /* Store the parmlist in the binding level since the old one
5436 is no longer a valid list. (We have changed the chain pointers.) */
5437 storedecls (new_parms);
5438
5439 for (decl = new_parms; decl; decl = TREE_CHAIN (decl))
5440 /* There may also be declarations for enumerators if an enumeration
5441 type is declared among the parms. Ignore them here. */
5442 if (TREE_CODE (decl) == PARM_DECL)
5443 {
5444 /* Since there is a prototype,
5445 args are passed in their declared types. */
5446 tree type = TREE_TYPE (decl);
5447 DECL_ARG_TYPE (decl) = type;
5448 if (PROMOTE_PROTOTYPES
5449 && INTEGRAL_TYPE_P (type)
5450 && TYPE_PRECISION (type) < TYPE_PRECISION (integer_type_node))
5451 DECL_ARG_TYPE (decl) = integer_type_node;
5452
5453 types = tree_cons (NULL_TREE, TREE_TYPE (decl), types);
5454 if (VOID_TYPE_P (TREE_VALUE (types)) && ! erred
5455 && DECL_NAME (decl) == 0)
5456 {
5457 error ("`void' in parameter list must be the entire list");
5458 erred = 1;
5459 }
5460 }
5461
5462 if (void_at_end)
5463 return tree_cons (new_parms, tags,
5464 nreverse (tree_cons (NULL_TREE, void_type_node, types)));
5465
5466 return tree_cons (new_parms, tags, nreverse (types));
5467}
5468
5469/* At end of parameter list, warn about any struct, union or enum tags
5470 defined within. Do so because these types cannot ever become complete. */
5471
5472void
5473parmlist_tags_warning ()
5474{
5475 tree elt;
5476 static int already;
5477
5478 for (elt = current_binding_level->tags; elt; elt = TREE_CHAIN (elt))
5479 {
5480 enum tree_code code = TREE_CODE (TREE_VALUE (elt));
5481 /* An anonymous union parm type is meaningful as a GNU extension.
5482 So don't warn for that. */
5483 if (code == UNION_TYPE && TREE_PURPOSE (elt) == 0 && !pedantic)
5484 continue;
5485 if (TREE_PURPOSE (elt) != 0)
5486 {
5487 if (code == RECORD_TYPE)
5488 warning ("`struct %s' declared inside parameter list",
5489 IDENTIFIER_POINTER (TREE_PURPOSE (elt)));
5490 else if (code == UNION_TYPE)
5491 warning ("`union %s' declared inside parameter list",
5492 IDENTIFIER_POINTER (TREE_PURPOSE (elt)));
5493 else
5494 warning ("`enum %s' declared inside parameter list",
5495 IDENTIFIER_POINTER (TREE_PURPOSE (elt)));
5496 }
5497 else
5498 {
5499 /* For translation these need to be separate warnings */
5500 if (code == RECORD_TYPE)
5501 warning ("anonymous struct declared inside parameter list");
5502 else if (code == UNION_TYPE)
5503 warning ("anonymous union declared inside parameter list");
5504 else
5505 warning ("anonymous enum declared inside parameter list");
5506 }
5507 if (! already)
5508 {
5509 warning ("its scope is only this definition or declaration, which is probably not what you want");
5510 already = 1;
5511 }
5512 }
5513}
5514
5515/* Get the struct, enum or union (CODE says which) with tag NAME.
5516 Define the tag as a forward-reference if it is not defined. */
5517
5518tree
5519xref_tag (code, name)
5520 enum tree_code code;
5521 tree name;
5522{
5523 /* If a cross reference is requested, look up the type
5524 already defined for this tag and return it. */
5525
5526 tree ref = lookup_tag (code, name, current_binding_level, 0);
5527 /* If this is the right type of tag, return what we found.
5528 (This reference will be shadowed by shadow_tag later if appropriate.)
5529 If this is the wrong type of tag, do not return it. If it was the
5530 wrong type in the same binding level, we will have had an error
5531 message already; if in a different binding level and declaring
5532 a name, pending_xref_error will give an error message; but if in a
5533 different binding level and not declaring a name, this tag should
5534 shadow the previous declaration of a different type of tag, and
5535 this would not work properly if we return the reference found.
5536 (For example, with "struct foo" in an outer scope, "union foo;"
5537 must shadow that tag with a new one of union type.) */
5538 if (ref && TREE_CODE (ref) == code)
5539 return ref;
5540
5541 /* If no such tag is yet defined, create a forward-reference node
5542 and record it as the "definition".
5543 When a real declaration of this type is found,
5544 the forward-reference will be altered into a real type. */
5545
5546 ref = make_node (code);
5547 if (code == ENUMERAL_TYPE)
5548 {
5549 /* Give the type a default layout like unsigned int
5550 to avoid crashing if it does not get defined. */
5551 TYPE_MODE (ref) = TYPE_MODE (unsigned_type_node);
5552 TYPE_ALIGN (ref) = TYPE_ALIGN (unsigned_type_node);
5553 TYPE_USER_ALIGN (ref) = 0;
5554 TREE_UNSIGNED (ref) = 1;
5555 TYPE_PRECISION (ref) = TYPE_PRECISION (unsigned_type_node);
5556 TYPE_MIN_VALUE (ref) = TYPE_MIN_VALUE (unsigned_type_node);
5557 TYPE_MAX_VALUE (ref) = TYPE_MAX_VALUE (unsigned_type_node);
5558 }
5559
5560 pushtag (name, ref);
5561
5562 return ref;
5563}
5564
5565/* Make sure that the tag NAME is defined *in the current binding level*
5566 at least as a forward reference.
5567 CODE says which kind of tag NAME ought to be. */
5568
5569tree
5570start_struct (code, name)
5571 enum tree_code code;
5572 tree name;
5573{
5574 /* If there is already a tag defined at this binding level
5575 (as a forward reference), just return it. */
5576
5577 tree ref = 0;
5578
5579 if (name != 0)
5580 ref = lookup_tag (code, name, current_binding_level, 1);
5581 if (ref && TREE_CODE (ref) == code)
5582 {
5583 C_TYPE_BEING_DEFINED (ref) = 1;
5584 TYPE_PACKED (ref) = flag_pack_struct;
5585 if (TYPE_FIELDS (ref))
5586 {
5587 if (code == UNION_TYPE)
5588 error ("redefinition of `union %s'",
5589 IDENTIFIER_POINTER (name));
5590 else
5591 error ("redefinition of `struct %s'",
5592 IDENTIFIER_POINTER (name));
5593 }
5594
5595 return ref;
5596 }
5597
5598 /* Otherwise create a forward-reference just so the tag is in scope. */
5599
5600 ref = make_node (code);
5601 pushtag (name, ref);
5602 C_TYPE_BEING_DEFINED (ref) = 1;
5603 TYPE_PACKED (ref) = flag_pack_struct;
5604 return ref;
5605}
5606
5607/* Process the specs, declarator (NULL if omitted) and width (NULL if omitted)
5608 of a structure component, returning a FIELD_DECL node.
5609 WIDTH is non-NULL for bit fields only, and is an INTEGER_CST node.
5610
5611 This is done during the parsing of the struct declaration.
5612 The FIELD_DECL nodes are chained together and the lot of them
5613 are ultimately passed to `build_struct' to make the RECORD_TYPE node. */
5614
5615tree
5616grokfield (filename, line, declarator, declspecs, width)
5617 const char *filename ATTRIBUTE_UNUSED;
5618 int line ATTRIBUTE_UNUSED;
5619 tree declarator, declspecs, width;
5620{
5621 tree value;
5622
5623 if (declarator == NULL_TREE && width == NULL_TREE)
5624 {
5625 /* This is an unnamed decl. We only support unnamed
5626 structs/unions, so check for other things and refuse them. */
5627 if (TREE_CODE (TREE_VALUE (declspecs)) != RECORD_TYPE
5628 && TREE_CODE (TREE_VALUE (declspecs)) != UNION_TYPE)
5629 {
5630 error ("unnamed fields of type other than struct or union are not allowed");
5631 return NULL_TREE;
5632 }
5633 }
5634
5635 value = grokdeclarator (declarator, declspecs, width ? BITFIELD : FIELD, 0);
5636
5637 finish_decl (value, NULL_TREE, NULL_TREE);
5638 DECL_INITIAL (value) = width;
5639
5640 maybe_objc_check_decl (value);
5641 return value;
5642}
5643
5644/* Fill in the fields of a RECORD_TYPE or UNION_TYPE node, T.
5645 FIELDLIST is a chain of FIELD_DECL nodes for the fields.
5646 ATTRIBUTES are attributes to be applied to the structure. */
5647
5648tree
5649finish_struct (t, fieldlist, attributes)
5650 tree t;
5651 tree fieldlist;
5652 tree attributes;
5653{
5654 tree x;
5655 int toplevel = global_binding_level == current_binding_level;
5656 int saw_named_field;
5657
5658 /* If this type was previously laid out as a forward reference,
5659 make sure we lay it out again. */
5660
5661 TYPE_SIZE (t) = 0;
5662
5663 decl_attributes (&t, attributes, (int) ATTR_FLAG_TYPE_IN_PLACE);
5664
5665 /* Nameless union parm types are useful as GCC extension. */
5666 if (! (TREE_CODE (t) == UNION_TYPE && TYPE_NAME (t) == 0) && !pedantic)
5667 /* Otherwise, warn about any struct or union def. in parmlist. */
5668 if (in_parm_level_p ())
5669 {
5670 if (pedantic)
5671 pedwarn ("%s defined inside parms",
5672 TREE_CODE (t) == UNION_TYPE ? _("union") : _("structure"));
5673 else if (! flag_traditional)
5674 warning ("%s defined inside parms",
5675 TREE_CODE (t) == UNION_TYPE ? _("union") : _("structure"));
5676 }
5677
5678 if (pedantic)
5679 {
5680 for (x = fieldlist; x; x = TREE_CHAIN (x))
5681 if (DECL_NAME (x) != 0)
5682 break;
5683
5684 if (x == 0)
5685 pedwarn ("%s has no %s",
5686 TREE_CODE (t) == UNION_TYPE ? _("union") : _("struct"),
5687 fieldlist ? _("named members") : _("members"));
5688 }
5689
5690 /* Install struct as DECL_CONTEXT of each field decl.
5691 Also process specified field sizes,m which is found in the DECL_INITIAL.
5692 Store 0 there, except for ": 0" fields (so we can find them
5693 and delete them, below). */
5694
5695 saw_named_field = 0;
5696 for (x = fieldlist; x; x = TREE_CHAIN (x))
5697 {
5698 DECL_CONTEXT (x) = t;
5699 DECL_PACKED (x) |= TYPE_PACKED (t);
5700
5701 /* If any field is const, the structure type is pseudo-const. */
5702 if (TREE_READONLY (x))
5703 C_TYPE_FIELDS_READONLY (t) = 1;
5704 else
5705 {
5706 /* A field that is pseudo-const makes the structure likewise. */
5707 tree t1 = TREE_TYPE (x);
5708 while (TREE_CODE (t1) == ARRAY_TYPE)
5709 t1 = TREE_TYPE (t1);
5710 if ((TREE_CODE (t1) == RECORD_TYPE || TREE_CODE (t1) == UNION_TYPE)
5711 && C_TYPE_FIELDS_READONLY (t1))
5712 C_TYPE_FIELDS_READONLY (t) = 1;
5713 }
5714
5715 /* Any field that is volatile means variables of this type must be
5716 treated in some ways as volatile. */
5717 if (TREE_THIS_VOLATILE (x))
5718 C_TYPE_FIELDS_VOLATILE (t) = 1;
5719
5720 /* Any field of nominal variable size implies structure is too. */
5721 if (C_DECL_VARIABLE_SIZE (x))
5722 C_TYPE_VARIABLE_SIZE (t) = 1;
5723
5724 /* Detect invalid nested redefinition. */
5725 if (TREE_TYPE (x) == t)
5726 error ("nested redefinition of `%s'",
5727 IDENTIFIER_POINTER (TYPE_NAME (t)));
5728
5729 /* Detect invalid bit-field size. */
5730 if (DECL_INITIAL (x))
5731 STRIP_NOPS (DECL_INITIAL (x));
5732 if (DECL_INITIAL (x))
5733 {
5734 if (TREE_CODE (DECL_INITIAL (x)) == INTEGER_CST)
5735 constant_expression_warning (DECL_INITIAL (x));
5736 else
5737 {
5738 error_with_decl (x,
5739 "bit-field `%s' width not an integer constant");
5740 DECL_INITIAL (x) = NULL;
5741 }
5742 }
5743
5744 /* Detect invalid bit-field type. */
5745 if (DECL_INITIAL (x)
5746 && TREE_CODE (TREE_TYPE (x)) != INTEGER_TYPE
5747 && TREE_CODE (TREE_TYPE (x)) != BOOLEAN_TYPE
5748 && TREE_CODE (TREE_TYPE (x)) != ENUMERAL_TYPE)
5749 {
5750 error_with_decl (x, "bit-field `%s' has invalid type");
5751 DECL_INITIAL (x) = NULL;
5752 }
5753
5754 if (DECL_INITIAL (x) && pedantic
5755 && TYPE_MAIN_VARIANT (TREE_TYPE (x)) != integer_type_node
5756 && TYPE_MAIN_VARIANT (TREE_TYPE (x)) != unsigned_type_node
5757 && TYPE_MAIN_VARIANT (TREE_TYPE (x)) != c_bool_type_node
5758 /* Accept an enum that's equivalent to int or unsigned int. */
5759 && !(TREE_CODE (TREE_TYPE (x)) == ENUMERAL_TYPE
5760 && (TYPE_PRECISION (TREE_TYPE (x))
5761 == TYPE_PRECISION (integer_type_node))))
5762 pedwarn_with_decl (x, "bit-field `%s' type invalid in ISO C");
5763
5764 /* Detect and ignore out of range field width and process valid
5765 field widths. */
5766 if (DECL_INITIAL (x))
5767 {
5768 int max_width
5769 = (TYPE_MAIN_VARIANT (TREE_TYPE (x)) == c_bool_type_node
5770 ? CHAR_TYPE_SIZE : TYPE_PRECISION (TREE_TYPE (x)));
5771
5772 if (tree_int_cst_sgn (DECL_INITIAL (x)) < 0)
5773 error_with_decl (x, "negative width in bit-field `%s'");
5774 else if (0 < compare_tree_int (DECL_INITIAL (x), max_width))
5775 pedwarn_with_decl (x, "width of `%s' exceeds its type");
5776 else if (integer_zerop (DECL_INITIAL (x)) && DECL_NAME (x) != 0)
5777 error_with_decl (x, "zero width for bit-field `%s'");
5778 else
5779 {
5780 /* The test above has assured us that TREE_INT_CST_HIGH is 0. */
5781 unsigned HOST_WIDE_INT width
5782 = tree_low_cst (DECL_INITIAL (x), 1);
5783
5784 if (TREE_CODE (TREE_TYPE (x)) == ENUMERAL_TYPE
5785 && (width < min_precision (TYPE_MIN_VALUE (TREE_TYPE (x)),
5786 TREE_UNSIGNED (TREE_TYPE (x)))
5787 || (width
5788 < min_precision (TYPE_MAX_VALUE (TREE_TYPE (x)),
5789 TREE_UNSIGNED (TREE_TYPE (x))))))
5790 warning_with_decl (x,
5791 "`%s' is narrower than values of its type");
5792
5793 DECL_SIZE (x) = bitsize_int (width);
5794 DECL_BIT_FIELD (x) = 1;
5795 SET_DECL_C_BIT_FIELD (x);
5796
5797 if (width == 0
5798 && ! (* targetm.ms_bitfield_layout_p) (t))
5799 {
5800 /* field size 0 => force desired amount of alignment. */
5801#ifdef EMPTY_FIELD_BOUNDARY
5802 DECL_ALIGN (x) = MAX (DECL_ALIGN (x), EMPTY_FIELD_BOUNDARY);
5803#endif
5804#ifdef PCC_BITFIELD_TYPE_MATTERS
5805 if (PCC_BITFIELD_TYPE_MATTERS)
5806 {
5807 DECL_ALIGN (x) = MAX (DECL_ALIGN (x),
5808 TYPE_ALIGN (TREE_TYPE (x)));
5809 DECL_USER_ALIGN (x) |= TYPE_USER_ALIGN (TREE_TYPE (x));
5810 }
5811#endif
5812 }
5813 }
5814 }
5815
5816 else if (TREE_TYPE (x) != error_mark_node)
5817 {
5818 unsigned int min_align = (DECL_PACKED (x) ? BITS_PER_UNIT
5819 : TYPE_ALIGN (TREE_TYPE (x)));
5820
5821 /* Non-bit-fields are aligned for their type, except packed
5822 fields which require only BITS_PER_UNIT alignment. */
5823 DECL_ALIGN (x) = MAX (DECL_ALIGN (x), min_align);
5824 if (! DECL_PACKED (x))
5825 DECL_USER_ALIGN (x) |= TYPE_USER_ALIGN (TREE_TYPE (x));
5826 }
5827
5828 DECL_INITIAL (x) = 0;
5829
5830 /* Detect flexible array member in an invalid context. */
5831 if (TREE_CODE (TREE_TYPE (x)) == ARRAY_TYPE
5832 && TYPE_SIZE (TREE_TYPE (x)) == NULL_TREE
5833 && TYPE_DOMAIN (TREE_TYPE (x)) != NULL_TREE
5834 && TYPE_MAX_VALUE (TYPE_DOMAIN (TREE_TYPE (x))) == NULL_TREE)
5835 {
5836 if (TREE_CODE (t) == UNION_TYPE)
5837 error_with_decl (x, "flexible array member in union");
5838 else if (TREE_CHAIN (x) != NULL_TREE)
5839 error_with_decl (x, "flexible array member not at end of struct");
5840 else if (! saw_named_field)
5841 error_with_decl (x, "flexible array member in otherwise empty struct");
5842 }
5843 if (DECL_NAME (x))
5844 saw_named_field = 1;
5845 }
5846
5847 /* Delete all duplicate fields from the fieldlist */
5848 for (x = fieldlist; x && TREE_CHAIN (x);)
5849 /* Anonymous fields aren't duplicates. */
5850 if (DECL_NAME (TREE_CHAIN (x)) == 0)
5851 x = TREE_CHAIN (x);
5852 else
5853 {
5854 tree y = fieldlist;
5855
5856 while (1)
5857 {
5858 if (DECL_NAME (y) == DECL_NAME (TREE_CHAIN (x)))
5859 break;
5860 if (y == x)
5861 break;
5862 y = TREE_CHAIN (y);
5863 }
5864 if (DECL_NAME (y) == DECL_NAME (TREE_CHAIN (x)))
5865 {
5866 error_with_decl (TREE_CHAIN (x), "duplicate member `%s'");
5867 TREE_CHAIN (x) = TREE_CHAIN (TREE_CHAIN (x));
5868 }
5869 else
5870 x = TREE_CHAIN (x);
5871 }
5872
5873 /* Now we have the nearly final fieldlist. Record it,
5874 then lay out the structure or union (including the fields). */
5875
5876 TYPE_FIELDS (t) = fieldlist;
5877
5878 layout_type (t);
5879
5880 /* Delete all zero-width bit-fields from the fieldlist */
5881 {
5882 tree *fieldlistp = &fieldlist;
5883 while (*fieldlistp)
5884 if (TREE_CODE (*fieldlistp) == FIELD_DECL && DECL_INITIAL (*fieldlistp))
5885 *fieldlistp = TREE_CHAIN (*fieldlistp);
5886 else
5887 fieldlistp = &TREE_CHAIN (*fieldlistp);
5888 }
5889
5890 /* Now we have the truly final field list.
5891 Store it in this type and in the variants. */
5892
5893 TYPE_FIELDS (t) = fieldlist;
5894
5895 for (x = TYPE_MAIN_VARIANT (t); x; x = TYPE_NEXT_VARIANT (x))
5896 {
5897 TYPE_FIELDS (x) = TYPE_FIELDS (t);
5898 TYPE_LANG_SPECIFIC (x) = TYPE_LANG_SPECIFIC (t);
5899 TYPE_ALIGN (x) = TYPE_ALIGN (t);
5900 TYPE_USER_ALIGN (x) = TYPE_USER_ALIGN (t);
5901 }
5902
5903 /* If this was supposed to be a transparent union, but we can't
5904 make it one, warn and turn off the flag. */
5905 if (TREE_CODE (t) == UNION_TYPE
5906 && TYPE_TRANSPARENT_UNION (t)
5907 && TYPE_MODE (t) != DECL_MODE (TYPE_FIELDS (t)))
5908 {
5909 TYPE_TRANSPARENT_UNION (t) = 0;
5910 warning ("union cannot be made transparent");
5911 }
5912
5913 /* If this structure or union completes the type of any previous
5914 variable declaration, lay it out and output its rtl. */
5915
5916 if (current_binding_level->n_incomplete != 0)
5917 {
5918 tree decl;
5919 for (decl = current_binding_level->names; decl; decl = TREE_CHAIN (decl))
5920 {
5921 if (TYPE_MAIN_VARIANT (TREE_TYPE (decl)) == TYPE_MAIN_VARIANT (t)
5922 && TREE_CODE (decl) != TYPE_DECL)
5923 {
5924 layout_decl (decl, 0);
5925 /* This is a no-op in c-lang.c or something real in objc-actions.c. */
5926 maybe_objc_check_decl (decl);
5927 rest_of_decl_compilation (decl, NULL, toplevel, 0);
5928 if (! toplevel)
5929 expand_decl (decl);
5930 if (--current_binding_level->n_incomplete == 0)
5931 break;
5932 }
5933 else if (!COMPLETE_TYPE_P (TREE_TYPE (decl))
5934 && TREE_CODE (TREE_TYPE (decl)) == ARRAY_TYPE)
5935 {
5936 tree element = TREE_TYPE (decl);
5937 while (TREE_CODE (element) == ARRAY_TYPE)
5938 element = TREE_TYPE (element);
5939 if (element == t)
5940 {
5941 layout_array_type (TREE_TYPE (decl));
5942 if (TREE_CODE (decl) != TYPE_DECL)
5943 {
5944 layout_decl (decl, 0);
5945 maybe_objc_check_decl (decl);
5946 rest_of_decl_compilation (decl, NULL, toplevel, 0);
5947 if (! toplevel)
5948 expand_decl (decl);
5949 }
5950 if (--current_binding_level->n_incomplete == 0)
5951 break;
5952 }
5953 }
5954 }
5955 }
5956
5957 /* Finish debugging output for this type. */
5958 rest_of_type_compilation (t, toplevel);
5959
5960 return t;
5961}
5962
5963/* Lay out the type T, and its element type, and so on. */
5964
5965static void
5966layout_array_type (t)
5967 tree t;
5968{
5969 if (TREE_CODE (TREE_TYPE (t)) == ARRAY_TYPE)
5970 layout_array_type (TREE_TYPE (t));
5971 layout_type (t);
5972}
5973
5974/* Begin compiling the definition of an enumeration type.
5975 NAME is its name (or null if anonymous).
5976 Returns the type object, as yet incomplete.
5977 Also records info about it so that build_enumerator
5978 may be used to declare the individual values as they are read. */
5979
5980tree
5981start_enum (name)
5982 tree name;
5983{
5984 tree enumtype = 0;
5985
5986 /* If this is the real definition for a previous forward reference,
5987 fill in the contents in the same object that used to be the
5988 forward reference. */
5989
5990 if (name != 0)
5991 enumtype = lookup_tag (ENUMERAL_TYPE, name, current_binding_level, 1);
5992
5993 if (enumtype == 0 || TREE_CODE (enumtype) != ENUMERAL_TYPE)
5994 {
5995 enumtype = make_node (ENUMERAL_TYPE);
5996 pushtag (name, enumtype);
5997 }
5998
5999 C_TYPE_BEING_DEFINED (enumtype) = 1;
6000
6001 if (TYPE_VALUES (enumtype) != 0)
6002 {
6003 /* This enum is a named one that has been declared already. */
6004 error ("redeclaration of `enum %s'", IDENTIFIER_POINTER (name));
6005
6006 /* Completely replace its old definition.
6007 The old enumerators remain defined, however. */
6008 TYPE_VALUES (enumtype) = 0;
6009 }
6010
6011 enum_next_value = integer_zero_node;
6012 enum_overflow = 0;
6013
6014 if (flag_short_enums)
6015 TYPE_PACKED (enumtype) = 1;
6016
6017 return enumtype;
6018}
6019
6020/* After processing and defining all the values of an enumeration type,
6021 install their decls in the enumeration type and finish it off.
6022 ENUMTYPE is the type object, VALUES a list of decl-value pairs,
6023 and ATTRIBUTES are the specified attributes.
6024 Returns ENUMTYPE. */
6025
6026tree
6027finish_enum (enumtype, values, attributes)
6028 tree enumtype;
6029 tree values;
6030 tree attributes;
6031{
6032 tree pair, tem;
6033 tree minnode = 0, maxnode = 0, enum_value_type;
6034 int precision, unsign;
6035 int toplevel = (global_binding_level == current_binding_level);
6036
6037 if (in_parm_level_p ())
6038 warning ("enum defined inside parms");
6039
6040 decl_attributes (&enumtype, attributes, (int) ATTR_FLAG_TYPE_IN_PLACE);
6041
6042 /* Calculate the maximum value of any enumerator in this type. */
6043
6044 if (values == error_mark_node)
6045 minnode = maxnode = integer_zero_node;
6046 else
6047 {
6048 minnode = maxnode = TREE_VALUE (values);
6049 for (pair = TREE_CHAIN (values); pair; pair = TREE_CHAIN (pair))
6050 {
6051 tree value = TREE_VALUE (pair);
6052 if (tree_int_cst_lt (maxnode, value))
6053 maxnode = value;
6054 if (tree_int_cst_lt (value, minnode))
6055 minnode = value;
6056 }
6057 }
6058
6059 /* Construct the final type of this enumeration. It is the same
6060 as one of the integral types - the narrowest one that fits, except
6061 that normally we only go as narrow as int - and signed iff any of
6062 the values are negative. */
6063 unsign = (tree_int_cst_sgn (minnode) >= 0);
6064 precision = MAX (min_precision (minnode, unsign),
6065 min_precision (maxnode, unsign));
6066 if (TYPE_PACKED (enumtype) || precision > TYPE_PRECISION (integer_type_node))
6067 {
6068 tree narrowest = type_for_size (precision, unsign);
6069 if (narrowest == 0)
6070 {
6071 warning ("enumeration values exceed range of largest integer");
6072 narrowest = long_long_integer_type_node;
6073 }
6074
6075 precision = TYPE_PRECISION (narrowest);
6076 }
6077 else
6078 precision = TYPE_PRECISION (integer_type_node);
6079
6080 if (precision == TYPE_PRECISION (integer_type_node))
6081 enum_value_type = type_for_size (precision, 0);
6082 else
6083 enum_value_type = enumtype;
6084
6085 TYPE_MIN_VALUE (enumtype) = minnode;
6086 TYPE_MAX_VALUE (enumtype) = maxnode;
6087 TYPE_PRECISION (enumtype) = precision;
6088 TREE_UNSIGNED (enumtype) = unsign;
6089 TYPE_SIZE (enumtype) = 0;
6090 layout_type (enumtype);
6091
6092 if (values != error_mark_node)
6093 {
6094 /* Change the type of the enumerators to be the enum type. We
6095 need to do this irrespective of the size of the enum, for
6096 proper type checking. Replace the DECL_INITIALs of the
6097 enumerators, and the value slots of the list, with copies
6098 that have the enum type; they cannot be modified in place
6099 because they may be shared (e.g. integer_zero_node) Finally,
6100 change the purpose slots to point to the names of the decls. */
6101 for (pair = values; pair; pair = TREE_CHAIN (pair))
6102 {
6103 tree enu = TREE_PURPOSE (pair);
6104
6105 TREE_TYPE (enu) = enumtype;
6106 DECL_SIZE (enu) = TYPE_SIZE (enumtype);
6107 DECL_SIZE_UNIT (enu) = TYPE_SIZE_UNIT (enumtype);
6108 DECL_ALIGN (enu) = TYPE_ALIGN (enumtype);
6109 DECL_USER_ALIGN (enu) = TYPE_USER_ALIGN (enumtype);
6110 DECL_MODE (enu) = TYPE_MODE (enumtype);
6111
6112 /* The ISO C Standard mandates enumerators to have type int,
6113 even though the underlying type of an enum type is
6114 unspecified. Here we convert any enumerators that fit in
6115 an int to type int, to avoid promotions to unsigned types
6116 when comparing integers with enumerators that fit in the
6117 int range. When -pedantic is given, build_enumerator()
6118 would have already taken care of those that don't fit. */
6119 if (int_fits_type_p (DECL_INITIAL (enu), enum_value_type))
6120 DECL_INITIAL (enu) = convert (enum_value_type, DECL_INITIAL (enu));
6121 else
6122 DECL_INITIAL (enu) = convert (enumtype, DECL_INITIAL (enu));
6123
6124 TREE_PURPOSE (pair) = DECL_NAME (enu);
6125 TREE_VALUE (pair) = DECL_INITIAL (enu);
6126 }
6127
6128 TYPE_VALUES (enumtype) = values;
6129 }
6130
6131 /* Fix up all variant types of this enum type. */
6132 for (tem = TYPE_MAIN_VARIANT (enumtype); tem; tem = TYPE_NEXT_VARIANT (tem))
6133 {
6134 if (tem == enumtype)
6135 continue;
6136 TYPE_VALUES (tem) = TYPE_VALUES (enumtype);
6137 TYPE_MIN_VALUE (tem) = TYPE_MIN_VALUE (enumtype);
6138 TYPE_MAX_VALUE (tem) = TYPE_MAX_VALUE (enumtype);
6139 TYPE_SIZE (tem) = TYPE_SIZE (enumtype);
6140 TYPE_SIZE_UNIT (tem) = TYPE_SIZE_UNIT (enumtype);
6141 TYPE_MODE (tem) = TYPE_MODE (enumtype);
6142 TYPE_PRECISION (tem) = TYPE_PRECISION (enumtype);
6143 TYPE_ALIGN (tem) = TYPE_ALIGN (enumtype);
6144 TYPE_USER_ALIGN (tem) = TYPE_USER_ALIGN (enumtype);
6145 TREE_UNSIGNED (tem) = TREE_UNSIGNED (enumtype);
6146 }
6147
6148 /* Finish debugging output for this type. */
6149 rest_of_type_compilation (enumtype, toplevel);
6150
6151 return enumtype;
6152}
6153
6154/* Build and install a CONST_DECL for one value of the
6155 current enumeration type (one that was begun with start_enum).
6156 Return a tree-list containing the CONST_DECL and its value.
6157 Assignment of sequential values by default is handled here. */
6158
6159tree
6160build_enumerator (name, value)
6161 tree name, value;
6162{
6163 tree decl, type;
6164
6165 /* Validate and default VALUE. */
6166
6167 /* Remove no-op casts from the value. */
6168 if (value)
6169 STRIP_TYPE_NOPS (value);
6170
6171 if (value != 0)
6172 {
6173 if (TREE_CODE (value) == INTEGER_CST)
6174 {
6175 value = default_conversion (value);
6176 constant_expression_warning (value);
6177 }
6178 else
6179 {
6180 error ("enumerator value for `%s' not integer constant",
6181 IDENTIFIER_POINTER (name));
6182 value = 0;
6183 }
6184 }
6185
6186 /* Default based on previous value. */
6187 /* It should no longer be possible to have NON_LVALUE_EXPR
6188 in the default. */
6189 if (value == 0)
6190 {
6191 value = enum_next_value;
6192 if (enum_overflow)
6193 error ("overflow in enumeration values");
6194 }
6195
6196 if (pedantic && ! int_fits_type_p (value, integer_type_node))
6197 {
6198 pedwarn ("ISO C restricts enumerator values to range of `int'");
6199 value = convert (integer_type_node, value);
6200 }
6201
6202 /* Set basis for default for next value. */
6203 enum_next_value = build_binary_op (PLUS_EXPR, value, integer_one_node, 0);
6204 enum_overflow = tree_int_cst_lt (enum_next_value, value);
6205
6206 /* Now create a declaration for the enum value name. */
6207
6208 type = TREE_TYPE (value);
6209 type = type_for_size (MAX (TYPE_PRECISION (type),
6210 TYPE_PRECISION (integer_type_node)),
6211 ((flag_traditional
6212 || TYPE_PRECISION (type) >= TYPE_PRECISION (integer_type_node))
6213 && TREE_UNSIGNED (type)));
6214
6215 decl = build_decl (CONST_DECL, name, type);
6216 DECL_INITIAL (decl) = convert (type, value);
6217 pushdecl (decl);
6218
6219 return tree_cons (decl, value, NULL_TREE);
6220}
6221
6222
6223/* Create the FUNCTION_DECL for a function definition.
6224 DECLSPECS, DECLARATOR and ATTRIBUTES are the parts of
6225 the declaration; they describe the function's name and the type it returns,
6226 but twisted together in a fashion that parallels the syntax of C.
6227
6228 This function creates a binding context for the function body
6229 as well as setting up the FUNCTION_DECL in current_function_decl.
6230
6231 Returns 1 on success. If the DECLARATOR is not suitable for a function
6232 (it defines a datum instead), we return 0, which tells
6233 yyparse to report a parse error. */
6234
6235int
6236start_function (declspecs, declarator, attributes)
6237 tree declarator, declspecs, attributes;
6238{
6239 tree decl1, old_decl;
6240 tree restype;
6241 int old_immediate_size_expand = immediate_size_expand;
6242
6243 current_function_returns_value = 0; /* Assume, until we see it does. */
6244 current_function_returns_null = 0;
6245 current_function_returns_abnormally = 0;
6246 warn_about_return_type = 0;
6247 current_extern_inline = 0;
6248 c_function_varargs = 0;
6249 named_labels = 0;
6250 shadowed_labels = 0;
6251
6252 /* Don't expand any sizes in the return type of the function. */
6253 immediate_size_expand = 0;
6254
6255 decl1 = grokdeclarator (declarator, declspecs, FUNCDEF, 1);
6256
6257 /* If the declarator is not suitable for a function definition,
6258 cause a syntax error. */
6259 if (decl1 == 0)
6260 {
6261 immediate_size_expand = old_immediate_size_expand;
6262 return 0;
6263 }
6264
6265 decl_attributes (&decl1, attributes, 0);
6266
6267 /* If #pragma weak was used, mark the decl weak now. */
6268 if (current_binding_level == global_binding_level)
6269 maybe_apply_pragma_weak (decl1);
6270
6271 if (DECL_DECLARED_INLINE_P (decl1)
6272 && DECL_UNINLINABLE (decl1)
6273 && lookup_attribute ("noinline", DECL_ATTRIBUTES (decl1)))
6274 warning_with_decl (decl1,
6275 "inline function `%s' given attribute noinline");
6276
6277 announce_function (decl1);
6278
6279 if (!COMPLETE_OR_VOID_TYPE_P (TREE_TYPE (TREE_TYPE (decl1))))
6280 {
6281 error ("return type is an incomplete type");
6282 /* Make it return void instead. */
6283 TREE_TYPE (decl1)
6284 = build_function_type (void_type_node,
6285 TYPE_ARG_TYPES (TREE_TYPE (decl1)));
6286 }
6287
6288 if (warn_about_return_type)
6289 pedwarn_c99 ("return type defaults to `int'");
6290
6291 /* Save the parm names or decls from this function's declarator
6292 where store_parm_decls will find them. */
6293 current_function_parms = last_function_parms;
6294 current_function_parm_tags = last_function_parm_tags;
6295
6296 /* Make the init_value nonzero so pushdecl knows this is not tentative.
6297 error_mark_node is replaced below (in poplevel) with the BLOCK. */
6298 DECL_INITIAL (decl1) = error_mark_node;
6299
6300 /* If this definition isn't a prototype and we had a prototype declaration
6301 before, copy the arg type info from that prototype.
6302 But not if what we had before was a builtin function. */
6303 old_decl = lookup_name_current_level (DECL_NAME (decl1));
6304 if (old_decl != 0 && TREE_CODE (TREE_TYPE (old_decl)) == FUNCTION_TYPE
6305 && !DECL_BUILT_IN (old_decl)
6306 && (TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (decl1)))
6307 == TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (old_decl))))
6308 && TYPE_ARG_TYPES (TREE_TYPE (decl1)) == 0)
6309 {
6310 TREE_TYPE (decl1) = TREE_TYPE (old_decl);
6311 current_function_prototype_file = DECL_SOURCE_FILE (old_decl);
6312 current_function_prototype_line = DECL_SOURCE_LINE (old_decl);
6313 }
6314
6315 /* If there is no explicit declaration, look for any out-of-scope implicit
6316 declarations. */
6317 if (old_decl == 0)
6318 old_decl = IDENTIFIER_IMPLICIT_DECL (DECL_NAME (decl1));
6319
6320 /* Optionally warn of old-fashioned def with no previous prototype. */
6321 if (warn_strict_prototypes
6322 && TYPE_ARG_TYPES (TREE_TYPE (decl1)) == 0
6323 && !(old_decl != 0
6324 && (TYPE_ARG_TYPES (TREE_TYPE (old_decl)) != 0
6325 || (DECL_BUILT_IN (old_decl)
6316 && ! C_DECL_ANTICIPATED (old_decl)))))
6326 && ! C_DECL_ANTICIPATED (old_decl))))
6327 && !(flag_bsd_no_warn_kr_main && 0 ==
6328 strcmp ("main", IDENTIFIER_POINTER (DECL_NAME (decl1)))))
6317 warning ("function declaration isn't a prototype");
6318 /* Optionally warn of any global def with no previous prototype. */
6319 else if (warn_missing_prototypes
6320 && TREE_PUBLIC (decl1)
6321 && !(old_decl != 0
6322 && (TYPE_ARG_TYPES (TREE_TYPE (old_decl)) != 0
6323 || (DECL_BUILT_IN (old_decl)
6324 && ! C_DECL_ANTICIPATED (old_decl))))
6325 && ! MAIN_NAME_P (DECL_NAME (decl1)))
6326 warning_with_decl (decl1, "no previous prototype for `%s'");
6327 /* Optionally warn of any def with no previous prototype
6328 if the function has already been used. */
6329 else if (warn_missing_prototypes
6330 && old_decl != 0 && TREE_USED (old_decl)
6331 && TYPE_ARG_TYPES (TREE_TYPE (old_decl)) == 0)
6332 warning_with_decl (decl1,
6333 "`%s' was used with no prototype before its definition");
6334 /* Optionally warn of any global def with no previous declaration. */
6335 else if (warn_missing_declarations
6336 && TREE_PUBLIC (decl1)
6337 && old_decl == 0
6338 && ! MAIN_NAME_P (DECL_NAME (decl1)))
6339 warning_with_decl (decl1, "no previous declaration for `%s'");
6340 /* Optionally warn of any def with no previous declaration
6341 if the function has already been used. */
6342 else if (warn_missing_declarations
6343 && old_decl != 0 && TREE_USED (old_decl)
6344 && old_decl == IDENTIFIER_IMPLICIT_DECL (DECL_NAME (decl1)))
6345 warning_with_decl (decl1,
6346 "`%s' was used with no declaration before its definition");
6347
6348 /* This is a definition, not a reference.
6349 So normally clear DECL_EXTERNAL.
6350 However, `extern inline' acts like a declaration
6351 except for defining how to inline. So set DECL_EXTERNAL in that case. */
6352 DECL_EXTERNAL (decl1) = current_extern_inline;
6353
6354 /* This function exists in static storage.
6355 (This does not mean `static' in the C sense!) */
6356 TREE_STATIC (decl1) = 1;
6357
6358 /* A nested function is not global. */
6359 if (current_function_decl != 0)
6360 TREE_PUBLIC (decl1) = 0;
6361
6362 /* Warn for unlikely, improbable, or stupid declarations of `main'. */
6363 if (warn_main > 0 && MAIN_NAME_P (DECL_NAME (decl1)))
6364 {
6365 tree args;
6366 int argct = 0;
6367
6368 if (TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (decl1)))
6369 != integer_type_node)
6370 pedwarn_with_decl (decl1, "return type of `%s' is not `int'");
6371
6372 for (args = TYPE_ARG_TYPES (TREE_TYPE (decl1)); args;
6373 args = TREE_CHAIN (args))
6374 {
6375 tree type = args ? TREE_VALUE (args) : 0;
6376
6377 if (type == void_type_node)
6378 break;
6379
6380 ++argct;
6381 switch (argct)
6382 {
6383 case 1:
6384 if (TYPE_MAIN_VARIANT (type) != integer_type_node)
6385 pedwarn_with_decl (decl1,
6386 "first argument of `%s' should be `int'");
6387 break;
6388
6389 case 2:
6390 if (TREE_CODE (type) != POINTER_TYPE
6391 || TREE_CODE (TREE_TYPE (type)) != POINTER_TYPE
6392 || (TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (type)))
6393 != char_type_node))
6394 pedwarn_with_decl (decl1,
6395 "second argument of `%s' should be `char **'");
6396 break;
6397
6398 case 3:
6399 if (TREE_CODE (type) != POINTER_TYPE
6400 || TREE_CODE (TREE_TYPE (type)) != POINTER_TYPE
6401 || (TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (type)))
6402 != char_type_node))
6403 pedwarn_with_decl (decl1,
6404 "third argument of `%s' should probably be `char **'");
6405 break;
6406 }
6407 }
6408
6409 /* It is intentional that this message does not mention the third
6410 argument because it's only mentioned in an appendix of the
6411 standard. */
6412 if (argct > 0 && (argct < 2 || argct > 3))
6413 pedwarn_with_decl (decl1, "`%s' takes only zero or two arguments");
6414
6415 if (! TREE_PUBLIC (decl1))
6416 pedwarn_with_decl (decl1, "`%s' is normally a non-static function");
6417 }
6418
6419 /* Record the decl so that the function name is defined.
6420 If we already have a decl for this name, and it is a FUNCTION_DECL,
6421 use the old decl. */
6422
6423 current_function_decl = pushdecl (decl1);
6424
6425 pushlevel (0);
6426 declare_parm_level (1);
6427 current_binding_level->subblocks_tag_transparent = 1;
6428
6429 make_decl_rtl (current_function_decl, NULL);
6430
6431 restype = TREE_TYPE (TREE_TYPE (current_function_decl));
6432 /* Promote the value to int before returning it. */
6433 if (c_promoting_integer_type_p (restype))
6434 {
6435 /* It retains unsignedness if traditional
6436 or if not really getting wider. */
6437 if (TREE_UNSIGNED (restype)
6438 && (flag_traditional
6439 || (TYPE_PRECISION (restype)
6440 == TYPE_PRECISION (integer_type_node))))
6441 restype = unsigned_type_node;
6442 else
6443 restype = integer_type_node;
6444 }
6445 DECL_RESULT (current_function_decl)
6446 = build_decl (RESULT_DECL, NULL_TREE, restype);
6447
6448 /* If this fcn was already referenced via a block-scope `extern' decl
6449 (or an implicit decl), propagate certain information about the usage. */
6450 if (TREE_ADDRESSABLE (DECL_ASSEMBLER_NAME (current_function_decl)))
6451 TREE_ADDRESSABLE (current_function_decl) = 1;
6452
6453 immediate_size_expand = old_immediate_size_expand;
6454
6455 start_fname_decls ();
6456
6457 return 1;
6458}
6459
6460/* Record that this function is going to be a varargs function.
6461 This is called before store_parm_decls, which is too early
6462 to call mark_varargs directly. */
6463
6464void
6465c_mark_varargs ()
6466{
6467 c_function_varargs = 1;
6468}
6469
6470/* Store the parameter declarations into the current function declaration.
6471 This is called after parsing the parameter declarations, before
6472 digesting the body of the function.
6473
6474 For an old-style definition, modify the function's type
6475 to specify at least the number of arguments. */
6476
6477void
6478store_parm_decls ()
6479{
6480 tree fndecl = current_function_decl;
6481 tree parm;
6482
6483 /* This is either a chain of PARM_DECLs (if a prototype was used)
6484 or a list of IDENTIFIER_NODEs (for an old-fashioned C definition). */
6485 tree specparms = current_function_parms;
6486
6487 /* This is a list of types declared among parms in a prototype. */
6488 tree parmtags = current_function_parm_tags;
6489
6490 /* This is a chain of PARM_DECLs from old-style parm declarations. */
6491 tree parmdecls = getdecls ();
6492
6493 /* This is a chain of any other decls that came in among the parm
6494 declarations. If a parm is declared with enum {foo, bar} x;
6495 then CONST_DECLs for foo and bar are put here. */
6496 tree nonparms = 0;
6497
6498 /* The function containing FNDECL, if any. */
6499 tree context = decl_function_context (fndecl);
6500
6501 /* Nonzero if this definition is written with a prototype. */
6502 int prototype = 0;
6503
6504 int saved_warn_shadow = warn_shadow;
6505
6506 /* Don't re-emit shadow warnings. */
6507 warn_shadow = 0;
6508
6509 if (specparms != 0 && TREE_CODE (specparms) != TREE_LIST)
6510 {
6511 /* This case is when the function was defined with an ANSI prototype.
6512 The parms already have decls, so we need not do anything here
6513 except record them as in effect
6514 and complain if any redundant old-style parm decls were written. */
6515
6516 tree next;
6517 tree others = 0;
6518
6519 prototype = 1;
6520
6521 if (parmdecls != 0)
6522 {
6523 tree decl, link;
6524
6525 error_with_decl (fndecl,
6526 "parm types given both in parmlist and separately");
6527 /* Get rid of the erroneous decls; don't keep them on
6528 the list of parms, since they might not be PARM_DECLs. */
6529 for (decl = current_binding_level->names;
6530 decl; decl = TREE_CHAIN (decl))
6531 if (DECL_NAME (decl))
6532 IDENTIFIER_LOCAL_VALUE (DECL_NAME (decl)) = 0;
6533 for (link = current_binding_level->shadowed;
6534 link; link = TREE_CHAIN (link))
6535 IDENTIFIER_LOCAL_VALUE (TREE_PURPOSE (link)) = TREE_VALUE (link);
6536 current_binding_level->names = 0;
6537 current_binding_level->shadowed = 0;
6538 }
6539
6540 specparms = nreverse (specparms);
6541 for (parm = specparms; parm; parm = next)
6542 {
6543 next = TREE_CHAIN (parm);
6544 if (TREE_CODE (parm) == PARM_DECL)
6545 {
6546 if (DECL_NAME (parm) == 0)
6547 error_with_decl (parm, "parameter name omitted");
6548 else if (TREE_CODE (TREE_TYPE (parm)) != ERROR_MARK
6549 && VOID_TYPE_P (TREE_TYPE (parm)))
6550 {
6551 error_with_decl (parm, "parameter `%s' declared void");
6552 /* Change the type to error_mark_node so this parameter
6553 will be ignored by assign_parms. */
6554 TREE_TYPE (parm) = error_mark_node;
6555 }
6556 pushdecl (parm);
6557 }
6558 else
6559 {
6560 /* If we find an enum constant or a type tag,
6561 put it aside for the moment. */
6562 TREE_CHAIN (parm) = 0;
6563 others = chainon (others, parm);
6564 }
6565 }
6566
6567 /* Get the decls in their original chain order
6568 and record in the function. */
6569 DECL_ARGUMENTS (fndecl) = getdecls ();
6570
6571#if 0
6572 /* If this function takes a variable number of arguments,
6573 add a phony parameter to the end of the parm list,
6574 to represent the position of the first unnamed argument. */
6575 if (TREE_VALUE (tree_last (TYPE_ARG_TYPES (TREE_TYPE (fndecl))))
6576 != void_type_node)
6577 {
6578 tree dummy = build_decl (PARM_DECL, NULL_TREE, void_type_node);
6579 /* Let's hope the address of the unnamed parm
6580 won't depend on its type. */
6581 TREE_TYPE (dummy) = integer_type_node;
6582 DECL_ARG_TYPE (dummy) = integer_type_node;
6583 DECL_ARGUMENTS (fndecl) = chainon (DECL_ARGUMENTS (fndecl), dummy);
6584 }
6585#endif
6586
6587 /* Now pushdecl the enum constants. */
6588 for (parm = others; parm; parm = next)
6589 {
6590 next = TREE_CHAIN (parm);
6591 if (DECL_NAME (parm) == 0)
6592 ;
6593 else if (TYPE_MAIN_VARIANT (TREE_TYPE (parm)) == void_type_node)
6594 ;
6595 else if (TREE_CODE (parm) != PARM_DECL)
6596 pushdecl (parm);
6597 }
6598
6599 storetags (chainon (parmtags, gettags ()));
6600 }
6601 else
6602 {
6603 /* SPECPARMS is an identifier list--a chain of TREE_LIST nodes
6604 each with a parm name as the TREE_VALUE.
6605
6606 PARMDECLS is a chain of declarations for parameters.
6607 Warning! It can also contain CONST_DECLs which are not parameters
6608 but are names of enumerators of any enum types
6609 declared among the parameters.
6610
6611 First match each formal parameter name with its declaration.
6612 Associate decls with the names and store the decls
6613 into the TREE_PURPOSE slots. */
6614
6615 /* We use DECL_WEAK as a flag to show which parameters have been
6616 seen already since it is not used on PARM_DECL or CONST_DECL. */
6617 for (parm = parmdecls; parm; parm = TREE_CHAIN (parm))
6618 DECL_WEAK (parm) = 0;
6619
6620 for (parm = specparms; parm; parm = TREE_CHAIN (parm))
6621 {
6622 tree tail, found = NULL;
6623
6624 if (TREE_VALUE (parm) == 0)
6625 {
6626 error_with_decl (fndecl,
6627 "parameter name missing from parameter list");
6628 TREE_PURPOSE (parm) = 0;
6629 continue;
6630 }
6631
6632 /* See if any of the parmdecls specifies this parm by name.
6633 Ignore any enumerator decls. */
6634 for (tail = parmdecls; tail; tail = TREE_CHAIN (tail))
6635 if (DECL_NAME (tail) == TREE_VALUE (parm)
6636 && TREE_CODE (tail) == PARM_DECL)
6637 {
6638 found = tail;
6639 break;
6640 }
6641
6642 /* If declaration already marked, we have a duplicate name.
6643 Complain, and don't use this decl twice. */
6644 if (found && DECL_WEAK (found))
6645 {
6646 error_with_decl (found, "multiple parameters named `%s'");
6647 found = 0;
6648 }
6649
6650 /* If the declaration says "void", complain and ignore it. */
6651 if (found && VOID_TYPE_P (TREE_TYPE (found)))
6652 {
6653 error_with_decl (found, "parameter `%s' declared void");
6654 TREE_TYPE (found) = integer_type_node;
6655 DECL_ARG_TYPE (found) = integer_type_node;
6656 layout_decl (found, 0);
6657 }
6658
6659 /* Traditionally, a parm declared float is actually a double. */
6660 if (found && flag_traditional
6661 && TYPE_MAIN_VARIANT (TREE_TYPE (found)) == float_type_node)
6662 {
6663 TREE_TYPE (found) = double_type_node;
6664 DECL_ARG_TYPE (found) = double_type_node;
6665 layout_decl (found, 0);
6666 }
6667
6668 /* If no declaration found, default to int. */
6669 if (!found)
6670 {
6671 found = build_decl (PARM_DECL, TREE_VALUE (parm),
6672 integer_type_node);
6673 DECL_ARG_TYPE (found) = TREE_TYPE (found);
6674 DECL_SOURCE_LINE (found) = DECL_SOURCE_LINE (fndecl);
6675 DECL_SOURCE_FILE (found) = DECL_SOURCE_FILE (fndecl);
6676 if (flag_isoc99)
6677 pedwarn_with_decl (found, "type of `%s' defaults to `int'");
6678 else if (extra_warnings)
6679 warning_with_decl (found, "type of `%s' defaults to `int'");
6680 pushdecl (found);
6681 }
6682
6683 TREE_PURPOSE (parm) = found;
6684
6685 /* Mark this decl as "already found". */
6686 DECL_WEAK (found) = 1;
6687 }
6688
6689 /* Put anything which is on the parmdecls chain and which is
6690 not a PARM_DECL onto the list NONPARMS. (The types of
6691 non-parm things which might appear on the list include
6692 enumerators and NULL-named TYPE_DECL nodes.) Complain about
6693 any actual PARM_DECLs not matched with any names. */
6694
6695 nonparms = 0;
6696 for (parm = parmdecls; parm;)
6697 {
6698 tree next = TREE_CHAIN (parm);
6699 TREE_CHAIN (parm) = 0;
6700
6701 if (TREE_CODE (parm) != PARM_DECL)
6702 nonparms = chainon (nonparms, parm);
6703 else
6704 {
6705 /* Complain about args with incomplete types. */
6706 if (!COMPLETE_TYPE_P (TREE_TYPE (parm)))
6707 {
6708 error_with_decl (parm, "parameter `%s' has incomplete type");
6709 TREE_TYPE (parm) = error_mark_node;
6710 }
6711
6712 if (! DECL_WEAK (parm))
6713 {
6714 error_with_decl (parm,
6715 "declaration for parameter `%s' but no such parameter");
6716 /* Pretend the parameter was not missing.
6717 This gets us to a standard state and minimizes
6718 further error messages. */
6719 specparms
6720 = chainon (specparms,
6721 tree_cons (parm, NULL_TREE, NULL_TREE));
6722 }
6723 }
6724
6725 parm = next;
6726 }
6727
6728 /* Chain the declarations together in the order of the list of
6729 names. Store that chain in the function decl, replacing the
6730 list of names. */
6731 parm = specparms;
6732 DECL_ARGUMENTS (fndecl) = 0;
6733 {
6734 tree last;
6735 for (last = 0; parm; parm = TREE_CHAIN (parm))
6736 if (TREE_PURPOSE (parm))
6737 {
6738 if (last == 0)
6739 DECL_ARGUMENTS (fndecl) = TREE_PURPOSE (parm);
6740 else
6741 TREE_CHAIN (last) = TREE_PURPOSE (parm);
6742 last = TREE_PURPOSE (parm);
6743 TREE_CHAIN (last) = 0;
6744 }
6745 }
6746
6747 /* If there was a previous prototype,
6748 set the DECL_ARG_TYPE of each argument according to
6749 the type previously specified, and report any mismatches. */
6750
6751 if (TYPE_ARG_TYPES (TREE_TYPE (fndecl)))
6752 {
6753 tree type;
6754 for (parm = DECL_ARGUMENTS (fndecl),
6755 type = TYPE_ARG_TYPES (TREE_TYPE (fndecl));
6756 parm || (type && (TYPE_MAIN_VARIANT (TREE_VALUE (type))
6757 != void_type_node));
6758 parm = TREE_CHAIN (parm), type = TREE_CHAIN (type))
6759 {
6760 if (parm == 0 || type == 0
6761 || TYPE_MAIN_VARIANT (TREE_VALUE (type)) == void_type_node)
6762 {
6763 error ("number of arguments doesn't match prototype");
6764 error_with_file_and_line (current_function_prototype_file,
6765 current_function_prototype_line,
6766 "prototype declaration");
6767 break;
6768 }
6769 /* Type for passing arg must be consistent with that
6770 declared for the arg. ISO C says we take the unqualified
6771 type for parameters declared with qualified type. */
6772 if (! comptypes (TYPE_MAIN_VARIANT (DECL_ARG_TYPE (parm)),
6773 TYPE_MAIN_VARIANT (TREE_VALUE (type))))
6774 {
6775 if (TYPE_MAIN_VARIANT (TREE_TYPE (parm))
6776 == TYPE_MAIN_VARIANT (TREE_VALUE (type)))
6777 {
6778 /* Adjust argument to match prototype. E.g. a previous
6779 `int foo(float);' prototype causes
6780 `int foo(x) float x; {...}' to be treated like
6781 `int foo(float x) {...}'. This is particularly
6782 useful for argument types like uid_t. */
6783 DECL_ARG_TYPE (parm) = TREE_TYPE (parm);
6784
6785 if (PROMOTE_PROTOTYPES
6786 && INTEGRAL_TYPE_P (TREE_TYPE (parm))
6787 && TYPE_PRECISION (TREE_TYPE (parm))
6788 < TYPE_PRECISION (integer_type_node))
6789 DECL_ARG_TYPE (parm) = integer_type_node;
6790
6791 if (pedantic)
6792 {
6793 pedwarn ("promoted argument `%s' doesn't match prototype",
6794 IDENTIFIER_POINTER (DECL_NAME (parm)));
6795 warning_with_file_and_line
6796 (current_function_prototype_file,
6797 current_function_prototype_line,
6798 "prototype declaration");
6799 }
6800 }
6801 /* If -traditional, allow `int' argument to match
6802 `unsigned' prototype. */
6803 else if (! (flag_traditional
6804 && TYPE_MAIN_VARIANT (TREE_TYPE (parm)) == integer_type_node
6805 && TYPE_MAIN_VARIANT (TREE_VALUE (type)) == unsigned_type_node))
6806 {
6807 error ("argument `%s' doesn't match prototype",
6808 IDENTIFIER_POINTER (DECL_NAME (parm)));
6809 error_with_file_and_line (current_function_prototype_file,
6810 current_function_prototype_line,
6811 "prototype declaration");
6812 }
6813 }
6814 }
6815 TYPE_ACTUAL_ARG_TYPES (TREE_TYPE (fndecl)) = 0;
6816 }
6817
6818 /* Otherwise, create a prototype that would match. */
6819
6820 else
6821 {
6822 tree actual = 0, last = 0, type;
6823
6824 for (parm = DECL_ARGUMENTS (fndecl); parm; parm = TREE_CHAIN (parm))
6825 {
6826 type = tree_cons (NULL_TREE, DECL_ARG_TYPE (parm), NULL_TREE);
6827 if (last)
6828 TREE_CHAIN (last) = type;
6829 else
6830 actual = type;
6831 last = type;
6832 }
6833 type = tree_cons (NULL_TREE, void_type_node, NULL_TREE);
6834 if (last)
6835 TREE_CHAIN (last) = type;
6836 else
6837 actual = type;
6838
6839 /* We are going to assign a new value for the TYPE_ACTUAL_ARG_TYPES
6840 of the type of this function, but we need to avoid having this
6841 affect the types of other similarly-typed functions, so we must
6842 first force the generation of an identical (but separate) type
6843 node for the relevant function type. The new node we create
6844 will be a variant of the main variant of the original function
6845 type. */
6846
6847 TREE_TYPE (fndecl) = build_type_copy (TREE_TYPE (fndecl));
6848
6849 TYPE_ACTUAL_ARG_TYPES (TREE_TYPE (fndecl)) = actual;
6850 }
6851
6852 /* Now store the final chain of decls for the arguments
6853 as the decl-chain of the current lexical scope.
6854 Put the enumerators in as well, at the front so that
6855 DECL_ARGUMENTS is not modified. */
6856
6857 storedecls (chainon (nonparms, DECL_ARGUMENTS (fndecl)));
6858 }
6859
6860 /* Make sure the binding level for the top of the function body
6861 gets a BLOCK if there are any in the function.
6862 Otherwise, the dbx output is wrong. */
6863
6864 keep_next_if_subblocks = 1;
6865
6866 /* ??? This might be an improvement,
6867 but needs to be thought about some more. */
6868#if 0
6869 keep_next_level_flag = 1;
6870#endif
6871
6872 /* Write a record describing this function definition to the prototypes
6873 file (if requested). */
6874
6875 gen_aux_info_record (fndecl, 1, 0, prototype);
6876
6877 /* Initialize the RTL code for the function. */
6878 init_function_start (fndecl, input_filename, lineno);
6879
6880 /* Begin the statement tree for this function. */
6881 begin_stmt_tree (&DECL_SAVED_TREE (current_function_decl));
6882
6883 /* If this is a nested function, save away the sizes of any
6884 variable-size types so that we can expand them when generating
6885 RTL. */
6886 if (context)
6887 {
6888 tree t;
6889
6890 DECL_LANG_SPECIFIC (fndecl)->pending_sizes
6891 = nreverse (get_pending_sizes ());
6892 for (t = DECL_LANG_SPECIFIC (fndecl)->pending_sizes;
6893 t;
6894 t = TREE_CHAIN (t))
6895 SAVE_EXPR_CONTEXT (TREE_VALUE (t)) = context;
6896 }
6897
6898 /* This function is being processed in whole-function mode. */
6899 cfun->x_whole_function_mode_p = 1;
6900
6901 /* Even though we're inside a function body, we still don't want to
6902 call expand_expr to calculate the size of a variable-sized array.
6903 We haven't necessarily assigned RTL to all variables yet, so it's
6904 not safe to try to expand expressions involving them. */
6905 immediate_size_expand = 0;
6906 cfun->x_dont_save_pending_sizes_p = 1;
6907
6908 warn_shadow = saved_warn_shadow;
6909}
6910
6911/* Finish up a function declaration and compile that function
6912 all the way to assembler language output. The free the storage
6913 for the function definition.
6914
6915 This is called after parsing the body of the function definition.
6916
6917 NESTED is nonzero if the function being finished is nested in another.
6918 CAN_DEFER_P is nonzero if the function may be deferred. */
6919
6920void
6921finish_function (nested, can_defer_p)
6922 int nested;
6923 int can_defer_p;
6924{
6925 tree fndecl = current_function_decl;
6926
6927#if 0
6928 /* This caused &foo to be of type ptr-to-const-function which then
6929 got a warning when stored in a ptr-to-function variable. */
6930 TREE_READONLY (fndecl) = 1;
6931#endif
6932
6933 poplevel (1, 0, 1);
6934 BLOCK_SUPERCONTEXT (DECL_INITIAL (fndecl)) = fndecl;
6935
6936 /* Must mark the RESULT_DECL as being in this function. */
6937
6938 DECL_CONTEXT (DECL_RESULT (fndecl)) = fndecl;
6939
6940 /* Obey `register' declarations if `setjmp' is called in this fn. */
6941 if (flag_traditional && current_function_calls_setjmp)
6942 {
6943 setjmp_protect (DECL_INITIAL (fndecl));
6944 setjmp_protect_args ();
6945 }
6946
6947 if (MAIN_NAME_P (DECL_NAME (fndecl)) && flag_hosted)
6948 {
6949 if (TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (fndecl)))
6950 != integer_type_node)
6951 {
6952 /* If warn_main is 1 (-Wmain) or 2 (-Wall), we have already warned.
6953 If warn_main is -1 (-Wno-main) we don't want to be warned. */
6954 if (! warn_main)
6955 pedwarn_with_decl (fndecl, "return type of `%s' is not `int'");
6956 }
6957 else
6958 {
6959#ifdef DEFAULT_MAIN_RETURN
6960 /* Make it so that `main' always returns success by default. */
6961 DEFAULT_MAIN_RETURN;
6962#else
6963 if (flag_isoc99)
6964 c_expand_return (integer_zero_node);
6965#endif
6966 }
6967 }
6968
6969 finish_fname_decls ();
6970
6971 /* Tie off the statement tree for this function. */
6972 finish_stmt_tree (&DECL_SAVED_TREE (fndecl));
6973
6974 /* Complain if there's just no return statement. */
6975 if (warn_return_type
6976 && TREE_CODE (TREE_TYPE (TREE_TYPE (fndecl))) != VOID_TYPE
6977 && !current_function_returns_value && !current_function_returns_null
6978 /* Don't complain if we abort. */
6979 && !current_function_returns_abnormally
6980 /* Don't warn for main(). */
6981 && !MAIN_NAME_P (DECL_NAME (fndecl))
6982 /* Or if they didn't actually specify a return type. */
6983 && !C_FUNCTION_IMPLICIT_INT (fndecl)
6984 /* Normally, with -Wreturn-type, flow will complain. Unless we're an
6985 inline function, as we might never be compiled separately. */
6986 && DECL_INLINE (fndecl))
6987 warning ("no return statement in function returning non-void");
6988
6989 /* Clear out memory we no longer need. */
6990 free_after_parsing (cfun);
6991 /* Since we never call rest_of_compilation, we never clear
6992 CFUN. Do so explicitly. */
6993 free_after_compilation (cfun);
6994 cfun = NULL;
6995
6996 if (! nested)
6997 {
6998 /* Generate RTL for the body of this function. */
6999 c_expand_body (fndecl, nested, can_defer_p);
7000
7001 /* Let the error reporting routines know that we're outside a
7002 function. For a nested function, this value is used in
7003 pop_c_function_context and then reset via pop_function_context. */
7004 current_function_decl = NULL;
7005 }
7006}
7007
7008/* Generate the RTL for a deferred function FNDECL. */
7009
7010void
7011c_expand_deferred_function (fndecl)
7012 tree fndecl;
7013{
7014 /* DECL_INLINE or DECL_RESULT might got cleared after the inline
7015 function was deferred, e.g. in duplicate_decls. */
7016 if (DECL_INLINE (fndecl) && DECL_RESULT (fndecl))
7017 {
7018 c_expand_body (fndecl, 0, 0);
7019 current_function_decl = NULL;
7020 }
7021}
7022
7023/* Generate the RTL for the body of FNDECL. If NESTED_P is non-zero,
7024 then we are already in the process of generating RTL for another
7025 function. If can_defer_p is zero, we won't attempt to defer the
7026 generation of RTL. */
7027
7028static void
7029c_expand_body (fndecl, nested_p, can_defer_p)
7030 tree fndecl;
7031 int nested_p, can_defer_p;
7032{
7033 int uninlinable = 1;
7034
7035 /* There's no reason to do any of the work here if we're only doing
7036 semantic analysis; this code just generates RTL. */
7037 if (flag_syntax_only)
7038 return;
7039
7040 if (flag_inline_trees)
7041 {
7042 /* First, cache whether the current function is inlinable. Some
7043 predicates depend on cfun and current_function_decl to
7044 function completely. */
7045 timevar_push (TV_INTEGRATION);
7046 uninlinable = ! tree_inlinable_function_p (fndecl);
7047
7048 if (! uninlinable && can_defer_p
7049 /* Save function tree for inlining. Should return 0 if the
7050 language does not support function deferring or the
7051 function could not be deferred. */
7052 && defer_fn (fndecl))
7053 {
7054 /* Let the back-end know that this function exists. */
7055 (*debug_hooks->deferred_inline_function) (fndecl);
7056 timevar_pop (TV_INTEGRATION);
7057 return;
7058 }
7059
7060 /* Then, inline any functions called in it. */
7061 optimize_inline_calls (fndecl);
7062 timevar_pop (TV_INTEGRATION);
7063 }
7064
7065 timevar_push (TV_EXPAND);
7066
7067 if (nested_p)
7068 {
7069 /* Make sure that we will evaluate variable-sized types involved
7070 in our function's type. */
7071 expand_pending_sizes (DECL_LANG_SPECIFIC (fndecl)->pending_sizes);
7072 /* Squirrel away our current state. */
7073 push_function_context ();
7074 }
7075
7076 /* Initialize the RTL code for the function. */
7077 current_function_decl = fndecl;
7078 input_filename = DECL_SOURCE_FILE (fndecl);
7079 init_function_start (fndecl, input_filename, DECL_SOURCE_LINE (fndecl));
7080
7081 /* This function is being processed in whole-function mode. */
7082 cfun->x_whole_function_mode_p = 1;
7083
7084 /* Even though we're inside a function body, we still don't want to
7085 call expand_expr to calculate the size of a variable-sized array.
7086 We haven't necessarily assigned RTL to all variables yet, so it's
7087 not safe to try to expand expressions involving them. */
7088 immediate_size_expand = 0;
7089 cfun->x_dont_save_pending_sizes_p = 1;
7090
7091 /* If this is a varargs function, inform function.c. */
7092 if (c_function_varargs)
7093 mark_varargs ();
7094
7095 /* Set up parameters and prepare for return, for the function. */
7096 expand_function_start (fndecl, 0);
7097
7098 /* If this function is `main', emit a call to `__main'
7099 to run global initializers, etc. */
7100 if (DECL_NAME (fndecl)
7101 && MAIN_NAME_P (DECL_NAME (fndecl))
7102 && DECL_CONTEXT (fndecl) == NULL_TREE)
7103 expand_main_function ();
7104
7105 /* Generate the RTL for this function. */
7106 expand_stmt (DECL_SAVED_TREE (fndecl));
7107 if (uninlinable)
7108 {
7109 /* Allow the body of the function to be garbage collected. */
7110 DECL_SAVED_TREE (fndecl) = NULL_TREE;
7111 }
7112
7113 /* We hard-wired immediate_size_expand to zero above.
7114 expand_function_end will decrement this variable. So, we set the
7115 variable to one here, so that after the decrement it will remain
7116 zero. */
7117 immediate_size_expand = 1;
7118
7119 /* Allow language dialects to perform special processing. */
7120 if (lang_expand_function_end)
7121 (*lang_expand_function_end) ();
7122
7123 /* Generate rtl for function exit. */
7124 expand_function_end (input_filename, lineno, 0);
7125
7126 /* If this is a nested function, protect the local variables in the stack
7127 above us from being collected while we're compiling this function. */
7128 if (nested_p)
7129 ggc_push_context ();
7130
7131 /* Run the optimizers and output the assembler code for this function. */
7132 rest_of_compilation (fndecl);
7133
7134 /* Undo the GC context switch. */
7135 if (nested_p)
7136 ggc_pop_context ();
7137
7138 /* With just -W, complain only if function returns both with
7139 and without a value. */
7140 if (extra_warnings
7141 && current_function_returns_value
7142 && current_function_returns_null)
7143 warning ("this function may return with or without a value");
7144
7145 /* If requested, warn about function definitions where the function will
7146 return a value (usually of some struct or union type) which itself will
7147 take up a lot of stack space. */
7148
7149 if (warn_larger_than && !DECL_EXTERNAL (fndecl) && TREE_TYPE (fndecl))
7150 {
7151 tree ret_type = TREE_TYPE (TREE_TYPE (fndecl));
7152
7153 if (ret_type && TYPE_SIZE_UNIT (ret_type)
7154 && TREE_CODE (TYPE_SIZE_UNIT (ret_type)) == INTEGER_CST
7155 && 0 < compare_tree_int (TYPE_SIZE_UNIT (ret_type),
7156 larger_than_size))
7157 {
7158 unsigned int size_as_int
7159 = TREE_INT_CST_LOW (TYPE_SIZE_UNIT (ret_type));
7160
7161 if (compare_tree_int (TYPE_SIZE_UNIT (ret_type), size_as_int) == 0)
7162 warning_with_decl (fndecl,
7163 "size of return value of `%s' is %u bytes",
7164 size_as_int);
7165 else
7166 warning_with_decl (fndecl,
7167 "size of return value of `%s' is larger than %d bytes",
7168 larger_than_size);
7169 }
7170 }
7171
7172 if (DECL_SAVED_INSNS (fndecl) == 0 && ! nested_p
7173 && ! flag_inline_trees)
7174 {
7175 /* Stop pointing to the local nodes about to be freed.
7176 But DECL_INITIAL must remain nonzero so we know this
7177 was an actual function definition.
7178 For a nested function, this is done in pop_c_function_context.
7179 If rest_of_compilation set this to 0, leave it 0. */
7180 if (DECL_INITIAL (fndecl) != 0)
7181 DECL_INITIAL (fndecl) = error_mark_node;
7182
7183 DECL_ARGUMENTS (fndecl) = 0;
7184 }
7185
7186 if (DECL_STATIC_CONSTRUCTOR (fndecl))
7187 {
7188 if (targetm.have_ctors_dtors)
7189 (* targetm.asm_out.constructor) (XEXP (DECL_RTL (fndecl), 0),
7190 DEFAULT_INIT_PRIORITY);
7191 else
7192 static_ctors = tree_cons (NULL_TREE, fndecl, static_ctors);
7193 }
7194
7195 if (DECL_STATIC_DESTRUCTOR (fndecl))
7196 {
7197 if (targetm.have_ctors_dtors)
7198 (* targetm.asm_out.destructor) (XEXP (DECL_RTL (fndecl), 0),
7199 DEFAULT_INIT_PRIORITY);
7200 else
7201 static_dtors = tree_cons (NULL_TREE, fndecl, static_dtors);
7202 }
7203
7204 if (nested_p)
7205 /* Return to the enclosing function. */
7206 pop_function_context ();
7207 timevar_pop (TV_EXPAND);
7208}
7209
7210/* Check the declarations given in a for-loop for satisfying the C99
7211 constraints. */
7212void
7213check_for_loop_decls ()
7214{
7215 tree t;
7216
7217 if (!flag_isoc99)
7218 {
7219 /* If we get here, declarations have been used in a for loop without
7220 the C99 for loop scope. This doesn't make much sense, so don't
7221 allow it. */
7222 error ("`for' loop initial declaration used outside C99 mode");
7223 return;
7224 }
7225 /* C99 subclause 6.8.5 paragraph 3:
7226
7227 [#3] The declaration part of a for statement shall only
7228 declare identifiers for objects having storage class auto or
7229 register.
7230
7231 It isn't clear whether, in this sentence, "identifiers" binds to
7232 "shall only declare" or to "objects" - that is, whether all identifiers
7233 declared must be identifiers for objects, or whether the restriction
7234 only applies to those that are. (A question on this in comp.std.c
7235 in November 2000 received no answer.) We implement the strictest
7236 interpretation, to avoid creating an extension which later causes
7237 problems. */
7238
7239 for (t = gettags (); t; t = TREE_CHAIN (t))
7240 {
7241 if (TREE_PURPOSE (t) != 0)
7242 {
7243 enum tree_code code = TREE_CODE (TREE_VALUE (t));
7244
7245 if (code == RECORD_TYPE)
7246 error ("`struct %s' declared in `for' loop initial declaration",
7247 IDENTIFIER_POINTER (TREE_PURPOSE (t)));
7248 else if (code == UNION_TYPE)
7249 error ("`union %s' declared in `for' loop initial declaration",
7250 IDENTIFIER_POINTER (TREE_PURPOSE (t)));
7251 else
7252 error ("`enum %s' declared in `for' loop initial declaration",
7253 IDENTIFIER_POINTER (TREE_PURPOSE (t)));
7254 }
7255 }
7256
7257 for (t = getdecls (); t; t = TREE_CHAIN (t))
7258 {
7259 if (TREE_CODE (t) != VAR_DECL && DECL_NAME (t))
7260 error_with_decl (t, "declaration of non-variable `%s' in `for' loop initial declaration");
7261 else if (TREE_STATIC (t))
7262 error_with_decl (t, "declaration of static variable `%s' in `for' loop initial declaration");
7263 else if (DECL_EXTERNAL (t))
7264 error_with_decl (t, "declaration of `extern' variable `%s' in `for' loop initial declaration");
7265 }
7266}
7267
7268/* Save and restore the variables in this file and elsewhere
7269 that keep track of the progress of compilation of the current function.
7270 Used for nested functions. */
7271
7272struct c_language_function
7273{
7274 struct language_function base;
7275 tree named_labels;
7276 tree shadowed_labels;
7277 int returns_value;
7278 int returns_null;
7279 int returns_abnormally;
7280 int warn_about_return_type;
7281 int extern_inline;
7282 struct binding_level *binding_level;
7283};
7284
7285/* Save and reinitialize the variables
7286 used during compilation of a C function. */
7287
7288void
7289push_c_function_context (f)
7290 struct function *f;
7291{
7292 struct c_language_function *p;
7293 p = ((struct c_language_function *)
7294 xmalloc (sizeof (struct c_language_function)));
7295 f->language = (struct language_function *) p;
7296
7297 p->base.x_stmt_tree = c_stmt_tree;
7298 p->base.x_scope_stmt_stack = c_scope_stmt_stack;
7299 p->named_labels = named_labels;
7300 p->shadowed_labels = shadowed_labels;
7301 p->returns_value = current_function_returns_value;
7302 p->returns_null = current_function_returns_null;
7303 p->returns_abnormally = current_function_returns_abnormally;
7304 p->warn_about_return_type = warn_about_return_type;
7305 p->extern_inline = current_extern_inline;
7306 p->binding_level = current_binding_level;
7307}
7308
7309/* Restore the variables used during compilation of a C function. */
7310
7311void
7312pop_c_function_context (f)
7313 struct function *f;
7314{
7315 struct c_language_function *p
7316 = (struct c_language_function *) f->language;
7317 tree link;
7318
7319 /* Bring back all the labels that were shadowed. */
7320 for (link = shadowed_labels; link; link = TREE_CHAIN (link))
7321 if (DECL_NAME (TREE_VALUE (link)) != 0)
7322 IDENTIFIER_LABEL_VALUE (DECL_NAME (TREE_VALUE (link)))
7323 = TREE_VALUE (link);
7324
7325 if (DECL_SAVED_INSNS (current_function_decl) == 0
7326 && DECL_SAVED_TREE (current_function_decl) == NULL_TREE)
7327 {
7328 /* Stop pointing to the local nodes about to be freed. */
7329 /* But DECL_INITIAL must remain nonzero so we know this
7330 was an actual function definition. */
7331 DECL_INITIAL (current_function_decl) = error_mark_node;
7332 DECL_ARGUMENTS (current_function_decl) = 0;
7333 }
7334
7335 c_stmt_tree = p->base.x_stmt_tree;
7336 c_scope_stmt_stack = p->base.x_scope_stmt_stack;
7337 named_labels = p->named_labels;
7338 shadowed_labels = p->shadowed_labels;
7339 current_function_returns_value = p->returns_value;
7340 current_function_returns_null = p->returns_null;
7341 current_function_returns_abnormally = p->returns_abnormally;
7342 warn_about_return_type = p->warn_about_return_type;
7343 current_extern_inline = p->extern_inline;
7344 current_binding_level = p->binding_level;
7345
7346 free (p);
7347 f->language = 0;
7348}
7349
7350/* Mark the language specific parts of F for GC. */
7351
7352void
7353mark_c_function_context (f)
7354 struct function *f;
7355{
7356 struct c_language_function *p
7357 = (struct c_language_function *) f->language;
7358
7359 if (p == 0)
7360 return;
7361
7362 mark_c_language_function (&p->base);
7363 ggc_mark_tree (p->shadowed_labels);
7364 ggc_mark_tree (p->named_labels);
7365 mark_binding_level (&p->binding_level);
7366}
7367
7368/* Copy the DECL_LANG_SPECIFIC data associated with NODE. */
7369
7370void
7371copy_lang_decl (decl)
7372 tree decl;
7373{
7374 struct lang_decl *ld;
7375
7376 if (!DECL_LANG_SPECIFIC (decl))
7377 return;
7378
7379 ld = (struct lang_decl *) ggc_alloc (sizeof (struct lang_decl));
7380 memcpy ((char *) ld, (char *) DECL_LANG_SPECIFIC (decl),
7381 sizeof (struct lang_decl));
7382 DECL_LANG_SPECIFIC (decl) = ld;
7383}
7384
7385/* Mark the language specific bits in T for GC. */
7386
7387void
7388lang_mark_tree (t)
7389 tree t;
7390{
7391 if (TREE_CODE (t) == IDENTIFIER_NODE)
7392 {
7393 struct lang_identifier *i = (struct lang_identifier *) t;
7394 ggc_mark_tree (i->global_value);
7395 ggc_mark_tree (i->local_value);
7396 ggc_mark_tree (i->label_value);
7397 ggc_mark_tree (i->implicit_decl);
7398 ggc_mark_tree (i->error_locus);
7399 ggc_mark_tree (i->limbo_value);
7400 }
7401 else if (TYPE_P (t) && TYPE_LANG_SPECIFIC (t))
7402 ggc_mark (TYPE_LANG_SPECIFIC (t));
7403 else if (DECL_P (t) && DECL_LANG_SPECIFIC (t))
7404 {
7405 ggc_mark (DECL_LANG_SPECIFIC (t));
7406 c_mark_lang_decl (&DECL_LANG_SPECIFIC (t)->base);
7407 ggc_mark_tree (DECL_LANG_SPECIFIC (t)->pending_sizes);
7408 }
7409}
7410
7411/* The functions below are required for functionality of doing
7412 function at once processing in the C front end. Currently these
7413 functions are not called from anywhere in the C front end, but as
7414 these changes continue, that will change. */
7415
7416/* Returns non-zero if the current statement is a full expression,
7417 i.e. temporaries created during that statement should be destroyed
7418 at the end of the statement. */
7419
7420int
7421stmts_are_full_exprs_p ()
7422{
7423 return 0;
7424}
7425
7426/* Returns the stmt_tree (if any) to which statements are currently
7427 being added. If there is no active statement-tree, NULL is
7428 returned. */
7429
7430stmt_tree
7431current_stmt_tree ()
7432{
7433 return &c_stmt_tree;
7434}
7435
7436/* Returns the stack of SCOPE_STMTs for the current function. */
7437
7438tree *
7439current_scope_stmt_stack ()
7440{
7441 return &c_scope_stmt_stack;
7442}
7443
7444/* Nonzero if TYPE is an anonymous union or struct type. Always 0 in
7445 C. */
7446
7447int
7448anon_aggr_type_p (node)
7449 tree node ATTRIBUTE_UNUSED;
7450{
7451 return 0;
7452}
7453
7454/* Dummy function in place of callback used by C++. */
7455
7456void
7457extract_interface_info ()
7458{
7459}
7460
7461/* Return a new COMPOUND_STMT, after adding it to the current
7462 statement tree. */
7463
7464tree
7465c_begin_compound_stmt ()
7466{
7467 tree stmt;
7468
7469 /* Create the COMPOUND_STMT. */
7470 stmt = add_stmt (build_stmt (COMPOUND_STMT, NULL_TREE));
7471
7472 return stmt;
7473}
7474
7475/* Expand T (a DECL_STMT) if it declares an entity not handled by the
7476 common code. */
7477
7478void
7479c_expand_decl_stmt (t)
7480 tree t;
7481{
7482 tree decl = DECL_STMT_DECL (t);
7483
7484 /* Expand nested functions. */
7485 if (TREE_CODE (decl) == FUNCTION_DECL
7486 && DECL_CONTEXT (decl) == current_function_decl
7487 && DECL_SAVED_TREE (decl))
7488 c_expand_body (decl, /*nested_p=*/1, /*can_defer_p=*/0);
7489}
7490
7491/* Return the IDENTIFIER_GLOBAL_VALUE of T, for use in common code, since
7492 the definition of IDENTIFIER_GLOBAL_VALUE is different for C and C++. */
7493
7494tree
7495identifier_global_value (t)
7496 tree t;
7497{
7498 return IDENTIFIER_GLOBAL_VALUE (t);
7499}
7500
7501/* Record a builtin type for C. If NAME is non-NULL, it is the name used;
7502 otherwise the name is found in ridpointers from RID_INDEX. */
7503
7504void
7505record_builtin_type (rid_index, name, type)
7506 enum rid rid_index;
7507 const char *name;
7508 tree type;
7509{
7510 tree id;
7511 if (name == 0)
7512 id = ridpointers[(int) rid_index];
7513 else
7514 id = get_identifier (name);
7515 pushdecl (build_decl (TYPE_DECL, id, type));
7516}
7517
7518/* Build the void_list_node (void_type_node having been created). */
7519tree
7520build_void_list_node ()
7521{
7522 tree t = build_tree_list (NULL_TREE, void_type_node);
7523 return t;
7524}
6329 warning ("function declaration isn't a prototype");
6330 /* Optionally warn of any global def with no previous prototype. */
6331 else if (warn_missing_prototypes
6332 && TREE_PUBLIC (decl1)
6333 && !(old_decl != 0
6334 && (TYPE_ARG_TYPES (TREE_TYPE (old_decl)) != 0
6335 || (DECL_BUILT_IN (old_decl)
6336 && ! C_DECL_ANTICIPATED (old_decl))))
6337 && ! MAIN_NAME_P (DECL_NAME (decl1)))
6338 warning_with_decl (decl1, "no previous prototype for `%s'");
6339 /* Optionally warn of any def with no previous prototype
6340 if the function has already been used. */
6341 else if (warn_missing_prototypes
6342 && old_decl != 0 && TREE_USED (old_decl)
6343 && TYPE_ARG_TYPES (TREE_TYPE (old_decl)) == 0)
6344 warning_with_decl (decl1,
6345 "`%s' was used with no prototype before its definition");
6346 /* Optionally warn of any global def with no previous declaration. */
6347 else if (warn_missing_declarations
6348 && TREE_PUBLIC (decl1)
6349 && old_decl == 0
6350 && ! MAIN_NAME_P (DECL_NAME (decl1)))
6351 warning_with_decl (decl1, "no previous declaration for `%s'");
6352 /* Optionally warn of any def with no previous declaration
6353 if the function has already been used. */
6354 else if (warn_missing_declarations
6355 && old_decl != 0 && TREE_USED (old_decl)
6356 && old_decl == IDENTIFIER_IMPLICIT_DECL (DECL_NAME (decl1)))
6357 warning_with_decl (decl1,
6358 "`%s' was used with no declaration before its definition");
6359
6360 /* This is a definition, not a reference.
6361 So normally clear DECL_EXTERNAL.
6362 However, `extern inline' acts like a declaration
6363 except for defining how to inline. So set DECL_EXTERNAL in that case. */
6364 DECL_EXTERNAL (decl1) = current_extern_inline;
6365
6366 /* This function exists in static storage.
6367 (This does not mean `static' in the C sense!) */
6368 TREE_STATIC (decl1) = 1;
6369
6370 /* A nested function is not global. */
6371 if (current_function_decl != 0)
6372 TREE_PUBLIC (decl1) = 0;
6373
6374 /* Warn for unlikely, improbable, or stupid declarations of `main'. */
6375 if (warn_main > 0 && MAIN_NAME_P (DECL_NAME (decl1)))
6376 {
6377 tree args;
6378 int argct = 0;
6379
6380 if (TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (decl1)))
6381 != integer_type_node)
6382 pedwarn_with_decl (decl1, "return type of `%s' is not `int'");
6383
6384 for (args = TYPE_ARG_TYPES (TREE_TYPE (decl1)); args;
6385 args = TREE_CHAIN (args))
6386 {
6387 tree type = args ? TREE_VALUE (args) : 0;
6388
6389 if (type == void_type_node)
6390 break;
6391
6392 ++argct;
6393 switch (argct)
6394 {
6395 case 1:
6396 if (TYPE_MAIN_VARIANT (type) != integer_type_node)
6397 pedwarn_with_decl (decl1,
6398 "first argument of `%s' should be `int'");
6399 break;
6400
6401 case 2:
6402 if (TREE_CODE (type) != POINTER_TYPE
6403 || TREE_CODE (TREE_TYPE (type)) != POINTER_TYPE
6404 || (TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (type)))
6405 != char_type_node))
6406 pedwarn_with_decl (decl1,
6407 "second argument of `%s' should be `char **'");
6408 break;
6409
6410 case 3:
6411 if (TREE_CODE (type) != POINTER_TYPE
6412 || TREE_CODE (TREE_TYPE (type)) != POINTER_TYPE
6413 || (TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (type)))
6414 != char_type_node))
6415 pedwarn_with_decl (decl1,
6416 "third argument of `%s' should probably be `char **'");
6417 break;
6418 }
6419 }
6420
6421 /* It is intentional that this message does not mention the third
6422 argument because it's only mentioned in an appendix of the
6423 standard. */
6424 if (argct > 0 && (argct < 2 || argct > 3))
6425 pedwarn_with_decl (decl1, "`%s' takes only zero or two arguments");
6426
6427 if (! TREE_PUBLIC (decl1))
6428 pedwarn_with_decl (decl1, "`%s' is normally a non-static function");
6429 }
6430
6431 /* Record the decl so that the function name is defined.
6432 If we already have a decl for this name, and it is a FUNCTION_DECL,
6433 use the old decl. */
6434
6435 current_function_decl = pushdecl (decl1);
6436
6437 pushlevel (0);
6438 declare_parm_level (1);
6439 current_binding_level->subblocks_tag_transparent = 1;
6440
6441 make_decl_rtl (current_function_decl, NULL);
6442
6443 restype = TREE_TYPE (TREE_TYPE (current_function_decl));
6444 /* Promote the value to int before returning it. */
6445 if (c_promoting_integer_type_p (restype))
6446 {
6447 /* It retains unsignedness if traditional
6448 or if not really getting wider. */
6449 if (TREE_UNSIGNED (restype)
6450 && (flag_traditional
6451 || (TYPE_PRECISION (restype)
6452 == TYPE_PRECISION (integer_type_node))))
6453 restype = unsigned_type_node;
6454 else
6455 restype = integer_type_node;
6456 }
6457 DECL_RESULT (current_function_decl)
6458 = build_decl (RESULT_DECL, NULL_TREE, restype);
6459
6460 /* If this fcn was already referenced via a block-scope `extern' decl
6461 (or an implicit decl), propagate certain information about the usage. */
6462 if (TREE_ADDRESSABLE (DECL_ASSEMBLER_NAME (current_function_decl)))
6463 TREE_ADDRESSABLE (current_function_decl) = 1;
6464
6465 immediate_size_expand = old_immediate_size_expand;
6466
6467 start_fname_decls ();
6468
6469 return 1;
6470}
6471
6472/* Record that this function is going to be a varargs function.
6473 This is called before store_parm_decls, which is too early
6474 to call mark_varargs directly. */
6475
6476void
6477c_mark_varargs ()
6478{
6479 c_function_varargs = 1;
6480}
6481
6482/* Store the parameter declarations into the current function declaration.
6483 This is called after parsing the parameter declarations, before
6484 digesting the body of the function.
6485
6486 For an old-style definition, modify the function's type
6487 to specify at least the number of arguments. */
6488
6489void
6490store_parm_decls ()
6491{
6492 tree fndecl = current_function_decl;
6493 tree parm;
6494
6495 /* This is either a chain of PARM_DECLs (if a prototype was used)
6496 or a list of IDENTIFIER_NODEs (for an old-fashioned C definition). */
6497 tree specparms = current_function_parms;
6498
6499 /* This is a list of types declared among parms in a prototype. */
6500 tree parmtags = current_function_parm_tags;
6501
6502 /* This is a chain of PARM_DECLs from old-style parm declarations. */
6503 tree parmdecls = getdecls ();
6504
6505 /* This is a chain of any other decls that came in among the parm
6506 declarations. If a parm is declared with enum {foo, bar} x;
6507 then CONST_DECLs for foo and bar are put here. */
6508 tree nonparms = 0;
6509
6510 /* The function containing FNDECL, if any. */
6511 tree context = decl_function_context (fndecl);
6512
6513 /* Nonzero if this definition is written with a prototype. */
6514 int prototype = 0;
6515
6516 int saved_warn_shadow = warn_shadow;
6517
6518 /* Don't re-emit shadow warnings. */
6519 warn_shadow = 0;
6520
6521 if (specparms != 0 && TREE_CODE (specparms) != TREE_LIST)
6522 {
6523 /* This case is when the function was defined with an ANSI prototype.
6524 The parms already have decls, so we need not do anything here
6525 except record them as in effect
6526 and complain if any redundant old-style parm decls were written. */
6527
6528 tree next;
6529 tree others = 0;
6530
6531 prototype = 1;
6532
6533 if (parmdecls != 0)
6534 {
6535 tree decl, link;
6536
6537 error_with_decl (fndecl,
6538 "parm types given both in parmlist and separately");
6539 /* Get rid of the erroneous decls; don't keep them on
6540 the list of parms, since they might not be PARM_DECLs. */
6541 for (decl = current_binding_level->names;
6542 decl; decl = TREE_CHAIN (decl))
6543 if (DECL_NAME (decl))
6544 IDENTIFIER_LOCAL_VALUE (DECL_NAME (decl)) = 0;
6545 for (link = current_binding_level->shadowed;
6546 link; link = TREE_CHAIN (link))
6547 IDENTIFIER_LOCAL_VALUE (TREE_PURPOSE (link)) = TREE_VALUE (link);
6548 current_binding_level->names = 0;
6549 current_binding_level->shadowed = 0;
6550 }
6551
6552 specparms = nreverse (specparms);
6553 for (parm = specparms; parm; parm = next)
6554 {
6555 next = TREE_CHAIN (parm);
6556 if (TREE_CODE (parm) == PARM_DECL)
6557 {
6558 if (DECL_NAME (parm) == 0)
6559 error_with_decl (parm, "parameter name omitted");
6560 else if (TREE_CODE (TREE_TYPE (parm)) != ERROR_MARK
6561 && VOID_TYPE_P (TREE_TYPE (parm)))
6562 {
6563 error_with_decl (parm, "parameter `%s' declared void");
6564 /* Change the type to error_mark_node so this parameter
6565 will be ignored by assign_parms. */
6566 TREE_TYPE (parm) = error_mark_node;
6567 }
6568 pushdecl (parm);
6569 }
6570 else
6571 {
6572 /* If we find an enum constant or a type tag,
6573 put it aside for the moment. */
6574 TREE_CHAIN (parm) = 0;
6575 others = chainon (others, parm);
6576 }
6577 }
6578
6579 /* Get the decls in their original chain order
6580 and record in the function. */
6581 DECL_ARGUMENTS (fndecl) = getdecls ();
6582
6583#if 0
6584 /* If this function takes a variable number of arguments,
6585 add a phony parameter to the end of the parm list,
6586 to represent the position of the first unnamed argument. */
6587 if (TREE_VALUE (tree_last (TYPE_ARG_TYPES (TREE_TYPE (fndecl))))
6588 != void_type_node)
6589 {
6590 tree dummy = build_decl (PARM_DECL, NULL_TREE, void_type_node);
6591 /* Let's hope the address of the unnamed parm
6592 won't depend on its type. */
6593 TREE_TYPE (dummy) = integer_type_node;
6594 DECL_ARG_TYPE (dummy) = integer_type_node;
6595 DECL_ARGUMENTS (fndecl) = chainon (DECL_ARGUMENTS (fndecl), dummy);
6596 }
6597#endif
6598
6599 /* Now pushdecl the enum constants. */
6600 for (parm = others; parm; parm = next)
6601 {
6602 next = TREE_CHAIN (parm);
6603 if (DECL_NAME (parm) == 0)
6604 ;
6605 else if (TYPE_MAIN_VARIANT (TREE_TYPE (parm)) == void_type_node)
6606 ;
6607 else if (TREE_CODE (parm) != PARM_DECL)
6608 pushdecl (parm);
6609 }
6610
6611 storetags (chainon (parmtags, gettags ()));
6612 }
6613 else
6614 {
6615 /* SPECPARMS is an identifier list--a chain of TREE_LIST nodes
6616 each with a parm name as the TREE_VALUE.
6617
6618 PARMDECLS is a chain of declarations for parameters.
6619 Warning! It can also contain CONST_DECLs which are not parameters
6620 but are names of enumerators of any enum types
6621 declared among the parameters.
6622
6623 First match each formal parameter name with its declaration.
6624 Associate decls with the names and store the decls
6625 into the TREE_PURPOSE slots. */
6626
6627 /* We use DECL_WEAK as a flag to show which parameters have been
6628 seen already since it is not used on PARM_DECL or CONST_DECL. */
6629 for (parm = parmdecls; parm; parm = TREE_CHAIN (parm))
6630 DECL_WEAK (parm) = 0;
6631
6632 for (parm = specparms; parm; parm = TREE_CHAIN (parm))
6633 {
6634 tree tail, found = NULL;
6635
6636 if (TREE_VALUE (parm) == 0)
6637 {
6638 error_with_decl (fndecl,
6639 "parameter name missing from parameter list");
6640 TREE_PURPOSE (parm) = 0;
6641 continue;
6642 }
6643
6644 /* See if any of the parmdecls specifies this parm by name.
6645 Ignore any enumerator decls. */
6646 for (tail = parmdecls; tail; tail = TREE_CHAIN (tail))
6647 if (DECL_NAME (tail) == TREE_VALUE (parm)
6648 && TREE_CODE (tail) == PARM_DECL)
6649 {
6650 found = tail;
6651 break;
6652 }
6653
6654 /* If declaration already marked, we have a duplicate name.
6655 Complain, and don't use this decl twice. */
6656 if (found && DECL_WEAK (found))
6657 {
6658 error_with_decl (found, "multiple parameters named `%s'");
6659 found = 0;
6660 }
6661
6662 /* If the declaration says "void", complain and ignore it. */
6663 if (found && VOID_TYPE_P (TREE_TYPE (found)))
6664 {
6665 error_with_decl (found, "parameter `%s' declared void");
6666 TREE_TYPE (found) = integer_type_node;
6667 DECL_ARG_TYPE (found) = integer_type_node;
6668 layout_decl (found, 0);
6669 }
6670
6671 /* Traditionally, a parm declared float is actually a double. */
6672 if (found && flag_traditional
6673 && TYPE_MAIN_VARIANT (TREE_TYPE (found)) == float_type_node)
6674 {
6675 TREE_TYPE (found) = double_type_node;
6676 DECL_ARG_TYPE (found) = double_type_node;
6677 layout_decl (found, 0);
6678 }
6679
6680 /* If no declaration found, default to int. */
6681 if (!found)
6682 {
6683 found = build_decl (PARM_DECL, TREE_VALUE (parm),
6684 integer_type_node);
6685 DECL_ARG_TYPE (found) = TREE_TYPE (found);
6686 DECL_SOURCE_LINE (found) = DECL_SOURCE_LINE (fndecl);
6687 DECL_SOURCE_FILE (found) = DECL_SOURCE_FILE (fndecl);
6688 if (flag_isoc99)
6689 pedwarn_with_decl (found, "type of `%s' defaults to `int'");
6690 else if (extra_warnings)
6691 warning_with_decl (found, "type of `%s' defaults to `int'");
6692 pushdecl (found);
6693 }
6694
6695 TREE_PURPOSE (parm) = found;
6696
6697 /* Mark this decl as "already found". */
6698 DECL_WEAK (found) = 1;
6699 }
6700
6701 /* Put anything which is on the parmdecls chain and which is
6702 not a PARM_DECL onto the list NONPARMS. (The types of
6703 non-parm things which might appear on the list include
6704 enumerators and NULL-named TYPE_DECL nodes.) Complain about
6705 any actual PARM_DECLs not matched with any names. */
6706
6707 nonparms = 0;
6708 for (parm = parmdecls; parm;)
6709 {
6710 tree next = TREE_CHAIN (parm);
6711 TREE_CHAIN (parm) = 0;
6712
6713 if (TREE_CODE (parm) != PARM_DECL)
6714 nonparms = chainon (nonparms, parm);
6715 else
6716 {
6717 /* Complain about args with incomplete types. */
6718 if (!COMPLETE_TYPE_P (TREE_TYPE (parm)))
6719 {
6720 error_with_decl (parm, "parameter `%s' has incomplete type");
6721 TREE_TYPE (parm) = error_mark_node;
6722 }
6723
6724 if (! DECL_WEAK (parm))
6725 {
6726 error_with_decl (parm,
6727 "declaration for parameter `%s' but no such parameter");
6728 /* Pretend the parameter was not missing.
6729 This gets us to a standard state and minimizes
6730 further error messages. */
6731 specparms
6732 = chainon (specparms,
6733 tree_cons (parm, NULL_TREE, NULL_TREE));
6734 }
6735 }
6736
6737 parm = next;
6738 }
6739
6740 /* Chain the declarations together in the order of the list of
6741 names. Store that chain in the function decl, replacing the
6742 list of names. */
6743 parm = specparms;
6744 DECL_ARGUMENTS (fndecl) = 0;
6745 {
6746 tree last;
6747 for (last = 0; parm; parm = TREE_CHAIN (parm))
6748 if (TREE_PURPOSE (parm))
6749 {
6750 if (last == 0)
6751 DECL_ARGUMENTS (fndecl) = TREE_PURPOSE (parm);
6752 else
6753 TREE_CHAIN (last) = TREE_PURPOSE (parm);
6754 last = TREE_PURPOSE (parm);
6755 TREE_CHAIN (last) = 0;
6756 }
6757 }
6758
6759 /* If there was a previous prototype,
6760 set the DECL_ARG_TYPE of each argument according to
6761 the type previously specified, and report any mismatches. */
6762
6763 if (TYPE_ARG_TYPES (TREE_TYPE (fndecl)))
6764 {
6765 tree type;
6766 for (parm = DECL_ARGUMENTS (fndecl),
6767 type = TYPE_ARG_TYPES (TREE_TYPE (fndecl));
6768 parm || (type && (TYPE_MAIN_VARIANT (TREE_VALUE (type))
6769 != void_type_node));
6770 parm = TREE_CHAIN (parm), type = TREE_CHAIN (type))
6771 {
6772 if (parm == 0 || type == 0
6773 || TYPE_MAIN_VARIANT (TREE_VALUE (type)) == void_type_node)
6774 {
6775 error ("number of arguments doesn't match prototype");
6776 error_with_file_and_line (current_function_prototype_file,
6777 current_function_prototype_line,
6778 "prototype declaration");
6779 break;
6780 }
6781 /* Type for passing arg must be consistent with that
6782 declared for the arg. ISO C says we take the unqualified
6783 type for parameters declared with qualified type. */
6784 if (! comptypes (TYPE_MAIN_VARIANT (DECL_ARG_TYPE (parm)),
6785 TYPE_MAIN_VARIANT (TREE_VALUE (type))))
6786 {
6787 if (TYPE_MAIN_VARIANT (TREE_TYPE (parm))
6788 == TYPE_MAIN_VARIANT (TREE_VALUE (type)))
6789 {
6790 /* Adjust argument to match prototype. E.g. a previous
6791 `int foo(float);' prototype causes
6792 `int foo(x) float x; {...}' to be treated like
6793 `int foo(float x) {...}'. This is particularly
6794 useful for argument types like uid_t. */
6795 DECL_ARG_TYPE (parm) = TREE_TYPE (parm);
6796
6797 if (PROMOTE_PROTOTYPES
6798 && INTEGRAL_TYPE_P (TREE_TYPE (parm))
6799 && TYPE_PRECISION (TREE_TYPE (parm))
6800 < TYPE_PRECISION (integer_type_node))
6801 DECL_ARG_TYPE (parm) = integer_type_node;
6802
6803 if (pedantic)
6804 {
6805 pedwarn ("promoted argument `%s' doesn't match prototype",
6806 IDENTIFIER_POINTER (DECL_NAME (parm)));
6807 warning_with_file_and_line
6808 (current_function_prototype_file,
6809 current_function_prototype_line,
6810 "prototype declaration");
6811 }
6812 }
6813 /* If -traditional, allow `int' argument to match
6814 `unsigned' prototype. */
6815 else if (! (flag_traditional
6816 && TYPE_MAIN_VARIANT (TREE_TYPE (parm)) == integer_type_node
6817 && TYPE_MAIN_VARIANT (TREE_VALUE (type)) == unsigned_type_node))
6818 {
6819 error ("argument `%s' doesn't match prototype",
6820 IDENTIFIER_POINTER (DECL_NAME (parm)));
6821 error_with_file_and_line (current_function_prototype_file,
6822 current_function_prototype_line,
6823 "prototype declaration");
6824 }
6825 }
6826 }
6827 TYPE_ACTUAL_ARG_TYPES (TREE_TYPE (fndecl)) = 0;
6828 }
6829
6830 /* Otherwise, create a prototype that would match. */
6831
6832 else
6833 {
6834 tree actual = 0, last = 0, type;
6835
6836 for (parm = DECL_ARGUMENTS (fndecl); parm; parm = TREE_CHAIN (parm))
6837 {
6838 type = tree_cons (NULL_TREE, DECL_ARG_TYPE (parm), NULL_TREE);
6839 if (last)
6840 TREE_CHAIN (last) = type;
6841 else
6842 actual = type;
6843 last = type;
6844 }
6845 type = tree_cons (NULL_TREE, void_type_node, NULL_TREE);
6846 if (last)
6847 TREE_CHAIN (last) = type;
6848 else
6849 actual = type;
6850
6851 /* We are going to assign a new value for the TYPE_ACTUAL_ARG_TYPES
6852 of the type of this function, but we need to avoid having this
6853 affect the types of other similarly-typed functions, so we must
6854 first force the generation of an identical (but separate) type
6855 node for the relevant function type. The new node we create
6856 will be a variant of the main variant of the original function
6857 type. */
6858
6859 TREE_TYPE (fndecl) = build_type_copy (TREE_TYPE (fndecl));
6860
6861 TYPE_ACTUAL_ARG_TYPES (TREE_TYPE (fndecl)) = actual;
6862 }
6863
6864 /* Now store the final chain of decls for the arguments
6865 as the decl-chain of the current lexical scope.
6866 Put the enumerators in as well, at the front so that
6867 DECL_ARGUMENTS is not modified. */
6868
6869 storedecls (chainon (nonparms, DECL_ARGUMENTS (fndecl)));
6870 }
6871
6872 /* Make sure the binding level for the top of the function body
6873 gets a BLOCK if there are any in the function.
6874 Otherwise, the dbx output is wrong. */
6875
6876 keep_next_if_subblocks = 1;
6877
6878 /* ??? This might be an improvement,
6879 but needs to be thought about some more. */
6880#if 0
6881 keep_next_level_flag = 1;
6882#endif
6883
6884 /* Write a record describing this function definition to the prototypes
6885 file (if requested). */
6886
6887 gen_aux_info_record (fndecl, 1, 0, prototype);
6888
6889 /* Initialize the RTL code for the function. */
6890 init_function_start (fndecl, input_filename, lineno);
6891
6892 /* Begin the statement tree for this function. */
6893 begin_stmt_tree (&DECL_SAVED_TREE (current_function_decl));
6894
6895 /* If this is a nested function, save away the sizes of any
6896 variable-size types so that we can expand them when generating
6897 RTL. */
6898 if (context)
6899 {
6900 tree t;
6901
6902 DECL_LANG_SPECIFIC (fndecl)->pending_sizes
6903 = nreverse (get_pending_sizes ());
6904 for (t = DECL_LANG_SPECIFIC (fndecl)->pending_sizes;
6905 t;
6906 t = TREE_CHAIN (t))
6907 SAVE_EXPR_CONTEXT (TREE_VALUE (t)) = context;
6908 }
6909
6910 /* This function is being processed in whole-function mode. */
6911 cfun->x_whole_function_mode_p = 1;
6912
6913 /* Even though we're inside a function body, we still don't want to
6914 call expand_expr to calculate the size of a variable-sized array.
6915 We haven't necessarily assigned RTL to all variables yet, so it's
6916 not safe to try to expand expressions involving them. */
6917 immediate_size_expand = 0;
6918 cfun->x_dont_save_pending_sizes_p = 1;
6919
6920 warn_shadow = saved_warn_shadow;
6921}
6922
6923/* Finish up a function declaration and compile that function
6924 all the way to assembler language output. The free the storage
6925 for the function definition.
6926
6927 This is called after parsing the body of the function definition.
6928
6929 NESTED is nonzero if the function being finished is nested in another.
6930 CAN_DEFER_P is nonzero if the function may be deferred. */
6931
6932void
6933finish_function (nested, can_defer_p)
6934 int nested;
6935 int can_defer_p;
6936{
6937 tree fndecl = current_function_decl;
6938
6939#if 0
6940 /* This caused &foo to be of type ptr-to-const-function which then
6941 got a warning when stored in a ptr-to-function variable. */
6942 TREE_READONLY (fndecl) = 1;
6943#endif
6944
6945 poplevel (1, 0, 1);
6946 BLOCK_SUPERCONTEXT (DECL_INITIAL (fndecl)) = fndecl;
6947
6948 /* Must mark the RESULT_DECL as being in this function. */
6949
6950 DECL_CONTEXT (DECL_RESULT (fndecl)) = fndecl;
6951
6952 /* Obey `register' declarations if `setjmp' is called in this fn. */
6953 if (flag_traditional && current_function_calls_setjmp)
6954 {
6955 setjmp_protect (DECL_INITIAL (fndecl));
6956 setjmp_protect_args ();
6957 }
6958
6959 if (MAIN_NAME_P (DECL_NAME (fndecl)) && flag_hosted)
6960 {
6961 if (TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (fndecl)))
6962 != integer_type_node)
6963 {
6964 /* If warn_main is 1 (-Wmain) or 2 (-Wall), we have already warned.
6965 If warn_main is -1 (-Wno-main) we don't want to be warned. */
6966 if (! warn_main)
6967 pedwarn_with_decl (fndecl, "return type of `%s' is not `int'");
6968 }
6969 else
6970 {
6971#ifdef DEFAULT_MAIN_RETURN
6972 /* Make it so that `main' always returns success by default. */
6973 DEFAULT_MAIN_RETURN;
6974#else
6975 if (flag_isoc99)
6976 c_expand_return (integer_zero_node);
6977#endif
6978 }
6979 }
6980
6981 finish_fname_decls ();
6982
6983 /* Tie off the statement tree for this function. */
6984 finish_stmt_tree (&DECL_SAVED_TREE (fndecl));
6985
6986 /* Complain if there's just no return statement. */
6987 if (warn_return_type
6988 && TREE_CODE (TREE_TYPE (TREE_TYPE (fndecl))) != VOID_TYPE
6989 && !current_function_returns_value && !current_function_returns_null
6990 /* Don't complain if we abort. */
6991 && !current_function_returns_abnormally
6992 /* Don't warn for main(). */
6993 && !MAIN_NAME_P (DECL_NAME (fndecl))
6994 /* Or if they didn't actually specify a return type. */
6995 && !C_FUNCTION_IMPLICIT_INT (fndecl)
6996 /* Normally, with -Wreturn-type, flow will complain. Unless we're an
6997 inline function, as we might never be compiled separately. */
6998 && DECL_INLINE (fndecl))
6999 warning ("no return statement in function returning non-void");
7000
7001 /* Clear out memory we no longer need. */
7002 free_after_parsing (cfun);
7003 /* Since we never call rest_of_compilation, we never clear
7004 CFUN. Do so explicitly. */
7005 free_after_compilation (cfun);
7006 cfun = NULL;
7007
7008 if (! nested)
7009 {
7010 /* Generate RTL for the body of this function. */
7011 c_expand_body (fndecl, nested, can_defer_p);
7012
7013 /* Let the error reporting routines know that we're outside a
7014 function. For a nested function, this value is used in
7015 pop_c_function_context and then reset via pop_function_context. */
7016 current_function_decl = NULL;
7017 }
7018}
7019
7020/* Generate the RTL for a deferred function FNDECL. */
7021
7022void
7023c_expand_deferred_function (fndecl)
7024 tree fndecl;
7025{
7026 /* DECL_INLINE or DECL_RESULT might got cleared after the inline
7027 function was deferred, e.g. in duplicate_decls. */
7028 if (DECL_INLINE (fndecl) && DECL_RESULT (fndecl))
7029 {
7030 c_expand_body (fndecl, 0, 0);
7031 current_function_decl = NULL;
7032 }
7033}
7034
7035/* Generate the RTL for the body of FNDECL. If NESTED_P is non-zero,
7036 then we are already in the process of generating RTL for another
7037 function. If can_defer_p is zero, we won't attempt to defer the
7038 generation of RTL. */
7039
7040static void
7041c_expand_body (fndecl, nested_p, can_defer_p)
7042 tree fndecl;
7043 int nested_p, can_defer_p;
7044{
7045 int uninlinable = 1;
7046
7047 /* There's no reason to do any of the work here if we're only doing
7048 semantic analysis; this code just generates RTL. */
7049 if (flag_syntax_only)
7050 return;
7051
7052 if (flag_inline_trees)
7053 {
7054 /* First, cache whether the current function is inlinable. Some
7055 predicates depend on cfun and current_function_decl to
7056 function completely. */
7057 timevar_push (TV_INTEGRATION);
7058 uninlinable = ! tree_inlinable_function_p (fndecl);
7059
7060 if (! uninlinable && can_defer_p
7061 /* Save function tree for inlining. Should return 0 if the
7062 language does not support function deferring or the
7063 function could not be deferred. */
7064 && defer_fn (fndecl))
7065 {
7066 /* Let the back-end know that this function exists. */
7067 (*debug_hooks->deferred_inline_function) (fndecl);
7068 timevar_pop (TV_INTEGRATION);
7069 return;
7070 }
7071
7072 /* Then, inline any functions called in it. */
7073 optimize_inline_calls (fndecl);
7074 timevar_pop (TV_INTEGRATION);
7075 }
7076
7077 timevar_push (TV_EXPAND);
7078
7079 if (nested_p)
7080 {
7081 /* Make sure that we will evaluate variable-sized types involved
7082 in our function's type. */
7083 expand_pending_sizes (DECL_LANG_SPECIFIC (fndecl)->pending_sizes);
7084 /* Squirrel away our current state. */
7085 push_function_context ();
7086 }
7087
7088 /* Initialize the RTL code for the function. */
7089 current_function_decl = fndecl;
7090 input_filename = DECL_SOURCE_FILE (fndecl);
7091 init_function_start (fndecl, input_filename, DECL_SOURCE_LINE (fndecl));
7092
7093 /* This function is being processed in whole-function mode. */
7094 cfun->x_whole_function_mode_p = 1;
7095
7096 /* Even though we're inside a function body, we still don't want to
7097 call expand_expr to calculate the size of a variable-sized array.
7098 We haven't necessarily assigned RTL to all variables yet, so it's
7099 not safe to try to expand expressions involving them. */
7100 immediate_size_expand = 0;
7101 cfun->x_dont_save_pending_sizes_p = 1;
7102
7103 /* If this is a varargs function, inform function.c. */
7104 if (c_function_varargs)
7105 mark_varargs ();
7106
7107 /* Set up parameters and prepare for return, for the function. */
7108 expand_function_start (fndecl, 0);
7109
7110 /* If this function is `main', emit a call to `__main'
7111 to run global initializers, etc. */
7112 if (DECL_NAME (fndecl)
7113 && MAIN_NAME_P (DECL_NAME (fndecl))
7114 && DECL_CONTEXT (fndecl) == NULL_TREE)
7115 expand_main_function ();
7116
7117 /* Generate the RTL for this function. */
7118 expand_stmt (DECL_SAVED_TREE (fndecl));
7119 if (uninlinable)
7120 {
7121 /* Allow the body of the function to be garbage collected. */
7122 DECL_SAVED_TREE (fndecl) = NULL_TREE;
7123 }
7124
7125 /* We hard-wired immediate_size_expand to zero above.
7126 expand_function_end will decrement this variable. So, we set the
7127 variable to one here, so that after the decrement it will remain
7128 zero. */
7129 immediate_size_expand = 1;
7130
7131 /* Allow language dialects to perform special processing. */
7132 if (lang_expand_function_end)
7133 (*lang_expand_function_end) ();
7134
7135 /* Generate rtl for function exit. */
7136 expand_function_end (input_filename, lineno, 0);
7137
7138 /* If this is a nested function, protect the local variables in the stack
7139 above us from being collected while we're compiling this function. */
7140 if (nested_p)
7141 ggc_push_context ();
7142
7143 /* Run the optimizers and output the assembler code for this function. */
7144 rest_of_compilation (fndecl);
7145
7146 /* Undo the GC context switch. */
7147 if (nested_p)
7148 ggc_pop_context ();
7149
7150 /* With just -W, complain only if function returns both with
7151 and without a value. */
7152 if (extra_warnings
7153 && current_function_returns_value
7154 && current_function_returns_null)
7155 warning ("this function may return with or without a value");
7156
7157 /* If requested, warn about function definitions where the function will
7158 return a value (usually of some struct or union type) which itself will
7159 take up a lot of stack space. */
7160
7161 if (warn_larger_than && !DECL_EXTERNAL (fndecl) && TREE_TYPE (fndecl))
7162 {
7163 tree ret_type = TREE_TYPE (TREE_TYPE (fndecl));
7164
7165 if (ret_type && TYPE_SIZE_UNIT (ret_type)
7166 && TREE_CODE (TYPE_SIZE_UNIT (ret_type)) == INTEGER_CST
7167 && 0 < compare_tree_int (TYPE_SIZE_UNIT (ret_type),
7168 larger_than_size))
7169 {
7170 unsigned int size_as_int
7171 = TREE_INT_CST_LOW (TYPE_SIZE_UNIT (ret_type));
7172
7173 if (compare_tree_int (TYPE_SIZE_UNIT (ret_type), size_as_int) == 0)
7174 warning_with_decl (fndecl,
7175 "size of return value of `%s' is %u bytes",
7176 size_as_int);
7177 else
7178 warning_with_decl (fndecl,
7179 "size of return value of `%s' is larger than %d bytes",
7180 larger_than_size);
7181 }
7182 }
7183
7184 if (DECL_SAVED_INSNS (fndecl) == 0 && ! nested_p
7185 && ! flag_inline_trees)
7186 {
7187 /* Stop pointing to the local nodes about to be freed.
7188 But DECL_INITIAL must remain nonzero so we know this
7189 was an actual function definition.
7190 For a nested function, this is done in pop_c_function_context.
7191 If rest_of_compilation set this to 0, leave it 0. */
7192 if (DECL_INITIAL (fndecl) != 0)
7193 DECL_INITIAL (fndecl) = error_mark_node;
7194
7195 DECL_ARGUMENTS (fndecl) = 0;
7196 }
7197
7198 if (DECL_STATIC_CONSTRUCTOR (fndecl))
7199 {
7200 if (targetm.have_ctors_dtors)
7201 (* targetm.asm_out.constructor) (XEXP (DECL_RTL (fndecl), 0),
7202 DEFAULT_INIT_PRIORITY);
7203 else
7204 static_ctors = tree_cons (NULL_TREE, fndecl, static_ctors);
7205 }
7206
7207 if (DECL_STATIC_DESTRUCTOR (fndecl))
7208 {
7209 if (targetm.have_ctors_dtors)
7210 (* targetm.asm_out.destructor) (XEXP (DECL_RTL (fndecl), 0),
7211 DEFAULT_INIT_PRIORITY);
7212 else
7213 static_dtors = tree_cons (NULL_TREE, fndecl, static_dtors);
7214 }
7215
7216 if (nested_p)
7217 /* Return to the enclosing function. */
7218 pop_function_context ();
7219 timevar_pop (TV_EXPAND);
7220}
7221
7222/* Check the declarations given in a for-loop for satisfying the C99
7223 constraints. */
7224void
7225check_for_loop_decls ()
7226{
7227 tree t;
7228
7229 if (!flag_isoc99)
7230 {
7231 /* If we get here, declarations have been used in a for loop without
7232 the C99 for loop scope. This doesn't make much sense, so don't
7233 allow it. */
7234 error ("`for' loop initial declaration used outside C99 mode");
7235 return;
7236 }
7237 /* C99 subclause 6.8.5 paragraph 3:
7238
7239 [#3] The declaration part of a for statement shall only
7240 declare identifiers for objects having storage class auto or
7241 register.
7242
7243 It isn't clear whether, in this sentence, "identifiers" binds to
7244 "shall only declare" or to "objects" - that is, whether all identifiers
7245 declared must be identifiers for objects, or whether the restriction
7246 only applies to those that are. (A question on this in comp.std.c
7247 in November 2000 received no answer.) We implement the strictest
7248 interpretation, to avoid creating an extension which later causes
7249 problems. */
7250
7251 for (t = gettags (); t; t = TREE_CHAIN (t))
7252 {
7253 if (TREE_PURPOSE (t) != 0)
7254 {
7255 enum tree_code code = TREE_CODE (TREE_VALUE (t));
7256
7257 if (code == RECORD_TYPE)
7258 error ("`struct %s' declared in `for' loop initial declaration",
7259 IDENTIFIER_POINTER (TREE_PURPOSE (t)));
7260 else if (code == UNION_TYPE)
7261 error ("`union %s' declared in `for' loop initial declaration",
7262 IDENTIFIER_POINTER (TREE_PURPOSE (t)));
7263 else
7264 error ("`enum %s' declared in `for' loop initial declaration",
7265 IDENTIFIER_POINTER (TREE_PURPOSE (t)));
7266 }
7267 }
7268
7269 for (t = getdecls (); t; t = TREE_CHAIN (t))
7270 {
7271 if (TREE_CODE (t) != VAR_DECL && DECL_NAME (t))
7272 error_with_decl (t, "declaration of non-variable `%s' in `for' loop initial declaration");
7273 else if (TREE_STATIC (t))
7274 error_with_decl (t, "declaration of static variable `%s' in `for' loop initial declaration");
7275 else if (DECL_EXTERNAL (t))
7276 error_with_decl (t, "declaration of `extern' variable `%s' in `for' loop initial declaration");
7277 }
7278}
7279
7280/* Save and restore the variables in this file and elsewhere
7281 that keep track of the progress of compilation of the current function.
7282 Used for nested functions. */
7283
7284struct c_language_function
7285{
7286 struct language_function base;
7287 tree named_labels;
7288 tree shadowed_labels;
7289 int returns_value;
7290 int returns_null;
7291 int returns_abnormally;
7292 int warn_about_return_type;
7293 int extern_inline;
7294 struct binding_level *binding_level;
7295};
7296
7297/* Save and reinitialize the variables
7298 used during compilation of a C function. */
7299
7300void
7301push_c_function_context (f)
7302 struct function *f;
7303{
7304 struct c_language_function *p;
7305 p = ((struct c_language_function *)
7306 xmalloc (sizeof (struct c_language_function)));
7307 f->language = (struct language_function *) p;
7308
7309 p->base.x_stmt_tree = c_stmt_tree;
7310 p->base.x_scope_stmt_stack = c_scope_stmt_stack;
7311 p->named_labels = named_labels;
7312 p->shadowed_labels = shadowed_labels;
7313 p->returns_value = current_function_returns_value;
7314 p->returns_null = current_function_returns_null;
7315 p->returns_abnormally = current_function_returns_abnormally;
7316 p->warn_about_return_type = warn_about_return_type;
7317 p->extern_inline = current_extern_inline;
7318 p->binding_level = current_binding_level;
7319}
7320
7321/* Restore the variables used during compilation of a C function. */
7322
7323void
7324pop_c_function_context (f)
7325 struct function *f;
7326{
7327 struct c_language_function *p
7328 = (struct c_language_function *) f->language;
7329 tree link;
7330
7331 /* Bring back all the labels that were shadowed. */
7332 for (link = shadowed_labels; link; link = TREE_CHAIN (link))
7333 if (DECL_NAME (TREE_VALUE (link)) != 0)
7334 IDENTIFIER_LABEL_VALUE (DECL_NAME (TREE_VALUE (link)))
7335 = TREE_VALUE (link);
7336
7337 if (DECL_SAVED_INSNS (current_function_decl) == 0
7338 && DECL_SAVED_TREE (current_function_decl) == NULL_TREE)
7339 {
7340 /* Stop pointing to the local nodes about to be freed. */
7341 /* But DECL_INITIAL must remain nonzero so we know this
7342 was an actual function definition. */
7343 DECL_INITIAL (current_function_decl) = error_mark_node;
7344 DECL_ARGUMENTS (current_function_decl) = 0;
7345 }
7346
7347 c_stmt_tree = p->base.x_stmt_tree;
7348 c_scope_stmt_stack = p->base.x_scope_stmt_stack;
7349 named_labels = p->named_labels;
7350 shadowed_labels = p->shadowed_labels;
7351 current_function_returns_value = p->returns_value;
7352 current_function_returns_null = p->returns_null;
7353 current_function_returns_abnormally = p->returns_abnormally;
7354 warn_about_return_type = p->warn_about_return_type;
7355 current_extern_inline = p->extern_inline;
7356 current_binding_level = p->binding_level;
7357
7358 free (p);
7359 f->language = 0;
7360}
7361
7362/* Mark the language specific parts of F for GC. */
7363
7364void
7365mark_c_function_context (f)
7366 struct function *f;
7367{
7368 struct c_language_function *p
7369 = (struct c_language_function *) f->language;
7370
7371 if (p == 0)
7372 return;
7373
7374 mark_c_language_function (&p->base);
7375 ggc_mark_tree (p->shadowed_labels);
7376 ggc_mark_tree (p->named_labels);
7377 mark_binding_level (&p->binding_level);
7378}
7379
7380/* Copy the DECL_LANG_SPECIFIC data associated with NODE. */
7381
7382void
7383copy_lang_decl (decl)
7384 tree decl;
7385{
7386 struct lang_decl *ld;
7387
7388 if (!DECL_LANG_SPECIFIC (decl))
7389 return;
7390
7391 ld = (struct lang_decl *) ggc_alloc (sizeof (struct lang_decl));
7392 memcpy ((char *) ld, (char *) DECL_LANG_SPECIFIC (decl),
7393 sizeof (struct lang_decl));
7394 DECL_LANG_SPECIFIC (decl) = ld;
7395}
7396
7397/* Mark the language specific bits in T for GC. */
7398
7399void
7400lang_mark_tree (t)
7401 tree t;
7402{
7403 if (TREE_CODE (t) == IDENTIFIER_NODE)
7404 {
7405 struct lang_identifier *i = (struct lang_identifier *) t;
7406 ggc_mark_tree (i->global_value);
7407 ggc_mark_tree (i->local_value);
7408 ggc_mark_tree (i->label_value);
7409 ggc_mark_tree (i->implicit_decl);
7410 ggc_mark_tree (i->error_locus);
7411 ggc_mark_tree (i->limbo_value);
7412 }
7413 else if (TYPE_P (t) && TYPE_LANG_SPECIFIC (t))
7414 ggc_mark (TYPE_LANG_SPECIFIC (t));
7415 else if (DECL_P (t) && DECL_LANG_SPECIFIC (t))
7416 {
7417 ggc_mark (DECL_LANG_SPECIFIC (t));
7418 c_mark_lang_decl (&DECL_LANG_SPECIFIC (t)->base);
7419 ggc_mark_tree (DECL_LANG_SPECIFIC (t)->pending_sizes);
7420 }
7421}
7422
7423/* The functions below are required for functionality of doing
7424 function at once processing in the C front end. Currently these
7425 functions are not called from anywhere in the C front end, but as
7426 these changes continue, that will change. */
7427
7428/* Returns non-zero if the current statement is a full expression,
7429 i.e. temporaries created during that statement should be destroyed
7430 at the end of the statement. */
7431
7432int
7433stmts_are_full_exprs_p ()
7434{
7435 return 0;
7436}
7437
7438/* Returns the stmt_tree (if any) to which statements are currently
7439 being added. If there is no active statement-tree, NULL is
7440 returned. */
7441
7442stmt_tree
7443current_stmt_tree ()
7444{
7445 return &c_stmt_tree;
7446}
7447
7448/* Returns the stack of SCOPE_STMTs for the current function. */
7449
7450tree *
7451current_scope_stmt_stack ()
7452{
7453 return &c_scope_stmt_stack;
7454}
7455
7456/* Nonzero if TYPE is an anonymous union or struct type. Always 0 in
7457 C. */
7458
7459int
7460anon_aggr_type_p (node)
7461 tree node ATTRIBUTE_UNUSED;
7462{
7463 return 0;
7464}
7465
7466/* Dummy function in place of callback used by C++. */
7467
7468void
7469extract_interface_info ()
7470{
7471}
7472
7473/* Return a new COMPOUND_STMT, after adding it to the current
7474 statement tree. */
7475
7476tree
7477c_begin_compound_stmt ()
7478{
7479 tree stmt;
7480
7481 /* Create the COMPOUND_STMT. */
7482 stmt = add_stmt (build_stmt (COMPOUND_STMT, NULL_TREE));
7483
7484 return stmt;
7485}
7486
7487/* Expand T (a DECL_STMT) if it declares an entity not handled by the
7488 common code. */
7489
7490void
7491c_expand_decl_stmt (t)
7492 tree t;
7493{
7494 tree decl = DECL_STMT_DECL (t);
7495
7496 /* Expand nested functions. */
7497 if (TREE_CODE (decl) == FUNCTION_DECL
7498 && DECL_CONTEXT (decl) == current_function_decl
7499 && DECL_SAVED_TREE (decl))
7500 c_expand_body (decl, /*nested_p=*/1, /*can_defer_p=*/0);
7501}
7502
7503/* Return the IDENTIFIER_GLOBAL_VALUE of T, for use in common code, since
7504 the definition of IDENTIFIER_GLOBAL_VALUE is different for C and C++. */
7505
7506tree
7507identifier_global_value (t)
7508 tree t;
7509{
7510 return IDENTIFIER_GLOBAL_VALUE (t);
7511}
7512
7513/* Record a builtin type for C. If NAME is non-NULL, it is the name used;
7514 otherwise the name is found in ridpointers from RID_INDEX. */
7515
7516void
7517record_builtin_type (rid_index, name, type)
7518 enum rid rid_index;
7519 const char *name;
7520 tree type;
7521{
7522 tree id;
7523 if (name == 0)
7524 id = ridpointers[(int) rid_index];
7525 else
7526 id = get_identifier (name);
7527 pushdecl (build_decl (TYPE_DECL, id, type));
7528}
7529
7530/* Build the void_list_node (void_type_node having been created). */
7531tree
7532build_void_list_node ()
7533{
7534 tree t = build_tree_list (NULL_TREE, void_type_node);
7535 return t;
7536}