1 /* Process declarations and variables for C compiler.
2 Copyright (C) 1988, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000,
3 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011
4 Free Software Foundation, Inc.
6 This file is part of GCC.
8 GCC is free software; you can redistribute it and/or modify it under
9 the terms of the GNU General Public License as published by the Free
10 Software Foundation; either version 3, or (at your option) any later
13 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
14 WARRANTY; without even the implied warranty of MERCHANTABILITY or
15 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
18 You should have received a copy of the GNU General Public License
19 along with GCC; see the file COPYING3. If not see
20 <http://www.gnu.org/licenses/>. */
22 /* Process declarations and symbol lookup for C front end.
23 Also constructs types; the standard scalar types at initialization,
24 and structure, union, array and enum types when they are declared. */
26 /* ??? not all decl nodes are given the most useful possible
27 line numbers. For example, the CONST_DECLs for enum values. */
31 #include "coretypes.h"
36 #include "tree-inline.h"
48 #include "c-family/c-common.h"
49 #include "c-family/c-objc.h"
50 #include "c-family/c-pragma.h"
52 #include "langhooks.h"
53 #include "tree-mudflap.h"
54 #include "tree-iterator.h"
55 #include "diagnostic-core.h"
56 #include "tree-dump.h"
59 #include "langhooks-def.h"
60 #include "pointer-set.h"
62 #include "c-family/c-ada-spec.h"
64 /* In grokdeclarator, distinguish syntactic contexts of declarators. */
66 { NORMAL
, /* Ordinary declaration */
67 FUNCDEF
, /* Function definition */
68 PARM
, /* Declaration of parm before function body */
69 FIELD
, /* Declaration inside struct or union */
70 TYPENAME
}; /* Typename (inside cast or sizeof) */
72 /* States indicating how grokdeclarator() should handle declspecs marked
73 with __attribute__((deprecated)). An object declared as
74 __attribute__((deprecated)) suppresses warnings of uses of other
77 enum deprecated_states
{
83 /* Nonzero if we have seen an invalid cross reference
84 to a struct, union, or enum, but not yet printed the message. */
85 tree pending_invalid_xref
;
87 /* File and line to appear in the eventual error message. */
88 location_t pending_invalid_xref_location
;
90 /* The file and line that the prototype came from if this is an
91 old-style definition; used for diagnostics in
92 store_parm_decls_oldstyle. */
94 static location_t current_function_prototype_locus
;
96 /* Whether this prototype was built-in. */
98 static bool current_function_prototype_built_in
;
100 /* The argument type information of this prototype. */
102 static tree current_function_prototype_arg_types
;
104 /* The argument information structure for the function currently being
107 static struct c_arg_info
*current_function_arg_info
;
109 /* The obstack on which parser and related data structures, which are
110 not live beyond their top-level declaration or definition, are
112 struct obstack parser_obstack
;
114 /* The current statement tree. */
116 static GTY(()) struct stmt_tree_s c_stmt_tree
;
118 /* State saving variables. */
122 /* A list of decls to be made automatically visible in each file scope. */
123 static GTY(()) tree visible_builtins
;
125 /* Set to 0 at beginning of a function definition, set to 1 if
126 a return statement that specifies a return value is seen. */
128 int current_function_returns_value
;
130 /* Set to 0 at beginning of a function definition, set to 1 if
131 a return statement with no argument is seen. */
133 int current_function_returns_null
;
135 /* Set to 0 at beginning of a function definition, set to 1 if
136 a call to a noreturn function is seen. */
138 int current_function_returns_abnormally
;
140 /* Set to nonzero by `grokdeclarator' for a function
141 whose return type is defaulted, if warnings for this are desired. */
143 static int warn_about_return_type
;
145 /* Nonzero when the current toplevel function contains a declaration
146 of a nested function which is never defined. */
148 static bool undef_nested_function
;
151 /* Each c_binding structure describes one binding of an identifier to
152 a decl. All the decls in a scope - irrespective of namespace - are
153 chained together by the ->prev field, which (as the name implies)
154 runs in reverse order. All the decls in a given namespace bound to
155 a given identifier are chained by the ->shadowed field, which runs
156 from inner to outer scopes.
158 The ->decl field usually points to a DECL node, but there are two
159 exceptions. In the namespace of type tags, the bound entity is a
160 RECORD_TYPE, UNION_TYPE, or ENUMERAL_TYPE node. If an undeclared
161 identifier is encountered, it is bound to error_mark_node to
162 suppress further errors about that identifier in the current
165 The ->u.type field stores the type of the declaration in this scope;
166 if NULL, the type is the type of the ->decl field. This is only of
167 relevance for objects with external or internal linkage which may
168 be redeclared in inner scopes, forming composite types that only
169 persist for the duration of those scopes. In the external scope,
170 this stores the composite of all the types declared for this
171 object, visible or not. The ->inner_comp field (used only at file
172 scope) stores whether an incomplete array type at file scope was
173 completed at an inner scope to an array size other than 1.
175 The ->u.label field is used for labels. It points to a structure
176 which stores additional information used for warnings.
178 The depth field is copied from the scope structure that holds this
179 decl. It is used to preserve the proper ordering of the ->shadowed
180 field (see bind()) and also for a handful of special-case checks.
181 Finally, the invisible bit is true for a decl which should be
182 ignored for purposes of normal name lookup, and the nested bit is
183 true for a decl that's been bound a second time in an inner scope;
184 in all such cases, the binding in the outer scope will have its
185 invisible bit true. */
187 struct GTY((chain_next ("%h.prev"))) c_binding
{
188 union GTY(()) { /* first so GTY desc can use decl */
189 tree
GTY((tag ("0"))) type
; /* the type in this scope */
190 struct c_label_vars
* GTY((tag ("1"))) label
; /* for warnings */
191 } GTY((desc ("TREE_CODE (%0.decl) == LABEL_DECL"))) u
;
192 tree decl
; /* the decl bound */
193 tree id
; /* the identifier it's bound to */
194 struct c_binding
*prev
; /* the previous decl in this scope */
195 struct c_binding
*shadowed
; /* the innermost decl shadowed by this one */
196 unsigned int depth
: 28; /* depth of this scope */
197 BOOL_BITFIELD invisible
: 1; /* normal lookup should ignore this binding */
198 BOOL_BITFIELD nested
: 1; /* do not set DECL_CONTEXT when popping */
199 BOOL_BITFIELD inner_comp
: 1; /* incomplete array completed in inner scope */
200 BOOL_BITFIELD in_struct
: 1; /* currently defined as struct field */
201 location_t locus
; /* location for nested bindings */
203 #define B_IN_SCOPE(b1, b2) ((b1)->depth == (b2)->depth)
204 #define B_IN_CURRENT_SCOPE(b) ((b)->depth == current_scope->depth)
205 #define B_IN_FILE_SCOPE(b) ((b)->depth == 1 /*file_scope->depth*/)
206 #define B_IN_EXTERNAL_SCOPE(b) ((b)->depth == 0 /*external_scope->depth*/)
208 #define I_SYMBOL_BINDING(node) \
209 (((struct lang_identifier *) IDENTIFIER_NODE_CHECK(node))->symbol_binding)
210 #define I_SYMBOL_DECL(node) \
211 (I_SYMBOL_BINDING(node) ? I_SYMBOL_BINDING(node)->decl : 0)
213 #define I_TAG_BINDING(node) \
214 (((struct lang_identifier *) IDENTIFIER_NODE_CHECK(node))->tag_binding)
215 #define I_TAG_DECL(node) \
216 (I_TAG_BINDING(node) ? I_TAG_BINDING(node)->decl : 0)
218 #define I_LABEL_BINDING(node) \
219 (((struct lang_identifier *) IDENTIFIER_NODE_CHECK(node))->label_binding)
220 #define I_LABEL_DECL(node) \
221 (I_LABEL_BINDING(node) ? I_LABEL_BINDING(node)->decl : 0)
223 /* Each C symbol points to three linked lists of c_binding structures.
224 These describe the values of the identifier in the three different
225 namespaces defined by the language. */
227 struct GTY(()) lang_identifier
{
228 struct c_common_identifier common_id
;
229 struct c_binding
*symbol_binding
; /* vars, funcs, constants, typedefs */
230 struct c_binding
*tag_binding
; /* struct/union/enum tags */
231 struct c_binding
*label_binding
; /* labels */
234 /* Validate c-lang.c's assumptions. */
235 extern char C_SIZEOF_STRUCT_LANG_IDENTIFIER_isnt_accurate
236 [(sizeof(struct lang_identifier
) == C_SIZEOF_STRUCT_LANG_IDENTIFIER
) ? 1 : -1];
238 /* The resulting tree type. */
240 union GTY((desc ("TREE_CODE (&%h.generic) == IDENTIFIER_NODE"),
241 chain_next ("(union lang_tree_node *) c_tree_chain_next (&%h.generic)"))) lang_tree_node
243 union tree_node
GTY ((tag ("0"),
244 desc ("tree_node_structure (&%h)")))
246 struct lang_identifier
GTY ((tag ("1"))) identifier
;
249 /* Track bindings and other things that matter for goto warnings. For
250 efficiency, we do not gather all the decls at the point of
251 definition. Instead, we point into the bindings structure. As
252 scopes are popped, we update these structures and gather the decls
253 that matter at that time. */
255 struct GTY(()) c_spot_bindings
{
256 /* The currently open scope which holds bindings defined when the
257 label was defined or the goto statement was found. */
258 struct c_scope
*scope
;
259 /* The bindings in the scope field which were defined at the point
260 of the label or goto. This lets us look at older or newer
261 bindings in the scope, as appropriate. */
262 struct c_binding
*bindings_in_scope
;
263 /* The number of statement expressions that have started since this
264 label or goto statement was defined. This is zero if we are at
265 the same statement expression level. It is positive if we are in
266 a statement expression started since this spot. It is negative
267 if this spot was in a statement expression and we have left
270 /* Whether we started in a statement expression but are no longer in
271 it. This is set to true if stmt_exprs ever goes negative. */
275 /* This structure is used to keep track of bindings seen when a goto
276 statement is defined. This is only used if we see the goto
277 statement before we see the label. */
279 struct GTY(()) c_goto_bindings
{
280 /* The location of the goto statement. */
282 /* The bindings of the goto statement. */
283 struct c_spot_bindings goto_bindings
;
286 typedef struct c_goto_bindings
*c_goto_bindings_p
;
287 DEF_VEC_P(c_goto_bindings_p
);
288 DEF_VEC_ALLOC_P(c_goto_bindings_p
,gc
);
290 /* The additional information we keep track of for a label binding.
291 These fields are updated as scopes are popped. */
293 struct GTY(()) c_label_vars
{
294 /* The shadowed c_label_vars, when one label shadows another (which
295 can only happen using a __label__ declaration). */
296 struct c_label_vars
*shadowed
;
297 /* The bindings when the label was defined. */
298 struct c_spot_bindings label_bindings
;
299 /* A list of decls that we care about: decls about which we should
300 warn if a goto branches to this label from later in the function.
301 Decls are added to this list as scopes are popped. We only add
302 the decls that matter. */
303 VEC(tree
,gc
) *decls_in_scope
;
304 /* A list of goto statements to this label. This is only used for
305 goto statements seen before the label was defined, so that we can
306 issue appropriate warnings for them. */
307 VEC(c_goto_bindings_p
,gc
) *gotos
;
310 /* Each c_scope structure describes the complete contents of one
311 scope. Four scopes are distinguished specially: the innermost or
312 current scope, the innermost function scope, the file scope (always
313 the second to outermost) and the outermost or external scope.
315 Most declarations are recorded in the current scope.
317 All normal label declarations are recorded in the innermost
318 function scope, as are bindings of undeclared identifiers to
319 error_mark_node. (GCC permits nested functions as an extension,
320 hence the 'innermost' qualifier.) Explicitly declared labels
321 (using the __label__ extension) appear in the current scope.
323 Being in the file scope (current_scope == file_scope) causes
324 special behavior in several places below. Also, under some
325 conditions the Objective-C front end records declarations in the
326 file scope even though that isn't the current scope.
328 All declarations with external linkage are recorded in the external
329 scope, even if they aren't visible there; this models the fact that
330 such declarations are visible to the entire program, and (with a
331 bit of cleverness, see pushdecl) allows diagnosis of some violations
332 of C99 6.2.2p7 and 6.2.7p2:
334 If, within the same translation unit, the same identifier appears
335 with both internal and external linkage, the behavior is
338 All declarations that refer to the same object or function shall
339 have compatible type; otherwise, the behavior is undefined.
341 Initially only the built-in declarations, which describe compiler
342 intrinsic functions plus a subset of the standard library, are in
345 The order of the blocks list matters, and it is frequently appended
346 to. To avoid having to walk all the way to the end of the list on
347 each insertion, or reverse the list later, we maintain a pointer to
348 the last list entry. (FIXME: It should be feasible to use a reversed
351 The bindings list is strictly in reverse order of declarations;
352 pop_scope relies on this. */
355 struct GTY((chain_next ("%h.outer"))) c_scope
{
356 /* The scope containing this one. */
357 struct c_scope
*outer
;
359 /* The next outermost function scope. */
360 struct c_scope
*outer_function
;
362 /* All bindings in this scope. */
363 struct c_binding
*bindings
;
365 /* For each scope (except the global one), a chain of BLOCK nodes
366 for all the scopes that were entered and exited one level down. */
370 /* The depth of this scope. Used to keep the ->shadowed chain of
371 bindings sorted innermost to outermost. */
372 unsigned int depth
: 28;
374 /* True if we are currently filling this scope with parameter
376 BOOL_BITFIELD parm_flag
: 1;
378 /* True if we saw [*] in this scope. Used to give an error messages
379 if these appears in a function definition. */
380 BOOL_BITFIELD had_vla_unspec
: 1;
382 /* True if we already complained about forward parameter decls
383 in this scope. This prevents double warnings on
384 foo (int a; int b; ...) */
385 BOOL_BITFIELD warned_forward_parm_decls
: 1;
387 /* True if this is the outermost block scope of a function body.
388 This scope contains the parameters, the local variables declared
389 in the outermost block, and all the labels (except those in
390 nested functions, or declared at block scope with __label__). */
391 BOOL_BITFIELD function_body
: 1;
393 /* True means make a BLOCK for this scope no matter what. */
394 BOOL_BITFIELD keep
: 1;
396 /* True means that an unsuffixed float constant is _Decimal64. */
397 BOOL_BITFIELD float_const_decimal64
: 1;
399 /* True if this scope has any label bindings. This is used to speed
400 up searching for labels when popping scopes, particularly since
401 labels are normally only found at function scope. */
402 BOOL_BITFIELD has_label_bindings
: 1;
404 /* True if we should issue a warning if a goto statement crosses any
405 of the bindings. We still need to check the list of bindings to
406 find the specific ones we need to warn about. This is true if
407 decl_jump_unsafe would return true for any of the bindings. This
408 is used to avoid looping over all the bindings unnecessarily. */
409 BOOL_BITFIELD has_jump_unsafe_decl
: 1;
412 /* The scope currently in effect. */
414 static GTY(()) struct c_scope
*current_scope
;
416 /* The innermost function scope. Ordinary (not explicitly declared)
417 labels, bindings to error_mark_node, and the lazily-created
418 bindings of __func__ and its friends get this scope. */
420 static GTY(()) struct c_scope
*current_function_scope
;
422 /* The C file scope. This is reset for each input translation unit. */
424 static GTY(()) struct c_scope
*file_scope
;
426 /* The outermost scope. This is used for all declarations with
427 external linkage, and only these, hence the name. */
429 static GTY(()) struct c_scope
*external_scope
;
431 /* A chain of c_scope structures awaiting reuse. */
433 static GTY((deletable
)) struct c_scope
*scope_freelist
;
435 /* A chain of c_binding structures awaiting reuse. */
437 static GTY((deletable
)) struct c_binding
*binding_freelist
;
439 /* Append VAR to LIST in scope SCOPE. */
440 #define SCOPE_LIST_APPEND(scope, list, decl) do { \
441 struct c_scope *s_ = (scope); \
443 if (s_->list##_last) \
444 BLOCK_CHAIN (s_->list##_last) = d_; \
447 s_->list##_last = d_; \
450 /* Concatenate FROM in scope FSCOPE onto TO in scope TSCOPE. */
451 #define SCOPE_LIST_CONCAT(tscope, to, fscope, from) do { \
452 struct c_scope *t_ = (tscope); \
453 struct c_scope *f_ = (fscope); \
455 BLOCK_CHAIN (t_->to##_last) = f_->from; \
458 t_->to##_last = f_->from##_last; \
461 /* A c_inline_static structure stores details of a static identifier
462 referenced in a definition of a function that may be an inline
463 definition if no subsequent declaration of that function uses
464 "extern" or does not use "inline". */
466 struct GTY((chain_next ("%h.next"))) c_inline_static
{
467 /* The location for a diagnostic. */
470 /* The function that may be an inline definition. */
473 /* The object or function referenced. */
476 /* What sort of reference this is. */
477 enum c_inline_static_type type
;
479 /* The next such structure or NULL. */
480 struct c_inline_static
*next
;
483 /* List of static identifiers used or referenced in functions that may
484 be inline definitions. */
485 static GTY(()) struct c_inline_static
*c_inline_statics
;
487 /* True means unconditionally make a BLOCK for the next scope pushed. */
489 static bool keep_next_level_flag
;
491 /* True means the next call to push_scope will be the outermost scope
492 of a function body, so do not push a new scope, merely cease
493 expecting parameter decls. */
495 static bool next_is_function_body
;
497 /* A VEC of pointers to c_binding structures. */
499 typedef struct c_binding
*c_binding_ptr
;
500 DEF_VEC_P(c_binding_ptr
);
501 DEF_VEC_ALLOC_P(c_binding_ptr
,heap
);
503 /* Information that we keep for a struct or union while it is being
506 struct c_struct_parse_info
508 /* If warn_cxx_compat, a list of types defined within this
510 VEC(tree
,heap
) *struct_types
;
511 /* If warn_cxx_compat, a list of field names which have bindings,
512 and which are defined in this struct, but which are not defined
513 in any enclosing struct. This is used to clear the in_struct
514 field of the c_bindings structure. */
515 VEC(c_binding_ptr
,heap
) *fields
;
516 /* If warn_cxx_compat, a list of typedef names used when defining
517 fields in this struct. */
518 VEC(tree
,heap
) *typedefs_seen
;
521 /* Information for the struct or union currently being parsed, or
522 NULL if not parsing a struct or union. */
523 static struct c_struct_parse_info
*struct_parse_info
;
525 /* Forward declarations. */
526 static tree
lookup_name_in_scope (tree
, struct c_scope
*);
527 static tree
c_make_fname_decl (location_t
, tree
, int);
528 static tree
grokdeclarator (const struct c_declarator
*,
529 struct c_declspecs
*,
530 enum decl_context
, bool, tree
*, tree
*, tree
*,
531 bool *, enum deprecated_states
);
532 static tree
grokparms (struct c_arg_info
*, bool);
533 static void layout_array_type (tree
);
535 /* T is a statement. Add it to the statement-tree. This is the
536 C/ObjC version--C++ has a slightly different version of this
542 enum tree_code code
= TREE_CODE (t
);
544 if (CAN_HAVE_LOCATION_P (t
) && code
!= LABEL_EXPR
)
546 if (!EXPR_HAS_LOCATION (t
))
547 SET_EXPR_LOCATION (t
, input_location
);
550 if (code
== LABEL_EXPR
|| code
== CASE_LABEL_EXPR
)
551 STATEMENT_LIST_HAS_LABEL (cur_stmt_list
) = 1;
553 /* Add T to the statement-tree. Non-side-effect statements need to be
554 recorded during statement expressions. */
555 if (!building_stmt_list_p ())
557 append_to_statement_list_force (t
, &cur_stmt_list
);
562 /* Return true if we will want to say something if a goto statement
566 decl_jump_unsafe (tree decl
)
568 if (error_operand_p (decl
))
571 /* Always warn about crossing variably modified types. */
572 if ((TREE_CODE (decl
) == VAR_DECL
|| TREE_CODE (decl
) == TYPE_DECL
)
573 && variably_modified_type_p (TREE_TYPE (decl
), NULL_TREE
))
576 /* Otherwise, only warn if -Wgoto-misses-init and this is an
577 initialized automatic decl. */
578 if (warn_jump_misses_init
579 && TREE_CODE (decl
) == VAR_DECL
580 && !TREE_STATIC (decl
)
581 && DECL_INITIAL (decl
) != NULL_TREE
)
589 c_print_identifier (FILE *file
, tree node
, int indent
)
591 print_node (file
, "symbol", I_SYMBOL_DECL (node
), indent
+ 4);
592 print_node (file
, "tag", I_TAG_DECL (node
), indent
+ 4);
593 print_node (file
, "label", I_LABEL_DECL (node
), indent
+ 4);
594 if (C_IS_RESERVED_WORD (node
) && C_RID_CODE (node
) != RID_CXX_COMPAT_WARN
)
596 tree rid
= ridpointers
[C_RID_CODE (node
)];
597 indent_to (file
, indent
+ 4);
598 fprintf (file
, "rid " HOST_PTR_PRINTF
" \"%s\"",
599 (void *) rid
, IDENTIFIER_POINTER (rid
));
603 /* Establish a binding between NAME, an IDENTIFIER_NODE, and DECL,
604 which may be any of several kinds of DECL or TYPE or error_mark_node,
605 in the scope SCOPE. */
607 bind (tree name
, tree decl
, struct c_scope
*scope
, bool invisible
,
608 bool nested
, location_t locus
)
610 struct c_binding
*b
, **here
;
612 if (binding_freelist
)
614 b
= binding_freelist
;
615 binding_freelist
= b
->prev
;
618 b
= ggc_alloc_c_binding ();
623 b
->depth
= scope
->depth
;
624 b
->invisible
= invisible
;
632 b
->prev
= scope
->bindings
;
635 if (decl_jump_unsafe (decl
))
636 scope
->has_jump_unsafe_decl
= 1;
641 switch (TREE_CODE (decl
))
643 case LABEL_DECL
: here
= &I_LABEL_BINDING (name
); break;
646 case RECORD_TYPE
: here
= &I_TAG_BINDING (name
); break;
652 case ERROR_MARK
: here
= &I_SYMBOL_BINDING (name
); break;
658 /* Locate the appropriate place in the chain of shadowed decls
659 to insert this binding. Normally, scope == current_scope and
660 this does nothing. */
661 while (*here
&& (*here
)->depth
> scope
->depth
)
662 here
= &(*here
)->shadowed
;
668 /* Clear the binding structure B, stick it on the binding_freelist,
669 and return the former value of b->prev. This is used by pop_scope
670 and get_parm_info to iterate destructively over all the bindings
671 from a given scope. */
672 static struct c_binding
*
673 free_binding_and_advance (struct c_binding
*b
)
675 struct c_binding
*prev
= b
->prev
;
677 memset (b
, 0, sizeof (struct c_binding
));
678 b
->prev
= binding_freelist
;
679 binding_freelist
= b
;
684 /* Bind a label. Like bind, but skip fields which aren't used for
685 labels, and add the LABEL_VARS value. */
687 bind_label (tree name
, tree label
, struct c_scope
*scope
,
688 struct c_label_vars
*label_vars
)
692 bind (name
, label
, scope
, /*invisible=*/false, /*nested=*/false,
695 scope
->has_label_bindings
= true;
698 gcc_assert (b
->decl
== label
);
699 label_vars
->shadowed
= b
->u
.label
;
700 b
->u
.label
= label_vars
;
703 /* Hook called at end of compilation to assume 1 elt
704 for a file-scope tentative array defn that wasn't complete before. */
707 c_finish_incomplete_decl (tree decl
)
709 if (TREE_CODE (decl
) == VAR_DECL
)
711 tree type
= TREE_TYPE (decl
);
712 if (type
!= error_mark_node
713 && TREE_CODE (type
) == ARRAY_TYPE
714 && !DECL_EXTERNAL (decl
)
715 && TYPE_DOMAIN (type
) == 0)
717 warning_at (DECL_SOURCE_LOCATION (decl
),
718 0, "array %q+D assumed to have one element", decl
);
720 complete_array_type (&TREE_TYPE (decl
), NULL_TREE
, true);
722 layout_decl (decl
, 0);
727 /* Record that inline function FUNC contains a reference (location
728 LOC) to static DECL (file-scope or function-local according to
732 record_inline_static (location_t loc
, tree func
, tree decl
,
733 enum c_inline_static_type type
)
735 struct c_inline_static
*csi
= ggc_alloc_c_inline_static ();
737 csi
->function
= func
;
738 csi
->static_decl
= decl
;
740 csi
->next
= c_inline_statics
;
741 c_inline_statics
= csi
;
744 /* Check for references to static declarations in inline functions at
745 the end of the translation unit and diagnose them if the functions
746 are still inline definitions. */
749 check_inline_statics (void)
751 struct c_inline_static
*csi
;
752 for (csi
= c_inline_statics
; csi
; csi
= csi
->next
)
754 if (DECL_EXTERNAL (csi
->function
))
758 pedwarn (csi
->location
, 0,
759 "%qD is static but used in inline function %qD "
760 "which is not static", csi
->static_decl
, csi
->function
);
763 pedwarn (csi
->location
, 0,
764 "%q+D is static but declared in inline function %qD "
765 "which is not static", csi
->static_decl
, csi
->function
);
771 c_inline_statics
= NULL
;
774 /* Fill in a c_spot_bindings structure. If DEFINING is true, set it
775 for the current state, otherwise set it to uninitialized. */
778 set_spot_bindings (struct c_spot_bindings
*p
, bool defining
)
782 p
->scope
= current_scope
;
783 p
->bindings_in_scope
= current_scope
->bindings
;
788 p
->bindings_in_scope
= NULL
;
791 p
->left_stmt_expr
= false;
794 /* Update spot bindings P as we pop out of SCOPE. Return true if we
795 should push decls for a label. */
798 update_spot_bindings (struct c_scope
*scope
, struct c_spot_bindings
*p
)
800 if (p
->scope
!= scope
)
802 /* This label or goto is defined in some other scope, or it is a
803 label which is not yet defined. There is nothing to
808 /* Adjust the spot bindings to refer to the bindings already defined
809 in the enclosing scope. */
810 p
->scope
= scope
->outer
;
811 p
->bindings_in_scope
= p
->scope
->bindings
;
816 /* The Objective-C front-end often needs to determine the current scope. */
819 objc_get_current_scope (void)
821 return current_scope
;
824 /* The following function is used only by Objective-C. It needs to live here
825 because it accesses the innards of c_scope. */
828 objc_mark_locals_volatile (void *enclosing_blk
)
830 struct c_scope
*scope
;
833 for (scope
= current_scope
;
834 scope
&& scope
!= enclosing_blk
;
835 scope
= scope
->outer
)
837 for (b
= scope
->bindings
; b
; b
= b
->prev
)
838 objc_volatilize_decl (b
->decl
);
840 /* Do not climb up past the current function. */
841 if (scope
->function_body
)
846 /* Return true if we are in the global binding level. */
849 global_bindings_p (void)
851 return current_scope
== file_scope
;
855 keep_next_level (void)
857 keep_next_level_flag
= true;
860 /* Set the flag for the FLOAT_CONST_DECIMAL64 pragma being ON. */
863 set_float_const_decimal64 (void)
865 current_scope
->float_const_decimal64
= true;
868 /* Clear the flag for the FLOAT_CONST_DECIMAL64 pragma. */
871 clear_float_const_decimal64 (void)
873 current_scope
->float_const_decimal64
= false;
876 /* Return nonzero if an unsuffixed float constant is _Decimal64. */
879 float_const_decimal64_p (void)
881 return current_scope
->float_const_decimal64
;
884 /* Identify this scope as currently being filled with parameters. */
887 declare_parm_level (void)
889 current_scope
->parm_flag
= true;
895 if (next_is_function_body
)
897 /* This is the transition from the parameters to the top level
898 of the function body. These are the same scope
899 (C99 6.2.1p4,6) so we do not push another scope structure.
900 next_is_function_body is set only by store_parm_decls, which
901 in turn is called when and only when we are about to
902 encounter the opening curly brace for the function body.
904 The outermost block of a function always gets a BLOCK node,
905 because the debugging output routines expect that each
906 function has at least one BLOCK. */
907 current_scope
->parm_flag
= false;
908 current_scope
->function_body
= true;
909 current_scope
->keep
= true;
910 current_scope
->outer_function
= current_function_scope
;
911 current_function_scope
= current_scope
;
913 keep_next_level_flag
= false;
914 next_is_function_body
= false;
916 /* The FLOAT_CONST_DECIMAL64 pragma applies to nested scopes. */
917 if (current_scope
->outer
)
918 current_scope
->float_const_decimal64
919 = current_scope
->outer
->float_const_decimal64
;
921 current_scope
->float_const_decimal64
= false;
925 struct c_scope
*scope
;
928 scope
= scope_freelist
;
929 scope_freelist
= scope
->outer
;
932 scope
= ggc_alloc_cleared_c_scope ();
934 /* The FLOAT_CONST_DECIMAL64 pragma applies to nested scopes. */
936 scope
->float_const_decimal64
= current_scope
->float_const_decimal64
;
938 scope
->float_const_decimal64
= false;
940 scope
->keep
= keep_next_level_flag
;
941 scope
->outer
= current_scope
;
942 scope
->depth
= current_scope
? (current_scope
->depth
+ 1) : 0;
944 /* Check for scope depth overflow. Unlikely (2^28 == 268,435,456) but
946 if (current_scope
&& scope
->depth
== 0)
949 sorry ("GCC supports only %u nested scopes", scope
->depth
);
952 current_scope
= scope
;
953 keep_next_level_flag
= false;
957 /* This is called when we are leaving SCOPE. For each label defined
958 in SCOPE, add any appropriate decls to its decls_in_scope fields.
959 These are the decls whose initialization will be skipped by a goto
960 later in the function. */
963 update_label_decls (struct c_scope
*scope
)
970 if (s
->has_label_bindings
)
974 for (b
= s
->bindings
; b
!= NULL
; b
= b
->prev
)
976 struct c_label_vars
*label_vars
;
977 struct c_binding
*b1
;
980 struct c_goto_bindings
*g
;
982 if (TREE_CODE (b
->decl
) != LABEL_DECL
)
984 label_vars
= b
->u
.label
;
986 b1
= label_vars
->label_bindings
.bindings_in_scope
;
987 if (label_vars
->label_bindings
.scope
== NULL
)
990 hjud
= label_vars
->label_bindings
.scope
->has_jump_unsafe_decl
;
991 if (update_spot_bindings (scope
, &label_vars
->label_bindings
))
993 /* This label is defined in this scope. */
996 for (; b1
!= NULL
; b1
= b1
->prev
)
998 /* A goto from later in the function to this
999 label will never see the initialization
1000 of B1, if any. Save it to issue a
1001 warning if needed. */
1002 if (decl_jump_unsafe (b1
->decl
))
1003 VEC_safe_push (tree
, gc
,
1004 label_vars
->decls_in_scope
,
1010 /* Update the bindings of any goto statements associated
1012 FOR_EACH_VEC_ELT (c_goto_bindings_p
, label_vars
->gotos
, ix
, g
)
1013 update_spot_bindings (scope
, &g
->goto_bindings
);
1017 /* Don't search beyond the current function. */
1018 if (s
== current_function_scope
)
1025 /* Set the TYPE_CONTEXT of all of TYPE's variants to CONTEXT. */
1028 set_type_context (tree type
, tree context
)
1030 for (type
= TYPE_MAIN_VARIANT (type
); type
;
1031 type
= TYPE_NEXT_VARIANT (type
))
1032 TYPE_CONTEXT (type
) = context
;
1035 /* Exit a scope. Restore the state of the identifier-decl mappings
1036 that were in effect when this scope was entered. Return a BLOCK
1037 node containing all the DECLs in this scope that are of interest
1038 to debug info generation. */
1043 struct c_scope
*scope
= current_scope
;
1044 tree block
, context
, p
;
1045 struct c_binding
*b
;
1047 bool functionbody
= scope
->function_body
;
1048 bool keep
= functionbody
|| scope
->keep
|| scope
->bindings
;
1050 update_label_decls (scope
);
1052 /* If appropriate, create a BLOCK to record the decls for the life
1053 of this function. */
1057 block
= make_node (BLOCK
);
1058 BLOCK_SUBBLOCKS (block
) = scope
->blocks
;
1059 TREE_USED (block
) = 1;
1061 /* In each subblock, record that this is its superior. */
1062 for (p
= scope
->blocks
; p
; p
= BLOCK_CHAIN (p
))
1063 BLOCK_SUPERCONTEXT (p
) = block
;
1065 BLOCK_VARS (block
) = 0;
1068 /* The TYPE_CONTEXTs for all of the tagged types belonging to this
1069 scope must be set so that they point to the appropriate
1070 construct, i.e. either to the current FUNCTION_DECL node, or
1071 else to the BLOCK node we just constructed.
1073 Note that for tagged types whose scope is just the formal
1074 parameter list for some function type specification, we can't
1075 properly set their TYPE_CONTEXTs here, because we don't have a
1076 pointer to the appropriate FUNCTION_TYPE node readily available
1077 to us. For those cases, the TYPE_CONTEXTs of the relevant tagged
1078 type nodes get set in `grokdeclarator' as soon as we have created
1079 the FUNCTION_TYPE node which will represent the "scope" for these
1080 "parameter list local" tagged types. */
1081 if (scope
->function_body
)
1082 context
= current_function_decl
;
1083 else if (scope
== file_scope
)
1085 tree file_decl
= build_translation_unit_decl (NULL_TREE
);
1086 context
= file_decl
;
1091 /* Clear all bindings in this scope. */
1092 for (b
= scope
->bindings
; b
; b
= free_binding_and_advance (b
))
1095 switch (TREE_CODE (p
))
1098 /* Warnings for unused labels, errors for undefined labels. */
1099 if (TREE_USED (p
) && !DECL_INITIAL (p
))
1101 error ("label %q+D used but not defined", p
);
1102 DECL_INITIAL (p
) = error_mark_node
;
1105 warn_for_unused_label (p
);
1107 /* Labels go in BLOCK_VARS. */
1108 DECL_CHAIN (p
) = BLOCK_VARS (block
);
1109 BLOCK_VARS (block
) = p
;
1110 gcc_assert (I_LABEL_BINDING (b
->id
) == b
);
1111 I_LABEL_BINDING (b
->id
) = b
->shadowed
;
1113 /* Also pop back to the shadowed label_vars. */
1114 release_tree_vector (b
->u
.label
->decls_in_scope
);
1115 b
->u
.label
= b
->u
.label
->shadowed
;
1121 set_type_context (p
, context
);
1123 /* Types may not have tag-names, in which case the type
1124 appears in the bindings list with b->id NULL. */
1127 gcc_assert (I_TAG_BINDING (b
->id
) == b
);
1128 I_TAG_BINDING (b
->id
) = b
->shadowed
;
1133 /* Propagate TREE_ADDRESSABLE from nested functions to their
1134 containing functions. */
1135 if (!TREE_ASM_WRITTEN (p
)
1136 && DECL_INITIAL (p
) != 0
1137 && TREE_ADDRESSABLE (p
)
1138 && DECL_ABSTRACT_ORIGIN (p
) != 0
1139 && DECL_ABSTRACT_ORIGIN (p
) != p
)
1140 TREE_ADDRESSABLE (DECL_ABSTRACT_ORIGIN (p
)) = 1;
1141 if (!DECL_EXTERNAL (p
)
1142 && !DECL_INITIAL (p
)
1143 && scope
!= file_scope
1144 && scope
!= external_scope
)
1146 error ("nested function %q+D declared but never defined", p
);
1147 undef_nested_function
= true;
1149 else if (DECL_DECLARED_INLINE_P (p
)
1151 && !DECL_INITIAL (p
))
1153 /* C99 6.7.4p6: "a function with external linkage... declared
1154 with an inline function specifier ... shall also be defined
1155 in the same translation unit." */
1156 if (!flag_gnu89_inline
)
1157 pedwarn (input_location
, 0,
1158 "inline function %q+D declared but never defined", p
);
1159 DECL_EXTERNAL (p
) = 1;
1165 /* Warnings for unused variables. */
1166 if ((!TREE_USED (p
) || !DECL_READ_P (p
))
1167 && !TREE_NO_WARNING (p
)
1168 && !DECL_IN_SYSTEM_HEADER (p
)
1170 && !DECL_ARTIFICIAL (p
)
1171 && scope
!= file_scope
1172 && scope
!= external_scope
)
1175 warning (OPT_Wunused_variable
, "unused variable %q+D", p
);
1176 else if (DECL_CONTEXT (p
) == current_function_decl
)
1177 warning_at (DECL_SOURCE_LOCATION (p
),
1178 OPT_Wunused_but_set_variable
,
1179 "variable %qD set but not used", p
);
1184 error ("type of array %q+D completed incompatibly with"
1185 " implicit initialization", p
);
1192 /* All of these go in BLOCK_VARS, but only if this is the
1193 binding in the home scope. */
1196 DECL_CHAIN (p
) = BLOCK_VARS (block
);
1197 BLOCK_VARS (block
) = p
;
1199 else if (VAR_OR_FUNCTION_DECL_P (p
))
1201 /* For block local externs add a special
1202 DECL_EXTERNAL decl for debug info generation. */
1203 tree extp
= copy_node (p
);
1205 DECL_EXTERNAL (extp
) = 1;
1206 TREE_STATIC (extp
) = 0;
1207 TREE_PUBLIC (extp
) = 1;
1208 DECL_INITIAL (extp
) = NULL_TREE
;
1209 DECL_LANG_SPECIFIC (extp
) = NULL
;
1210 DECL_CONTEXT (extp
) = current_function_decl
;
1211 if (TREE_CODE (p
) == FUNCTION_DECL
)
1213 DECL_RESULT (extp
) = NULL_TREE
;
1214 DECL_SAVED_TREE (extp
) = NULL_TREE
;
1215 DECL_STRUCT_FUNCTION (extp
) = NULL
;
1217 if (b
->locus
!= UNKNOWN_LOCATION
)
1218 DECL_SOURCE_LOCATION (extp
) = b
->locus
;
1219 DECL_CHAIN (extp
) = BLOCK_VARS (block
);
1220 BLOCK_VARS (block
) = extp
;
1222 /* If this is the file scope set DECL_CONTEXT of each decl to
1223 the TRANSLATION_UNIT_DECL. This makes same_translation_unit_p
1225 if (scope
== file_scope
)
1227 DECL_CONTEXT (p
) = context
;
1228 if (TREE_CODE (p
) == TYPE_DECL
1229 && TREE_TYPE (p
) != error_mark_node
)
1230 set_type_context (TREE_TYPE (p
), context
);
1234 /* Parameters go in DECL_ARGUMENTS, not BLOCK_VARS, and have
1235 already been put there by store_parm_decls. Unused-
1236 parameter warnings are handled by function.c.
1237 error_mark_node obviously does not go in BLOCK_VARS and
1238 does not get unused-variable warnings. */
1241 /* It is possible for a decl not to have a name. We get
1242 here with b->id NULL in this case. */
1245 gcc_assert (I_SYMBOL_BINDING (b
->id
) == b
);
1246 I_SYMBOL_BINDING (b
->id
) = b
->shadowed
;
1247 if (b
->shadowed
&& b
->shadowed
->u
.type
)
1248 TREE_TYPE (b
->shadowed
->decl
) = b
->shadowed
->u
.type
;
1258 /* Dispose of the block that we just made inside some higher level. */
1259 if ((scope
->function_body
|| scope
== file_scope
) && context
)
1261 DECL_INITIAL (context
) = block
;
1262 BLOCK_SUPERCONTEXT (block
) = context
;
1264 else if (scope
->outer
)
1267 SCOPE_LIST_APPEND (scope
->outer
, blocks
, block
);
1268 /* If we did not make a block for the scope just exited, any
1269 blocks made for inner scopes must be carried forward so they
1270 will later become subblocks of something else. */
1271 else if (scope
->blocks
)
1272 SCOPE_LIST_CONCAT (scope
->outer
, blocks
, scope
, blocks
);
1275 /* Pop the current scope, and free the structure for reuse. */
1276 current_scope
= scope
->outer
;
1277 if (scope
->function_body
)
1278 current_function_scope
= scope
->outer_function
;
1280 memset (scope
, 0, sizeof (struct c_scope
));
1281 scope
->outer
= scope_freelist
;
1282 scope_freelist
= scope
;
1288 push_file_scope (void)
1296 file_scope
= current_scope
;
1298 start_fname_decls ();
1300 for (decl
= visible_builtins
; decl
; decl
= DECL_CHAIN (decl
))
1301 bind (DECL_NAME (decl
), decl
, file_scope
,
1302 /*invisible=*/false, /*nested=*/true, DECL_SOURCE_LOCATION (decl
));
1306 pop_file_scope (void)
1308 /* In case there were missing closebraces, get us back to the global
1310 while (current_scope
!= file_scope
)
1313 /* __FUNCTION__ is defined at file scope (""). This
1314 call may not be necessary as my tests indicate it
1315 still works without it. */
1316 finish_fname_decls ();
1318 check_inline_statics ();
1320 /* This is the point to write out a PCH if we're doing that.
1321 In that case we do not want to do anything else. */
1324 c_common_write_pch ();
1328 /* Pop off the file scope and close this translation unit. */
1332 maybe_apply_pending_pragma_weaks ();
1335 /* Adjust the bindings for the start of a statement expression. */
1338 c_bindings_start_stmt_expr (struct c_spot_bindings
* switch_bindings
)
1340 struct c_scope
*scope
;
1342 for (scope
= current_scope
; scope
!= NULL
; scope
= scope
->outer
)
1344 struct c_binding
*b
;
1346 if (!scope
->has_label_bindings
)
1349 for (b
= scope
->bindings
; b
!= NULL
; b
= b
->prev
)
1351 struct c_label_vars
*label_vars
;
1353 struct c_goto_bindings
*g
;
1355 if (TREE_CODE (b
->decl
) != LABEL_DECL
)
1357 label_vars
= b
->u
.label
;
1358 ++label_vars
->label_bindings
.stmt_exprs
;
1359 FOR_EACH_VEC_ELT (c_goto_bindings_p
, label_vars
->gotos
, ix
, g
)
1360 ++g
->goto_bindings
.stmt_exprs
;
1364 if (switch_bindings
!= NULL
)
1365 ++switch_bindings
->stmt_exprs
;
1368 /* Adjust the bindings for the end of a statement expression. */
1371 c_bindings_end_stmt_expr (struct c_spot_bindings
*switch_bindings
)
1373 struct c_scope
*scope
;
1375 for (scope
= current_scope
; scope
!= NULL
; scope
= scope
->outer
)
1377 struct c_binding
*b
;
1379 if (!scope
->has_label_bindings
)
1382 for (b
= scope
->bindings
; b
!= NULL
; b
= b
->prev
)
1384 struct c_label_vars
*label_vars
;
1386 struct c_goto_bindings
*g
;
1388 if (TREE_CODE (b
->decl
) != LABEL_DECL
)
1390 label_vars
= b
->u
.label
;
1391 --label_vars
->label_bindings
.stmt_exprs
;
1392 if (label_vars
->label_bindings
.stmt_exprs
< 0)
1394 label_vars
->label_bindings
.left_stmt_expr
= true;
1395 label_vars
->label_bindings
.stmt_exprs
= 0;
1397 FOR_EACH_VEC_ELT (c_goto_bindings_p
, label_vars
->gotos
, ix
, g
)
1399 --g
->goto_bindings
.stmt_exprs
;
1400 if (g
->goto_bindings
.stmt_exprs
< 0)
1402 g
->goto_bindings
.left_stmt_expr
= true;
1403 g
->goto_bindings
.stmt_exprs
= 0;
1409 if (switch_bindings
!= NULL
)
1411 --switch_bindings
->stmt_exprs
;
1412 gcc_assert (switch_bindings
->stmt_exprs
>= 0);
1416 /* Push a definition or a declaration of struct, union or enum tag "name".
1417 "type" should be the type node.
1418 We assume that the tag "name" is not already defined, and has a location
1421 Note that the definition may really be just a forward reference.
1422 In that case, the TYPE_SIZE will be zero. */
1425 pushtag (location_t loc
, tree name
, tree type
)
1427 /* Record the identifier as the type's name if it has none. */
1428 if (name
&& !TYPE_NAME (type
))
1429 TYPE_NAME (type
) = name
;
1430 bind (name
, type
, current_scope
, /*invisible=*/false, /*nested=*/false, loc
);
1432 /* Create a fake NULL-named TYPE_DECL node whose TREE_TYPE will be the
1433 tagged type we just added to the current scope. This fake
1434 NULL-named TYPE_DECL node helps dwarfout.c to know when it needs
1435 to output a representation of a tagged type, and it also gives
1436 us a convenient place to record the "scope start" address for the
1439 TYPE_STUB_DECL (type
) = pushdecl (build_decl (loc
,
1440 TYPE_DECL
, NULL_TREE
, type
));
1442 /* An approximation for now, so we can tell this is a function-scope tag.
1443 This will be updated in pop_scope. */
1444 TYPE_CONTEXT (type
) = DECL_CONTEXT (TYPE_STUB_DECL (type
));
1446 if (warn_cxx_compat
&& name
!= NULL_TREE
)
1448 struct c_binding
*b
= I_SYMBOL_BINDING (name
);
1451 && b
->decl
!= NULL_TREE
1452 && TREE_CODE (b
->decl
) == TYPE_DECL
1453 && (B_IN_CURRENT_SCOPE (b
)
1454 || (current_scope
== file_scope
&& B_IN_EXTERNAL_SCOPE (b
)))
1455 && (TYPE_MAIN_VARIANT (TREE_TYPE (b
->decl
))
1456 != TYPE_MAIN_VARIANT (type
)))
1458 warning_at (loc
, OPT_Wc___compat
,
1459 ("using %qD as both a typedef and a tag is "
1462 if (b
->locus
!= UNKNOWN_LOCATION
)
1463 inform (b
->locus
, "originally defined here");
1468 /* Subroutine of compare_decls. Allow harmless mismatches in return
1469 and argument types provided that the type modes match. This function
1470 return a unified type given a suitable match, and 0 otherwise. */
1473 match_builtin_function_types (tree newtype
, tree oldtype
)
1475 tree newrettype
, oldrettype
;
1476 tree newargs
, oldargs
;
1477 tree trytype
, tryargs
;
1479 /* Accept the return type of the new declaration if same modes. */
1480 oldrettype
= TREE_TYPE (oldtype
);
1481 newrettype
= TREE_TYPE (newtype
);
1483 if (TYPE_MODE (oldrettype
) != TYPE_MODE (newrettype
))
1486 oldargs
= TYPE_ARG_TYPES (oldtype
);
1487 newargs
= TYPE_ARG_TYPES (newtype
);
1490 while (oldargs
|| newargs
)
1494 || !TREE_VALUE (oldargs
)
1495 || !TREE_VALUE (newargs
)
1496 || TYPE_MODE (TREE_VALUE (oldargs
))
1497 != TYPE_MODE (TREE_VALUE (newargs
)))
1500 oldargs
= TREE_CHAIN (oldargs
);
1501 newargs
= TREE_CHAIN (newargs
);
1504 trytype
= build_function_type (newrettype
, tryargs
);
1505 return build_type_attribute_variant (trytype
, TYPE_ATTRIBUTES (oldtype
));
1508 /* Subroutine of diagnose_mismatched_decls. Check for function type
1509 mismatch involving an empty arglist vs a nonempty one and give clearer
1512 diagnose_arglist_conflict (tree newdecl
, tree olddecl
,
1513 tree newtype
, tree oldtype
)
1517 if (TREE_CODE (olddecl
) != FUNCTION_DECL
1518 || !comptypes (TREE_TYPE (oldtype
), TREE_TYPE (newtype
))
1519 || !((!prototype_p (oldtype
) && DECL_INITIAL (olddecl
) == 0)
1520 || (!prototype_p (newtype
) && DECL_INITIAL (newdecl
) == 0)))
1523 t
= TYPE_ARG_TYPES (oldtype
);
1525 t
= TYPE_ARG_TYPES (newtype
);
1526 for (; t
; t
= TREE_CHAIN (t
))
1528 tree type
= TREE_VALUE (t
);
1530 if (TREE_CHAIN (t
) == 0
1531 && TYPE_MAIN_VARIANT (type
) != void_type_node
)
1533 inform (input_location
, "a parameter list with an ellipsis can%'t match "
1534 "an empty parameter name list declaration");
1538 if (c_type_promotes_to (type
) != type
)
1540 inform (input_location
, "an argument type that has a default promotion can%'t match "
1541 "an empty parameter name list declaration");
1547 /* Another subroutine of diagnose_mismatched_decls. OLDDECL is an
1548 old-style function definition, NEWDECL is a prototype declaration.
1549 Diagnose inconsistencies in the argument list. Returns TRUE if
1550 the prototype is compatible, FALSE if not. */
1552 validate_proto_after_old_defn (tree newdecl
, tree newtype
, tree oldtype
)
1554 tree newargs
, oldargs
;
1557 #define END_OF_ARGLIST(t) ((t) == void_type_node)
1559 oldargs
= TYPE_ACTUAL_ARG_TYPES (oldtype
);
1560 newargs
= TYPE_ARG_TYPES (newtype
);
1565 tree oldargtype
= TREE_VALUE (oldargs
);
1566 tree newargtype
= TREE_VALUE (newargs
);
1568 if (oldargtype
== error_mark_node
|| newargtype
== error_mark_node
)
1571 oldargtype
= TYPE_MAIN_VARIANT (oldargtype
);
1572 newargtype
= TYPE_MAIN_VARIANT (newargtype
);
1574 if (END_OF_ARGLIST (oldargtype
) && END_OF_ARGLIST (newargtype
))
1577 /* Reaching the end of just one list means the two decls don't
1578 agree on the number of arguments. */
1579 if (END_OF_ARGLIST (oldargtype
))
1581 error ("prototype for %q+D declares more arguments "
1582 "than previous old-style definition", newdecl
);
1585 else if (END_OF_ARGLIST (newargtype
))
1587 error ("prototype for %q+D declares fewer arguments "
1588 "than previous old-style definition", newdecl
);
1592 /* Type for passing arg must be consistent with that declared
1594 else if (!comptypes (oldargtype
, newargtype
))
1596 error ("prototype for %q+D declares argument %d"
1597 " with incompatible type",
1602 oldargs
= TREE_CHAIN (oldargs
);
1603 newargs
= TREE_CHAIN (newargs
);
1607 /* If we get here, no errors were found, but do issue a warning
1608 for this poor-style construct. */
1609 warning (0, "prototype for %q+D follows non-prototype definition",
1612 #undef END_OF_ARGLIST
1615 /* Subroutine of diagnose_mismatched_decls. Report the location of DECL,
1616 first in a pair of mismatched declarations, using the diagnostic
1619 locate_old_decl (tree decl
)
1621 if (TREE_CODE (decl
) == FUNCTION_DECL
&& DECL_BUILT_IN (decl
))
1623 else if (DECL_INITIAL (decl
))
1624 inform (input_location
, "previous definition of %q+D was here", decl
);
1625 else if (C_DECL_IMPLICIT (decl
))
1626 inform (input_location
, "previous implicit declaration of %q+D was here", decl
);
1628 inform (input_location
, "previous declaration of %q+D was here", decl
);
1631 /* Subroutine of duplicate_decls. Compare NEWDECL to OLDDECL.
1632 Returns true if the caller should proceed to merge the two, false
1633 if OLDDECL should simply be discarded. As a side effect, issues
1634 all necessary diagnostics for invalid or poor-style combinations.
1635 If it returns true, writes the types of NEWDECL and OLDDECL to
1636 *NEWTYPEP and *OLDTYPEP - these may have been adjusted from
1637 TREE_TYPE (NEWDECL, OLDDECL) respectively. */
1640 diagnose_mismatched_decls (tree newdecl
, tree olddecl
,
1641 tree
*newtypep
, tree
*oldtypep
)
1643 tree newtype
, oldtype
;
1644 bool pedwarned
= false;
1645 bool warned
= false;
1648 #define DECL_EXTERN_INLINE(DECL) (DECL_DECLARED_INLINE_P (DECL) \
1649 && DECL_EXTERNAL (DECL))
1651 /* If we have error_mark_node for either decl or type, just discard
1652 the previous decl - we're in an error cascade already. */
1653 if (olddecl
== error_mark_node
|| newdecl
== error_mark_node
)
1655 *oldtypep
= oldtype
= TREE_TYPE (olddecl
);
1656 *newtypep
= newtype
= TREE_TYPE (newdecl
);
1657 if (oldtype
== error_mark_node
|| newtype
== error_mark_node
)
1660 /* Two different categories of symbol altogether. This is an error
1661 unless OLDDECL is a builtin. OLDDECL will be discarded in any case. */
1662 if (TREE_CODE (olddecl
) != TREE_CODE (newdecl
))
1664 if (!(TREE_CODE (olddecl
) == FUNCTION_DECL
1665 && DECL_BUILT_IN (olddecl
)
1666 && !C_DECL_DECLARED_BUILTIN (olddecl
)))
1668 error ("%q+D redeclared as different kind of symbol", newdecl
);
1669 locate_old_decl (olddecl
);
1671 else if (TREE_PUBLIC (newdecl
))
1672 warning (0, "built-in function %q+D declared as non-function",
1675 warning (OPT_Wshadow
, "declaration of %q+D shadows "
1676 "a built-in function", newdecl
);
1680 /* Enumerators have no linkage, so may only be declared once in a
1682 if (TREE_CODE (olddecl
) == CONST_DECL
)
1684 error ("redeclaration of enumerator %q+D", newdecl
);
1685 locate_old_decl (olddecl
);
1689 if (!comptypes (oldtype
, newtype
))
1691 if (TREE_CODE (olddecl
) == FUNCTION_DECL
1692 && DECL_BUILT_IN (olddecl
) && !C_DECL_DECLARED_BUILTIN (olddecl
))
1694 /* Accept harmless mismatch in function types.
1695 This is for the ffs and fprintf builtins. */
1696 tree trytype
= match_builtin_function_types (newtype
, oldtype
);
1698 if (trytype
&& comptypes (newtype
, trytype
))
1699 *oldtypep
= oldtype
= trytype
;
1702 /* If types don't match for a built-in, throw away the
1703 built-in. No point in calling locate_old_decl here, it
1704 won't print anything. */
1705 warning (0, "conflicting types for built-in function %q+D",
1710 else if (TREE_CODE (olddecl
) == FUNCTION_DECL
1711 && DECL_IS_BUILTIN (olddecl
))
1713 /* A conflicting function declaration for a predeclared
1714 function that isn't actually built in. Objective C uses
1715 these. The new declaration silently overrides everything
1716 but the volatility (i.e. noreturn) indication. See also
1717 below. FIXME: Make Objective C use normal builtins. */
1718 TREE_THIS_VOLATILE (newdecl
) |= TREE_THIS_VOLATILE (olddecl
);
1721 /* Permit void foo (...) to match int foo (...) if the latter is
1722 the definition and implicit int was used. See
1723 c-torture/compile/920625-2.c. */
1724 else if (TREE_CODE (newdecl
) == FUNCTION_DECL
&& DECL_INITIAL (newdecl
)
1725 && TYPE_MAIN_VARIANT (TREE_TYPE (oldtype
)) == void_type_node
1726 && TYPE_MAIN_VARIANT (TREE_TYPE (newtype
)) == integer_type_node
1727 && C_FUNCTION_IMPLICIT_INT (newdecl
) && !DECL_INITIAL (olddecl
))
1729 pedwarned
= pedwarn (input_location
, 0,
1730 "conflicting types for %q+D", newdecl
);
1731 /* Make sure we keep void as the return type. */
1732 TREE_TYPE (newdecl
) = *newtypep
= newtype
= oldtype
;
1733 C_FUNCTION_IMPLICIT_INT (newdecl
) = 0;
1735 /* Permit void foo (...) to match an earlier call to foo (...) with
1736 no declared type (thus, implicitly int). */
1737 else if (TREE_CODE (newdecl
) == FUNCTION_DECL
1738 && TYPE_MAIN_VARIANT (TREE_TYPE (newtype
)) == void_type_node
1739 && TYPE_MAIN_VARIANT (TREE_TYPE (oldtype
)) == integer_type_node
1740 && C_DECL_IMPLICIT (olddecl
) && !DECL_INITIAL (olddecl
))
1742 pedwarned
= pedwarn (input_location
, 0,
1743 "conflicting types for %q+D", newdecl
);
1744 /* Make sure we keep void as the return type. */
1745 TREE_TYPE (olddecl
) = *oldtypep
= oldtype
= newtype
;
1749 int new_quals
= TYPE_QUALS (newtype
);
1750 int old_quals
= TYPE_QUALS (oldtype
);
1752 if (new_quals
!= old_quals
)
1754 addr_space_t new_addr
= DECODE_QUAL_ADDR_SPACE (new_quals
);
1755 addr_space_t old_addr
= DECODE_QUAL_ADDR_SPACE (old_quals
);
1756 if (new_addr
!= old_addr
)
1758 if (ADDR_SPACE_GENERIC_P (new_addr
))
1759 error ("conflicting named address spaces (generic vs %s) "
1761 c_addr_space_name (old_addr
), newdecl
);
1762 else if (ADDR_SPACE_GENERIC_P (old_addr
))
1763 error ("conflicting named address spaces (%s vs generic) "
1765 c_addr_space_name (new_addr
), newdecl
);
1767 error ("conflicting named address spaces (%s vs %s) "
1769 c_addr_space_name (new_addr
),
1770 c_addr_space_name (old_addr
),
1774 if (CLEAR_QUAL_ADDR_SPACE (new_quals
)
1775 != CLEAR_QUAL_ADDR_SPACE (old_quals
))
1776 error ("conflicting type qualifiers for %q+D", newdecl
);
1779 error ("conflicting types for %q+D", newdecl
);
1780 diagnose_arglist_conflict (newdecl
, olddecl
, newtype
, oldtype
);
1781 locate_old_decl (olddecl
);
1786 /* Redeclaration of a type is a constraint violation (6.7.2.3p1),
1787 but silently ignore the redeclaration if either is in a system
1788 header. (Conflicting redeclarations were handled above.) This
1789 is allowed for C1X if the types are the same, not just
1791 if (TREE_CODE (newdecl
) == TYPE_DECL
)
1793 bool types_different
= false;
1794 int comptypes_result
;
1797 = comptypes_check_different_types (oldtype
, newtype
, &types_different
);
1799 if (comptypes_result
!= 1 || types_different
)
1801 error ("redefinition of typedef %q+D with different type", newdecl
);
1802 locate_old_decl (olddecl
);
1806 if (DECL_IN_SYSTEM_HEADER (newdecl
)
1807 || DECL_IN_SYSTEM_HEADER (olddecl
)
1808 || TREE_NO_WARNING (newdecl
)
1809 || TREE_NO_WARNING (olddecl
))
1810 return true; /* Allow OLDDECL to continue in use. */
1812 if (variably_modified_type_p (newtype
, NULL
))
1814 error ("redefinition of typedef %q+D with variably modified type",
1816 locate_old_decl (olddecl
);
1818 else if (pedantic
&& !flag_isoc1x
)
1820 pedwarn (input_location
, OPT_pedantic
,
1821 "redefinition of typedef %q+D", newdecl
);
1822 locate_old_decl (olddecl
);
1828 /* Function declarations can either be 'static' or 'extern' (no
1829 qualifier is equivalent to 'extern' - C99 6.2.2p5) and therefore
1830 can never conflict with each other on account of linkage
1831 (6.2.2p4). Multiple definitions are not allowed (6.9p3,5) but
1832 gnu89 mode permits two definitions if one is 'extern inline' and
1833 one is not. The non- extern-inline definition supersedes the
1834 extern-inline definition. */
1836 else if (TREE_CODE (newdecl
) == FUNCTION_DECL
)
1838 /* If you declare a built-in function name as static, or
1839 define the built-in with an old-style definition (so we
1840 can't validate the argument list) the built-in definition is
1841 overridden, but optionally warn this was a bad choice of name. */
1842 if (DECL_BUILT_IN (olddecl
)
1843 && !C_DECL_DECLARED_BUILTIN (olddecl
)
1844 && (!TREE_PUBLIC (newdecl
)
1845 || (DECL_INITIAL (newdecl
)
1846 && !prototype_p (TREE_TYPE (newdecl
)))))
1848 warning (OPT_Wshadow
, "declaration of %q+D shadows "
1849 "a built-in function", newdecl
);
1850 /* Discard the old built-in function. */
1854 if (DECL_INITIAL (newdecl
))
1856 if (DECL_INITIAL (olddecl
))
1858 /* If both decls are in the same TU and the new declaration
1859 isn't overriding an extern inline reject the new decl.
1860 In c99, no overriding is allowed in the same translation
1862 if ((!DECL_EXTERN_INLINE (olddecl
)
1863 || DECL_EXTERN_INLINE (newdecl
)
1864 || (!flag_gnu89_inline
1865 && (!DECL_DECLARED_INLINE_P (olddecl
)
1866 || !lookup_attribute ("gnu_inline",
1867 DECL_ATTRIBUTES (olddecl
)))
1868 && (!DECL_DECLARED_INLINE_P (newdecl
)
1869 || !lookup_attribute ("gnu_inline",
1870 DECL_ATTRIBUTES (newdecl
))))
1872 && same_translation_unit_p (newdecl
, olddecl
))
1874 error ("redefinition of %q+D", newdecl
);
1875 locate_old_decl (olddecl
);
1880 /* If we have a prototype after an old-style function definition,
1881 the argument types must be checked specially. */
1882 else if (DECL_INITIAL (olddecl
)
1883 && !prototype_p (oldtype
) && prototype_p (newtype
)
1884 && TYPE_ACTUAL_ARG_TYPES (oldtype
)
1885 && !validate_proto_after_old_defn (newdecl
, newtype
, oldtype
))
1887 locate_old_decl (olddecl
);
1890 /* A non-static declaration (even an "extern") followed by a
1891 static declaration is undefined behavior per C99 6.2.2p3-5,7.
1892 The same is true for a static forward declaration at block
1893 scope followed by a non-static declaration/definition at file
1894 scope. Static followed by non-static at the same scope is
1895 not undefined behavior, and is the most convenient way to get
1896 some effects (see e.g. what unwind-dw2-fde-glibc.c does to
1897 the definition of _Unwind_Find_FDE in unwind-dw2-fde.c), but
1898 we do diagnose it if -Wtraditional. */
1899 if (TREE_PUBLIC (olddecl
) && !TREE_PUBLIC (newdecl
))
1901 /* Two exceptions to the rule. If olddecl is an extern
1902 inline, or a predeclared function that isn't actually
1903 built in, newdecl silently overrides olddecl. The latter
1904 occur only in Objective C; see also above. (FIXME: Make
1905 Objective C use normal builtins.) */
1906 if (!DECL_IS_BUILTIN (olddecl
)
1907 && !DECL_EXTERN_INLINE (olddecl
))
1909 error ("static declaration of %q+D follows "
1910 "non-static declaration", newdecl
);
1911 locate_old_decl (olddecl
);
1915 else if (TREE_PUBLIC (newdecl
) && !TREE_PUBLIC (olddecl
))
1917 if (DECL_CONTEXT (olddecl
))
1919 error ("non-static declaration of %q+D follows "
1920 "static declaration", newdecl
);
1921 locate_old_decl (olddecl
);
1924 else if (warn_traditional
)
1926 warned
|= warning (OPT_Wtraditional
,
1927 "non-static declaration of %q+D "
1928 "follows static declaration", newdecl
);
1932 /* Make sure gnu_inline attribute is either not present, or
1933 present on all inline decls. */
1934 if (DECL_DECLARED_INLINE_P (olddecl
)
1935 && DECL_DECLARED_INLINE_P (newdecl
))
1937 bool newa
= lookup_attribute ("gnu_inline",
1938 DECL_ATTRIBUTES (newdecl
)) != NULL
;
1939 bool olda
= lookup_attribute ("gnu_inline",
1940 DECL_ATTRIBUTES (olddecl
)) != NULL
;
1943 error_at (input_location
, "%<gnu_inline%> attribute present on %q+D",
1944 newa
? newdecl
: olddecl
);
1945 error_at (DECL_SOURCE_LOCATION (newa
? olddecl
: newdecl
),
1950 else if (TREE_CODE (newdecl
) == VAR_DECL
)
1952 /* Only variables can be thread-local, and all declarations must
1953 agree on this property. */
1954 if (C_DECL_THREADPRIVATE_P (olddecl
) && !DECL_THREAD_LOCAL_P (newdecl
))
1956 /* Nothing to check. Since OLDDECL is marked threadprivate
1957 and NEWDECL does not have a thread-local attribute, we
1958 will merge the threadprivate attribute into NEWDECL. */
1961 else if (DECL_THREAD_LOCAL_P (newdecl
) != DECL_THREAD_LOCAL_P (olddecl
))
1963 if (DECL_THREAD_LOCAL_P (newdecl
))
1964 error ("thread-local declaration of %q+D follows "
1965 "non-thread-local declaration", newdecl
);
1967 error ("non-thread-local declaration of %q+D follows "
1968 "thread-local declaration", newdecl
);
1970 locate_old_decl (olddecl
);
1974 /* Multiple initialized definitions are not allowed (6.9p3,5). */
1975 if (DECL_INITIAL (newdecl
) && DECL_INITIAL (olddecl
))
1977 error ("redefinition of %q+D", newdecl
);
1978 locate_old_decl (olddecl
);
1982 /* Objects declared at file scope: if the first declaration had
1983 external linkage (even if it was an external reference) the
1984 second must have external linkage as well, or the behavior is
1985 undefined. If the first declaration had internal linkage, then
1986 the second must too, or else be an external reference (in which
1987 case the composite declaration still has internal linkage).
1988 As for function declarations, we warn about the static-then-
1989 extern case only for -Wtraditional. See generally 6.2.2p3-5,7. */
1990 if (DECL_FILE_SCOPE_P (newdecl
)
1991 && TREE_PUBLIC (newdecl
) != TREE_PUBLIC (olddecl
))
1993 if (DECL_EXTERNAL (newdecl
))
1995 if (!DECL_FILE_SCOPE_P (olddecl
))
1997 error ("extern declaration of %q+D follows "
1998 "declaration with no linkage", newdecl
);
1999 locate_old_decl (olddecl
);
2002 else if (warn_traditional
)
2004 warned
|= warning (OPT_Wtraditional
,
2005 "non-static declaration of %q+D "
2006 "follows static declaration", newdecl
);
2011 if (TREE_PUBLIC (newdecl
))
2012 error ("non-static declaration of %q+D follows "
2013 "static declaration", newdecl
);
2015 error ("static declaration of %q+D follows "
2016 "non-static declaration", newdecl
);
2018 locate_old_decl (olddecl
);
2022 /* Two objects with the same name declared at the same block
2023 scope must both be external references (6.7p3). */
2024 else if (!DECL_FILE_SCOPE_P (newdecl
))
2026 if (DECL_EXTERNAL (newdecl
))
2028 /* Extern with initializer at block scope, which will
2029 already have received an error. */
2031 else if (DECL_EXTERNAL (olddecl
))
2033 error ("declaration of %q+D with no linkage follows "
2034 "extern declaration", newdecl
);
2035 locate_old_decl (olddecl
);
2039 error ("redeclaration of %q+D with no linkage", newdecl
);
2040 locate_old_decl (olddecl
);
2046 /* C++ does not permit a decl to appear multiple times at file
2049 && DECL_FILE_SCOPE_P (newdecl
)
2050 && !DECL_EXTERNAL (newdecl
)
2051 && !DECL_EXTERNAL (olddecl
))
2052 warned
|= warning_at (DECL_SOURCE_LOCATION (newdecl
),
2054 ("duplicate declaration of %qD is "
2060 /* All decls must agree on a visibility. */
2061 if (CODE_CONTAINS_STRUCT (TREE_CODE (newdecl
), TS_DECL_WITH_VIS
)
2062 && DECL_VISIBILITY_SPECIFIED (newdecl
) && DECL_VISIBILITY_SPECIFIED (olddecl
)
2063 && DECL_VISIBILITY (newdecl
) != DECL_VISIBILITY (olddecl
))
2065 warned
|= warning (0, "redeclaration of %q+D with different visibility "
2066 "(old visibility preserved)", newdecl
);
2069 if (TREE_CODE (newdecl
) == FUNCTION_DECL
)
2071 /* Diagnose inline __attribute__ ((noinline)) which is silly. */
2072 if (DECL_DECLARED_INLINE_P (newdecl
)
2073 && lookup_attribute ("noinline", DECL_ATTRIBUTES (olddecl
)))
2075 warned
|= warning (OPT_Wattributes
,
2076 "inline declaration of %qD follows "
2077 "declaration with attribute noinline", newdecl
);
2079 else if (DECL_DECLARED_INLINE_P (olddecl
)
2080 && lookup_attribute ("noinline", DECL_ATTRIBUTES (newdecl
)))
2082 warned
|= warning (OPT_Wattributes
,
2083 "declaration of %q+D with attribute "
2084 "noinline follows inline declaration ", newdecl
);
2087 else /* PARM_DECL, VAR_DECL */
2089 /* Redeclaration of a parameter is a constraint violation (this is
2090 not explicitly stated, but follows from C99 6.7p3 [no more than
2091 one declaration of the same identifier with no linkage in the
2092 same scope, except type tags] and 6.2.2p6 [parameters have no
2093 linkage]). We must check for a forward parameter declaration,
2094 indicated by TREE_ASM_WRITTEN on the old declaration - this is
2095 an extension, the mandatory diagnostic for which is handled by
2096 mark_forward_parm_decls. */
2098 if (TREE_CODE (newdecl
) == PARM_DECL
2099 && (!TREE_ASM_WRITTEN (olddecl
) || TREE_ASM_WRITTEN (newdecl
)))
2101 error ("redefinition of parameter %q+D", newdecl
);
2102 locate_old_decl (olddecl
);
2107 /* Optional warning for completely redundant decls. */
2108 if (!warned
&& !pedwarned
2109 && warn_redundant_decls
2110 /* Don't warn about a function declaration followed by a
2112 && !(TREE_CODE (newdecl
) == FUNCTION_DECL
2113 && DECL_INITIAL (newdecl
) && !DECL_INITIAL (olddecl
))
2114 /* Don't warn about redundant redeclarations of builtins. */
2115 && !(TREE_CODE (newdecl
) == FUNCTION_DECL
2116 && !DECL_BUILT_IN (newdecl
)
2117 && DECL_BUILT_IN (olddecl
)
2118 && !C_DECL_DECLARED_BUILTIN (olddecl
))
2119 /* Don't warn about an extern followed by a definition. */
2120 && !(DECL_EXTERNAL (olddecl
) && !DECL_EXTERNAL (newdecl
))
2121 /* Don't warn about forward parameter decls. */
2122 && !(TREE_CODE (newdecl
) == PARM_DECL
2123 && TREE_ASM_WRITTEN (olddecl
) && !TREE_ASM_WRITTEN (newdecl
))
2124 /* Don't warn about a variable definition following a declaration. */
2125 && !(TREE_CODE (newdecl
) == VAR_DECL
2126 && DECL_INITIAL (newdecl
) && !DECL_INITIAL (olddecl
)))
2128 warned
= warning (OPT_Wredundant_decls
, "redundant redeclaration of %q+D",
2132 /* Report location of previous decl/defn. */
2133 if (warned
|| pedwarned
)
2134 locate_old_decl (olddecl
);
2136 #undef DECL_EXTERN_INLINE
2141 /* Subroutine of duplicate_decls. NEWDECL has been found to be
2142 consistent with OLDDECL, but carries new information. Merge the
2143 new information into OLDDECL. This function issues no
2147 merge_decls (tree newdecl
, tree olddecl
, tree newtype
, tree oldtype
)
2149 bool new_is_definition
= (TREE_CODE (newdecl
) == FUNCTION_DECL
2150 && DECL_INITIAL (newdecl
) != 0);
2151 bool new_is_prototype
= (TREE_CODE (newdecl
) == FUNCTION_DECL
2152 && prototype_p (TREE_TYPE (newdecl
)));
2153 bool old_is_prototype
= (TREE_CODE (olddecl
) == FUNCTION_DECL
2154 && prototype_p (TREE_TYPE (olddecl
)));
2155 bool extern_changed
= false;
2157 /* For real parm decl following a forward decl, rechain the old decl
2158 in its new location and clear TREE_ASM_WRITTEN (it's not a
2159 forward decl anymore). */
2160 if (TREE_CODE (newdecl
) == PARM_DECL
2161 && TREE_ASM_WRITTEN (olddecl
) && !TREE_ASM_WRITTEN (newdecl
))
2163 struct c_binding
*b
, **here
;
2165 for (here
= ¤t_scope
->bindings
; *here
; here
= &(*here
)->prev
)
2166 if ((*here
)->decl
== olddecl
)
2173 b
->prev
= current_scope
->bindings
;
2174 current_scope
->bindings
= b
;
2176 TREE_ASM_WRITTEN (olddecl
) = 0;
2179 DECL_ATTRIBUTES (newdecl
)
2180 = targetm
.merge_decl_attributes (olddecl
, newdecl
);
2182 /* Merge the data types specified in the two decls. */
2184 = TREE_TYPE (olddecl
)
2185 = composite_type (newtype
, oldtype
);
2187 /* Lay the type out, unless already done. */
2188 if (!comptypes (oldtype
, TREE_TYPE (newdecl
)))
2190 if (TREE_TYPE (newdecl
) != error_mark_node
)
2191 layout_type (TREE_TYPE (newdecl
));
2192 if (TREE_CODE (newdecl
) != FUNCTION_DECL
2193 && TREE_CODE (newdecl
) != TYPE_DECL
2194 && TREE_CODE (newdecl
) != CONST_DECL
)
2195 layout_decl (newdecl
, 0);
2199 /* Since the type is OLDDECL's, make OLDDECL's size go with. */
2200 DECL_SIZE (newdecl
) = DECL_SIZE (olddecl
);
2201 DECL_SIZE_UNIT (newdecl
) = DECL_SIZE_UNIT (olddecl
);
2202 DECL_MODE (newdecl
) = DECL_MODE (olddecl
);
2203 if (DECL_ALIGN (olddecl
) > DECL_ALIGN (newdecl
))
2205 DECL_ALIGN (newdecl
) = DECL_ALIGN (olddecl
);
2206 DECL_USER_ALIGN (newdecl
) |= DECL_USER_ALIGN (olddecl
);
2210 /* Keep the old rtl since we can safely use it. */
2211 if (HAS_RTL_P (olddecl
))
2212 COPY_DECL_RTL (olddecl
, newdecl
);
2214 /* Merge the type qualifiers. */
2215 if (TREE_READONLY (newdecl
))
2216 TREE_READONLY (olddecl
) = 1;
2218 if (TREE_THIS_VOLATILE (newdecl
))
2219 TREE_THIS_VOLATILE (olddecl
) = 1;
2221 /* Merge deprecatedness. */
2222 if (TREE_DEPRECATED (newdecl
))
2223 TREE_DEPRECATED (olddecl
) = 1;
2225 /* If a decl is in a system header and the other isn't, keep the one on the
2226 system header. Otherwise, keep source location of definition rather than
2227 declaration and of prototype rather than non-prototype unless that
2228 prototype is built-in. */
2229 if (CODE_CONTAINS_STRUCT (TREE_CODE (olddecl
), TS_DECL_WITH_VIS
)
2230 && DECL_IN_SYSTEM_HEADER (olddecl
)
2231 && !DECL_IN_SYSTEM_HEADER (newdecl
) )
2232 DECL_SOURCE_LOCATION (newdecl
) = DECL_SOURCE_LOCATION (olddecl
);
2233 else if (CODE_CONTAINS_STRUCT (TREE_CODE (olddecl
), TS_DECL_WITH_VIS
)
2234 && DECL_IN_SYSTEM_HEADER (newdecl
)
2235 && !DECL_IN_SYSTEM_HEADER (olddecl
))
2236 DECL_SOURCE_LOCATION (olddecl
) = DECL_SOURCE_LOCATION (newdecl
);
2237 else if ((DECL_INITIAL (newdecl
) == 0 && DECL_INITIAL (olddecl
) != 0)
2238 || (old_is_prototype
&& !new_is_prototype
2239 && !C_DECL_BUILTIN_PROTOTYPE (olddecl
)))
2240 DECL_SOURCE_LOCATION (newdecl
) = DECL_SOURCE_LOCATION (olddecl
);
2242 /* Merge the initialization information. */
2243 if (DECL_INITIAL (newdecl
) == 0)
2244 DECL_INITIAL (newdecl
) = DECL_INITIAL (olddecl
);
2246 /* Merge the threadprivate attribute. */
2247 if (TREE_CODE (olddecl
) == VAR_DECL
&& C_DECL_THREADPRIVATE_P (olddecl
))
2249 DECL_TLS_MODEL (newdecl
) = DECL_TLS_MODEL (olddecl
);
2250 C_DECL_THREADPRIVATE_P (newdecl
) = 1;
2253 if (CODE_CONTAINS_STRUCT (TREE_CODE (olddecl
), TS_DECL_WITH_VIS
))
2255 /* Merge the section attribute.
2256 We want to issue an error if the sections conflict but that
2257 must be done later in decl_attributes since we are called
2258 before attributes are assigned. */
2259 if (DECL_SECTION_NAME (newdecl
) == NULL_TREE
)
2260 DECL_SECTION_NAME (newdecl
) = DECL_SECTION_NAME (olddecl
);
2262 /* Copy the assembler name.
2263 Currently, it can only be defined in the prototype. */
2264 COPY_DECL_ASSEMBLER_NAME (olddecl
, newdecl
);
2266 /* Use visibility of whichever declaration had it specified */
2267 if (DECL_VISIBILITY_SPECIFIED (olddecl
))
2269 DECL_VISIBILITY (newdecl
) = DECL_VISIBILITY (olddecl
);
2270 DECL_VISIBILITY_SPECIFIED (newdecl
) = 1;
2273 if (TREE_CODE (newdecl
) == FUNCTION_DECL
)
2275 DECL_STATIC_CONSTRUCTOR(newdecl
) |= DECL_STATIC_CONSTRUCTOR(olddecl
);
2276 DECL_STATIC_DESTRUCTOR (newdecl
) |= DECL_STATIC_DESTRUCTOR (olddecl
);
2277 DECL_NO_LIMIT_STACK (newdecl
) |= DECL_NO_LIMIT_STACK (olddecl
);
2278 DECL_NO_INSTRUMENT_FUNCTION_ENTRY_EXIT (newdecl
)
2279 |= DECL_NO_INSTRUMENT_FUNCTION_ENTRY_EXIT (olddecl
);
2280 TREE_THIS_VOLATILE (newdecl
) |= TREE_THIS_VOLATILE (olddecl
);
2281 DECL_IS_MALLOC (newdecl
) |= DECL_IS_MALLOC (olddecl
);
2282 DECL_IS_OPERATOR_NEW (newdecl
) |= DECL_IS_OPERATOR_NEW (olddecl
);
2283 TREE_READONLY (newdecl
) |= TREE_READONLY (olddecl
);
2284 DECL_PURE_P (newdecl
) |= DECL_PURE_P (olddecl
);
2285 DECL_IS_NOVOPS (newdecl
) |= DECL_IS_NOVOPS (olddecl
);
2288 /* Merge the storage class information. */
2289 merge_weak (newdecl
, olddecl
);
2291 /* For functions, static overrides non-static. */
2292 if (TREE_CODE (newdecl
) == FUNCTION_DECL
)
2294 TREE_PUBLIC (newdecl
) &= TREE_PUBLIC (olddecl
);
2295 /* This is since we don't automatically
2296 copy the attributes of NEWDECL into OLDDECL. */
2297 TREE_PUBLIC (olddecl
) = TREE_PUBLIC (newdecl
);
2298 /* If this clears `static', clear it in the identifier too. */
2299 if (!TREE_PUBLIC (olddecl
))
2300 TREE_PUBLIC (DECL_NAME (olddecl
)) = 0;
2304 /* In c99, 'extern' declaration before (or after) 'inline' means this
2305 function is not DECL_EXTERNAL, unless 'gnu_inline' attribute
2307 if (TREE_CODE (newdecl
) == FUNCTION_DECL
2308 && !flag_gnu89_inline
2309 && (DECL_DECLARED_INLINE_P (newdecl
)
2310 || DECL_DECLARED_INLINE_P (olddecl
))
2311 && (!DECL_DECLARED_INLINE_P (newdecl
)
2312 || !DECL_DECLARED_INLINE_P (olddecl
)
2313 || !DECL_EXTERNAL (olddecl
))
2314 && DECL_EXTERNAL (newdecl
)
2315 && !lookup_attribute ("gnu_inline", DECL_ATTRIBUTES (newdecl
))
2316 && !current_function_decl
)
2317 DECL_EXTERNAL (newdecl
) = 0;
2319 if (DECL_EXTERNAL (newdecl
))
2321 TREE_STATIC (newdecl
) = TREE_STATIC (olddecl
);
2322 DECL_EXTERNAL (newdecl
) = DECL_EXTERNAL (olddecl
);
2324 /* An extern decl does not override previous storage class. */
2325 TREE_PUBLIC (newdecl
) = TREE_PUBLIC (olddecl
);
2326 if (!DECL_EXTERNAL (newdecl
))
2328 DECL_CONTEXT (newdecl
) = DECL_CONTEXT (olddecl
);
2329 DECL_COMMON (newdecl
) = DECL_COMMON (olddecl
);
2334 TREE_STATIC (olddecl
) = TREE_STATIC (newdecl
);
2335 TREE_PUBLIC (olddecl
) = TREE_PUBLIC (newdecl
);
2338 if (TREE_CODE (newdecl
) == FUNCTION_DECL
)
2340 /* If we're redefining a function previously defined as extern
2341 inline, make sure we emit debug info for the inline before we
2342 throw it away, in case it was inlined into a function that
2343 hasn't been written out yet. */
2344 if (new_is_definition
&& DECL_INITIAL (olddecl
))
2345 /* The new defn must not be inline. */
2346 DECL_UNINLINABLE (newdecl
) = 1;
2349 /* If either decl says `inline', this fn is inline, unless
2350 its definition was passed already. */
2351 if (DECL_DECLARED_INLINE_P (newdecl
)
2352 || DECL_DECLARED_INLINE_P (olddecl
))
2353 DECL_DECLARED_INLINE_P (newdecl
) = 1;
2355 DECL_UNINLINABLE (newdecl
) = DECL_UNINLINABLE (olddecl
)
2356 = (DECL_UNINLINABLE (newdecl
) || DECL_UNINLINABLE (olddecl
));
2358 DECL_DISREGARD_INLINE_LIMITS (newdecl
)
2359 = DECL_DISREGARD_INLINE_LIMITS (olddecl
)
2360 = (DECL_DISREGARD_INLINE_LIMITS (newdecl
)
2361 || DECL_DISREGARD_INLINE_LIMITS (olddecl
));
2364 if (DECL_BUILT_IN (olddecl
))
2366 /* If redeclaring a builtin function, it stays built in.
2367 But it gets tagged as having been declared. */
2368 DECL_BUILT_IN_CLASS (newdecl
) = DECL_BUILT_IN_CLASS (olddecl
);
2369 DECL_FUNCTION_CODE (newdecl
) = DECL_FUNCTION_CODE (olddecl
);
2370 C_DECL_DECLARED_BUILTIN (newdecl
) = 1;
2371 if (new_is_prototype
)
2373 C_DECL_BUILTIN_PROTOTYPE (newdecl
) = 0;
2374 if (DECL_BUILT_IN_CLASS (newdecl
) == BUILT_IN_NORMAL
)
2376 enum built_in_function fncode
= DECL_FUNCTION_CODE (newdecl
);
2379 /* If a compatible prototype of these builtin functions
2380 is seen, assume the runtime implements it with the
2381 expected semantics. */
2382 case BUILT_IN_STPCPY
:
2383 if (builtin_decl_explicit_p (fncode
))
2384 set_builtin_decl_implicit_p (fncode
, true);
2392 C_DECL_BUILTIN_PROTOTYPE (newdecl
)
2393 = C_DECL_BUILTIN_PROTOTYPE (olddecl
);
2396 /* Preserve function specific target and optimization options */
2397 if (DECL_FUNCTION_SPECIFIC_TARGET (olddecl
)
2398 && !DECL_FUNCTION_SPECIFIC_TARGET (newdecl
))
2399 DECL_FUNCTION_SPECIFIC_TARGET (newdecl
)
2400 = DECL_FUNCTION_SPECIFIC_TARGET (olddecl
);
2402 if (DECL_FUNCTION_SPECIFIC_OPTIMIZATION (olddecl
)
2403 && !DECL_FUNCTION_SPECIFIC_OPTIMIZATION (newdecl
))
2404 DECL_FUNCTION_SPECIFIC_OPTIMIZATION (newdecl
)
2405 = DECL_FUNCTION_SPECIFIC_OPTIMIZATION (olddecl
);
2407 /* Also preserve various other info from the definition. */
2408 if (!new_is_definition
)
2411 DECL_RESULT (newdecl
) = DECL_RESULT (olddecl
);
2412 DECL_INITIAL (newdecl
) = DECL_INITIAL (olddecl
);
2413 DECL_STRUCT_FUNCTION (newdecl
) = DECL_STRUCT_FUNCTION (olddecl
);
2414 DECL_SAVED_TREE (newdecl
) = DECL_SAVED_TREE (olddecl
);
2415 DECL_ARGUMENTS (newdecl
) = copy_list (DECL_ARGUMENTS (olddecl
));
2416 for (t
= DECL_ARGUMENTS (newdecl
); t
; t
= DECL_CHAIN (t
))
2417 DECL_CONTEXT (t
) = newdecl
;
2419 /* See if we've got a function to instantiate from. */
2420 if (DECL_SAVED_TREE (olddecl
))
2421 DECL_ABSTRACT_ORIGIN (newdecl
)
2422 = DECL_ABSTRACT_ORIGIN (olddecl
);
2426 extern_changed
= DECL_EXTERNAL (olddecl
) && !DECL_EXTERNAL (newdecl
);
2428 /* Merge the USED information. */
2429 if (TREE_USED (olddecl
))
2430 TREE_USED (newdecl
) = 1;
2431 else if (TREE_USED (newdecl
))
2432 TREE_USED (olddecl
) = 1;
2433 if (TREE_CODE (olddecl
) == VAR_DECL
|| TREE_CODE (olddecl
) == PARM_DECL
)
2434 DECL_READ_P (newdecl
) |= DECL_READ_P (olddecl
);
2435 if (DECL_PRESERVE_P (olddecl
))
2436 DECL_PRESERVE_P (newdecl
) = 1;
2437 else if (DECL_PRESERVE_P (newdecl
))
2438 DECL_PRESERVE_P (olddecl
) = 1;
2440 /* Copy most of the decl-specific fields of NEWDECL into OLDDECL.
2441 But preserve OLDDECL's DECL_UID, DECL_CONTEXT and
2442 DECL_ARGUMENTS (if appropriate). */
2444 unsigned olddecl_uid
= DECL_UID (olddecl
);
2445 tree olddecl_context
= DECL_CONTEXT (olddecl
);
2446 tree olddecl_arguments
= NULL
;
2447 if (TREE_CODE (olddecl
) == FUNCTION_DECL
)
2448 olddecl_arguments
= DECL_ARGUMENTS (olddecl
);
2450 memcpy ((char *) olddecl
+ sizeof (struct tree_common
),
2451 (char *) newdecl
+ sizeof (struct tree_common
),
2452 sizeof (struct tree_decl_common
) - sizeof (struct tree_common
));
2453 switch (TREE_CODE (olddecl
))
2463 memcpy ((char *) olddecl
+ sizeof (struct tree_decl_common
),
2464 (char *) newdecl
+ sizeof (struct tree_decl_common
),
2465 tree_code_size (TREE_CODE (olddecl
)) - sizeof (struct tree_decl_common
));
2470 memcpy ((char *) olddecl
+ sizeof (struct tree_decl_common
),
2471 (char *) newdecl
+ sizeof (struct tree_decl_common
),
2472 sizeof (struct tree_decl_non_common
) - sizeof (struct tree_decl_common
));
2474 DECL_UID (olddecl
) = olddecl_uid
;
2475 DECL_CONTEXT (olddecl
) = olddecl_context
;
2476 if (TREE_CODE (olddecl
) == FUNCTION_DECL
)
2477 DECL_ARGUMENTS (olddecl
) = olddecl_arguments
;
2480 /* If OLDDECL had its DECL_RTL instantiated, re-invoke make_decl_rtl
2481 so that encode_section_info has a chance to look at the new decl
2482 flags and attributes. */
2483 if (DECL_RTL_SET_P (olddecl
)
2484 && (TREE_CODE (olddecl
) == FUNCTION_DECL
2485 || (TREE_CODE (olddecl
) == VAR_DECL
2486 && TREE_STATIC (olddecl
))))
2487 make_decl_rtl (olddecl
);
2489 /* If we changed a function from DECL_EXTERNAL to !DECL_EXTERNAL,
2490 and the definition is coming from the old version, cgraph needs
2491 to be called again. */
2492 if (extern_changed
&& !new_is_definition
2493 && TREE_CODE (olddecl
) == FUNCTION_DECL
&& DECL_INITIAL (olddecl
))
2494 cgraph_mark_if_needed (olddecl
);
2497 /* Handle when a new declaration NEWDECL has the same name as an old
2498 one OLDDECL in the same binding contour. Prints an error message
2501 If safely possible, alter OLDDECL to look like NEWDECL, and return
2502 true. Otherwise, return false. */
2505 duplicate_decls (tree newdecl
, tree olddecl
)
2507 tree newtype
= NULL
, oldtype
= NULL
;
2509 if (!diagnose_mismatched_decls (newdecl
, olddecl
, &newtype
, &oldtype
))
2511 /* Avoid `unused variable' and other warnings for OLDDECL. */
2512 TREE_NO_WARNING (olddecl
) = 1;
2516 merge_decls (newdecl
, olddecl
, newtype
, oldtype
);
2521 /* Check whether decl-node NEW_DECL shadows an existing declaration. */
2523 warn_if_shadowing (tree new_decl
)
2525 struct c_binding
*b
;
2527 /* Shadow warnings wanted? */
2529 /* No shadow warnings for internally generated vars. */
2530 || DECL_IS_BUILTIN (new_decl
)
2531 /* No shadow warnings for vars made for inlining. */
2532 || DECL_FROM_INLINE (new_decl
))
2535 /* Is anything being shadowed? Invisible decls do not count. */
2536 for (b
= I_SYMBOL_BINDING (DECL_NAME (new_decl
)); b
; b
= b
->shadowed
)
2537 if (b
->decl
&& b
->decl
!= new_decl
&& !b
->invisible
)
2539 tree old_decl
= b
->decl
;
2541 if (old_decl
== error_mark_node
)
2543 warning (OPT_Wshadow
, "declaration of %q+D shadows previous "
2544 "non-variable", new_decl
);
2547 else if (TREE_CODE (old_decl
) == PARM_DECL
)
2548 warning (OPT_Wshadow
, "declaration of %q+D shadows a parameter",
2550 else if (DECL_FILE_SCOPE_P (old_decl
))
2551 warning (OPT_Wshadow
, "declaration of %q+D shadows a global "
2552 "declaration", new_decl
);
2553 else if (TREE_CODE (old_decl
) == FUNCTION_DECL
2554 && DECL_BUILT_IN (old_decl
))
2556 warning (OPT_Wshadow
, "declaration of %q+D shadows "
2557 "a built-in function", new_decl
);
2561 warning (OPT_Wshadow
, "declaration of %q+D shadows a previous local",
2564 warning_at (DECL_SOURCE_LOCATION (old_decl
), OPT_Wshadow
,
2565 "shadowed declaration is here");
2571 /* Record a decl-node X as belonging to the current lexical scope.
2572 Check for errors (such as an incompatible declaration for the same
2573 name already seen in the same scope).
2575 Returns either X or an old decl for the same name.
2576 If an old decl is returned, it may have been smashed
2577 to agree with what X says. */
2582 tree name
= DECL_NAME (x
);
2583 struct c_scope
*scope
= current_scope
;
2584 struct c_binding
*b
;
2585 bool nested
= false;
2586 location_t locus
= DECL_SOURCE_LOCATION (x
);
2588 /* Must set DECL_CONTEXT for everything not at file scope or
2589 DECL_FILE_SCOPE_P won't work. Local externs don't count
2590 unless they have initializers (which generate code). */
2591 if (current_function_decl
2592 && ((TREE_CODE (x
) != FUNCTION_DECL
&& TREE_CODE (x
) != VAR_DECL
)
2593 || DECL_INITIAL (x
) || !DECL_EXTERNAL (x
)))
2594 DECL_CONTEXT (x
) = current_function_decl
;
2596 /* Anonymous decls are just inserted in the scope. */
2599 bind (name
, x
, scope
, /*invisible=*/false, /*nested=*/false,
2604 /* First, see if there is another declaration with the same name in
2605 the current scope. If there is, duplicate_decls may do all the
2606 work for us. If duplicate_decls returns false, that indicates
2607 two incompatible decls in the same scope; we are to silently
2608 replace the old one (duplicate_decls has issued all appropriate
2609 diagnostics). In particular, we should not consider possible
2610 duplicates in the external scope, or shadowing. */
2611 b
= I_SYMBOL_BINDING (name
);
2612 if (b
&& B_IN_SCOPE (b
, scope
))
2614 struct c_binding
*b_ext
, *b_use
;
2615 tree type
= TREE_TYPE (x
);
2616 tree visdecl
= b
->decl
;
2617 tree vistype
= TREE_TYPE (visdecl
);
2618 if (TREE_CODE (TREE_TYPE (x
)) == ARRAY_TYPE
2619 && COMPLETE_TYPE_P (TREE_TYPE (x
)))
2620 b
->inner_comp
= false;
2623 /* If this is an external linkage declaration, we should check
2624 for compatibility with the type in the external scope before
2625 setting the type at this scope based on the visible
2626 information only. */
2627 if (TREE_PUBLIC (x
) && TREE_PUBLIC (visdecl
))
2629 while (b_ext
&& !B_IN_EXTERNAL_SCOPE (b_ext
))
2630 b_ext
= b_ext
->shadowed
;
2635 TREE_TYPE (b_use
->decl
) = b_use
->u
.type
;
2638 if (duplicate_decls (x
, b_use
->decl
))
2642 /* Save the updated type in the external scope and
2643 restore the proper type for this scope. */
2645 if (comptypes (vistype
, type
))
2646 thistype
= composite_type (vistype
, type
);
2648 thistype
= TREE_TYPE (b_use
->decl
);
2649 b_use
->u
.type
= TREE_TYPE (b_use
->decl
);
2650 if (TREE_CODE (b_use
->decl
) == FUNCTION_DECL
2651 && DECL_BUILT_IN (b_use
->decl
))
2653 = build_type_attribute_variant (thistype
,
2656 TREE_TYPE (b_use
->decl
) = thistype
;
2661 goto skip_external_and_shadow_checks
;
2664 /* All declarations with external linkage, and all external
2665 references, go in the external scope, no matter what scope is
2666 current. However, the binding in that scope is ignored for
2667 purposes of normal name lookup. A separate binding structure is
2668 created in the requested scope; this governs the normal
2669 visibility of the symbol.
2671 The binding in the externals scope is used exclusively for
2672 detecting duplicate declarations of the same object, no matter
2673 what scope they are in; this is what we do here. (C99 6.2.7p2:
2674 All declarations that refer to the same object or function shall
2675 have compatible type; otherwise, the behavior is undefined.) */
2676 if (DECL_EXTERNAL (x
) || scope
== file_scope
)
2678 tree type
= TREE_TYPE (x
);
2681 bool type_saved
= false;
2682 if (b
&& !B_IN_EXTERNAL_SCOPE (b
)
2683 && (TREE_CODE (b
->decl
) == FUNCTION_DECL
2684 || TREE_CODE (b
->decl
) == VAR_DECL
)
2685 && DECL_FILE_SCOPE_P (b
->decl
))
2688 vistype
= TREE_TYPE (visdecl
);
2690 if (scope
!= file_scope
2691 && !DECL_IN_SYSTEM_HEADER (x
))
2692 warning (OPT_Wnested_externs
, "nested extern declaration of %qD", x
);
2694 while (b
&& !B_IN_EXTERNAL_SCOPE (b
))
2696 /* If this decl might be modified, save its type. This is
2697 done here rather than when the decl is first bound
2698 because the type may change after first binding, through
2699 being completed or through attributes being added. If we
2700 encounter multiple such decls, only the first should have
2701 its type saved; the others will already have had their
2702 proper types saved and the types will not have changed as
2703 their scopes will not have been re-entered. */
2704 if (DECL_P (b
->decl
) && DECL_FILE_SCOPE_P (b
->decl
) && !type_saved
)
2706 b
->u
.type
= TREE_TYPE (b
->decl
);
2709 if (B_IN_FILE_SCOPE (b
)
2710 && TREE_CODE (b
->decl
) == VAR_DECL
2711 && TREE_STATIC (b
->decl
)
2712 && TREE_CODE (TREE_TYPE (b
->decl
)) == ARRAY_TYPE
2713 && !TYPE_DOMAIN (TREE_TYPE (b
->decl
))
2714 && TREE_CODE (type
) == ARRAY_TYPE
2715 && TYPE_DOMAIN (type
)
2716 && TYPE_MAX_VALUE (TYPE_DOMAIN (type
))
2717 && !integer_zerop (TYPE_MAX_VALUE (TYPE_DOMAIN (type
))))
2719 /* Array type completed in inner scope, which should be
2720 diagnosed if the completion does not have size 1 and
2721 it does not get completed in the file scope. */
2722 b
->inner_comp
= true;
2727 /* If a matching external declaration has been found, set its
2728 type to the composite of all the types of that declaration.
2729 After the consistency checks, it will be reset to the
2730 composite of the visible types only. */
2731 if (b
&& (TREE_PUBLIC (x
) || same_translation_unit_p (x
, b
->decl
))
2733 TREE_TYPE (b
->decl
) = b
->u
.type
;
2735 /* The point of the same_translation_unit_p check here is,
2736 we want to detect a duplicate decl for a construct like
2737 foo() { extern bar(); } ... static bar(); but not if
2738 they are in different translation units. In any case,
2739 the static does not go in the externals scope. */
2741 && (TREE_PUBLIC (x
) || same_translation_unit_p (x
, b
->decl
))
2742 && duplicate_decls (x
, b
->decl
))
2747 if (comptypes (vistype
, type
))
2748 thistype
= composite_type (vistype
, type
);
2750 thistype
= TREE_TYPE (b
->decl
);
2754 b
->u
.type
= TREE_TYPE (b
->decl
);
2755 if (TREE_CODE (b
->decl
) == FUNCTION_DECL
&& DECL_BUILT_IN (b
->decl
))
2757 = build_type_attribute_variant (thistype
,
2758 TYPE_ATTRIBUTES (b
->u
.type
));
2759 TREE_TYPE (b
->decl
) = thistype
;
2760 bind (name
, b
->decl
, scope
, /*invisible=*/false, /*nested=*/true,
2764 else if (TREE_PUBLIC (x
))
2766 if (visdecl
&& !b
&& duplicate_decls (x
, visdecl
))
2768 /* An external declaration at block scope referring to a
2769 visible entity with internal linkage. The composite
2770 type will already be correct for this scope, so we
2771 just need to fall through to make the declaration in
2778 bind (name
, x
, external_scope
, /*invisible=*/true,
2779 /*nested=*/false, locus
);
2785 if (TREE_CODE (x
) != PARM_DECL
)
2786 warn_if_shadowing (x
);
2788 skip_external_and_shadow_checks
:
2789 if (TREE_CODE (x
) == TYPE_DECL
)
2791 /* So this is a typedef, set its underlying type. */
2792 set_underlying_type (x
);
2794 /* If X is a typedef defined in the current function, record it
2795 for the purpose of implementing the -Wunused-local-typedefs
2797 record_locally_defined_typedef (x
);
2800 bind (name
, x
, scope
, /*invisible=*/false, nested
, locus
);
2802 /* If x's type is incomplete because it's based on a
2803 structure or union which has not yet been fully declared,
2804 attach it to that structure or union type, so we can go
2805 back and complete the variable declaration later, if the
2806 structure or union gets fully declared.
2808 If the input is erroneous, we can have error_mark in the type
2809 slot (e.g. "f(void a, ...)") - that doesn't count as an
2811 if (TREE_TYPE (x
) != error_mark_node
2812 && !COMPLETE_TYPE_P (TREE_TYPE (x
)))
2814 tree element
= TREE_TYPE (x
);
2816 while (TREE_CODE (element
) == ARRAY_TYPE
)
2817 element
= TREE_TYPE (element
);
2818 element
= TYPE_MAIN_VARIANT (element
);
2820 if ((TREE_CODE (element
) == RECORD_TYPE
2821 || TREE_CODE (element
) == UNION_TYPE
)
2822 && (TREE_CODE (x
) != TYPE_DECL
2823 || TREE_CODE (TREE_TYPE (x
)) == ARRAY_TYPE
)
2824 && !COMPLETE_TYPE_P (element
))
2825 C_TYPE_INCOMPLETE_VARS (element
)
2826 = tree_cons (NULL_TREE
, x
, C_TYPE_INCOMPLETE_VARS (element
));
2831 /* Record X as belonging to file scope.
2832 This is used only internally by the Objective-C front end,
2833 and is limited to its needs. duplicate_decls is not called;
2834 if there is any preexisting decl for this identifier, it is an ICE. */
2837 pushdecl_top_level (tree x
)
2840 bool nested
= false;
2841 gcc_assert (TREE_CODE (x
) == VAR_DECL
|| TREE_CODE (x
) == CONST_DECL
);
2843 name
= DECL_NAME (x
);
2845 gcc_assert (TREE_CODE (x
) == CONST_DECL
|| !I_SYMBOL_BINDING (name
));
2847 if (TREE_PUBLIC (x
))
2849 bind (name
, x
, external_scope
, /*invisible=*/true, /*nested=*/false,
2854 bind (name
, x
, file_scope
, /*invisible=*/false, nested
, UNKNOWN_LOCATION
);
2860 implicit_decl_warning (tree id
, tree olddecl
)
2862 if (warn_implicit_function_declaration
)
2867 warned
= pedwarn (input_location
, OPT_Wimplicit_function_declaration
,
2868 "implicit declaration of function %qE", id
);
2870 warned
= warning (OPT_Wimplicit_function_declaration
,
2871 G_("implicit declaration of function %qE"), id
);
2872 if (olddecl
&& warned
)
2873 locate_old_decl (olddecl
);
2877 /* Generate an implicit declaration for identifier FUNCTIONID at LOC as a
2878 function of type int (). */
2881 implicitly_declare (location_t loc
, tree functionid
)
2883 struct c_binding
*b
;
2887 for (b
= I_SYMBOL_BINDING (functionid
); b
; b
= b
->shadowed
)
2889 if (B_IN_SCOPE (b
, external_scope
))
2898 if (decl
== error_mark_node
)
2901 /* FIXME: Objective-C has weird not-really-builtin functions
2902 which are supposed to be visible automatically. They wind up
2903 in the external scope because they're pushed before the file
2904 scope gets created. Catch this here and rebind them into the
2906 if (!DECL_BUILT_IN (decl
) && DECL_IS_BUILTIN (decl
))
2908 bind (functionid
, decl
, file_scope
,
2909 /*invisible=*/false, /*nested=*/true,
2910 DECL_SOURCE_LOCATION (decl
));
2915 tree newtype
= default_function_type
;
2917 TREE_TYPE (decl
) = b
->u
.type
;
2918 /* Implicit declaration of a function already declared
2919 (somehow) in a different scope, or as a built-in.
2920 If this is the first time this has happened, warn;
2921 then recycle the old declaration but with the new type. */
2922 if (!C_DECL_IMPLICIT (decl
))
2924 implicit_decl_warning (functionid
, decl
);
2925 C_DECL_IMPLICIT (decl
) = 1;
2927 if (DECL_BUILT_IN (decl
))
2929 newtype
= build_type_attribute_variant (newtype
,
2931 (TREE_TYPE (decl
)));
2932 if (!comptypes (newtype
, TREE_TYPE (decl
)))
2934 warning_at (loc
, 0, "incompatible implicit declaration of "
2935 "built-in function %qD", decl
);
2936 newtype
= TREE_TYPE (decl
);
2941 if (!comptypes (newtype
, TREE_TYPE (decl
)))
2943 error_at (loc
, "incompatible implicit declaration of function %qD", decl
);
2944 locate_old_decl (decl
);
2947 b
->u
.type
= TREE_TYPE (decl
);
2948 TREE_TYPE (decl
) = newtype
;
2949 bind (functionid
, decl
, current_scope
,
2950 /*invisible=*/false, /*nested=*/true,
2951 DECL_SOURCE_LOCATION (decl
));
2956 /* Not seen before. */
2957 decl
= build_decl (loc
, FUNCTION_DECL
, functionid
, default_function_type
);
2958 DECL_EXTERNAL (decl
) = 1;
2959 TREE_PUBLIC (decl
) = 1;
2960 C_DECL_IMPLICIT (decl
) = 1;
2961 implicit_decl_warning (functionid
, 0);
2962 asmspec_tree
= maybe_apply_renaming_pragma (decl
, /*asmname=*/NULL
);
2964 set_user_assembler_name (decl
, TREE_STRING_POINTER (asmspec_tree
));
2966 /* C89 says implicit declarations are in the innermost block.
2967 So we record the decl in the standard fashion. */
2968 decl
= pushdecl (decl
);
2970 /* No need to call objc_check_decl here - it's a function type. */
2971 rest_of_decl_compilation (decl
, 0, 0);
2973 /* Write a record describing this implicit function declaration
2974 to the prototypes file (if requested). */
2975 gen_aux_info_record (decl
, 0, 1, 0);
2977 /* Possibly apply some default attributes to this implicit declaration. */
2978 decl_attributes (&decl
, NULL_TREE
, 0);
2983 /* Issue an error message for a reference to an undeclared variable
2984 ID, including a reference to a builtin outside of function-call
2985 context. Establish a binding of the identifier to error_mark_node
2986 in an appropriate scope, which will suppress further errors for the
2987 same identifier. The error message should be given location LOC. */
2989 undeclared_variable (location_t loc
, tree id
)
2991 static bool already
= false;
2992 struct c_scope
*scope
;
2994 if (current_function_decl
== 0)
2996 error_at (loc
, "%qE undeclared here (not in a function)", id
);
2997 scope
= current_scope
;
3001 if (!objc_diagnose_private_ivar (id
))
3002 error_at (loc
, "%qE undeclared (first use in this function)", id
);
3005 inform (loc
, "each undeclared identifier is reported only"
3006 " once for each function it appears in");
3010 /* If we are parsing old-style parameter decls, current_function_decl
3011 will be nonnull but current_function_scope will be null. */
3012 scope
= current_function_scope
? current_function_scope
: current_scope
;
3014 bind (id
, error_mark_node
, scope
, /*invisible=*/false, /*nested=*/false,
3018 /* Subroutine of lookup_label, declare_label, define_label: construct a
3019 LABEL_DECL with all the proper frills. Also create a struct
3020 c_label_vars initialized for the current scope. */
3023 make_label (location_t location
, tree name
, bool defining
,
3024 struct c_label_vars
**p_label_vars
)
3026 tree label
= build_decl (location
, LABEL_DECL
, name
, void_type_node
);
3027 struct c_label_vars
*label_vars
;
3029 DECL_CONTEXT (label
) = current_function_decl
;
3030 DECL_MODE (label
) = VOIDmode
;
3032 label_vars
= ggc_alloc_c_label_vars ();
3033 label_vars
->shadowed
= NULL
;
3034 set_spot_bindings (&label_vars
->label_bindings
, defining
);
3035 label_vars
->decls_in_scope
= make_tree_vector ();
3036 label_vars
->gotos
= VEC_alloc (c_goto_bindings_p
, gc
, 0);
3037 *p_label_vars
= label_vars
;
3042 /* Get the LABEL_DECL corresponding to identifier NAME as a label.
3043 Create one if none exists so far for the current function.
3044 This is called when a label is used in a goto expression or
3045 has its address taken. */
3048 lookup_label (tree name
)
3051 struct c_label_vars
*label_vars
;
3053 if (current_function_scope
== 0)
3055 error ("label %qE referenced outside of any function", name
);
3059 /* Use a label already defined or ref'd with this name, but not if
3060 it is inherited from a containing function and wasn't declared
3062 label
= I_LABEL_DECL (name
);
3063 if (label
&& (DECL_CONTEXT (label
) == current_function_decl
3064 || C_DECLARED_LABEL_FLAG (label
)))
3066 /* If the label has only been declared, update its apparent
3067 location to point here, for better diagnostics if it
3068 turns out not to have been defined. */
3069 if (DECL_INITIAL (label
) == NULL_TREE
)
3070 DECL_SOURCE_LOCATION (label
) = input_location
;
3074 /* No label binding for that identifier; make one. */
3075 label
= make_label (input_location
, name
, false, &label_vars
);
3077 /* Ordinary labels go in the current function scope. */
3078 bind_label (name
, label
, current_function_scope
, label_vars
);
3083 /* Issue a warning about DECL for a goto statement at GOTO_LOC going
3087 warn_about_goto (location_t goto_loc
, tree label
, tree decl
)
3089 if (variably_modified_type_p (TREE_TYPE (decl
), NULL_TREE
))
3091 "jump into scope of identifier with variably modified type");
3093 warning_at (goto_loc
, OPT_Wjump_misses_init
,
3094 "jump skips variable initialization");
3095 inform (DECL_SOURCE_LOCATION (label
), "label %qD defined here", label
);
3096 inform (DECL_SOURCE_LOCATION (decl
), "%qD declared here", decl
);
3099 /* Look up a label because of a goto statement. This is like
3100 lookup_label, but also issues any appropriate warnings. */
3103 lookup_label_for_goto (location_t loc
, tree name
)
3106 struct c_label_vars
*label_vars
;
3110 label
= lookup_label (name
);
3111 if (label
== NULL_TREE
)
3114 /* If we are jumping to a different function, we can't issue any
3116 if (DECL_CONTEXT (label
) != current_function_decl
)
3118 gcc_assert (C_DECLARED_LABEL_FLAG (label
));
3122 label_vars
= I_LABEL_BINDING (name
)->u
.label
;
3124 /* If the label has not yet been defined, then push this goto on a
3125 list for possible later warnings. */
3126 if (label_vars
->label_bindings
.scope
== NULL
)
3128 struct c_goto_bindings
*g
;
3130 g
= ggc_alloc_c_goto_bindings ();
3132 set_spot_bindings (&g
->goto_bindings
, true);
3133 VEC_safe_push (c_goto_bindings_p
, gc
, label_vars
->gotos
, g
);
3137 /* If there are any decls in label_vars->decls_in_scope, then this
3138 goto has missed the declaration of the decl. This happens for a
3144 Issue a warning or error. */
3145 FOR_EACH_VEC_ELT (tree
, label_vars
->decls_in_scope
, ix
, decl
)
3146 warn_about_goto (loc
, label
, decl
);
3148 if (label_vars
->label_bindings
.left_stmt_expr
)
3150 error_at (loc
, "jump into statement expression");
3151 inform (DECL_SOURCE_LOCATION (label
), "label %qD defined here", label
);
3157 /* Make a label named NAME in the current function, shadowing silently
3158 any that may be inherited from containing functions or containing
3159 scopes. This is called for __label__ declarations. */
3162 declare_label (tree name
)
3164 struct c_binding
*b
= I_LABEL_BINDING (name
);
3166 struct c_label_vars
*label_vars
;
3168 /* Check to make sure that the label hasn't already been declared
3170 if (b
&& B_IN_CURRENT_SCOPE (b
))
3172 error ("duplicate label declaration %qE", name
);
3173 locate_old_decl (b
->decl
);
3175 /* Just use the previous declaration. */
3179 label
= make_label (input_location
, name
, false, &label_vars
);
3180 C_DECLARED_LABEL_FLAG (label
) = 1;
3182 /* Declared labels go in the current scope. */
3183 bind_label (name
, label
, current_scope
, label_vars
);
3188 /* When we define a label, issue any appropriate warnings if there are
3189 any gotos earlier in the function which jump to this label. */
3192 check_earlier_gotos (tree label
, struct c_label_vars
* label_vars
)
3195 struct c_goto_bindings
*g
;
3197 FOR_EACH_VEC_ELT (c_goto_bindings_p
, label_vars
->gotos
, ix
, g
)
3199 struct c_binding
*b
;
3200 struct c_scope
*scope
;
3202 /* We have a goto to this label. The goto is going forward. In
3203 g->scope, the goto is going to skip any binding which was
3204 defined after g->bindings_in_scope. */
3205 if (g
->goto_bindings
.scope
->has_jump_unsafe_decl
)
3207 for (b
= g
->goto_bindings
.scope
->bindings
;
3208 b
!= g
->goto_bindings
.bindings_in_scope
;
3211 if (decl_jump_unsafe (b
->decl
))
3212 warn_about_goto (g
->loc
, label
, b
->decl
);
3216 /* We also need to warn about decls defined in any scopes
3217 between the scope of the label and the scope of the goto. */
3218 for (scope
= label_vars
->label_bindings
.scope
;
3219 scope
!= g
->goto_bindings
.scope
;
3220 scope
= scope
->outer
)
3222 gcc_assert (scope
!= NULL
);
3223 if (scope
->has_jump_unsafe_decl
)
3225 if (scope
== label_vars
->label_bindings
.scope
)
3226 b
= label_vars
->label_bindings
.bindings_in_scope
;
3228 b
= scope
->bindings
;
3229 for (; b
!= NULL
; b
= b
->prev
)
3231 if (decl_jump_unsafe (b
->decl
))
3232 warn_about_goto (g
->loc
, label
, b
->decl
);
3237 if (g
->goto_bindings
.stmt_exprs
> 0)
3239 error_at (g
->loc
, "jump into statement expression");
3240 inform (DECL_SOURCE_LOCATION (label
), "label %qD defined here",
3245 /* Now that the label is defined, we will issue warnings about
3246 subsequent gotos to this label when we see them. */
3247 VEC_truncate (c_goto_bindings_p
, label_vars
->gotos
, 0);
3248 label_vars
->gotos
= NULL
;
3251 /* Define a label, specifying the location in the source file.
3252 Return the LABEL_DECL node for the label, if the definition is valid.
3253 Otherwise return 0. */
3256 define_label (location_t location
, tree name
)
3258 /* Find any preexisting label with this name. It is an error
3259 if that label has already been defined in this function, or
3260 if there is a containing function with a declared label with
3262 tree label
= I_LABEL_DECL (name
);
3265 && ((DECL_CONTEXT (label
) == current_function_decl
3266 && DECL_INITIAL (label
) != 0)
3267 || (DECL_CONTEXT (label
) != current_function_decl
3268 && C_DECLARED_LABEL_FLAG (label
))))
3270 error_at (location
, "duplicate label %qD", label
);
3271 locate_old_decl (label
);
3274 else if (label
&& DECL_CONTEXT (label
) == current_function_decl
)
3276 struct c_label_vars
*label_vars
= I_LABEL_BINDING (name
)->u
.label
;
3278 /* The label has been used or declared already in this function,
3279 but not defined. Update its location to point to this
3281 DECL_SOURCE_LOCATION (label
) = location
;
3282 set_spot_bindings (&label_vars
->label_bindings
, true);
3284 /* Issue warnings as required about any goto statements from
3285 earlier in the function. */
3286 check_earlier_gotos (label
, label_vars
);
3290 struct c_label_vars
*label_vars
;
3292 /* No label binding for that identifier; make one. */
3293 label
= make_label (location
, name
, true, &label_vars
);
3295 /* Ordinary labels go in the current function scope. */
3296 bind_label (name
, label
, current_function_scope
, label_vars
);
3299 if (!in_system_header
&& lookup_name (name
))
3300 warning_at (location
, OPT_Wtraditional
,
3301 "traditional C lacks a separate namespace "
3302 "for labels, identifier %qE conflicts", name
);
3304 /* Mark label as having been defined. */
3305 DECL_INITIAL (label
) = error_mark_node
;
3309 /* Get the bindings for a new switch statement. This is used to issue
3310 warnings as appropriate for jumps from the switch to case or
3313 struct c_spot_bindings
*
3314 c_get_switch_bindings (void)
3316 struct c_spot_bindings
*switch_bindings
;
3318 switch_bindings
= XNEW (struct c_spot_bindings
);
3319 set_spot_bindings (switch_bindings
, true);
3320 return switch_bindings
;
3324 c_release_switch_bindings (struct c_spot_bindings
*bindings
)
3326 gcc_assert (bindings
->stmt_exprs
== 0 && !bindings
->left_stmt_expr
);
3330 /* This is called at the point of a case or default label to issue
3331 warnings about decls as needed. It returns true if it found an
3332 error, not just a warning. */
3335 c_check_switch_jump_warnings (struct c_spot_bindings
*switch_bindings
,
3336 location_t switch_loc
, location_t case_loc
)
3339 struct c_scope
*scope
;
3342 for (scope
= current_scope
;
3343 scope
!= switch_bindings
->scope
;
3344 scope
= scope
->outer
)
3346 struct c_binding
*b
;
3348 gcc_assert (scope
!= NULL
);
3350 if (!scope
->has_jump_unsafe_decl
)
3353 for (b
= scope
->bindings
; b
!= NULL
; b
= b
->prev
)
3355 if (decl_jump_unsafe (b
->decl
))
3357 if (variably_modified_type_p (TREE_TYPE (b
->decl
), NULL_TREE
))
3361 ("switch jumps into scope of identifier with "
3362 "variably modified type"));
3365 warning_at (case_loc
, OPT_Wjump_misses_init
,
3366 "switch jumps over variable initialization");
3367 inform (switch_loc
, "switch starts here");
3368 inform (DECL_SOURCE_LOCATION (b
->decl
), "%qD declared here",
3374 if (switch_bindings
->stmt_exprs
> 0)
3377 error_at (case_loc
, "switch jumps into statement expression");
3378 inform (switch_loc
, "switch starts here");
3384 /* Given NAME, an IDENTIFIER_NODE,
3385 return the structure (or union or enum) definition for that name.
3386 If THISLEVEL_ONLY is nonzero, searches only the current_scope.
3387 CODE says which kind of type the caller wants;
3388 it is RECORD_TYPE or UNION_TYPE or ENUMERAL_TYPE.
3389 If PLOC is not NULL and this returns non-null, it sets *PLOC to the
3390 location where the tag was defined.
3391 If the wrong kind of type is found, an error is reported. */
3394 lookup_tag (enum tree_code code
, tree name
, int thislevel_only
,
3397 struct c_binding
*b
= I_TAG_BINDING (name
);
3403 /* We only care about whether it's in this level if
3404 thislevel_only was set or it might be a type clash. */
3405 if (thislevel_only
|| TREE_CODE (b
->decl
) != code
)
3407 /* For our purposes, a tag in the external scope is the same as
3408 a tag in the file scope. (Primarily relevant to Objective-C
3409 and its builtin structure tags, which get pushed before the
3410 file scope is created.) */
3411 if (B_IN_CURRENT_SCOPE (b
)
3412 || (current_scope
== file_scope
&& B_IN_EXTERNAL_SCOPE (b
)))
3416 if (thislevel_only
&& !thislevel
)
3419 if (TREE_CODE (b
->decl
) != code
)
3421 /* Definition isn't the kind we were looking for. */
3422 pending_invalid_xref
= name
;
3423 pending_invalid_xref_location
= input_location
;
3425 /* If in the same binding level as a declaration as a tag
3426 of a different type, this must not be allowed to
3427 shadow that tag, so give the error immediately.
3428 (For example, "struct foo; union foo;" is invalid.) */
3430 pending_xref_error ();
3439 /* Print an error message now
3440 for a recent invalid struct, union or enum cross reference.
3441 We don't print them immediately because they are not invalid
3442 when used in the `struct foo;' construct for shadowing. */
3445 pending_xref_error (void)
3447 if (pending_invalid_xref
!= 0)
3448 error_at (pending_invalid_xref_location
, "%qE defined as wrong kind of tag",
3449 pending_invalid_xref
);
3450 pending_invalid_xref
= 0;
3454 /* Look up NAME in the current scope and its superiors
3455 in the namespace of variables, functions and typedefs.
3456 Return a ..._DECL node of some kind representing its definition,
3457 or return 0 if it is undefined. */
3460 lookup_name (tree name
)
3462 struct c_binding
*b
= I_SYMBOL_BINDING (name
);
3463 if (b
&& !b
->invisible
)
3465 maybe_record_typedef_use (b
->decl
);
3471 /* Similar to `lookup_name' but look only at the indicated scope. */
3474 lookup_name_in_scope (tree name
, struct c_scope
*scope
)
3476 struct c_binding
*b
;
3478 for (b
= I_SYMBOL_BINDING (name
); b
; b
= b
->shadowed
)
3479 if (B_IN_SCOPE (b
, scope
))
3484 /* Create the predefined scalar types of C,
3485 and some nodes representing standard constants (0, 1, (void *) 0).
3486 Initialize the global scope.
3487 Make definitions for built-in primitive functions. */
3490 c_init_decl_processing (void)
3492 location_t save_loc
= input_location
;
3494 /* Initialize reserved words for parser. */
3497 current_function_decl
= 0;
3499 gcc_obstack_init (&parser_obstack
);
3501 /* Make the externals scope. */
3503 external_scope
= current_scope
;
3505 /* Declarations from c_common_nodes_and_builtins must not be associated
3506 with this input file, lest we get differences between using and not
3507 using preprocessed headers. */
3508 input_location
= BUILTINS_LOCATION
;
3510 c_common_nodes_and_builtins ();
3512 /* In C, comparisons and TRUTH_* expressions have type int. */
3513 truthvalue_type_node
= integer_type_node
;
3514 truthvalue_true_node
= integer_one_node
;
3515 truthvalue_false_node
= integer_zero_node
;
3517 /* Even in C99, which has a real boolean type. */
3518 pushdecl (build_decl (UNKNOWN_LOCATION
, TYPE_DECL
, get_identifier ("_Bool"),
3519 boolean_type_node
));
3521 input_location
= save_loc
;
3523 pedantic_lvalues
= true;
3525 make_fname_decl
= c_make_fname_decl
;
3526 start_fname_decls ();
3529 /* Create the VAR_DECL at LOC for __FUNCTION__ etc. ID is the name to
3530 give the decl, NAME is the initialization string and TYPE_DEP
3531 indicates whether NAME depended on the type of the function. As we
3532 don't yet implement delayed emission of static data, we mark the
3533 decl as emitted so it is not placed in the output. Anything using
3534 it must therefore pull out the STRING_CST initializer directly.
3538 c_make_fname_decl (location_t loc
, tree id
, int type_dep
)
3540 const char *name
= fname_as_string (type_dep
);
3541 tree decl
, type
, init
;
3542 size_t length
= strlen (name
);
3544 type
= build_array_type (char_type_node
,
3545 build_index_type (size_int (length
)));
3546 type
= c_build_qualified_type (type
, TYPE_QUAL_CONST
);
3548 decl
= build_decl (loc
, VAR_DECL
, id
, type
);
3550 TREE_STATIC (decl
) = 1;
3551 TREE_READONLY (decl
) = 1;
3552 DECL_ARTIFICIAL (decl
) = 1;
3554 init
= build_string (length
+ 1, name
);
3555 free (CONST_CAST (char *, name
));
3556 TREE_TYPE (init
) = type
;
3557 DECL_INITIAL (decl
) = init
;
3559 TREE_USED (decl
) = 1;
3561 if (current_function_decl
3562 /* For invalid programs like this:
3565 const char* p = __FUNCTION__;
3567 the __FUNCTION__ is believed to appear in K&R style function
3568 parameter declarator. In that case we still don't have
3570 && (!seen_error () || current_function_scope
))
3572 DECL_CONTEXT (decl
) = current_function_decl
;
3573 bind (id
, decl
, current_function_scope
,
3574 /*invisible=*/false, /*nested=*/false, UNKNOWN_LOCATION
);
3577 finish_decl (decl
, loc
, init
, NULL_TREE
, NULL_TREE
);
3583 c_builtin_function (tree decl
)
3585 tree type
= TREE_TYPE (decl
);
3586 tree id
= DECL_NAME (decl
);
3588 const char *name
= IDENTIFIER_POINTER (id
);
3589 C_DECL_BUILTIN_PROTOTYPE (decl
) = prototype_p (type
);
3591 /* Should never be called on a symbol with a preexisting meaning. */
3592 gcc_assert (!I_SYMBOL_BINDING (id
));
3594 bind (id
, decl
, external_scope
, /*invisible=*/true, /*nested=*/false,
3597 /* Builtins in the implementation namespace are made visible without
3598 needing to be explicitly declared. See push_file_scope. */
3599 if (name
[0] == '_' && (name
[1] == '_' || ISUPPER (name
[1])))
3601 DECL_CHAIN (decl
) = visible_builtins
;
3602 visible_builtins
= decl
;
3609 c_builtin_function_ext_scope (tree decl
)
3611 tree type
= TREE_TYPE (decl
);
3612 tree id
= DECL_NAME (decl
);
3614 const char *name
= IDENTIFIER_POINTER (id
);
3615 C_DECL_BUILTIN_PROTOTYPE (decl
) = prototype_p (type
);
3617 /* Should never be called on a symbol with a preexisting meaning. */
3618 gcc_assert (!I_SYMBOL_BINDING (id
));
3620 bind (id
, decl
, external_scope
, /*invisible=*/false, /*nested=*/false,
3623 /* Builtins in the implementation namespace are made visible without
3624 needing to be explicitly declared. See push_file_scope. */
3625 if (name
[0] == '_' && (name
[1] == '_' || ISUPPER (name
[1])))
3627 DECL_CHAIN (decl
) = visible_builtins
;
3628 visible_builtins
= decl
;
3634 /* Called when a declaration is seen that contains no names to declare.
3635 If its type is a reference to a structure, union or enum inherited
3636 from a containing scope, shadow that tag name for the current scope
3637 with a forward reference.
3638 If its type defines a new named structure or union
3639 or defines an enum, it is valid but we need not do anything here.
3640 Otherwise, it is an error. */
3643 shadow_tag (const struct c_declspecs
*declspecs
)
3645 shadow_tag_warned (declspecs
, 0);
3648 /* WARNED is 1 if we have done a pedwarn, 2 if we have done a warning,
3651 shadow_tag_warned (const struct c_declspecs
*declspecs
, int warned
)
3653 bool found_tag
= false;
3655 if (declspecs
->type
&& !declspecs
->default_int_p
&& !declspecs
->typedef_p
)
3657 tree value
= declspecs
->type
;
3658 enum tree_code code
= TREE_CODE (value
);
3660 if (code
== RECORD_TYPE
|| code
== UNION_TYPE
|| code
== ENUMERAL_TYPE
)
3661 /* Used to test also that TYPE_SIZE (value) != 0.
3662 That caused warning for `struct foo;' at top level in the file. */
3664 tree name
= TYPE_NAME (value
);
3669 if (declspecs
->restrict_p
)
3671 error ("invalid use of %<restrict%>");
3677 if (warned
!= 1 && code
!= ENUMERAL_TYPE
)
3678 /* Empty unnamed enum OK */
3680 pedwarn (input_location
, 0,
3681 "unnamed struct/union that defines no instances");
3685 else if (declspecs
->typespec_kind
!= ctsk_tagdef
3686 && declspecs
->typespec_kind
!= ctsk_tagfirstref
3687 && declspecs
->storage_class
!= csc_none
)
3690 pedwarn (input_location
, 0,
3691 "empty declaration with storage class specifier "
3692 "does not redeclare tag");
3694 pending_xref_error ();
3696 else if (declspecs
->typespec_kind
!= ctsk_tagdef
3697 && declspecs
->typespec_kind
!= ctsk_tagfirstref
3698 && (declspecs
->const_p
3699 || declspecs
->volatile_p
3700 || declspecs
->restrict_p
3701 || declspecs
->address_space
))
3704 pedwarn (input_location
, 0,
3705 "empty declaration with type qualifier "
3706 "does not redeclare tag");
3708 pending_xref_error ();
3712 pending_invalid_xref
= 0;
3713 t
= lookup_tag (code
, name
, 1, NULL
);
3717 t
= make_node (code
);
3718 pushtag (input_location
, name
, t
);
3724 if (warned
!= 1 && !in_system_header
)
3726 pedwarn (input_location
, 0,
3727 "useless type name in empty declaration");
3732 else if (warned
!= 1 && !in_system_header
&& declspecs
->typedef_p
)
3734 pedwarn (input_location
, 0, "useless type name in empty declaration");
3738 pending_invalid_xref
= 0;
3740 if (declspecs
->inline_p
)
3742 error ("%<inline%> in empty declaration");
3746 if (declspecs
->noreturn_p
)
3748 error ("%<_Noreturn%> in empty declaration");
3752 if (current_scope
== file_scope
&& declspecs
->storage_class
== csc_auto
)
3754 error ("%<auto%> in file-scope empty declaration");
3758 if (current_scope
== file_scope
&& declspecs
->storage_class
== csc_register
)
3760 error ("%<register%> in file-scope empty declaration");
3764 if (!warned
&& !in_system_header
&& declspecs
->storage_class
!= csc_none
)
3766 warning (0, "useless storage class specifier in empty declaration");
3770 if (!warned
&& !in_system_header
&& declspecs
->thread_p
)
3772 warning (0, "useless %<__thread%> in empty declaration");
3776 if (!warned
&& !in_system_header
&& (declspecs
->const_p
3777 || declspecs
->volatile_p
3778 || declspecs
->restrict_p
3779 || declspecs
->address_space
))
3781 warning (0, "useless type qualifier in empty declaration");
3788 pedwarn (input_location
, 0, "empty declaration");
3793 /* Return the qualifiers from SPECS as a bitwise OR of TYPE_QUAL_*
3794 bits. SPECS represents declaration specifiers that the grammar
3795 only permits to contain type qualifiers and attributes. */
3798 quals_from_declspecs (const struct c_declspecs
*specs
)
3800 int quals
= ((specs
->const_p
? TYPE_QUAL_CONST
: 0)
3801 | (specs
->volatile_p
? TYPE_QUAL_VOLATILE
: 0)
3802 | (specs
->restrict_p
? TYPE_QUAL_RESTRICT
: 0)
3803 | (ENCODE_QUAL_ADDR_SPACE (specs
->address_space
)));
3804 gcc_assert (!specs
->type
3805 && !specs
->decl_attr
3806 && specs
->typespec_word
== cts_none
3807 && specs
->storage_class
== csc_none
3808 && !specs
->typedef_p
3809 && !specs
->explicit_signed_p
3810 && !specs
->deprecated_p
3812 && !specs
->long_long_p
3815 && !specs
->unsigned_p
3816 && !specs
->complex_p
3818 && !specs
->noreturn_p
3819 && !specs
->thread_p
);
3823 /* Construct an array declarator. LOC is the location of the
3824 beginning of the array (usually the opening brace). EXPR is the
3825 expression inside [], or NULL_TREE. QUALS are the type qualifiers
3826 inside the [] (to be applied to the pointer to which a parameter
3827 array is converted). STATIC_P is true if "static" is inside the
3828 [], false otherwise. VLA_UNSPEC_P is true if the array is [*], a
3829 VLA of unspecified length which is nevertheless a complete type,
3830 false otherwise. The field for the contained declarator is left to
3831 be filled in by set_array_declarator_inner. */
3833 struct c_declarator
*
3834 build_array_declarator (location_t loc
,
3835 tree expr
, struct c_declspecs
*quals
, bool static_p
,
3838 struct c_declarator
*declarator
= XOBNEW (&parser_obstack
,
3839 struct c_declarator
);
3840 declarator
->id_loc
= loc
;
3841 declarator
->kind
= cdk_array
;
3842 declarator
->declarator
= 0;
3843 declarator
->u
.array
.dimen
= expr
;
3846 declarator
->u
.array
.attrs
= quals
->attrs
;
3847 declarator
->u
.array
.quals
= quals_from_declspecs (quals
);
3851 declarator
->u
.array
.attrs
= NULL_TREE
;
3852 declarator
->u
.array
.quals
= 0;
3854 declarator
->u
.array
.static_p
= static_p
;
3855 declarator
->u
.array
.vla_unspec_p
= vla_unspec_p
;
3858 if (static_p
|| quals
!= NULL
)
3859 pedwarn (loc
, OPT_pedantic
,
3860 "ISO C90 does not support %<static%> or type "
3861 "qualifiers in parameter array declarators");
3863 pedwarn (loc
, OPT_pedantic
,
3864 "ISO C90 does not support %<[*]%> array declarators");
3868 if (!current_scope
->parm_flag
)
3871 error_at (loc
, "%<[*]%> not allowed in other than "
3872 "function prototype scope");
3873 declarator
->u
.array
.vla_unspec_p
= false;
3876 current_scope
->had_vla_unspec
= true;
3881 /* Set the contained declarator of an array declarator. DECL is the
3882 declarator, as constructed by build_array_declarator; INNER is what
3883 appears on the left of the []. */
3885 struct c_declarator
*
3886 set_array_declarator_inner (struct c_declarator
*decl
,
3887 struct c_declarator
*inner
)
3889 decl
->declarator
= inner
;
3893 /* INIT is a constructor that forms DECL's initializer. If the final
3894 element initializes a flexible array field, add the size of that
3895 initializer to DECL's size. */
3898 add_flexible_array_elts_to_size (tree decl
, tree init
)
3902 if (VEC_empty (constructor_elt
, CONSTRUCTOR_ELTS (init
)))
3905 elt
= VEC_last (constructor_elt
, CONSTRUCTOR_ELTS (init
))->value
;
3906 type
= TREE_TYPE (elt
);
3907 if (TREE_CODE (type
) == ARRAY_TYPE
3908 && TYPE_SIZE (type
) == NULL_TREE
3909 && TYPE_DOMAIN (type
) != NULL_TREE
3910 && TYPE_MAX_VALUE (TYPE_DOMAIN (type
)) == NULL_TREE
)
3912 complete_array_type (&type
, elt
, false);
3914 = size_binop (PLUS_EXPR
, DECL_SIZE (decl
), TYPE_SIZE (type
));
3915 DECL_SIZE_UNIT (decl
)
3916 = size_binop (PLUS_EXPR
, DECL_SIZE_UNIT (decl
), TYPE_SIZE_UNIT (type
));
3920 /* Decode a "typename", such as "int **", returning a ..._TYPE node.
3921 Set *EXPR, if EXPR not NULL, to any expression to be evaluated
3922 before the type name, and set *EXPR_CONST_OPERANDS, if
3923 EXPR_CONST_OPERANDS not NULL, to indicate whether the type name may
3924 appear in a constant expression. */
3927 groktypename (struct c_type_name
*type_name
, tree
*expr
,
3928 bool *expr_const_operands
)
3931 tree attrs
= type_name
->specs
->attrs
;
3933 type_name
->specs
->attrs
= NULL_TREE
;
3935 type
= grokdeclarator (type_name
->declarator
, type_name
->specs
, TYPENAME
,
3936 false, NULL
, &attrs
, expr
, expr_const_operands
,
3939 /* Apply attributes. */
3940 decl_attributes (&type
, attrs
, 0);
3945 /* Decode a declarator in an ordinary declaration or data definition.
3946 This is called as soon as the type information and variable name
3947 have been parsed, before parsing the initializer if any.
3948 Here we create the ..._DECL node, fill in its type,
3949 and put it on the list of decls for the current context.
3950 The ..._DECL node is returned as the value.
3952 Exception: for arrays where the length is not specified,
3953 the type is left null, to be filled in by `finish_decl'.
3955 Function definitions do not come here; they go to start_function
3956 instead. However, external and forward declarations of functions
3957 do go through here. Structure field declarations are done by
3958 grokfield and not through here. */
3961 start_decl (struct c_declarator
*declarator
, struct c_declspecs
*declspecs
,
3962 bool initialized
, tree attributes
)
3966 tree expr
= NULL_TREE
;
3967 enum deprecated_states deprecated_state
= DEPRECATED_NORMAL
;
3969 /* An object declared as __attribute__((deprecated)) suppresses
3970 warnings of uses of other deprecated items. */
3971 if (lookup_attribute ("deprecated", attributes
))
3972 deprecated_state
= DEPRECATED_SUPPRESS
;
3974 decl
= grokdeclarator (declarator
, declspecs
,
3975 NORMAL
, initialized
, NULL
, &attributes
, &expr
, NULL
,
3981 add_stmt (fold_convert (void_type_node
, expr
));
3983 if (TREE_CODE (decl
) != FUNCTION_DECL
&& MAIN_NAME_P (DECL_NAME (decl
)))
3984 warning (OPT_Wmain
, "%q+D is usually a function", decl
);
3987 /* Is it valid for this decl to have an initializer at all?
3988 If not, set INITIALIZED to zero, which will indirectly
3989 tell 'finish_decl' to ignore the initializer once it is parsed. */
3990 switch (TREE_CODE (decl
))
3993 error ("typedef %qD is initialized (use __typeof__ instead)", decl
);
3998 error ("function %qD is initialized like a variable", decl
);
4003 /* DECL_INITIAL in a PARM_DECL is really DECL_ARG_TYPE. */
4004 error ("parameter %qD is initialized", decl
);
4009 /* Don't allow initializations for incomplete types except for
4010 arrays which might be completed by the initialization. */
4012 /* This can happen if the array size is an undefined macro.
4013 We already gave a warning, so we don't need another one. */
4014 if (TREE_TYPE (decl
) == error_mark_node
)
4016 else if (COMPLETE_TYPE_P (TREE_TYPE (decl
)))
4018 /* A complete type is ok if size is fixed. */
4020 if (TREE_CODE (TYPE_SIZE (TREE_TYPE (decl
))) != INTEGER_CST
4021 || C_DECL_VARIABLE_SIZE (decl
))
4023 error ("variable-sized object may not be initialized");
4027 else if (TREE_CODE (TREE_TYPE (decl
)) != ARRAY_TYPE
)
4029 error ("variable %qD has initializer but incomplete type", decl
);
4032 else if (C_DECL_VARIABLE_SIZE (decl
))
4034 /* Although C99 is unclear about whether incomplete arrays
4035 of VLAs themselves count as VLAs, it does not make
4036 sense to permit them to be initialized given that
4037 ordinary VLAs may not be initialized. */
4038 error ("variable-sized object may not be initialized");
4045 if (current_scope
== file_scope
)
4046 TREE_STATIC (decl
) = 1;
4048 /* Tell 'pushdecl' this is an initialized decl
4049 even though we don't yet have the initializer expression.
4050 Also tell 'finish_decl' it may store the real initializer. */
4051 DECL_INITIAL (decl
) = error_mark_node
;
4054 /* If this is a function declaration, write a record describing it to the
4055 prototypes file (if requested). */
4057 if (TREE_CODE (decl
) == FUNCTION_DECL
)
4058 gen_aux_info_record (decl
, 0, 0, prototype_p (TREE_TYPE (decl
)));
4060 /* ANSI specifies that a tentative definition which is not merged with
4061 a non-tentative definition behaves exactly like a definition with an
4062 initializer equal to zero. (Section 3.7.2)
4064 -fno-common gives strict ANSI behavior, though this tends to break
4065 a large body of code that grew up without this rule.
4067 Thread-local variables are never common, since there's no entrenched
4068 body of code to break, and it allows more efficient variable references
4069 in the presence of dynamic linking. */
4071 if (TREE_CODE (decl
) == VAR_DECL
4073 && TREE_PUBLIC (decl
)
4074 && !DECL_THREAD_LOCAL_P (decl
)
4076 DECL_COMMON (decl
) = 1;
4078 /* Set attributes here so if duplicate decl, will have proper attributes. */
4079 decl_attributes (&decl
, attributes
, 0);
4081 /* Handle gnu_inline attribute. */
4082 if (declspecs
->inline_p
4083 && !flag_gnu89_inline
4084 && TREE_CODE (decl
) == FUNCTION_DECL
4085 && (lookup_attribute ("gnu_inline", DECL_ATTRIBUTES (decl
))
4086 || current_function_decl
))
4088 if (declspecs
->storage_class
== csc_auto
&& current_scope
!= file_scope
)
4090 else if (declspecs
->storage_class
!= csc_static
)
4091 DECL_EXTERNAL (decl
) = !DECL_EXTERNAL (decl
);
4094 if (TREE_CODE (decl
) == FUNCTION_DECL
4095 && targetm
.calls
.promote_prototypes (TREE_TYPE (decl
)))
4097 struct c_declarator
*ce
= declarator
;
4099 if (ce
->kind
== cdk_pointer
)
4100 ce
= declarator
->declarator
;
4101 if (ce
->kind
== cdk_function
)
4103 tree args
= ce
->u
.arg_info
->parms
;
4104 for (; args
; args
= DECL_CHAIN (args
))
4106 tree type
= TREE_TYPE (args
);
4107 if (type
&& INTEGRAL_TYPE_P (type
)
4108 && TYPE_PRECISION (type
) < TYPE_PRECISION (integer_type_node
))
4109 DECL_ARG_TYPE (args
) = integer_type_node
;
4114 if (TREE_CODE (decl
) == FUNCTION_DECL
4115 && DECL_DECLARED_INLINE_P (decl
)
4116 && DECL_UNINLINABLE (decl
)
4117 && lookup_attribute ("noinline", DECL_ATTRIBUTES (decl
)))
4118 warning (OPT_Wattributes
, "inline function %q+D given attribute noinline",
4121 /* C99 6.7.4p3: An inline definition of a function with external
4122 linkage shall not contain a definition of a modifiable object
4123 with static storage duration... */
4124 if (TREE_CODE (decl
) == VAR_DECL
4125 && current_scope
!= file_scope
4126 && TREE_STATIC (decl
)
4127 && !TREE_READONLY (decl
)
4128 && DECL_DECLARED_INLINE_P (current_function_decl
)
4129 && DECL_EXTERNAL (current_function_decl
))
4130 record_inline_static (input_location
, current_function_decl
,
4131 decl
, csi_modifiable
);
4133 if (c_dialect_objc ()
4134 && (TREE_CODE (decl
) == VAR_DECL
4135 || TREE_CODE (decl
) == FUNCTION_DECL
))
4136 objc_check_global_decl (decl
);
4138 /* Add this decl to the current scope.
4139 TEM may equal DECL or it may be a previous decl of the same name. */
4140 tem
= pushdecl (decl
);
4142 if (initialized
&& DECL_EXTERNAL (tem
))
4144 DECL_EXTERNAL (tem
) = 0;
4145 TREE_STATIC (tem
) = 1;
4151 /* Subroutine of finish_decl. TYPE is the type of an uninitialized object
4152 DECL or the non-array element type if DECL is an uninitialized array.
4153 If that type has a const member, diagnose this. */
4156 diagnose_uninitialized_cst_member (tree decl
, tree type
)
4159 for (field
= TYPE_FIELDS (type
); field
; field
= TREE_CHAIN (field
))
4162 if (TREE_CODE (field
) != FIELD_DECL
)
4164 field_type
= strip_array_types (TREE_TYPE (field
));
4166 if (TYPE_QUALS (field_type
) & TYPE_QUAL_CONST
)
4168 warning_at (DECL_SOURCE_LOCATION (decl
), OPT_Wc___compat
,
4169 "uninitialized const member in %qT is invalid in C++",
4170 strip_array_types (TREE_TYPE (decl
)));
4171 inform (DECL_SOURCE_LOCATION (field
), "%qD should be initialized", field
);
4174 if (TREE_CODE (field_type
) == RECORD_TYPE
4175 || TREE_CODE (field_type
) == UNION_TYPE
)
4176 diagnose_uninitialized_cst_member (decl
, field_type
);
4180 /* Finish processing of a declaration;
4181 install its initial value.
4182 If ORIGTYPE is not NULL_TREE, it is the original type of INIT.
4183 If the length of an array type is not known before,
4184 it must be determined now, from the initial value, or it is an error.
4186 INIT_LOC is the location of the initial value. */
4189 finish_decl (tree decl
, location_t init_loc
, tree init
,
4190 tree origtype
, tree asmspec_tree
)
4193 bool was_incomplete
= (DECL_SIZE (decl
) == 0);
4194 const char *asmspec
= 0;
4196 /* If a name was specified, get the string. */
4197 if ((TREE_CODE (decl
) == FUNCTION_DECL
|| TREE_CODE (decl
) == VAR_DECL
)
4198 && DECL_FILE_SCOPE_P (decl
))
4199 asmspec_tree
= maybe_apply_renaming_pragma (decl
, asmspec_tree
);
4201 asmspec
= TREE_STRING_POINTER (asmspec_tree
);
4203 if (TREE_CODE (decl
) == VAR_DECL
4204 && TREE_STATIC (decl
)
4205 && global_bindings_p ())
4206 /* So decl is a global variable. Record the types it uses
4207 so that we can decide later to emit debug info for them. */
4208 record_types_used_by_current_var_decl (decl
);
4210 /* If `start_decl' didn't like having an initialization, ignore it now. */
4211 if (init
!= 0 && DECL_INITIAL (decl
) == 0)
4214 /* Don't crash if parm is initialized. */
4215 if (TREE_CODE (decl
) == PARM_DECL
)
4219 store_init_value (init_loc
, decl
, init
, origtype
);
4221 if (c_dialect_objc () && (TREE_CODE (decl
) == VAR_DECL
4222 || TREE_CODE (decl
) == FUNCTION_DECL
4223 || TREE_CODE (decl
) == FIELD_DECL
))
4224 objc_check_decl (decl
);
4226 type
= TREE_TYPE (decl
);
4228 /* Deduce size of array from initialization, if not already known. */
4229 if (TREE_CODE (type
) == ARRAY_TYPE
4230 && TYPE_DOMAIN (type
) == 0
4231 && TREE_CODE (decl
) != TYPE_DECL
)
4234 = (TREE_STATIC (decl
)
4235 /* Even if pedantic, an external linkage array
4236 may have incomplete type at first. */
4237 ? pedantic
&& !TREE_PUBLIC (decl
)
4238 : !DECL_EXTERNAL (decl
));
4240 = complete_array_type (&TREE_TYPE (decl
), DECL_INITIAL (decl
),
4243 /* Get the completed type made by complete_array_type. */
4244 type
= TREE_TYPE (decl
);
4249 error ("initializer fails to determine size of %q+D", decl
);
4254 error ("array size missing in %q+D", decl
);
4255 /* If a `static' var's size isn't known,
4256 make it extern as well as static, so it does not get
4258 If it is not `static', then do not mark extern;
4259 finish_incomplete_decl will give it a default size
4260 and it will get allocated. */
4261 else if (!pedantic
&& TREE_STATIC (decl
) && !TREE_PUBLIC (decl
))
4262 DECL_EXTERNAL (decl
) = 1;
4266 error ("zero or negative size array %q+D", decl
);
4270 /* For global variables, update the copy of the type that
4271 exists in the binding. */
4272 if (TREE_PUBLIC (decl
))
4274 struct c_binding
*b_ext
= I_SYMBOL_BINDING (DECL_NAME (decl
));
4275 while (b_ext
&& !B_IN_EXTERNAL_SCOPE (b_ext
))
4276 b_ext
= b_ext
->shadowed
;
4279 if (b_ext
->u
.type
&& comptypes (b_ext
->u
.type
, type
))
4280 b_ext
->u
.type
= composite_type (b_ext
->u
.type
, type
);
4282 b_ext
->u
.type
= type
;
4291 if (DECL_INITIAL (decl
))
4292 TREE_TYPE (DECL_INITIAL (decl
)) = type
;
4294 layout_decl (decl
, 0);
4297 if (TREE_CODE (decl
) == VAR_DECL
)
4299 if (init
&& TREE_CODE (init
) == CONSTRUCTOR
)
4300 add_flexible_array_elts_to_size (decl
, init
);
4302 if (DECL_SIZE (decl
) == 0 && TREE_TYPE (decl
) != error_mark_node
4303 && COMPLETE_TYPE_P (TREE_TYPE (decl
)))
4304 layout_decl (decl
, 0);
4306 if (DECL_SIZE (decl
) == 0
4307 /* Don't give an error if we already gave one earlier. */
4308 && TREE_TYPE (decl
) != error_mark_node
4309 && (TREE_STATIC (decl
)
4310 /* A static variable with an incomplete type
4311 is an error if it is initialized.
4312 Also if it is not file scope.
4313 Otherwise, let it through, but if it is not `extern'
4314 then it may cause an error message later. */
4315 ? (DECL_INITIAL (decl
) != 0
4316 || !DECL_FILE_SCOPE_P (decl
))
4317 /* An automatic variable with an incomplete type
4319 : !DECL_EXTERNAL (decl
)))
4321 error ("storage size of %q+D isn%'t known", decl
);
4322 TREE_TYPE (decl
) = error_mark_node
;
4325 if ((DECL_EXTERNAL (decl
) || TREE_STATIC (decl
))
4326 && DECL_SIZE (decl
) != 0)
4328 if (TREE_CODE (DECL_SIZE (decl
)) == INTEGER_CST
)
4329 constant_expression_warning (DECL_SIZE (decl
));
4332 error ("storage size of %q+D isn%'t constant", decl
);
4333 TREE_TYPE (decl
) = error_mark_node
;
4337 if (TREE_USED (type
))
4339 TREE_USED (decl
) = 1;
4340 DECL_READ_P (decl
) = 1;
4344 /* If this is a function and an assembler name is specified, reset DECL_RTL
4345 so we can give it its new name. Also, update builtin_decl if it
4346 was a normal built-in. */
4347 if (TREE_CODE (decl
) == FUNCTION_DECL
&& asmspec
)
4349 if (DECL_BUILT_IN_CLASS (decl
) == BUILT_IN_NORMAL
)
4350 set_builtin_user_assembler_name (decl
, asmspec
);
4351 set_user_assembler_name (decl
, asmspec
);
4354 /* If #pragma weak was used, mark the decl weak now. */
4355 maybe_apply_pragma_weak (decl
);
4357 /* Output the assembler code and/or RTL code for variables and functions,
4358 unless the type is an undefined structure or union.
4359 If not, it will get done when the type is completed. */
4361 if (TREE_CODE (decl
) == VAR_DECL
|| TREE_CODE (decl
) == FUNCTION_DECL
)
4363 /* Determine the ELF visibility. */
4364 if (TREE_PUBLIC (decl
))
4365 c_determine_visibility (decl
);
4367 /* This is a no-op in c-lang.c or something real in objc-act.c. */
4368 if (c_dialect_objc ())
4369 objc_check_decl (decl
);
4373 /* If this is not a static variable, issue a warning.
4374 It doesn't make any sense to give an ASMSPEC for an
4375 ordinary, non-register local variable. Historically,
4376 GCC has accepted -- but ignored -- the ASMSPEC in
4378 if (!DECL_FILE_SCOPE_P (decl
)
4379 && TREE_CODE (decl
) == VAR_DECL
4380 && !C_DECL_REGISTER (decl
)
4381 && !TREE_STATIC (decl
))
4382 warning (0, "ignoring asm-specifier for non-static local "
4383 "variable %q+D", decl
);
4385 set_user_assembler_name (decl
, asmspec
);
4388 if (DECL_FILE_SCOPE_P (decl
))
4390 if (DECL_INITIAL (decl
) == NULL_TREE
4391 || DECL_INITIAL (decl
) == error_mark_node
)
4392 /* Don't output anything
4393 when a tentative file-scope definition is seen.
4394 But at end of compilation, do output code for them. */
4395 DECL_DEFER_OUTPUT (decl
) = 1;
4396 if (asmspec
&& C_DECL_REGISTER (decl
))
4397 DECL_HARD_REGISTER (decl
) = 1;
4398 rest_of_decl_compilation (decl
, true, 0);
4402 /* In conjunction with an ASMSPEC, the `register'
4403 keyword indicates that we should place the variable
4404 in a particular register. */
4405 if (asmspec
&& C_DECL_REGISTER (decl
))
4407 DECL_HARD_REGISTER (decl
) = 1;
4408 /* This cannot be done for a structure with volatile
4409 fields, on which DECL_REGISTER will have been
4411 if (!DECL_REGISTER (decl
))
4412 error ("cannot put object with volatile field into register");
4415 if (TREE_CODE (decl
) != FUNCTION_DECL
)
4417 /* If we're building a variable sized type, and we might be
4418 reachable other than via the top of the current binding
4419 level, then create a new BIND_EXPR so that we deallocate
4420 the object at the right time. */
4421 /* Note that DECL_SIZE can be null due to errors. */
4422 if (DECL_SIZE (decl
)
4423 && !TREE_CONSTANT (DECL_SIZE (decl
))
4424 && STATEMENT_LIST_HAS_LABEL (cur_stmt_list
))
4427 bind
= build3 (BIND_EXPR
, void_type_node
, NULL
, NULL
, NULL
);
4428 TREE_SIDE_EFFECTS (bind
) = 1;
4430 BIND_EXPR_BODY (bind
) = push_stmt_list ();
4432 add_stmt (build_stmt (DECL_SOURCE_LOCATION (decl
),
4438 if (!DECL_FILE_SCOPE_P (decl
))
4440 /* Recompute the RTL of a local array now
4441 if it used to be an incomplete type. */
4443 && !TREE_STATIC (decl
) && !DECL_EXTERNAL (decl
))
4445 /* If we used it already as memory, it must stay in memory. */
4446 TREE_ADDRESSABLE (decl
) = TREE_USED (decl
);
4447 /* If it's still incomplete now, no init will save it. */
4448 if (DECL_SIZE (decl
) == 0)
4449 DECL_INITIAL (decl
) = 0;
4454 if (TREE_CODE (decl
) == TYPE_DECL
)
4456 if (!DECL_FILE_SCOPE_P (decl
)
4457 && variably_modified_type_p (TREE_TYPE (decl
), NULL_TREE
))
4458 add_stmt (build_stmt (DECL_SOURCE_LOCATION (decl
), DECL_EXPR
, decl
));
4460 rest_of_decl_compilation (decl
, DECL_FILE_SCOPE_P (decl
), 0);
4463 /* Install a cleanup (aka destructor) if one was given. */
4464 if (TREE_CODE (decl
) == VAR_DECL
&& !TREE_STATIC (decl
))
4466 tree attr
= lookup_attribute ("cleanup", DECL_ATTRIBUTES (decl
));
4469 tree cleanup_id
= TREE_VALUE (TREE_VALUE (attr
));
4470 tree cleanup_decl
= lookup_name (cleanup_id
);
4474 /* Build "cleanup(&decl)" for the destructor. */
4475 cleanup
= build_unary_op (input_location
, ADDR_EXPR
, decl
, 0);
4476 vec
= VEC_alloc (tree
, gc
, 1);
4477 VEC_quick_push (tree
, vec
, cleanup
);
4478 cleanup
= build_function_call_vec (DECL_SOURCE_LOCATION (decl
),
4479 cleanup_decl
, vec
, NULL
);
4480 VEC_free (tree
, gc
, vec
);
4482 /* Don't warn about decl unused; the cleanup uses it. */
4483 TREE_USED (decl
) = 1;
4484 TREE_USED (cleanup_decl
) = 1;
4485 DECL_READ_P (decl
) = 1;
4487 push_cleanup (decl
, cleanup
, false);
4492 && TREE_CODE (decl
) == VAR_DECL
4493 && !DECL_EXTERNAL (decl
)
4494 && DECL_INITIAL (decl
) == NULL_TREE
)
4496 type
= strip_array_types (type
);
4497 if (TREE_READONLY (decl
))
4498 warning_at (DECL_SOURCE_LOCATION (decl
), OPT_Wc___compat
,
4499 "uninitialized const %qD is invalid in C++", decl
);
4500 else if ((TREE_CODE (type
) == RECORD_TYPE
4501 || TREE_CODE (type
) == UNION_TYPE
)
4502 && C_TYPE_FIELDS_READONLY (type
))
4503 diagnose_uninitialized_cst_member (decl
, type
);
4506 invoke_plugin_callbacks (PLUGIN_FINISH_DECL
, decl
);
4509 /* Given a parsed parameter declaration, decode it into a PARM_DECL.
4510 EXPR is NULL or a pointer to an expression that needs to be
4511 evaluated for the side effects of array size expressions in the
4515 grokparm (const struct c_parm
*parm
, tree
*expr
)
4517 tree attrs
= parm
->attrs
;
4518 tree decl
= grokdeclarator (parm
->declarator
, parm
->specs
, PARM
, false,
4519 NULL
, &attrs
, expr
, NULL
, DEPRECATED_NORMAL
);
4521 decl_attributes (&decl
, attrs
, 0);
4526 /* Given a parsed parameter declaration, decode it into a PARM_DECL
4527 and push that on the current scope. EXPR is a pointer to an
4528 expression that needs to be evaluated for the side effects of array
4529 size expressions in the parameters. */
4532 push_parm_decl (const struct c_parm
*parm
, tree
*expr
)
4534 tree attrs
= parm
->attrs
;
4537 decl
= grokdeclarator (parm
->declarator
, parm
->specs
, PARM
, false, NULL
,
4538 &attrs
, expr
, NULL
, DEPRECATED_NORMAL
);
4539 decl_attributes (&decl
, attrs
, 0);
4541 decl
= pushdecl (decl
);
4543 finish_decl (decl
, input_location
, NULL_TREE
, NULL_TREE
, NULL_TREE
);
4546 /* Mark all the parameter declarations to date as forward decls.
4547 Also diagnose use of this extension. */
4550 mark_forward_parm_decls (void)
4552 struct c_binding
*b
;
4554 if (pedantic
&& !current_scope
->warned_forward_parm_decls
)
4556 pedwarn (input_location
, OPT_pedantic
,
4557 "ISO C forbids forward parameter declarations");
4558 current_scope
->warned_forward_parm_decls
= true;
4561 for (b
= current_scope
->bindings
; b
; b
= b
->prev
)
4562 if (TREE_CODE (b
->decl
) == PARM_DECL
)
4563 TREE_ASM_WRITTEN (b
->decl
) = 1;
4566 /* Build a COMPOUND_LITERAL_EXPR. TYPE is the type given in the compound
4567 literal, which may be an incomplete array type completed by the
4568 initializer; INIT is a CONSTRUCTOR at LOC that initializes the compound
4569 literal. NON_CONST is true if the initializers contain something
4570 that cannot occur in a constant expression. */
4573 build_compound_literal (location_t loc
, tree type
, tree init
, bool non_const
)
4575 /* We do not use start_decl here because we have a type, not a declarator;
4576 and do not use finish_decl because the decl should be stored inside
4577 the COMPOUND_LITERAL_EXPR rather than added elsewhere as a DECL_EXPR. */
4582 if (type
== error_mark_node
4583 || init
== error_mark_node
)
4584 return error_mark_node
;
4586 decl
= build_decl (loc
, VAR_DECL
, NULL_TREE
, type
);
4587 DECL_EXTERNAL (decl
) = 0;
4588 TREE_PUBLIC (decl
) = 0;
4589 TREE_STATIC (decl
) = (current_scope
== file_scope
);
4590 DECL_CONTEXT (decl
) = current_function_decl
;
4591 TREE_USED (decl
) = 1;
4592 DECL_READ_P (decl
) = 1;
4593 TREE_TYPE (decl
) = type
;
4594 TREE_READONLY (decl
) = TYPE_READONLY (type
);
4595 store_init_value (loc
, decl
, init
, NULL_TREE
);
4597 if (TREE_CODE (type
) == ARRAY_TYPE
&& !COMPLETE_TYPE_P (type
))
4599 int failure
= complete_array_type (&TREE_TYPE (decl
),
4600 DECL_INITIAL (decl
), true);
4601 gcc_assert (!failure
);
4603 type
= TREE_TYPE (decl
);
4604 TREE_TYPE (DECL_INITIAL (decl
)) = type
;
4607 if (type
== error_mark_node
|| !COMPLETE_TYPE_P (type
))
4608 return error_mark_node
;
4610 stmt
= build_stmt (DECL_SOURCE_LOCATION (decl
), DECL_EXPR
, decl
);
4611 complit
= build1 (COMPOUND_LITERAL_EXPR
, type
, stmt
);
4612 TREE_SIDE_EFFECTS (complit
) = 1;
4614 layout_decl (decl
, 0);
4616 if (TREE_STATIC (decl
))
4618 /* This decl needs a name for the assembler output. */
4619 set_compound_literal_name (decl
);
4620 DECL_DEFER_OUTPUT (decl
) = 1;
4621 DECL_COMDAT (decl
) = 1;
4622 DECL_ARTIFICIAL (decl
) = 1;
4623 DECL_IGNORED_P (decl
) = 1;
4625 rest_of_decl_compilation (decl
, 1, 0);
4630 complit
= build2 (C_MAYBE_CONST_EXPR
, type
, NULL
, complit
);
4631 C_MAYBE_CONST_EXPR_NON_CONST (complit
) = 1;
4637 /* Check the type of a compound literal. Here we just check that it
4638 is valid for C++. */
4641 check_compound_literal_type (location_t loc
, struct c_type_name
*type_name
)
4644 && (type_name
->specs
->typespec_kind
== ctsk_tagdef
4645 || type_name
->specs
->typespec_kind
== ctsk_tagfirstref
))
4646 warning_at (loc
, OPT_Wc___compat
,
4647 "defining a type in a compound literal is invalid in C++");
4650 /* Determine whether TYPE is a structure with a flexible array member,
4651 or a union containing such a structure (possibly recursively). */
4654 flexible_array_type_p (tree type
)
4657 switch (TREE_CODE (type
))
4660 x
= TYPE_FIELDS (type
);
4663 while (DECL_CHAIN (x
) != NULL_TREE
)
4665 if (TREE_CODE (TREE_TYPE (x
)) == ARRAY_TYPE
4666 && TYPE_SIZE (TREE_TYPE (x
)) == NULL_TREE
4667 && TYPE_DOMAIN (TREE_TYPE (x
)) != NULL_TREE
4668 && TYPE_MAX_VALUE (TYPE_DOMAIN (TREE_TYPE (x
))) == NULL_TREE
)
4672 for (x
= TYPE_FIELDS (type
); x
!= NULL_TREE
; x
= DECL_CHAIN (x
))
4674 if (flexible_array_type_p (TREE_TYPE (x
)))
4683 /* Performs sanity checks on the TYPE and WIDTH of the bit-field NAME,
4684 replacing with appropriate values if they are invalid. */
4686 check_bitfield_type_and_width (tree
*type
, tree
*width
, tree orig_name
)
4689 unsigned int max_width
;
4690 unsigned HOST_WIDE_INT w
;
4691 const char *name
= (orig_name
4692 ? identifier_to_locale (IDENTIFIER_POINTER (orig_name
))
4693 : _("<anonymous>"));
4695 /* Detect and ignore out of range field width and process valid
4697 if (!INTEGRAL_TYPE_P (TREE_TYPE (*width
)))
4699 error ("bit-field %qs width not an integer constant", name
);
4700 *width
= integer_one_node
;
4704 if (TREE_CODE (*width
) != INTEGER_CST
)
4706 *width
= c_fully_fold (*width
, false, NULL
);
4707 if (TREE_CODE (*width
) == INTEGER_CST
)
4708 pedwarn (input_location
, OPT_pedantic
,
4709 "bit-field %qs width not an integer constant expression",
4712 if (TREE_CODE (*width
) != INTEGER_CST
)
4714 error ("bit-field %qs width not an integer constant", name
);
4715 *width
= integer_one_node
;
4717 constant_expression_warning (*width
);
4718 if (tree_int_cst_sgn (*width
) < 0)
4720 error ("negative width in bit-field %qs", name
);
4721 *width
= integer_one_node
;
4723 else if (integer_zerop (*width
) && orig_name
)
4725 error ("zero width for bit-field %qs", name
);
4726 *width
= integer_one_node
;
4730 /* Detect invalid bit-field type. */
4731 if (TREE_CODE (*type
) != INTEGER_TYPE
4732 && TREE_CODE (*type
) != BOOLEAN_TYPE
4733 && TREE_CODE (*type
) != ENUMERAL_TYPE
)
4735 error ("bit-field %qs has invalid type", name
);
4736 *type
= unsigned_type_node
;
4739 type_mv
= TYPE_MAIN_VARIANT (*type
);
4740 if (!in_system_header
4741 && type_mv
!= integer_type_node
4742 && type_mv
!= unsigned_type_node
4743 && type_mv
!= boolean_type_node
)
4744 pedwarn (input_location
, OPT_pedantic
,
4745 "type of bit-field %qs is a GCC extension", name
);
4747 max_width
= TYPE_PRECISION (*type
);
4749 if (0 < compare_tree_int (*width
, max_width
))
4751 error ("width of %qs exceeds its type", name
);
4753 *width
= build_int_cst (integer_type_node
, w
);
4756 w
= tree_low_cst (*width
, 1);
4758 if (TREE_CODE (*type
) == ENUMERAL_TYPE
)
4760 struct lang_type
*lt
= TYPE_LANG_SPECIFIC (*type
);
4762 || w
< tree_int_cst_min_precision (lt
->enum_min
, TYPE_UNSIGNED (*type
))
4763 || w
< tree_int_cst_min_precision (lt
->enum_max
, TYPE_UNSIGNED (*type
)))
4764 warning (0, "%qs is narrower than values of its type", name
);
4770 /* Print warning about variable length array if necessary. */
4773 warn_variable_length_array (tree name
, tree size
)
4775 int const_size
= TREE_CONSTANT (size
);
4777 if (!flag_isoc99
&& pedantic
&& warn_vla
!= 0)
4782 pedwarn (input_location
, OPT_Wvla
,
4783 "ISO C90 forbids array %qE whose size "
4784 "can%'t be evaluated",
4787 pedwarn (input_location
, OPT_Wvla
, "ISO C90 forbids array whose size "
4788 "can%'t be evaluated");
4793 pedwarn (input_location
, OPT_Wvla
,
4794 "ISO C90 forbids variable length array %qE",
4797 pedwarn (input_location
, OPT_Wvla
, "ISO C90 forbids variable length array");
4800 else if (warn_vla
> 0)
4806 "the size of array %qE can"
4807 "%'t be evaluated", name
);
4810 "the size of array can %'t be evaluated");
4816 "variable length array %qE is used",
4820 "variable length array is used");
4825 /* Given declspecs and a declarator,
4826 determine the name and type of the object declared
4827 and construct a ..._DECL node for it.
4828 (In one case we can return a ..._TYPE node instead.
4829 For invalid input we sometimes return 0.)
4831 DECLSPECS is a c_declspecs structure for the declaration specifiers.
4833 DECL_CONTEXT says which syntactic context this declaration is in:
4834 NORMAL for most contexts. Make a VAR_DECL or FUNCTION_DECL or TYPE_DECL.
4835 FUNCDEF for a function definition. Like NORMAL but a few different
4836 error messages in each case. Return value may be zero meaning
4837 this definition is too screwy to try to parse.
4838 PARM for a parameter declaration (either within a function prototype
4839 or before a function body). Make a PARM_DECL, or return void_type_node.
4840 TYPENAME if for a typename (in a cast or sizeof).
4841 Don't make a DECL node; just return the ..._TYPE node.
4842 FIELD for a struct or union field; make a FIELD_DECL.
4843 INITIALIZED is true if the decl has an initializer.
4844 WIDTH is non-NULL for bit-fields, and is a pointer to an INTEGER_CST node
4845 representing the width of the bit-field.
4846 DECL_ATTRS points to the list of attributes that should be added to this
4847 decl. Any nested attributes that belong on the decl itself will be
4849 If EXPR is not NULL, any expressions that need to be evaluated as
4850 part of evaluating variably modified types will be stored in *EXPR.
4851 If EXPR_CONST_OPERANDS is not NULL, *EXPR_CONST_OPERANDS will be
4852 set to indicate whether operands in *EXPR can be used in constant
4854 DEPRECATED_STATE is a deprecated_states value indicating whether
4855 deprecation warnings should be suppressed.
4857 In the TYPENAME case, DECLARATOR is really an absolute declarator.
4858 It may also be so in the PARM case, for a prototype where the
4859 argument type is specified but not the name.
4861 This function is where the complicated C meanings of `static'
4862 and `extern' are interpreted. */
4865 grokdeclarator (const struct c_declarator
*declarator
,
4866 struct c_declspecs
*declspecs
,
4867 enum decl_context decl_context
, bool initialized
, tree
*width
,
4868 tree
*decl_attrs
, tree
*expr
, bool *expr_const_operands
,
4869 enum deprecated_states deprecated_state
)
4871 tree type
= declspecs
->type
;
4872 bool threadp
= declspecs
->thread_p
;
4873 enum c_storage_class storage_class
= declspecs
->storage_class
;
4877 int type_quals
= TYPE_UNQUALIFIED
;
4878 tree name
= NULL_TREE
;
4879 bool funcdef_flag
= false;
4880 bool funcdef_syntax
= false;
4881 bool size_varies
= false;
4882 tree decl_attr
= declspecs
->decl_attr
;
4883 int array_ptr_quals
= TYPE_UNQUALIFIED
;
4884 tree array_ptr_attrs
= NULL_TREE
;
4885 int array_parm_static
= 0;
4886 bool array_parm_vla_unspec_p
= false;
4887 tree returned_attrs
= NULL_TREE
;
4888 bool bitfield
= width
!= NULL
;
4890 struct c_arg_info
*arg_info
= 0;
4891 addr_space_t as1
, as2
, address_space
;
4892 location_t loc
= UNKNOWN_LOCATION
;
4895 bool expr_const_operands_dummy
;
4896 enum c_declarator_kind first_non_attr_kind
;
4898 if (TREE_CODE (type
) == ERROR_MARK
)
4899 return error_mark_node
;
4902 if (expr_const_operands
== NULL
)
4903 expr_const_operands
= &expr_const_operands_dummy
;
4905 *expr
= declspecs
->expr
;
4906 *expr_const_operands
= declspecs
->expr_const_operands
;
4908 if (decl_context
== FUNCDEF
)
4909 funcdef_flag
= true, decl_context
= NORMAL
;
4911 /* Look inside a declarator for the name being declared
4912 and get it as an IDENTIFIER_NODE, for an error message. */
4914 const struct c_declarator
*decl
= declarator
;
4916 first_non_attr_kind
= cdk_attrs
;
4926 funcdef_syntax
= (decl
->kind
== cdk_function
);
4927 decl
= decl
->declarator
;
4928 if (first_non_attr_kind
== cdk_attrs
)
4929 first_non_attr_kind
= decl
->kind
;
4933 decl
= decl
->declarator
;
4940 if (first_non_attr_kind
== cdk_attrs
)
4941 first_non_attr_kind
= decl
->kind
;
4950 gcc_assert (decl_context
== PARM
4951 || decl_context
== TYPENAME
4952 || (decl_context
== FIELD
4953 && declarator
->kind
== cdk_id
));
4954 gcc_assert (!initialized
);
4958 /* A function definition's declarator must have the form of
4959 a function declarator. */
4961 if (funcdef_flag
&& !funcdef_syntax
)
4964 /* If this looks like a function definition, make it one,
4965 even if it occurs where parms are expected.
4966 Then store_parm_decls will reject it and not use it as a parm. */
4967 if (decl_context
== NORMAL
&& !funcdef_flag
&& current_scope
->parm_flag
)
4968 decl_context
= PARM
;
4970 if (declspecs
->deprecated_p
&& deprecated_state
!= DEPRECATED_SUPPRESS
)
4971 warn_deprecated_use (declspecs
->type
, declspecs
->decl_attr
);
4973 if ((decl_context
== NORMAL
|| decl_context
== FIELD
)
4974 && current_scope
== file_scope
4975 && variably_modified_type_p (type
, NULL_TREE
))
4978 error_at (loc
, "variably modified %qE at file scope", name
);
4980 error_at (loc
, "variably modified field at file scope");
4981 type
= integer_type_node
;
4984 size_varies
= C_TYPE_VARIABLE_SIZE (type
) != 0;
4986 /* Diagnose defaulting to "int". */
4988 if (declspecs
->default_int_p
&& !in_system_header
)
4990 /* Issue a warning if this is an ISO C 99 program or if
4991 -Wreturn-type and this is a function, or if -Wimplicit;
4992 prefer the former warning since it is more explicit. */
4993 if ((warn_implicit_int
|| warn_return_type
|| flag_isoc99
)
4995 warn_about_return_type
= 1;
4999 pedwarn_c99 (loc
, flag_isoc99
? 0 : OPT_Wimplicit_int
,
5000 "type defaults to %<int%> in declaration of %qE",
5003 pedwarn_c99 (input_location
, flag_isoc99
? 0 : OPT_Wimplicit_int
,
5004 "type defaults to %<int%> in type name");
5008 /* Adjust the type if a bit-field is being declared,
5009 -funsigned-bitfields applied and the type is not explicitly
5011 if (bitfield
&& !flag_signed_bitfields
&& !declspecs
->explicit_signed_p
5012 && TREE_CODE (type
) == INTEGER_TYPE
)
5013 type
= unsigned_type_for (type
);
5015 /* Figure out the type qualifiers for the declaration. There are
5016 two ways a declaration can become qualified. One is something
5017 like `const int i' where the `const' is explicit. Another is
5018 something like `typedef const int CI; CI i' where the type of the
5019 declaration contains the `const'. A third possibility is that
5020 there is a type qualifier on the element type of a typedefed
5021 array type, in which case we should extract that qualifier so
5022 that c_apply_type_quals_to_decl receives the full list of
5023 qualifiers to work with (C90 is not entirely clear about whether
5024 duplicate qualifiers should be diagnosed in this case, but it
5025 seems most appropriate to do so). */
5026 element_type
= strip_array_types (type
);
5027 constp
= declspecs
->const_p
+ TYPE_READONLY (element_type
);
5028 restrictp
= declspecs
->restrict_p
+ TYPE_RESTRICT (element_type
);
5029 volatilep
= declspecs
->volatile_p
+ TYPE_VOLATILE (element_type
);
5030 as1
= declspecs
->address_space
;
5031 as2
= TYPE_ADDR_SPACE (element_type
);
5032 address_space
= ADDR_SPACE_GENERIC_P (as1
)? as2
: as1
;
5034 if (pedantic
&& !flag_isoc99
)
5037 pedwarn (loc
, OPT_pedantic
, "duplicate %<const%>");
5039 pedwarn (loc
, OPT_pedantic
, "duplicate %<restrict%>");
5041 pedwarn (loc
, OPT_pedantic
, "duplicate %<volatile%>");
5044 if (!ADDR_SPACE_GENERIC_P (as1
) && !ADDR_SPACE_GENERIC_P (as2
) && as1
!= as2
)
5045 error_at (loc
, "conflicting named address spaces (%s vs %s)",
5046 c_addr_space_name (as1
), c_addr_space_name (as2
));
5048 if ((TREE_CODE (type
) == ARRAY_TYPE
5049 || first_non_attr_kind
== cdk_array
)
5050 && TYPE_QUALS (element_type
))
5051 type
= TYPE_MAIN_VARIANT (type
);
5052 type_quals
= ((constp
? TYPE_QUAL_CONST
: 0)
5053 | (restrictp
? TYPE_QUAL_RESTRICT
: 0)
5054 | (volatilep
? TYPE_QUAL_VOLATILE
: 0)
5055 | ENCODE_QUAL_ADDR_SPACE (address_space
));
5057 /* Warn about storage classes that are invalid for certain
5058 kinds of declarations (parameters, typenames, etc.). */
5062 || storage_class
== csc_auto
5063 || storage_class
== csc_register
5064 || storage_class
== csc_typedef
))
5066 if (storage_class
== csc_auto
)
5068 (current_scope
== file_scope
) ? 0 : OPT_pedantic
,
5069 "function definition declared %<auto%>");
5070 if (storage_class
== csc_register
)
5071 error_at (loc
, "function definition declared %<register%>");
5072 if (storage_class
== csc_typedef
)
5073 error_at (loc
, "function definition declared %<typedef%>");
5075 error_at (loc
, "function definition declared %<__thread%>");
5077 if (storage_class
== csc_auto
5078 || storage_class
== csc_register
5079 || storage_class
== csc_typedef
)
5080 storage_class
= csc_none
;
5082 else if (decl_context
!= NORMAL
&& (storage_class
!= csc_none
|| threadp
))
5084 if (decl_context
== PARM
&& storage_class
== csc_register
)
5088 switch (decl_context
)
5092 error_at (loc
, "storage class specified for structure "
5095 error_at (loc
, "storage class specified for structure field");
5099 error_at (loc
, "storage class specified for parameter %qE",
5102 error_at (loc
, "storage class specified for unnamed parameter");
5105 error_at (loc
, "storage class specified for typename");
5108 storage_class
= csc_none
;
5112 else if (storage_class
== csc_extern
5116 /* 'extern' with initialization is invalid if not at file scope. */
5117 if (current_scope
== file_scope
)
5119 /* It is fine to have 'extern const' when compiling at C
5120 and C++ intersection. */
5121 if (!(warn_cxx_compat
&& constp
))
5122 warning_at (loc
, 0, "%qE initialized and declared %<extern%>",
5126 error_at (loc
, "%qE has both %<extern%> and initializer", name
);
5128 else if (current_scope
== file_scope
)
5130 if (storage_class
== csc_auto
)
5131 error_at (loc
, "file-scope declaration of %qE specifies %<auto%>",
5133 if (pedantic
&& storage_class
== csc_register
)
5134 pedwarn (input_location
, OPT_pedantic
,
5135 "file-scope declaration of %qE specifies %<register%>", name
);
5139 if (storage_class
== csc_extern
&& funcdef_flag
)
5140 error_at (loc
, "nested function %qE declared %<extern%>", name
);
5141 else if (threadp
&& storage_class
== csc_none
)
5143 error_at (loc
, "function-scope %qE implicitly auto and declared "
5150 /* Now figure out the structure of the declarator proper.
5151 Descend through it, creating more complex types, until we reach
5152 the declared identifier (or NULL_TREE, in an absolute declarator).
5153 At each stage we maintain an unqualified version of the type
5154 together with any qualifiers that should be applied to it with
5155 c_build_qualified_type; this way, array types including
5156 multidimensional array types are first built up in unqualified
5157 form and then the qualified form is created with
5158 TYPE_MAIN_VARIANT pointing to the unqualified form. */
5160 while (declarator
&& declarator
->kind
!= cdk_id
)
5162 if (type
== error_mark_node
)
5164 declarator
= declarator
->declarator
;
5168 /* Each level of DECLARATOR is either a cdk_array (for ...[..]),
5169 a cdk_pointer (for *...),
5170 a cdk_function (for ...(...)),
5171 a cdk_attrs (for nested attributes),
5172 or a cdk_id (for the name being declared
5173 or the place in an absolute declarator
5174 where the name was omitted).
5175 For the last case, we have just exited the loop.
5177 At this point, TYPE is the type of elements of an array,
5178 or for a function to return, or for a pointer to point to.
5179 After this sequence of ifs, TYPE is the type of the
5180 array or function or pointer, and DECLARATOR has had its
5181 outermost layer removed. */
5183 if (array_ptr_quals
!= TYPE_UNQUALIFIED
5184 || array_ptr_attrs
!= NULL_TREE
5185 || array_parm_static
)
5187 /* Only the innermost declarator (making a parameter be of
5188 array type which is converted to pointer type)
5189 may have static or type qualifiers. */
5190 error_at (loc
, "static or type qualifiers in non-parameter array declarator");
5191 array_ptr_quals
= TYPE_UNQUALIFIED
;
5192 array_ptr_attrs
= NULL_TREE
;
5193 array_parm_static
= 0;
5196 switch (declarator
->kind
)
5200 /* A declarator with embedded attributes. */
5201 tree attrs
= declarator
->u
.attrs
;
5202 const struct c_declarator
*inner_decl
;
5204 declarator
= declarator
->declarator
;
5205 inner_decl
= declarator
;
5206 while (inner_decl
->kind
== cdk_attrs
)
5207 inner_decl
= inner_decl
->declarator
;
5208 if (inner_decl
->kind
== cdk_id
)
5209 attr_flags
|= (int) ATTR_FLAG_DECL_NEXT
;
5210 else if (inner_decl
->kind
== cdk_function
)
5211 attr_flags
|= (int) ATTR_FLAG_FUNCTION_NEXT
;
5212 else if (inner_decl
->kind
== cdk_array
)
5213 attr_flags
|= (int) ATTR_FLAG_ARRAY_NEXT
;
5214 returned_attrs
= decl_attributes (&type
,
5215 chainon (returned_attrs
, attrs
),
5221 tree itype
= NULL_TREE
;
5222 tree size
= declarator
->u
.array
.dimen
;
5223 /* The index is a signed object `sizetype' bits wide. */
5224 tree index_type
= c_common_signed_type (sizetype
);
5226 array_ptr_quals
= declarator
->u
.array
.quals
;
5227 array_ptr_attrs
= declarator
->u
.array
.attrs
;
5228 array_parm_static
= declarator
->u
.array
.static_p
;
5229 array_parm_vla_unspec_p
= declarator
->u
.array
.vla_unspec_p
;
5231 declarator
= declarator
->declarator
;
5233 /* Check for some types that there cannot be arrays of. */
5235 if (VOID_TYPE_P (type
))
5238 error_at (loc
, "declaration of %qE as array of voids", name
);
5240 error_at (loc
, "declaration of type name as array of voids");
5241 type
= error_mark_node
;
5244 if (TREE_CODE (type
) == FUNCTION_TYPE
)
5247 error_at (loc
, "declaration of %qE as array of functions",
5250 error_at (loc
, "declaration of type name as array of "
5252 type
= error_mark_node
;
5255 if (pedantic
&& !in_system_header
&& flexible_array_type_p (type
))
5256 pedwarn (loc
, OPT_pedantic
,
5257 "invalid use of structure with flexible array member");
5259 if (size
== error_mark_node
)
5260 type
= error_mark_node
;
5262 if (type
== error_mark_node
)
5265 /* If size was specified, set ITYPE to a range-type for
5266 that size. Otherwise, ITYPE remains null. finish_decl
5267 may figure it out from an initial value. */
5271 bool size_maybe_const
= true;
5272 bool size_int_const
= (TREE_CODE (size
) == INTEGER_CST
5273 && !TREE_OVERFLOW (size
));
5274 bool this_size_varies
= false;
5276 /* Strip NON_LVALUE_EXPRs since we aren't using as an
5278 STRIP_TYPE_NOPS (size
);
5280 if (!INTEGRAL_TYPE_P (TREE_TYPE (size
)))
5283 error_at (loc
, "size of array %qE has non-integer type",
5287 "size of unnamed array has non-integer type");
5288 size
= integer_one_node
;
5291 size
= c_fully_fold (size
, false, &size_maybe_const
);
5293 if (pedantic
&& size_maybe_const
&& integer_zerop (size
))
5296 pedwarn (loc
, OPT_pedantic
,
5297 "ISO C forbids zero-size array %qE", name
);
5299 pedwarn (loc
, OPT_pedantic
,
5300 "ISO C forbids zero-size array");
5303 if (TREE_CODE (size
) == INTEGER_CST
&& size_maybe_const
)
5305 constant_expression_warning (size
);
5306 if (tree_int_cst_sgn (size
) < 0)
5309 error_at (loc
, "size of array %qE is negative", name
);
5311 error_at (loc
, "size of unnamed array is negative");
5312 size
= integer_one_node
;
5314 /* Handle a size folded to an integer constant but
5315 not an integer constant expression. */
5316 if (!size_int_const
)
5318 /* If this is a file scope declaration of an
5319 ordinary identifier, this is invalid code;
5320 diagnosing it here and not subsequently
5321 treating the type as variable-length avoids
5322 more confusing diagnostics later. */
5323 if ((decl_context
== NORMAL
|| decl_context
== FIELD
)
5324 && current_scope
== file_scope
)
5325 pedwarn (input_location
, 0,
5326 "variably modified %qE at file scope",
5329 this_size_varies
= size_varies
= true;
5330 warn_variable_length_array (name
, size
);
5333 else if ((decl_context
== NORMAL
|| decl_context
== FIELD
)
5334 && current_scope
== file_scope
)
5336 error_at (loc
, "variably modified %qE at file scope", name
);
5337 size
= integer_one_node
;
5341 /* Make sure the array size remains visibly
5342 nonconstant even if it is (eg) a const variable
5343 with known value. */
5344 this_size_varies
= size_varies
= true;
5345 warn_variable_length_array (name
, size
);
5348 if (integer_zerop (size
) && !this_size_varies
)
5350 /* A zero-length array cannot be represented with
5351 an unsigned index type, which is what we'll
5352 get with build_index_type. Create an
5353 open-ended range instead. */
5354 itype
= build_range_type (sizetype
, size
, NULL_TREE
);
5358 /* Arrange for the SAVE_EXPR on the inside of the
5359 MINUS_EXPR, which allows the -1 to get folded
5360 with the +1 that happens when building TYPE_SIZE. */
5362 size
= save_expr (size
);
5363 if (this_size_varies
&& TREE_CODE (size
) == INTEGER_CST
)
5364 size
= build2 (COMPOUND_EXPR
, TREE_TYPE (size
),
5365 integer_zero_node
, size
);
5367 /* Compute the maximum valid index, that is, size
5368 - 1. Do the calculation in index_type, so that
5369 if it is a variable the computations will be
5370 done in the proper mode. */
5371 itype
= fold_build2_loc (loc
, MINUS_EXPR
, index_type
,
5372 convert (index_type
, size
),
5373 convert (index_type
,
5376 /* The above overflows when size does not fit
5378 ??? While a size of INT_MAX+1 technically shouldn't
5379 cause an overflow (because we subtract 1), handling
5380 this case seems like an unnecessary complication. */
5381 if (TREE_CODE (size
) == INTEGER_CST
5382 && !int_fits_type_p (size
, index_type
))
5385 error_at (loc
, "size of array %qE is too large",
5388 error_at (loc
, "size of unnamed array is too large");
5389 type
= error_mark_node
;
5393 itype
= build_index_type (itype
);
5395 if (this_size_varies
)
5398 *expr
= build2 (COMPOUND_EXPR
, TREE_TYPE (size
),
5402 *expr_const_operands
&= size_maybe_const
;
5405 else if (decl_context
== FIELD
)
5407 bool flexible_array_member
= false;
5408 if (array_parm_vla_unspec_p
)
5409 /* Field names can in fact have function prototype
5410 scope so [*] is disallowed here through making
5411 the field variably modified, not through being
5412 something other than a declaration with function
5417 const struct c_declarator
*t
= declarator
;
5418 while (t
->kind
== cdk_attrs
)
5420 flexible_array_member
= (t
->kind
== cdk_id
);
5422 if (flexible_array_member
5423 && pedantic
&& !flag_isoc99
&& !in_system_header
)
5424 pedwarn (loc
, OPT_pedantic
,
5425 "ISO C90 does not support flexible array members");
5427 /* ISO C99 Flexible array members are effectively
5428 identical to GCC's zero-length array extension. */
5429 if (flexible_array_member
|| array_parm_vla_unspec_p
)
5430 itype
= build_range_type (sizetype
, size_zero_node
,
5433 else if (decl_context
== PARM
)
5435 if (array_parm_vla_unspec_p
)
5437 itype
= build_range_type (sizetype
, size_zero_node
, NULL_TREE
);
5441 else if (decl_context
== TYPENAME
)
5443 if (array_parm_vla_unspec_p
)
5446 warning (0, "%<[*]%> not in a declaration");
5447 /* We use this to avoid messing up with incomplete
5448 array types of the same type, that would
5449 otherwise be modified below. */
5450 itype
= build_range_type (sizetype
, size_zero_node
,
5456 /* Complain about arrays of incomplete types. */
5457 if (!COMPLETE_TYPE_P (type
))
5459 error_at (loc
, "array type has incomplete element type");
5460 type
= error_mark_node
;
5463 /* When itype is NULL, a shared incomplete array type is
5464 returned for all array of a given type. Elsewhere we
5465 make sure we don't complete that type before copying
5466 it, but here we want to make sure we don't ever
5467 modify the shared type, so we gcc_assert (itype)
5470 addr_space_t as
= DECODE_QUAL_ADDR_SPACE (type_quals
);
5471 if (!ADDR_SPACE_GENERIC_P (as
) && as
!= TYPE_ADDR_SPACE (type
))
5472 type
= build_qualified_type (type
,
5473 ENCODE_QUAL_ADDR_SPACE (as
));
5475 type
= build_array_type (type
, itype
);
5478 if (type
!= error_mark_node
)
5482 /* It is ok to modify type here even if itype is
5483 NULL: if size_varies, we're in a
5484 multi-dimensional array and the inner type has
5485 variable size, so the enclosing shared array type
5487 if (size
&& TREE_CODE (size
) == INTEGER_CST
)
5489 = build_distinct_type_copy (TYPE_MAIN_VARIANT (type
));
5490 C_TYPE_VARIABLE_SIZE (type
) = 1;
5493 /* The GCC extension for zero-length arrays differs from
5494 ISO flexible array members in that sizeof yields
5496 if (size
&& integer_zerop (size
))
5499 type
= build_distinct_type_copy (TYPE_MAIN_VARIANT (type
));
5500 TYPE_SIZE (type
) = bitsize_zero_node
;
5501 TYPE_SIZE_UNIT (type
) = size_zero_node
;
5502 SET_TYPE_STRUCTURAL_EQUALITY (type
);
5504 if (array_parm_vla_unspec_p
)
5507 /* The type is complete. C99 6.7.5.2p4 */
5508 type
= build_distinct_type_copy (TYPE_MAIN_VARIANT (type
));
5509 TYPE_SIZE (type
) = bitsize_zero_node
;
5510 TYPE_SIZE_UNIT (type
) = size_zero_node
;
5511 SET_TYPE_STRUCTURAL_EQUALITY (type
);
5515 if (decl_context
!= PARM
5516 && (array_ptr_quals
!= TYPE_UNQUALIFIED
5517 || array_ptr_attrs
!= NULL_TREE
5518 || array_parm_static
))
5520 error_at (loc
, "static or type qualifiers in non-parameter array declarator");
5521 array_ptr_quals
= TYPE_UNQUALIFIED
;
5522 array_ptr_attrs
= NULL_TREE
;
5523 array_parm_static
= 0;
5529 /* Say it's a definition only for the declarator closest
5530 to the identifier, apart possibly from some
5532 bool really_funcdef
= false;
5536 const struct c_declarator
*t
= declarator
->declarator
;
5537 while (t
->kind
== cdk_attrs
)
5539 really_funcdef
= (t
->kind
== cdk_id
);
5542 /* Declaring a function type. Make sure we have a valid
5543 type for the function to return. */
5544 if (type
== error_mark_node
)
5547 size_varies
= false;
5549 /* Warn about some types functions can't return. */
5550 if (TREE_CODE (type
) == FUNCTION_TYPE
)
5553 error_at (loc
, "%qE declared as function returning a "
5556 error_at (loc
, "type name declared as function "
5557 "returning a function");
5558 type
= integer_type_node
;
5560 if (TREE_CODE (type
) == ARRAY_TYPE
)
5563 error_at (loc
, "%qE declared as function returning an array",
5566 error_at (loc
, "type name declared as function returning "
5568 type
= integer_type_node
;
5570 errmsg
= targetm
.invalid_return_type (type
);
5574 type
= integer_type_node
;
5577 /* Construct the function type and go to the next
5578 inner layer of declarator. */
5579 arg_info
= declarator
->u
.arg_info
;
5580 arg_types
= grokparms (arg_info
, really_funcdef
);
5582 /* Type qualifiers before the return type of the function
5583 qualify the return type, not the function type. */
5586 /* Type qualifiers on a function return type are
5587 normally permitted by the standard but have no
5588 effect, so give a warning at -Wreturn-type.
5589 Qualifiers on a void return type are banned on
5590 function definitions in ISO C; GCC used to used
5591 them for noreturn functions. */
5592 if (VOID_TYPE_P (type
) && really_funcdef
)
5594 "function definition has qualified void return type");
5596 warning_at (loc
, OPT_Wignored_qualifiers
,
5597 "type qualifiers ignored on function return type");
5599 type
= c_build_qualified_type (type
, type_quals
);
5601 type_quals
= TYPE_UNQUALIFIED
;
5603 type
= build_function_type (type
, arg_types
);
5604 declarator
= declarator
->declarator
;
5606 /* Set the TYPE_CONTEXTs for each tagged type which is local to
5607 the formal parameter list of this FUNCTION_TYPE to point to
5608 the FUNCTION_TYPE node itself. */
5613 FOR_EACH_VEC_ELT_REVERSE (c_arg_tag
, arg_info
->tags
, ix
, tag
)
5614 TYPE_CONTEXT (tag
->type
) = type
;
5620 /* Merge any constancy or volatility into the target type
5623 if (pedantic
&& TREE_CODE (type
) == FUNCTION_TYPE
5625 pedwarn (loc
, OPT_pedantic
,
5626 "ISO C forbids qualified function types");
5628 type
= c_build_qualified_type (type
, type_quals
);
5629 size_varies
= false;
5631 /* When the pointed-to type involves components of variable size,
5632 care must be taken to ensure that the size evaluation code is
5633 emitted early enough to dominate all the possible later uses
5634 and late enough for the variables on which it depends to have
5637 This is expected to happen automatically when the pointed-to
5638 type has a name/declaration of it's own, but special attention
5639 is required if the type is anonymous.
5641 We handle the NORMAL and FIELD contexts here by attaching an
5642 artificial TYPE_DECL to such pointed-to type. This forces the
5643 sizes evaluation at a safe point and ensures it is not deferred
5644 until e.g. within a deeper conditional context.
5646 We expect nothing to be needed here for PARM or TYPENAME.
5647 Pushing a TYPE_DECL at this point for TYPENAME would actually
5648 be incorrect, as we might be in the middle of an expression
5649 with side effects on the pointed-to type size "arguments" prior
5650 to the pointer declaration point and the fake TYPE_DECL in the
5651 enclosing context would force the size evaluation prior to the
5654 if (!TYPE_NAME (type
)
5655 && (decl_context
== NORMAL
|| decl_context
== FIELD
)
5656 && variably_modified_type_p (type
, NULL_TREE
))
5658 tree decl
= build_decl (loc
, TYPE_DECL
, NULL_TREE
, type
);
5659 DECL_ARTIFICIAL (decl
) = 1;
5661 finish_decl (decl
, loc
, NULL_TREE
, NULL_TREE
, NULL_TREE
);
5662 TYPE_NAME (type
) = decl
;
5665 type
= build_pointer_type (type
);
5667 /* Process type qualifiers (such as const or volatile)
5668 that were given inside the `*'. */
5669 type_quals
= declarator
->u
.pointer_quals
;
5671 declarator
= declarator
->declarator
;
5678 *decl_attrs
= chainon (returned_attrs
, *decl_attrs
);
5680 /* Now TYPE has the actual type, apart from any qualifiers in
5683 /* Warn about address space used for things other than static memory or
5685 address_space
= DECODE_QUAL_ADDR_SPACE (type_quals
);
5686 if (!ADDR_SPACE_GENERIC_P (address_space
))
5688 if (decl_context
== NORMAL
)
5690 switch (storage_class
)
5693 error ("%qs combined with %<auto%> qualifier for %qE",
5694 c_addr_space_name (address_space
), name
);
5697 error ("%qs combined with %<register%> qualifier for %qE",
5698 c_addr_space_name (address_space
), name
);
5701 if (current_function_scope
)
5703 error ("%qs specified for auto variable %qE",
5704 c_addr_space_name (address_space
), name
);
5716 else if (decl_context
== PARM
&& TREE_CODE (type
) != ARRAY_TYPE
)
5719 error ("%qs specified for parameter %qE",
5720 c_addr_space_name (address_space
), name
);
5722 error ("%qs specified for unnamed parameter",
5723 c_addr_space_name (address_space
));
5725 else if (decl_context
== FIELD
)
5728 error ("%qs specified for structure field %qE",
5729 c_addr_space_name (address_space
), name
);
5731 error ("%qs specified for structure field",
5732 c_addr_space_name (address_space
));
5736 /* Check the type and width of a bit-field. */
5738 check_bitfield_type_and_width (&type
, width
, name
);
5740 /* Did array size calculations overflow? */
5742 if (TREE_CODE (type
) == ARRAY_TYPE
5743 && COMPLETE_TYPE_P (type
)
5744 && TREE_CODE (TYPE_SIZE_UNIT (type
)) == INTEGER_CST
5745 && TREE_OVERFLOW (TYPE_SIZE_UNIT (type
)))
5748 error_at (loc
, "size of array %qE is too large", name
);
5750 error_at (loc
, "size of unnamed array is too large");
5751 /* If we proceed with the array type as it is, we'll eventually
5752 crash in tree_low_cst(). */
5753 type
= error_mark_node
;
5756 /* If this is declaring a typedef name, return a TYPE_DECL. */
5758 if (storage_class
== csc_typedef
)
5761 if (pedantic
&& TREE_CODE (type
) == FUNCTION_TYPE
5763 pedwarn (loc
, OPT_pedantic
,
5764 "ISO C forbids qualified function types");
5766 type
= c_build_qualified_type (type
, type_quals
);
5767 decl
= build_decl (declarator
->id_loc
,
5768 TYPE_DECL
, declarator
->u
.id
, type
);
5769 if (declspecs
->explicit_signed_p
)
5770 C_TYPEDEF_EXPLICITLY_SIGNED (decl
) = 1;
5771 if (declspecs
->inline_p
)
5772 pedwarn (loc
, 0,"typedef %q+D declared %<inline%>", decl
);
5773 if (declspecs
->noreturn_p
)
5774 pedwarn (loc
, 0,"typedef %q+D declared %<_Noreturn%>", decl
);
5776 if (warn_cxx_compat
&& declarator
->u
.id
!= NULL_TREE
)
5778 struct c_binding
*b
= I_TAG_BINDING (declarator
->u
.id
);
5781 && b
->decl
!= NULL_TREE
5782 && (B_IN_CURRENT_SCOPE (b
)
5783 || (current_scope
== file_scope
&& B_IN_EXTERNAL_SCOPE (b
)))
5784 && TYPE_MAIN_VARIANT (b
->decl
) != TYPE_MAIN_VARIANT (type
))
5786 warning_at (declarator
->id_loc
, OPT_Wc___compat
,
5787 ("using %qD as both a typedef and a tag is "
5790 if (b
->locus
!= UNKNOWN_LOCATION
)
5791 inform (b
->locus
, "originally defined here");
5798 /* If this is a type name (such as, in a cast or sizeof),
5799 compute the type and return it now. */
5801 if (decl_context
== TYPENAME
)
5803 /* Note that the grammar rejects storage classes in typenames
5805 gcc_assert (storage_class
== csc_none
&& !threadp
5806 && !declspecs
->inline_p
&& !declspecs
->noreturn_p
);
5807 if (pedantic
&& TREE_CODE (type
) == FUNCTION_TYPE
5809 pedwarn (loc
, OPT_pedantic
,
5810 "ISO C forbids const or volatile function types");
5812 type
= c_build_qualified_type (type
, type_quals
);
5816 if (pedantic
&& decl_context
== FIELD
5817 && variably_modified_type_p (type
, NULL_TREE
))
5820 pedwarn (loc
, OPT_pedantic
, "a member of a structure or union cannot "
5821 "have a variably modified type");
5824 /* Aside from typedefs and type names (handle above),
5825 `void' at top level (not within pointer)
5826 is allowed only in public variables.
5827 We don't complain about parms either, but that is because
5828 a better error message can be made later. */
5830 if (VOID_TYPE_P (type
) && decl_context
!= PARM
5831 && !((decl_context
!= FIELD
&& TREE_CODE (type
) != FUNCTION_TYPE
)
5832 && (storage_class
== csc_extern
5833 || (current_scope
== file_scope
5834 && !(storage_class
== csc_static
5835 || storage_class
== csc_register
)))))
5837 error_at (loc
, "variable or field %qE declared void", name
);
5838 type
= integer_type_node
;
5841 /* Now create the decl, which may be a VAR_DECL, a PARM_DECL
5842 or a FUNCTION_DECL, depending on DECL_CONTEXT and TYPE. */
5847 if (decl_context
== PARM
)
5851 /* A parameter declared as an array of T is really a pointer to T.
5852 One declared as a function is really a pointer to a function. */
5854 if (TREE_CODE (type
) == ARRAY_TYPE
)
5856 /* Transfer const-ness of array into that of type pointed to. */
5857 type
= TREE_TYPE (type
);
5859 type
= c_build_qualified_type (type
, type_quals
);
5860 type
= build_pointer_type (type
);
5861 type_quals
= array_ptr_quals
;
5863 type
= c_build_qualified_type (type
, type_quals
);
5865 /* We don't yet implement attributes in this context. */
5866 if (array_ptr_attrs
!= NULL_TREE
)
5867 warning_at (loc
, OPT_Wattributes
,
5868 "attributes in parameter array declarator ignored");
5870 size_varies
= false;
5872 else if (TREE_CODE (type
) == FUNCTION_TYPE
)
5875 pedwarn (loc
, OPT_pedantic
,
5876 "ISO C forbids qualified function types");
5878 type
= c_build_qualified_type (type
, type_quals
);
5879 type
= build_pointer_type (type
);
5880 type_quals
= TYPE_UNQUALIFIED
;
5882 else if (type_quals
)
5883 type
= c_build_qualified_type (type
, type_quals
);
5885 decl
= build_decl (declarator
->id_loc
,
5886 PARM_DECL
, declarator
->u
.id
, type
);
5888 C_DECL_VARIABLE_SIZE (decl
) = 1;
5890 /* Compute the type actually passed in the parmlist,
5891 for the case where there is no prototype.
5892 (For example, shorts and chars are passed as ints.)
5893 When there is a prototype, this is overridden later. */
5895 if (type
== error_mark_node
)
5896 promoted_type
= type
;
5898 promoted_type
= c_type_promotes_to (type
);
5900 DECL_ARG_TYPE (decl
) = promoted_type
;
5901 if (declspecs
->inline_p
)
5902 pedwarn (loc
, 0, "parameter %q+D declared %<inline%>", decl
);
5903 if (declspecs
->noreturn_p
)
5904 pedwarn (loc
, 0, "parameter %q+D declared %<_Noreturn%>", decl
);
5906 else if (decl_context
== FIELD
)
5908 /* Note that the grammar rejects storage classes in typenames
5910 gcc_assert (storage_class
== csc_none
&& !threadp
5911 && !declspecs
->inline_p
&& !declspecs
->noreturn_p
);
5913 /* Structure field. It may not be a function. */
5915 if (TREE_CODE (type
) == FUNCTION_TYPE
)
5917 error_at (loc
, "field %qE declared as a function", name
);
5918 type
= build_pointer_type (type
);
5920 else if (TREE_CODE (type
) != ERROR_MARK
5921 && !COMPLETE_OR_UNBOUND_ARRAY_TYPE_P (type
))
5924 error_at (loc
, "field %qE has incomplete type", name
);
5926 error_at (loc
, "unnamed field has incomplete type");
5927 type
= error_mark_node
;
5929 type
= c_build_qualified_type (type
, type_quals
);
5930 decl
= build_decl (declarator
->id_loc
,
5931 FIELD_DECL
, declarator
->u
.id
, type
);
5932 DECL_NONADDRESSABLE_P (decl
) = bitfield
;
5933 if (bitfield
&& !declarator
->u
.id
)
5934 TREE_NO_WARNING (decl
) = 1;
5937 C_DECL_VARIABLE_SIZE (decl
) = 1;
5939 else if (TREE_CODE (type
) == FUNCTION_TYPE
)
5941 if (storage_class
== csc_register
|| threadp
)
5943 error_at (loc
, "invalid storage class for function %qE", name
);
5945 else if (current_scope
!= file_scope
)
5947 /* Function declaration not at file scope. Storage
5948 classes other than `extern' are not allowed, C99
5949 6.7.1p5, and `extern' makes no difference. However,
5950 GCC allows 'auto', perhaps with 'inline', to support
5951 nested functions. */
5952 if (storage_class
== csc_auto
)
5953 pedwarn (loc
, OPT_pedantic
,
5954 "invalid storage class for function %qE", name
);
5955 else if (storage_class
== csc_static
)
5957 error_at (loc
, "invalid storage class for function %qE", name
);
5959 storage_class
= declspecs
->storage_class
= csc_none
;
5965 decl
= build_decl (declarator
->id_loc
,
5966 FUNCTION_DECL
, declarator
->u
.id
, type
);
5967 decl
= build_decl_attribute_variant (decl
, decl_attr
);
5969 if (pedantic
&& type_quals
&& !DECL_IN_SYSTEM_HEADER (decl
))
5970 pedwarn (loc
, OPT_pedantic
,
5971 "ISO C forbids qualified function types");
5973 /* Every function declaration is an external reference
5974 (DECL_EXTERNAL) except for those which are not at file
5975 scope and are explicitly declared "auto". This is
5976 forbidden by standard C (C99 6.7.1p5) and is interpreted by
5977 GCC to signify a forward declaration of a nested function. */
5978 if (storage_class
== csc_auto
&& current_scope
!= file_scope
)
5979 DECL_EXTERNAL (decl
) = 0;
5980 /* In C99, a function which is declared 'inline' with 'extern'
5981 is not an external reference (which is confusing). It
5982 means that the later definition of the function must be output
5983 in this file, C99 6.7.4p6. In GNU C89, a function declared
5984 'extern inline' is an external reference. */
5985 else if (declspecs
->inline_p
&& storage_class
!= csc_static
)
5986 DECL_EXTERNAL (decl
) = ((storage_class
== csc_extern
)
5987 == flag_gnu89_inline
);
5989 DECL_EXTERNAL (decl
) = !initialized
;
5991 /* Record absence of global scope for `static' or `auto'. */
5993 = !(storage_class
== csc_static
|| storage_class
== csc_auto
);
5995 /* For a function definition, record the argument information
5996 block where store_parm_decls will look for it. */
5998 current_function_arg_info
= arg_info
;
6000 if (declspecs
->default_int_p
)
6001 C_FUNCTION_IMPLICIT_INT (decl
) = 1;
6003 /* Record presence of `inline' and `_Noreturn', if it is
6005 if (flag_hosted
&& MAIN_NAME_P (declarator
->u
.id
))
6007 if (declspecs
->inline_p
)
6008 pedwarn (loc
, 0, "cannot inline function %<main%>");
6009 if (declspecs
->noreturn_p
)
6010 pedwarn (loc
, 0, "%<main%> declared %<_Noreturn%>");
6014 if (declspecs
->inline_p
)
6015 /* Record that the function is declared `inline'. */
6016 DECL_DECLARED_INLINE_P (decl
) = 1;
6017 if (declspecs
->noreturn_p
)
6022 pedwarn (loc
, OPT_pedantic
,
6023 "ISO C99 does not support %<_Noreturn%>");
6025 pedwarn (loc
, OPT_pedantic
,
6026 "ISO C90 does not support %<_Noreturn%>");
6028 TREE_THIS_VOLATILE (decl
) = 1;
6034 /* It's a variable. */
6035 /* An uninitialized decl with `extern' is a reference. */
6036 int extern_ref
= !initialized
&& storage_class
== csc_extern
;
6038 type
= c_build_qualified_type (type
, type_quals
);
6040 /* C99 6.2.2p7: It is invalid (compile-time undefined
6041 behavior) to create an 'extern' declaration for a
6042 variable if there is a global declaration that is
6043 'static' and the global declaration is not visible.
6044 (If the static declaration _is_ currently visible,
6045 the 'extern' declaration is taken to refer to that decl.) */
6046 if (extern_ref
&& current_scope
!= file_scope
)
6048 tree global_decl
= identifier_global_value (declarator
->u
.id
);
6049 tree visible_decl
= lookup_name (declarator
->u
.id
);
6052 && global_decl
!= visible_decl
6053 && TREE_CODE (global_decl
) == VAR_DECL
6054 && !TREE_PUBLIC (global_decl
))
6055 error_at (loc
, "variable previously declared %<static%> "
6056 "redeclared %<extern%>");
6059 decl
= build_decl (declarator
->id_loc
,
6060 VAR_DECL
, declarator
->u
.id
, type
);
6062 C_DECL_VARIABLE_SIZE (decl
) = 1;
6064 if (declspecs
->inline_p
)
6065 pedwarn (loc
, 0, "variable %q+D declared %<inline%>", decl
);
6066 if (declspecs
->noreturn_p
)
6067 pedwarn (loc
, 0, "variable %q+D declared %<_Noreturn%>", decl
);
6069 /* At file scope, an initialized extern declaration may follow
6070 a static declaration. In that case, DECL_EXTERNAL will be
6071 reset later in start_decl. */
6072 DECL_EXTERNAL (decl
) = (storage_class
== csc_extern
);
6074 /* At file scope, the presence of a `static' or `register' storage
6075 class specifier, or the absence of all storage class specifiers
6076 makes this declaration a definition (perhaps tentative). Also,
6077 the absence of `static' makes it public. */
6078 if (current_scope
== file_scope
)
6080 TREE_PUBLIC (decl
) = storage_class
!= csc_static
;
6081 TREE_STATIC (decl
) = !extern_ref
;
6083 /* Not at file scope, only `static' makes a static definition. */
6086 TREE_STATIC (decl
) = (storage_class
== csc_static
);
6087 TREE_PUBLIC (decl
) = extern_ref
;
6091 DECL_TLS_MODEL (decl
) = decl_default_tls_model (decl
);
6094 if ((storage_class
== csc_extern
6095 || (storage_class
== csc_none
6096 && TREE_CODE (type
) == FUNCTION_TYPE
6098 && variably_modified_type_p (type
, NULL_TREE
))
6101 if (TREE_CODE (type
) == FUNCTION_TYPE
)
6102 error_at (loc
, "non-nested function with variably modified type");
6104 error_at (loc
, "object with variably modified type must have "
6108 /* Record `register' declaration for warnings on &
6109 and in case doing stupid register allocation. */
6111 if (storage_class
== csc_register
)
6113 C_DECL_REGISTER (decl
) = 1;
6114 DECL_REGISTER (decl
) = 1;
6117 /* Record constancy and volatility. */
6118 c_apply_type_quals_to_decl (type_quals
, decl
);
6120 /* If a type has volatile components, it should be stored in memory.
6121 Otherwise, the fact that those components are volatile
6122 will be ignored, and would even crash the compiler.
6123 Of course, this only makes sense on VAR,PARM, and RESULT decl's. */
6124 if (C_TYPE_FIELDS_VOLATILE (TREE_TYPE (decl
))
6125 && (TREE_CODE (decl
) == VAR_DECL
|| TREE_CODE (decl
) == PARM_DECL
6126 || TREE_CODE (decl
) == RESULT_DECL
))
6128 /* It is not an error for a structure with volatile fields to
6129 be declared register, but reset DECL_REGISTER since it
6130 cannot actually go in a register. */
6131 int was_reg
= C_DECL_REGISTER (decl
);
6132 C_DECL_REGISTER (decl
) = 0;
6133 DECL_REGISTER (decl
) = 0;
6134 c_mark_addressable (decl
);
6135 C_DECL_REGISTER (decl
) = was_reg
;
6138 /* This is the earliest point at which we might know the assembler
6139 name of a variable. Thus, if it's known before this, die horribly. */
6140 gcc_assert (!DECL_ASSEMBLER_NAME_SET_P (decl
));
6143 && TREE_CODE (decl
) == VAR_DECL
6144 && TREE_PUBLIC (decl
)
6145 && TREE_STATIC (decl
)
6146 && (TREE_CODE (TREE_TYPE (decl
)) == RECORD_TYPE
6147 || TREE_CODE (TREE_TYPE (decl
)) == UNION_TYPE
6148 || TREE_CODE (TREE_TYPE (decl
)) == ENUMERAL_TYPE
)
6149 && TYPE_NAME (TREE_TYPE (decl
)) == NULL_TREE
)
6150 warning_at (DECL_SOURCE_LOCATION (decl
), OPT_Wc___compat
,
6151 ("non-local variable %qD with anonymous type is "
6152 "questionable in C++"),
6159 /* Decode the parameter-list info for a function type or function definition.
6160 The argument is the value returned by `get_parm_info' (or made in c-parse.c
6161 if there is an identifier list instead of a parameter decl list).
6162 These two functions are separate because when a function returns
6163 or receives functions then each is called multiple times but the order
6164 of calls is different. The last call to `grokparms' is always the one
6165 that contains the formal parameter names of a function definition.
6167 Return a list of arg types to use in the FUNCTION_TYPE for this function.
6169 FUNCDEF_FLAG is true for a function definition, false for
6170 a mere declaration. A nonempty identifier-list gets an error message
6171 when FUNCDEF_FLAG is false. */
6174 grokparms (struct c_arg_info
*arg_info
, bool funcdef_flag
)
6176 tree arg_types
= arg_info
->types
;
6178 if (funcdef_flag
&& arg_info
->had_vla_unspec
)
6180 /* A function definition isn't function prototype scope C99 6.2.1p4. */
6182 error ("%<[*]%> not allowed in other than function prototype scope");
6185 if (arg_types
== 0 && !funcdef_flag
&& !in_system_header
)
6186 warning (OPT_Wstrict_prototypes
,
6187 "function declaration isn%'t a prototype");
6189 if (arg_types
== error_mark_node
)
6190 return 0; /* don't set TYPE_ARG_TYPES in this case */
6192 else if (arg_types
&& TREE_CODE (TREE_VALUE (arg_types
)) == IDENTIFIER_NODE
)
6196 pedwarn (input_location
, 0, "parameter names (without types) in function declaration");
6197 arg_info
->parms
= NULL_TREE
;
6200 arg_info
->parms
= arg_info
->types
;
6202 arg_info
->types
= 0;
6207 tree parm
, type
, typelt
;
6208 unsigned int parmno
;
6211 /* If there is a parameter of incomplete type in a definition,
6212 this is an error. In a declaration this is valid, and a
6213 struct or union type may be completed later, before any calls
6214 or definition of the function. In the case where the tag was
6215 first declared within the parameter list, a warning has
6216 already been given. If a parameter has void type, then
6217 however the function cannot be defined or called, so
6220 for (parm
= arg_info
->parms
, typelt
= arg_types
, parmno
= 1;
6222 parm
= DECL_CHAIN (parm
), typelt
= TREE_CHAIN (typelt
), parmno
++)
6224 type
= TREE_VALUE (typelt
);
6225 if (type
== error_mark_node
)
6228 if (!COMPLETE_TYPE_P (type
))
6232 if (DECL_NAME (parm
))
6233 error_at (input_location
,
6234 "parameter %u (%q+D) has incomplete type",
6237 error_at (DECL_SOURCE_LOCATION (parm
),
6238 "parameter %u has incomplete type",
6241 TREE_VALUE (typelt
) = error_mark_node
;
6242 TREE_TYPE (parm
) = error_mark_node
;
6243 arg_types
= NULL_TREE
;
6245 else if (VOID_TYPE_P (type
))
6247 if (DECL_NAME (parm
))
6248 warning_at (input_location
, 0,
6249 "parameter %u (%q+D) has void type",
6252 warning_at (DECL_SOURCE_LOCATION (parm
), 0,
6253 "parameter %u has void type",
6258 errmsg
= targetm
.invalid_parameter_type (type
);
6262 TREE_VALUE (typelt
) = error_mark_node
;
6263 TREE_TYPE (parm
) = error_mark_node
;
6264 arg_types
= NULL_TREE
;
6267 if (DECL_NAME (parm
) && TREE_USED (parm
))
6268 warn_if_shadowing (parm
);
6274 /* Allocate and initialize a c_arg_info structure from the parser's
6278 build_arg_info (void)
6280 struct c_arg_info
*ret
= XOBNEW (&parser_obstack
, struct c_arg_info
);
6281 ret
->parms
= NULL_TREE
;
6283 ret
->types
= NULL_TREE
;
6284 ret
->others
= NULL_TREE
;
6285 ret
->pending_sizes
= NULL
;
6286 ret
->had_vla_unspec
= 0;
6290 /* Take apart the current scope and return a c_arg_info structure with
6291 info on a parameter list just parsed.
6293 This structure is later fed to 'grokparms' and 'store_parm_decls'.
6295 ELLIPSIS being true means the argument list ended in '...' so don't
6296 append a sentinel (void_list_node) to the end of the type-list.
6298 EXPR is NULL or an expression that needs to be evaluated for the
6299 side effects of array size expressions in the parameters. */
6302 get_parm_info (bool ellipsis
, tree expr
)
6304 struct c_binding
*b
= current_scope
->bindings
;
6305 struct c_arg_info
*arg_info
= build_arg_info ();
6308 VEC(c_arg_tag
,gc
) *tags
= NULL
;
6312 static bool explained_incomplete_types
= false;
6313 bool gave_void_only_once_err
= false;
6315 arg_info
->had_vla_unspec
= current_scope
->had_vla_unspec
;
6317 /* The bindings in this scope must not get put into a block.
6318 We will take care of deleting the binding nodes. */
6319 current_scope
->bindings
= 0;
6321 /* This function is only called if there was *something* on the
6325 /* A parameter list consisting solely of 'void' indicates that the
6326 function takes no arguments. But if the 'void' is qualified
6327 (by 'const' or 'volatile'), or has a storage class specifier
6328 ('register'), then the behavior is undefined; issue an error.
6329 Typedefs for 'void' are OK (see DR#157). */
6330 if (b
->prev
== 0 /* one binding */
6331 && TREE_CODE (b
->decl
) == PARM_DECL
/* which is a parameter */
6332 && !DECL_NAME (b
->decl
) /* anonymous */
6333 && VOID_TYPE_P (TREE_TYPE (b
->decl
))) /* of void type */
6335 if (TREE_THIS_VOLATILE (b
->decl
)
6336 || TREE_READONLY (b
->decl
)
6337 || C_DECL_REGISTER (b
->decl
))
6338 error ("%<void%> as only parameter may not be qualified");
6340 /* There cannot be an ellipsis. */
6342 error ("%<void%> must be the only parameter");
6344 arg_info
->types
= void_list_node
;
6349 types
= void_list_node
;
6351 /* Break up the bindings list into parms, tags, types, and others;
6352 apply sanity checks; purge the name-to-decl bindings. */
6355 tree decl
= b
->decl
;
6356 tree type
= TREE_TYPE (decl
);
6358 const char *keyword
;
6360 switch (TREE_CODE (decl
))
6365 gcc_assert (I_SYMBOL_BINDING (b
->id
) == b
);
6366 I_SYMBOL_BINDING (b
->id
) = b
->shadowed
;
6369 /* Check for forward decls that never got their actual decl. */
6370 if (TREE_ASM_WRITTEN (decl
))
6371 error ("parameter %q+D has just a forward declaration", decl
);
6372 /* Check for (..., void, ...) and issue an error. */
6373 else if (VOID_TYPE_P (type
) && !DECL_NAME (decl
))
6375 if (!gave_void_only_once_err
)
6377 error ("%<void%> must be the only parameter");
6378 gave_void_only_once_err
= true;
6383 /* Valid parameter, add it to the list. */
6384 DECL_CHAIN (decl
) = parms
;
6387 /* Since there is a prototype, args are passed in their
6388 declared types. The back end may override this later. */
6389 DECL_ARG_TYPE (decl
) = type
;
6390 types
= tree_cons (0, type
, types
);
6394 case ENUMERAL_TYPE
: keyword
= "enum"; goto tag
;
6395 case UNION_TYPE
: keyword
= "union"; goto tag
;
6396 case RECORD_TYPE
: keyword
= "struct"; goto tag
;
6398 /* Types may not have tag-names, in which case the type
6399 appears in the bindings list with b->id NULL. */
6402 gcc_assert (I_TAG_BINDING (b
->id
) == b
);
6403 I_TAG_BINDING (b
->id
) = b
->shadowed
;
6406 /* Warn about any struct, union or enum tags defined in a
6407 parameter list. The scope of such types is limited to
6408 the parameter list, which is rarely if ever desirable
6409 (it's impossible to call such a function with type-
6410 correct arguments). An anonymous union parm type is
6411 meaningful as a GNU extension, so don't warn for that. */
6412 if (TREE_CODE (decl
) != UNION_TYPE
|| b
->id
!= 0)
6415 /* The %s will be one of 'struct', 'union', or 'enum'. */
6416 warning (0, "%<%s %E%> declared inside parameter list",
6419 /* The %s will be one of 'struct', 'union', or 'enum'. */
6420 warning (0, "anonymous %s declared inside parameter list",
6423 if (!explained_incomplete_types
)
6425 warning (0, "its scope is only this definition or declaration,"
6426 " which is probably not what you want");
6427 explained_incomplete_types
= true;
6431 tag
= VEC_safe_push (c_arg_tag
, gc
, tags
, NULL
);
6439 /* CONST_DECLs appear here when we have an embedded enum,
6440 and TYPE_DECLs appear here when we have an embedded struct
6441 or union. No warnings for this - we already warned about the
6442 type itself. FUNCTION_DECLs appear when there is an implicit
6443 function declaration in the parameter list. */
6445 /* When we reinsert this decl in the function body, we need
6446 to reconstruct whether it was marked as nested. */
6447 gcc_assert (TREE_CODE (decl
) == FUNCTION_DECL
6450 DECL_CHAIN (decl
) = others
;
6455 /* error_mark_node appears here when we have an undeclared
6456 variable. Just throw it away. */
6459 gcc_assert (I_SYMBOL_BINDING (b
->id
) == b
);
6460 I_SYMBOL_BINDING (b
->id
) = b
->shadowed
;
6464 /* Other things that might be encountered. */
6471 b
= free_binding_and_advance (b
);
6474 arg_info
->parms
= parms
;
6475 arg_info
->tags
= tags
;
6476 arg_info
->types
= types
;
6477 arg_info
->others
= others
;
6478 arg_info
->pending_sizes
= expr
;
6482 /* Get the struct, enum or union (CODE says which) with tag NAME.
6483 Define the tag as a forward-reference with location LOC if it is
6484 not defined. Return a c_typespec structure for the type
6488 parser_xref_tag (location_t loc
, enum tree_code code
, tree name
)
6490 struct c_typespec ret
;
6494 ret
.expr
= NULL_TREE
;
6495 ret
.expr_const_operands
= true;
6497 /* If a cross reference is requested, look up the type
6498 already defined for this tag and return it. */
6500 ref
= lookup_tag (code
, name
, 0, &refloc
);
6501 /* If this is the right type of tag, return what we found.
6502 (This reference will be shadowed by shadow_tag later if appropriate.)
6503 If this is the wrong type of tag, do not return it. If it was the
6504 wrong type in the same scope, we will have had an error
6505 message already; if in a different scope and declaring
6506 a name, pending_xref_error will give an error message; but if in a
6507 different scope and not declaring a name, this tag should
6508 shadow the previous declaration of a different type of tag, and
6509 this would not work properly if we return the reference found.
6510 (For example, with "struct foo" in an outer scope, "union foo;"
6511 must shadow that tag with a new one of union type.) */
6512 ret
.kind
= (ref
? ctsk_tagref
: ctsk_tagfirstref
);
6513 if (ref
&& TREE_CODE (ref
) == code
)
6515 if (C_TYPE_DEFINED_IN_STRUCT (ref
)
6516 && loc
!= UNKNOWN_LOCATION
6522 warning_at (loc
, OPT_Wc___compat
,
6523 ("enum type defined in struct or union "
6524 "is not visible in C++"));
6525 inform (refloc
, "enum type defined here");
6528 warning_at (loc
, OPT_Wc___compat
,
6529 ("struct defined in struct or union "
6530 "is not visible in C++"));
6531 inform (refloc
, "struct defined here");
6534 warning_at (loc
, OPT_Wc___compat
,
6535 ("union defined in struct or union "
6536 "is not visible in C++"));
6537 inform (refloc
, "union defined here");
6548 /* If no such tag is yet defined, create a forward-reference node
6549 and record it as the "definition".
6550 When a real declaration of this type is found,
6551 the forward-reference will be altered into a real type. */
6553 ref
= make_node (code
);
6554 if (code
== ENUMERAL_TYPE
)
6556 /* Give the type a default layout like unsigned int
6557 to avoid crashing if it does not get defined. */
6558 SET_TYPE_MODE (ref
, TYPE_MODE (unsigned_type_node
));
6559 TYPE_ALIGN (ref
) = TYPE_ALIGN (unsigned_type_node
);
6560 TYPE_USER_ALIGN (ref
) = 0;
6561 TYPE_UNSIGNED (ref
) = 1;
6562 TYPE_PRECISION (ref
) = TYPE_PRECISION (unsigned_type_node
);
6563 TYPE_MIN_VALUE (ref
) = TYPE_MIN_VALUE (unsigned_type_node
);
6564 TYPE_MAX_VALUE (ref
) = TYPE_MAX_VALUE (unsigned_type_node
);
6567 pushtag (loc
, name
, ref
);
6573 /* Get the struct, enum or union (CODE says which) with tag NAME.
6574 Define the tag as a forward-reference if it is not defined.
6575 Return a tree for the type. */
6578 xref_tag (enum tree_code code
, tree name
)
6580 return parser_xref_tag (input_location
, code
, name
).spec
;
6583 /* Make sure that the tag NAME is defined *in the current scope*
6584 at least as a forward reference.
6585 LOC is the location of the struct's definition.
6586 CODE says which kind of tag NAME ought to be.
6588 This stores the current value of the file static STRUCT_PARSE_INFO
6589 in *ENCLOSING_STRUCT_PARSE_INFO, and points STRUCT_PARSE_INFO at a
6590 new c_struct_parse_info structure. The old value of
6591 STRUCT_PARSE_INFO is restored in finish_struct. */
6594 start_struct (location_t loc
, enum tree_code code
, tree name
,
6595 struct c_struct_parse_info
**enclosing_struct_parse_info
)
6597 /* If there is already a tag defined at this scope
6598 (as a forward reference), just return it. */
6600 tree ref
= NULL_TREE
;
6601 location_t refloc
= UNKNOWN_LOCATION
;
6603 if (name
!= NULL_TREE
)
6604 ref
= lookup_tag (code
, name
, 1, &refloc
);
6605 if (ref
&& TREE_CODE (ref
) == code
)
6607 if (TYPE_SIZE (ref
))
6609 if (code
== UNION_TYPE
)
6610 error_at (loc
, "redefinition of %<union %E%>", name
);
6612 error_at (loc
, "redefinition of %<struct %E%>", name
);
6613 if (refloc
!= UNKNOWN_LOCATION
)
6614 inform (refloc
, "originally defined here");
6615 /* Don't create structures using a name already in use. */
6618 else if (C_TYPE_BEING_DEFINED (ref
))
6620 if (code
== UNION_TYPE
)
6621 error_at (loc
, "nested redefinition of %<union %E%>", name
);
6623 error_at (loc
, "nested redefinition of %<struct %E%>", name
);
6624 /* Don't bother to report "originally defined here" for a
6625 nested redefinition; the original definition should be
6627 /* Don't create structures that contain themselves. */
6632 /* Otherwise create a forward-reference just so the tag is in scope. */
6634 if (ref
== NULL_TREE
|| TREE_CODE (ref
) != code
)
6636 ref
= make_node (code
);
6637 pushtag (loc
, name
, ref
);
6640 C_TYPE_BEING_DEFINED (ref
) = 1;
6641 TYPE_PACKED (ref
) = flag_pack_struct
;
6643 *enclosing_struct_parse_info
= struct_parse_info
;
6644 struct_parse_info
= XNEW (struct c_struct_parse_info
);
6645 struct_parse_info
->struct_types
= VEC_alloc (tree
, heap
, 0);
6646 struct_parse_info
->fields
= VEC_alloc (c_binding_ptr
, heap
, 0);
6647 struct_parse_info
->typedefs_seen
= VEC_alloc (tree
, heap
, 0);
6649 /* FIXME: This will issue a warning for a use of a type defined
6650 within a statement expr used within sizeof, et. al. This is not
6651 terribly serious as C++ doesn't permit statement exprs within
6653 if (warn_cxx_compat
&& (in_sizeof
|| in_typeof
|| in_alignof
))
6654 warning_at (loc
, OPT_Wc___compat
,
6655 "defining type in %qs expression is invalid in C++",
6658 : (in_typeof
? "typeof" : "alignof")));
6663 /* Process the specs, declarator and width (NULL if omitted)
6664 of a structure component, returning a FIELD_DECL node.
6665 WIDTH is non-NULL for bit-fields only, and is an INTEGER_CST node.
6666 DECL_ATTRS is as for grokdeclarator.
6668 LOC is the location of the structure component.
6670 This is done during the parsing of the struct declaration.
6671 The FIELD_DECL nodes are chained together and the lot of them
6672 are ultimately passed to `build_struct' to make the RECORD_TYPE node. */
6675 grokfield (location_t loc
,
6676 struct c_declarator
*declarator
, struct c_declspecs
*declspecs
,
6677 tree width
, tree
*decl_attrs
)
6681 if (declarator
->kind
== cdk_id
&& declarator
->u
.id
== NULL_TREE
6682 && width
== NULL_TREE
)
6684 /* This is an unnamed decl.
6686 If we have something of the form "union { list } ;" then this
6687 is the anonymous union extension. Similarly for struct.
6689 If this is something of the form "struct foo;", then
6690 If MS or Plan 9 extensions are enabled, this is handled as
6691 an anonymous struct.
6692 Otherwise this is a forward declaration of a structure tag.
6694 If this is something of the form "foo;" and foo is a TYPE_DECL, then
6695 If foo names a structure or union without a tag, then this
6696 is an anonymous struct (this is permitted by C1X).
6697 If MS or Plan 9 extensions are enabled and foo names a
6698 structure, then again this is an anonymous struct.
6699 Otherwise this is an error.
6701 Oh what a horrid tangled web we weave. I wonder if MS consciously
6702 took this from Plan 9 or if it was an accident of implementation
6703 that took root before someone noticed the bug... */
6705 tree type
= declspecs
->type
;
6706 bool type_ok
= (TREE_CODE (type
) == RECORD_TYPE
6707 || TREE_CODE (type
) == UNION_TYPE
);
6711 && (flag_ms_extensions
6712 || flag_plan9_extensions
6713 || !declspecs
->typedef_p
))
6715 if (flag_ms_extensions
|| flag_plan9_extensions
)
6717 else if (TYPE_NAME (type
) == NULL
)
6724 pedwarn (loc
, 0, "declaration does not declare anything");
6730 pedwarn (loc
, OPT_pedantic
,
6731 "ISO C99 doesn%'t support unnamed structs/unions");
6733 pedwarn (loc
, OPT_pedantic
,
6734 "ISO C90 doesn%'t support unnamed structs/unions");
6738 value
= grokdeclarator (declarator
, declspecs
, FIELD
, false,
6739 width
? &width
: NULL
, decl_attrs
, NULL
, NULL
,
6742 finish_decl (value
, loc
, NULL_TREE
, NULL_TREE
, NULL_TREE
);
6743 DECL_INITIAL (value
) = width
;
6745 if (warn_cxx_compat
&& DECL_NAME (value
) != NULL_TREE
)
6747 /* If we currently have a binding for this field, set the
6748 in_struct field in the binding, so that we warn about lookups
6750 struct c_binding
*b
= I_SYMBOL_BINDING (DECL_NAME (value
));
6753 /* If the in_struct field is not yet set, push it on a list
6754 to be cleared when this struct is finished. */
6757 VEC_safe_push (c_binding_ptr
, heap
,
6758 struct_parse_info
->fields
, b
);
6767 /* Subroutine of detect_field_duplicates: return whether X and Y,
6768 which are both fields in the same struct, have duplicate field
6772 is_duplicate_field (tree x
, tree y
)
6774 if (DECL_NAME (x
) != NULL_TREE
&& DECL_NAME (x
) == DECL_NAME (y
))
6777 /* When using -fplan9-extensions, an anonymous field whose name is a
6778 typedef can duplicate a field name. */
6779 if (flag_plan9_extensions
6780 && (DECL_NAME (x
) == NULL_TREE
|| DECL_NAME (y
) == NULL_TREE
))
6782 tree xt
, xn
, yt
, yn
;
6785 if (DECL_NAME (x
) != NULL_TREE
)
6787 else if ((TREE_CODE (xt
) == RECORD_TYPE
|| TREE_CODE (xt
) == UNION_TYPE
)
6788 && TYPE_NAME (xt
) != NULL_TREE
6789 && TREE_CODE (TYPE_NAME (xt
)) == TYPE_DECL
)
6790 xn
= DECL_NAME (TYPE_NAME (xt
));
6795 if (DECL_NAME (y
) != NULL_TREE
)
6797 else if ((TREE_CODE (yt
) == RECORD_TYPE
|| TREE_CODE (yt
) == UNION_TYPE
)
6798 && TYPE_NAME (yt
) != NULL_TREE
6799 && TREE_CODE (TYPE_NAME (yt
)) == TYPE_DECL
)
6800 yn
= DECL_NAME (TYPE_NAME (yt
));
6804 if (xn
!= NULL_TREE
&& xn
== yn
)
6811 /* Subroutine of detect_field_duplicates: add the fields of FIELDLIST
6812 to HTAB, giving errors for any duplicates. */
6815 detect_field_duplicates_hash (tree fieldlist
, htab_t htab
)
6820 for (x
= fieldlist
; x
; x
= DECL_CHAIN (x
))
6821 if ((y
= DECL_NAME (x
)) != 0)
6823 slot
= htab_find_slot (htab
, y
, INSERT
);
6826 error ("duplicate member %q+D", x
);
6827 DECL_NAME (x
) = NULL_TREE
;
6831 else if (TREE_CODE (TREE_TYPE (x
)) == RECORD_TYPE
6832 || TREE_CODE (TREE_TYPE (x
)) == UNION_TYPE
)
6834 detect_field_duplicates_hash (TYPE_FIELDS (TREE_TYPE (x
)), htab
);
6836 /* When using -fplan9-extensions, an anonymous field whose
6837 name is a typedef can duplicate a field name. */
6838 if (flag_plan9_extensions
6839 && TYPE_NAME (TREE_TYPE (x
)) != NULL_TREE
6840 && TREE_CODE (TYPE_NAME (TREE_TYPE (x
))) == TYPE_DECL
)
6842 tree xn
= DECL_NAME (TYPE_NAME (TREE_TYPE (x
)));
6843 slot
= htab_find_slot (htab
, xn
, INSERT
);
6845 error ("duplicate member %q+D", TYPE_NAME (TREE_TYPE (x
)));
6851 /* Generate an error for any duplicate field names in FIELDLIST. Munge
6852 the list such that this does not present a problem later. */
6855 detect_field_duplicates (tree fieldlist
)
6860 /* If the struct is the list of instance variables of an Objective-C
6861 class, then we need to check all the instance variables of
6862 superclasses when checking for duplicates (since you can't have
6863 an instance variable in a subclass with the same name as an
6864 instance variable in a superclass). We pass on this job to the
6865 Objective-C compiler. objc_detect_field_duplicates() will return
6866 false if we are not checking the list of instance variables and
6867 the C frontend should proceed with the standard field duplicate
6868 checks. If we are checking the list of instance variables, the
6869 ObjC frontend will do the check, emit the errors if needed, and
6870 then return true. */
6871 if (c_dialect_objc ())
6872 if (objc_detect_field_duplicates (false))
6875 /* First, see if there are more than "a few" fields.
6876 This is trivially true if there are zero or one fields. */
6877 if (!fieldlist
|| !DECL_CHAIN (fieldlist
))
6882 if (DECL_NAME (x
) == NULL_TREE
6883 && (TREE_CODE (TREE_TYPE (x
)) == RECORD_TYPE
6884 || TREE_CODE (TREE_TYPE (x
)) == UNION_TYPE
))
6887 } while (timeout
> 0 && x
);
6889 /* If there were "few" fields and no anonymous structures or unions,
6890 avoid the overhead of allocating a hash table. Instead just do
6891 the nested traversal thing. */
6894 for (x
= DECL_CHAIN (fieldlist
); x
; x
= DECL_CHAIN (x
))
6895 /* When using -fplan9-extensions, we can have duplicates
6896 between typedef names and fields. */
6898 || (flag_plan9_extensions
6899 && DECL_NAME (x
) == NULL_TREE
6900 && (TREE_CODE (TREE_TYPE (x
)) == RECORD_TYPE
6901 || TREE_CODE (TREE_TYPE (x
)) == UNION_TYPE
)
6902 && TYPE_NAME (TREE_TYPE (x
)) != NULL_TREE
6903 && TREE_CODE (TYPE_NAME (TREE_TYPE (x
))) == TYPE_DECL
))
6905 for (y
= fieldlist
; y
!= x
; y
= TREE_CHAIN (y
))
6906 if (is_duplicate_field (y
, x
))
6908 error ("duplicate member %q+D", x
);
6909 DECL_NAME (x
) = NULL_TREE
;
6915 htab_t htab
= htab_create (37, htab_hash_pointer
, htab_eq_pointer
, NULL
);
6917 detect_field_duplicates_hash (fieldlist
, htab
);
6922 /* Finish up struct info used by -Wc++-compat. */
6925 warn_cxx_compat_finish_struct (tree fieldlist
)
6929 struct c_binding
*b
;
6931 /* Set the C_TYPE_DEFINED_IN_STRUCT flag for each type defined in
6932 the current struct. We do this now at the end of the struct
6933 because the flag is used to issue visibility warnings, and we
6934 only want to issue those warnings if the type is referenced
6935 outside of the struct declaration. */
6936 FOR_EACH_VEC_ELT (tree
, struct_parse_info
->struct_types
, ix
, x
)
6937 C_TYPE_DEFINED_IN_STRUCT (x
) = 1;
6939 /* The TYPEDEFS_SEEN field of STRUCT_PARSE_INFO is a list of
6940 typedefs used when declaring fields in this struct. If the name
6941 of any of the fields is also a typedef name then the struct would
6942 not parse in C++, because the C++ lookup rules say that the
6943 typedef name would be looked up in the context of the struct, and
6944 would thus be the field rather than the typedef. */
6945 if (!VEC_empty (tree
, struct_parse_info
->typedefs_seen
)
6946 && fieldlist
!= NULL_TREE
)
6948 /* Use a pointer_set using the name of the typedef. We can use
6949 a pointer_set because identifiers are interned. */
6950 struct pointer_set_t
*tset
= pointer_set_create ();
6952 FOR_EACH_VEC_ELT (tree
, struct_parse_info
->typedefs_seen
, ix
, x
)
6953 pointer_set_insert (tset
, DECL_NAME (x
));
6955 for (x
= fieldlist
; x
!= NULL_TREE
; x
= DECL_CHAIN (x
))
6957 if (DECL_NAME (x
) != NULL_TREE
6958 && pointer_set_contains (tset
, DECL_NAME (x
)))
6960 warning_at (DECL_SOURCE_LOCATION (x
), OPT_Wc___compat
,
6961 ("using %qD as both field and typedef name is "
6964 /* FIXME: It would be nice to report the location where
6965 the typedef name is used. */
6969 pointer_set_destroy (tset
);
6972 /* For each field which has a binding and which was not defined in
6973 an enclosing struct, clear the in_struct field. */
6974 FOR_EACH_VEC_ELT (c_binding_ptr
, struct_parse_info
->fields
, ix
, b
)
6978 /* Fill in the fields of a RECORD_TYPE or UNION_TYPE node, T.
6979 LOC is the location of the RECORD_TYPE or UNION_TYPE's definition.
6980 FIELDLIST is a chain of FIELD_DECL nodes for the fields.
6981 ATTRIBUTES are attributes to be applied to the structure.
6983 ENCLOSING_STRUCT_PARSE_INFO is the value of STRUCT_PARSE_INFO when
6984 the struct was started. */
6987 finish_struct (location_t loc
, tree t
, tree fieldlist
, tree attributes
,
6988 struct c_struct_parse_info
*enclosing_struct_parse_info
)
6991 bool toplevel
= file_scope
== current_scope
;
6992 int saw_named_field
;
6994 /* If this type was previously laid out as a forward reference,
6995 make sure we lay it out again. */
6999 decl_attributes (&t
, attributes
, (int) ATTR_FLAG_TYPE_IN_PLACE
);
7003 for (x
= fieldlist
; x
; x
= DECL_CHAIN (x
))
7005 if (DECL_NAME (x
) != 0)
7008 && (TREE_CODE (TREE_TYPE (x
)) == RECORD_TYPE
7009 || TREE_CODE (TREE_TYPE (x
)) == UNION_TYPE
))
7015 if (TREE_CODE (t
) == UNION_TYPE
)
7018 pedwarn (loc
, OPT_pedantic
, "union has no named members");
7020 pedwarn (loc
, OPT_pedantic
, "union has no members");
7025 pedwarn (loc
, OPT_pedantic
, "struct has no named members");
7027 pedwarn (loc
, OPT_pedantic
, "struct has no members");
7032 /* Install struct as DECL_CONTEXT of each field decl.
7033 Also process specified field sizes, found in the DECL_INITIAL,
7034 storing 0 there after the type has been changed to precision equal
7035 to its width, rather than the precision of the specified standard
7036 type. (Correct layout requires the original type to have been preserved
7039 saw_named_field
= 0;
7040 for (x
= fieldlist
; x
; x
= DECL_CHAIN (x
))
7042 if (TREE_TYPE (x
) == error_mark_node
)
7045 DECL_CONTEXT (x
) = t
;
7047 /* If any field is const, the structure type is pseudo-const. */
7048 if (TREE_READONLY (x
))
7049 C_TYPE_FIELDS_READONLY (t
) = 1;
7052 /* A field that is pseudo-const makes the structure likewise. */
7053 tree t1
= strip_array_types (TREE_TYPE (x
));
7054 if ((TREE_CODE (t1
) == RECORD_TYPE
|| TREE_CODE (t1
) == UNION_TYPE
)
7055 && C_TYPE_FIELDS_READONLY (t1
))
7056 C_TYPE_FIELDS_READONLY (t
) = 1;
7059 /* Any field that is volatile means variables of this type must be
7060 treated in some ways as volatile. */
7061 if (TREE_THIS_VOLATILE (x
))
7062 C_TYPE_FIELDS_VOLATILE (t
) = 1;
7064 /* Any field of nominal variable size implies structure is too. */
7065 if (C_DECL_VARIABLE_SIZE (x
))
7066 C_TYPE_VARIABLE_SIZE (t
) = 1;
7068 if (DECL_INITIAL (x
))
7070 unsigned HOST_WIDE_INT width
= tree_low_cst (DECL_INITIAL (x
), 1);
7071 DECL_SIZE (x
) = bitsize_int (width
);
7072 DECL_BIT_FIELD (x
) = 1;
7073 SET_DECL_C_BIT_FIELD (x
);
7077 && (DECL_BIT_FIELD (x
)
7078 || TYPE_ALIGN (TREE_TYPE (x
)) > BITS_PER_UNIT
))
7079 DECL_PACKED (x
) = 1;
7081 /* Detect flexible array member in an invalid context. */
7082 if (TREE_CODE (TREE_TYPE (x
)) == ARRAY_TYPE
7083 && TYPE_SIZE (TREE_TYPE (x
)) == NULL_TREE
7084 && TYPE_DOMAIN (TREE_TYPE (x
)) != NULL_TREE
7085 && TYPE_MAX_VALUE (TYPE_DOMAIN (TREE_TYPE (x
))) == NULL_TREE
)
7087 if (TREE_CODE (t
) == UNION_TYPE
)
7089 error_at (DECL_SOURCE_LOCATION (x
),
7090 "flexible array member in union");
7091 TREE_TYPE (x
) = error_mark_node
;
7093 else if (DECL_CHAIN (x
) != NULL_TREE
)
7095 error_at (DECL_SOURCE_LOCATION (x
),
7096 "flexible array member not at end of struct");
7097 TREE_TYPE (x
) = error_mark_node
;
7099 else if (!saw_named_field
)
7101 error_at (DECL_SOURCE_LOCATION (x
),
7102 "flexible array member in otherwise empty struct");
7103 TREE_TYPE (x
) = error_mark_node
;
7107 if (pedantic
&& TREE_CODE (t
) == RECORD_TYPE
7108 && flexible_array_type_p (TREE_TYPE (x
)))
7109 pedwarn (DECL_SOURCE_LOCATION (x
), OPT_pedantic
,
7110 "invalid use of structure with flexible array member");
7113 || TREE_CODE (TREE_TYPE (x
)) == RECORD_TYPE
7114 || TREE_CODE (TREE_TYPE (x
)) == UNION_TYPE
)
7115 saw_named_field
= 1;
7118 detect_field_duplicates (fieldlist
);
7120 /* Now we have the nearly final fieldlist. Record it,
7121 then lay out the structure or union (including the fields). */
7123 TYPE_FIELDS (t
) = fieldlist
;
7127 /* Give bit-fields their proper types. */
7129 tree
*fieldlistp
= &fieldlist
;
7131 if (TREE_CODE (*fieldlistp
) == FIELD_DECL
&& DECL_INITIAL (*fieldlistp
)
7132 && TREE_TYPE (*fieldlistp
) != error_mark_node
)
7134 unsigned HOST_WIDE_INT width
7135 = tree_low_cst (DECL_INITIAL (*fieldlistp
), 1);
7136 tree type
= TREE_TYPE (*fieldlistp
);
7137 if (width
!= TYPE_PRECISION (type
))
7139 TREE_TYPE (*fieldlistp
)
7140 = c_build_bitfield_integer_type (width
, TYPE_UNSIGNED (type
));
7141 DECL_MODE (*fieldlistp
) = TYPE_MODE (TREE_TYPE (*fieldlistp
));
7143 DECL_INITIAL (*fieldlistp
) = 0;
7146 fieldlistp
= &DECL_CHAIN (*fieldlistp
);
7149 /* Now we have the truly final field list.
7150 Store it in this type and in the variants. */
7152 TYPE_FIELDS (t
) = fieldlist
;
7154 /* If there are lots of fields, sort so we can look through them fast.
7155 We arbitrarily consider 16 or more elts to be "a lot". */
7160 for (x
= fieldlist
; x
; x
= DECL_CHAIN (x
))
7162 if (len
> 15 || DECL_NAME (x
) == NULL
)
7170 struct lang_type
*space
;
7171 struct sorted_fields_type
*space2
;
7173 len
+= list_length (x
);
7175 /* Use the same allocation policy here that make_node uses, to
7176 ensure that this lives as long as the rest of the struct decl.
7177 All decls in an inline function need to be saved. */
7179 space
= ggc_alloc_cleared_lang_type (sizeof (struct lang_type
));
7180 space2
= ggc_alloc_sorted_fields_type
7181 (sizeof (struct sorted_fields_type
) + len
* sizeof (tree
));
7185 field_array
= &space2
->elts
[0];
7186 for (x
= fieldlist
; x
; x
= DECL_CHAIN (x
))
7188 field_array
[len
++] = x
;
7190 /* If there is anonymous struct or union, break out of the loop. */
7191 if (DECL_NAME (x
) == NULL
)
7194 /* Found no anonymous struct/union. Add the TYPE_LANG_SPECIFIC. */
7197 TYPE_LANG_SPECIFIC (t
) = space
;
7198 TYPE_LANG_SPECIFIC (t
)->s
->len
= len
;
7199 field_array
= TYPE_LANG_SPECIFIC (t
)->s
->elts
;
7200 qsort (field_array
, len
, sizeof (tree
), field_decl_cmp
);
7205 for (x
= TYPE_MAIN_VARIANT (t
); x
; x
= TYPE_NEXT_VARIANT (x
))
7207 TYPE_FIELDS (x
) = TYPE_FIELDS (t
);
7208 TYPE_LANG_SPECIFIC (x
) = TYPE_LANG_SPECIFIC (t
);
7209 C_TYPE_FIELDS_READONLY (x
) = C_TYPE_FIELDS_READONLY (t
);
7210 C_TYPE_FIELDS_VOLATILE (x
) = C_TYPE_FIELDS_VOLATILE (t
);
7211 C_TYPE_VARIABLE_SIZE (x
) = C_TYPE_VARIABLE_SIZE (t
);
7214 /* If this was supposed to be a transparent union, but we can't
7215 make it one, warn and turn off the flag. */
7216 if (TREE_CODE (t
) == UNION_TYPE
7217 && TYPE_TRANSPARENT_AGGR (t
)
7218 && (!TYPE_FIELDS (t
) || TYPE_MODE (t
) != DECL_MODE (TYPE_FIELDS (t
))))
7220 TYPE_TRANSPARENT_AGGR (t
) = 0;
7221 warning_at (loc
, 0, "union cannot be made transparent");
7224 /* If this structure or union completes the type of any previous
7225 variable declaration, lay it out and output its rtl. */
7226 for (x
= C_TYPE_INCOMPLETE_VARS (TYPE_MAIN_VARIANT (t
));
7230 tree decl
= TREE_VALUE (x
);
7231 if (TREE_CODE (TREE_TYPE (decl
)) == ARRAY_TYPE
)
7232 layout_array_type (TREE_TYPE (decl
));
7233 if (TREE_CODE (decl
) != TYPE_DECL
)
7235 layout_decl (decl
, 0);
7236 if (c_dialect_objc ())
7237 objc_check_decl (decl
);
7238 rest_of_decl_compilation (decl
, toplevel
, 0);
7243 C_TYPE_INCOMPLETE_VARS (TYPE_MAIN_VARIANT (t
)) = 0;
7245 /* Update type location to the one of the definition, instead of e.g.
7246 a forward declaration. */
7247 if (TYPE_STUB_DECL (t
))
7248 DECL_SOURCE_LOCATION (TYPE_STUB_DECL (t
)) = loc
;
7250 /* Finish debugging output for this type. */
7251 rest_of_type_compilation (t
, toplevel
);
7253 /* If we're inside a function proper, i.e. not file-scope and not still
7254 parsing parameters, then arrange for the size of a variable sized type
7256 if (building_stmt_list_p () && variably_modified_type_p (t
, NULL_TREE
))
7257 add_stmt (build_stmt (loc
,
7258 DECL_EXPR
, build_decl (loc
, TYPE_DECL
, NULL
, t
)));
7260 if (warn_cxx_compat
)
7261 warn_cxx_compat_finish_struct (fieldlist
);
7263 VEC_free (tree
, heap
, struct_parse_info
->struct_types
);
7264 VEC_free (c_binding_ptr
, heap
, struct_parse_info
->fields
);
7265 VEC_free (tree
, heap
, struct_parse_info
->typedefs_seen
);
7266 XDELETE (struct_parse_info
);
7268 struct_parse_info
= enclosing_struct_parse_info
;
7270 /* If this struct is defined inside a struct, add it to
7273 && struct_parse_info
!= NULL
7274 && !in_sizeof
&& !in_typeof
&& !in_alignof
)
7275 VEC_safe_push (tree
, heap
, struct_parse_info
->struct_types
, t
);
7280 /* Lay out the type T, and its element type, and so on. */
7283 layout_array_type (tree t
)
7285 if (TREE_CODE (TREE_TYPE (t
)) == ARRAY_TYPE
)
7286 layout_array_type (TREE_TYPE (t
));
7290 /* Begin compiling the definition of an enumeration type.
7291 NAME is its name (or null if anonymous).
7292 LOC is the enum's location.
7293 Returns the type object, as yet incomplete.
7294 Also records info about it so that build_enumerator
7295 may be used to declare the individual values as they are read. */
7298 start_enum (location_t loc
, struct c_enum_contents
*the_enum
, tree name
)
7300 tree enumtype
= NULL_TREE
;
7301 location_t enumloc
= UNKNOWN_LOCATION
;
7303 /* If this is the real definition for a previous forward reference,
7304 fill in the contents in the same object that used to be the
7305 forward reference. */
7307 if (name
!= NULL_TREE
)
7308 enumtype
= lookup_tag (ENUMERAL_TYPE
, name
, 1, &enumloc
);
7310 if (enumtype
== 0 || TREE_CODE (enumtype
) != ENUMERAL_TYPE
)
7312 enumtype
= make_node (ENUMERAL_TYPE
);
7313 pushtag (loc
, name
, enumtype
);
7316 if (C_TYPE_BEING_DEFINED (enumtype
))
7317 error_at (loc
, "nested redefinition of %<enum %E%>", name
);
7319 C_TYPE_BEING_DEFINED (enumtype
) = 1;
7321 if (TYPE_VALUES (enumtype
) != 0)
7323 /* This enum is a named one that has been declared already. */
7324 error_at (loc
, "redeclaration of %<enum %E%>", name
);
7325 if (enumloc
!= UNKNOWN_LOCATION
)
7326 inform (enumloc
, "originally defined here");
7328 /* Completely replace its old definition.
7329 The old enumerators remain defined, however. */
7330 TYPE_VALUES (enumtype
) = 0;
7333 the_enum
->enum_next_value
= integer_zero_node
;
7334 the_enum
->enum_overflow
= 0;
7336 if (flag_short_enums
)
7337 TYPE_PACKED (enumtype
) = 1;
7339 /* FIXME: This will issue a warning for a use of a type defined
7340 within sizeof in a statement expr. This is not terribly serious
7341 as C++ doesn't permit statement exprs within sizeof anyhow. */
7342 if (warn_cxx_compat
&& (in_sizeof
|| in_typeof
|| in_alignof
))
7343 warning_at (loc
, OPT_Wc___compat
,
7344 "defining type in %qs expression is invalid in C++",
7347 : (in_typeof
? "typeof" : "alignof")));
7352 /* After processing and defining all the values of an enumeration type,
7353 install their decls in the enumeration type and finish it off.
7354 ENUMTYPE is the type object, VALUES a list of decl-value pairs,
7355 and ATTRIBUTES are the specified attributes.
7356 Returns ENUMTYPE. */
7359 finish_enum (tree enumtype
, tree values
, tree attributes
)
7362 tree minnode
= 0, maxnode
= 0;
7363 int precision
, unsign
;
7364 bool toplevel
= (file_scope
== current_scope
);
7365 struct lang_type
*lt
;
7367 decl_attributes (&enumtype
, attributes
, (int) ATTR_FLAG_TYPE_IN_PLACE
);
7369 /* Calculate the maximum value of any enumerator in this type. */
7371 if (values
== error_mark_node
)
7372 minnode
= maxnode
= integer_zero_node
;
7375 minnode
= maxnode
= TREE_VALUE (values
);
7376 for (pair
= TREE_CHAIN (values
); pair
; pair
= TREE_CHAIN (pair
))
7378 tree value
= TREE_VALUE (pair
);
7379 if (tree_int_cst_lt (maxnode
, value
))
7381 if (tree_int_cst_lt (value
, minnode
))
7386 /* Construct the final type of this enumeration. It is the same
7387 as one of the integral types - the narrowest one that fits, except
7388 that normally we only go as narrow as int - and signed iff any of
7389 the values are negative. */
7390 unsign
= (tree_int_cst_sgn (minnode
) >= 0);
7391 precision
= MAX (tree_int_cst_min_precision (minnode
, unsign
),
7392 tree_int_cst_min_precision (maxnode
, unsign
));
7394 if (TYPE_PACKED (enumtype
) || precision
> TYPE_PRECISION (integer_type_node
))
7396 tem
= c_common_type_for_size (precision
, unsign
);
7399 warning (0, "enumeration values exceed range of largest integer");
7400 tem
= long_long_integer_type_node
;
7404 tem
= unsign
? unsigned_type_node
: integer_type_node
;
7406 TYPE_MIN_VALUE (enumtype
) = TYPE_MIN_VALUE (tem
);
7407 TYPE_MAX_VALUE (enumtype
) = TYPE_MAX_VALUE (tem
);
7408 TYPE_UNSIGNED (enumtype
) = TYPE_UNSIGNED (tem
);
7409 TYPE_SIZE (enumtype
) = 0;
7411 /* If the precision of the type was specific with an attribute and it
7412 was too small, give an error. Otherwise, use it. */
7413 if (TYPE_PRECISION (enumtype
))
7415 if (precision
> TYPE_PRECISION (enumtype
))
7416 error ("specified mode too small for enumeral values");
7419 TYPE_PRECISION (enumtype
) = TYPE_PRECISION (tem
);
7421 layout_type (enumtype
);
7423 if (values
!= error_mark_node
)
7425 /* Change the type of the enumerators to be the enum type. We
7426 need to do this irrespective of the size of the enum, for
7427 proper type checking. Replace the DECL_INITIALs of the
7428 enumerators, and the value slots of the list, with copies
7429 that have the enum type; they cannot be modified in place
7430 because they may be shared (e.g. integer_zero_node) Finally,
7431 change the purpose slots to point to the names of the decls. */
7432 for (pair
= values
; pair
; pair
= TREE_CHAIN (pair
))
7434 tree enu
= TREE_PURPOSE (pair
);
7435 tree ini
= DECL_INITIAL (enu
);
7437 TREE_TYPE (enu
) = enumtype
;
7439 /* The ISO C Standard mandates enumerators to have type int,
7440 even though the underlying type of an enum type is
7441 unspecified. However, GCC allows enumerators of any
7442 integer type as an extensions. build_enumerator()
7443 converts any enumerators that fit in an int to type int,
7444 to avoid promotions to unsigned types when comparing
7445 integers with enumerators that fit in the int range.
7446 When -pedantic is given, build_enumerator() would have
7447 already warned about those that don't fit. Here we
7448 convert the rest to the enumerator type. */
7449 if (TREE_TYPE (ini
) != integer_type_node
)
7450 ini
= convert (enumtype
, ini
);
7452 DECL_INITIAL (enu
) = ini
;
7453 TREE_PURPOSE (pair
) = DECL_NAME (enu
);
7454 TREE_VALUE (pair
) = ini
;
7457 TYPE_VALUES (enumtype
) = values
;
7460 /* Record the min/max values so that we can warn about bit-field
7461 enumerations that are too small for the values. */
7462 lt
= ggc_alloc_cleared_lang_type (sizeof (struct lang_type
));
7463 lt
->enum_min
= minnode
;
7464 lt
->enum_max
= maxnode
;
7465 TYPE_LANG_SPECIFIC (enumtype
) = lt
;
7467 /* Fix up all variant types of this enum type. */
7468 for (tem
= TYPE_MAIN_VARIANT (enumtype
); tem
; tem
= TYPE_NEXT_VARIANT (tem
))
7470 if (tem
== enumtype
)
7472 TYPE_VALUES (tem
) = TYPE_VALUES (enumtype
);
7473 TYPE_MIN_VALUE (tem
) = TYPE_MIN_VALUE (enumtype
);
7474 TYPE_MAX_VALUE (tem
) = TYPE_MAX_VALUE (enumtype
);
7475 TYPE_SIZE (tem
) = TYPE_SIZE (enumtype
);
7476 TYPE_SIZE_UNIT (tem
) = TYPE_SIZE_UNIT (enumtype
);
7477 SET_TYPE_MODE (tem
, TYPE_MODE (enumtype
));
7478 TYPE_PRECISION (tem
) = TYPE_PRECISION (enumtype
);
7479 TYPE_ALIGN (tem
) = TYPE_ALIGN (enumtype
);
7480 TYPE_USER_ALIGN (tem
) = TYPE_USER_ALIGN (enumtype
);
7481 TYPE_UNSIGNED (tem
) = TYPE_UNSIGNED (enumtype
);
7482 TYPE_LANG_SPECIFIC (tem
) = TYPE_LANG_SPECIFIC (enumtype
);
7485 /* Finish debugging output for this type. */
7486 rest_of_type_compilation (enumtype
, toplevel
);
7488 /* If this enum is defined inside a struct, add it to
7491 && struct_parse_info
!= NULL
7492 && !in_sizeof
&& !in_typeof
&& !in_alignof
)
7493 VEC_safe_push (tree
, heap
, struct_parse_info
->struct_types
, enumtype
);
7498 /* Build and install a CONST_DECL for one value of the
7499 current enumeration type (one that was begun with start_enum).
7500 DECL_LOC is the location of the enumerator.
7501 LOC is the location of the '=' operator if any, DECL_LOC otherwise.
7502 Return a tree-list containing the CONST_DECL and its value.
7503 Assignment of sequential values by default is handled here. */
7506 build_enumerator (location_t decl_loc
, location_t loc
,
7507 struct c_enum_contents
*the_enum
, tree name
, tree value
)
7511 /* Validate and default VALUE. */
7515 /* Don't issue more errors for error_mark_node (i.e. an
7516 undeclared identifier) - just ignore the value expression. */
7517 if (value
== error_mark_node
)
7519 else if (!INTEGRAL_TYPE_P (TREE_TYPE (value
)))
7521 error_at (loc
, "enumerator value for %qE is not an integer constant",
7527 if (TREE_CODE (value
) != INTEGER_CST
)
7529 value
= c_fully_fold (value
, false, NULL
);
7530 if (TREE_CODE (value
) == INTEGER_CST
)
7531 pedwarn (loc
, OPT_pedantic
,
7532 "enumerator value for %qE is not an integer "
7533 "constant expression", name
);
7535 if (TREE_CODE (value
) != INTEGER_CST
)
7537 error ("enumerator value for %qE is not an integer constant",
7543 value
= default_conversion (value
);
7544 constant_expression_warning (value
);
7549 /* Default based on previous value. */
7550 /* It should no longer be possible to have NON_LVALUE_EXPR
7554 value
= the_enum
->enum_next_value
;
7555 if (the_enum
->enum_overflow
)
7556 error_at (loc
, "overflow in enumeration values");
7558 /* Even though the underlying type of an enum is unspecified, the
7559 type of enumeration constants is explicitly defined as int
7560 (6.4.4.3/2 in the C99 Standard). GCC allows any integer type as
7562 else if (!int_fits_type_p (value
, integer_type_node
))
7563 pedwarn (loc
, OPT_pedantic
,
7564 "ISO C restricts enumerator values to range of %<int%>");
7566 /* The ISO C Standard mandates enumerators to have type int, even
7567 though the underlying type of an enum type is unspecified.
7568 However, GCC allows enumerators of any integer type as an
7569 extensions. Here we convert any enumerators that fit in an int
7570 to type int, to avoid promotions to unsigned types when comparing
7571 integers with enumerators that fit in the int range. When
7572 -pedantic is given, we would have already warned about those that
7573 don't fit. We have to do this here rather than in finish_enum
7574 because this value may be used to define more enumerators. */
7575 if (int_fits_type_p (value
, integer_type_node
))
7576 value
= convert (integer_type_node
, value
);
7578 /* Set basis for default for next value. */
7579 the_enum
->enum_next_value
7580 = build_binary_op (EXPR_LOC_OR_HERE (value
),
7581 PLUS_EXPR
, value
, integer_one_node
, 0);
7582 the_enum
->enum_overflow
= tree_int_cst_lt (the_enum
->enum_next_value
, value
);
7584 /* Now create a declaration for the enum value name. */
7586 type
= TREE_TYPE (value
);
7587 type
= c_common_type_for_size (MAX (TYPE_PRECISION (type
),
7588 TYPE_PRECISION (integer_type_node
)),
7589 (TYPE_PRECISION (type
)
7590 >= TYPE_PRECISION (integer_type_node
)
7591 && TYPE_UNSIGNED (type
)));
7593 decl
= build_decl (decl_loc
, CONST_DECL
, name
, type
);
7594 DECL_INITIAL (decl
) = convert (type
, value
);
7597 return tree_cons (decl
, value
, NULL_TREE
);
7601 /* Create the FUNCTION_DECL for a function definition.
7602 DECLSPECS, DECLARATOR and ATTRIBUTES are the parts of
7603 the declaration; they describe the function's name and the type it returns,
7604 but twisted together in a fashion that parallels the syntax of C.
7606 This function creates a binding context for the function body
7607 as well as setting up the FUNCTION_DECL in current_function_decl.
7609 Returns 1 on success. If the DECLARATOR is not suitable for a function
7610 (it defines a datum instead), we return 0, which tells
7611 yyparse to report a parse error. */
7614 start_function (struct c_declspecs
*declspecs
, struct c_declarator
*declarator
,
7617 tree decl1
, old_decl
;
7618 tree restype
, resdecl
;
7621 current_function_returns_value
= 0; /* Assume, until we see it does. */
7622 current_function_returns_null
= 0;
7623 current_function_returns_abnormally
= 0;
7624 warn_about_return_type
= 0;
7625 c_switch_stack
= NULL
;
7627 /* Indicate no valid break/continue context by setting these variables
7628 to some non-null, non-label value. We'll notice and emit the proper
7629 error message in c_finish_bc_stmt. */
7630 c_break_label
= c_cont_label
= size_zero_node
;
7632 decl1
= grokdeclarator (declarator
, declspecs
, FUNCDEF
, true, NULL
,
7633 &attributes
, NULL
, NULL
, DEPRECATED_NORMAL
);
7635 /* If the declarator is not suitable for a function definition,
7636 cause a syntax error. */
7640 loc
= DECL_SOURCE_LOCATION (decl1
);
7642 decl_attributes (&decl1
, attributes
, 0);
7644 if (DECL_DECLARED_INLINE_P (decl1
)
7645 && DECL_UNINLINABLE (decl1
)
7646 && lookup_attribute ("noinline", DECL_ATTRIBUTES (decl1
)))
7647 warning_at (loc
, OPT_Wattributes
,
7648 "inline function %qD given attribute noinline",
7651 /* Handle gnu_inline attribute. */
7652 if (declspecs
->inline_p
7653 && !flag_gnu89_inline
7654 && TREE_CODE (decl1
) == FUNCTION_DECL
7655 && (lookup_attribute ("gnu_inline", DECL_ATTRIBUTES (decl1
))
7656 || current_function_decl
))
7658 if (declspecs
->storage_class
!= csc_static
)
7659 DECL_EXTERNAL (decl1
) = !DECL_EXTERNAL (decl1
);
7662 announce_function (decl1
);
7664 if (!COMPLETE_OR_VOID_TYPE_P (TREE_TYPE (TREE_TYPE (decl1
))))
7666 error_at (loc
, "return type is an incomplete type");
7667 /* Make it return void instead. */
7669 = build_function_type (void_type_node
,
7670 TYPE_ARG_TYPES (TREE_TYPE (decl1
)));
7673 if (warn_about_return_type
)
7674 pedwarn_c99 (loc
, flag_isoc99
? 0
7675 : (warn_return_type
? OPT_Wreturn_type
: OPT_Wimplicit_int
),
7676 "return type defaults to %<int%>");
7678 /* Make the init_value nonzero so pushdecl knows this is not tentative.
7679 error_mark_node is replaced below (in pop_scope) with the BLOCK. */
7680 DECL_INITIAL (decl1
) = error_mark_node
;
7682 /* A nested function is not global. */
7683 if (current_function_decl
!= 0)
7684 TREE_PUBLIC (decl1
) = 0;
7686 /* If this definition isn't a prototype and we had a prototype declaration
7687 before, copy the arg type info from that prototype. */
7688 old_decl
= lookup_name_in_scope (DECL_NAME (decl1
), current_scope
);
7689 if (old_decl
&& TREE_CODE (old_decl
) != FUNCTION_DECL
)
7691 current_function_prototype_locus
= UNKNOWN_LOCATION
;
7692 current_function_prototype_built_in
= false;
7693 current_function_prototype_arg_types
= NULL_TREE
;
7694 if (!prototype_p (TREE_TYPE (decl1
)))
7696 if (old_decl
!= 0 && TREE_CODE (TREE_TYPE (old_decl
)) == FUNCTION_TYPE
7697 && comptypes (TREE_TYPE (TREE_TYPE (decl1
)),
7698 TREE_TYPE (TREE_TYPE (old_decl
))))
7700 TREE_TYPE (decl1
) = composite_type (TREE_TYPE (old_decl
),
7702 current_function_prototype_locus
= DECL_SOURCE_LOCATION (old_decl
);
7703 current_function_prototype_built_in
7704 = C_DECL_BUILTIN_PROTOTYPE (old_decl
);
7705 current_function_prototype_arg_types
7706 = TYPE_ARG_TYPES (TREE_TYPE (decl1
));
7708 if (TREE_PUBLIC (decl1
))
7710 /* If there is an external prototype declaration of this
7711 function, record its location but do not copy information
7712 to this decl. This may be an invisible declaration
7713 (built-in or in a scope which has finished) or simply
7714 have more refined argument types than any declaration
7716 struct c_binding
*b
;
7717 for (b
= I_SYMBOL_BINDING (DECL_NAME (decl1
)); b
; b
= b
->shadowed
)
7718 if (B_IN_SCOPE (b
, external_scope
))
7722 tree ext_decl
, ext_type
;
7724 ext_type
= b
->u
.type
? b
->u
.type
: TREE_TYPE (ext_decl
);
7725 if (TREE_CODE (ext_type
) == FUNCTION_TYPE
7726 && comptypes (TREE_TYPE (TREE_TYPE (decl1
)),
7727 TREE_TYPE (ext_type
)))
7729 current_function_prototype_locus
7730 = DECL_SOURCE_LOCATION (ext_decl
);
7731 current_function_prototype_built_in
7732 = C_DECL_BUILTIN_PROTOTYPE (ext_decl
);
7733 current_function_prototype_arg_types
7734 = TYPE_ARG_TYPES (ext_type
);
7740 /* Optionally warn of old-fashioned def with no previous prototype. */
7741 if (warn_strict_prototypes
7742 && old_decl
!= error_mark_node
7743 && !prototype_p (TREE_TYPE (decl1
))
7744 && C_DECL_ISNT_PROTOTYPE (old_decl
))
7745 warning_at (loc
, OPT_Wstrict_prototypes
,
7746 "function declaration isn%'t a prototype");
7747 /* Optionally warn of any global def with no previous prototype. */
7748 else if (warn_missing_prototypes
7749 && old_decl
!= error_mark_node
7750 && TREE_PUBLIC (decl1
)
7751 && !MAIN_NAME_P (DECL_NAME (decl1
))
7752 && C_DECL_ISNT_PROTOTYPE (old_decl
))
7753 warning_at (loc
, OPT_Wmissing_prototypes
,
7754 "no previous prototype for %qD", decl1
);
7755 /* Optionally warn of any def with no previous prototype
7756 if the function has already been used. */
7757 else if (warn_missing_prototypes
7759 && old_decl
!= error_mark_node
7760 && TREE_USED (old_decl
)
7761 && !prototype_p (TREE_TYPE (old_decl
)))
7762 warning_at (loc
, OPT_Wmissing_prototypes
,
7763 "%qD was used with no prototype before its definition", decl1
);
7764 /* Optionally warn of any global def with no previous declaration. */
7765 else if (warn_missing_declarations
7766 && TREE_PUBLIC (decl1
)
7768 && !MAIN_NAME_P (DECL_NAME (decl1
)))
7769 warning_at (loc
, OPT_Wmissing_declarations
,
7770 "no previous declaration for %qD",
7772 /* Optionally warn of any def with no previous declaration
7773 if the function has already been used. */
7774 else if (warn_missing_declarations
7776 && old_decl
!= error_mark_node
7777 && TREE_USED (old_decl
)
7778 && C_DECL_IMPLICIT (old_decl
))
7779 warning_at (loc
, OPT_Wmissing_declarations
,
7780 "%qD was used with no declaration before its definition", decl1
);
7782 /* This function exists in static storage.
7783 (This does not mean `static' in the C sense!) */
7784 TREE_STATIC (decl1
) = 1;
7786 /* This is the earliest point at which we might know the assembler
7787 name of the function. Thus, if it's set before this, die horribly. */
7788 gcc_assert (!DECL_ASSEMBLER_NAME_SET_P (decl1
));
7790 /* If #pragma weak was used, mark the decl weak now. */
7791 if (current_scope
== file_scope
)
7792 maybe_apply_pragma_weak (decl1
);
7794 /* Warn for unlikely, improbable, or stupid declarations of `main'. */
7795 if (warn_main
&& MAIN_NAME_P (DECL_NAME (decl1
)))
7797 if (TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (decl1
)))
7798 != integer_type_node
)
7799 pedwarn (loc
, OPT_Wmain
, "return type of %qD is not %<int%>", decl1
);
7801 check_main_parameter_types (decl1
);
7803 if (!TREE_PUBLIC (decl1
))
7804 pedwarn (loc
, OPT_Wmain
,
7805 "%qD is normally a non-static function", decl1
);
7808 /* Record the decl so that the function name is defined.
7809 If we already have a decl for this name, and it is a FUNCTION_DECL,
7810 use the old decl. */
7812 current_function_decl
= pushdecl (decl1
);
7815 declare_parm_level ();
7817 restype
= TREE_TYPE (TREE_TYPE (current_function_decl
));
7818 resdecl
= build_decl (loc
, RESULT_DECL
, NULL_TREE
, restype
);
7819 DECL_ARTIFICIAL (resdecl
) = 1;
7820 DECL_IGNORED_P (resdecl
) = 1;
7821 DECL_RESULT (current_function_decl
) = resdecl
;
7823 start_fname_decls ();
7828 /* Subroutine of store_parm_decls which handles new-style function
7829 definitions (prototype format). The parms already have decls, so we
7830 need only record them as in effect and complain if any redundant
7831 old-style parm decls were written. */
7833 store_parm_decls_newstyle (tree fndecl
, const struct c_arg_info
*arg_info
)
7839 if (current_scope
->bindings
)
7841 error_at (DECL_SOURCE_LOCATION (fndecl
),
7842 "old-style parameter declarations in prototyped "
7843 "function definition");
7845 /* Get rid of the old-style declarations. */
7849 /* Don't issue this warning for nested functions, and don't issue this
7850 warning if we got here because ARG_INFO_TYPES was error_mark_node
7851 (this happens when a function definition has just an ellipsis in
7852 its parameter list). */
7853 else if (!in_system_header
&& !current_function_scope
7854 && arg_info
->types
!= error_mark_node
)
7855 warning_at (DECL_SOURCE_LOCATION (fndecl
), OPT_Wtraditional
,
7856 "traditional C rejects ISO C style function definitions");
7858 /* Now make all the parameter declarations visible in the function body.
7859 We can bypass most of the grunt work of pushdecl. */
7860 for (decl
= arg_info
->parms
; decl
; decl
= DECL_CHAIN (decl
))
7862 DECL_CONTEXT (decl
) = current_function_decl
;
7863 if (DECL_NAME (decl
))
7865 bind (DECL_NAME (decl
), decl
, current_scope
,
7866 /*invisible=*/false, /*nested=*/false,
7868 if (!TREE_USED (decl
))
7869 warn_if_shadowing (decl
);
7872 error_at (DECL_SOURCE_LOCATION (decl
), "parameter name omitted");
7875 /* Record the parameter list in the function declaration. */
7876 DECL_ARGUMENTS (fndecl
) = arg_info
->parms
;
7878 /* Now make all the ancillary declarations visible, likewise. */
7879 for (decl
= arg_info
->others
; decl
; decl
= DECL_CHAIN (decl
))
7881 DECL_CONTEXT (decl
) = current_function_decl
;
7882 if (DECL_NAME (decl
))
7883 bind (DECL_NAME (decl
), decl
, current_scope
,
7884 /*invisible=*/false,
7885 /*nested=*/(TREE_CODE (decl
) == FUNCTION_DECL
),
7889 /* And all the tag declarations. */
7890 FOR_EACH_VEC_ELT_REVERSE (c_arg_tag
, arg_info
->tags
, ix
, tag
)
7892 bind (tag
->id
, tag
->type
, current_scope
,
7893 /*invisible=*/false, /*nested=*/false, UNKNOWN_LOCATION
);
7896 /* Subroutine of store_parm_decls which handles old-style function
7897 definitions (separate parameter list and declarations). */
7900 store_parm_decls_oldstyle (tree fndecl
, const struct c_arg_info
*arg_info
)
7902 struct c_binding
*b
;
7903 tree parm
, decl
, last
;
7904 tree parmids
= arg_info
->parms
;
7905 struct pointer_set_t
*seen_args
= pointer_set_create ();
7907 if (!in_system_header
)
7908 warning_at (DECL_SOURCE_LOCATION (fndecl
),
7909 OPT_Wold_style_definition
, "old-style function definition");
7911 /* Match each formal parameter name with its declaration. Save each
7912 decl in the appropriate TREE_PURPOSE slot of the parmids chain. */
7913 for (parm
= parmids
; parm
; parm
= TREE_CHAIN (parm
))
7915 if (TREE_VALUE (parm
) == 0)
7917 error_at (DECL_SOURCE_LOCATION (fndecl
),
7918 "parameter name missing from parameter list");
7919 TREE_PURPOSE (parm
) = 0;
7923 b
= I_SYMBOL_BINDING (TREE_VALUE (parm
));
7924 if (b
&& B_IN_CURRENT_SCOPE (b
))
7927 /* Skip erroneous parameters. */
7928 if (decl
== error_mark_node
)
7930 /* If we got something other than a PARM_DECL it is an error. */
7931 if (TREE_CODE (decl
) != PARM_DECL
)
7932 error_at (DECL_SOURCE_LOCATION (decl
),
7933 "%qD declared as a non-parameter", decl
);
7934 /* If the declaration is already marked, we have a duplicate
7935 name. Complain and ignore the duplicate. */
7936 else if (pointer_set_contains (seen_args
, decl
))
7938 error_at (DECL_SOURCE_LOCATION (decl
),
7939 "multiple parameters named %qD", decl
);
7940 TREE_PURPOSE (parm
) = 0;
7943 /* If the declaration says "void", complain and turn it into
7945 else if (VOID_TYPE_P (TREE_TYPE (decl
)))
7947 error_at (DECL_SOURCE_LOCATION (decl
),
7948 "parameter %qD declared with void type", decl
);
7949 TREE_TYPE (decl
) = integer_type_node
;
7950 DECL_ARG_TYPE (decl
) = integer_type_node
;
7951 layout_decl (decl
, 0);
7953 warn_if_shadowing (decl
);
7955 /* If no declaration found, default to int. */
7958 /* FIXME diagnostics: This should be the location of the argument,
7959 not the FNDECL. E.g., for an old-style declaration
7961 int f10(v) { blah; }
7963 We should use the location of the V, not the F10.
7964 Unfortunately, the V is an IDENTIFIER_NODE which has no
7965 location. In the future we need locations for c_arg_info
7968 See gcc.dg/Wshadow-3.c for an example of this problem. */
7969 decl
= build_decl (DECL_SOURCE_LOCATION (fndecl
),
7970 PARM_DECL
, TREE_VALUE (parm
), integer_type_node
);
7971 DECL_ARG_TYPE (decl
) = TREE_TYPE (decl
);
7973 warn_if_shadowing (decl
);
7976 pedwarn (DECL_SOURCE_LOCATION (decl
),
7977 0, "type of %qD defaults to %<int%>", decl
);
7979 warning_at (DECL_SOURCE_LOCATION (decl
),
7980 OPT_Wmissing_parameter_type
,
7981 "type of %qD defaults to %<int%>", decl
);
7984 TREE_PURPOSE (parm
) = decl
;
7985 pointer_set_insert (seen_args
, decl
);
7988 /* Now examine the parms chain for incomplete declarations
7989 and declarations with no corresponding names. */
7991 for (b
= current_scope
->bindings
; b
; b
= b
->prev
)
7994 if (TREE_CODE (parm
) != PARM_DECL
)
7997 if (TREE_TYPE (parm
) != error_mark_node
7998 && !COMPLETE_TYPE_P (TREE_TYPE (parm
)))
8000 error_at (DECL_SOURCE_LOCATION (parm
),
8001 "parameter %qD has incomplete type", parm
);
8002 TREE_TYPE (parm
) = error_mark_node
;
8005 if (!pointer_set_contains (seen_args
, parm
))
8007 error_at (DECL_SOURCE_LOCATION (parm
),
8008 "declaration for parameter %qD but no such parameter",
8011 /* Pretend the parameter was not missing.
8012 This gets us to a standard state and minimizes
8013 further error messages. */
8014 parmids
= chainon (parmids
, tree_cons (parm
, 0, 0));
8018 /* Chain the declarations together in the order of the list of
8019 names. Store that chain in the function decl, replacing the
8020 list of names. Update the current scope to match. */
8021 DECL_ARGUMENTS (fndecl
) = 0;
8023 for (parm
= parmids
; parm
; parm
= TREE_CHAIN (parm
))
8024 if (TREE_PURPOSE (parm
))
8026 if (parm
&& TREE_PURPOSE (parm
))
8028 last
= TREE_PURPOSE (parm
);
8029 DECL_ARGUMENTS (fndecl
) = last
;
8031 for (parm
= TREE_CHAIN (parm
); parm
; parm
= TREE_CHAIN (parm
))
8032 if (TREE_PURPOSE (parm
))
8034 DECL_CHAIN (last
) = TREE_PURPOSE (parm
);
8035 last
= TREE_PURPOSE (parm
);
8037 DECL_CHAIN (last
) = 0;
8040 pointer_set_destroy (seen_args
);
8042 /* If there was a previous prototype,
8043 set the DECL_ARG_TYPE of each argument according to
8044 the type previously specified, and report any mismatches. */
8046 if (current_function_prototype_arg_types
)
8049 for (parm
= DECL_ARGUMENTS (fndecl
),
8050 type
= current_function_prototype_arg_types
;
8051 parm
|| (type
&& TREE_VALUE (type
) != error_mark_node
8052 && (TYPE_MAIN_VARIANT (TREE_VALUE (type
)) != void_type_node
));
8053 parm
= DECL_CHAIN (parm
), type
= TREE_CHAIN (type
))
8055 if (parm
== 0 || type
== 0
8056 || TYPE_MAIN_VARIANT (TREE_VALUE (type
)) == void_type_node
)
8058 if (current_function_prototype_built_in
)
8059 warning_at (DECL_SOURCE_LOCATION (fndecl
),
8060 0, "number of arguments doesn%'t match "
8061 "built-in prototype");
8064 /* FIXME diagnostics: This should be the location of
8065 FNDECL, but there is bug when a prototype is
8066 declared inside function context, but defined
8067 outside of it (e.g., gcc.dg/pr15698-2.c). In
8068 which case FNDECL gets the location of the
8069 prototype, not the definition. */
8070 error_at (input_location
,
8071 "number of arguments doesn%'t match prototype");
8073 error_at (current_function_prototype_locus
,
8074 "prototype declaration");
8078 /* Type for passing arg must be consistent with that
8079 declared for the arg. ISO C says we take the unqualified
8080 type for parameters declared with qualified type. */
8081 if (TREE_TYPE (parm
) != error_mark_node
8082 && TREE_TYPE (type
) != error_mark_node
8083 && !comptypes (TYPE_MAIN_VARIANT (DECL_ARG_TYPE (parm
)),
8084 TYPE_MAIN_VARIANT (TREE_VALUE (type
))))
8086 if (TYPE_MAIN_VARIANT (TREE_TYPE (parm
))
8087 == TYPE_MAIN_VARIANT (TREE_VALUE (type
)))
8089 /* Adjust argument to match prototype. E.g. a previous
8090 `int foo(float);' prototype causes
8091 `int foo(x) float x; {...}' to be treated like
8092 `int foo(float x) {...}'. This is particularly
8093 useful for argument types like uid_t. */
8094 DECL_ARG_TYPE (parm
) = TREE_TYPE (parm
);
8096 if (targetm
.calls
.promote_prototypes (TREE_TYPE (current_function_decl
))
8097 && INTEGRAL_TYPE_P (TREE_TYPE (parm
))
8098 && TYPE_PRECISION (TREE_TYPE (parm
))
8099 < TYPE_PRECISION (integer_type_node
))
8100 DECL_ARG_TYPE (parm
) = integer_type_node
;
8102 /* ??? Is it possible to get here with a
8103 built-in prototype or will it always have
8104 been diagnosed as conflicting with an
8105 old-style definition and discarded? */
8106 if (current_function_prototype_built_in
)
8107 warning_at (DECL_SOURCE_LOCATION (parm
),
8108 OPT_pedantic
, "promoted argument %qD "
8109 "doesn%'t match built-in prototype", parm
);
8112 pedwarn (DECL_SOURCE_LOCATION (parm
),
8113 OPT_pedantic
, "promoted argument %qD "
8114 "doesn%'t match prototype", parm
);
8115 pedwarn (current_function_prototype_locus
, OPT_pedantic
,
8116 "prototype declaration");
8121 if (current_function_prototype_built_in
)
8122 warning_at (DECL_SOURCE_LOCATION (parm
),
8123 0, "argument %qD doesn%'t match "
8124 "built-in prototype", parm
);
8127 error_at (DECL_SOURCE_LOCATION (parm
),
8128 "argument %qD doesn%'t match prototype", parm
);
8129 error_at (current_function_prototype_locus
,
8130 "prototype declaration");
8135 TYPE_ACTUAL_ARG_TYPES (TREE_TYPE (fndecl
)) = 0;
8138 /* Otherwise, create a prototype that would match. */
8142 tree actual
= 0, last
= 0, type
;
8144 for (parm
= DECL_ARGUMENTS (fndecl
); parm
; parm
= DECL_CHAIN (parm
))
8146 type
= tree_cons (NULL_TREE
, DECL_ARG_TYPE (parm
), NULL_TREE
);
8148 TREE_CHAIN (last
) = type
;
8153 type
= tree_cons (NULL_TREE
, void_type_node
, NULL_TREE
);
8155 TREE_CHAIN (last
) = type
;
8159 /* We are going to assign a new value for the TYPE_ACTUAL_ARG_TYPES
8160 of the type of this function, but we need to avoid having this
8161 affect the types of other similarly-typed functions, so we must
8162 first force the generation of an identical (but separate) type
8163 node for the relevant function type. The new node we create
8164 will be a variant of the main variant of the original function
8167 TREE_TYPE (fndecl
) = build_variant_type_copy (TREE_TYPE (fndecl
));
8169 TYPE_ACTUAL_ARG_TYPES (TREE_TYPE (fndecl
)) = actual
;
8173 /* Store parameter declarations passed in ARG_INFO into the current
8174 function declaration. */
8177 store_parm_decls_from (struct c_arg_info
*arg_info
)
8179 current_function_arg_info
= arg_info
;
8180 store_parm_decls ();
8183 /* Store the parameter declarations into the current function declaration.
8184 This is called after parsing the parameter declarations, before
8185 digesting the body of the function.
8187 For an old-style definition, construct a prototype out of the old-style
8188 parameter declarations and inject it into the function's type. */
8191 store_parm_decls (void)
8193 tree fndecl
= current_function_decl
;
8196 /* The argument information block for FNDECL. */
8197 struct c_arg_info
*arg_info
= current_function_arg_info
;
8198 current_function_arg_info
= 0;
8200 /* True if this definition is written with a prototype. Note:
8201 despite C99 6.7.5.3p14, we can *not* treat an empty argument
8202 list in a function definition as equivalent to (void) -- an
8203 empty argument list specifies the function has no parameters,
8204 but only (void) sets up a prototype for future calls. */
8205 proto
= arg_info
->types
!= 0;
8208 store_parm_decls_newstyle (fndecl
, arg_info
);
8210 store_parm_decls_oldstyle (fndecl
, arg_info
);
8212 /* The next call to push_scope will be a function body. */
8214 next_is_function_body
= true;
8216 /* Write a record describing this function definition to the prototypes
8217 file (if requested). */
8219 gen_aux_info_record (fndecl
, 1, 0, proto
);
8221 /* Initialize the RTL code for the function. */
8222 allocate_struct_function (fndecl
, false);
8224 if (warn_unused_local_typedefs
)
8225 cfun
->language
= ggc_alloc_cleared_language_function ();
8227 /* Begin the statement tree for this function. */
8228 DECL_SAVED_TREE (fndecl
) = push_stmt_list ();
8230 /* ??? Insert the contents of the pending sizes list into the function
8231 to be evaluated. The only reason left to have this is
8232 void foo(int n, int array[n++])
8233 because we throw away the array type in favor of a pointer type, and
8234 thus won't naturally see the SAVE_EXPR containing the increment. All
8235 other pending sizes would be handled by gimplify_parameters. */
8236 if (arg_info
->pending_sizes
)
8237 add_stmt (arg_info
->pending_sizes
);
8241 /* Finish up a function declaration and compile that function
8242 all the way to assembler language output. Then free the storage
8243 for the function definition.
8245 This is called after parsing the body of the function definition. */
8248 finish_function (void)
8250 tree fndecl
= current_function_decl
;
8252 if (c_dialect_objc ())
8253 objc_finish_function ();
8255 if (TREE_CODE (fndecl
) == FUNCTION_DECL
8256 && targetm
.calls
.promote_prototypes (TREE_TYPE (fndecl
)))
8258 tree args
= DECL_ARGUMENTS (fndecl
);
8259 for (; args
; args
= DECL_CHAIN (args
))
8261 tree type
= TREE_TYPE (args
);
8262 if (INTEGRAL_TYPE_P (type
)
8263 && TYPE_PRECISION (type
) < TYPE_PRECISION (integer_type_node
))
8264 DECL_ARG_TYPE (args
) = integer_type_node
;
8268 if (DECL_INITIAL (fndecl
) && DECL_INITIAL (fndecl
) != error_mark_node
)
8269 BLOCK_SUPERCONTEXT (DECL_INITIAL (fndecl
)) = fndecl
;
8271 /* Must mark the RESULT_DECL as being in this function. */
8273 if (DECL_RESULT (fndecl
) && DECL_RESULT (fndecl
) != error_mark_node
)
8274 DECL_CONTEXT (DECL_RESULT (fndecl
)) = fndecl
;
8276 if (MAIN_NAME_P (DECL_NAME (fndecl
)) && flag_hosted
8277 && TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (fndecl
)))
8278 == integer_type_node
&& flag_isoc99
)
8280 /* Hack. We don't want the middle-end to warn that this return
8281 is unreachable, so we mark its location as special. Using
8282 UNKNOWN_LOCATION has the problem that it gets clobbered in
8283 annotate_one_with_locus. A cleaner solution might be to
8284 ensure ! should_carry_locus_p (stmt), but that needs a flag.
8286 c_finish_return (BUILTINS_LOCATION
, integer_zero_node
, NULL_TREE
);
8289 /* Tie off the statement tree for this function. */
8290 DECL_SAVED_TREE (fndecl
) = pop_stmt_list (DECL_SAVED_TREE (fndecl
));
8292 finish_fname_decls ();
8294 /* Complain if there's just no return statement. */
8295 if (warn_return_type
8296 && TREE_CODE (TREE_TYPE (TREE_TYPE (fndecl
))) != VOID_TYPE
8297 && !current_function_returns_value
&& !current_function_returns_null
8298 /* Don't complain if we are no-return. */
8299 && !current_function_returns_abnormally
8300 /* Don't complain if we are declared noreturn. */
8301 && !TREE_THIS_VOLATILE (fndecl
)
8302 /* Don't warn for main(). */
8303 && !MAIN_NAME_P (DECL_NAME (fndecl
))
8304 /* Or if they didn't actually specify a return type. */
8305 && !C_FUNCTION_IMPLICIT_INT (fndecl
)
8306 /* Normally, with -Wreturn-type, flow will complain, but we might
8307 optimize out static functions. */
8308 && !TREE_PUBLIC (fndecl
))
8310 warning (OPT_Wreturn_type
,
8311 "no return statement in function returning non-void");
8312 TREE_NO_WARNING (fndecl
) = 1;
8315 /* Complain about parameters that are only set, but never otherwise used. */
8316 if (warn_unused_but_set_parameter
)
8320 for (decl
= DECL_ARGUMENTS (fndecl
);
8322 decl
= DECL_CHAIN (decl
))
8323 if (TREE_USED (decl
)
8324 && TREE_CODE (decl
) == PARM_DECL
8325 && !DECL_READ_P (decl
)
8327 && !DECL_ARTIFICIAL (decl
)
8328 && !TREE_NO_WARNING (decl
))
8329 warning_at (DECL_SOURCE_LOCATION (decl
),
8330 OPT_Wunused_but_set_parameter
,
8331 "parameter %qD set but not used", decl
);
8334 /* Complain about locally defined typedefs that are not used in this
8336 maybe_warn_unused_local_typedefs ();
8338 /* Store the end of the function, so that we get good line number
8339 info for the epilogue. */
8340 cfun
->function_end_locus
= input_location
;
8342 /* Finalize the ELF visibility for the function. */
8343 c_determine_visibility (fndecl
);
8345 /* For GNU C extern inline functions disregard inline limits. */
8346 if (DECL_EXTERNAL (fndecl
)
8347 && DECL_DECLARED_INLINE_P (fndecl
))
8348 DECL_DISREGARD_INLINE_LIMITS (fndecl
) = 1;
8350 /* Genericize before inlining. Delay genericizing nested functions
8351 until their parent function is genericized. Since finalizing
8352 requires GENERIC, delay that as well. */
8354 if (DECL_INITIAL (fndecl
) && DECL_INITIAL (fndecl
) != error_mark_node
8355 && !undef_nested_function
)
8357 if (!decl_function_context (fndecl
))
8359 invoke_plugin_callbacks (PLUGIN_PRE_GENERICIZE
, fndecl
);
8360 c_genericize (fndecl
);
8362 /* ??? Objc emits functions after finalizing the compilation unit.
8363 This should be cleaned up later and this conditional removed. */
8364 if (cgraph_global_info_ready
)
8366 cgraph_add_new_function (fndecl
, false);
8369 cgraph_finalize_function (fndecl
, false);
8373 /* Register this function with cgraph just far enough to get it
8374 added to our parent's nested function list. Handy, since the
8375 C front end doesn't have such a list. */
8376 (void) cgraph_get_create_node (fndecl
);
8380 if (!decl_function_context (fndecl
))
8381 undef_nested_function
= false;
8383 if (cfun
->language
!= NULL
)
8385 ggc_free (cfun
->language
);
8386 cfun
->language
= NULL
;
8389 /* We're leaving the context of this function, so zap cfun.
8390 It's still in DECL_STRUCT_FUNCTION, and we'll restore it in
8391 tree_rest_of_compilation. */
8393 current_function_decl
= NULL
;
8396 /* Check the declarations given in a for-loop for satisfying the C99
8397 constraints. If exactly one such decl is found, return it. LOC is
8398 the location of the opening parenthesis of the for loop. The last
8399 parameter allows you to control the "for loop initial declarations
8400 are only allowed in C99 mode". Normally, you should pass
8401 flag_isoc99 as that parameter. But in some cases (Objective-C
8402 foreach loop, for example) we want to run the checks in this
8403 function even if not in C99 mode, so we allow the caller to turn
8404 off the error about not being in C99 mode.
8408 check_for_loop_decls (location_t loc
, bool turn_off_iso_c99_error
)
8410 struct c_binding
*b
;
8411 tree one_decl
= NULL_TREE
;
8414 if (!turn_off_iso_c99_error
)
8416 static bool hint
= true;
8417 /* If we get here, declarations have been used in a for loop without
8418 the C99 for loop scope. This doesn't make much sense, so don't
8420 error_at (loc
, "%<for%> loop initial declarations "
8421 "are only allowed in C99 mode");
8425 "use option -std=c99 or -std=gnu99 to compile your code");
8430 /* C99 subclause 6.8.5 paragraph 3:
8432 [#3] The declaration part of a for statement shall only
8433 declare identifiers for objects having storage class auto or
8436 It isn't clear whether, in this sentence, "identifiers" binds to
8437 "shall only declare" or to "objects" - that is, whether all identifiers
8438 declared must be identifiers for objects, or whether the restriction
8439 only applies to those that are. (A question on this in comp.std.c
8440 in November 2000 received no answer.) We implement the strictest
8441 interpretation, to avoid creating an extension which later causes
8444 for (b
= current_scope
->bindings
; b
; b
= b
->prev
)
8447 tree decl
= b
->decl
;
8452 switch (TREE_CODE (decl
))
8456 location_t decl_loc
= DECL_SOURCE_LOCATION (decl
);
8457 if (TREE_STATIC (decl
))
8459 "declaration of static variable %qD in %<for%> loop "
8460 "initial declaration", decl
);
8461 else if (DECL_EXTERNAL (decl
))
8463 "declaration of %<extern%> variable %qD in %<for%> loop "
8464 "initial declaration", decl
);
8470 "%<struct %E%> declared in %<for%> loop initial "
8475 "%<union %E%> declared in %<for%> loop initial declaration",
8479 error_at (loc
, "%<enum %E%> declared in %<for%> loop "
8480 "initial declaration", id
);
8483 error_at (loc
, "declaration of non-variable "
8484 "%qD in %<for%> loop initial declaration", decl
);
8491 return n_decls
== 1 ? one_decl
: NULL_TREE
;
8494 /* Save and reinitialize the variables
8495 used during compilation of a C function. */
8498 c_push_function_context (void)
8500 struct language_function
*p
= cfun
->language
;
8501 /* cfun->language might have been already allocated by the use of
8502 -Wunused-local-typedefs. In that case, just re-use it. */
8504 cfun
->language
= p
= ggc_alloc_cleared_language_function ();
8506 p
->base
.x_stmt_tree
= c_stmt_tree
;
8507 c_stmt_tree
.x_cur_stmt_list
8508 = VEC_copy (tree
, gc
, c_stmt_tree
.x_cur_stmt_list
);
8509 p
->x_break_label
= c_break_label
;
8510 p
->x_cont_label
= c_cont_label
;
8511 p
->x_switch_stack
= c_switch_stack
;
8512 p
->arg_info
= current_function_arg_info
;
8513 p
->returns_value
= current_function_returns_value
;
8514 p
->returns_null
= current_function_returns_null
;
8515 p
->returns_abnormally
= current_function_returns_abnormally
;
8516 p
->warn_about_return_type
= warn_about_return_type
;
8518 push_function_context ();
8521 /* Restore the variables used during compilation of a C function. */
8524 c_pop_function_context (void)
8526 struct language_function
*p
;
8528 pop_function_context ();
8530 /* When -Wunused-local-typedefs is in effect, cfun->languages is
8531 used to store data throughout the life time of the current cfun,
8532 So don't deallocate it. */
8533 if (!warn_unused_local_typedefs
)
8534 cfun
->language
= NULL
;
8536 if (DECL_STRUCT_FUNCTION (current_function_decl
) == 0
8537 && DECL_SAVED_TREE (current_function_decl
) == NULL_TREE
)
8539 /* Stop pointing to the local nodes about to be freed. */
8540 /* But DECL_INITIAL must remain nonzero so we know this
8541 was an actual function definition. */
8542 DECL_INITIAL (current_function_decl
) = error_mark_node
;
8543 DECL_ARGUMENTS (current_function_decl
) = 0;
8546 c_stmt_tree
= p
->base
.x_stmt_tree
;
8547 c_break_label
= p
->x_break_label
;
8548 c_cont_label
= p
->x_cont_label
;
8549 c_switch_stack
= p
->x_switch_stack
;
8550 current_function_arg_info
= p
->arg_info
;
8551 current_function_returns_value
= p
->returns_value
;
8552 current_function_returns_null
= p
->returns_null
;
8553 current_function_returns_abnormally
= p
->returns_abnormally
;
8554 warn_about_return_type
= p
->warn_about_return_type
;
8557 /* The functions below are required for functionality of doing
8558 function at once processing in the C front end. Currently these
8559 functions are not called from anywhere in the C front end, but as
8560 these changes continue, that will change. */
8562 /* Returns the stmt_tree (if any) to which statements are currently
8563 being added. If there is no active statement-tree, NULL is
8567 current_stmt_tree (void)
8569 return &c_stmt_tree
;
8572 /* Return the global value of T as a symbol. */
8575 identifier_global_value (tree t
)
8577 struct c_binding
*b
;
8579 for (b
= I_SYMBOL_BINDING (t
); b
; b
= b
->shadowed
)
8580 if (B_IN_FILE_SCOPE (b
) || B_IN_EXTERNAL_SCOPE (b
))
8586 /* In C, the only C-linkage public declaration is at file scope. */
8589 c_linkage_bindings (tree name
)
8591 return identifier_global_value (name
);
8594 /* Record a builtin type for C. If NAME is non-NULL, it is the name used;
8595 otherwise the name is found in ridpointers from RID_INDEX. */
8598 record_builtin_type (enum rid rid_index
, const char *name
, tree type
)
8602 id
= ridpointers
[(int) rid_index
];
8604 id
= get_identifier (name
);
8605 decl
= build_decl (UNKNOWN_LOCATION
, TYPE_DECL
, id
, type
);
8607 if (debug_hooks
->type_decl
)
8608 debug_hooks
->type_decl (decl
, false);
8611 /* Build the void_list_node (void_type_node having been created). */
8613 build_void_list_node (void)
8615 tree t
= build_tree_list (NULL_TREE
, void_type_node
);
8619 /* Return a c_parm structure with the given SPECS, ATTRS and DECLARATOR. */
8622 build_c_parm (struct c_declspecs
*specs
, tree attrs
,
8623 struct c_declarator
*declarator
)
8625 struct c_parm
*ret
= XOBNEW (&parser_obstack
, struct c_parm
);
8628 ret
->declarator
= declarator
;
8632 /* Return a declarator with nested attributes. TARGET is the inner
8633 declarator to which these attributes apply. ATTRS are the
8636 struct c_declarator
*
8637 build_attrs_declarator (tree attrs
, struct c_declarator
*target
)
8639 struct c_declarator
*ret
= XOBNEW (&parser_obstack
, struct c_declarator
);
8640 ret
->kind
= cdk_attrs
;
8641 ret
->declarator
= target
;
8642 ret
->u
.attrs
= attrs
;
8646 /* Return a declarator for a function with arguments specified by ARGS
8647 and return type specified by TARGET. */
8649 struct c_declarator
*
8650 build_function_declarator (struct c_arg_info
*args
,
8651 struct c_declarator
*target
)
8653 struct c_declarator
*ret
= XOBNEW (&parser_obstack
, struct c_declarator
);
8654 ret
->kind
= cdk_function
;
8655 ret
->declarator
= target
;
8656 ret
->u
.arg_info
= args
;
8660 /* Return a declarator for the identifier IDENT (which may be
8661 NULL_TREE for an abstract declarator). */
8663 struct c_declarator
*
8664 build_id_declarator (tree ident
)
8666 struct c_declarator
*ret
= XOBNEW (&parser_obstack
, struct c_declarator
);
8668 ret
->declarator
= 0;
8670 /* Default value - may get reset to a more precise location. */
8671 ret
->id_loc
= input_location
;
8675 /* Return something to represent absolute declarators containing a *.
8676 TARGET is the absolute declarator that the * contains.
8677 TYPE_QUALS_ATTRS is a structure for type qualifiers and attributes
8678 to apply to the pointer type. */
8680 struct c_declarator
*
8681 make_pointer_declarator (struct c_declspecs
*type_quals_attrs
,
8682 struct c_declarator
*target
)
8686 struct c_declarator
*itarget
= target
;
8687 struct c_declarator
*ret
= XOBNEW (&parser_obstack
, struct c_declarator
);
8688 if (type_quals_attrs
)
8690 attrs
= type_quals_attrs
->attrs
;
8691 quals
= quals_from_declspecs (type_quals_attrs
);
8692 if (attrs
!= NULL_TREE
)
8693 itarget
= build_attrs_declarator (attrs
, target
);
8695 ret
->kind
= cdk_pointer
;
8696 ret
->declarator
= itarget
;
8697 ret
->u
.pointer_quals
= quals
;
8701 /* Return a pointer to a structure for an empty list of declaration
8704 struct c_declspecs
*
8705 build_null_declspecs (void)
8707 struct c_declspecs
*ret
= XOBNEW (&parser_obstack
, struct c_declspecs
);
8712 ret
->typespec_word
= cts_none
;
8713 ret
->storage_class
= csc_none
;
8714 ret
->expr_const_operands
= true;
8715 ret
->declspecs_seen_p
= false;
8716 ret
->typespec_kind
= ctsk_none
;
8717 ret
->non_sc_seen_p
= false;
8718 ret
->typedef_p
= false;
8719 ret
->explicit_signed_p
= false;
8720 ret
->deprecated_p
= false;
8721 ret
->default_int_p
= false;
8722 ret
->long_p
= false;
8723 ret
->long_long_p
= false;
8724 ret
->short_p
= false;
8725 ret
->signed_p
= false;
8726 ret
->unsigned_p
= false;
8727 ret
->complex_p
= false;
8728 ret
->inline_p
= false;
8729 ret
->noreturn_p
= false;
8730 ret
->thread_p
= false;
8731 ret
->const_p
= false;
8732 ret
->volatile_p
= false;
8733 ret
->restrict_p
= false;
8734 ret
->saturating_p
= false;
8735 ret
->address_space
= ADDR_SPACE_GENERIC
;
8739 /* Add the address space ADDRSPACE to the declaration specifiers
8740 SPECS, returning SPECS. */
8742 struct c_declspecs
*
8743 declspecs_add_addrspace (struct c_declspecs
*specs
, addr_space_t as
)
8745 specs
->non_sc_seen_p
= true;
8746 specs
->declspecs_seen_p
= true;
8748 if (!ADDR_SPACE_GENERIC_P (specs
->address_space
)
8749 && specs
->address_space
!= as
)
8750 error ("incompatible address space qualifiers %qs and %qs",
8751 c_addr_space_name (as
),
8752 c_addr_space_name (specs
->address_space
));
8754 specs
->address_space
= as
;
8758 /* Add the type qualifier QUAL to the declaration specifiers SPECS,
8761 struct c_declspecs
*
8762 declspecs_add_qual (struct c_declspecs
*specs
, tree qual
)
8766 specs
->non_sc_seen_p
= true;
8767 specs
->declspecs_seen_p
= true;
8768 gcc_assert (TREE_CODE (qual
) == IDENTIFIER_NODE
8769 && C_IS_RESERVED_WORD (qual
));
8770 i
= C_RID_CODE (qual
);
8774 dupe
= specs
->const_p
;
8775 specs
->const_p
= true;
8778 dupe
= specs
->volatile_p
;
8779 specs
->volatile_p
= true;
8782 dupe
= specs
->restrict_p
;
8783 specs
->restrict_p
= true;
8788 if (dupe
&& !flag_isoc99
)
8789 pedwarn (input_location
, OPT_pedantic
, "duplicate %qE", qual
);
8793 /* Add the type specifier TYPE to the declaration specifiers SPECS,
8796 struct c_declspecs
*
8797 declspecs_add_type (location_t loc
, struct c_declspecs
*specs
,
8798 struct c_typespec spec
)
8800 tree type
= spec
.spec
;
8801 specs
->non_sc_seen_p
= true;
8802 specs
->declspecs_seen_p
= true;
8803 specs
->typespec_kind
= spec
.kind
;
8804 if (TREE_DEPRECATED (type
))
8805 specs
->deprecated_p
= true;
8807 /* Handle type specifier keywords. */
8808 if (TREE_CODE (type
) == IDENTIFIER_NODE
8809 && C_IS_RESERVED_WORD (type
)
8810 && C_RID_CODE (type
) != RID_CXX_COMPAT_WARN
)
8812 enum rid i
= C_RID_CODE (type
);
8815 error_at (loc
, "two or more data types in declaration specifiers");
8818 if ((int) i
<= (int) RID_LAST_MODIFIER
)
8820 /* "long", "short", "signed", "unsigned", "_Complex" or "_Sat". */
8825 if (specs
->long_long_p
)
8827 error_at (loc
, "%<long long long%> is too long for GCC");
8832 if (specs
->typespec_word
== cts_double
)
8835 ("both %<long long%> and %<double%> in "
8836 "declaration specifiers"));
8839 pedwarn_c90 (loc
, OPT_Wlong_long
,
8840 "ISO C90 does not support %<long long%>");
8841 specs
->long_long_p
= 1;
8846 ("both %<long%> and %<short%> in "
8847 "declaration specifiers"));
8848 else if (specs
->typespec_word
== cts_void
)
8850 ("both %<long%> and %<void%> in "
8851 "declaration specifiers"));
8852 else if (specs
->typespec_word
== cts_int128
)
8854 ("both %<long%> and %<__int128%> in "
8855 "declaration specifiers"));
8856 else if (specs
->typespec_word
== cts_bool
)
8858 ("both %<long%> and %<_Bool%> in "
8859 "declaration specifiers"));
8860 else if (specs
->typespec_word
== cts_char
)
8862 ("both %<long%> and %<char%> in "
8863 "declaration specifiers"));
8864 else if (specs
->typespec_word
== cts_float
)
8866 ("both %<long%> and %<float%> in "
8867 "declaration specifiers"));
8868 else if (specs
->typespec_word
== cts_dfloat32
)
8870 ("both %<long%> and %<_Decimal32%> in "
8871 "declaration specifiers"));
8872 else if (specs
->typespec_word
== cts_dfloat64
)
8874 ("both %<long%> and %<_Decimal64%> in "
8875 "declaration specifiers"));
8876 else if (specs
->typespec_word
== cts_dfloat128
)
8878 ("both %<long%> and %<_Decimal128%> in "
8879 "declaration specifiers"));
8881 specs
->long_p
= true;
8884 dupe
= specs
->short_p
;
8887 ("both %<long%> and %<short%> in "
8888 "declaration specifiers"));
8889 else if (specs
->typespec_word
== cts_void
)
8891 ("both %<short%> and %<void%> in "
8892 "declaration specifiers"));
8893 else if (specs
->typespec_word
== cts_int128
)
8895 ("both %<short%> and %<__int128%> in "
8896 "declaration specifiers"));
8897 else if (specs
->typespec_word
== cts_bool
)
8899 ("both %<short%> and %<_Bool%> in "
8900 "declaration specifiers"));
8901 else if (specs
->typespec_word
== cts_char
)
8903 ("both %<short%> and %<char%> in "
8904 "declaration specifiers"));
8905 else if (specs
->typespec_word
== cts_float
)
8907 ("both %<short%> and %<float%> in "
8908 "declaration specifiers"));
8909 else if (specs
->typespec_word
== cts_double
)
8911 ("both %<short%> and %<double%> in "
8912 "declaration specifiers"));
8913 else if (specs
->typespec_word
== cts_dfloat32
)
8915 ("both %<short%> and %<_Decimal32%> in "
8916 "declaration specifiers"));
8917 else if (specs
->typespec_word
== cts_dfloat64
)
8919 ("both %<short%> and %<_Decimal64%> in "
8920 "declaration specifiers"));
8921 else if (specs
->typespec_word
== cts_dfloat128
)
8923 ("both %<short%> and %<_Decimal128%> in "
8924 "declaration specifiers"));
8926 specs
->short_p
= true;
8929 dupe
= specs
->signed_p
;
8930 if (specs
->unsigned_p
)
8932 ("both %<signed%> and %<unsigned%> in "
8933 "declaration specifiers"));
8934 else if (specs
->typespec_word
== cts_void
)
8936 ("both %<signed%> and %<void%> in "
8937 "declaration specifiers"));
8938 else if (specs
->typespec_word
== cts_bool
)
8940 ("both %<signed%> and %<_Bool%> in "
8941 "declaration specifiers"));
8942 else if (specs
->typespec_word
== cts_float
)
8944 ("both %<signed%> and %<float%> in "
8945 "declaration specifiers"));
8946 else if (specs
->typespec_word
== cts_double
)
8948 ("both %<signed%> and %<double%> in "
8949 "declaration specifiers"));
8950 else if (specs
->typespec_word
== cts_dfloat32
)
8952 ("both %<signed%> and %<_Decimal32%> in "
8953 "declaration specifiers"));
8954 else if (specs
->typespec_word
== cts_dfloat64
)
8956 ("both %<signed%> and %<_Decimal64%> in "
8957 "declaration specifiers"));
8958 else if (specs
->typespec_word
== cts_dfloat128
)
8960 ("both %<signed%> and %<_Decimal128%> in "
8961 "declaration specifiers"));
8963 specs
->signed_p
= true;
8966 dupe
= specs
->unsigned_p
;
8967 if (specs
->signed_p
)
8969 ("both %<signed%> and %<unsigned%> in "
8970 "declaration specifiers"));
8971 else if (specs
->typespec_word
== cts_void
)
8973 ("both %<unsigned%> and %<void%> in "
8974 "declaration specifiers"));
8975 else if (specs
->typespec_word
== cts_bool
)
8977 ("both %<unsigned%> and %<_Bool%> in "
8978 "declaration specifiers"));
8979 else if (specs
->typespec_word
== cts_float
)
8981 ("both %<unsigned%> and %<float%> in "
8982 "declaration specifiers"));
8983 else if (specs
->typespec_word
== cts_double
)
8985 ("both %<unsigned%> and %<double%> in "
8986 "declaration specifiers"));
8987 else if (specs
->typespec_word
== cts_dfloat32
)
8989 ("both %<unsigned%> and %<_Decimal32%> in "
8990 "declaration specifiers"));
8991 else if (specs
->typespec_word
== cts_dfloat64
)
8993 ("both %<unsigned%> and %<_Decimal64%> in "
8994 "declaration specifiers"));
8995 else if (specs
->typespec_word
== cts_dfloat128
)
8997 ("both %<unsigned%> and %<_Decimal128%> in "
8998 "declaration specifiers"));
9000 specs
->unsigned_p
= true;
9003 dupe
= specs
->complex_p
;
9004 if (!flag_isoc99
&& !in_system_header
)
9005 pedwarn (loc
, OPT_pedantic
,
9006 "ISO C90 does not support complex types");
9007 if (specs
->typespec_word
== cts_void
)
9009 ("both %<complex%> and %<void%> in "
9010 "declaration specifiers"));
9011 else if (specs
->typespec_word
== cts_bool
)
9013 ("both %<complex%> and %<_Bool%> in "
9014 "declaration specifiers"));
9015 else if (specs
->typespec_word
== cts_dfloat32
)
9017 ("both %<complex%> and %<_Decimal32%> in "
9018 "declaration specifiers"));
9019 else if (specs
->typespec_word
== cts_dfloat64
)
9021 ("both %<complex%> and %<_Decimal64%> in "
9022 "declaration specifiers"));
9023 else if (specs
->typespec_word
== cts_dfloat128
)
9025 ("both %<complex%> and %<_Decimal128%> in "
9026 "declaration specifiers"));
9027 else if (specs
->typespec_word
== cts_fract
)
9029 ("both %<complex%> and %<_Fract%> in "
9030 "declaration specifiers"));
9031 else if (specs
->typespec_word
== cts_accum
)
9033 ("both %<complex%> and %<_Accum%> in "
9034 "declaration specifiers"));
9035 else if (specs
->saturating_p
)
9037 ("both %<complex%> and %<_Sat%> in "
9038 "declaration specifiers"));
9040 specs
->complex_p
= true;
9043 dupe
= specs
->saturating_p
;
9044 pedwarn (loc
, OPT_pedantic
,
9045 "ISO C does not support saturating types");
9046 if (specs
->typespec_word
== cts_int128
)
9049 ("both %<_Sat%> and %<__int128%> in "
9050 "declaration specifiers"));
9052 else if (specs
->typespec_word
== cts_void
)
9054 ("both %<_Sat%> and %<void%> in "
9055 "declaration specifiers"));
9056 else if (specs
->typespec_word
== cts_bool
)
9058 ("both %<_Sat%> and %<_Bool%> in "
9059 "declaration specifiers"));
9060 else if (specs
->typespec_word
== cts_char
)
9062 ("both %<_Sat%> and %<char%> in "
9063 "declaration specifiers"));
9064 else if (specs
->typespec_word
== cts_int
)
9066 ("both %<_Sat%> and %<int%> in "
9067 "declaration specifiers"));
9068 else if (specs
->typespec_word
== cts_float
)
9070 ("both %<_Sat%> and %<float%> in "
9071 "declaration specifiers"));
9072 else if (specs
->typespec_word
== cts_double
)
9074 ("both %<_Sat%> and %<double%> in "
9075 "declaration specifiers"));
9076 else if (specs
->typespec_word
== cts_dfloat32
)
9078 ("both %<_Sat%> and %<_Decimal32%> in "
9079 "declaration specifiers"));
9080 else if (specs
->typespec_word
== cts_dfloat64
)
9082 ("both %<_Sat%> and %<_Decimal64%> in "
9083 "declaration specifiers"));
9084 else if (specs
->typespec_word
== cts_dfloat128
)
9086 ("both %<_Sat%> and %<_Decimal128%> in "
9087 "declaration specifiers"));
9088 else if (specs
->complex_p
)
9090 ("both %<_Sat%> and %<complex%> in "
9091 "declaration specifiers"));
9093 specs
->saturating_p
= true;
9100 error_at (loc
, "duplicate %qE", type
);
9106 /* "void", "_Bool", "char", "int", "float", "double", "_Decimal32",
9107 "__int128", "_Decimal64", "_Decimal128", "_Fract" or "_Accum". */
9108 if (specs
->typespec_word
!= cts_none
)
9111 "two or more data types in declaration specifiers");
9117 if (int128_integer_type_node
== NULL_TREE
)
9119 error_at (loc
, "%<__int128%> is not supported for this target");
9122 if (!in_system_header
)
9123 pedwarn (loc
, OPT_pedantic
,
9124 "ISO C does not support %<__int128%> type");
9128 ("both %<__int128%> and %<long%> in "
9129 "declaration specifiers"));
9130 else if (specs
->saturating_p
)
9132 ("both %<_Sat%> and %<__int128%> in "
9133 "declaration specifiers"));
9134 else if (specs
->short_p
)
9136 ("both %<__int128%> and %<short%> in "
9137 "declaration specifiers"));
9139 specs
->typespec_word
= cts_int128
;
9144 ("both %<long%> and %<void%> in "
9145 "declaration specifiers"));
9146 else if (specs
->short_p
)
9148 ("both %<short%> and %<void%> in "
9149 "declaration specifiers"));
9150 else if (specs
->signed_p
)
9152 ("both %<signed%> and %<void%> in "
9153 "declaration specifiers"));
9154 else if (specs
->unsigned_p
)
9156 ("both %<unsigned%> and %<void%> in "
9157 "declaration specifiers"));
9158 else if (specs
->complex_p
)
9160 ("both %<complex%> and %<void%> in "
9161 "declaration specifiers"));
9162 else if (specs
->saturating_p
)
9164 ("both %<_Sat%> and %<void%> in "
9165 "declaration specifiers"));
9167 specs
->typespec_word
= cts_void
;
9172 ("both %<long%> and %<_Bool%> in "
9173 "declaration specifiers"));
9174 else if (specs
->short_p
)
9176 ("both %<short%> and %<_Bool%> in "
9177 "declaration specifiers"));
9178 else if (specs
->signed_p
)
9180 ("both %<signed%> and %<_Bool%> in "
9181 "declaration specifiers"));
9182 else if (specs
->unsigned_p
)
9184 ("both %<unsigned%> and %<_Bool%> in "
9185 "declaration specifiers"));
9186 else if (specs
->complex_p
)
9188 ("both %<complex%> and %<_Bool%> in "
9189 "declaration specifiers"));
9190 else if (specs
->saturating_p
)
9192 ("both %<_Sat%> and %<_Bool%> in "
9193 "declaration specifiers"));
9195 specs
->typespec_word
= cts_bool
;
9200 ("both %<long%> and %<char%> in "
9201 "declaration specifiers"));
9202 else if (specs
->short_p
)
9204 ("both %<short%> and %<char%> in "
9205 "declaration specifiers"));
9206 else if (specs
->saturating_p
)
9208 ("both %<_Sat%> and %<char%> in "
9209 "declaration specifiers"));
9211 specs
->typespec_word
= cts_char
;
9214 if (specs
->saturating_p
)
9216 ("both %<_Sat%> and %<int%> in "
9217 "declaration specifiers"));
9219 specs
->typespec_word
= cts_int
;
9224 ("both %<long%> and %<float%> in "
9225 "declaration specifiers"));
9226 else if (specs
->short_p
)
9228 ("both %<short%> and %<float%> in "
9229 "declaration specifiers"));
9230 else if (specs
->signed_p
)
9232 ("both %<signed%> and %<float%> in "
9233 "declaration specifiers"));
9234 else if (specs
->unsigned_p
)
9236 ("both %<unsigned%> and %<float%> in "
9237 "declaration specifiers"));
9238 else if (specs
->saturating_p
)
9240 ("both %<_Sat%> and %<float%> in "
9241 "declaration specifiers"));
9243 specs
->typespec_word
= cts_float
;
9246 if (specs
->long_long_p
)
9248 ("both %<long long%> and %<double%> in "
9249 "declaration specifiers"));
9250 else if (specs
->short_p
)
9252 ("both %<short%> and %<double%> in "
9253 "declaration specifiers"));
9254 else if (specs
->signed_p
)
9256 ("both %<signed%> and %<double%> in "
9257 "declaration specifiers"));
9258 else if (specs
->unsigned_p
)
9260 ("both %<unsigned%> and %<double%> in "
9261 "declaration specifiers"));
9262 else if (specs
->saturating_p
)
9264 ("both %<_Sat%> and %<double%> in "
9265 "declaration specifiers"));
9267 specs
->typespec_word
= cts_double
;
9274 if (i
== RID_DFLOAT32
)
9276 else if (i
== RID_DFLOAT64
)
9279 str
= "_Decimal128";
9280 if (specs
->long_long_p
)
9282 ("both %<long long%> and %<%s%> in "
9283 "declaration specifiers"),
9287 ("both %<long%> and %<%s%> in "
9288 "declaration specifiers"),
9290 else if (specs
->short_p
)
9292 ("both %<short%> and %<%s%> in "
9293 "declaration specifiers"),
9295 else if (specs
->signed_p
)
9297 ("both %<signed%> and %<%s%> in "
9298 "declaration specifiers"),
9300 else if (specs
->unsigned_p
)
9302 ("both %<unsigned%> and %<%s%> in "
9303 "declaration specifiers"),
9305 else if (specs
->complex_p
)
9307 ("both %<complex%> and %<%s%> in "
9308 "declaration specifiers"),
9310 else if (specs
->saturating_p
)
9312 ("both %<_Sat%> and %<%s%> in "
9313 "declaration specifiers"),
9315 else if (i
== RID_DFLOAT32
)
9316 specs
->typespec_word
= cts_dfloat32
;
9317 else if (i
== RID_DFLOAT64
)
9318 specs
->typespec_word
= cts_dfloat64
;
9320 specs
->typespec_word
= cts_dfloat128
;
9322 if (!targetm
.decimal_float_supported_p ())
9324 ("decimal floating point not supported "
9325 "for this target"));
9326 pedwarn (loc
, OPT_pedantic
,
9327 "ISO C does not support decimal floating point");
9337 if (specs
->complex_p
)
9339 ("both %<complex%> and %<%s%> in "
9340 "declaration specifiers"),
9342 else if (i
== RID_FRACT
)
9343 specs
->typespec_word
= cts_fract
;
9345 specs
->typespec_word
= cts_accum
;
9347 if (!targetm
.fixed_point_supported_p ())
9349 "fixed-point types not supported for this target");
9350 pedwarn (loc
, OPT_pedantic
,
9351 "ISO C does not support fixed-point types");
9354 /* ObjC reserved word "id", handled below. */
9360 /* Now we have a typedef (a TYPE_DECL node), an identifier (some
9361 form of ObjC type, cases such as "int" and "long" being handled
9362 above), a TYPE (struct, union, enum and typeof specifiers) or an
9363 ERROR_MARK. In none of these cases may there have previously
9364 been any type specifiers. */
9365 if (specs
->type
|| specs
->typespec_word
!= cts_none
9366 || specs
->long_p
|| specs
->short_p
|| specs
->signed_p
9367 || specs
->unsigned_p
|| specs
->complex_p
)
9368 error_at (loc
, "two or more data types in declaration specifiers");
9369 else if (TREE_CODE (type
) == TYPE_DECL
)
9371 if (TREE_TYPE (type
) == error_mark_node
)
9372 ; /* Allow the type to default to int to avoid cascading errors. */
9375 specs
->type
= TREE_TYPE (type
);
9376 specs
->decl_attr
= DECL_ATTRIBUTES (type
);
9377 specs
->typedef_p
= true;
9378 specs
->explicit_signed_p
= C_TYPEDEF_EXPLICITLY_SIGNED (type
);
9380 /* If this typedef name is defined in a struct, then a C++
9381 lookup would return a different value. */
9383 && I_SYMBOL_BINDING (DECL_NAME (type
))->in_struct
)
9384 warning_at (loc
, OPT_Wc___compat
,
9385 "C++ lookup of %qD would return a field, not a type",
9388 /* If we are parsing a struct, record that a struct field
9390 if (warn_cxx_compat
&& struct_parse_info
!= NULL
)
9391 VEC_safe_push (tree
, heap
, struct_parse_info
->typedefs_seen
, type
);
9394 else if (TREE_CODE (type
) == IDENTIFIER_NODE
)
9396 tree t
= lookup_name (type
);
9397 if (!t
|| TREE_CODE (t
) != TYPE_DECL
)
9398 error_at (loc
, "%qE fails to be a typedef or built in type", type
);
9399 else if (TREE_TYPE (t
) == error_mark_node
)
9402 specs
->type
= TREE_TYPE (t
);
9406 if (TREE_CODE (type
) != ERROR_MARK
&& spec
.kind
== ctsk_typeof
)
9408 specs
->typedef_p
= true;
9412 specs
->expr
= build2 (COMPOUND_EXPR
, TREE_TYPE (spec
.expr
),
9413 specs
->expr
, spec
.expr
);
9415 specs
->expr
= spec
.expr
;
9416 specs
->expr_const_operands
&= spec
.expr_const_operands
;
9425 /* Add the storage class specifier or function specifier SCSPEC to the
9426 declaration specifiers SPECS, returning SPECS. */
9428 struct c_declspecs
*
9429 declspecs_add_scspec (struct c_declspecs
*specs
, tree scspec
)
9432 enum c_storage_class n
= csc_none
;
9434 specs
->declspecs_seen_p
= true;
9435 gcc_assert (TREE_CODE (scspec
) == IDENTIFIER_NODE
9436 && C_IS_RESERVED_WORD (scspec
));
9437 i
= C_RID_CODE (scspec
);
9438 if (specs
->non_sc_seen_p
)
9439 warning (OPT_Wold_style_declaration
,
9440 "%qE is not at beginning of declaration", scspec
);
9444 /* C99 permits duplicate inline. Although of doubtful utility,
9445 it seems simplest to permit it in gnu89 mode as well, as
9446 there is also little utility in maintaining this as a
9447 difference between gnu89 and C99 inline. */
9449 specs
->inline_p
= true;
9452 /* Duplicate _Noreturn is permitted. */
9454 specs
->noreturn_p
= true;
9457 dupe
= specs
->thread_p
;
9458 if (specs
->storage_class
== csc_auto
)
9459 error ("%<__thread%> used with %<auto%>");
9460 else if (specs
->storage_class
== csc_register
)
9461 error ("%<__thread%> used with %<register%>");
9462 else if (specs
->storage_class
== csc_typedef
)
9463 error ("%<__thread%> used with %<typedef%>");
9465 specs
->thread_p
= true;
9472 /* Diagnose "__thread extern". */
9473 if (specs
->thread_p
)
9474 error ("%<__thread%> before %<extern%>");
9481 /* Diagnose "__thread static". */
9482 if (specs
->thread_p
)
9483 error ("%<__thread%> before %<static%>");
9491 if (n
!= csc_none
&& n
== specs
->storage_class
)
9494 error ("duplicate %qE", scspec
);
9497 if (specs
->storage_class
!= csc_none
&& n
!= specs
->storage_class
)
9499 error ("multiple storage classes in declaration specifiers");
9503 specs
->storage_class
= n
;
9504 if (n
!= csc_extern
&& n
!= csc_static
&& specs
->thread_p
)
9506 error ("%<__thread%> used with %qE", scspec
);
9507 specs
->thread_p
= false;
9514 /* Add the attributes ATTRS to the declaration specifiers SPECS,
9517 struct c_declspecs
*
9518 declspecs_add_attrs (struct c_declspecs
*specs
, tree attrs
)
9520 specs
->attrs
= chainon (attrs
, specs
->attrs
);
9521 specs
->declspecs_seen_p
= true;
9525 /* Combine "long", "short", "signed", "unsigned" and "_Complex" type
9526 specifiers with any other type specifier to determine the resulting
9527 type. This is where ISO C checks on complex types are made, since
9528 "_Complex long" is a prefix of the valid ISO C type "_Complex long
9531 struct c_declspecs
*
9532 finish_declspecs (struct c_declspecs
*specs
)
9534 /* If a type was specified as a whole, we have no modifiers and are
9536 if (specs
->type
!= NULL_TREE
)
9538 gcc_assert (!specs
->long_p
&& !specs
->long_long_p
&& !specs
->short_p
9539 && !specs
->signed_p
&& !specs
->unsigned_p
9540 && !specs
->complex_p
);
9542 /* Set a dummy type. */
9543 if (TREE_CODE (specs
->type
) == ERROR_MARK
)
9544 specs
->type
= integer_type_node
;
9548 /* If none of "void", "_Bool", "char", "int", "float" or "double"
9549 has been specified, treat it as "int" unless "_Complex" is
9550 present and there are no other specifiers. If we just have
9551 "_Complex", it is equivalent to "_Complex double", but e.g.
9552 "_Complex short" is equivalent to "_Complex short int". */
9553 if (specs
->typespec_word
== cts_none
)
9555 if (specs
->saturating_p
)
9557 error ("%<_Sat%> is used without %<_Fract%> or %<_Accum%>");
9558 if (!targetm
.fixed_point_supported_p ())
9559 error ("fixed-point types not supported for this target");
9560 specs
->typespec_word
= cts_fract
;
9562 else if (specs
->long_p
|| specs
->short_p
9563 || specs
->signed_p
|| specs
->unsigned_p
)
9565 specs
->typespec_word
= cts_int
;
9567 else if (specs
->complex_p
)
9569 specs
->typespec_word
= cts_double
;
9570 pedwarn (input_location
, OPT_pedantic
,
9571 "ISO C does not support plain %<complex%> meaning "
9572 "%<double complex%>");
9576 specs
->typespec_word
= cts_int
;
9577 specs
->default_int_p
= true;
9578 /* We don't diagnose this here because grokdeclarator will
9579 give more specific diagnostics according to whether it is
9580 a function definition. */
9584 /* If "signed" was specified, record this to distinguish "int" and
9585 "signed int" in the case of a bit-field with
9586 -funsigned-bitfields. */
9587 specs
->explicit_signed_p
= specs
->signed_p
;
9589 /* Now compute the actual type. */
9590 switch (specs
->typespec_word
)
9593 gcc_assert (!specs
->long_p
&& !specs
->short_p
9594 && !specs
->signed_p
&& !specs
->unsigned_p
9595 && !specs
->complex_p
);
9596 specs
->type
= void_type_node
;
9599 gcc_assert (!specs
->long_p
&& !specs
->short_p
9600 && !specs
->signed_p
&& !specs
->unsigned_p
9601 && !specs
->complex_p
);
9602 specs
->type
= boolean_type_node
;
9605 gcc_assert (!specs
->long_p
&& !specs
->short_p
);
9606 gcc_assert (!(specs
->signed_p
&& specs
->unsigned_p
));
9607 if (specs
->signed_p
)
9608 specs
->type
= signed_char_type_node
;
9609 else if (specs
->unsigned_p
)
9610 specs
->type
= unsigned_char_type_node
;
9612 specs
->type
= char_type_node
;
9613 if (specs
->complex_p
)
9615 pedwarn (input_location
, OPT_pedantic
,
9616 "ISO C does not support complex integer types");
9617 specs
->type
= build_complex_type (specs
->type
);
9621 gcc_assert (!specs
->long_p
&& !specs
->short_p
&& !specs
->long_long_p
);
9622 gcc_assert (!(specs
->signed_p
&& specs
->unsigned_p
));
9623 specs
->type
= (specs
->unsigned_p
9624 ? int128_unsigned_type_node
9625 : int128_integer_type_node
);
9626 if (specs
->complex_p
)
9628 pedwarn (input_location
, OPT_pedantic
,
9629 "ISO C does not support complex integer types");
9630 specs
->type
= build_complex_type (specs
->type
);
9634 gcc_assert (!(specs
->long_p
&& specs
->short_p
));
9635 gcc_assert (!(specs
->signed_p
&& specs
->unsigned_p
));
9636 if (specs
->long_long_p
)
9637 specs
->type
= (specs
->unsigned_p
9638 ? long_long_unsigned_type_node
9639 : long_long_integer_type_node
);
9640 else if (specs
->long_p
)
9641 specs
->type
= (specs
->unsigned_p
9642 ? long_unsigned_type_node
9643 : long_integer_type_node
);
9644 else if (specs
->short_p
)
9645 specs
->type
= (specs
->unsigned_p
9646 ? short_unsigned_type_node
9647 : short_integer_type_node
);
9649 specs
->type
= (specs
->unsigned_p
9650 ? unsigned_type_node
9651 : integer_type_node
);
9652 if (specs
->complex_p
)
9654 pedwarn (input_location
, OPT_pedantic
,
9655 "ISO C does not support complex integer types");
9656 specs
->type
= build_complex_type (specs
->type
);
9660 gcc_assert (!specs
->long_p
&& !specs
->short_p
9661 && !specs
->signed_p
&& !specs
->unsigned_p
);
9662 specs
->type
= (specs
->complex_p
9663 ? complex_float_type_node
9667 gcc_assert (!specs
->long_long_p
&& !specs
->short_p
9668 && !specs
->signed_p
&& !specs
->unsigned_p
);
9671 specs
->type
= (specs
->complex_p
9672 ? complex_long_double_type_node
9673 : long_double_type_node
);
9677 specs
->type
= (specs
->complex_p
9678 ? complex_double_type_node
9679 : double_type_node
);
9685 gcc_assert (!specs
->long_p
&& !specs
->long_long_p
&& !specs
->short_p
9686 && !specs
->signed_p
&& !specs
->unsigned_p
&& !specs
->complex_p
);
9687 if (specs
->typespec_word
== cts_dfloat32
)
9688 specs
->type
= dfloat32_type_node
;
9689 else if (specs
->typespec_word
== cts_dfloat64
)
9690 specs
->type
= dfloat64_type_node
;
9692 specs
->type
= dfloat128_type_node
;
9695 gcc_assert (!specs
->complex_p
);
9696 if (!targetm
.fixed_point_supported_p ())
9697 specs
->type
= integer_type_node
;
9698 else if (specs
->saturating_p
)
9700 if (specs
->long_long_p
)
9701 specs
->type
= specs
->unsigned_p
9702 ? sat_unsigned_long_long_fract_type_node
9703 : sat_long_long_fract_type_node
;
9704 else if (specs
->long_p
)
9705 specs
->type
= specs
->unsigned_p
9706 ? sat_unsigned_long_fract_type_node
9707 : sat_long_fract_type_node
;
9708 else if (specs
->short_p
)
9709 specs
->type
= specs
->unsigned_p
9710 ? sat_unsigned_short_fract_type_node
9711 : sat_short_fract_type_node
;
9713 specs
->type
= specs
->unsigned_p
9714 ? sat_unsigned_fract_type_node
9715 : sat_fract_type_node
;
9719 if (specs
->long_long_p
)
9720 specs
->type
= specs
->unsigned_p
9721 ? unsigned_long_long_fract_type_node
9722 : long_long_fract_type_node
;
9723 else if (specs
->long_p
)
9724 specs
->type
= specs
->unsigned_p
9725 ? unsigned_long_fract_type_node
9726 : long_fract_type_node
;
9727 else if (specs
->short_p
)
9728 specs
->type
= specs
->unsigned_p
9729 ? unsigned_short_fract_type_node
9730 : short_fract_type_node
;
9732 specs
->type
= specs
->unsigned_p
9733 ? unsigned_fract_type_node
9738 gcc_assert (!specs
->complex_p
);
9739 if (!targetm
.fixed_point_supported_p ())
9740 specs
->type
= integer_type_node
;
9741 else if (specs
->saturating_p
)
9743 if (specs
->long_long_p
)
9744 specs
->type
= specs
->unsigned_p
9745 ? sat_unsigned_long_long_accum_type_node
9746 : sat_long_long_accum_type_node
;
9747 else if (specs
->long_p
)
9748 specs
->type
= specs
->unsigned_p
9749 ? sat_unsigned_long_accum_type_node
9750 : sat_long_accum_type_node
;
9751 else if (specs
->short_p
)
9752 specs
->type
= specs
->unsigned_p
9753 ? sat_unsigned_short_accum_type_node
9754 : sat_short_accum_type_node
;
9756 specs
->type
= specs
->unsigned_p
9757 ? sat_unsigned_accum_type_node
9758 : sat_accum_type_node
;
9762 if (specs
->long_long_p
)
9763 specs
->type
= specs
->unsigned_p
9764 ? unsigned_long_long_accum_type_node
9765 : long_long_accum_type_node
;
9766 else if (specs
->long_p
)
9767 specs
->type
= specs
->unsigned_p
9768 ? unsigned_long_accum_type_node
9769 : long_accum_type_node
;
9770 else if (specs
->short_p
)
9771 specs
->type
= specs
->unsigned_p
9772 ? unsigned_short_accum_type_node
9773 : short_accum_type_node
;
9775 specs
->type
= specs
->unsigned_p
9776 ? unsigned_accum_type_node
9787 /* A subroutine of c_write_global_declarations. Perform final processing
9788 on one file scope's declarations (or the external scope's declarations),
9792 c_write_global_declarations_1 (tree globals
)
9797 /* Process the decls in the order they were written. */
9798 for (decl
= globals
; decl
; decl
= DECL_CHAIN (decl
))
9800 /* Check for used but undefined static functions using the C
9801 standard's definition of "used", and set TREE_NO_WARNING so
9802 that check_global_declarations doesn't repeat the check. */
9803 if (TREE_CODE (decl
) == FUNCTION_DECL
9804 && DECL_INITIAL (decl
) == 0
9805 && DECL_EXTERNAL (decl
)
9806 && !TREE_PUBLIC (decl
)
9807 && C_DECL_USED (decl
))
9809 pedwarn (input_location
, 0, "%q+F used but never defined", decl
);
9810 TREE_NO_WARNING (decl
) = 1;
9813 wrapup_global_declaration_1 (decl
);
9819 for (decl
= globals
; decl
; decl
= DECL_CHAIN (decl
))
9820 reconsider
|= wrapup_global_declaration_2 (decl
);
9824 for (decl
= globals
; decl
; decl
= DECL_CHAIN (decl
))
9825 check_global_declaration_1 (decl
);
9828 /* A subroutine of c_write_global_declarations Emit debug information for each
9829 of the declarations in GLOBALS. */
9832 c_write_global_declarations_2 (tree globals
)
9836 for (decl
= globals
; decl
; decl
= DECL_CHAIN (decl
))
9837 debug_hooks
->global_decl (decl
);
9840 /* Callback to collect a source_ref from a DECL. */
9843 collect_source_ref_cb (tree decl
)
9845 if (!DECL_IS_BUILTIN (decl
))
9846 collect_source_ref (LOCATION_FILE (decl_sloc (decl
, false)));
9849 /* Collect all references relevant to SOURCE_FILE. */
9852 collect_all_refs (const char *source_file
)
9857 FOR_EACH_VEC_ELT (tree
, all_translation_units
, i
, t
)
9858 collect_ada_nodes (BLOCK_VARS (DECL_INITIAL (t
)), source_file
);
9861 /* Iterate over all global declarations and call CALLBACK. */
9864 for_each_global_decl (void (*callback
) (tree decl
))
9871 FOR_EACH_VEC_ELT (tree
, all_translation_units
, i
, t
)
9873 decls
= DECL_INITIAL (t
);
9874 for (decl
= BLOCK_VARS (decls
); decl
; decl
= TREE_CHAIN (decl
))
9879 /* Preserve the external declarations scope across a garbage collect. */
9880 static GTY(()) tree ext_block
;
9883 c_write_global_declarations (void)
9888 /* We don't want to do this if generating a PCH. */
9892 timevar_start (TV_PHASE_DEFERRED
);
9894 /* Do the Objective-C stuff. This is where all the Objective-C
9895 module stuff gets generated (symtab, class/protocol/selector
9897 if (c_dialect_objc ())
9898 objc_write_global_declarations ();
9900 /* Close the external scope. */
9901 ext_block
= pop_scope ();
9903 gcc_assert (!current_scope
);
9905 /* Handle -fdump-ada-spec[-slim]. */
9906 if (dump_enabled_p (TDI_ada
))
9908 /* Build a table of files to generate specs for */
9909 if (get_dump_file_info (TDI_ada
)->flags
& TDF_SLIM
)
9910 collect_source_ref (main_input_filename
);
9912 for_each_global_decl (collect_source_ref_cb
);
9914 dump_ada_specs (collect_all_refs
, NULL
);
9919 tree tmp
= BLOCK_VARS (ext_block
);
9921 FILE * stream
= dump_begin (TDI_tu
, &flags
);
9924 dump_node (tmp
, flags
& ~TDF_SLIM
, stream
);
9925 dump_end (TDI_tu
, stream
);
9929 /* Process all file scopes in this compilation, and the external_scope,
9930 through wrapup_global_declarations and check_global_declarations. */
9931 FOR_EACH_VEC_ELT (tree
, all_translation_units
, i
, t
)
9932 c_write_global_declarations_1 (BLOCK_VARS (DECL_INITIAL (t
)));
9933 c_write_global_declarations_1 (BLOCK_VARS (ext_block
));
9935 timevar_stop (TV_PHASE_DEFERRED
);
9936 timevar_start (TV_PHASE_CGRAPH
);
9938 /* We're done parsing; proceed to optimize and emit assembly.
9939 FIXME: shouldn't be the front end's responsibility to call this. */
9940 cgraph_finalize_compilation_unit ();
9942 timevar_stop (TV_PHASE_CGRAPH
);
9943 timevar_start (TV_PHASE_DBGINFO
);
9945 /* After cgraph has had a chance to emit everything that's going to
9946 be emitted, output debug information for globals. */
9949 timevar_push (TV_SYMOUT
);
9950 FOR_EACH_VEC_ELT (tree
, all_translation_units
, i
, t
)
9951 c_write_global_declarations_2 (BLOCK_VARS (DECL_INITIAL (t
)));
9952 c_write_global_declarations_2 (BLOCK_VARS (ext_block
));
9953 timevar_pop (TV_SYMOUT
);
9957 timevar_stop (TV_PHASE_DBGINFO
);
9960 /* Register reserved keyword WORD as qualifier for address space AS. */
9963 c_register_addr_space (const char *word
, addr_space_t as
)
9965 int rid
= RID_FIRST_ADDR_SPACE
+ as
;
9968 /* Address space qualifiers are only supported
9969 in C with GNU extensions enabled. */
9970 if (c_dialect_objc () || flag_no_asm
)
9973 id
= get_identifier (word
);
9974 C_SET_RID_CODE (id
, rid
);
9975 C_IS_RESERVED_WORD (id
) = 1;
9976 ridpointers
[rid
] = id
;
9979 #include "gt-c-decl.h"