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 ("TREE_CODE (&%h.generic) == INTEGER_TYPE ? (union lang_tree_node *) TYPE_NEXT_VARIANT (&%h.generic) : CODE_CONTAINS_STRUCT (TREE_CODE (&%h.generic), TS_COMMON) ? ((union lang_tree_node *) TREE_CHAIN (&%h.generic)) : NULL"))) 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 append_to_statement_list_force (t
, &cur_stmt_list
);
560 /* Return true if we will want to say something if a goto statement
564 decl_jump_unsafe (tree decl
)
566 if (decl
== error_mark_node
|| TREE_TYPE (decl
) == error_mark_node
)
569 /* Always warn about crossing variably modified types. */
570 if ((TREE_CODE (decl
) == VAR_DECL
|| TREE_CODE (decl
) == TYPE_DECL
)
571 && variably_modified_type_p (TREE_TYPE (decl
), NULL_TREE
))
574 /* Otherwise, only warn if -Wgoto-misses-init and this is an
575 initialized automatic decl. */
576 if (warn_jump_misses_init
577 && TREE_CODE (decl
) == VAR_DECL
578 && !TREE_STATIC (decl
)
579 && DECL_INITIAL (decl
) != NULL_TREE
)
587 c_print_identifier (FILE *file
, tree node
, int indent
)
589 print_node (file
, "symbol", I_SYMBOL_DECL (node
), indent
+ 4);
590 print_node (file
, "tag", I_TAG_DECL (node
), indent
+ 4);
591 print_node (file
, "label", I_LABEL_DECL (node
), indent
+ 4);
592 if (C_IS_RESERVED_WORD (node
) && C_RID_CODE (node
) != RID_CXX_COMPAT_WARN
)
594 tree rid
= ridpointers
[C_RID_CODE (node
)];
595 indent_to (file
, indent
+ 4);
596 fprintf (file
, "rid " HOST_PTR_PRINTF
" \"%s\"",
597 (void *) rid
, IDENTIFIER_POINTER (rid
));
601 /* Establish a binding between NAME, an IDENTIFIER_NODE, and DECL,
602 which may be any of several kinds of DECL or TYPE or error_mark_node,
603 in the scope SCOPE. */
605 bind (tree name
, tree decl
, struct c_scope
*scope
, bool invisible
,
606 bool nested
, location_t locus
)
608 struct c_binding
*b
, **here
;
610 if (binding_freelist
)
612 b
= binding_freelist
;
613 binding_freelist
= b
->prev
;
616 b
= ggc_alloc_c_binding ();
621 b
->depth
= scope
->depth
;
622 b
->invisible
= invisible
;
630 b
->prev
= scope
->bindings
;
633 if (decl_jump_unsafe (decl
))
634 scope
->has_jump_unsafe_decl
= 1;
639 switch (TREE_CODE (decl
))
641 case LABEL_DECL
: here
= &I_LABEL_BINDING (name
); break;
644 case RECORD_TYPE
: here
= &I_TAG_BINDING (name
); break;
650 case ERROR_MARK
: here
= &I_SYMBOL_BINDING (name
); break;
656 /* Locate the appropriate place in the chain of shadowed decls
657 to insert this binding. Normally, scope == current_scope and
658 this does nothing. */
659 while (*here
&& (*here
)->depth
> scope
->depth
)
660 here
= &(*here
)->shadowed
;
666 /* Clear the binding structure B, stick it on the binding_freelist,
667 and return the former value of b->prev. This is used by pop_scope
668 and get_parm_info to iterate destructively over all the bindings
669 from a given scope. */
670 static struct c_binding
*
671 free_binding_and_advance (struct c_binding
*b
)
673 struct c_binding
*prev
= b
->prev
;
675 memset (b
, 0, sizeof (struct c_binding
));
676 b
->prev
= binding_freelist
;
677 binding_freelist
= b
;
682 /* Bind a label. Like bind, but skip fields which aren't used for
683 labels, and add the LABEL_VARS value. */
685 bind_label (tree name
, tree label
, struct c_scope
*scope
,
686 struct c_label_vars
*label_vars
)
690 bind (name
, label
, scope
, /*invisible=*/false, /*nested=*/false,
693 scope
->has_label_bindings
= true;
696 gcc_assert (b
->decl
== label
);
697 label_vars
->shadowed
= b
->u
.label
;
698 b
->u
.label
= label_vars
;
701 /* Hook called at end of compilation to assume 1 elt
702 for a file-scope tentative array defn that wasn't complete before. */
705 c_finish_incomplete_decl (tree decl
)
707 if (TREE_CODE (decl
) == VAR_DECL
)
709 tree type
= TREE_TYPE (decl
);
710 if (type
!= error_mark_node
711 && TREE_CODE (type
) == ARRAY_TYPE
712 && !DECL_EXTERNAL (decl
)
713 && TYPE_DOMAIN (type
) == 0)
715 warning_at (DECL_SOURCE_LOCATION (decl
),
716 0, "array %q+D assumed to have one element", decl
);
718 complete_array_type (&TREE_TYPE (decl
), NULL_TREE
, true);
720 layout_decl (decl
, 0);
725 /* Record that inline function FUNC contains a reference (location
726 LOC) to static DECL (file-scope or function-local according to
730 record_inline_static (location_t loc
, tree func
, tree decl
,
731 enum c_inline_static_type type
)
733 struct c_inline_static
*csi
= ggc_alloc_c_inline_static ();
735 csi
->function
= func
;
736 csi
->static_decl
= decl
;
738 csi
->next
= c_inline_statics
;
739 c_inline_statics
= csi
;
742 /* Check for references to static declarations in inline functions at
743 the end of the translation unit and diagnose them if the functions
744 are still inline definitions. */
747 check_inline_statics (void)
749 struct c_inline_static
*csi
;
750 for (csi
= c_inline_statics
; csi
; csi
= csi
->next
)
752 if (DECL_EXTERNAL (csi
->function
))
756 pedwarn (csi
->location
, 0,
757 "%qD is static but used in inline function %qD "
758 "which is not static", csi
->static_decl
, csi
->function
);
761 pedwarn (csi
->location
, 0,
762 "%q+D is static but declared in inline function %qD "
763 "which is not static", csi
->static_decl
, csi
->function
);
769 c_inline_statics
= NULL
;
772 /* Fill in a c_spot_bindings structure. If DEFINING is true, set it
773 for the current state, otherwise set it to uninitialized. */
776 set_spot_bindings (struct c_spot_bindings
*p
, bool defining
)
780 p
->scope
= current_scope
;
781 p
->bindings_in_scope
= current_scope
->bindings
;
786 p
->bindings_in_scope
= NULL
;
789 p
->left_stmt_expr
= false;
792 /* Update spot bindings P as we pop out of SCOPE. Return true if we
793 should push decls for a label. */
796 update_spot_bindings (struct c_scope
*scope
, struct c_spot_bindings
*p
)
798 if (p
->scope
!= scope
)
800 /* This label or goto is defined in some other scope, or it is a
801 label which is not yet defined. There is nothing to
806 /* Adjust the spot bindings to refer to the bindings already defined
807 in the enclosing scope. */
808 p
->scope
= scope
->outer
;
809 p
->bindings_in_scope
= p
->scope
->bindings
;
814 /* The Objective-C front-end often needs to determine the current scope. */
817 objc_get_current_scope (void)
819 return current_scope
;
822 /* The following function is used only by Objective-C. It needs to live here
823 because it accesses the innards of c_scope. */
826 objc_mark_locals_volatile (void *enclosing_blk
)
828 struct c_scope
*scope
;
831 for (scope
= current_scope
;
832 scope
&& scope
!= enclosing_blk
;
833 scope
= scope
->outer
)
835 for (b
= scope
->bindings
; b
; b
= b
->prev
)
836 objc_volatilize_decl (b
->decl
);
838 /* Do not climb up past the current function. */
839 if (scope
->function_body
)
844 /* Return true if we are in the global binding level. */
847 global_bindings_p (void)
849 return current_scope
== file_scope
;
853 keep_next_level (void)
855 keep_next_level_flag
= true;
858 /* Set the flag for the FLOAT_CONST_DECIMAL64 pragma being ON. */
861 set_float_const_decimal64 (void)
863 current_scope
->float_const_decimal64
= true;
866 /* Clear the flag for the FLOAT_CONST_DECIMAL64 pragma. */
869 clear_float_const_decimal64 (void)
871 current_scope
->float_const_decimal64
= false;
874 /* Return nonzero if an unsuffixed float constant is _Decimal64. */
877 float_const_decimal64_p (void)
879 return current_scope
->float_const_decimal64
;
882 /* Identify this scope as currently being filled with parameters. */
885 declare_parm_level (void)
887 current_scope
->parm_flag
= true;
893 if (next_is_function_body
)
895 /* This is the transition from the parameters to the top level
896 of the function body. These are the same scope
897 (C99 6.2.1p4,6) so we do not push another scope structure.
898 next_is_function_body is set only by store_parm_decls, which
899 in turn is called when and only when we are about to
900 encounter the opening curly brace for the function body.
902 The outermost block of a function always gets a BLOCK node,
903 because the debugging output routines expect that each
904 function has at least one BLOCK. */
905 current_scope
->parm_flag
= false;
906 current_scope
->function_body
= true;
907 current_scope
->keep
= true;
908 current_scope
->outer_function
= current_function_scope
;
909 current_function_scope
= current_scope
;
911 keep_next_level_flag
= false;
912 next_is_function_body
= false;
914 /* The FLOAT_CONST_DECIMAL64 pragma applies to nested scopes. */
915 if (current_scope
->outer
)
916 current_scope
->float_const_decimal64
917 = current_scope
->outer
->float_const_decimal64
;
919 current_scope
->float_const_decimal64
= false;
923 struct c_scope
*scope
;
926 scope
= scope_freelist
;
927 scope_freelist
= scope
->outer
;
930 scope
= ggc_alloc_cleared_c_scope ();
932 /* The FLOAT_CONST_DECIMAL64 pragma applies to nested scopes. */
934 scope
->float_const_decimal64
= current_scope
->float_const_decimal64
;
936 scope
->float_const_decimal64
= false;
938 scope
->keep
= keep_next_level_flag
;
939 scope
->outer
= current_scope
;
940 scope
->depth
= current_scope
? (current_scope
->depth
+ 1) : 0;
942 /* Check for scope depth overflow. Unlikely (2^28 == 268,435,456) but
944 if (current_scope
&& scope
->depth
== 0)
947 sorry ("GCC supports only %u nested scopes", scope
->depth
);
950 current_scope
= scope
;
951 keep_next_level_flag
= false;
955 /* This is called when we are leaving SCOPE. For each label defined
956 in SCOPE, add any appropriate decls to its decls_in_scope fields.
957 These are the decls whose initialization will be skipped by a goto
958 later in the function. */
961 update_label_decls (struct c_scope
*scope
)
968 if (s
->has_label_bindings
)
972 for (b
= s
->bindings
; b
!= NULL
; b
= b
->prev
)
974 struct c_label_vars
*label_vars
;
975 struct c_binding
*b1
;
978 struct c_goto_bindings
*g
;
980 if (TREE_CODE (b
->decl
) != LABEL_DECL
)
982 label_vars
= b
->u
.label
;
984 b1
= label_vars
->label_bindings
.bindings_in_scope
;
985 if (label_vars
->label_bindings
.scope
== NULL
)
988 hjud
= label_vars
->label_bindings
.scope
->has_jump_unsafe_decl
;
989 if (update_spot_bindings (scope
, &label_vars
->label_bindings
))
991 /* This label is defined in this scope. */
994 for (; b1
!= NULL
; b1
= b1
->prev
)
996 /* A goto from later in the function to this
997 label will never see the initialization
998 of B1, if any. Save it to issue a
999 warning if needed. */
1000 if (decl_jump_unsafe (b1
->decl
))
1001 VEC_safe_push (tree
, gc
,
1002 label_vars
->decls_in_scope
,
1008 /* Update the bindings of any goto statements associated
1010 FOR_EACH_VEC_ELT (c_goto_bindings_p
, label_vars
->gotos
, ix
, g
)
1011 update_spot_bindings (scope
, &g
->goto_bindings
);
1015 /* Don't search beyond the current function. */
1016 if (s
== current_function_scope
)
1023 /* Set the TYPE_CONTEXT of all of TYPE's variants to CONTEXT. */
1026 set_type_context (tree type
, tree context
)
1028 for (type
= TYPE_MAIN_VARIANT (type
); type
;
1029 type
= TYPE_NEXT_VARIANT (type
))
1030 TYPE_CONTEXT (type
) = context
;
1033 /* Exit a scope. Restore the state of the identifier-decl mappings
1034 that were in effect when this scope was entered. Return a BLOCK
1035 node containing all the DECLs in this scope that are of interest
1036 to debug info generation. */
1041 struct c_scope
*scope
= current_scope
;
1042 tree block
, context
, p
;
1043 struct c_binding
*b
;
1045 bool functionbody
= scope
->function_body
;
1046 bool keep
= functionbody
|| scope
->keep
|| scope
->bindings
;
1048 update_label_decls (scope
);
1050 /* If appropriate, create a BLOCK to record the decls for the life
1051 of this function. */
1055 block
= make_node (BLOCK
);
1056 BLOCK_SUBBLOCKS (block
) = scope
->blocks
;
1057 TREE_USED (block
) = 1;
1059 /* In each subblock, record that this is its superior. */
1060 for (p
= scope
->blocks
; p
; p
= BLOCK_CHAIN (p
))
1061 BLOCK_SUPERCONTEXT (p
) = block
;
1063 BLOCK_VARS (block
) = 0;
1066 /* The TYPE_CONTEXTs for all of the tagged types belonging to this
1067 scope must be set so that they point to the appropriate
1068 construct, i.e. either to the current FUNCTION_DECL node, or
1069 else to the BLOCK node we just constructed.
1071 Note that for tagged types whose scope is just the formal
1072 parameter list for some function type specification, we can't
1073 properly set their TYPE_CONTEXTs here, because we don't have a
1074 pointer to the appropriate FUNCTION_TYPE node readily available
1075 to us. For those cases, the TYPE_CONTEXTs of the relevant tagged
1076 type nodes get set in `grokdeclarator' as soon as we have created
1077 the FUNCTION_TYPE node which will represent the "scope" for these
1078 "parameter list local" tagged types. */
1079 if (scope
->function_body
)
1080 context
= current_function_decl
;
1081 else if (scope
== file_scope
)
1083 tree file_decl
= build_translation_unit_decl (NULL_TREE
);
1084 context
= file_decl
;
1089 /* Clear all bindings in this scope. */
1090 for (b
= scope
->bindings
; b
; b
= free_binding_and_advance (b
))
1093 switch (TREE_CODE (p
))
1096 /* Warnings for unused labels, errors for undefined labels. */
1097 if (TREE_USED (p
) && !DECL_INITIAL (p
))
1099 error ("label %q+D used but not defined", p
);
1100 DECL_INITIAL (p
) = error_mark_node
;
1103 warn_for_unused_label (p
);
1105 /* Labels go in BLOCK_VARS. */
1106 DECL_CHAIN (p
) = BLOCK_VARS (block
);
1107 BLOCK_VARS (block
) = p
;
1108 gcc_assert (I_LABEL_BINDING (b
->id
) == b
);
1109 I_LABEL_BINDING (b
->id
) = b
->shadowed
;
1111 /* Also pop back to the shadowed label_vars. */
1112 release_tree_vector (b
->u
.label
->decls_in_scope
);
1113 b
->u
.label
= b
->u
.label
->shadowed
;
1119 set_type_context (p
, context
);
1121 /* Types may not have tag-names, in which case the type
1122 appears in the bindings list with b->id NULL. */
1125 gcc_assert (I_TAG_BINDING (b
->id
) == b
);
1126 I_TAG_BINDING (b
->id
) = b
->shadowed
;
1131 /* Propagate TREE_ADDRESSABLE from nested functions to their
1132 containing functions. */
1133 if (!TREE_ASM_WRITTEN (p
)
1134 && DECL_INITIAL (p
) != 0
1135 && TREE_ADDRESSABLE (p
)
1136 && DECL_ABSTRACT_ORIGIN (p
) != 0
1137 && DECL_ABSTRACT_ORIGIN (p
) != p
)
1138 TREE_ADDRESSABLE (DECL_ABSTRACT_ORIGIN (p
)) = 1;
1139 if (!DECL_EXTERNAL (p
)
1140 && !DECL_INITIAL (p
)
1141 && scope
!= file_scope
1142 && scope
!= external_scope
)
1144 error ("nested function %q+D declared but never defined", p
);
1145 undef_nested_function
= true;
1147 else if (DECL_DECLARED_INLINE_P (p
)
1149 && !DECL_INITIAL (p
))
1151 /* C99 6.7.4p6: "a function with external linkage... declared
1152 with an inline function specifier ... shall also be defined
1153 in the same translation unit." */
1154 if (!flag_gnu89_inline
)
1155 pedwarn (input_location
, 0,
1156 "inline function %q+D declared but never defined", p
);
1157 DECL_EXTERNAL (p
) = 1;
1163 /* Warnings for unused variables. */
1164 if ((!TREE_USED (p
) || !DECL_READ_P (p
))
1165 && !TREE_NO_WARNING (p
)
1166 && !DECL_IN_SYSTEM_HEADER (p
)
1168 && !DECL_ARTIFICIAL (p
)
1169 && scope
!= file_scope
1170 && scope
!= external_scope
)
1173 warning (OPT_Wunused_variable
, "unused variable %q+D", p
);
1174 else if (DECL_CONTEXT (p
) == current_function_decl
)
1175 warning_at (DECL_SOURCE_LOCATION (p
),
1176 OPT_Wunused_but_set_variable
,
1177 "variable %qD set but not used", p
);
1182 error ("type of array %q+D completed incompatibly with"
1183 " implicit initialization", p
);
1190 /* All of these go in BLOCK_VARS, but only if this is the
1191 binding in the home scope. */
1194 DECL_CHAIN (p
) = BLOCK_VARS (block
);
1195 BLOCK_VARS (block
) = p
;
1197 else if (VAR_OR_FUNCTION_DECL_P (p
))
1199 /* For block local externs add a special
1200 DECL_EXTERNAL decl for debug info generation. */
1201 tree extp
= copy_node (p
);
1203 DECL_EXTERNAL (extp
) = 1;
1204 TREE_STATIC (extp
) = 0;
1205 TREE_PUBLIC (extp
) = 1;
1206 DECL_INITIAL (extp
) = NULL_TREE
;
1207 DECL_LANG_SPECIFIC (extp
) = NULL
;
1208 DECL_CONTEXT (extp
) = current_function_decl
;
1209 if (TREE_CODE (p
) == FUNCTION_DECL
)
1211 DECL_RESULT (extp
) = NULL_TREE
;
1212 DECL_SAVED_TREE (extp
) = NULL_TREE
;
1213 DECL_STRUCT_FUNCTION (extp
) = NULL
;
1215 if (b
->locus
!= UNKNOWN_LOCATION
)
1216 DECL_SOURCE_LOCATION (extp
) = b
->locus
;
1217 DECL_CHAIN (extp
) = BLOCK_VARS (block
);
1218 BLOCK_VARS (block
) = extp
;
1220 /* If this is the file scope set DECL_CONTEXT of each decl to
1221 the TRANSLATION_UNIT_DECL. This makes same_translation_unit_p
1223 if (scope
== file_scope
)
1225 DECL_CONTEXT (p
) = context
;
1226 if (TREE_CODE (p
) == TYPE_DECL
1227 && TREE_TYPE (p
) != error_mark_node
)
1228 set_type_context (TREE_TYPE (p
), context
);
1232 /* Parameters go in DECL_ARGUMENTS, not BLOCK_VARS, and have
1233 already been put there by store_parm_decls. Unused-
1234 parameter warnings are handled by function.c.
1235 error_mark_node obviously does not go in BLOCK_VARS and
1236 does not get unused-variable warnings. */
1239 /* It is possible for a decl not to have a name. We get
1240 here with b->id NULL in this case. */
1243 gcc_assert (I_SYMBOL_BINDING (b
->id
) == b
);
1244 I_SYMBOL_BINDING (b
->id
) = b
->shadowed
;
1245 if (b
->shadowed
&& b
->shadowed
->u
.type
)
1246 TREE_TYPE (b
->shadowed
->decl
) = b
->shadowed
->u
.type
;
1256 /* Dispose of the block that we just made inside some higher level. */
1257 if ((scope
->function_body
|| scope
== file_scope
) && context
)
1259 DECL_INITIAL (context
) = block
;
1260 BLOCK_SUPERCONTEXT (block
) = context
;
1262 else if (scope
->outer
)
1265 SCOPE_LIST_APPEND (scope
->outer
, blocks
, block
);
1266 /* If we did not make a block for the scope just exited, any
1267 blocks made for inner scopes must be carried forward so they
1268 will later become subblocks of something else. */
1269 else if (scope
->blocks
)
1270 SCOPE_LIST_CONCAT (scope
->outer
, blocks
, scope
, blocks
);
1273 /* Pop the current scope, and free the structure for reuse. */
1274 current_scope
= scope
->outer
;
1275 if (scope
->function_body
)
1276 current_function_scope
= scope
->outer_function
;
1278 memset (scope
, 0, sizeof (struct c_scope
));
1279 scope
->outer
= scope_freelist
;
1280 scope_freelist
= scope
;
1286 push_file_scope (void)
1294 file_scope
= current_scope
;
1296 start_fname_decls ();
1298 for (decl
= visible_builtins
; decl
; decl
= DECL_CHAIN (decl
))
1299 bind (DECL_NAME (decl
), decl
, file_scope
,
1300 /*invisible=*/false, /*nested=*/true, DECL_SOURCE_LOCATION (decl
));
1304 pop_file_scope (void)
1306 /* In case there were missing closebraces, get us back to the global
1308 while (current_scope
!= file_scope
)
1311 /* __FUNCTION__ is defined at file scope (""). This
1312 call may not be necessary as my tests indicate it
1313 still works without it. */
1314 finish_fname_decls ();
1316 check_inline_statics ();
1318 /* This is the point to write out a PCH if we're doing that.
1319 In that case we do not want to do anything else. */
1322 c_common_write_pch ();
1326 /* Pop off the file scope and close this translation unit. */
1330 maybe_apply_pending_pragma_weaks ();
1333 /* Adjust the bindings for the start of a statement expression. */
1336 c_bindings_start_stmt_expr (struct c_spot_bindings
* switch_bindings
)
1338 struct c_scope
*scope
;
1340 for (scope
= current_scope
; scope
!= NULL
; scope
= scope
->outer
)
1342 struct c_binding
*b
;
1344 if (!scope
->has_label_bindings
)
1347 for (b
= scope
->bindings
; b
!= NULL
; b
= b
->prev
)
1349 struct c_label_vars
*label_vars
;
1351 struct c_goto_bindings
*g
;
1353 if (TREE_CODE (b
->decl
) != LABEL_DECL
)
1355 label_vars
= b
->u
.label
;
1356 ++label_vars
->label_bindings
.stmt_exprs
;
1357 FOR_EACH_VEC_ELT (c_goto_bindings_p
, label_vars
->gotos
, ix
, g
)
1358 ++g
->goto_bindings
.stmt_exprs
;
1362 if (switch_bindings
!= NULL
)
1363 ++switch_bindings
->stmt_exprs
;
1366 /* Adjust the bindings for the end of a statement expression. */
1369 c_bindings_end_stmt_expr (struct c_spot_bindings
*switch_bindings
)
1371 struct c_scope
*scope
;
1373 for (scope
= current_scope
; scope
!= NULL
; scope
= scope
->outer
)
1375 struct c_binding
*b
;
1377 if (!scope
->has_label_bindings
)
1380 for (b
= scope
->bindings
; b
!= NULL
; b
= b
->prev
)
1382 struct c_label_vars
*label_vars
;
1384 struct c_goto_bindings
*g
;
1386 if (TREE_CODE (b
->decl
) != LABEL_DECL
)
1388 label_vars
= b
->u
.label
;
1389 --label_vars
->label_bindings
.stmt_exprs
;
1390 if (label_vars
->label_bindings
.stmt_exprs
< 0)
1392 label_vars
->label_bindings
.left_stmt_expr
= true;
1393 label_vars
->label_bindings
.stmt_exprs
= 0;
1395 FOR_EACH_VEC_ELT (c_goto_bindings_p
, label_vars
->gotos
, ix
, g
)
1397 --g
->goto_bindings
.stmt_exprs
;
1398 if (g
->goto_bindings
.stmt_exprs
< 0)
1400 g
->goto_bindings
.left_stmt_expr
= true;
1401 g
->goto_bindings
.stmt_exprs
= 0;
1407 if (switch_bindings
!= NULL
)
1409 --switch_bindings
->stmt_exprs
;
1410 gcc_assert (switch_bindings
->stmt_exprs
>= 0);
1414 /* Push a definition or a declaration of struct, union or enum tag "name".
1415 "type" should be the type node.
1416 We assume that the tag "name" is not already defined, and has a location
1419 Note that the definition may really be just a forward reference.
1420 In that case, the TYPE_SIZE will be zero. */
1423 pushtag (location_t loc
, tree name
, tree type
)
1425 /* Record the identifier as the type's name if it has none. */
1426 if (name
&& !TYPE_NAME (type
))
1427 TYPE_NAME (type
) = name
;
1428 bind (name
, type
, current_scope
, /*invisible=*/false, /*nested=*/false, loc
);
1430 /* Create a fake NULL-named TYPE_DECL node whose TREE_TYPE will be the
1431 tagged type we just added to the current scope. This fake
1432 NULL-named TYPE_DECL node helps dwarfout.c to know when it needs
1433 to output a representation of a tagged type, and it also gives
1434 us a convenient place to record the "scope start" address for the
1437 TYPE_STUB_DECL (type
) = pushdecl (build_decl (loc
,
1438 TYPE_DECL
, NULL_TREE
, type
));
1440 /* An approximation for now, so we can tell this is a function-scope tag.
1441 This will be updated in pop_scope. */
1442 TYPE_CONTEXT (type
) = DECL_CONTEXT (TYPE_STUB_DECL (type
));
1444 if (warn_cxx_compat
&& name
!= NULL_TREE
)
1446 struct c_binding
*b
= I_SYMBOL_BINDING (name
);
1449 && b
->decl
!= NULL_TREE
1450 && TREE_CODE (b
->decl
) == TYPE_DECL
1451 && (B_IN_CURRENT_SCOPE (b
)
1452 || (current_scope
== file_scope
&& B_IN_EXTERNAL_SCOPE (b
)))
1453 && (TYPE_MAIN_VARIANT (TREE_TYPE (b
->decl
))
1454 != TYPE_MAIN_VARIANT (type
)))
1456 warning_at (loc
, OPT_Wc___compat
,
1457 ("using %qD as both a typedef and a tag is "
1460 if (b
->locus
!= UNKNOWN_LOCATION
)
1461 inform (b
->locus
, "originally defined here");
1466 /* Subroutine of compare_decls. Allow harmless mismatches in return
1467 and argument types provided that the type modes match. This function
1468 return a unified type given a suitable match, and 0 otherwise. */
1471 match_builtin_function_types (tree newtype
, tree oldtype
)
1473 tree newrettype
, oldrettype
;
1474 tree newargs
, oldargs
;
1475 tree trytype
, tryargs
;
1477 /* Accept the return type of the new declaration if same modes. */
1478 oldrettype
= TREE_TYPE (oldtype
);
1479 newrettype
= TREE_TYPE (newtype
);
1481 if (TYPE_MODE (oldrettype
) != TYPE_MODE (newrettype
))
1484 oldargs
= TYPE_ARG_TYPES (oldtype
);
1485 newargs
= TYPE_ARG_TYPES (newtype
);
1488 while (oldargs
|| newargs
)
1492 || !TREE_VALUE (oldargs
)
1493 || !TREE_VALUE (newargs
)
1494 || TYPE_MODE (TREE_VALUE (oldargs
))
1495 != TYPE_MODE (TREE_VALUE (newargs
)))
1498 oldargs
= TREE_CHAIN (oldargs
);
1499 newargs
= TREE_CHAIN (newargs
);
1502 trytype
= build_function_type (newrettype
, tryargs
);
1503 return build_type_attribute_variant (trytype
, TYPE_ATTRIBUTES (oldtype
));
1506 /* Subroutine of diagnose_mismatched_decls. Check for function type
1507 mismatch involving an empty arglist vs a nonempty one and give clearer
1510 diagnose_arglist_conflict (tree newdecl
, tree olddecl
,
1511 tree newtype
, tree oldtype
)
1515 if (TREE_CODE (olddecl
) != FUNCTION_DECL
1516 || !comptypes (TREE_TYPE (oldtype
), TREE_TYPE (newtype
))
1517 || !((!prototype_p (oldtype
) && DECL_INITIAL (olddecl
) == 0)
1518 || (!prototype_p (newtype
) && DECL_INITIAL (newdecl
) == 0)))
1521 t
= TYPE_ARG_TYPES (oldtype
);
1523 t
= TYPE_ARG_TYPES (newtype
);
1524 for (; t
; t
= TREE_CHAIN (t
))
1526 tree type
= TREE_VALUE (t
);
1528 if (TREE_CHAIN (t
) == 0
1529 && TYPE_MAIN_VARIANT (type
) != void_type_node
)
1531 inform (input_location
, "a parameter list with an ellipsis can%'t match "
1532 "an empty parameter name list declaration");
1536 if (c_type_promotes_to (type
) != type
)
1538 inform (input_location
, "an argument type that has a default promotion can%'t match "
1539 "an empty parameter name list declaration");
1545 /* Another subroutine of diagnose_mismatched_decls. OLDDECL is an
1546 old-style function definition, NEWDECL is a prototype declaration.
1547 Diagnose inconsistencies in the argument list. Returns TRUE if
1548 the prototype is compatible, FALSE if not. */
1550 validate_proto_after_old_defn (tree newdecl
, tree newtype
, tree oldtype
)
1552 tree newargs
, oldargs
;
1555 #define END_OF_ARGLIST(t) ((t) == void_type_node)
1557 oldargs
= TYPE_ACTUAL_ARG_TYPES (oldtype
);
1558 newargs
= TYPE_ARG_TYPES (newtype
);
1563 tree oldargtype
= TREE_VALUE (oldargs
);
1564 tree newargtype
= TREE_VALUE (newargs
);
1566 if (oldargtype
== error_mark_node
|| newargtype
== error_mark_node
)
1569 oldargtype
= TYPE_MAIN_VARIANT (oldargtype
);
1570 newargtype
= TYPE_MAIN_VARIANT (newargtype
);
1572 if (END_OF_ARGLIST (oldargtype
) && END_OF_ARGLIST (newargtype
))
1575 /* Reaching the end of just one list means the two decls don't
1576 agree on the number of arguments. */
1577 if (END_OF_ARGLIST (oldargtype
))
1579 error ("prototype for %q+D declares more arguments "
1580 "than previous old-style definition", newdecl
);
1583 else if (END_OF_ARGLIST (newargtype
))
1585 error ("prototype for %q+D declares fewer arguments "
1586 "than previous old-style definition", newdecl
);
1590 /* Type for passing arg must be consistent with that declared
1592 else if (!comptypes (oldargtype
, newargtype
))
1594 error ("prototype for %q+D declares argument %d"
1595 " with incompatible type",
1600 oldargs
= TREE_CHAIN (oldargs
);
1601 newargs
= TREE_CHAIN (newargs
);
1605 /* If we get here, no errors were found, but do issue a warning
1606 for this poor-style construct. */
1607 warning (0, "prototype for %q+D follows non-prototype definition",
1610 #undef END_OF_ARGLIST
1613 /* Subroutine of diagnose_mismatched_decls. Report the location of DECL,
1614 first in a pair of mismatched declarations, using the diagnostic
1617 locate_old_decl (tree decl
)
1619 if (TREE_CODE (decl
) == FUNCTION_DECL
&& DECL_BUILT_IN (decl
))
1621 else if (DECL_INITIAL (decl
))
1622 inform (input_location
, "previous definition of %q+D was here", decl
);
1623 else if (C_DECL_IMPLICIT (decl
))
1624 inform (input_location
, "previous implicit declaration of %q+D was here", decl
);
1626 inform (input_location
, "previous declaration of %q+D was here", decl
);
1629 /* Subroutine of duplicate_decls. Compare NEWDECL to OLDDECL.
1630 Returns true if the caller should proceed to merge the two, false
1631 if OLDDECL should simply be discarded. As a side effect, issues
1632 all necessary diagnostics for invalid or poor-style combinations.
1633 If it returns true, writes the types of NEWDECL and OLDDECL to
1634 *NEWTYPEP and *OLDTYPEP - these may have been adjusted from
1635 TREE_TYPE (NEWDECL, OLDDECL) respectively. */
1638 diagnose_mismatched_decls (tree newdecl
, tree olddecl
,
1639 tree
*newtypep
, tree
*oldtypep
)
1641 tree newtype
, oldtype
;
1642 bool pedwarned
= false;
1643 bool warned
= false;
1646 #define DECL_EXTERN_INLINE(DECL) (DECL_DECLARED_INLINE_P (DECL) \
1647 && DECL_EXTERNAL (DECL))
1649 /* If we have error_mark_node for either decl or type, just discard
1650 the previous decl - we're in an error cascade already. */
1651 if (olddecl
== error_mark_node
|| newdecl
== error_mark_node
)
1653 *oldtypep
= oldtype
= TREE_TYPE (olddecl
);
1654 *newtypep
= newtype
= TREE_TYPE (newdecl
);
1655 if (oldtype
== error_mark_node
|| newtype
== error_mark_node
)
1658 /* Two different categories of symbol altogether. This is an error
1659 unless OLDDECL is a builtin. OLDDECL will be discarded in any case. */
1660 if (TREE_CODE (olddecl
) != TREE_CODE (newdecl
))
1662 if (!(TREE_CODE (olddecl
) == FUNCTION_DECL
1663 && DECL_BUILT_IN (olddecl
)
1664 && !C_DECL_DECLARED_BUILTIN (olddecl
)))
1666 error ("%q+D redeclared as different kind of symbol", newdecl
);
1667 locate_old_decl (olddecl
);
1669 else if (TREE_PUBLIC (newdecl
))
1670 warning (0, "built-in function %q+D declared as non-function",
1673 warning (OPT_Wshadow
, "declaration of %q+D shadows "
1674 "a built-in function", newdecl
);
1678 /* Enumerators have no linkage, so may only be declared once in a
1680 if (TREE_CODE (olddecl
) == CONST_DECL
)
1682 error ("redeclaration of enumerator %q+D", newdecl
);
1683 locate_old_decl (olddecl
);
1687 if (!comptypes (oldtype
, newtype
))
1689 if (TREE_CODE (olddecl
) == FUNCTION_DECL
1690 && DECL_BUILT_IN (olddecl
) && !C_DECL_DECLARED_BUILTIN (olddecl
))
1692 /* Accept harmless mismatch in function types.
1693 This is for the ffs and fprintf builtins. */
1694 tree trytype
= match_builtin_function_types (newtype
, oldtype
);
1696 if (trytype
&& comptypes (newtype
, trytype
))
1697 *oldtypep
= oldtype
= trytype
;
1700 /* If types don't match for a built-in, throw away the
1701 built-in. No point in calling locate_old_decl here, it
1702 won't print anything. */
1703 warning (0, "conflicting types for built-in function %q+D",
1708 else if (TREE_CODE (olddecl
) == FUNCTION_DECL
1709 && DECL_IS_BUILTIN (olddecl
))
1711 /* A conflicting function declaration for a predeclared
1712 function that isn't actually built in. Objective C uses
1713 these. The new declaration silently overrides everything
1714 but the volatility (i.e. noreturn) indication. See also
1715 below. FIXME: Make Objective C use normal builtins. */
1716 TREE_THIS_VOLATILE (newdecl
) |= TREE_THIS_VOLATILE (olddecl
);
1719 /* Permit void foo (...) to match int foo (...) if the latter is
1720 the definition and implicit int was used. See
1721 c-torture/compile/920625-2.c. */
1722 else if (TREE_CODE (newdecl
) == FUNCTION_DECL
&& DECL_INITIAL (newdecl
)
1723 && TYPE_MAIN_VARIANT (TREE_TYPE (oldtype
)) == void_type_node
1724 && TYPE_MAIN_VARIANT (TREE_TYPE (newtype
)) == integer_type_node
1725 && C_FUNCTION_IMPLICIT_INT (newdecl
) && !DECL_INITIAL (olddecl
))
1727 pedwarned
= pedwarn (input_location
, 0,
1728 "conflicting types for %q+D", newdecl
);
1729 /* Make sure we keep void as the return type. */
1730 TREE_TYPE (newdecl
) = *newtypep
= newtype
= oldtype
;
1731 C_FUNCTION_IMPLICIT_INT (newdecl
) = 0;
1733 /* Permit void foo (...) to match an earlier call to foo (...) with
1734 no declared type (thus, implicitly int). */
1735 else if (TREE_CODE (newdecl
) == FUNCTION_DECL
1736 && TYPE_MAIN_VARIANT (TREE_TYPE (newtype
)) == void_type_node
1737 && TYPE_MAIN_VARIANT (TREE_TYPE (oldtype
)) == integer_type_node
1738 && C_DECL_IMPLICIT (olddecl
) && !DECL_INITIAL (olddecl
))
1740 pedwarned
= pedwarn (input_location
, 0,
1741 "conflicting types for %q+D", newdecl
);
1742 /* Make sure we keep void as the return type. */
1743 TREE_TYPE (olddecl
) = *oldtypep
= oldtype
= newtype
;
1747 int new_quals
= TYPE_QUALS (newtype
);
1748 int old_quals
= TYPE_QUALS (oldtype
);
1750 if (new_quals
!= old_quals
)
1752 addr_space_t new_addr
= DECODE_QUAL_ADDR_SPACE (new_quals
);
1753 addr_space_t old_addr
= DECODE_QUAL_ADDR_SPACE (old_quals
);
1754 if (new_addr
!= old_addr
)
1756 if (ADDR_SPACE_GENERIC_P (new_addr
))
1757 error ("conflicting named address spaces (generic vs %s) "
1759 c_addr_space_name (old_addr
), newdecl
);
1760 else if (ADDR_SPACE_GENERIC_P (old_addr
))
1761 error ("conflicting named address spaces (%s vs generic) "
1763 c_addr_space_name (new_addr
), newdecl
);
1765 error ("conflicting named address spaces (%s vs %s) "
1767 c_addr_space_name (new_addr
),
1768 c_addr_space_name (old_addr
),
1772 if (CLEAR_QUAL_ADDR_SPACE (new_quals
)
1773 != CLEAR_QUAL_ADDR_SPACE (old_quals
))
1774 error ("conflicting type qualifiers for %q+D", newdecl
);
1777 error ("conflicting types for %q+D", newdecl
);
1778 diagnose_arglist_conflict (newdecl
, olddecl
, newtype
, oldtype
);
1779 locate_old_decl (olddecl
);
1784 /* Redeclaration of a type is a constraint violation (6.7.2.3p1),
1785 but silently ignore the redeclaration if either is in a system
1786 header. (Conflicting redeclarations were handled above.) This
1787 is allowed for C1X if the types are the same, not just
1789 if (TREE_CODE (newdecl
) == TYPE_DECL
)
1791 bool types_different
= false;
1792 int comptypes_result
;
1795 = comptypes_check_different_types (oldtype
, newtype
, &types_different
);
1797 if (comptypes_result
!= 1 || types_different
)
1799 error ("redefinition of typedef %q+D with different type", newdecl
);
1800 locate_old_decl (olddecl
);
1804 if (DECL_IN_SYSTEM_HEADER (newdecl
)
1805 || DECL_IN_SYSTEM_HEADER (olddecl
)
1806 || TREE_NO_WARNING (newdecl
)
1807 || TREE_NO_WARNING (olddecl
))
1808 return true; /* Allow OLDDECL to continue in use. */
1810 if (variably_modified_type_p (newtype
, NULL
))
1812 error ("redefinition of typedef %q+D with variably modified type",
1814 locate_old_decl (olddecl
);
1816 else if (pedantic
&& !flag_isoc1x
)
1818 pedwarn (input_location
, OPT_pedantic
,
1819 "redefinition of typedef %q+D", newdecl
);
1820 locate_old_decl (olddecl
);
1826 /* Function declarations can either be 'static' or 'extern' (no
1827 qualifier is equivalent to 'extern' - C99 6.2.2p5) and therefore
1828 can never conflict with each other on account of linkage
1829 (6.2.2p4). Multiple definitions are not allowed (6.9p3,5) but
1830 gnu89 mode permits two definitions if one is 'extern inline' and
1831 one is not. The non- extern-inline definition supersedes the
1832 extern-inline definition. */
1834 else if (TREE_CODE (newdecl
) == FUNCTION_DECL
)
1836 /* If you declare a built-in function name as static, or
1837 define the built-in with an old-style definition (so we
1838 can't validate the argument list) the built-in definition is
1839 overridden, but optionally warn this was a bad choice of name. */
1840 if (DECL_BUILT_IN (olddecl
)
1841 && !C_DECL_DECLARED_BUILTIN (olddecl
)
1842 && (!TREE_PUBLIC (newdecl
)
1843 || (DECL_INITIAL (newdecl
)
1844 && !prototype_p (TREE_TYPE (newdecl
)))))
1846 warning (OPT_Wshadow
, "declaration of %q+D shadows "
1847 "a built-in function", newdecl
);
1848 /* Discard the old built-in function. */
1852 if (DECL_INITIAL (newdecl
))
1854 if (DECL_INITIAL (olddecl
))
1856 /* If both decls are in the same TU and the new declaration
1857 isn't overriding an extern inline reject the new decl.
1858 In c99, no overriding is allowed in the same translation
1860 if ((!DECL_EXTERN_INLINE (olddecl
)
1861 || DECL_EXTERN_INLINE (newdecl
)
1862 || (!flag_gnu89_inline
1863 && (!DECL_DECLARED_INLINE_P (olddecl
)
1864 || !lookup_attribute ("gnu_inline",
1865 DECL_ATTRIBUTES (olddecl
)))
1866 && (!DECL_DECLARED_INLINE_P (newdecl
)
1867 || !lookup_attribute ("gnu_inline",
1868 DECL_ATTRIBUTES (newdecl
))))
1870 && same_translation_unit_p (newdecl
, olddecl
))
1872 error ("redefinition of %q+D", newdecl
);
1873 locate_old_decl (olddecl
);
1878 /* If we have a prototype after an old-style function definition,
1879 the argument types must be checked specially. */
1880 else if (DECL_INITIAL (olddecl
)
1881 && !prototype_p (oldtype
) && prototype_p (newtype
)
1882 && TYPE_ACTUAL_ARG_TYPES (oldtype
)
1883 && !validate_proto_after_old_defn (newdecl
, newtype
, oldtype
))
1885 locate_old_decl (olddecl
);
1888 /* A non-static declaration (even an "extern") followed by a
1889 static declaration is undefined behavior per C99 6.2.2p3-5,7.
1890 The same is true for a static forward declaration at block
1891 scope followed by a non-static declaration/definition at file
1892 scope. Static followed by non-static at the same scope is
1893 not undefined behavior, and is the most convenient way to get
1894 some effects (see e.g. what unwind-dw2-fde-glibc.c does to
1895 the definition of _Unwind_Find_FDE in unwind-dw2-fde.c), but
1896 we do diagnose it if -Wtraditional. */
1897 if (TREE_PUBLIC (olddecl
) && !TREE_PUBLIC (newdecl
))
1899 /* Two exceptions to the rule. If olddecl is an extern
1900 inline, or a predeclared function that isn't actually
1901 built in, newdecl silently overrides olddecl. The latter
1902 occur only in Objective C; see also above. (FIXME: Make
1903 Objective C use normal builtins.) */
1904 if (!DECL_IS_BUILTIN (olddecl
)
1905 && !DECL_EXTERN_INLINE (olddecl
))
1907 error ("static declaration of %q+D follows "
1908 "non-static declaration", newdecl
);
1909 locate_old_decl (olddecl
);
1913 else if (TREE_PUBLIC (newdecl
) && !TREE_PUBLIC (olddecl
))
1915 if (DECL_CONTEXT (olddecl
))
1917 error ("non-static declaration of %q+D follows "
1918 "static declaration", newdecl
);
1919 locate_old_decl (olddecl
);
1922 else if (warn_traditional
)
1924 warned
|= warning (OPT_Wtraditional
,
1925 "non-static declaration of %q+D "
1926 "follows static declaration", newdecl
);
1930 /* Make sure gnu_inline attribute is either not present, or
1931 present on all inline decls. */
1932 if (DECL_DECLARED_INLINE_P (olddecl
)
1933 && DECL_DECLARED_INLINE_P (newdecl
))
1935 bool newa
= lookup_attribute ("gnu_inline",
1936 DECL_ATTRIBUTES (newdecl
)) != NULL
;
1937 bool olda
= lookup_attribute ("gnu_inline",
1938 DECL_ATTRIBUTES (olddecl
)) != NULL
;
1941 error_at (input_location
, "%<gnu_inline%> attribute present on %q+D",
1942 newa
? newdecl
: olddecl
);
1943 error_at (DECL_SOURCE_LOCATION (newa
? olddecl
: newdecl
),
1948 else if (TREE_CODE (newdecl
) == VAR_DECL
)
1950 /* Only variables can be thread-local, and all declarations must
1951 agree on this property. */
1952 if (C_DECL_THREADPRIVATE_P (olddecl
) && !DECL_THREAD_LOCAL_P (newdecl
))
1954 /* Nothing to check. Since OLDDECL is marked threadprivate
1955 and NEWDECL does not have a thread-local attribute, we
1956 will merge the threadprivate attribute into NEWDECL. */
1959 else if (DECL_THREAD_LOCAL_P (newdecl
) != DECL_THREAD_LOCAL_P (olddecl
))
1961 if (DECL_THREAD_LOCAL_P (newdecl
))
1962 error ("thread-local declaration of %q+D follows "
1963 "non-thread-local declaration", newdecl
);
1965 error ("non-thread-local declaration of %q+D follows "
1966 "thread-local declaration", newdecl
);
1968 locate_old_decl (olddecl
);
1972 /* Multiple initialized definitions are not allowed (6.9p3,5). */
1973 if (DECL_INITIAL (newdecl
) && DECL_INITIAL (olddecl
))
1975 error ("redefinition of %q+D", newdecl
);
1976 locate_old_decl (olddecl
);
1980 /* Objects declared at file scope: if the first declaration had
1981 external linkage (even if it was an external reference) the
1982 second must have external linkage as well, or the behavior is
1983 undefined. If the first declaration had internal linkage, then
1984 the second must too, or else be an external reference (in which
1985 case the composite declaration still has internal linkage).
1986 As for function declarations, we warn about the static-then-
1987 extern case only for -Wtraditional. See generally 6.2.2p3-5,7. */
1988 if (DECL_FILE_SCOPE_P (newdecl
)
1989 && TREE_PUBLIC (newdecl
) != TREE_PUBLIC (olddecl
))
1991 if (DECL_EXTERNAL (newdecl
))
1993 if (!DECL_FILE_SCOPE_P (olddecl
))
1995 error ("extern declaration of %q+D follows "
1996 "declaration with no linkage", newdecl
);
1997 locate_old_decl (olddecl
);
2000 else if (warn_traditional
)
2002 warned
|= warning (OPT_Wtraditional
,
2003 "non-static declaration of %q+D "
2004 "follows static declaration", newdecl
);
2009 if (TREE_PUBLIC (newdecl
))
2010 error ("non-static declaration of %q+D follows "
2011 "static declaration", newdecl
);
2013 error ("static declaration of %q+D follows "
2014 "non-static declaration", newdecl
);
2016 locate_old_decl (olddecl
);
2020 /* Two objects with the same name declared at the same block
2021 scope must both be external references (6.7p3). */
2022 else if (!DECL_FILE_SCOPE_P (newdecl
))
2024 if (DECL_EXTERNAL (newdecl
))
2026 /* Extern with initializer at block scope, which will
2027 already have received an error. */
2029 else if (DECL_EXTERNAL (olddecl
))
2031 error ("declaration of %q+D with no linkage follows "
2032 "extern declaration", newdecl
);
2033 locate_old_decl (olddecl
);
2037 error ("redeclaration of %q+D with no linkage", newdecl
);
2038 locate_old_decl (olddecl
);
2044 /* C++ does not permit a decl to appear multiple times at file
2047 && DECL_FILE_SCOPE_P (newdecl
)
2048 && !DECL_EXTERNAL (newdecl
)
2049 && !DECL_EXTERNAL (olddecl
))
2050 warned
|= warning_at (DECL_SOURCE_LOCATION (newdecl
),
2052 ("duplicate declaration of %qD is "
2058 /* All decls must agree on a visibility. */
2059 if (CODE_CONTAINS_STRUCT (TREE_CODE (newdecl
), TS_DECL_WITH_VIS
)
2060 && DECL_VISIBILITY_SPECIFIED (newdecl
) && DECL_VISIBILITY_SPECIFIED (olddecl
)
2061 && DECL_VISIBILITY (newdecl
) != DECL_VISIBILITY (olddecl
))
2063 warned
|= warning (0, "redeclaration of %q+D with different visibility "
2064 "(old visibility preserved)", newdecl
);
2067 if (TREE_CODE (newdecl
) == FUNCTION_DECL
)
2069 /* Diagnose inline __attribute__ ((noinline)) which is silly. */
2070 if (DECL_DECLARED_INLINE_P (newdecl
)
2071 && lookup_attribute ("noinline", DECL_ATTRIBUTES (olddecl
)))
2073 warned
|= warning (OPT_Wattributes
,
2074 "inline declaration of %qD follows "
2075 "declaration with attribute noinline", newdecl
);
2077 else if (DECL_DECLARED_INLINE_P (olddecl
)
2078 && lookup_attribute ("noinline", DECL_ATTRIBUTES (newdecl
)))
2080 warned
|= warning (OPT_Wattributes
,
2081 "declaration of %q+D with attribute "
2082 "noinline follows inline declaration ", newdecl
);
2085 else /* PARM_DECL, VAR_DECL */
2087 /* Redeclaration of a parameter is a constraint violation (this is
2088 not explicitly stated, but follows from C99 6.7p3 [no more than
2089 one declaration of the same identifier with no linkage in the
2090 same scope, except type tags] and 6.2.2p6 [parameters have no
2091 linkage]). We must check for a forward parameter declaration,
2092 indicated by TREE_ASM_WRITTEN on the old declaration - this is
2093 an extension, the mandatory diagnostic for which is handled by
2094 mark_forward_parm_decls. */
2096 if (TREE_CODE (newdecl
) == PARM_DECL
2097 && (!TREE_ASM_WRITTEN (olddecl
) || TREE_ASM_WRITTEN (newdecl
)))
2099 error ("redefinition of parameter %q+D", newdecl
);
2100 locate_old_decl (olddecl
);
2105 /* Optional warning for completely redundant decls. */
2106 if (!warned
&& !pedwarned
2107 && warn_redundant_decls
2108 /* Don't warn about a function declaration followed by a
2110 && !(TREE_CODE (newdecl
) == FUNCTION_DECL
2111 && DECL_INITIAL (newdecl
) && !DECL_INITIAL (olddecl
))
2112 /* Don't warn about redundant redeclarations of builtins. */
2113 && !(TREE_CODE (newdecl
) == FUNCTION_DECL
2114 && !DECL_BUILT_IN (newdecl
)
2115 && DECL_BUILT_IN (olddecl
)
2116 && !C_DECL_DECLARED_BUILTIN (olddecl
))
2117 /* Don't warn about an extern followed by a definition. */
2118 && !(DECL_EXTERNAL (olddecl
) && !DECL_EXTERNAL (newdecl
))
2119 /* Don't warn about forward parameter decls. */
2120 && !(TREE_CODE (newdecl
) == PARM_DECL
2121 && TREE_ASM_WRITTEN (olddecl
) && !TREE_ASM_WRITTEN (newdecl
))
2122 /* Don't warn about a variable definition following a declaration. */
2123 && !(TREE_CODE (newdecl
) == VAR_DECL
2124 && DECL_INITIAL (newdecl
) && !DECL_INITIAL (olddecl
)))
2126 warned
= warning (OPT_Wredundant_decls
, "redundant redeclaration of %q+D",
2130 /* Report location of previous decl/defn. */
2131 if (warned
|| pedwarned
)
2132 locate_old_decl (olddecl
);
2134 #undef DECL_EXTERN_INLINE
2139 /* Subroutine of duplicate_decls. NEWDECL has been found to be
2140 consistent with OLDDECL, but carries new information. Merge the
2141 new information into OLDDECL. This function issues no
2145 merge_decls (tree newdecl
, tree olddecl
, tree newtype
, tree oldtype
)
2147 bool new_is_definition
= (TREE_CODE (newdecl
) == FUNCTION_DECL
2148 && DECL_INITIAL (newdecl
) != 0);
2149 bool new_is_prototype
= (TREE_CODE (newdecl
) == FUNCTION_DECL
2150 && prototype_p (TREE_TYPE (newdecl
)));
2151 bool old_is_prototype
= (TREE_CODE (olddecl
) == FUNCTION_DECL
2152 && prototype_p (TREE_TYPE (olddecl
)));
2153 bool extern_changed
= false;
2155 /* For real parm decl following a forward decl, rechain the old decl
2156 in its new location and clear TREE_ASM_WRITTEN (it's not a
2157 forward decl anymore). */
2158 if (TREE_CODE (newdecl
) == PARM_DECL
2159 && TREE_ASM_WRITTEN (olddecl
) && !TREE_ASM_WRITTEN (newdecl
))
2161 struct c_binding
*b
, **here
;
2163 for (here
= ¤t_scope
->bindings
; *here
; here
= &(*here
)->prev
)
2164 if ((*here
)->decl
== olddecl
)
2171 b
->prev
= current_scope
->bindings
;
2172 current_scope
->bindings
= b
;
2174 TREE_ASM_WRITTEN (olddecl
) = 0;
2177 DECL_ATTRIBUTES (newdecl
)
2178 = targetm
.merge_decl_attributes (olddecl
, newdecl
);
2180 /* Merge the data types specified in the two decls. */
2182 = TREE_TYPE (olddecl
)
2183 = composite_type (newtype
, oldtype
);
2185 /* Lay the type out, unless already done. */
2186 if (!comptypes (oldtype
, TREE_TYPE (newdecl
)))
2188 if (TREE_TYPE (newdecl
) != error_mark_node
)
2189 layout_type (TREE_TYPE (newdecl
));
2190 if (TREE_CODE (newdecl
) != FUNCTION_DECL
2191 && TREE_CODE (newdecl
) != TYPE_DECL
2192 && TREE_CODE (newdecl
) != CONST_DECL
)
2193 layout_decl (newdecl
, 0);
2197 /* Since the type is OLDDECL's, make OLDDECL's size go with. */
2198 DECL_SIZE (newdecl
) = DECL_SIZE (olddecl
);
2199 DECL_SIZE_UNIT (newdecl
) = DECL_SIZE_UNIT (olddecl
);
2200 DECL_MODE (newdecl
) = DECL_MODE (olddecl
);
2201 if (DECL_ALIGN (olddecl
) > DECL_ALIGN (newdecl
))
2203 DECL_ALIGN (newdecl
) = DECL_ALIGN (olddecl
);
2204 DECL_USER_ALIGN (newdecl
) |= DECL_USER_ALIGN (olddecl
);
2208 /* Keep the old rtl since we can safely use it. */
2209 if (HAS_RTL_P (olddecl
))
2210 COPY_DECL_RTL (olddecl
, newdecl
);
2212 /* Merge the type qualifiers. */
2213 if (TREE_READONLY (newdecl
))
2214 TREE_READONLY (olddecl
) = 1;
2216 if (TREE_THIS_VOLATILE (newdecl
))
2217 TREE_THIS_VOLATILE (olddecl
) = 1;
2219 /* Merge deprecatedness. */
2220 if (TREE_DEPRECATED (newdecl
))
2221 TREE_DEPRECATED (olddecl
) = 1;
2223 /* If a decl is in a system header and the other isn't, keep the one on the
2224 system header. Otherwise, keep source location of definition rather than
2225 declaration and of prototype rather than non-prototype unless that
2226 prototype is built-in. */
2227 if (CODE_CONTAINS_STRUCT (TREE_CODE (olddecl
), TS_DECL_WITH_VIS
)
2228 && DECL_IN_SYSTEM_HEADER (olddecl
)
2229 && !DECL_IN_SYSTEM_HEADER (newdecl
) )
2230 DECL_SOURCE_LOCATION (newdecl
) = DECL_SOURCE_LOCATION (olddecl
);
2231 else if (CODE_CONTAINS_STRUCT (TREE_CODE (olddecl
), TS_DECL_WITH_VIS
)
2232 && DECL_IN_SYSTEM_HEADER (newdecl
)
2233 && !DECL_IN_SYSTEM_HEADER (olddecl
))
2234 DECL_SOURCE_LOCATION (olddecl
) = DECL_SOURCE_LOCATION (newdecl
);
2235 else if ((DECL_INITIAL (newdecl
) == 0 && DECL_INITIAL (olddecl
) != 0)
2236 || (old_is_prototype
&& !new_is_prototype
2237 && !C_DECL_BUILTIN_PROTOTYPE (olddecl
)))
2238 DECL_SOURCE_LOCATION (newdecl
) = DECL_SOURCE_LOCATION (olddecl
);
2240 /* Merge the initialization information. */
2241 if (DECL_INITIAL (newdecl
) == 0)
2242 DECL_INITIAL (newdecl
) = DECL_INITIAL (olddecl
);
2244 /* Merge the threadprivate attribute. */
2245 if (TREE_CODE (olddecl
) == VAR_DECL
&& C_DECL_THREADPRIVATE_P (olddecl
))
2247 DECL_TLS_MODEL (newdecl
) = DECL_TLS_MODEL (olddecl
);
2248 C_DECL_THREADPRIVATE_P (newdecl
) = 1;
2251 if (CODE_CONTAINS_STRUCT (TREE_CODE (olddecl
), TS_DECL_WITH_VIS
))
2253 /* Merge the section attribute.
2254 We want to issue an error if the sections conflict but that
2255 must be done later in decl_attributes since we are called
2256 before attributes are assigned. */
2257 if (DECL_SECTION_NAME (newdecl
) == NULL_TREE
)
2258 DECL_SECTION_NAME (newdecl
) = DECL_SECTION_NAME (olddecl
);
2260 /* Copy the assembler name.
2261 Currently, it can only be defined in the prototype. */
2262 COPY_DECL_ASSEMBLER_NAME (olddecl
, newdecl
);
2264 /* Use visibility of whichever declaration had it specified */
2265 if (DECL_VISIBILITY_SPECIFIED (olddecl
))
2267 DECL_VISIBILITY (newdecl
) = DECL_VISIBILITY (olddecl
);
2268 DECL_VISIBILITY_SPECIFIED (newdecl
) = 1;
2271 if (TREE_CODE (newdecl
) == FUNCTION_DECL
)
2273 DECL_STATIC_CONSTRUCTOR(newdecl
) |= DECL_STATIC_CONSTRUCTOR(olddecl
);
2274 DECL_STATIC_DESTRUCTOR (newdecl
) |= DECL_STATIC_DESTRUCTOR (olddecl
);
2275 DECL_NO_LIMIT_STACK (newdecl
) |= DECL_NO_LIMIT_STACK (olddecl
);
2276 DECL_NO_INSTRUMENT_FUNCTION_ENTRY_EXIT (newdecl
)
2277 |= DECL_NO_INSTRUMENT_FUNCTION_ENTRY_EXIT (olddecl
);
2278 TREE_THIS_VOLATILE (newdecl
) |= TREE_THIS_VOLATILE (olddecl
);
2279 DECL_IS_MALLOC (newdecl
) |= DECL_IS_MALLOC (olddecl
);
2280 DECL_IS_OPERATOR_NEW (newdecl
) |= DECL_IS_OPERATOR_NEW (olddecl
);
2281 TREE_READONLY (newdecl
) |= TREE_READONLY (olddecl
);
2282 DECL_PURE_P (newdecl
) |= DECL_PURE_P (olddecl
);
2283 DECL_IS_NOVOPS (newdecl
) |= DECL_IS_NOVOPS (olddecl
);
2286 /* Merge the storage class information. */
2287 merge_weak (newdecl
, olddecl
);
2289 /* For functions, static overrides non-static. */
2290 if (TREE_CODE (newdecl
) == FUNCTION_DECL
)
2292 TREE_PUBLIC (newdecl
) &= TREE_PUBLIC (olddecl
);
2293 /* This is since we don't automatically
2294 copy the attributes of NEWDECL into OLDDECL. */
2295 TREE_PUBLIC (olddecl
) = TREE_PUBLIC (newdecl
);
2296 /* If this clears `static', clear it in the identifier too. */
2297 if (!TREE_PUBLIC (olddecl
))
2298 TREE_PUBLIC (DECL_NAME (olddecl
)) = 0;
2302 /* In c99, 'extern' declaration before (or after) 'inline' means this
2303 function is not DECL_EXTERNAL, unless 'gnu_inline' attribute
2305 if (TREE_CODE (newdecl
) == FUNCTION_DECL
2306 && !flag_gnu89_inline
2307 && (DECL_DECLARED_INLINE_P (newdecl
)
2308 || DECL_DECLARED_INLINE_P (olddecl
))
2309 && (!DECL_DECLARED_INLINE_P (newdecl
)
2310 || !DECL_DECLARED_INLINE_P (olddecl
)
2311 || !DECL_EXTERNAL (olddecl
))
2312 && DECL_EXTERNAL (newdecl
)
2313 && !lookup_attribute ("gnu_inline", DECL_ATTRIBUTES (newdecl
))
2314 && !current_function_decl
)
2315 DECL_EXTERNAL (newdecl
) = 0;
2317 if (DECL_EXTERNAL (newdecl
))
2319 TREE_STATIC (newdecl
) = TREE_STATIC (olddecl
);
2320 DECL_EXTERNAL (newdecl
) = DECL_EXTERNAL (olddecl
);
2322 /* An extern decl does not override previous storage class. */
2323 TREE_PUBLIC (newdecl
) = TREE_PUBLIC (olddecl
);
2324 if (!DECL_EXTERNAL (newdecl
))
2326 DECL_CONTEXT (newdecl
) = DECL_CONTEXT (olddecl
);
2327 DECL_COMMON (newdecl
) = DECL_COMMON (olddecl
);
2332 TREE_STATIC (olddecl
) = TREE_STATIC (newdecl
);
2333 TREE_PUBLIC (olddecl
) = TREE_PUBLIC (newdecl
);
2336 if (TREE_CODE (newdecl
) == FUNCTION_DECL
)
2338 /* If we're redefining a function previously defined as extern
2339 inline, make sure we emit debug info for the inline before we
2340 throw it away, in case it was inlined into a function that
2341 hasn't been written out yet. */
2342 if (new_is_definition
&& DECL_INITIAL (olddecl
))
2343 /* The new defn must not be inline. */
2344 DECL_UNINLINABLE (newdecl
) = 1;
2347 /* If either decl says `inline', this fn is inline, unless
2348 its definition was passed already. */
2349 if (DECL_DECLARED_INLINE_P (newdecl
)
2350 || DECL_DECLARED_INLINE_P (olddecl
))
2351 DECL_DECLARED_INLINE_P (newdecl
) = 1;
2353 DECL_UNINLINABLE (newdecl
) = DECL_UNINLINABLE (olddecl
)
2354 = (DECL_UNINLINABLE (newdecl
) || DECL_UNINLINABLE (olddecl
));
2356 DECL_DISREGARD_INLINE_LIMITS (newdecl
)
2357 = DECL_DISREGARD_INLINE_LIMITS (olddecl
)
2358 = (DECL_DISREGARD_INLINE_LIMITS (newdecl
)
2359 || DECL_DISREGARD_INLINE_LIMITS (olddecl
));
2362 if (DECL_BUILT_IN (olddecl
))
2364 /* If redeclaring a builtin function, it stays built in.
2365 But it gets tagged as having been declared. */
2366 DECL_BUILT_IN_CLASS (newdecl
) = DECL_BUILT_IN_CLASS (olddecl
);
2367 DECL_FUNCTION_CODE (newdecl
) = DECL_FUNCTION_CODE (olddecl
);
2368 C_DECL_DECLARED_BUILTIN (newdecl
) = 1;
2369 if (new_is_prototype
)
2370 C_DECL_BUILTIN_PROTOTYPE (newdecl
) = 0;
2372 C_DECL_BUILTIN_PROTOTYPE (newdecl
)
2373 = C_DECL_BUILTIN_PROTOTYPE (olddecl
);
2376 /* Preserve function specific target and optimization options */
2377 if (DECL_FUNCTION_SPECIFIC_TARGET (olddecl
)
2378 && !DECL_FUNCTION_SPECIFIC_TARGET (newdecl
))
2379 DECL_FUNCTION_SPECIFIC_TARGET (newdecl
)
2380 = DECL_FUNCTION_SPECIFIC_TARGET (olddecl
);
2382 if (DECL_FUNCTION_SPECIFIC_OPTIMIZATION (olddecl
)
2383 && !DECL_FUNCTION_SPECIFIC_OPTIMIZATION (newdecl
))
2384 DECL_FUNCTION_SPECIFIC_OPTIMIZATION (newdecl
)
2385 = DECL_FUNCTION_SPECIFIC_OPTIMIZATION (olddecl
);
2387 /* Also preserve various other info from the definition. */
2388 if (!new_is_definition
)
2391 DECL_RESULT (newdecl
) = DECL_RESULT (olddecl
);
2392 DECL_INITIAL (newdecl
) = DECL_INITIAL (olddecl
);
2393 DECL_STRUCT_FUNCTION (newdecl
) = DECL_STRUCT_FUNCTION (olddecl
);
2394 DECL_SAVED_TREE (newdecl
) = DECL_SAVED_TREE (olddecl
);
2395 DECL_ARGUMENTS (newdecl
) = copy_list (DECL_ARGUMENTS (olddecl
));
2396 for (t
= DECL_ARGUMENTS (newdecl
); t
; t
= DECL_CHAIN (t
))
2397 DECL_CONTEXT (t
) = newdecl
;
2399 /* See if we've got a function to instantiate from. */
2400 if (DECL_SAVED_TREE (olddecl
))
2401 DECL_ABSTRACT_ORIGIN (newdecl
)
2402 = DECL_ABSTRACT_ORIGIN (olddecl
);
2406 extern_changed
= DECL_EXTERNAL (olddecl
) && !DECL_EXTERNAL (newdecl
);
2408 /* Merge the USED information. */
2409 if (TREE_USED (olddecl
))
2410 TREE_USED (newdecl
) = 1;
2411 else if (TREE_USED (newdecl
))
2412 TREE_USED (olddecl
) = 1;
2413 if (TREE_CODE (olddecl
) == VAR_DECL
|| TREE_CODE (olddecl
) == PARM_DECL
)
2414 DECL_READ_P (newdecl
) |= DECL_READ_P (olddecl
);
2415 if (DECL_PRESERVE_P (olddecl
))
2416 DECL_PRESERVE_P (newdecl
) = 1;
2417 else if (DECL_PRESERVE_P (newdecl
))
2418 DECL_PRESERVE_P (olddecl
) = 1;
2420 /* Copy most of the decl-specific fields of NEWDECL into OLDDECL.
2421 But preserve OLDDECL's DECL_UID, DECL_CONTEXT and
2422 DECL_ARGUMENTS (if appropriate). */
2424 unsigned olddecl_uid
= DECL_UID (olddecl
);
2425 tree olddecl_context
= DECL_CONTEXT (olddecl
);
2426 tree olddecl_arguments
= NULL
;
2427 if (TREE_CODE (olddecl
) == FUNCTION_DECL
)
2428 olddecl_arguments
= DECL_ARGUMENTS (olddecl
);
2430 memcpy ((char *) olddecl
+ sizeof (struct tree_common
),
2431 (char *) newdecl
+ sizeof (struct tree_common
),
2432 sizeof (struct tree_decl_common
) - sizeof (struct tree_common
));
2433 switch (TREE_CODE (olddecl
))
2443 memcpy ((char *) olddecl
+ sizeof (struct tree_decl_common
),
2444 (char *) newdecl
+ sizeof (struct tree_decl_common
),
2445 tree_code_size (TREE_CODE (olddecl
)) - sizeof (struct tree_decl_common
));
2450 memcpy ((char *) olddecl
+ sizeof (struct tree_decl_common
),
2451 (char *) newdecl
+ sizeof (struct tree_decl_common
),
2452 sizeof (struct tree_decl_non_common
) - sizeof (struct tree_decl_common
));
2454 DECL_UID (olddecl
) = olddecl_uid
;
2455 DECL_CONTEXT (olddecl
) = olddecl_context
;
2456 if (TREE_CODE (olddecl
) == FUNCTION_DECL
)
2457 DECL_ARGUMENTS (olddecl
) = olddecl_arguments
;
2460 /* If OLDDECL had its DECL_RTL instantiated, re-invoke make_decl_rtl
2461 so that encode_section_info has a chance to look at the new decl
2462 flags and attributes. */
2463 if (DECL_RTL_SET_P (olddecl
)
2464 && (TREE_CODE (olddecl
) == FUNCTION_DECL
2465 || (TREE_CODE (olddecl
) == VAR_DECL
2466 && TREE_STATIC (olddecl
))))
2467 make_decl_rtl (olddecl
);
2469 /* If we changed a function from DECL_EXTERNAL to !DECL_EXTERNAL,
2470 and the definition is coming from the old version, cgraph needs
2471 to be called again. */
2472 if (extern_changed
&& !new_is_definition
2473 && TREE_CODE (olddecl
) == FUNCTION_DECL
&& DECL_INITIAL (olddecl
))
2474 cgraph_mark_if_needed (olddecl
);
2477 /* Handle when a new declaration NEWDECL has the same name as an old
2478 one OLDDECL in the same binding contour. Prints an error message
2481 If safely possible, alter OLDDECL to look like NEWDECL, and return
2482 true. Otherwise, return false. */
2485 duplicate_decls (tree newdecl
, tree olddecl
)
2487 tree newtype
= NULL
, oldtype
= NULL
;
2489 if (!diagnose_mismatched_decls (newdecl
, olddecl
, &newtype
, &oldtype
))
2491 /* Avoid `unused variable' and other warnings for OLDDECL. */
2492 TREE_NO_WARNING (olddecl
) = 1;
2496 merge_decls (newdecl
, olddecl
, newtype
, oldtype
);
2501 /* Check whether decl-node NEW_DECL shadows an existing declaration. */
2503 warn_if_shadowing (tree new_decl
)
2505 struct c_binding
*b
;
2507 /* Shadow warnings wanted? */
2509 /* No shadow warnings for internally generated vars. */
2510 || DECL_IS_BUILTIN (new_decl
)
2511 /* No shadow warnings for vars made for inlining. */
2512 || DECL_FROM_INLINE (new_decl
))
2515 /* Is anything being shadowed? Invisible decls do not count. */
2516 for (b
= I_SYMBOL_BINDING (DECL_NAME (new_decl
)); b
; b
= b
->shadowed
)
2517 if (b
->decl
&& b
->decl
!= new_decl
&& !b
->invisible
)
2519 tree old_decl
= b
->decl
;
2521 if (old_decl
== error_mark_node
)
2523 warning (OPT_Wshadow
, "declaration of %q+D shadows previous "
2524 "non-variable", new_decl
);
2527 else if (TREE_CODE (old_decl
) == PARM_DECL
)
2528 warning (OPT_Wshadow
, "declaration of %q+D shadows a parameter",
2530 else if (DECL_FILE_SCOPE_P (old_decl
))
2531 warning (OPT_Wshadow
, "declaration of %q+D shadows a global "
2532 "declaration", new_decl
);
2533 else if (TREE_CODE (old_decl
) == FUNCTION_DECL
2534 && DECL_BUILT_IN (old_decl
))
2536 warning (OPT_Wshadow
, "declaration of %q+D shadows "
2537 "a built-in function", new_decl
);
2541 warning (OPT_Wshadow
, "declaration of %q+D shadows a previous local",
2544 warning_at (DECL_SOURCE_LOCATION (old_decl
), OPT_Wshadow
,
2545 "shadowed declaration is here");
2551 /* Record a decl-node X as belonging to the current lexical scope.
2552 Check for errors (such as an incompatible declaration for the same
2553 name already seen in the same scope).
2555 Returns either X or an old decl for the same name.
2556 If an old decl is returned, it may have been smashed
2557 to agree with what X says. */
2562 tree name
= DECL_NAME (x
);
2563 struct c_scope
*scope
= current_scope
;
2564 struct c_binding
*b
;
2565 bool nested
= false;
2566 location_t locus
= DECL_SOURCE_LOCATION (x
);
2568 /* Must set DECL_CONTEXT for everything not at file scope or
2569 DECL_FILE_SCOPE_P won't work. Local externs don't count
2570 unless they have initializers (which generate code). */
2571 if (current_function_decl
2572 && ((TREE_CODE (x
) != FUNCTION_DECL
&& TREE_CODE (x
) != VAR_DECL
)
2573 || DECL_INITIAL (x
) || !DECL_EXTERNAL (x
)))
2574 DECL_CONTEXT (x
) = current_function_decl
;
2576 /* Anonymous decls are just inserted in the scope. */
2579 bind (name
, x
, scope
, /*invisible=*/false, /*nested=*/false,
2584 /* First, see if there is another declaration with the same name in
2585 the current scope. If there is, duplicate_decls may do all the
2586 work for us. If duplicate_decls returns false, that indicates
2587 two incompatible decls in the same scope; we are to silently
2588 replace the old one (duplicate_decls has issued all appropriate
2589 diagnostics). In particular, we should not consider possible
2590 duplicates in the external scope, or shadowing. */
2591 b
= I_SYMBOL_BINDING (name
);
2592 if (b
&& B_IN_SCOPE (b
, scope
))
2594 struct c_binding
*b_ext
, *b_use
;
2595 tree type
= TREE_TYPE (x
);
2596 tree visdecl
= b
->decl
;
2597 tree vistype
= TREE_TYPE (visdecl
);
2598 if (TREE_CODE (TREE_TYPE (x
)) == ARRAY_TYPE
2599 && COMPLETE_TYPE_P (TREE_TYPE (x
)))
2600 b
->inner_comp
= false;
2603 /* If this is an external linkage declaration, we should check
2604 for compatibility with the type in the external scope before
2605 setting the type at this scope based on the visible
2606 information only. */
2607 if (TREE_PUBLIC (x
) && TREE_PUBLIC (visdecl
))
2609 while (b_ext
&& !B_IN_EXTERNAL_SCOPE (b_ext
))
2610 b_ext
= b_ext
->shadowed
;
2615 TREE_TYPE (b_use
->decl
) = b_use
->u
.type
;
2618 if (duplicate_decls (x
, b_use
->decl
))
2622 /* Save the updated type in the external scope and
2623 restore the proper type for this scope. */
2625 if (comptypes (vistype
, type
))
2626 thistype
= composite_type (vistype
, type
);
2628 thistype
= TREE_TYPE (b_use
->decl
);
2629 b_use
->u
.type
= TREE_TYPE (b_use
->decl
);
2630 if (TREE_CODE (b_use
->decl
) == FUNCTION_DECL
2631 && DECL_BUILT_IN (b_use
->decl
))
2633 = build_type_attribute_variant (thistype
,
2636 TREE_TYPE (b_use
->decl
) = thistype
;
2641 goto skip_external_and_shadow_checks
;
2644 /* All declarations with external linkage, and all external
2645 references, go in the external scope, no matter what scope is
2646 current. However, the binding in that scope is ignored for
2647 purposes of normal name lookup. A separate binding structure is
2648 created in the requested scope; this governs the normal
2649 visibility of the symbol.
2651 The binding in the externals scope is used exclusively for
2652 detecting duplicate declarations of the same object, no matter
2653 what scope they are in; this is what we do here. (C99 6.2.7p2:
2654 All declarations that refer to the same object or function shall
2655 have compatible type; otherwise, the behavior is undefined.) */
2656 if (DECL_EXTERNAL (x
) || scope
== file_scope
)
2658 tree type
= TREE_TYPE (x
);
2661 bool type_saved
= false;
2662 if (b
&& !B_IN_EXTERNAL_SCOPE (b
)
2663 && (TREE_CODE (b
->decl
) == FUNCTION_DECL
2664 || TREE_CODE (b
->decl
) == VAR_DECL
)
2665 && DECL_FILE_SCOPE_P (b
->decl
))
2668 vistype
= TREE_TYPE (visdecl
);
2670 if (scope
!= file_scope
2671 && !DECL_IN_SYSTEM_HEADER (x
))
2672 warning (OPT_Wnested_externs
, "nested extern declaration of %qD", x
);
2674 while (b
&& !B_IN_EXTERNAL_SCOPE (b
))
2676 /* If this decl might be modified, save its type. This is
2677 done here rather than when the decl is first bound
2678 because the type may change after first binding, through
2679 being completed or through attributes being added. If we
2680 encounter multiple such decls, only the first should have
2681 its type saved; the others will already have had their
2682 proper types saved and the types will not have changed as
2683 their scopes will not have been re-entered. */
2684 if (DECL_P (b
->decl
) && DECL_FILE_SCOPE_P (b
->decl
) && !type_saved
)
2686 b
->u
.type
= TREE_TYPE (b
->decl
);
2689 if (B_IN_FILE_SCOPE (b
)
2690 && TREE_CODE (b
->decl
) == VAR_DECL
2691 && TREE_STATIC (b
->decl
)
2692 && TREE_CODE (TREE_TYPE (b
->decl
)) == ARRAY_TYPE
2693 && !TYPE_DOMAIN (TREE_TYPE (b
->decl
))
2694 && TREE_CODE (type
) == ARRAY_TYPE
2695 && TYPE_DOMAIN (type
)
2696 && TYPE_MAX_VALUE (TYPE_DOMAIN (type
))
2697 && !integer_zerop (TYPE_MAX_VALUE (TYPE_DOMAIN (type
))))
2699 /* Array type completed in inner scope, which should be
2700 diagnosed if the completion does not have size 1 and
2701 it does not get completed in the file scope. */
2702 b
->inner_comp
= true;
2707 /* If a matching external declaration has been found, set its
2708 type to the composite of all the types of that declaration.
2709 After the consistency checks, it will be reset to the
2710 composite of the visible types only. */
2711 if (b
&& (TREE_PUBLIC (x
) || same_translation_unit_p (x
, b
->decl
))
2713 TREE_TYPE (b
->decl
) = b
->u
.type
;
2715 /* The point of the same_translation_unit_p check here is,
2716 we want to detect a duplicate decl for a construct like
2717 foo() { extern bar(); } ... static bar(); but not if
2718 they are in different translation units. In any case,
2719 the static does not go in the externals scope. */
2721 && (TREE_PUBLIC (x
) || same_translation_unit_p (x
, b
->decl
))
2722 && duplicate_decls (x
, b
->decl
))
2727 if (comptypes (vistype
, type
))
2728 thistype
= composite_type (vistype
, type
);
2730 thistype
= TREE_TYPE (b
->decl
);
2734 b
->u
.type
= TREE_TYPE (b
->decl
);
2735 if (TREE_CODE (b
->decl
) == FUNCTION_DECL
&& DECL_BUILT_IN (b
->decl
))
2737 = build_type_attribute_variant (thistype
,
2738 TYPE_ATTRIBUTES (b
->u
.type
));
2739 TREE_TYPE (b
->decl
) = thistype
;
2740 bind (name
, b
->decl
, scope
, /*invisible=*/false, /*nested=*/true,
2744 else if (TREE_PUBLIC (x
))
2746 if (visdecl
&& !b
&& duplicate_decls (x
, visdecl
))
2748 /* An external declaration at block scope referring to a
2749 visible entity with internal linkage. The composite
2750 type will already be correct for this scope, so we
2751 just need to fall through to make the declaration in
2758 bind (name
, x
, external_scope
, /*invisible=*/true,
2759 /*nested=*/false, locus
);
2765 if (TREE_CODE (x
) != PARM_DECL
)
2766 warn_if_shadowing (x
);
2768 skip_external_and_shadow_checks
:
2769 if (TREE_CODE (x
) == TYPE_DECL
)
2770 set_underlying_type (x
);
2772 bind (name
, x
, scope
, /*invisible=*/false, nested
, locus
);
2774 /* If x's type is incomplete because it's based on a
2775 structure or union which has not yet been fully declared,
2776 attach it to that structure or union type, so we can go
2777 back and complete the variable declaration later, if the
2778 structure or union gets fully declared.
2780 If the input is erroneous, we can have error_mark in the type
2781 slot (e.g. "f(void a, ...)") - that doesn't count as an
2783 if (TREE_TYPE (x
) != error_mark_node
2784 && !COMPLETE_TYPE_P (TREE_TYPE (x
)))
2786 tree element
= TREE_TYPE (x
);
2788 while (TREE_CODE (element
) == ARRAY_TYPE
)
2789 element
= TREE_TYPE (element
);
2790 element
= TYPE_MAIN_VARIANT (element
);
2792 if ((TREE_CODE (element
) == RECORD_TYPE
2793 || TREE_CODE (element
) == UNION_TYPE
)
2794 && (TREE_CODE (x
) != TYPE_DECL
2795 || TREE_CODE (TREE_TYPE (x
)) == ARRAY_TYPE
)
2796 && !COMPLETE_TYPE_P (element
))
2797 C_TYPE_INCOMPLETE_VARS (element
)
2798 = tree_cons (NULL_TREE
, x
, C_TYPE_INCOMPLETE_VARS (element
));
2803 /* Record X as belonging to file scope.
2804 This is used only internally by the Objective-C front end,
2805 and is limited to its needs. duplicate_decls is not called;
2806 if there is any preexisting decl for this identifier, it is an ICE. */
2809 pushdecl_top_level (tree x
)
2812 bool nested
= false;
2813 gcc_assert (TREE_CODE (x
) == VAR_DECL
|| TREE_CODE (x
) == CONST_DECL
);
2815 name
= DECL_NAME (x
);
2817 gcc_assert (TREE_CODE (x
) == CONST_DECL
|| !I_SYMBOL_BINDING (name
));
2819 if (TREE_PUBLIC (x
))
2821 bind (name
, x
, external_scope
, /*invisible=*/true, /*nested=*/false,
2826 bind (name
, x
, file_scope
, /*invisible=*/false, nested
, UNKNOWN_LOCATION
);
2832 implicit_decl_warning (tree id
, tree olddecl
)
2834 if (warn_implicit_function_declaration
)
2839 warned
= pedwarn (input_location
, OPT_Wimplicit_function_declaration
,
2840 "implicit declaration of function %qE", id
);
2842 warned
= warning (OPT_Wimplicit_function_declaration
,
2843 G_("implicit declaration of function %qE"), id
);
2844 if (olddecl
&& warned
)
2845 locate_old_decl (olddecl
);
2849 /* Generate an implicit declaration for identifier FUNCTIONID at LOC as a
2850 function of type int (). */
2853 implicitly_declare (location_t loc
, tree functionid
)
2855 struct c_binding
*b
;
2859 for (b
= I_SYMBOL_BINDING (functionid
); b
; b
= b
->shadowed
)
2861 if (B_IN_SCOPE (b
, external_scope
))
2870 if (decl
== error_mark_node
)
2873 /* FIXME: Objective-C has weird not-really-builtin functions
2874 which are supposed to be visible automatically. They wind up
2875 in the external scope because they're pushed before the file
2876 scope gets created. Catch this here and rebind them into the
2878 if (!DECL_BUILT_IN (decl
) && DECL_IS_BUILTIN (decl
))
2880 bind (functionid
, decl
, file_scope
,
2881 /*invisible=*/false, /*nested=*/true,
2882 DECL_SOURCE_LOCATION (decl
));
2887 tree newtype
= default_function_type
;
2889 TREE_TYPE (decl
) = b
->u
.type
;
2890 /* Implicit declaration of a function already declared
2891 (somehow) in a different scope, or as a built-in.
2892 If this is the first time this has happened, warn;
2893 then recycle the old declaration but with the new type. */
2894 if (!C_DECL_IMPLICIT (decl
))
2896 implicit_decl_warning (functionid
, decl
);
2897 C_DECL_IMPLICIT (decl
) = 1;
2899 if (DECL_BUILT_IN (decl
))
2901 newtype
= build_type_attribute_variant (newtype
,
2903 (TREE_TYPE (decl
)));
2904 if (!comptypes (newtype
, TREE_TYPE (decl
)))
2906 warning_at (loc
, 0, "incompatible implicit declaration of "
2907 "built-in function %qD", decl
);
2908 newtype
= TREE_TYPE (decl
);
2913 if (!comptypes (newtype
, TREE_TYPE (decl
)))
2915 error_at (loc
, "incompatible implicit declaration of function %qD", decl
);
2916 locate_old_decl (decl
);
2919 b
->u
.type
= TREE_TYPE (decl
);
2920 TREE_TYPE (decl
) = newtype
;
2921 bind (functionid
, decl
, current_scope
,
2922 /*invisible=*/false, /*nested=*/true,
2923 DECL_SOURCE_LOCATION (decl
));
2928 /* Not seen before. */
2929 decl
= build_decl (loc
, FUNCTION_DECL
, functionid
, default_function_type
);
2930 DECL_EXTERNAL (decl
) = 1;
2931 TREE_PUBLIC (decl
) = 1;
2932 C_DECL_IMPLICIT (decl
) = 1;
2933 implicit_decl_warning (functionid
, 0);
2934 asmspec_tree
= maybe_apply_renaming_pragma (decl
, /*asmname=*/NULL
);
2936 set_user_assembler_name (decl
, TREE_STRING_POINTER (asmspec_tree
));
2938 /* C89 says implicit declarations are in the innermost block.
2939 So we record the decl in the standard fashion. */
2940 decl
= pushdecl (decl
);
2942 /* No need to call objc_check_decl here - it's a function type. */
2943 rest_of_decl_compilation (decl
, 0, 0);
2945 /* Write a record describing this implicit function declaration
2946 to the prototypes file (if requested). */
2947 gen_aux_info_record (decl
, 0, 1, 0);
2949 /* Possibly apply some default attributes to this implicit declaration. */
2950 decl_attributes (&decl
, NULL_TREE
, 0);
2955 /* Issue an error message for a reference to an undeclared variable
2956 ID, including a reference to a builtin outside of function-call
2957 context. Establish a binding of the identifier to error_mark_node
2958 in an appropriate scope, which will suppress further errors for the
2959 same identifier. The error message should be given location LOC. */
2961 undeclared_variable (location_t loc
, tree id
)
2963 static bool already
= false;
2964 struct c_scope
*scope
;
2966 if (current_function_decl
== 0)
2968 error_at (loc
, "%qE undeclared here (not in a function)", id
);
2969 scope
= current_scope
;
2973 if (!objc_diagnose_private_ivar (id
))
2974 error_at (loc
, "%qE undeclared (first use in this function)", id
);
2977 inform (loc
, "each undeclared identifier is reported only"
2978 " once for each function it appears in");
2982 /* If we are parsing old-style parameter decls, current_function_decl
2983 will be nonnull but current_function_scope will be null. */
2984 scope
= current_function_scope
? current_function_scope
: current_scope
;
2986 bind (id
, error_mark_node
, scope
, /*invisible=*/false, /*nested=*/false,
2990 /* Subroutine of lookup_label, declare_label, define_label: construct a
2991 LABEL_DECL with all the proper frills. Also create a struct
2992 c_label_vars initialized for the current scope. */
2995 make_label (location_t location
, tree name
, bool defining
,
2996 struct c_label_vars
**p_label_vars
)
2998 tree label
= build_decl (location
, LABEL_DECL
, name
, void_type_node
);
2999 struct c_label_vars
*label_vars
;
3001 DECL_CONTEXT (label
) = current_function_decl
;
3002 DECL_MODE (label
) = VOIDmode
;
3004 label_vars
= ggc_alloc_c_label_vars ();
3005 label_vars
->shadowed
= NULL
;
3006 set_spot_bindings (&label_vars
->label_bindings
, defining
);
3007 label_vars
->decls_in_scope
= make_tree_vector ();
3008 label_vars
->gotos
= VEC_alloc (c_goto_bindings_p
, gc
, 0);
3009 *p_label_vars
= label_vars
;
3014 /* Get the LABEL_DECL corresponding to identifier NAME as a label.
3015 Create one if none exists so far for the current function.
3016 This is called when a label is used in a goto expression or
3017 has its address taken. */
3020 lookup_label (tree name
)
3023 struct c_label_vars
*label_vars
;
3025 if (current_function_scope
== 0)
3027 error ("label %qE referenced outside of any function", name
);
3031 /* Use a label already defined or ref'd with this name, but not if
3032 it is inherited from a containing function and wasn't declared
3034 label
= I_LABEL_DECL (name
);
3035 if (label
&& (DECL_CONTEXT (label
) == current_function_decl
3036 || C_DECLARED_LABEL_FLAG (label
)))
3038 /* If the label has only been declared, update its apparent
3039 location to point here, for better diagnostics if it
3040 turns out not to have been defined. */
3041 if (DECL_INITIAL (label
) == NULL_TREE
)
3042 DECL_SOURCE_LOCATION (label
) = input_location
;
3046 /* No label binding for that identifier; make one. */
3047 label
= make_label (input_location
, name
, false, &label_vars
);
3049 /* Ordinary labels go in the current function scope. */
3050 bind_label (name
, label
, current_function_scope
, label_vars
);
3055 /* Issue a warning about DECL for a goto statement at GOTO_LOC going
3059 warn_about_goto (location_t goto_loc
, tree label
, tree decl
)
3061 if (variably_modified_type_p (TREE_TYPE (decl
), NULL_TREE
))
3063 "jump into scope of identifier with variably modified type");
3065 warning_at (goto_loc
, OPT_Wjump_misses_init
,
3066 "jump skips variable initialization");
3067 inform (DECL_SOURCE_LOCATION (label
), "label %qD defined here", label
);
3068 inform (DECL_SOURCE_LOCATION (decl
), "%qD declared here", decl
);
3071 /* Look up a label because of a goto statement. This is like
3072 lookup_label, but also issues any appropriate warnings. */
3075 lookup_label_for_goto (location_t loc
, tree name
)
3078 struct c_label_vars
*label_vars
;
3082 label
= lookup_label (name
);
3083 if (label
== NULL_TREE
)
3086 /* If we are jumping to a different function, we can't issue any
3088 if (DECL_CONTEXT (label
) != current_function_decl
)
3090 gcc_assert (C_DECLARED_LABEL_FLAG (label
));
3094 label_vars
= I_LABEL_BINDING (name
)->u
.label
;
3096 /* If the label has not yet been defined, then push this goto on a
3097 list for possible later warnings. */
3098 if (label_vars
->label_bindings
.scope
== NULL
)
3100 struct c_goto_bindings
*g
;
3102 g
= ggc_alloc_c_goto_bindings ();
3104 set_spot_bindings (&g
->goto_bindings
, true);
3105 VEC_safe_push (c_goto_bindings_p
, gc
, label_vars
->gotos
, g
);
3109 /* If there are any decls in label_vars->decls_in_scope, then this
3110 goto has missed the declaration of the decl. This happens for a
3116 Issue a warning or error. */
3117 FOR_EACH_VEC_ELT (tree
, label_vars
->decls_in_scope
, ix
, decl
)
3118 warn_about_goto (loc
, label
, decl
);
3120 if (label_vars
->label_bindings
.left_stmt_expr
)
3122 error_at (loc
, "jump into statement expression");
3123 inform (DECL_SOURCE_LOCATION (label
), "label %qD defined here", label
);
3129 /* Make a label named NAME in the current function, shadowing silently
3130 any that may be inherited from containing functions or containing
3131 scopes. This is called for __label__ declarations. */
3134 declare_label (tree name
)
3136 struct c_binding
*b
= I_LABEL_BINDING (name
);
3138 struct c_label_vars
*label_vars
;
3140 /* Check to make sure that the label hasn't already been declared
3142 if (b
&& B_IN_CURRENT_SCOPE (b
))
3144 error ("duplicate label declaration %qE", name
);
3145 locate_old_decl (b
->decl
);
3147 /* Just use the previous declaration. */
3151 label
= make_label (input_location
, name
, false, &label_vars
);
3152 C_DECLARED_LABEL_FLAG (label
) = 1;
3154 /* Declared labels go in the current scope. */
3155 bind_label (name
, label
, current_scope
, label_vars
);
3160 /* When we define a label, issue any appropriate warnings if there are
3161 any gotos earlier in the function which jump to this label. */
3164 check_earlier_gotos (tree label
, struct c_label_vars
* label_vars
)
3167 struct c_goto_bindings
*g
;
3169 FOR_EACH_VEC_ELT (c_goto_bindings_p
, label_vars
->gotos
, ix
, g
)
3171 struct c_binding
*b
;
3172 struct c_scope
*scope
;
3174 /* We have a goto to this label. The goto is going forward. In
3175 g->scope, the goto is going to skip any binding which was
3176 defined after g->bindings_in_scope. */
3177 if (g
->goto_bindings
.scope
->has_jump_unsafe_decl
)
3179 for (b
= g
->goto_bindings
.scope
->bindings
;
3180 b
!= g
->goto_bindings
.bindings_in_scope
;
3183 if (decl_jump_unsafe (b
->decl
))
3184 warn_about_goto (g
->loc
, label
, b
->decl
);
3188 /* We also need to warn about decls defined in any scopes
3189 between the scope of the label and the scope of the goto. */
3190 for (scope
= label_vars
->label_bindings
.scope
;
3191 scope
!= g
->goto_bindings
.scope
;
3192 scope
= scope
->outer
)
3194 gcc_assert (scope
!= NULL
);
3195 if (scope
->has_jump_unsafe_decl
)
3197 if (scope
== label_vars
->label_bindings
.scope
)
3198 b
= label_vars
->label_bindings
.bindings_in_scope
;
3200 b
= scope
->bindings
;
3201 for (; b
!= NULL
; b
= b
->prev
)
3203 if (decl_jump_unsafe (b
->decl
))
3204 warn_about_goto (g
->loc
, label
, b
->decl
);
3209 if (g
->goto_bindings
.stmt_exprs
> 0)
3211 error_at (g
->loc
, "jump into statement expression");
3212 inform (DECL_SOURCE_LOCATION (label
), "label %qD defined here",
3217 /* Now that the label is defined, we will issue warnings about
3218 subsequent gotos to this label when we see them. */
3219 VEC_truncate (c_goto_bindings_p
, label_vars
->gotos
, 0);
3220 label_vars
->gotos
= NULL
;
3223 /* Define a label, specifying the location in the source file.
3224 Return the LABEL_DECL node for the label, if the definition is valid.
3225 Otherwise return 0. */
3228 define_label (location_t location
, tree name
)
3230 /* Find any preexisting label with this name. It is an error
3231 if that label has already been defined in this function, or
3232 if there is a containing function with a declared label with
3234 tree label
= I_LABEL_DECL (name
);
3237 && ((DECL_CONTEXT (label
) == current_function_decl
3238 && DECL_INITIAL (label
) != 0)
3239 || (DECL_CONTEXT (label
) != current_function_decl
3240 && C_DECLARED_LABEL_FLAG (label
))))
3242 error_at (location
, "duplicate label %qD", label
);
3243 locate_old_decl (label
);
3246 else if (label
&& DECL_CONTEXT (label
) == current_function_decl
)
3248 struct c_label_vars
*label_vars
= I_LABEL_BINDING (name
)->u
.label
;
3250 /* The label has been used or declared already in this function,
3251 but not defined. Update its location to point to this
3253 DECL_SOURCE_LOCATION (label
) = location
;
3254 set_spot_bindings (&label_vars
->label_bindings
, true);
3256 /* Issue warnings as required about any goto statements from
3257 earlier in the function. */
3258 check_earlier_gotos (label
, label_vars
);
3262 struct c_label_vars
*label_vars
;
3264 /* No label binding for that identifier; make one. */
3265 label
= make_label (location
, name
, true, &label_vars
);
3267 /* Ordinary labels go in the current function scope. */
3268 bind_label (name
, label
, current_function_scope
, label_vars
);
3271 if (!in_system_header
&& lookup_name (name
))
3272 warning_at (location
, OPT_Wtraditional
,
3273 "traditional C lacks a separate namespace "
3274 "for labels, identifier %qE conflicts", name
);
3276 /* Mark label as having been defined. */
3277 DECL_INITIAL (label
) = error_mark_node
;
3281 /* Get the bindings for a new switch statement. This is used to issue
3282 warnings as appropriate for jumps from the switch to case or
3285 struct c_spot_bindings
*
3286 c_get_switch_bindings (void)
3288 struct c_spot_bindings
*switch_bindings
;
3290 switch_bindings
= XNEW (struct c_spot_bindings
);
3291 set_spot_bindings (switch_bindings
, true);
3292 return switch_bindings
;
3296 c_release_switch_bindings (struct c_spot_bindings
*bindings
)
3298 gcc_assert (bindings
->stmt_exprs
== 0 && !bindings
->left_stmt_expr
);
3302 /* This is called at the point of a case or default label to issue
3303 warnings about decls as needed. It returns true if it found an
3304 error, not just a warning. */
3307 c_check_switch_jump_warnings (struct c_spot_bindings
*switch_bindings
,
3308 location_t switch_loc
, location_t case_loc
)
3311 struct c_scope
*scope
;
3314 for (scope
= current_scope
;
3315 scope
!= switch_bindings
->scope
;
3316 scope
= scope
->outer
)
3318 struct c_binding
*b
;
3320 gcc_assert (scope
!= NULL
);
3322 if (!scope
->has_jump_unsafe_decl
)
3325 for (b
= scope
->bindings
; b
!= NULL
; b
= b
->prev
)
3327 if (decl_jump_unsafe (b
->decl
))
3329 if (variably_modified_type_p (TREE_TYPE (b
->decl
), NULL_TREE
))
3333 ("switch jumps into scope of identifier with "
3334 "variably modified type"));
3337 warning_at (case_loc
, OPT_Wjump_misses_init
,
3338 "switch jumps over variable initialization");
3339 inform (switch_loc
, "switch starts here");
3340 inform (DECL_SOURCE_LOCATION (b
->decl
), "%qD declared here",
3346 if (switch_bindings
->stmt_exprs
> 0)
3349 error_at (case_loc
, "switch jumps into statement expression");
3350 inform (switch_loc
, "switch starts here");
3356 /* Given NAME, an IDENTIFIER_NODE,
3357 return the structure (or union or enum) definition for that name.
3358 If THISLEVEL_ONLY is nonzero, searches only the current_scope.
3359 CODE says which kind of type the caller wants;
3360 it is RECORD_TYPE or UNION_TYPE or ENUMERAL_TYPE.
3361 If PLOC is not NULL and this returns non-null, it sets *PLOC to the
3362 location where the tag was defined.
3363 If the wrong kind of type is found, an error is reported. */
3366 lookup_tag (enum tree_code code
, tree name
, int thislevel_only
,
3369 struct c_binding
*b
= I_TAG_BINDING (name
);
3375 /* We only care about whether it's in this level if
3376 thislevel_only was set or it might be a type clash. */
3377 if (thislevel_only
|| TREE_CODE (b
->decl
) != code
)
3379 /* For our purposes, a tag in the external scope is the same as
3380 a tag in the file scope. (Primarily relevant to Objective-C
3381 and its builtin structure tags, which get pushed before the
3382 file scope is created.) */
3383 if (B_IN_CURRENT_SCOPE (b
)
3384 || (current_scope
== file_scope
&& B_IN_EXTERNAL_SCOPE (b
)))
3388 if (thislevel_only
&& !thislevel
)
3391 if (TREE_CODE (b
->decl
) != code
)
3393 /* Definition isn't the kind we were looking for. */
3394 pending_invalid_xref
= name
;
3395 pending_invalid_xref_location
= input_location
;
3397 /* If in the same binding level as a declaration as a tag
3398 of a different type, this must not be allowed to
3399 shadow that tag, so give the error immediately.
3400 (For example, "struct foo; union foo;" is invalid.) */
3402 pending_xref_error ();
3411 /* Print an error message now
3412 for a recent invalid struct, union or enum cross reference.
3413 We don't print them immediately because they are not invalid
3414 when used in the `struct foo;' construct for shadowing. */
3417 pending_xref_error (void)
3419 if (pending_invalid_xref
!= 0)
3420 error_at (pending_invalid_xref_location
, "%qE defined as wrong kind of tag",
3421 pending_invalid_xref
);
3422 pending_invalid_xref
= 0;
3426 /* Look up NAME in the current scope and its superiors
3427 in the namespace of variables, functions and typedefs.
3428 Return a ..._DECL node of some kind representing its definition,
3429 or return 0 if it is undefined. */
3432 lookup_name (tree name
)
3434 struct c_binding
*b
= I_SYMBOL_BINDING (name
);
3435 if (b
&& !b
->invisible
)
3440 /* Similar to `lookup_name' but look only at the indicated scope. */
3443 lookup_name_in_scope (tree name
, struct c_scope
*scope
)
3445 struct c_binding
*b
;
3447 for (b
= I_SYMBOL_BINDING (name
); b
; b
= b
->shadowed
)
3448 if (B_IN_SCOPE (b
, scope
))
3453 /* Create the predefined scalar types of C,
3454 and some nodes representing standard constants (0, 1, (void *) 0).
3455 Initialize the global scope.
3456 Make definitions for built-in primitive functions. */
3459 c_init_decl_processing (void)
3461 location_t save_loc
= input_location
;
3463 /* Initialize reserved words for parser. */
3466 current_function_decl
= 0;
3468 gcc_obstack_init (&parser_obstack
);
3470 /* Make the externals scope. */
3472 external_scope
= current_scope
;
3474 /* Declarations from c_common_nodes_and_builtins must not be associated
3475 with this input file, lest we get differences between using and not
3476 using preprocessed headers. */
3477 input_location
= BUILTINS_LOCATION
;
3479 build_common_tree_nodes (flag_signed_char
);
3481 c_common_nodes_and_builtins ();
3483 /* In C, comparisons and TRUTH_* expressions have type int. */
3484 truthvalue_type_node
= integer_type_node
;
3485 truthvalue_true_node
= integer_one_node
;
3486 truthvalue_false_node
= integer_zero_node
;
3488 /* Even in C99, which has a real boolean type. */
3489 pushdecl (build_decl (UNKNOWN_LOCATION
, TYPE_DECL
, get_identifier ("_Bool"),
3490 boolean_type_node
));
3492 input_location
= save_loc
;
3494 pedantic_lvalues
= true;
3496 make_fname_decl
= c_make_fname_decl
;
3497 start_fname_decls ();
3500 /* Create the VAR_DECL at LOC for __FUNCTION__ etc. ID is the name to
3501 give the decl, NAME is the initialization string and TYPE_DEP
3502 indicates whether NAME depended on the type of the function. As we
3503 don't yet implement delayed emission of static data, we mark the
3504 decl as emitted so it is not placed in the output. Anything using
3505 it must therefore pull out the STRING_CST initializer directly.
3509 c_make_fname_decl (location_t loc
, tree id
, int type_dep
)
3511 const char *name
= fname_as_string (type_dep
);
3512 tree decl
, type
, init
;
3513 size_t length
= strlen (name
);
3515 type
= build_array_type (char_type_node
,
3516 build_index_type (size_int (length
)));
3517 type
= c_build_qualified_type (type
, TYPE_QUAL_CONST
);
3519 decl
= build_decl (loc
, VAR_DECL
, id
, type
);
3521 TREE_STATIC (decl
) = 1;
3522 TREE_READONLY (decl
) = 1;
3523 DECL_ARTIFICIAL (decl
) = 1;
3525 init
= build_string (length
+ 1, name
);
3526 free (CONST_CAST (char *, name
));
3527 TREE_TYPE (init
) = type
;
3528 DECL_INITIAL (decl
) = init
;
3530 TREE_USED (decl
) = 1;
3532 if (current_function_decl
3533 /* For invalid programs like this:
3536 const char* p = __FUNCTION__;
3538 the __FUNCTION__ is believed to appear in K&R style function
3539 parameter declarator. In that case we still don't have
3541 && (!seen_error () || current_function_scope
))
3543 DECL_CONTEXT (decl
) = current_function_decl
;
3544 bind (id
, decl
, current_function_scope
,
3545 /*invisible=*/false, /*nested=*/false, UNKNOWN_LOCATION
);
3548 finish_decl (decl
, loc
, init
, NULL_TREE
, NULL_TREE
);
3554 c_builtin_function (tree decl
)
3556 tree type
= TREE_TYPE (decl
);
3557 tree id
= DECL_NAME (decl
);
3559 const char *name
= IDENTIFIER_POINTER (id
);
3560 C_DECL_BUILTIN_PROTOTYPE (decl
) = prototype_p (type
);
3562 /* Should never be called on a symbol with a preexisting meaning. */
3563 gcc_assert (!I_SYMBOL_BINDING (id
));
3565 bind (id
, decl
, external_scope
, /*invisible=*/true, /*nested=*/false,
3568 /* Builtins in the implementation namespace are made visible without
3569 needing to be explicitly declared. See push_file_scope. */
3570 if (name
[0] == '_' && (name
[1] == '_' || ISUPPER (name
[1])))
3572 DECL_CHAIN (decl
) = visible_builtins
;
3573 visible_builtins
= decl
;
3580 c_builtin_function_ext_scope (tree decl
)
3582 tree type
= TREE_TYPE (decl
);
3583 tree id
= DECL_NAME (decl
);
3585 const char *name
= IDENTIFIER_POINTER (id
);
3586 C_DECL_BUILTIN_PROTOTYPE (decl
) = prototype_p (type
);
3588 /* Should never be called on a symbol with a preexisting meaning. */
3589 gcc_assert (!I_SYMBOL_BINDING (id
));
3591 bind (id
, decl
, external_scope
, /*invisible=*/false, /*nested=*/false,
3594 /* Builtins in the implementation namespace are made visible without
3595 needing to be explicitly declared. See push_file_scope. */
3596 if (name
[0] == '_' && (name
[1] == '_' || ISUPPER (name
[1])))
3598 DECL_CHAIN (decl
) = visible_builtins
;
3599 visible_builtins
= decl
;
3605 /* Called when a declaration is seen that contains no names to declare.
3606 If its type is a reference to a structure, union or enum inherited
3607 from a containing scope, shadow that tag name for the current scope
3608 with a forward reference.
3609 If its type defines a new named structure or union
3610 or defines an enum, it is valid but we need not do anything here.
3611 Otherwise, it is an error. */
3614 shadow_tag (const struct c_declspecs
*declspecs
)
3616 shadow_tag_warned (declspecs
, 0);
3619 /* WARNED is 1 if we have done a pedwarn, 2 if we have done a warning,
3622 shadow_tag_warned (const struct c_declspecs
*declspecs
, int warned
)
3624 bool found_tag
= false;
3626 if (declspecs
->type
&& !declspecs
->default_int_p
&& !declspecs
->typedef_p
)
3628 tree value
= declspecs
->type
;
3629 enum tree_code code
= TREE_CODE (value
);
3631 if (code
== RECORD_TYPE
|| code
== UNION_TYPE
|| code
== ENUMERAL_TYPE
)
3632 /* Used to test also that TYPE_SIZE (value) != 0.
3633 That caused warning for `struct foo;' at top level in the file. */
3635 tree name
= TYPE_NAME (value
);
3640 if (declspecs
->restrict_p
)
3642 error ("invalid use of %<restrict%>");
3648 if (warned
!= 1 && code
!= ENUMERAL_TYPE
)
3649 /* Empty unnamed enum OK */
3651 pedwarn (input_location
, 0,
3652 "unnamed struct/union that defines no instances");
3656 else if (declspecs
->typespec_kind
!= ctsk_tagdef
3657 && declspecs
->typespec_kind
!= ctsk_tagfirstref
3658 && declspecs
->storage_class
!= csc_none
)
3661 pedwarn (input_location
, 0,
3662 "empty declaration with storage class specifier "
3663 "does not redeclare tag");
3665 pending_xref_error ();
3667 else if (declspecs
->typespec_kind
!= ctsk_tagdef
3668 && declspecs
->typespec_kind
!= ctsk_tagfirstref
3669 && (declspecs
->const_p
3670 || declspecs
->volatile_p
3671 || declspecs
->restrict_p
3672 || declspecs
->address_space
))
3675 pedwarn (input_location
, 0,
3676 "empty declaration with type qualifier "
3677 "does not redeclare tag");
3679 pending_xref_error ();
3683 pending_invalid_xref
= 0;
3684 t
= lookup_tag (code
, name
, 1, NULL
);
3688 t
= make_node (code
);
3689 pushtag (input_location
, name
, t
);
3695 if (warned
!= 1 && !in_system_header
)
3697 pedwarn (input_location
, 0,
3698 "useless type name in empty declaration");
3703 else if (warned
!= 1 && !in_system_header
&& declspecs
->typedef_p
)
3705 pedwarn (input_location
, 0, "useless type name in empty declaration");
3709 pending_invalid_xref
= 0;
3711 if (declspecs
->inline_p
)
3713 error ("%<inline%> in empty declaration");
3717 if (current_scope
== file_scope
&& declspecs
->storage_class
== csc_auto
)
3719 error ("%<auto%> in file-scope empty declaration");
3723 if (current_scope
== file_scope
&& declspecs
->storage_class
== csc_register
)
3725 error ("%<register%> in file-scope empty declaration");
3729 if (!warned
&& !in_system_header
&& declspecs
->storage_class
!= csc_none
)
3731 warning (0, "useless storage class specifier in empty declaration");
3735 if (!warned
&& !in_system_header
&& declspecs
->thread_p
)
3737 warning (0, "useless %<__thread%> in empty declaration");
3741 if (!warned
&& !in_system_header
&& (declspecs
->const_p
3742 || declspecs
->volatile_p
3743 || declspecs
->restrict_p
3744 || declspecs
->address_space
))
3746 warning (0, "useless type qualifier in empty declaration");
3753 pedwarn (input_location
, 0, "empty declaration");
3758 /* Return the qualifiers from SPECS as a bitwise OR of TYPE_QUAL_*
3759 bits. SPECS represents declaration specifiers that the grammar
3760 only permits to contain type qualifiers and attributes. */
3763 quals_from_declspecs (const struct c_declspecs
*specs
)
3765 int quals
= ((specs
->const_p
? TYPE_QUAL_CONST
: 0)
3766 | (specs
->volatile_p
? TYPE_QUAL_VOLATILE
: 0)
3767 | (specs
->restrict_p
? TYPE_QUAL_RESTRICT
: 0)
3768 | (ENCODE_QUAL_ADDR_SPACE (specs
->address_space
)));
3769 gcc_assert (!specs
->type
3770 && !specs
->decl_attr
3771 && specs
->typespec_word
== cts_none
3772 && specs
->storage_class
== csc_none
3773 && !specs
->typedef_p
3774 && !specs
->explicit_signed_p
3775 && !specs
->deprecated_p
3777 && !specs
->long_long_p
3780 && !specs
->unsigned_p
3781 && !specs
->complex_p
3783 && !specs
->thread_p
);
3787 /* Construct an array declarator. LOC is the location of the
3788 beginning of the array (usually the opening brace). EXPR is the
3789 expression inside [], or NULL_TREE. QUALS are the type qualifiers
3790 inside the [] (to be applied to the pointer to which a parameter
3791 array is converted). STATIC_P is true if "static" is inside the
3792 [], false otherwise. VLA_UNSPEC_P is true if the array is [*], a
3793 VLA of unspecified length which is nevertheless a complete type,
3794 false otherwise. The field for the contained declarator is left to
3795 be filled in by set_array_declarator_inner. */
3797 struct c_declarator
*
3798 build_array_declarator (location_t loc
,
3799 tree expr
, struct c_declspecs
*quals
, bool static_p
,
3802 struct c_declarator
*declarator
= XOBNEW (&parser_obstack
,
3803 struct c_declarator
);
3804 declarator
->id_loc
= loc
;
3805 declarator
->kind
= cdk_array
;
3806 declarator
->declarator
= 0;
3807 declarator
->u
.array
.dimen
= expr
;
3810 declarator
->u
.array
.attrs
= quals
->attrs
;
3811 declarator
->u
.array
.quals
= quals_from_declspecs (quals
);
3815 declarator
->u
.array
.attrs
= NULL_TREE
;
3816 declarator
->u
.array
.quals
= 0;
3818 declarator
->u
.array
.static_p
= static_p
;
3819 declarator
->u
.array
.vla_unspec_p
= vla_unspec_p
;
3822 if (static_p
|| quals
!= NULL
)
3823 pedwarn (loc
, OPT_pedantic
,
3824 "ISO C90 does not support %<static%> or type "
3825 "qualifiers in parameter array declarators");
3827 pedwarn (loc
, OPT_pedantic
,
3828 "ISO C90 does not support %<[*]%> array declarators");
3832 if (!current_scope
->parm_flag
)
3835 error_at (loc
, "%<[*]%> not allowed in other than "
3836 "function prototype scope");
3837 declarator
->u
.array
.vla_unspec_p
= false;
3840 current_scope
->had_vla_unspec
= true;
3845 /* Set the contained declarator of an array declarator. DECL is the
3846 declarator, as constructed by build_array_declarator; INNER is what
3847 appears on the left of the []. */
3849 struct c_declarator
*
3850 set_array_declarator_inner (struct c_declarator
*decl
,
3851 struct c_declarator
*inner
)
3853 decl
->declarator
= inner
;
3857 /* INIT is a constructor that forms DECL's initializer. If the final
3858 element initializes a flexible array field, add the size of that
3859 initializer to DECL's size. */
3862 add_flexible_array_elts_to_size (tree decl
, tree init
)
3866 if (VEC_empty (constructor_elt
, CONSTRUCTOR_ELTS (init
)))
3869 elt
= VEC_last (constructor_elt
, CONSTRUCTOR_ELTS (init
))->value
;
3870 type
= TREE_TYPE (elt
);
3871 if (TREE_CODE (type
) == ARRAY_TYPE
3872 && TYPE_SIZE (type
) == NULL_TREE
3873 && TYPE_DOMAIN (type
) != NULL_TREE
3874 && TYPE_MAX_VALUE (TYPE_DOMAIN (type
)) == NULL_TREE
)
3876 complete_array_type (&type
, elt
, false);
3878 = size_binop (PLUS_EXPR
, DECL_SIZE (decl
), TYPE_SIZE (type
));
3879 DECL_SIZE_UNIT (decl
)
3880 = size_binop (PLUS_EXPR
, DECL_SIZE_UNIT (decl
), TYPE_SIZE_UNIT (type
));
3884 /* Decode a "typename", such as "int **", returning a ..._TYPE node.
3885 Set *EXPR, if EXPR not NULL, to any expression to be evaluated
3886 before the type name, and set *EXPR_CONST_OPERANDS, if
3887 EXPR_CONST_OPERANDS not NULL, to indicate whether the type name may
3888 appear in a constant expression. */
3891 groktypename (struct c_type_name
*type_name
, tree
*expr
,
3892 bool *expr_const_operands
)
3895 tree attrs
= type_name
->specs
->attrs
;
3897 type_name
->specs
->attrs
= NULL_TREE
;
3899 type
= grokdeclarator (type_name
->declarator
, type_name
->specs
, TYPENAME
,
3900 false, NULL
, &attrs
, expr
, expr_const_operands
,
3903 /* Apply attributes. */
3904 decl_attributes (&type
, attrs
, 0);
3909 /* Decode a declarator in an ordinary declaration or data definition.
3910 This is called as soon as the type information and variable name
3911 have been parsed, before parsing the initializer if any.
3912 Here we create the ..._DECL node, fill in its type,
3913 and put it on the list of decls for the current context.
3914 The ..._DECL node is returned as the value.
3916 Exception: for arrays where the length is not specified,
3917 the type is left null, to be filled in by `finish_decl'.
3919 Function definitions do not come here; they go to start_function
3920 instead. However, external and forward declarations of functions
3921 do go through here. Structure field declarations are done by
3922 grokfield and not through here. */
3925 start_decl (struct c_declarator
*declarator
, struct c_declspecs
*declspecs
,
3926 bool initialized
, tree attributes
)
3930 tree expr
= NULL_TREE
;
3931 enum deprecated_states deprecated_state
= DEPRECATED_NORMAL
;
3933 /* An object declared as __attribute__((deprecated)) suppresses
3934 warnings of uses of other deprecated items. */
3935 if (lookup_attribute ("deprecated", attributes
))
3936 deprecated_state
= DEPRECATED_SUPPRESS
;
3938 decl
= grokdeclarator (declarator
, declspecs
,
3939 NORMAL
, initialized
, NULL
, &attributes
, &expr
, NULL
,
3947 if (TREE_CODE (decl
) != FUNCTION_DECL
&& MAIN_NAME_P (DECL_NAME (decl
)))
3948 warning (OPT_Wmain
, "%q+D is usually a function", decl
);
3951 /* Is it valid for this decl to have an initializer at all?
3952 If not, set INITIALIZED to zero, which will indirectly
3953 tell 'finish_decl' to ignore the initializer once it is parsed. */
3954 switch (TREE_CODE (decl
))
3957 error ("typedef %qD is initialized (use __typeof__ instead)", decl
);
3962 error ("function %qD is initialized like a variable", decl
);
3967 /* DECL_INITIAL in a PARM_DECL is really DECL_ARG_TYPE. */
3968 error ("parameter %qD is initialized", decl
);
3973 /* Don't allow initializations for incomplete types except for
3974 arrays which might be completed by the initialization. */
3976 /* This can happen if the array size is an undefined macro.
3977 We already gave a warning, so we don't need another one. */
3978 if (TREE_TYPE (decl
) == error_mark_node
)
3980 else if (COMPLETE_TYPE_P (TREE_TYPE (decl
)))
3982 /* A complete type is ok if size is fixed. */
3984 if (TREE_CODE (TYPE_SIZE (TREE_TYPE (decl
))) != INTEGER_CST
3985 || C_DECL_VARIABLE_SIZE (decl
))
3987 error ("variable-sized object may not be initialized");
3991 else if (TREE_CODE (TREE_TYPE (decl
)) != ARRAY_TYPE
)
3993 error ("variable %qD has initializer but incomplete type", decl
);
3996 else if (C_DECL_VARIABLE_SIZE (decl
))
3998 /* Although C99 is unclear about whether incomplete arrays
3999 of VLAs themselves count as VLAs, it does not make
4000 sense to permit them to be initialized given that
4001 ordinary VLAs may not be initialized. */
4002 error ("variable-sized object may not be initialized");
4009 if (current_scope
== file_scope
)
4010 TREE_STATIC (decl
) = 1;
4012 /* Tell 'pushdecl' this is an initialized decl
4013 even though we don't yet have the initializer expression.
4014 Also tell 'finish_decl' it may store the real initializer. */
4015 DECL_INITIAL (decl
) = error_mark_node
;
4018 /* If this is a function declaration, write a record describing it to the
4019 prototypes file (if requested). */
4021 if (TREE_CODE (decl
) == FUNCTION_DECL
)
4022 gen_aux_info_record (decl
, 0, 0, prototype_p (TREE_TYPE (decl
)));
4024 /* ANSI specifies that a tentative definition which is not merged with
4025 a non-tentative definition behaves exactly like a definition with an
4026 initializer equal to zero. (Section 3.7.2)
4028 -fno-common gives strict ANSI behavior, though this tends to break
4029 a large body of code that grew up without this rule.
4031 Thread-local variables are never common, since there's no entrenched
4032 body of code to break, and it allows more efficient variable references
4033 in the presence of dynamic linking. */
4035 if (TREE_CODE (decl
) == VAR_DECL
4037 && TREE_PUBLIC (decl
)
4038 && !DECL_THREAD_LOCAL_P (decl
)
4040 DECL_COMMON (decl
) = 1;
4042 /* Set attributes here so if duplicate decl, will have proper attributes. */
4043 decl_attributes (&decl
, attributes
, 0);
4045 /* Handle gnu_inline attribute. */
4046 if (declspecs
->inline_p
4047 && !flag_gnu89_inline
4048 && TREE_CODE (decl
) == FUNCTION_DECL
4049 && (lookup_attribute ("gnu_inline", DECL_ATTRIBUTES (decl
))
4050 || current_function_decl
))
4052 if (declspecs
->storage_class
== csc_auto
&& current_scope
!= file_scope
)
4054 else if (declspecs
->storage_class
!= csc_static
)
4055 DECL_EXTERNAL (decl
) = !DECL_EXTERNAL (decl
);
4058 if (TREE_CODE (decl
) == FUNCTION_DECL
4059 && targetm
.calls
.promote_prototypes (TREE_TYPE (decl
)))
4061 struct c_declarator
*ce
= declarator
;
4063 if (ce
->kind
== cdk_pointer
)
4064 ce
= declarator
->declarator
;
4065 if (ce
->kind
== cdk_function
)
4067 tree args
= ce
->u
.arg_info
->parms
;
4068 for (; args
; args
= DECL_CHAIN (args
))
4070 tree type
= TREE_TYPE (args
);
4071 if (type
&& INTEGRAL_TYPE_P (type
)
4072 && TYPE_PRECISION (type
) < TYPE_PRECISION (integer_type_node
))
4073 DECL_ARG_TYPE (args
) = integer_type_node
;
4078 if (TREE_CODE (decl
) == FUNCTION_DECL
4079 && DECL_DECLARED_INLINE_P (decl
)
4080 && DECL_UNINLINABLE (decl
)
4081 && lookup_attribute ("noinline", DECL_ATTRIBUTES (decl
)))
4082 warning (OPT_Wattributes
, "inline function %q+D given attribute noinline",
4085 /* C99 6.7.4p3: An inline definition of a function with external
4086 linkage shall not contain a definition of a modifiable object
4087 with static storage duration... */
4088 if (TREE_CODE (decl
) == VAR_DECL
4089 && current_scope
!= file_scope
4090 && TREE_STATIC (decl
)
4091 && !TREE_READONLY (decl
)
4092 && DECL_DECLARED_INLINE_P (current_function_decl
)
4093 && DECL_EXTERNAL (current_function_decl
))
4094 record_inline_static (input_location
, current_function_decl
,
4095 decl
, csi_modifiable
);
4097 if (c_dialect_objc ()
4098 && (TREE_CODE (decl
) == VAR_DECL
4099 || TREE_CODE (decl
) == FUNCTION_DECL
))
4100 objc_check_global_decl (decl
);
4102 /* Add this decl to the current scope.
4103 TEM may equal DECL or it may be a previous decl of the same name. */
4104 tem
= pushdecl (decl
);
4106 if (initialized
&& DECL_EXTERNAL (tem
))
4108 DECL_EXTERNAL (tem
) = 0;
4109 TREE_STATIC (tem
) = 1;
4115 /* Subroutine of finish_decl. TYPE is the type of an uninitialized object
4116 DECL or the non-array element type if DECL is an uninitialized array.
4117 If that type has a const member, diagnose this. */
4120 diagnose_uninitialized_cst_member (tree decl
, tree type
)
4123 for (field
= TYPE_FIELDS (type
); field
; field
= TREE_CHAIN (field
))
4126 if (TREE_CODE (field
) != FIELD_DECL
)
4128 field_type
= strip_array_types (TREE_TYPE (field
));
4130 if (TYPE_QUALS (field_type
) & TYPE_QUAL_CONST
)
4132 warning_at (DECL_SOURCE_LOCATION (decl
), OPT_Wc___compat
,
4133 "uninitialized const member in %qT is invalid in C++",
4134 strip_array_types (TREE_TYPE (decl
)));
4135 inform (DECL_SOURCE_LOCATION (field
), "%qD should be initialized", field
);
4138 if (TREE_CODE (field_type
) == RECORD_TYPE
4139 || TREE_CODE (field_type
) == UNION_TYPE
)
4140 diagnose_uninitialized_cst_member (decl
, field_type
);
4144 /* Finish processing of a declaration;
4145 install its initial value.
4146 If ORIGTYPE is not NULL_TREE, it is the original type of INIT.
4147 If the length of an array type is not known before,
4148 it must be determined now, from the initial value, or it is an error.
4150 INIT_LOC is the location of the initial value. */
4153 finish_decl (tree decl
, location_t init_loc
, tree init
,
4154 tree origtype
, tree asmspec_tree
)
4157 bool was_incomplete
= (DECL_SIZE (decl
) == 0);
4158 const char *asmspec
= 0;
4160 /* If a name was specified, get the string. */
4161 if ((TREE_CODE (decl
) == FUNCTION_DECL
|| TREE_CODE (decl
) == VAR_DECL
)
4162 && DECL_FILE_SCOPE_P (decl
))
4163 asmspec_tree
= maybe_apply_renaming_pragma (decl
, asmspec_tree
);
4165 asmspec
= TREE_STRING_POINTER (asmspec_tree
);
4167 if (TREE_CODE (decl
) == VAR_DECL
4168 && TREE_STATIC (decl
)
4169 && global_bindings_p ())
4170 /* So decl is a global variable. Record the types it uses
4171 so that we can decide later to emit debug info for them. */
4172 record_types_used_by_current_var_decl (decl
);
4174 /* If `start_decl' didn't like having an initialization, ignore it now. */
4175 if (init
!= 0 && DECL_INITIAL (decl
) == 0)
4178 /* Don't crash if parm is initialized. */
4179 if (TREE_CODE (decl
) == PARM_DECL
)
4183 store_init_value (init_loc
, decl
, init
, origtype
);
4185 if (c_dialect_objc () && (TREE_CODE (decl
) == VAR_DECL
4186 || TREE_CODE (decl
) == FUNCTION_DECL
4187 || TREE_CODE (decl
) == FIELD_DECL
))
4188 objc_check_decl (decl
);
4190 type
= TREE_TYPE (decl
);
4192 /* Deduce size of array from initialization, if not already known. */
4193 if (TREE_CODE (type
) == ARRAY_TYPE
4194 && TYPE_DOMAIN (type
) == 0
4195 && TREE_CODE (decl
) != TYPE_DECL
)
4198 = (TREE_STATIC (decl
)
4199 /* Even if pedantic, an external linkage array
4200 may have incomplete type at first. */
4201 ? pedantic
&& !TREE_PUBLIC (decl
)
4202 : !DECL_EXTERNAL (decl
));
4204 = complete_array_type (&TREE_TYPE (decl
), DECL_INITIAL (decl
),
4207 /* Get the completed type made by complete_array_type. */
4208 type
= TREE_TYPE (decl
);
4213 error ("initializer fails to determine size of %q+D", decl
);
4218 error ("array size missing in %q+D", decl
);
4219 /* If a `static' var's size isn't known,
4220 make it extern as well as static, so it does not get
4222 If it is not `static', then do not mark extern;
4223 finish_incomplete_decl will give it a default size
4224 and it will get allocated. */
4225 else if (!pedantic
&& TREE_STATIC (decl
) && !TREE_PUBLIC (decl
))
4226 DECL_EXTERNAL (decl
) = 1;
4230 error ("zero or negative size array %q+D", decl
);
4234 /* For global variables, update the copy of the type that
4235 exists in the binding. */
4236 if (TREE_PUBLIC (decl
))
4238 struct c_binding
*b_ext
= I_SYMBOL_BINDING (DECL_NAME (decl
));
4239 while (b_ext
&& !B_IN_EXTERNAL_SCOPE (b_ext
))
4240 b_ext
= b_ext
->shadowed
;
4243 if (b_ext
->u
.type
&& comptypes (b_ext
->u
.type
, type
))
4244 b_ext
->u
.type
= composite_type (b_ext
->u
.type
, type
);
4246 b_ext
->u
.type
= type
;
4255 if (DECL_INITIAL (decl
))
4256 TREE_TYPE (DECL_INITIAL (decl
)) = type
;
4258 layout_decl (decl
, 0);
4261 if (TREE_CODE (decl
) == VAR_DECL
)
4263 if (init
&& TREE_CODE (init
) == CONSTRUCTOR
)
4264 add_flexible_array_elts_to_size (decl
, init
);
4266 if (DECL_SIZE (decl
) == 0 && TREE_TYPE (decl
) != error_mark_node
4267 && COMPLETE_TYPE_P (TREE_TYPE (decl
)))
4268 layout_decl (decl
, 0);
4270 if (DECL_SIZE (decl
) == 0
4271 /* Don't give an error if we already gave one earlier. */
4272 && TREE_TYPE (decl
) != error_mark_node
4273 && (TREE_STATIC (decl
)
4274 /* A static variable with an incomplete type
4275 is an error if it is initialized.
4276 Also if it is not file scope.
4277 Otherwise, let it through, but if it is not `extern'
4278 then it may cause an error message later. */
4279 ? (DECL_INITIAL (decl
) != 0
4280 || !DECL_FILE_SCOPE_P (decl
))
4281 /* An automatic variable with an incomplete type
4283 : !DECL_EXTERNAL (decl
)))
4285 error ("storage size of %q+D isn%'t known", decl
);
4286 TREE_TYPE (decl
) = error_mark_node
;
4289 if ((DECL_EXTERNAL (decl
) || TREE_STATIC (decl
))
4290 && DECL_SIZE (decl
) != 0)
4292 if (TREE_CODE (DECL_SIZE (decl
)) == INTEGER_CST
)
4293 constant_expression_warning (DECL_SIZE (decl
));
4296 error ("storage size of %q+D isn%'t constant", decl
);
4297 TREE_TYPE (decl
) = error_mark_node
;
4301 if (TREE_USED (type
))
4303 TREE_USED (decl
) = 1;
4304 DECL_READ_P (decl
) = 1;
4308 /* If this is a function and an assembler name is specified, reset DECL_RTL
4309 so we can give it its new name. Also, update built_in_decls if it
4310 was a normal built-in. */
4311 if (TREE_CODE (decl
) == FUNCTION_DECL
&& asmspec
)
4313 if (DECL_BUILT_IN_CLASS (decl
) == BUILT_IN_NORMAL
)
4314 set_builtin_user_assembler_name (decl
, asmspec
);
4315 set_user_assembler_name (decl
, asmspec
);
4318 /* If #pragma weak was used, mark the decl weak now. */
4319 maybe_apply_pragma_weak (decl
);
4321 /* Output the assembler code and/or RTL code for variables and functions,
4322 unless the type is an undefined structure or union.
4323 If not, it will get done when the type is completed. */
4325 if (TREE_CODE (decl
) == VAR_DECL
|| TREE_CODE (decl
) == FUNCTION_DECL
)
4327 /* Determine the ELF visibility. */
4328 if (TREE_PUBLIC (decl
))
4329 c_determine_visibility (decl
);
4331 /* This is a no-op in c-lang.c or something real in objc-act.c. */
4332 if (c_dialect_objc ())
4333 objc_check_decl (decl
);
4337 /* If this is not a static variable, issue a warning.
4338 It doesn't make any sense to give an ASMSPEC for an
4339 ordinary, non-register local variable. Historically,
4340 GCC has accepted -- but ignored -- the ASMSPEC in
4342 if (!DECL_FILE_SCOPE_P (decl
)
4343 && TREE_CODE (decl
) == VAR_DECL
4344 && !C_DECL_REGISTER (decl
)
4345 && !TREE_STATIC (decl
))
4346 warning (0, "ignoring asm-specifier for non-static local "
4347 "variable %q+D", decl
);
4349 set_user_assembler_name (decl
, asmspec
);
4352 if (DECL_FILE_SCOPE_P (decl
))
4354 if (DECL_INITIAL (decl
) == NULL_TREE
4355 || DECL_INITIAL (decl
) == error_mark_node
)
4356 /* Don't output anything
4357 when a tentative file-scope definition is seen.
4358 But at end of compilation, do output code for them. */
4359 DECL_DEFER_OUTPUT (decl
) = 1;
4360 rest_of_decl_compilation (decl
, true, 0);
4364 /* In conjunction with an ASMSPEC, the `register'
4365 keyword indicates that we should place the variable
4366 in a particular register. */
4367 if (asmspec
&& C_DECL_REGISTER (decl
))
4369 DECL_HARD_REGISTER (decl
) = 1;
4370 /* This cannot be done for a structure with volatile
4371 fields, on which DECL_REGISTER will have been
4373 if (!DECL_REGISTER (decl
))
4374 error ("cannot put object with volatile field into register");
4377 if (TREE_CODE (decl
) != FUNCTION_DECL
)
4379 /* If we're building a variable sized type, and we might be
4380 reachable other than via the top of the current binding
4381 level, then create a new BIND_EXPR so that we deallocate
4382 the object at the right time. */
4383 /* Note that DECL_SIZE can be null due to errors. */
4384 if (DECL_SIZE (decl
)
4385 && !TREE_CONSTANT (DECL_SIZE (decl
))
4386 && STATEMENT_LIST_HAS_LABEL (cur_stmt_list
))
4389 bind
= build3 (BIND_EXPR
, void_type_node
, NULL
, NULL
, NULL
);
4390 TREE_SIDE_EFFECTS (bind
) = 1;
4392 BIND_EXPR_BODY (bind
) = push_stmt_list ();
4394 add_stmt (build_stmt (DECL_SOURCE_LOCATION (decl
),
4400 if (!DECL_FILE_SCOPE_P (decl
))
4402 /* Recompute the RTL of a local array now
4403 if it used to be an incomplete type. */
4405 && !TREE_STATIC (decl
) && !DECL_EXTERNAL (decl
))
4407 /* If we used it already as memory, it must stay in memory. */
4408 TREE_ADDRESSABLE (decl
) = TREE_USED (decl
);
4409 /* If it's still incomplete now, no init will save it. */
4410 if (DECL_SIZE (decl
) == 0)
4411 DECL_INITIAL (decl
) = 0;
4416 if (TREE_CODE (decl
) == TYPE_DECL
)
4418 if (!DECL_FILE_SCOPE_P (decl
)
4419 && variably_modified_type_p (TREE_TYPE (decl
), NULL_TREE
))
4420 add_stmt (build_stmt (DECL_SOURCE_LOCATION (decl
), DECL_EXPR
, decl
));
4422 rest_of_decl_compilation (decl
, DECL_FILE_SCOPE_P (decl
), 0);
4425 /* Install a cleanup (aka destructor) if one was given. */
4426 if (TREE_CODE (decl
) == VAR_DECL
&& !TREE_STATIC (decl
))
4428 tree attr
= lookup_attribute ("cleanup", DECL_ATTRIBUTES (decl
));
4431 tree cleanup_id
= TREE_VALUE (TREE_VALUE (attr
));
4432 tree cleanup_decl
= lookup_name (cleanup_id
);
4436 /* Build "cleanup(&decl)" for the destructor. */
4437 cleanup
= build_unary_op (input_location
, ADDR_EXPR
, decl
, 0);
4438 vec
= VEC_alloc (tree
, gc
, 1);
4439 VEC_quick_push (tree
, vec
, cleanup
);
4440 cleanup
= build_function_call_vec (DECL_SOURCE_LOCATION (decl
),
4441 cleanup_decl
, vec
, NULL
);
4442 VEC_free (tree
, gc
, vec
);
4444 /* Don't warn about decl unused; the cleanup uses it. */
4445 TREE_USED (decl
) = 1;
4446 TREE_USED (cleanup_decl
) = 1;
4447 DECL_READ_P (decl
) = 1;
4449 push_cleanup (decl
, cleanup
, false);
4454 && TREE_CODE (decl
) == VAR_DECL
4455 && !DECL_EXTERNAL (decl
)
4456 && DECL_INITIAL (decl
) == NULL_TREE
)
4458 type
= strip_array_types (type
);
4459 if (TREE_READONLY (decl
))
4460 warning_at (DECL_SOURCE_LOCATION (decl
), OPT_Wc___compat
,
4461 "uninitialized const %qD is invalid in C++", decl
);
4462 else if ((TREE_CODE (type
) == RECORD_TYPE
4463 || TREE_CODE (type
) == UNION_TYPE
)
4464 && C_TYPE_FIELDS_READONLY (type
))
4465 diagnose_uninitialized_cst_member (decl
, type
);
4469 /* Given a parsed parameter declaration, decode it into a PARM_DECL.
4470 EXPR is NULL or a pointer to an expression that needs to be
4471 evaluated for the side effects of array size expressions in the
4475 grokparm (const struct c_parm
*parm
, tree
*expr
)
4477 tree attrs
= parm
->attrs
;
4478 tree decl
= grokdeclarator (parm
->declarator
, parm
->specs
, PARM
, false,
4479 NULL
, &attrs
, expr
, NULL
, DEPRECATED_NORMAL
);
4481 decl_attributes (&decl
, attrs
, 0);
4486 /* Given a parsed parameter declaration, decode it into a PARM_DECL
4487 and push that on the current scope. EXPR is a pointer to an
4488 expression that needs to be evaluated for the side effects of array
4489 size expressions in the parameters. */
4492 push_parm_decl (const struct c_parm
*parm
, tree
*expr
)
4494 tree attrs
= parm
->attrs
;
4497 decl
= grokdeclarator (parm
->declarator
, parm
->specs
, PARM
, false, NULL
,
4498 &attrs
, expr
, NULL
, DEPRECATED_NORMAL
);
4499 decl_attributes (&decl
, attrs
, 0);
4501 decl
= pushdecl (decl
);
4503 finish_decl (decl
, input_location
, NULL_TREE
, NULL_TREE
, NULL_TREE
);
4506 /* Mark all the parameter declarations to date as forward decls.
4507 Also diagnose use of this extension. */
4510 mark_forward_parm_decls (void)
4512 struct c_binding
*b
;
4514 if (pedantic
&& !current_scope
->warned_forward_parm_decls
)
4516 pedwarn (input_location
, OPT_pedantic
,
4517 "ISO C forbids forward parameter declarations");
4518 current_scope
->warned_forward_parm_decls
= true;
4521 for (b
= current_scope
->bindings
; b
; b
= b
->prev
)
4522 if (TREE_CODE (b
->decl
) == PARM_DECL
)
4523 TREE_ASM_WRITTEN (b
->decl
) = 1;
4526 /* Build a COMPOUND_LITERAL_EXPR. TYPE is the type given in the compound
4527 literal, which may be an incomplete array type completed by the
4528 initializer; INIT is a CONSTRUCTOR at LOC that initializes the compound
4529 literal. NON_CONST is true if the initializers contain something
4530 that cannot occur in a constant expression. */
4533 build_compound_literal (location_t loc
, tree type
, tree init
, bool non_const
)
4535 /* We do not use start_decl here because we have a type, not a declarator;
4536 and do not use finish_decl because the decl should be stored inside
4537 the COMPOUND_LITERAL_EXPR rather than added elsewhere as a DECL_EXPR. */
4542 if (type
== error_mark_node
4543 || init
== error_mark_node
)
4544 return error_mark_node
;
4546 decl
= build_decl (loc
, VAR_DECL
, NULL_TREE
, type
);
4547 DECL_EXTERNAL (decl
) = 0;
4548 TREE_PUBLIC (decl
) = 0;
4549 TREE_STATIC (decl
) = (current_scope
== file_scope
);
4550 DECL_CONTEXT (decl
) = current_function_decl
;
4551 TREE_USED (decl
) = 1;
4552 DECL_READ_P (decl
) = 1;
4553 TREE_TYPE (decl
) = type
;
4554 TREE_READONLY (decl
) = TYPE_READONLY (type
);
4555 store_init_value (loc
, decl
, init
, NULL_TREE
);
4557 if (TREE_CODE (type
) == ARRAY_TYPE
&& !COMPLETE_TYPE_P (type
))
4559 int failure
= complete_array_type (&TREE_TYPE (decl
),
4560 DECL_INITIAL (decl
), true);
4561 gcc_assert (!failure
);
4563 type
= TREE_TYPE (decl
);
4564 TREE_TYPE (DECL_INITIAL (decl
)) = type
;
4567 if (type
== error_mark_node
|| !COMPLETE_TYPE_P (type
))
4568 return error_mark_node
;
4570 stmt
= build_stmt (DECL_SOURCE_LOCATION (decl
), DECL_EXPR
, decl
);
4571 complit
= build1 (COMPOUND_LITERAL_EXPR
, type
, stmt
);
4572 TREE_SIDE_EFFECTS (complit
) = 1;
4574 layout_decl (decl
, 0);
4576 if (TREE_STATIC (decl
))
4578 /* This decl needs a name for the assembler output. */
4579 set_compound_literal_name (decl
);
4580 DECL_DEFER_OUTPUT (decl
) = 1;
4581 DECL_COMDAT (decl
) = 1;
4582 DECL_ARTIFICIAL (decl
) = 1;
4583 DECL_IGNORED_P (decl
) = 1;
4585 rest_of_decl_compilation (decl
, 1, 0);
4590 complit
= build2 (C_MAYBE_CONST_EXPR
, type
, NULL
, complit
);
4591 C_MAYBE_CONST_EXPR_NON_CONST (complit
) = 1;
4597 /* Check the type of a compound literal. Here we just check that it
4598 is valid for C++. */
4601 check_compound_literal_type (location_t loc
, struct c_type_name
*type_name
)
4604 && (type_name
->specs
->typespec_kind
== ctsk_tagdef
4605 || type_name
->specs
->typespec_kind
== ctsk_tagfirstref
))
4606 warning_at (loc
, OPT_Wc___compat
,
4607 "defining a type in a compound literal is invalid in C++");
4610 /* Determine whether TYPE is a structure with a flexible array member,
4611 or a union containing such a structure (possibly recursively). */
4614 flexible_array_type_p (tree type
)
4617 switch (TREE_CODE (type
))
4620 x
= TYPE_FIELDS (type
);
4623 while (DECL_CHAIN (x
) != NULL_TREE
)
4625 if (TREE_CODE (TREE_TYPE (x
)) == ARRAY_TYPE
4626 && TYPE_SIZE (TREE_TYPE (x
)) == NULL_TREE
4627 && TYPE_DOMAIN (TREE_TYPE (x
)) != NULL_TREE
4628 && TYPE_MAX_VALUE (TYPE_DOMAIN (TREE_TYPE (x
))) == NULL_TREE
)
4632 for (x
= TYPE_FIELDS (type
); x
!= NULL_TREE
; x
= DECL_CHAIN (x
))
4634 if (flexible_array_type_p (TREE_TYPE (x
)))
4643 /* Performs sanity checks on the TYPE and WIDTH of the bit-field NAME,
4644 replacing with appropriate values if they are invalid. */
4646 check_bitfield_type_and_width (tree
*type
, tree
*width
, tree orig_name
)
4649 unsigned int max_width
;
4650 unsigned HOST_WIDE_INT w
;
4651 const char *name
= (orig_name
4652 ? identifier_to_locale (IDENTIFIER_POINTER (orig_name
))
4653 : _("<anonymous>"));
4655 /* Detect and ignore out of range field width and process valid
4657 if (!INTEGRAL_TYPE_P (TREE_TYPE (*width
)))
4659 error ("bit-field %qs width not an integer constant", name
);
4660 *width
= integer_one_node
;
4664 if (TREE_CODE (*width
) != INTEGER_CST
)
4666 *width
= c_fully_fold (*width
, false, NULL
);
4667 if (TREE_CODE (*width
) == INTEGER_CST
)
4668 pedwarn (input_location
, OPT_pedantic
,
4669 "bit-field %qs width not an integer constant expression",
4672 if (TREE_CODE (*width
) != INTEGER_CST
)
4674 error ("bit-field %qs width not an integer constant", name
);
4675 *width
= integer_one_node
;
4677 constant_expression_warning (*width
);
4678 if (tree_int_cst_sgn (*width
) < 0)
4680 error ("negative width in bit-field %qs", name
);
4681 *width
= integer_one_node
;
4683 else if (integer_zerop (*width
) && orig_name
)
4685 error ("zero width for bit-field %qs", name
);
4686 *width
= integer_one_node
;
4690 /* Detect invalid bit-field type. */
4691 if (TREE_CODE (*type
) != INTEGER_TYPE
4692 && TREE_CODE (*type
) != BOOLEAN_TYPE
4693 && TREE_CODE (*type
) != ENUMERAL_TYPE
)
4695 error ("bit-field %qs has invalid type", name
);
4696 *type
= unsigned_type_node
;
4699 type_mv
= TYPE_MAIN_VARIANT (*type
);
4700 if (!in_system_header
4701 && type_mv
!= integer_type_node
4702 && type_mv
!= unsigned_type_node
4703 && type_mv
!= boolean_type_node
)
4704 pedwarn (input_location
, OPT_pedantic
,
4705 "type of bit-field %qs is a GCC extension", name
);
4707 max_width
= TYPE_PRECISION (*type
);
4709 if (0 < compare_tree_int (*width
, max_width
))
4711 error ("width of %qs exceeds its type", name
);
4713 *width
= build_int_cst (integer_type_node
, w
);
4716 w
= tree_low_cst (*width
, 1);
4718 if (TREE_CODE (*type
) == ENUMERAL_TYPE
)
4720 struct lang_type
*lt
= TYPE_LANG_SPECIFIC (*type
);
4722 || w
< tree_int_cst_min_precision (lt
->enum_min
, TYPE_UNSIGNED (*type
))
4723 || w
< tree_int_cst_min_precision (lt
->enum_max
, TYPE_UNSIGNED (*type
)))
4724 warning (0, "%qs is narrower than values of its type", name
);
4730 /* Print warning about variable length array if necessary. */
4733 warn_variable_length_array (tree name
, tree size
)
4735 int const_size
= TREE_CONSTANT (size
);
4737 if (!flag_isoc99
&& pedantic
&& warn_vla
!= 0)
4742 pedwarn (input_location
, OPT_Wvla
,
4743 "ISO C90 forbids array %qE whose size "
4744 "can%'t be evaluated",
4747 pedwarn (input_location
, OPT_Wvla
, "ISO C90 forbids array whose size "
4748 "can%'t be evaluated");
4753 pedwarn (input_location
, OPT_Wvla
,
4754 "ISO C90 forbids variable length array %qE",
4757 pedwarn (input_location
, OPT_Wvla
, "ISO C90 forbids variable length array");
4760 else if (warn_vla
> 0)
4766 "the size of array %qE can"
4767 "%'t be evaluated", name
);
4770 "the size of array can %'t be evaluated");
4776 "variable length array %qE is used",
4780 "variable length array is used");
4785 /* Given declspecs and a declarator,
4786 determine the name and type of the object declared
4787 and construct a ..._DECL node for it.
4788 (In one case we can return a ..._TYPE node instead.
4789 For invalid input we sometimes return 0.)
4791 DECLSPECS is a c_declspecs structure for the declaration specifiers.
4793 DECL_CONTEXT says which syntactic context this declaration is in:
4794 NORMAL for most contexts. Make a VAR_DECL or FUNCTION_DECL or TYPE_DECL.
4795 FUNCDEF for a function definition. Like NORMAL but a few different
4796 error messages in each case. Return value may be zero meaning
4797 this definition is too screwy to try to parse.
4798 PARM for a parameter declaration (either within a function prototype
4799 or before a function body). Make a PARM_DECL, or return void_type_node.
4800 TYPENAME if for a typename (in a cast or sizeof).
4801 Don't make a DECL node; just return the ..._TYPE node.
4802 FIELD for a struct or union field; make a FIELD_DECL.
4803 INITIALIZED is true if the decl has an initializer.
4804 WIDTH is non-NULL for bit-fields, and is a pointer to an INTEGER_CST node
4805 representing the width of the bit-field.
4806 DECL_ATTRS points to the list of attributes that should be added to this
4807 decl. Any nested attributes that belong on the decl itself will be
4809 If EXPR is not NULL, any expressions that need to be evaluated as
4810 part of evaluating variably modified types will be stored in *EXPR.
4811 If EXPR_CONST_OPERANDS is not NULL, *EXPR_CONST_OPERANDS will be
4812 set to indicate whether operands in *EXPR can be used in constant
4814 DEPRECATED_STATE is a deprecated_states value indicating whether
4815 deprecation warnings should be suppressed.
4817 In the TYPENAME case, DECLARATOR is really an absolute declarator.
4818 It may also be so in the PARM case, for a prototype where the
4819 argument type is specified but not the name.
4821 This function is where the complicated C meanings of `static'
4822 and `extern' are interpreted. */
4825 grokdeclarator (const struct c_declarator
*declarator
,
4826 struct c_declspecs
*declspecs
,
4827 enum decl_context decl_context
, bool initialized
, tree
*width
,
4828 tree
*decl_attrs
, tree
*expr
, bool *expr_const_operands
,
4829 enum deprecated_states deprecated_state
)
4831 tree type
= declspecs
->type
;
4832 bool threadp
= declspecs
->thread_p
;
4833 enum c_storage_class storage_class
= declspecs
->storage_class
;
4837 int type_quals
= TYPE_UNQUALIFIED
;
4838 tree name
= NULL_TREE
;
4839 bool funcdef_flag
= false;
4840 bool funcdef_syntax
= false;
4841 bool size_varies
= false;
4842 tree decl_attr
= declspecs
->decl_attr
;
4843 int array_ptr_quals
= TYPE_UNQUALIFIED
;
4844 tree array_ptr_attrs
= NULL_TREE
;
4845 int array_parm_static
= 0;
4846 bool array_parm_vla_unspec_p
= false;
4847 tree returned_attrs
= NULL_TREE
;
4848 bool bitfield
= width
!= NULL
;
4850 struct c_arg_info
*arg_info
= 0;
4851 addr_space_t as1
, as2
, address_space
;
4852 location_t loc
= UNKNOWN_LOCATION
;
4855 bool expr_const_operands_dummy
;
4856 enum c_declarator_kind first_non_attr_kind
;
4858 if (TREE_CODE (type
) == ERROR_MARK
)
4859 return error_mark_node
;
4862 if (expr_const_operands
== NULL
)
4863 expr_const_operands
= &expr_const_operands_dummy
;
4865 *expr
= declspecs
->expr
;
4866 *expr_const_operands
= declspecs
->expr_const_operands
;
4868 if (decl_context
== FUNCDEF
)
4869 funcdef_flag
= true, decl_context
= NORMAL
;
4871 /* Look inside a declarator for the name being declared
4872 and get it as an IDENTIFIER_NODE, for an error message. */
4874 const struct c_declarator
*decl
= declarator
;
4876 first_non_attr_kind
= cdk_attrs
;
4886 funcdef_syntax
= (decl
->kind
== cdk_function
);
4887 decl
= decl
->declarator
;
4888 if (first_non_attr_kind
== cdk_attrs
)
4889 first_non_attr_kind
= decl
->kind
;
4893 decl
= decl
->declarator
;
4900 if (first_non_attr_kind
== cdk_attrs
)
4901 first_non_attr_kind
= decl
->kind
;
4910 gcc_assert (decl_context
== PARM
4911 || decl_context
== TYPENAME
4912 || (decl_context
== FIELD
4913 && declarator
->kind
== cdk_id
));
4914 gcc_assert (!initialized
);
4918 /* A function definition's declarator must have the form of
4919 a function declarator. */
4921 if (funcdef_flag
&& !funcdef_syntax
)
4924 /* If this looks like a function definition, make it one,
4925 even if it occurs where parms are expected.
4926 Then store_parm_decls will reject it and not use it as a parm. */
4927 if (decl_context
== NORMAL
&& !funcdef_flag
&& current_scope
->parm_flag
)
4928 decl_context
= PARM
;
4930 if (declspecs
->deprecated_p
&& deprecated_state
!= DEPRECATED_SUPPRESS
)
4931 warn_deprecated_use (declspecs
->type
, declspecs
->decl_attr
);
4933 if ((decl_context
== NORMAL
|| decl_context
== FIELD
)
4934 && current_scope
== file_scope
4935 && variably_modified_type_p (type
, NULL_TREE
))
4938 error_at (loc
, "variably modified %qE at file scope", name
);
4940 error_at (loc
, "variably modified field at file scope");
4941 type
= integer_type_node
;
4944 size_varies
= C_TYPE_VARIABLE_SIZE (type
) != 0;
4946 /* Diagnose defaulting to "int". */
4948 if (declspecs
->default_int_p
&& !in_system_header
)
4950 /* Issue a warning if this is an ISO C 99 program or if
4951 -Wreturn-type and this is a function, or if -Wimplicit;
4952 prefer the former warning since it is more explicit. */
4953 if ((warn_implicit_int
|| warn_return_type
|| flag_isoc99
)
4955 warn_about_return_type
= 1;
4959 pedwarn_c99 (loc
, flag_isoc99
? 0 : OPT_Wimplicit_int
,
4960 "type defaults to %<int%> in declaration of %qE",
4963 pedwarn_c99 (input_location
, flag_isoc99
? 0 : OPT_Wimplicit_int
,
4964 "type defaults to %<int%> in type name");
4968 /* Adjust the type if a bit-field is being declared,
4969 -funsigned-bitfields applied and the type is not explicitly
4971 if (bitfield
&& !flag_signed_bitfields
&& !declspecs
->explicit_signed_p
4972 && TREE_CODE (type
) == INTEGER_TYPE
)
4973 type
= unsigned_type_for (type
);
4975 /* Figure out the type qualifiers for the declaration. There are
4976 two ways a declaration can become qualified. One is something
4977 like `const int i' where the `const' is explicit. Another is
4978 something like `typedef const int CI; CI i' where the type of the
4979 declaration contains the `const'. A third possibility is that
4980 there is a type qualifier on the element type of a typedefed
4981 array type, in which case we should extract that qualifier so
4982 that c_apply_type_quals_to_decl receives the full list of
4983 qualifiers to work with (C90 is not entirely clear about whether
4984 duplicate qualifiers should be diagnosed in this case, but it
4985 seems most appropriate to do so). */
4986 element_type
= strip_array_types (type
);
4987 constp
= declspecs
->const_p
+ TYPE_READONLY (element_type
);
4988 restrictp
= declspecs
->restrict_p
+ TYPE_RESTRICT (element_type
);
4989 volatilep
= declspecs
->volatile_p
+ TYPE_VOLATILE (element_type
);
4990 as1
= declspecs
->address_space
;
4991 as2
= TYPE_ADDR_SPACE (element_type
);
4992 address_space
= ADDR_SPACE_GENERIC_P (as1
)? as2
: as1
;
4994 if (pedantic
&& !flag_isoc99
)
4997 pedwarn (loc
, OPT_pedantic
, "duplicate %<const%>");
4999 pedwarn (loc
, OPT_pedantic
, "duplicate %<restrict%>");
5001 pedwarn (loc
, OPT_pedantic
, "duplicate %<volatile%>");
5004 if (!ADDR_SPACE_GENERIC_P (as1
) && !ADDR_SPACE_GENERIC_P (as2
) && as1
!= as2
)
5005 error_at (loc
, "conflicting named address spaces (%s vs %s)",
5006 c_addr_space_name (as1
), c_addr_space_name (as2
));
5008 if ((TREE_CODE (type
) == ARRAY_TYPE
5009 || first_non_attr_kind
== cdk_array
)
5010 && TYPE_QUALS (element_type
))
5011 type
= TYPE_MAIN_VARIANT (type
);
5012 type_quals
= ((constp
? TYPE_QUAL_CONST
: 0)
5013 | (restrictp
? TYPE_QUAL_RESTRICT
: 0)
5014 | (volatilep
? TYPE_QUAL_VOLATILE
: 0)
5015 | ENCODE_QUAL_ADDR_SPACE (address_space
));
5017 /* Warn about storage classes that are invalid for certain
5018 kinds of declarations (parameters, typenames, etc.). */
5022 || storage_class
== csc_auto
5023 || storage_class
== csc_register
5024 || storage_class
== csc_typedef
))
5026 if (storage_class
== csc_auto
)
5028 (current_scope
== file_scope
) ? 0 : OPT_pedantic
,
5029 "function definition declared %<auto%>");
5030 if (storage_class
== csc_register
)
5031 error_at (loc
, "function definition declared %<register%>");
5032 if (storage_class
== csc_typedef
)
5033 error_at (loc
, "function definition declared %<typedef%>");
5035 error_at (loc
, "function definition declared %<__thread%>");
5037 if (storage_class
== csc_auto
5038 || storage_class
== csc_register
5039 || storage_class
== csc_typedef
)
5040 storage_class
= csc_none
;
5042 else if (decl_context
!= NORMAL
&& (storage_class
!= csc_none
|| threadp
))
5044 if (decl_context
== PARM
&& storage_class
== csc_register
)
5048 switch (decl_context
)
5052 error_at (loc
, "storage class specified for structure "
5055 error_at (loc
, "storage class specified for structure field");
5059 error_at (loc
, "storage class specified for parameter %qE",
5062 error_at (loc
, "storage class specified for unnamed parameter");
5065 error_at (loc
, "storage class specified for typename");
5068 storage_class
= csc_none
;
5072 else if (storage_class
== csc_extern
5076 /* 'extern' with initialization is invalid if not at file scope. */
5077 if (current_scope
== file_scope
)
5079 /* It is fine to have 'extern const' when compiling at C
5080 and C++ intersection. */
5081 if (!(warn_cxx_compat
&& constp
))
5082 warning_at (loc
, 0, "%qE initialized and declared %<extern%>",
5086 error_at (loc
, "%qE has both %<extern%> and initializer", name
);
5088 else if (current_scope
== file_scope
)
5090 if (storage_class
== csc_auto
)
5091 error_at (loc
, "file-scope declaration of %qE specifies %<auto%>",
5093 if (pedantic
&& storage_class
== csc_register
)
5094 pedwarn (input_location
, OPT_pedantic
,
5095 "file-scope declaration of %qE specifies %<register%>", name
);
5099 if (storage_class
== csc_extern
&& funcdef_flag
)
5100 error_at (loc
, "nested function %qE declared %<extern%>", name
);
5101 else if (threadp
&& storage_class
== csc_none
)
5103 error_at (loc
, "function-scope %qE implicitly auto and declared "
5110 /* Now figure out the structure of the declarator proper.
5111 Descend through it, creating more complex types, until we reach
5112 the declared identifier (or NULL_TREE, in an absolute declarator).
5113 At each stage we maintain an unqualified version of the type
5114 together with any qualifiers that should be applied to it with
5115 c_build_qualified_type; this way, array types including
5116 multidimensional array types are first built up in unqualified
5117 form and then the qualified form is created with
5118 TYPE_MAIN_VARIANT pointing to the unqualified form. */
5120 while (declarator
&& declarator
->kind
!= cdk_id
)
5122 if (type
== error_mark_node
)
5124 declarator
= declarator
->declarator
;
5128 /* Each level of DECLARATOR is either a cdk_array (for ...[..]),
5129 a cdk_pointer (for *...),
5130 a cdk_function (for ...(...)),
5131 a cdk_attrs (for nested attributes),
5132 or a cdk_id (for the name being declared
5133 or the place in an absolute declarator
5134 where the name was omitted).
5135 For the last case, we have just exited the loop.
5137 At this point, TYPE is the type of elements of an array,
5138 or for a function to return, or for a pointer to point to.
5139 After this sequence of ifs, TYPE is the type of the
5140 array or function or pointer, and DECLARATOR has had its
5141 outermost layer removed. */
5143 if (array_ptr_quals
!= TYPE_UNQUALIFIED
5144 || array_ptr_attrs
!= NULL_TREE
5145 || array_parm_static
)
5147 /* Only the innermost declarator (making a parameter be of
5148 array type which is converted to pointer type)
5149 may have static or type qualifiers. */
5150 error_at (loc
, "static or type qualifiers in non-parameter array declarator");
5151 array_ptr_quals
= TYPE_UNQUALIFIED
;
5152 array_ptr_attrs
= NULL_TREE
;
5153 array_parm_static
= 0;
5156 switch (declarator
->kind
)
5160 /* A declarator with embedded attributes. */
5161 tree attrs
= declarator
->u
.attrs
;
5162 const struct c_declarator
*inner_decl
;
5164 declarator
= declarator
->declarator
;
5165 inner_decl
= declarator
;
5166 while (inner_decl
->kind
== cdk_attrs
)
5167 inner_decl
= inner_decl
->declarator
;
5168 if (inner_decl
->kind
== cdk_id
)
5169 attr_flags
|= (int) ATTR_FLAG_DECL_NEXT
;
5170 else if (inner_decl
->kind
== cdk_function
)
5171 attr_flags
|= (int) ATTR_FLAG_FUNCTION_NEXT
;
5172 else if (inner_decl
->kind
== cdk_array
)
5173 attr_flags
|= (int) ATTR_FLAG_ARRAY_NEXT
;
5174 returned_attrs
= decl_attributes (&type
,
5175 chainon (returned_attrs
, attrs
),
5181 tree itype
= NULL_TREE
;
5182 tree size
= declarator
->u
.array
.dimen
;
5183 /* The index is a signed object `sizetype' bits wide. */
5184 tree index_type
= c_common_signed_type (sizetype
);
5186 array_ptr_quals
= declarator
->u
.array
.quals
;
5187 array_ptr_attrs
= declarator
->u
.array
.attrs
;
5188 array_parm_static
= declarator
->u
.array
.static_p
;
5189 array_parm_vla_unspec_p
= declarator
->u
.array
.vla_unspec_p
;
5191 declarator
= declarator
->declarator
;
5193 /* Check for some types that there cannot be arrays of. */
5195 if (VOID_TYPE_P (type
))
5198 error_at (loc
, "declaration of %qE as array of voids", name
);
5200 error_at (loc
, "declaration of type name as array of voids");
5201 type
= error_mark_node
;
5204 if (TREE_CODE (type
) == FUNCTION_TYPE
)
5207 error_at (loc
, "declaration of %qE as array of functions",
5210 error_at (loc
, "declaration of type name as array of "
5212 type
= error_mark_node
;
5215 if (pedantic
&& !in_system_header
&& flexible_array_type_p (type
))
5216 pedwarn (loc
, OPT_pedantic
,
5217 "invalid use of structure with flexible array member");
5219 if (size
== error_mark_node
)
5220 type
= error_mark_node
;
5222 if (type
== error_mark_node
)
5225 /* If size was specified, set ITYPE to a range-type for
5226 that size. Otherwise, ITYPE remains null. finish_decl
5227 may figure it out from an initial value. */
5231 bool size_maybe_const
= true;
5232 bool size_int_const
= (TREE_CODE (size
) == INTEGER_CST
5233 && !TREE_OVERFLOW (size
));
5234 bool this_size_varies
= false;
5236 /* Strip NON_LVALUE_EXPRs since we aren't using as an
5238 STRIP_TYPE_NOPS (size
);
5240 if (!INTEGRAL_TYPE_P (TREE_TYPE (size
)))
5243 error_at (loc
, "size of array %qE has non-integer type",
5247 "size of unnamed array has non-integer type");
5248 size
= integer_one_node
;
5251 size
= c_fully_fold (size
, false, &size_maybe_const
);
5253 if (pedantic
&& size_maybe_const
&& integer_zerop (size
))
5256 pedwarn (loc
, OPT_pedantic
,
5257 "ISO C forbids zero-size array %qE", name
);
5259 pedwarn (loc
, OPT_pedantic
,
5260 "ISO C forbids zero-size array");
5263 if (TREE_CODE (size
) == INTEGER_CST
&& size_maybe_const
)
5265 constant_expression_warning (size
);
5266 if (tree_int_cst_sgn (size
) < 0)
5269 error_at (loc
, "size of array %qE is negative", name
);
5271 error_at (loc
, "size of unnamed array is negative");
5272 size
= integer_one_node
;
5274 /* Handle a size folded to an integer constant but
5275 not an integer constant expression. */
5276 if (!size_int_const
)
5278 /* If this is a file scope declaration of an
5279 ordinary identifier, this is invalid code;
5280 diagnosing it here and not subsequently
5281 treating the type as variable-length avoids
5282 more confusing diagnostics later. */
5283 if ((decl_context
== NORMAL
|| decl_context
== FIELD
)
5284 && current_scope
== file_scope
)
5285 pedwarn (input_location
, 0,
5286 "variably modified %qE at file scope",
5289 this_size_varies
= size_varies
= true;
5290 warn_variable_length_array (name
, size
);
5293 else if ((decl_context
== NORMAL
|| decl_context
== FIELD
)
5294 && current_scope
== file_scope
)
5296 error_at (loc
, "variably modified %qE at file scope", name
);
5297 size
= integer_one_node
;
5301 /* Make sure the array size remains visibly
5302 nonconstant even if it is (eg) a const variable
5303 with known value. */
5304 this_size_varies
= size_varies
= true;
5305 warn_variable_length_array (name
, size
);
5308 if (integer_zerop (size
) && !this_size_varies
)
5310 /* A zero-length array cannot be represented with
5311 an unsigned index type, which is what we'll
5312 get with build_index_type. Create an
5313 open-ended range instead. */
5314 itype
= build_range_type (sizetype
, size
, NULL_TREE
);
5318 /* Arrange for the SAVE_EXPR on the inside of the
5319 MINUS_EXPR, which allows the -1 to get folded
5320 with the +1 that happens when building TYPE_SIZE. */
5322 size
= save_expr (size
);
5323 if (this_size_varies
&& TREE_CODE (size
) == INTEGER_CST
)
5324 size
= build2 (COMPOUND_EXPR
, TREE_TYPE (size
),
5325 integer_zero_node
, size
);
5327 /* Compute the maximum valid index, that is, size
5328 - 1. Do the calculation in index_type, so that
5329 if it is a variable the computations will be
5330 done in the proper mode. */
5331 itype
= fold_build2_loc (loc
, MINUS_EXPR
, index_type
,
5332 convert (index_type
, size
),
5333 convert (index_type
,
5336 /* The above overflows when size does not fit
5338 ??? While a size of INT_MAX+1 technically shouldn't
5339 cause an overflow (because we subtract 1), handling
5340 this case seems like an unnecessary complication. */
5341 if (TREE_CODE (size
) == INTEGER_CST
5342 && !int_fits_type_p (size
, index_type
))
5345 error_at (loc
, "size of array %qE is too large",
5348 error_at (loc
, "size of unnamed array is too large");
5349 type
= error_mark_node
;
5353 itype
= build_index_type (itype
);
5355 if (this_size_varies
)
5358 *expr
= build2 (COMPOUND_EXPR
, TREE_TYPE (size
),
5362 *expr_const_operands
&= size_maybe_const
;
5365 else if (decl_context
== FIELD
)
5367 bool flexible_array_member
= false;
5368 if (array_parm_vla_unspec_p
)
5369 /* Field names can in fact have function prototype
5370 scope so [*] is disallowed here through making
5371 the field variably modified, not through being
5372 something other than a declaration with function
5377 const struct c_declarator
*t
= declarator
;
5378 while (t
->kind
== cdk_attrs
)
5380 flexible_array_member
= (t
->kind
== cdk_id
);
5382 if (flexible_array_member
5383 && pedantic
&& !flag_isoc99
&& !in_system_header
)
5384 pedwarn (loc
, OPT_pedantic
,
5385 "ISO C90 does not support flexible array members");
5387 /* ISO C99 Flexible array members are effectively
5388 identical to GCC's zero-length array extension. */
5389 if (flexible_array_member
|| array_parm_vla_unspec_p
)
5390 itype
= build_range_type (sizetype
, size_zero_node
,
5393 else if (decl_context
== PARM
)
5395 if (array_parm_vla_unspec_p
)
5397 itype
= build_range_type (sizetype
, size_zero_node
, NULL_TREE
);
5401 else if (decl_context
== TYPENAME
)
5403 if (array_parm_vla_unspec_p
)
5406 warning (0, "%<[*]%> not in a declaration");
5407 /* We use this to avoid messing up with incomplete
5408 array types of the same type, that would
5409 otherwise be modified below. */
5410 itype
= build_range_type (sizetype
, size_zero_node
,
5416 /* Complain about arrays of incomplete types. */
5417 if (!COMPLETE_TYPE_P (type
))
5419 error_at (loc
, "array type has incomplete element type");
5420 type
= error_mark_node
;
5423 /* When itype is NULL, a shared incomplete array type is
5424 returned for all array of a given type. Elsewhere we
5425 make sure we don't complete that type before copying
5426 it, but here we want to make sure we don't ever
5427 modify the shared type, so we gcc_assert (itype)
5430 addr_space_t as
= DECODE_QUAL_ADDR_SPACE (type_quals
);
5431 if (!ADDR_SPACE_GENERIC_P (as
) && as
!= TYPE_ADDR_SPACE (type
))
5432 type
= build_qualified_type (type
,
5433 ENCODE_QUAL_ADDR_SPACE (as
));
5435 type
= build_array_type (type
, itype
);
5438 if (type
!= error_mark_node
)
5442 /* It is ok to modify type here even if itype is
5443 NULL: if size_varies, we're in a
5444 multi-dimensional array and the inner type has
5445 variable size, so the enclosing shared array type
5447 if (size
&& TREE_CODE (size
) == INTEGER_CST
)
5449 = build_distinct_type_copy (TYPE_MAIN_VARIANT (type
));
5450 C_TYPE_VARIABLE_SIZE (type
) = 1;
5453 /* The GCC extension for zero-length arrays differs from
5454 ISO flexible array members in that sizeof yields
5456 if (size
&& integer_zerop (size
))
5459 type
= build_distinct_type_copy (TYPE_MAIN_VARIANT (type
));
5460 TYPE_SIZE (type
) = bitsize_zero_node
;
5461 TYPE_SIZE_UNIT (type
) = size_zero_node
;
5462 SET_TYPE_STRUCTURAL_EQUALITY (type
);
5464 if (array_parm_vla_unspec_p
)
5467 /* The type is complete. C99 6.7.5.2p4 */
5468 type
= build_distinct_type_copy (TYPE_MAIN_VARIANT (type
));
5469 TYPE_SIZE (type
) = bitsize_zero_node
;
5470 TYPE_SIZE_UNIT (type
) = size_zero_node
;
5471 SET_TYPE_STRUCTURAL_EQUALITY (type
);
5475 if (decl_context
!= PARM
5476 && (array_ptr_quals
!= TYPE_UNQUALIFIED
5477 || array_ptr_attrs
!= NULL_TREE
5478 || array_parm_static
))
5480 error_at (loc
, "static or type qualifiers in non-parameter array declarator");
5481 array_ptr_quals
= TYPE_UNQUALIFIED
;
5482 array_ptr_attrs
= NULL_TREE
;
5483 array_parm_static
= 0;
5489 /* Say it's a definition only for the declarator closest
5490 to the identifier, apart possibly from some
5492 bool really_funcdef
= false;
5496 const struct c_declarator
*t
= declarator
->declarator
;
5497 while (t
->kind
== cdk_attrs
)
5499 really_funcdef
= (t
->kind
== cdk_id
);
5502 /* Declaring a function type. Make sure we have a valid
5503 type for the function to return. */
5504 if (type
== error_mark_node
)
5507 size_varies
= false;
5509 /* Warn about some types functions can't return. */
5510 if (TREE_CODE (type
) == FUNCTION_TYPE
)
5513 error_at (loc
, "%qE declared as function returning a "
5516 error_at (loc
, "type name declared as function "
5517 "returning a function");
5518 type
= integer_type_node
;
5520 if (TREE_CODE (type
) == ARRAY_TYPE
)
5523 error_at (loc
, "%qE declared as function returning an array",
5526 error_at (loc
, "type name declared as function returning "
5528 type
= integer_type_node
;
5530 errmsg
= targetm
.invalid_return_type (type
);
5534 type
= integer_type_node
;
5537 /* Construct the function type and go to the next
5538 inner layer of declarator. */
5539 arg_info
= declarator
->u
.arg_info
;
5540 arg_types
= grokparms (arg_info
, really_funcdef
);
5542 /* Type qualifiers before the return type of the function
5543 qualify the return type, not the function type. */
5546 /* Type qualifiers on a function return type are
5547 normally permitted by the standard but have no
5548 effect, so give a warning at -Wreturn-type.
5549 Qualifiers on a void return type are banned on
5550 function definitions in ISO C; GCC used to used
5551 them for noreturn functions. */
5552 if (VOID_TYPE_P (type
) && really_funcdef
)
5554 "function definition has qualified void return type");
5556 warning_at (loc
, OPT_Wignored_qualifiers
,
5557 "type qualifiers ignored on function return type");
5559 type
= c_build_qualified_type (type
, type_quals
);
5561 type_quals
= TYPE_UNQUALIFIED
;
5563 type
= build_function_type (type
, arg_types
);
5564 declarator
= declarator
->declarator
;
5566 /* Set the TYPE_CONTEXTs for each tagged type which is local to
5567 the formal parameter list of this FUNCTION_TYPE to point to
5568 the FUNCTION_TYPE node itself. */
5573 FOR_EACH_VEC_ELT_REVERSE (c_arg_tag
, arg_info
->tags
, ix
, tag
)
5574 TYPE_CONTEXT (tag
->type
) = type
;
5580 /* Merge any constancy or volatility into the target type
5583 if (pedantic
&& TREE_CODE (type
) == FUNCTION_TYPE
5585 pedwarn (loc
, OPT_pedantic
,
5586 "ISO C forbids qualified function types");
5588 type
= c_build_qualified_type (type
, type_quals
);
5589 size_varies
= false;
5591 /* When the pointed-to type involves components of variable size,
5592 care must be taken to ensure that the size evaluation code is
5593 emitted early enough to dominate all the possible later uses
5594 and late enough for the variables on which it depends to have
5597 This is expected to happen automatically when the pointed-to
5598 type has a name/declaration of it's own, but special attention
5599 is required if the type is anonymous.
5601 We handle the NORMAL and FIELD contexts here by attaching an
5602 artificial TYPE_DECL to such pointed-to type. This forces the
5603 sizes evaluation at a safe point and ensures it is not deferred
5604 until e.g. within a deeper conditional context.
5606 We expect nothing to be needed here for PARM or TYPENAME.
5607 Pushing a TYPE_DECL at this point for TYPENAME would actually
5608 be incorrect, as we might be in the middle of an expression
5609 with side effects on the pointed-to type size "arguments" prior
5610 to the pointer declaration point and the fake TYPE_DECL in the
5611 enclosing context would force the size evaluation prior to the
5614 if (!TYPE_NAME (type
)
5615 && (decl_context
== NORMAL
|| decl_context
== FIELD
)
5616 && variably_modified_type_p (type
, NULL_TREE
))
5618 tree decl
= build_decl (loc
, TYPE_DECL
, NULL_TREE
, type
);
5619 DECL_ARTIFICIAL (decl
) = 1;
5621 finish_decl (decl
, loc
, NULL_TREE
, NULL_TREE
, NULL_TREE
);
5622 TYPE_NAME (type
) = decl
;
5625 type
= build_pointer_type (type
);
5627 /* Process type qualifiers (such as const or volatile)
5628 that were given inside the `*'. */
5629 type_quals
= declarator
->u
.pointer_quals
;
5631 declarator
= declarator
->declarator
;
5638 *decl_attrs
= chainon (returned_attrs
, *decl_attrs
);
5640 /* Now TYPE has the actual type, apart from any qualifiers in
5643 /* Warn about address space used for things other than static memory or
5645 address_space
= DECODE_QUAL_ADDR_SPACE (type_quals
);
5646 if (!ADDR_SPACE_GENERIC_P (address_space
))
5648 if (decl_context
== NORMAL
)
5650 switch (storage_class
)
5653 error ("%qs combined with %<auto%> qualifier for %qE",
5654 c_addr_space_name (address_space
), name
);
5657 error ("%qs combined with %<register%> qualifier for %qE",
5658 c_addr_space_name (address_space
), name
);
5661 if (current_function_scope
)
5663 error ("%qs specified for auto variable %qE",
5664 c_addr_space_name (address_space
), name
);
5676 else if (decl_context
== PARM
&& TREE_CODE (type
) != ARRAY_TYPE
)
5679 error ("%qs specified for parameter %qE",
5680 c_addr_space_name (address_space
), name
);
5682 error ("%qs specified for unnamed parameter",
5683 c_addr_space_name (address_space
));
5685 else if (decl_context
== FIELD
)
5688 error ("%qs specified for structure field %qE",
5689 c_addr_space_name (address_space
), name
);
5691 error ("%qs specified for structure field",
5692 c_addr_space_name (address_space
));
5696 /* Check the type and width of a bit-field. */
5698 check_bitfield_type_and_width (&type
, width
, name
);
5700 /* Did array size calculations overflow? */
5702 if (TREE_CODE (type
) == ARRAY_TYPE
5703 && COMPLETE_TYPE_P (type
)
5704 && TREE_CODE (TYPE_SIZE_UNIT (type
)) == INTEGER_CST
5705 && TREE_OVERFLOW (TYPE_SIZE_UNIT (type
)))
5708 error_at (loc
, "size of array %qE is too large", name
);
5710 error_at (loc
, "size of unnamed array is too large");
5711 /* If we proceed with the array type as it is, we'll eventually
5712 crash in tree_low_cst(). */
5713 type
= error_mark_node
;
5716 /* If this is declaring a typedef name, return a TYPE_DECL. */
5718 if (storage_class
== csc_typedef
)
5721 if (pedantic
&& TREE_CODE (type
) == FUNCTION_TYPE
5723 pedwarn (loc
, OPT_pedantic
,
5724 "ISO C forbids qualified function types");
5726 type
= c_build_qualified_type (type
, type_quals
);
5727 decl
= build_decl (declarator
->id_loc
,
5728 TYPE_DECL
, declarator
->u
.id
, type
);
5729 if (declspecs
->explicit_signed_p
)
5730 C_TYPEDEF_EXPLICITLY_SIGNED (decl
) = 1;
5731 if (declspecs
->inline_p
)
5732 pedwarn (loc
, 0,"typedef %q+D declared %<inline%>", decl
);
5734 if (warn_cxx_compat
&& declarator
->u
.id
!= NULL_TREE
)
5736 struct c_binding
*b
= I_TAG_BINDING (declarator
->u
.id
);
5739 && b
->decl
!= NULL_TREE
5740 && (B_IN_CURRENT_SCOPE (b
)
5741 || (current_scope
== file_scope
&& B_IN_EXTERNAL_SCOPE (b
)))
5742 && TYPE_MAIN_VARIANT (b
->decl
) != TYPE_MAIN_VARIANT (type
))
5744 warning_at (declarator
->id_loc
, OPT_Wc___compat
,
5745 ("using %qD as both a typedef and a tag is "
5748 if (b
->locus
!= UNKNOWN_LOCATION
)
5749 inform (b
->locus
, "originally defined here");
5756 /* If this is a type name (such as, in a cast or sizeof),
5757 compute the type and return it now. */
5759 if (decl_context
== TYPENAME
)
5761 /* Note that the grammar rejects storage classes in typenames
5763 gcc_assert (storage_class
== csc_none
&& !threadp
5764 && !declspecs
->inline_p
);
5765 if (pedantic
&& TREE_CODE (type
) == FUNCTION_TYPE
5767 pedwarn (loc
, OPT_pedantic
,
5768 "ISO C forbids const or volatile function types");
5770 type
= c_build_qualified_type (type
, type_quals
);
5774 if (pedantic
&& decl_context
== FIELD
5775 && variably_modified_type_p (type
, NULL_TREE
))
5778 pedwarn (loc
, OPT_pedantic
, "a member of a structure or union cannot "
5779 "have a variably modified type");
5782 /* Aside from typedefs and type names (handle above),
5783 `void' at top level (not within pointer)
5784 is allowed only in public variables.
5785 We don't complain about parms either, but that is because
5786 a better error message can be made later. */
5788 if (VOID_TYPE_P (type
) && decl_context
!= PARM
5789 && !((decl_context
!= FIELD
&& TREE_CODE (type
) != FUNCTION_TYPE
)
5790 && (storage_class
== csc_extern
5791 || (current_scope
== file_scope
5792 && !(storage_class
== csc_static
5793 || storage_class
== csc_register
)))))
5795 error_at (loc
, "variable or field %qE declared void", name
);
5796 type
= integer_type_node
;
5799 /* Now create the decl, which may be a VAR_DECL, a PARM_DECL
5800 or a FUNCTION_DECL, depending on DECL_CONTEXT and TYPE. */
5805 if (decl_context
== PARM
)
5809 /* A parameter declared as an array of T is really a pointer to T.
5810 One declared as a function is really a pointer to a function. */
5812 if (TREE_CODE (type
) == ARRAY_TYPE
)
5814 /* Transfer const-ness of array into that of type pointed to. */
5815 type
= TREE_TYPE (type
);
5817 type
= c_build_qualified_type (type
, type_quals
);
5818 type
= build_pointer_type (type
);
5819 type_quals
= array_ptr_quals
;
5821 type
= c_build_qualified_type (type
, type_quals
);
5823 /* We don't yet implement attributes in this context. */
5824 if (array_ptr_attrs
!= NULL_TREE
)
5825 warning_at (loc
, OPT_Wattributes
,
5826 "attributes in parameter array declarator ignored");
5828 size_varies
= false;
5830 else if (TREE_CODE (type
) == FUNCTION_TYPE
)
5833 pedwarn (loc
, OPT_pedantic
,
5834 "ISO C forbids qualified function types");
5836 type
= c_build_qualified_type (type
, type_quals
);
5837 type
= build_pointer_type (type
);
5838 type_quals
= TYPE_UNQUALIFIED
;
5840 else if (type_quals
)
5841 type
= c_build_qualified_type (type
, type_quals
);
5843 decl
= build_decl (declarator
->id_loc
,
5844 PARM_DECL
, declarator
->u
.id
, type
);
5846 C_DECL_VARIABLE_SIZE (decl
) = 1;
5848 /* Compute the type actually passed in the parmlist,
5849 for the case where there is no prototype.
5850 (For example, shorts and chars are passed as ints.)
5851 When there is a prototype, this is overridden later. */
5853 if (type
== error_mark_node
)
5854 promoted_type
= type
;
5856 promoted_type
= c_type_promotes_to (type
);
5858 DECL_ARG_TYPE (decl
) = promoted_type
;
5859 if (declspecs
->inline_p
)
5860 pedwarn (loc
, 0, "parameter %q+D declared %<inline%>", decl
);
5862 else if (decl_context
== FIELD
)
5864 /* Note that the grammar rejects storage classes in typenames
5866 gcc_assert (storage_class
== csc_none
&& !threadp
5867 && !declspecs
->inline_p
);
5869 /* Structure field. It may not be a function. */
5871 if (TREE_CODE (type
) == FUNCTION_TYPE
)
5873 error_at (loc
, "field %qE declared as a function", name
);
5874 type
= build_pointer_type (type
);
5876 else if (TREE_CODE (type
) != ERROR_MARK
5877 && !COMPLETE_OR_UNBOUND_ARRAY_TYPE_P (type
))
5880 error_at (loc
, "field %qE has incomplete type", name
);
5882 error_at (loc
, "unnamed field has incomplete type");
5883 type
= error_mark_node
;
5885 type
= c_build_qualified_type (type
, type_quals
);
5886 decl
= build_decl (declarator
->id_loc
,
5887 FIELD_DECL
, declarator
->u
.id
, type
);
5888 DECL_NONADDRESSABLE_P (decl
) = bitfield
;
5889 if (bitfield
&& !declarator
->u
.id
)
5890 TREE_NO_WARNING (decl
) = 1;
5893 C_DECL_VARIABLE_SIZE (decl
) = 1;
5895 else if (TREE_CODE (type
) == FUNCTION_TYPE
)
5897 if (storage_class
== csc_register
|| threadp
)
5899 error_at (loc
, "invalid storage class for function %qE", name
);
5901 else if (current_scope
!= file_scope
)
5903 /* Function declaration not at file scope. Storage
5904 classes other than `extern' are not allowed, C99
5905 6.7.1p5, and `extern' makes no difference. However,
5906 GCC allows 'auto', perhaps with 'inline', to support
5907 nested functions. */
5908 if (storage_class
== csc_auto
)
5909 pedwarn (loc
, OPT_pedantic
,
5910 "invalid storage class for function %qE", name
);
5911 else if (storage_class
== csc_static
)
5913 error_at (loc
, "invalid storage class for function %qE", name
);
5915 storage_class
= declspecs
->storage_class
= csc_none
;
5921 decl
= build_decl (declarator
->id_loc
,
5922 FUNCTION_DECL
, declarator
->u
.id
, type
);
5923 decl
= build_decl_attribute_variant (decl
, decl_attr
);
5925 if (pedantic
&& type_quals
&& !DECL_IN_SYSTEM_HEADER (decl
))
5926 pedwarn (loc
, OPT_pedantic
,
5927 "ISO C forbids qualified function types");
5929 /* Every function declaration is an external reference
5930 (DECL_EXTERNAL) except for those which are not at file
5931 scope and are explicitly declared "auto". This is
5932 forbidden by standard C (C99 6.7.1p5) and is interpreted by
5933 GCC to signify a forward declaration of a nested function. */
5934 if (storage_class
== csc_auto
&& current_scope
!= file_scope
)
5935 DECL_EXTERNAL (decl
) = 0;
5936 /* In C99, a function which is declared 'inline' with 'extern'
5937 is not an external reference (which is confusing). It
5938 means that the later definition of the function must be output
5939 in this file, C99 6.7.4p6. In GNU C89, a function declared
5940 'extern inline' is an external reference. */
5941 else if (declspecs
->inline_p
&& storage_class
!= csc_static
)
5942 DECL_EXTERNAL (decl
) = ((storage_class
== csc_extern
)
5943 == flag_gnu89_inline
);
5945 DECL_EXTERNAL (decl
) = !initialized
;
5947 /* Record absence of global scope for `static' or `auto'. */
5949 = !(storage_class
== csc_static
|| storage_class
== csc_auto
);
5951 /* For a function definition, record the argument information
5952 block where store_parm_decls will look for it. */
5954 current_function_arg_info
= arg_info
;
5956 if (declspecs
->default_int_p
)
5957 C_FUNCTION_IMPLICIT_INT (decl
) = 1;
5959 /* Record presence of `inline', if it is reasonable. */
5960 if (flag_hosted
&& MAIN_NAME_P (declarator
->u
.id
))
5962 if (declspecs
->inline_p
)
5963 pedwarn (loc
, 0, "cannot inline function %<main%>");
5965 else if (declspecs
->inline_p
)
5966 /* Record that the function is declared `inline'. */
5967 DECL_DECLARED_INLINE_P (decl
) = 1;
5971 /* It's a variable. */
5972 /* An uninitialized decl with `extern' is a reference. */
5973 int extern_ref
= !initialized
&& storage_class
== csc_extern
;
5975 type
= c_build_qualified_type (type
, type_quals
);
5977 /* C99 6.2.2p7: It is invalid (compile-time undefined
5978 behavior) to create an 'extern' declaration for a
5979 variable if there is a global declaration that is
5980 'static' and the global declaration is not visible.
5981 (If the static declaration _is_ currently visible,
5982 the 'extern' declaration is taken to refer to that decl.) */
5983 if (extern_ref
&& current_scope
!= file_scope
)
5985 tree global_decl
= identifier_global_value (declarator
->u
.id
);
5986 tree visible_decl
= lookup_name (declarator
->u
.id
);
5989 && global_decl
!= visible_decl
5990 && TREE_CODE (global_decl
) == VAR_DECL
5991 && !TREE_PUBLIC (global_decl
))
5992 error_at (loc
, "variable previously declared %<static%> "
5993 "redeclared %<extern%>");
5996 decl
= build_decl (declarator
->id_loc
,
5997 VAR_DECL
, declarator
->u
.id
, type
);
5999 C_DECL_VARIABLE_SIZE (decl
) = 1;
6001 if (declspecs
->inline_p
)
6002 pedwarn (loc
, 0, "variable %q+D declared %<inline%>", decl
);
6004 /* At file scope, an initialized extern declaration may follow
6005 a static declaration. In that case, DECL_EXTERNAL will be
6006 reset later in start_decl. */
6007 DECL_EXTERNAL (decl
) = (storage_class
== csc_extern
);
6009 /* At file scope, the presence of a `static' or `register' storage
6010 class specifier, or the absence of all storage class specifiers
6011 makes this declaration a definition (perhaps tentative). Also,
6012 the absence of `static' makes it public. */
6013 if (current_scope
== file_scope
)
6015 TREE_PUBLIC (decl
) = storage_class
!= csc_static
;
6016 TREE_STATIC (decl
) = !extern_ref
;
6018 /* Not at file scope, only `static' makes a static definition. */
6021 TREE_STATIC (decl
) = (storage_class
== csc_static
);
6022 TREE_PUBLIC (decl
) = extern_ref
;
6026 DECL_TLS_MODEL (decl
) = decl_default_tls_model (decl
);
6029 if ((storage_class
== csc_extern
6030 || (storage_class
== csc_none
6031 && TREE_CODE (type
) == FUNCTION_TYPE
6033 && variably_modified_type_p (type
, NULL_TREE
))
6036 if (TREE_CODE (type
) == FUNCTION_TYPE
)
6037 error_at (loc
, "non-nested function with variably modified type");
6039 error_at (loc
, "object with variably modified type must have "
6043 /* Record `register' declaration for warnings on &
6044 and in case doing stupid register allocation. */
6046 if (storage_class
== csc_register
)
6048 C_DECL_REGISTER (decl
) = 1;
6049 DECL_REGISTER (decl
) = 1;
6052 /* Record constancy and volatility. */
6053 c_apply_type_quals_to_decl (type_quals
, decl
);
6055 /* If a type has volatile components, it should be stored in memory.
6056 Otherwise, the fact that those components are volatile
6057 will be ignored, and would even crash the compiler.
6058 Of course, this only makes sense on VAR,PARM, and RESULT decl's. */
6059 if (C_TYPE_FIELDS_VOLATILE (TREE_TYPE (decl
))
6060 && (TREE_CODE (decl
) == VAR_DECL
|| TREE_CODE (decl
) == PARM_DECL
6061 || TREE_CODE (decl
) == RESULT_DECL
))
6063 /* It is not an error for a structure with volatile fields to
6064 be declared register, but reset DECL_REGISTER since it
6065 cannot actually go in a register. */
6066 int was_reg
= C_DECL_REGISTER (decl
);
6067 C_DECL_REGISTER (decl
) = 0;
6068 DECL_REGISTER (decl
) = 0;
6069 c_mark_addressable (decl
);
6070 C_DECL_REGISTER (decl
) = was_reg
;
6073 /* This is the earliest point at which we might know the assembler
6074 name of a variable. Thus, if it's known before this, die horribly. */
6075 gcc_assert (!DECL_ASSEMBLER_NAME_SET_P (decl
));
6078 && TREE_CODE (decl
) == VAR_DECL
6079 && TREE_PUBLIC (decl
)
6080 && TREE_STATIC (decl
)
6081 && (TREE_CODE (TREE_TYPE (decl
)) == RECORD_TYPE
6082 || TREE_CODE (TREE_TYPE (decl
)) == UNION_TYPE
6083 || TREE_CODE (TREE_TYPE (decl
)) == ENUMERAL_TYPE
)
6084 && TYPE_NAME (TREE_TYPE (decl
)) == NULL_TREE
)
6085 warning_at (DECL_SOURCE_LOCATION (decl
), OPT_Wc___compat
,
6086 ("non-local variable %qD with anonymous type is "
6087 "questionable in C++"),
6094 /* Decode the parameter-list info for a function type or function definition.
6095 The argument is the value returned by `get_parm_info' (or made in c-parse.c
6096 if there is an identifier list instead of a parameter decl list).
6097 These two functions are separate because when a function returns
6098 or receives functions then each is called multiple times but the order
6099 of calls is different. The last call to `grokparms' is always the one
6100 that contains the formal parameter names of a function definition.
6102 Return a list of arg types to use in the FUNCTION_TYPE for this function.
6104 FUNCDEF_FLAG is true for a function definition, false for
6105 a mere declaration. A nonempty identifier-list gets an error message
6106 when FUNCDEF_FLAG is false. */
6109 grokparms (struct c_arg_info
*arg_info
, bool funcdef_flag
)
6111 tree arg_types
= arg_info
->types
;
6113 if (funcdef_flag
&& arg_info
->had_vla_unspec
)
6115 /* A function definition isn't function prototype scope C99 6.2.1p4. */
6117 error ("%<[*]%> not allowed in other than function prototype scope");
6120 if (arg_types
== 0 && !funcdef_flag
&& !in_system_header
)
6121 warning (OPT_Wstrict_prototypes
,
6122 "function declaration isn%'t a prototype");
6124 if (arg_types
== error_mark_node
)
6125 return 0; /* don't set TYPE_ARG_TYPES in this case */
6127 else if (arg_types
&& TREE_CODE (TREE_VALUE (arg_types
)) == IDENTIFIER_NODE
)
6131 pedwarn (input_location
, 0, "parameter names (without types) in function declaration");
6132 arg_info
->parms
= NULL_TREE
;
6135 arg_info
->parms
= arg_info
->types
;
6137 arg_info
->types
= 0;
6142 tree parm
, type
, typelt
;
6143 unsigned int parmno
;
6146 /* If there is a parameter of incomplete type in a definition,
6147 this is an error. In a declaration this is valid, and a
6148 struct or union type may be completed later, before any calls
6149 or definition of the function. In the case where the tag was
6150 first declared within the parameter list, a warning has
6151 already been given. If a parameter has void type, then
6152 however the function cannot be defined or called, so
6155 for (parm
= arg_info
->parms
, typelt
= arg_types
, parmno
= 1;
6157 parm
= DECL_CHAIN (parm
), typelt
= TREE_CHAIN (typelt
), parmno
++)
6159 type
= TREE_VALUE (typelt
);
6160 if (type
== error_mark_node
)
6163 if (!COMPLETE_TYPE_P (type
))
6167 if (DECL_NAME (parm
))
6168 error_at (input_location
,
6169 "parameter %u (%q+D) has incomplete type",
6172 error_at (DECL_SOURCE_LOCATION (parm
),
6173 "parameter %u has incomplete type",
6176 TREE_VALUE (typelt
) = error_mark_node
;
6177 TREE_TYPE (parm
) = error_mark_node
;
6178 arg_types
= NULL_TREE
;
6180 else if (VOID_TYPE_P (type
))
6182 if (DECL_NAME (parm
))
6183 warning_at (input_location
, 0,
6184 "parameter %u (%q+D) has void type",
6187 warning_at (DECL_SOURCE_LOCATION (parm
), 0,
6188 "parameter %u has void type",
6193 errmsg
= targetm
.invalid_parameter_type (type
);
6197 TREE_VALUE (typelt
) = error_mark_node
;
6198 TREE_TYPE (parm
) = error_mark_node
;
6199 arg_types
= NULL_TREE
;
6202 if (DECL_NAME (parm
) && TREE_USED (parm
))
6203 warn_if_shadowing (parm
);
6209 /* Allocate and initialize a c_arg_info structure from the parser's
6213 build_arg_info (void)
6215 struct c_arg_info
*ret
= XOBNEW (&parser_obstack
, struct c_arg_info
);
6216 ret
->parms
= NULL_TREE
;
6218 ret
->types
= NULL_TREE
;
6219 ret
->others
= NULL_TREE
;
6220 ret
->pending_sizes
= NULL
;
6221 ret
->had_vla_unspec
= 0;
6225 /* Take apart the current scope and return a c_arg_info structure with
6226 info on a parameter list just parsed.
6228 This structure is later fed to 'grokparms' and 'store_parm_decls'.
6230 ELLIPSIS being true means the argument list ended in '...' so don't
6231 append a sentinel (void_list_node) to the end of the type-list.
6233 EXPR is NULL or an expression that needs to be evaluated for the
6234 side effects of array size expressions in the parameters. */
6237 get_parm_info (bool ellipsis
, tree expr
)
6239 struct c_binding
*b
= current_scope
->bindings
;
6240 struct c_arg_info
*arg_info
= build_arg_info ();
6243 VEC(c_arg_tag
,gc
) *tags
= NULL
;
6247 static bool explained_incomplete_types
= false;
6248 bool gave_void_only_once_err
= false;
6250 arg_info
->had_vla_unspec
= current_scope
->had_vla_unspec
;
6252 /* The bindings in this scope must not get put into a block.
6253 We will take care of deleting the binding nodes. */
6254 current_scope
->bindings
= 0;
6256 /* This function is only called if there was *something* on the
6260 /* A parameter list consisting solely of 'void' indicates that the
6261 function takes no arguments. But if the 'void' is qualified
6262 (by 'const' or 'volatile'), or has a storage class specifier
6263 ('register'), then the behavior is undefined; issue an error.
6264 Typedefs for 'void' are OK (see DR#157). */
6265 if (b
->prev
== 0 /* one binding */
6266 && TREE_CODE (b
->decl
) == PARM_DECL
/* which is a parameter */
6267 && !DECL_NAME (b
->decl
) /* anonymous */
6268 && VOID_TYPE_P (TREE_TYPE (b
->decl
))) /* of void type */
6270 if (TREE_THIS_VOLATILE (b
->decl
)
6271 || TREE_READONLY (b
->decl
)
6272 || C_DECL_REGISTER (b
->decl
))
6273 error ("%<void%> as only parameter may not be qualified");
6275 /* There cannot be an ellipsis. */
6277 error ("%<void%> must be the only parameter");
6279 arg_info
->types
= void_list_node
;
6284 types
= void_list_node
;
6286 /* Break up the bindings list into parms, tags, types, and others;
6287 apply sanity checks; purge the name-to-decl bindings. */
6290 tree decl
= b
->decl
;
6291 tree type
= TREE_TYPE (decl
);
6293 const char *keyword
;
6295 switch (TREE_CODE (decl
))
6300 gcc_assert (I_SYMBOL_BINDING (b
->id
) == b
);
6301 I_SYMBOL_BINDING (b
->id
) = b
->shadowed
;
6304 /* Check for forward decls that never got their actual decl. */
6305 if (TREE_ASM_WRITTEN (decl
))
6306 error ("parameter %q+D has just a forward declaration", decl
);
6307 /* Check for (..., void, ...) and issue an error. */
6308 else if (VOID_TYPE_P (type
) && !DECL_NAME (decl
))
6310 if (!gave_void_only_once_err
)
6312 error ("%<void%> must be the only parameter");
6313 gave_void_only_once_err
= true;
6318 /* Valid parameter, add it to the list. */
6319 DECL_CHAIN (decl
) = parms
;
6322 /* Since there is a prototype, args are passed in their
6323 declared types. The back end may override this later. */
6324 DECL_ARG_TYPE (decl
) = type
;
6325 types
= tree_cons (0, type
, types
);
6329 case ENUMERAL_TYPE
: keyword
= "enum"; goto tag
;
6330 case UNION_TYPE
: keyword
= "union"; goto tag
;
6331 case RECORD_TYPE
: keyword
= "struct"; goto tag
;
6333 /* Types may not have tag-names, in which case the type
6334 appears in the bindings list with b->id NULL. */
6337 gcc_assert (I_TAG_BINDING (b
->id
) == b
);
6338 I_TAG_BINDING (b
->id
) = b
->shadowed
;
6341 /* Warn about any struct, union or enum tags defined in a
6342 parameter list. The scope of such types is limited to
6343 the parameter list, which is rarely if ever desirable
6344 (it's impossible to call such a function with type-
6345 correct arguments). An anonymous union parm type is
6346 meaningful as a GNU extension, so don't warn for that. */
6347 if (TREE_CODE (decl
) != UNION_TYPE
|| b
->id
!= 0)
6350 /* The %s will be one of 'struct', 'union', or 'enum'. */
6351 warning (0, "%<%s %E%> declared inside parameter list",
6354 /* The %s will be one of 'struct', 'union', or 'enum'. */
6355 warning (0, "anonymous %s declared inside parameter list",
6358 if (!explained_incomplete_types
)
6360 warning (0, "its scope is only this definition or declaration,"
6361 " which is probably not what you want");
6362 explained_incomplete_types
= true;
6366 tag
= VEC_safe_push (c_arg_tag
, gc
, tags
, NULL
);
6374 /* CONST_DECLs appear here when we have an embedded enum,
6375 and TYPE_DECLs appear here when we have an embedded struct
6376 or union. No warnings for this - we already warned about the
6377 type itself. FUNCTION_DECLs appear when there is an implicit
6378 function declaration in the parameter list. */
6380 /* When we reinsert this decl in the function body, we need
6381 to reconstruct whether it was marked as nested. */
6382 gcc_assert (TREE_CODE (decl
) == FUNCTION_DECL
6385 DECL_CHAIN (decl
) = others
;
6390 /* error_mark_node appears here when we have an undeclared
6391 variable. Just throw it away. */
6394 gcc_assert (I_SYMBOL_BINDING (b
->id
) == b
);
6395 I_SYMBOL_BINDING (b
->id
) = b
->shadowed
;
6399 /* Other things that might be encountered. */
6406 b
= free_binding_and_advance (b
);
6409 arg_info
->parms
= parms
;
6410 arg_info
->tags
= tags
;
6411 arg_info
->types
= types
;
6412 arg_info
->others
= others
;
6413 arg_info
->pending_sizes
= expr
;
6417 /* Get the struct, enum or union (CODE says which) with tag NAME.
6418 Define the tag as a forward-reference with location LOC if it is
6419 not defined. Return a c_typespec structure for the type
6423 parser_xref_tag (location_t loc
, enum tree_code code
, tree name
)
6425 struct c_typespec ret
;
6429 ret
.expr
= NULL_TREE
;
6430 ret
.expr_const_operands
= true;
6432 /* If a cross reference is requested, look up the type
6433 already defined for this tag and return it. */
6435 ref
= lookup_tag (code
, name
, 0, &refloc
);
6436 /* If this is the right type of tag, return what we found.
6437 (This reference will be shadowed by shadow_tag later if appropriate.)
6438 If this is the wrong type of tag, do not return it. If it was the
6439 wrong type in the same scope, we will have had an error
6440 message already; if in a different scope and declaring
6441 a name, pending_xref_error will give an error message; but if in a
6442 different scope and not declaring a name, this tag should
6443 shadow the previous declaration of a different type of tag, and
6444 this would not work properly if we return the reference found.
6445 (For example, with "struct foo" in an outer scope, "union foo;"
6446 must shadow that tag with a new one of union type.) */
6447 ret
.kind
= (ref
? ctsk_tagref
: ctsk_tagfirstref
);
6448 if (ref
&& TREE_CODE (ref
) == code
)
6450 if (C_TYPE_DEFINED_IN_STRUCT (ref
)
6451 && loc
!= UNKNOWN_LOCATION
6457 warning_at (loc
, OPT_Wc___compat
,
6458 ("enum type defined in struct or union "
6459 "is not visible in C++"));
6460 inform (refloc
, "enum type defined here");
6463 warning_at (loc
, OPT_Wc___compat
,
6464 ("struct defined in struct or union "
6465 "is not visible in C++"));
6466 inform (refloc
, "struct defined here");
6469 warning_at (loc
, OPT_Wc___compat
,
6470 ("union defined in struct or union "
6471 "is not visible in C++"));
6472 inform (refloc
, "union defined here");
6483 /* If no such tag is yet defined, create a forward-reference node
6484 and record it as the "definition".
6485 When a real declaration of this type is found,
6486 the forward-reference will be altered into a real type. */
6488 ref
= make_node (code
);
6489 if (code
== ENUMERAL_TYPE
)
6491 /* Give the type a default layout like unsigned int
6492 to avoid crashing if it does not get defined. */
6493 SET_TYPE_MODE (ref
, TYPE_MODE (unsigned_type_node
));
6494 TYPE_ALIGN (ref
) = TYPE_ALIGN (unsigned_type_node
);
6495 TYPE_USER_ALIGN (ref
) = 0;
6496 TYPE_UNSIGNED (ref
) = 1;
6497 TYPE_PRECISION (ref
) = TYPE_PRECISION (unsigned_type_node
);
6498 TYPE_MIN_VALUE (ref
) = TYPE_MIN_VALUE (unsigned_type_node
);
6499 TYPE_MAX_VALUE (ref
) = TYPE_MAX_VALUE (unsigned_type_node
);
6502 pushtag (loc
, name
, ref
);
6508 /* Get the struct, enum or union (CODE says which) with tag NAME.
6509 Define the tag as a forward-reference if it is not defined.
6510 Return a tree for the type. */
6513 xref_tag (enum tree_code code
, tree name
)
6515 return parser_xref_tag (input_location
, code
, name
).spec
;
6518 /* Make sure that the tag NAME is defined *in the current scope*
6519 at least as a forward reference.
6520 LOC is the location of the struct's definition.
6521 CODE says which kind of tag NAME ought to be.
6523 This stores the current value of the file static STRUCT_PARSE_INFO
6524 in *ENCLOSING_STRUCT_PARSE_INFO, and points STRUCT_PARSE_INFO at a
6525 new c_struct_parse_info structure. The old value of
6526 STRUCT_PARSE_INFO is restored in finish_struct. */
6529 start_struct (location_t loc
, enum tree_code code
, tree name
,
6530 struct c_struct_parse_info
**enclosing_struct_parse_info
)
6532 /* If there is already a tag defined at this scope
6533 (as a forward reference), just return it. */
6535 tree ref
= NULL_TREE
;
6536 location_t refloc
= UNKNOWN_LOCATION
;
6538 if (name
!= NULL_TREE
)
6539 ref
= lookup_tag (code
, name
, 1, &refloc
);
6540 if (ref
&& TREE_CODE (ref
) == code
)
6542 if (TYPE_SIZE (ref
))
6544 if (code
== UNION_TYPE
)
6545 error_at (loc
, "redefinition of %<union %E%>", name
);
6547 error_at (loc
, "redefinition of %<struct %E%>", name
);
6548 if (refloc
!= UNKNOWN_LOCATION
)
6549 inform (refloc
, "originally defined here");
6550 /* Don't create structures using a name already in use. */
6553 else if (C_TYPE_BEING_DEFINED (ref
))
6555 if (code
== UNION_TYPE
)
6556 error_at (loc
, "nested redefinition of %<union %E%>", name
);
6558 error_at (loc
, "nested redefinition of %<struct %E%>", name
);
6559 /* Don't bother to report "originally defined here" for a
6560 nested redefinition; the original definition should be
6562 /* Don't create structures that contain themselves. */
6567 /* Otherwise create a forward-reference just so the tag is in scope. */
6569 if (ref
== NULL_TREE
|| TREE_CODE (ref
) != code
)
6571 ref
= make_node (code
);
6572 pushtag (loc
, name
, ref
);
6575 C_TYPE_BEING_DEFINED (ref
) = 1;
6576 TYPE_PACKED (ref
) = flag_pack_struct
;
6578 *enclosing_struct_parse_info
= struct_parse_info
;
6579 struct_parse_info
= XNEW (struct c_struct_parse_info
);
6580 struct_parse_info
->struct_types
= VEC_alloc (tree
, heap
, 0);
6581 struct_parse_info
->fields
= VEC_alloc (c_binding_ptr
, heap
, 0);
6582 struct_parse_info
->typedefs_seen
= VEC_alloc (tree
, heap
, 0);
6584 /* FIXME: This will issue a warning for a use of a type defined
6585 within a statement expr used within sizeof, et. al. This is not
6586 terribly serious as C++ doesn't permit statement exprs within
6588 if (warn_cxx_compat
&& (in_sizeof
|| in_typeof
|| in_alignof
))
6589 warning_at (loc
, OPT_Wc___compat
,
6590 "defining type in %qs expression is invalid in C++",
6593 : (in_typeof
? "typeof" : "alignof")));
6598 /* Process the specs, declarator and width (NULL if omitted)
6599 of a structure component, returning a FIELD_DECL node.
6600 WIDTH is non-NULL for bit-fields only, and is an INTEGER_CST node.
6601 DECL_ATTRS is as for grokdeclarator.
6603 LOC is the location of the structure component.
6605 This is done during the parsing of the struct declaration.
6606 The FIELD_DECL nodes are chained together and the lot of them
6607 are ultimately passed to `build_struct' to make the RECORD_TYPE node. */
6610 grokfield (location_t loc
,
6611 struct c_declarator
*declarator
, struct c_declspecs
*declspecs
,
6612 tree width
, tree
*decl_attrs
)
6616 if (declarator
->kind
== cdk_id
&& declarator
->u
.id
== NULL_TREE
6617 && width
== NULL_TREE
)
6619 /* This is an unnamed decl.
6621 If we have something of the form "union { list } ;" then this
6622 is the anonymous union extension. Similarly for struct.
6624 If this is something of the form "struct foo;", then
6625 If MS or Plan 9 extensions are enabled, this is handled as
6626 an anonymous struct.
6627 Otherwise this is a forward declaration of a structure tag.
6629 If this is something of the form "foo;" and foo is a TYPE_DECL, then
6630 If foo names a structure or union without a tag, then this
6631 is an anonymous struct (this is permitted by C1X).
6632 If MS or Plan 9 extensions are enabled and foo names a
6633 structure, then again this is an anonymous struct.
6634 Otherwise this is an error.
6636 Oh what a horrid tangled web we weave. I wonder if MS consciously
6637 took this from Plan 9 or if it was an accident of implementation
6638 that took root before someone noticed the bug... */
6640 tree type
= declspecs
->type
;
6641 bool type_ok
= (TREE_CODE (type
) == RECORD_TYPE
6642 || TREE_CODE (type
) == UNION_TYPE
);
6646 && (flag_ms_extensions
6647 || flag_plan9_extensions
6648 || !declspecs
->typedef_p
))
6650 if (flag_ms_extensions
|| flag_plan9_extensions
)
6652 else if (TYPE_NAME (type
) == NULL
)
6659 pedwarn (loc
, 0, "declaration does not declare anything");
6665 pedwarn (loc
, OPT_pedantic
,
6666 "ISO C99 doesn%'t support unnamed structs/unions");
6668 pedwarn (loc
, OPT_pedantic
,
6669 "ISO C90 doesn%'t support unnamed structs/unions");
6673 value
= grokdeclarator (declarator
, declspecs
, FIELD
, false,
6674 width
? &width
: NULL
, decl_attrs
, NULL
, NULL
,
6677 finish_decl (value
, loc
, NULL_TREE
, NULL_TREE
, NULL_TREE
);
6678 DECL_INITIAL (value
) = width
;
6680 if (warn_cxx_compat
&& DECL_NAME (value
) != NULL_TREE
)
6682 /* If we currently have a binding for this field, set the
6683 in_struct field in the binding, so that we warn about lookups
6685 struct c_binding
*b
= I_SYMBOL_BINDING (DECL_NAME (value
));
6688 /* If the in_struct field is not yet set, push it on a list
6689 to be cleared when this struct is finished. */
6692 VEC_safe_push (c_binding_ptr
, heap
,
6693 struct_parse_info
->fields
, b
);
6702 /* Subroutine of detect_field_duplicates: return whether X and Y,
6703 which are both fields in the same struct, have duplicate field
6707 is_duplicate_field (tree x
, tree y
)
6709 if (DECL_NAME (x
) != NULL_TREE
&& DECL_NAME (x
) == DECL_NAME (y
))
6712 /* When using -fplan9-extensions, an anonymous field whose name is a
6713 typedef can duplicate a field name. */
6714 if (flag_plan9_extensions
6715 && (DECL_NAME (x
) == NULL_TREE
|| DECL_NAME (y
) == NULL_TREE
))
6717 tree xt
, xn
, yt
, yn
;
6720 if (DECL_NAME (x
) != NULL_TREE
)
6722 else if ((TREE_CODE (xt
) == RECORD_TYPE
|| TREE_CODE (xt
) == UNION_TYPE
)
6723 && TYPE_NAME (xt
) != NULL_TREE
6724 && TREE_CODE (TYPE_NAME (xt
)) == TYPE_DECL
)
6725 xn
= DECL_NAME (TYPE_NAME (xt
));
6730 if (DECL_NAME (y
) != NULL_TREE
)
6732 else if ((TREE_CODE (yt
) == RECORD_TYPE
|| TREE_CODE (yt
) == UNION_TYPE
)
6733 && TYPE_NAME (yt
) != NULL_TREE
6734 && TREE_CODE (TYPE_NAME (yt
)) == TYPE_DECL
)
6735 yn
= DECL_NAME (TYPE_NAME (yt
));
6739 if (xn
!= NULL_TREE
&& xn
== yn
)
6746 /* Subroutine of detect_field_duplicates: add the fields of FIELDLIST
6747 to HTAB, giving errors for any duplicates. */
6750 detect_field_duplicates_hash (tree fieldlist
, htab_t htab
)
6755 for (x
= fieldlist
; x
; x
= DECL_CHAIN (x
))
6756 if ((y
= DECL_NAME (x
)) != 0)
6758 slot
= htab_find_slot (htab
, y
, INSERT
);
6761 error ("duplicate member %q+D", x
);
6762 DECL_NAME (x
) = NULL_TREE
;
6766 else if (TREE_CODE (TREE_TYPE (x
)) == RECORD_TYPE
6767 || TREE_CODE (TREE_TYPE (x
)) == UNION_TYPE
)
6769 detect_field_duplicates_hash (TYPE_FIELDS (TREE_TYPE (x
)), htab
);
6771 /* When using -fplan9-extensions, an anonymous field whose
6772 name is a typedef can duplicate a field name. */
6773 if (flag_plan9_extensions
6774 && TYPE_NAME (TREE_TYPE (x
)) != NULL_TREE
6775 && TREE_CODE (TYPE_NAME (TREE_TYPE (x
))) == TYPE_DECL
)
6777 tree xn
= DECL_NAME (TYPE_NAME (TREE_TYPE (x
)));
6778 slot
= htab_find_slot (htab
, xn
, INSERT
);
6780 error ("duplicate member %q+D", TYPE_NAME (TREE_TYPE (x
)));
6786 /* Generate an error for any duplicate field names in FIELDLIST. Munge
6787 the list such that this does not present a problem later. */
6790 detect_field_duplicates (tree fieldlist
)
6795 /* If the struct is the list of instance variables of an Objective-C
6796 class, then we need to check all the instance variables of
6797 superclasses when checking for duplicates (since you can't have
6798 an instance variable in a subclass with the same name as an
6799 instance variable in a superclass). We pass on this job to the
6800 Objective-C compiler. objc_detect_field_duplicates() will return
6801 false if we are not checking the list of instance variables and
6802 the C frontend should proceed with the standard field duplicate
6803 checks. If we are checking the list of instance variables, the
6804 ObjC frontend will do the check, emit the errors if needed, and
6805 then return true. */
6806 if (c_dialect_objc ())
6807 if (objc_detect_field_duplicates (false))
6810 /* First, see if there are more than "a few" fields.
6811 This is trivially true if there are zero or one fields. */
6812 if (!fieldlist
|| !DECL_CHAIN (fieldlist
))
6817 if (DECL_NAME (x
) == NULL_TREE
6818 && (TREE_CODE (TREE_TYPE (x
)) == RECORD_TYPE
6819 || TREE_CODE (TREE_TYPE (x
)) == UNION_TYPE
))
6822 } while (timeout
> 0 && x
);
6824 /* If there were "few" fields and no anonymous structures or unions,
6825 avoid the overhead of allocating a hash table. Instead just do
6826 the nested traversal thing. */
6829 for (x
= DECL_CHAIN (fieldlist
); x
; x
= DECL_CHAIN (x
))
6830 /* When using -fplan9-extensions, we can have duplicates
6831 between typedef names and fields. */
6833 || (flag_plan9_extensions
6834 && DECL_NAME (x
) == NULL_TREE
6835 && (TREE_CODE (TREE_TYPE (x
)) == RECORD_TYPE
6836 || TREE_CODE (TREE_TYPE (x
)) == UNION_TYPE
)
6837 && TYPE_NAME (TREE_TYPE (x
)) != NULL_TREE
6838 && TREE_CODE (TYPE_NAME (TREE_TYPE (x
))) == TYPE_DECL
))
6840 for (y
= fieldlist
; y
!= x
; y
= TREE_CHAIN (y
))
6841 if (is_duplicate_field (y
, x
))
6843 error ("duplicate member %q+D", x
);
6844 DECL_NAME (x
) = NULL_TREE
;
6850 htab_t htab
= htab_create (37, htab_hash_pointer
, htab_eq_pointer
, NULL
);
6852 detect_field_duplicates_hash (fieldlist
, htab
);
6857 /* Finish up struct info used by -Wc++-compat. */
6860 warn_cxx_compat_finish_struct (tree fieldlist
)
6864 struct c_binding
*b
;
6866 /* Set the C_TYPE_DEFINED_IN_STRUCT flag for each type defined in
6867 the current struct. We do this now at the end of the struct
6868 because the flag is used to issue visibility warnings, and we
6869 only want to issue those warnings if the type is referenced
6870 outside of the struct declaration. */
6871 FOR_EACH_VEC_ELT (tree
, struct_parse_info
->struct_types
, ix
, x
)
6872 C_TYPE_DEFINED_IN_STRUCT (x
) = 1;
6874 /* The TYPEDEFS_SEEN field of STRUCT_PARSE_INFO is a list of
6875 typedefs used when declaring fields in this struct. If the name
6876 of any of the fields is also a typedef name then the struct would
6877 not parse in C++, because the C++ lookup rules say that the
6878 typedef name would be looked up in the context of the struct, and
6879 would thus be the field rather than the typedef. */
6880 if (!VEC_empty (tree
, struct_parse_info
->typedefs_seen
)
6881 && fieldlist
!= NULL_TREE
)
6883 /* Use a pointer_set using the name of the typedef. We can use
6884 a pointer_set because identifiers are interned. */
6885 struct pointer_set_t
*tset
= pointer_set_create ();
6887 FOR_EACH_VEC_ELT (tree
, struct_parse_info
->typedefs_seen
, ix
, x
)
6888 pointer_set_insert (tset
, DECL_NAME (x
));
6890 for (x
= fieldlist
; x
!= NULL_TREE
; x
= DECL_CHAIN (x
))
6892 if (DECL_NAME (x
) != NULL_TREE
6893 && pointer_set_contains (tset
, DECL_NAME (x
)))
6895 warning_at (DECL_SOURCE_LOCATION (x
), OPT_Wc___compat
,
6896 ("using %qD as both field and typedef name is "
6899 /* FIXME: It would be nice to report the location where
6900 the typedef name is used. */
6904 pointer_set_destroy (tset
);
6907 /* For each field which has a binding and which was not defined in
6908 an enclosing struct, clear the in_struct field. */
6909 FOR_EACH_VEC_ELT (c_binding_ptr
, struct_parse_info
->fields
, ix
, b
)
6913 /* Fill in the fields of a RECORD_TYPE or UNION_TYPE node, T.
6914 LOC is the location of the RECORD_TYPE or UNION_TYPE's definition.
6915 FIELDLIST is a chain of FIELD_DECL nodes for the fields.
6916 ATTRIBUTES are attributes to be applied to the structure.
6918 ENCLOSING_STRUCT_PARSE_INFO is the value of STRUCT_PARSE_INFO when
6919 the struct was started. */
6922 finish_struct (location_t loc
, tree t
, tree fieldlist
, tree attributes
,
6923 struct c_struct_parse_info
*enclosing_struct_parse_info
)
6926 bool toplevel
= file_scope
== current_scope
;
6927 int saw_named_field
;
6929 /* If this type was previously laid out as a forward reference,
6930 make sure we lay it out again. */
6934 decl_attributes (&t
, attributes
, (int) ATTR_FLAG_TYPE_IN_PLACE
);
6938 for (x
= fieldlist
; x
; x
= DECL_CHAIN (x
))
6940 if (DECL_NAME (x
) != 0)
6943 && (TREE_CODE (TREE_TYPE (x
)) == RECORD_TYPE
6944 || TREE_CODE (TREE_TYPE (x
)) == UNION_TYPE
))
6950 if (TREE_CODE (t
) == UNION_TYPE
)
6953 pedwarn (loc
, OPT_pedantic
, "union has no named members");
6955 pedwarn (loc
, OPT_pedantic
, "union has no members");
6960 pedwarn (loc
, OPT_pedantic
, "struct has no named members");
6962 pedwarn (loc
, OPT_pedantic
, "struct has no members");
6967 /* Install struct as DECL_CONTEXT of each field decl.
6968 Also process specified field sizes, found in the DECL_INITIAL,
6969 storing 0 there after the type has been changed to precision equal
6970 to its width, rather than the precision of the specified standard
6971 type. (Correct layout requires the original type to have been preserved
6974 saw_named_field
= 0;
6975 for (x
= fieldlist
; x
; x
= DECL_CHAIN (x
))
6977 if (TREE_TYPE (x
) == error_mark_node
)
6980 DECL_CONTEXT (x
) = t
;
6982 /* If any field is const, the structure type is pseudo-const. */
6983 if (TREE_READONLY (x
))
6984 C_TYPE_FIELDS_READONLY (t
) = 1;
6987 /* A field that is pseudo-const makes the structure likewise. */
6988 tree t1
= strip_array_types (TREE_TYPE (x
));
6989 if ((TREE_CODE (t1
) == RECORD_TYPE
|| TREE_CODE (t1
) == UNION_TYPE
)
6990 && C_TYPE_FIELDS_READONLY (t1
))
6991 C_TYPE_FIELDS_READONLY (t
) = 1;
6994 /* Any field that is volatile means variables of this type must be
6995 treated in some ways as volatile. */
6996 if (TREE_THIS_VOLATILE (x
))
6997 C_TYPE_FIELDS_VOLATILE (t
) = 1;
6999 /* Any field of nominal variable size implies structure is too. */
7000 if (C_DECL_VARIABLE_SIZE (x
))
7001 C_TYPE_VARIABLE_SIZE (t
) = 1;
7003 if (DECL_INITIAL (x
))
7005 unsigned HOST_WIDE_INT width
= tree_low_cst (DECL_INITIAL (x
), 1);
7006 DECL_SIZE (x
) = bitsize_int (width
);
7007 DECL_BIT_FIELD (x
) = 1;
7008 SET_DECL_C_BIT_FIELD (x
);
7012 && (DECL_BIT_FIELD (x
)
7013 || TYPE_ALIGN (TREE_TYPE (x
)) > BITS_PER_UNIT
))
7014 DECL_PACKED (x
) = 1;
7016 /* Detect flexible array member in an invalid context. */
7017 if (TREE_CODE (TREE_TYPE (x
)) == ARRAY_TYPE
7018 && TYPE_SIZE (TREE_TYPE (x
)) == NULL_TREE
7019 && TYPE_DOMAIN (TREE_TYPE (x
)) != NULL_TREE
7020 && TYPE_MAX_VALUE (TYPE_DOMAIN (TREE_TYPE (x
))) == NULL_TREE
)
7022 if (TREE_CODE (t
) == UNION_TYPE
)
7024 error_at (DECL_SOURCE_LOCATION (x
),
7025 "flexible array member in union");
7026 TREE_TYPE (x
) = error_mark_node
;
7028 else if (DECL_CHAIN (x
) != NULL_TREE
)
7030 error_at (DECL_SOURCE_LOCATION (x
),
7031 "flexible array member not at end of struct");
7032 TREE_TYPE (x
) = error_mark_node
;
7034 else if (!saw_named_field
)
7036 error_at (DECL_SOURCE_LOCATION (x
),
7037 "flexible array member in otherwise empty struct");
7038 TREE_TYPE (x
) = error_mark_node
;
7042 if (pedantic
&& TREE_CODE (t
) == RECORD_TYPE
7043 && flexible_array_type_p (TREE_TYPE (x
)))
7044 pedwarn (DECL_SOURCE_LOCATION (x
), OPT_pedantic
,
7045 "invalid use of structure with flexible array member");
7048 || TREE_CODE (TREE_TYPE (x
)) == RECORD_TYPE
7049 || TREE_CODE (TREE_TYPE (x
)) == UNION_TYPE
)
7050 saw_named_field
= 1;
7053 detect_field_duplicates (fieldlist
);
7055 /* Now we have the nearly final fieldlist. Record it,
7056 then lay out the structure or union (including the fields). */
7058 TYPE_FIELDS (t
) = fieldlist
;
7062 /* Give bit-fields their proper types. */
7064 tree
*fieldlistp
= &fieldlist
;
7066 if (TREE_CODE (*fieldlistp
) == FIELD_DECL
&& DECL_INITIAL (*fieldlistp
)
7067 && TREE_TYPE (*fieldlistp
) != error_mark_node
)
7069 unsigned HOST_WIDE_INT width
7070 = tree_low_cst (DECL_INITIAL (*fieldlistp
), 1);
7071 tree type
= TREE_TYPE (*fieldlistp
);
7072 if (width
!= TYPE_PRECISION (type
))
7074 TREE_TYPE (*fieldlistp
)
7075 = c_build_bitfield_integer_type (width
, TYPE_UNSIGNED (type
));
7076 DECL_MODE (*fieldlistp
) = TYPE_MODE (TREE_TYPE (*fieldlistp
));
7078 DECL_INITIAL (*fieldlistp
) = 0;
7081 fieldlistp
= &DECL_CHAIN (*fieldlistp
);
7084 /* Now we have the truly final field list.
7085 Store it in this type and in the variants. */
7087 TYPE_FIELDS (t
) = fieldlist
;
7089 /* If there are lots of fields, sort so we can look through them fast.
7090 We arbitrarily consider 16 or more elts to be "a lot". */
7095 for (x
= fieldlist
; x
; x
= DECL_CHAIN (x
))
7097 if (len
> 15 || DECL_NAME (x
) == NULL
)
7105 struct lang_type
*space
;
7106 struct sorted_fields_type
*space2
;
7108 len
+= list_length (x
);
7110 /* Use the same allocation policy here that make_node uses, to
7111 ensure that this lives as long as the rest of the struct decl.
7112 All decls in an inline function need to be saved. */
7114 space
= ggc_alloc_cleared_lang_type (sizeof (struct lang_type
));
7115 space2
= ggc_alloc_sorted_fields_type
7116 (sizeof (struct sorted_fields_type
) + len
* sizeof (tree
));
7120 field_array
= &space2
->elts
[0];
7121 for (x
= fieldlist
; x
; x
= DECL_CHAIN (x
))
7123 field_array
[len
++] = x
;
7125 /* If there is anonymous struct or union, break out of the loop. */
7126 if (DECL_NAME (x
) == NULL
)
7129 /* Found no anonymous struct/union. Add the TYPE_LANG_SPECIFIC. */
7132 TYPE_LANG_SPECIFIC (t
) = space
;
7133 TYPE_LANG_SPECIFIC (t
)->s
->len
= len
;
7134 field_array
= TYPE_LANG_SPECIFIC (t
)->s
->elts
;
7135 qsort (field_array
, len
, sizeof (tree
), field_decl_cmp
);
7140 for (x
= TYPE_MAIN_VARIANT (t
); x
; x
= TYPE_NEXT_VARIANT (x
))
7142 TYPE_FIELDS (x
) = TYPE_FIELDS (t
);
7143 TYPE_LANG_SPECIFIC (x
) = TYPE_LANG_SPECIFIC (t
);
7144 C_TYPE_FIELDS_READONLY (x
) = C_TYPE_FIELDS_READONLY (t
);
7145 C_TYPE_FIELDS_VOLATILE (x
) = C_TYPE_FIELDS_VOLATILE (t
);
7146 C_TYPE_VARIABLE_SIZE (x
) = C_TYPE_VARIABLE_SIZE (t
);
7149 /* If this was supposed to be a transparent union, but we can't
7150 make it one, warn and turn off the flag. */
7151 if (TREE_CODE (t
) == UNION_TYPE
7152 && TYPE_TRANSPARENT_AGGR (t
)
7153 && (!TYPE_FIELDS (t
) || TYPE_MODE (t
) != DECL_MODE (TYPE_FIELDS (t
))))
7155 TYPE_TRANSPARENT_AGGR (t
) = 0;
7156 warning_at (loc
, 0, "union cannot be made transparent");
7159 /* If this structure or union completes the type of any previous
7160 variable declaration, lay it out and output its rtl. */
7161 for (x
= C_TYPE_INCOMPLETE_VARS (TYPE_MAIN_VARIANT (t
));
7165 tree decl
= TREE_VALUE (x
);
7166 if (TREE_CODE (TREE_TYPE (decl
)) == ARRAY_TYPE
)
7167 layout_array_type (TREE_TYPE (decl
));
7168 if (TREE_CODE (decl
) != TYPE_DECL
)
7170 layout_decl (decl
, 0);
7171 if (c_dialect_objc ())
7172 objc_check_decl (decl
);
7173 rest_of_decl_compilation (decl
, toplevel
, 0);
7178 C_TYPE_INCOMPLETE_VARS (TYPE_MAIN_VARIANT (t
)) = 0;
7180 /* Update type location to the one of the definition, instead of e.g.
7181 a forward declaration. */
7182 if (TYPE_STUB_DECL (t
))
7183 DECL_SOURCE_LOCATION (TYPE_STUB_DECL (t
)) = loc
;
7185 /* Finish debugging output for this type. */
7186 rest_of_type_compilation (t
, toplevel
);
7188 /* If we're inside a function proper, i.e. not file-scope and not still
7189 parsing parameters, then arrange for the size of a variable sized type
7191 if (cur_stmt_list
&& variably_modified_type_p (t
, NULL_TREE
))
7192 add_stmt (build_stmt (loc
,
7193 DECL_EXPR
, build_decl (loc
, TYPE_DECL
, NULL
, t
)));
7195 if (warn_cxx_compat
)
7196 warn_cxx_compat_finish_struct (fieldlist
);
7198 VEC_free (tree
, heap
, struct_parse_info
->struct_types
);
7199 VEC_free (c_binding_ptr
, heap
, struct_parse_info
->fields
);
7200 VEC_free (tree
, heap
, struct_parse_info
->typedefs_seen
);
7201 XDELETE (struct_parse_info
);
7203 struct_parse_info
= enclosing_struct_parse_info
;
7205 /* If this struct is defined inside a struct, add it to
7208 && struct_parse_info
!= NULL
7209 && !in_sizeof
&& !in_typeof
&& !in_alignof
)
7210 VEC_safe_push (tree
, heap
, struct_parse_info
->struct_types
, t
);
7215 /* Lay out the type T, and its element type, and so on. */
7218 layout_array_type (tree t
)
7220 if (TREE_CODE (TREE_TYPE (t
)) == ARRAY_TYPE
)
7221 layout_array_type (TREE_TYPE (t
));
7225 /* Begin compiling the definition of an enumeration type.
7226 NAME is its name (or null if anonymous).
7227 LOC is the enum's location.
7228 Returns the type object, as yet incomplete.
7229 Also records info about it so that build_enumerator
7230 may be used to declare the individual values as they are read. */
7233 start_enum (location_t loc
, struct c_enum_contents
*the_enum
, tree name
)
7235 tree enumtype
= NULL_TREE
;
7236 location_t enumloc
= UNKNOWN_LOCATION
;
7238 /* If this is the real definition for a previous forward reference,
7239 fill in the contents in the same object that used to be the
7240 forward reference. */
7242 if (name
!= NULL_TREE
)
7243 enumtype
= lookup_tag (ENUMERAL_TYPE
, name
, 1, &enumloc
);
7245 if (enumtype
== 0 || TREE_CODE (enumtype
) != ENUMERAL_TYPE
)
7247 enumtype
= make_node (ENUMERAL_TYPE
);
7248 pushtag (loc
, name
, enumtype
);
7251 if (C_TYPE_BEING_DEFINED (enumtype
))
7252 error_at (loc
, "nested redefinition of %<enum %E%>", name
);
7254 C_TYPE_BEING_DEFINED (enumtype
) = 1;
7256 if (TYPE_VALUES (enumtype
) != 0)
7258 /* This enum is a named one that has been declared already. */
7259 error_at (loc
, "redeclaration of %<enum %E%>", name
);
7260 if (enumloc
!= UNKNOWN_LOCATION
)
7261 inform (enumloc
, "originally defined here");
7263 /* Completely replace its old definition.
7264 The old enumerators remain defined, however. */
7265 TYPE_VALUES (enumtype
) = 0;
7268 the_enum
->enum_next_value
= integer_zero_node
;
7269 the_enum
->enum_overflow
= 0;
7271 if (flag_short_enums
)
7272 TYPE_PACKED (enumtype
) = 1;
7274 /* FIXME: This will issue a warning for a use of a type defined
7275 within sizeof in a statement expr. This is not terribly serious
7276 as C++ doesn't permit statement exprs within sizeof anyhow. */
7277 if (warn_cxx_compat
&& (in_sizeof
|| in_typeof
|| in_alignof
))
7278 warning_at (loc
, OPT_Wc___compat
,
7279 "defining type in %qs expression is invalid in C++",
7282 : (in_typeof
? "typeof" : "alignof")));
7287 /* After processing and defining all the values of an enumeration type,
7288 install their decls in the enumeration type and finish it off.
7289 ENUMTYPE is the type object, VALUES a list of decl-value pairs,
7290 and ATTRIBUTES are the specified attributes.
7291 Returns ENUMTYPE. */
7294 finish_enum (tree enumtype
, tree values
, tree attributes
)
7297 tree minnode
= 0, maxnode
= 0;
7298 int precision
, unsign
;
7299 bool toplevel
= (file_scope
== current_scope
);
7300 struct lang_type
*lt
;
7302 decl_attributes (&enumtype
, attributes
, (int) ATTR_FLAG_TYPE_IN_PLACE
);
7304 /* Calculate the maximum value of any enumerator in this type. */
7306 if (values
== error_mark_node
)
7307 minnode
= maxnode
= integer_zero_node
;
7310 minnode
= maxnode
= TREE_VALUE (values
);
7311 for (pair
= TREE_CHAIN (values
); pair
; pair
= TREE_CHAIN (pair
))
7313 tree value
= TREE_VALUE (pair
);
7314 if (tree_int_cst_lt (maxnode
, value
))
7316 if (tree_int_cst_lt (value
, minnode
))
7321 /* Construct the final type of this enumeration. It is the same
7322 as one of the integral types - the narrowest one that fits, except
7323 that normally we only go as narrow as int - and signed iff any of
7324 the values are negative. */
7325 unsign
= (tree_int_cst_sgn (minnode
) >= 0);
7326 precision
= MAX (tree_int_cst_min_precision (minnode
, unsign
),
7327 tree_int_cst_min_precision (maxnode
, unsign
));
7329 if (TYPE_PACKED (enumtype
) || precision
> TYPE_PRECISION (integer_type_node
))
7331 tem
= c_common_type_for_size (precision
, unsign
);
7334 warning (0, "enumeration values exceed range of largest integer");
7335 tem
= long_long_integer_type_node
;
7339 tem
= unsign
? unsigned_type_node
: integer_type_node
;
7341 TYPE_MIN_VALUE (enumtype
) = TYPE_MIN_VALUE (tem
);
7342 TYPE_MAX_VALUE (enumtype
) = TYPE_MAX_VALUE (tem
);
7343 TYPE_UNSIGNED (enumtype
) = TYPE_UNSIGNED (tem
);
7344 TYPE_SIZE (enumtype
) = 0;
7346 /* If the precision of the type was specific with an attribute and it
7347 was too small, give an error. Otherwise, use it. */
7348 if (TYPE_PRECISION (enumtype
))
7350 if (precision
> TYPE_PRECISION (enumtype
))
7351 error ("specified mode too small for enumeral values");
7354 TYPE_PRECISION (enumtype
) = TYPE_PRECISION (tem
);
7356 layout_type (enumtype
);
7358 if (values
!= error_mark_node
)
7360 /* Change the type of the enumerators to be the enum type. We
7361 need to do this irrespective of the size of the enum, for
7362 proper type checking. Replace the DECL_INITIALs of the
7363 enumerators, and the value slots of the list, with copies
7364 that have the enum type; they cannot be modified in place
7365 because they may be shared (e.g. integer_zero_node) Finally,
7366 change the purpose slots to point to the names of the decls. */
7367 for (pair
= values
; pair
; pair
= TREE_CHAIN (pair
))
7369 tree enu
= TREE_PURPOSE (pair
);
7370 tree ini
= DECL_INITIAL (enu
);
7372 TREE_TYPE (enu
) = enumtype
;
7374 /* The ISO C Standard mandates enumerators to have type int,
7375 even though the underlying type of an enum type is
7376 unspecified. However, GCC allows enumerators of any
7377 integer type as an extensions. build_enumerator()
7378 converts any enumerators that fit in an int to type int,
7379 to avoid promotions to unsigned types when comparing
7380 integers with enumerators that fit in the int range.
7381 When -pedantic is given, build_enumerator() would have
7382 already warned about those that don't fit. Here we
7383 convert the rest to the enumerator type. */
7384 if (TREE_TYPE (ini
) != integer_type_node
)
7385 ini
= convert (enumtype
, ini
);
7387 DECL_INITIAL (enu
) = ini
;
7388 TREE_PURPOSE (pair
) = DECL_NAME (enu
);
7389 TREE_VALUE (pair
) = ini
;
7392 TYPE_VALUES (enumtype
) = values
;
7395 /* Record the min/max values so that we can warn about bit-field
7396 enumerations that are too small for the values. */
7397 lt
= ggc_alloc_cleared_lang_type (sizeof (struct lang_type
));
7398 lt
->enum_min
= minnode
;
7399 lt
->enum_max
= maxnode
;
7400 TYPE_LANG_SPECIFIC (enumtype
) = lt
;
7402 /* Fix up all variant types of this enum type. */
7403 for (tem
= TYPE_MAIN_VARIANT (enumtype
); tem
; tem
= TYPE_NEXT_VARIANT (tem
))
7405 if (tem
== enumtype
)
7407 TYPE_VALUES (tem
) = TYPE_VALUES (enumtype
);
7408 TYPE_MIN_VALUE (tem
) = TYPE_MIN_VALUE (enumtype
);
7409 TYPE_MAX_VALUE (tem
) = TYPE_MAX_VALUE (enumtype
);
7410 TYPE_SIZE (tem
) = TYPE_SIZE (enumtype
);
7411 TYPE_SIZE_UNIT (tem
) = TYPE_SIZE_UNIT (enumtype
);
7412 SET_TYPE_MODE (tem
, TYPE_MODE (enumtype
));
7413 TYPE_PRECISION (tem
) = TYPE_PRECISION (enumtype
);
7414 TYPE_ALIGN (tem
) = TYPE_ALIGN (enumtype
);
7415 TYPE_USER_ALIGN (tem
) = TYPE_USER_ALIGN (enumtype
);
7416 TYPE_UNSIGNED (tem
) = TYPE_UNSIGNED (enumtype
);
7417 TYPE_LANG_SPECIFIC (tem
) = TYPE_LANG_SPECIFIC (enumtype
);
7420 /* Finish debugging output for this type. */
7421 rest_of_type_compilation (enumtype
, toplevel
);
7423 /* If this enum is defined inside a struct, add it to
7426 && struct_parse_info
!= NULL
7427 && !in_sizeof
&& !in_typeof
&& !in_alignof
)
7428 VEC_safe_push (tree
, heap
, struct_parse_info
->struct_types
, enumtype
);
7433 /* Build and install a CONST_DECL for one value of the
7434 current enumeration type (one that was begun with start_enum).
7435 DECL_LOC is the location of the enumerator.
7436 LOC is the location of the '=' operator if any, DECL_LOC otherwise.
7437 Return a tree-list containing the CONST_DECL and its value.
7438 Assignment of sequential values by default is handled here. */
7441 build_enumerator (location_t decl_loc
, location_t loc
,
7442 struct c_enum_contents
*the_enum
, tree name
, tree value
)
7446 /* Validate and default VALUE. */
7450 /* Don't issue more errors for error_mark_node (i.e. an
7451 undeclared identifier) - just ignore the value expression. */
7452 if (value
== error_mark_node
)
7454 else if (!INTEGRAL_TYPE_P (TREE_TYPE (value
)))
7456 error_at (loc
, "enumerator value for %qE is not an integer constant",
7462 if (TREE_CODE (value
) != INTEGER_CST
)
7464 value
= c_fully_fold (value
, false, NULL
);
7465 if (TREE_CODE (value
) == INTEGER_CST
)
7466 pedwarn (loc
, OPT_pedantic
,
7467 "enumerator value for %qE is not an integer "
7468 "constant expression", name
);
7470 if (TREE_CODE (value
) != INTEGER_CST
)
7472 error ("enumerator value for %qE is not an integer constant",
7478 value
= default_conversion (value
);
7479 constant_expression_warning (value
);
7484 /* Default based on previous value. */
7485 /* It should no longer be possible to have NON_LVALUE_EXPR
7489 value
= the_enum
->enum_next_value
;
7490 if (the_enum
->enum_overflow
)
7491 error_at (loc
, "overflow in enumeration values");
7493 /* Even though the underlying type of an enum is unspecified, the
7494 type of enumeration constants is explicitly defined as int
7495 (6.4.4.3/2 in the C99 Standard). GCC allows any integer type as
7497 else if (!int_fits_type_p (value
, integer_type_node
))
7498 pedwarn (loc
, OPT_pedantic
,
7499 "ISO C restricts enumerator values to range of %<int%>");
7501 /* The ISO C Standard mandates enumerators to have type int, even
7502 though the underlying type of an enum type is unspecified.
7503 However, GCC allows enumerators of any integer type as an
7504 extensions. Here we convert any enumerators that fit in an int
7505 to type int, to avoid promotions to unsigned types when comparing
7506 integers with enumerators that fit in the int range. When
7507 -pedantic is given, we would have already warned about those that
7508 don't fit. We have to do this here rather than in finish_enum
7509 because this value may be used to define more enumerators. */
7510 if (int_fits_type_p (value
, integer_type_node
))
7511 value
= convert (integer_type_node
, value
);
7513 /* Set basis for default for next value. */
7514 the_enum
->enum_next_value
7515 = build_binary_op (EXPR_LOC_OR_HERE (value
),
7516 PLUS_EXPR
, value
, integer_one_node
, 0);
7517 the_enum
->enum_overflow
= tree_int_cst_lt (the_enum
->enum_next_value
, value
);
7519 /* Now create a declaration for the enum value name. */
7521 type
= TREE_TYPE (value
);
7522 type
= c_common_type_for_size (MAX (TYPE_PRECISION (type
),
7523 TYPE_PRECISION (integer_type_node
)),
7524 (TYPE_PRECISION (type
)
7525 >= TYPE_PRECISION (integer_type_node
)
7526 && TYPE_UNSIGNED (type
)));
7528 decl
= build_decl (decl_loc
, CONST_DECL
, name
, type
);
7529 DECL_INITIAL (decl
) = convert (type
, value
);
7532 return tree_cons (decl
, value
, NULL_TREE
);
7536 /* Create the FUNCTION_DECL for a function definition.
7537 DECLSPECS, DECLARATOR and ATTRIBUTES are the parts of
7538 the declaration; they describe the function's name and the type it returns,
7539 but twisted together in a fashion that parallels the syntax of C.
7541 This function creates a binding context for the function body
7542 as well as setting up the FUNCTION_DECL in current_function_decl.
7544 Returns 1 on success. If the DECLARATOR is not suitable for a function
7545 (it defines a datum instead), we return 0, which tells
7546 yyparse to report a parse error. */
7549 start_function (struct c_declspecs
*declspecs
, struct c_declarator
*declarator
,
7552 tree decl1
, old_decl
;
7553 tree restype
, resdecl
;
7556 current_function_returns_value
= 0; /* Assume, until we see it does. */
7557 current_function_returns_null
= 0;
7558 current_function_returns_abnormally
= 0;
7559 warn_about_return_type
= 0;
7560 c_switch_stack
= NULL
;
7562 /* Indicate no valid break/continue context by setting these variables
7563 to some non-null, non-label value. We'll notice and emit the proper
7564 error message in c_finish_bc_stmt. */
7565 c_break_label
= c_cont_label
= size_zero_node
;
7567 decl1
= grokdeclarator (declarator
, declspecs
, FUNCDEF
, true, NULL
,
7568 &attributes
, NULL
, NULL
, DEPRECATED_NORMAL
);
7570 /* If the declarator is not suitable for a function definition,
7571 cause a syntax error. */
7575 loc
= DECL_SOURCE_LOCATION (decl1
);
7577 decl_attributes (&decl1
, attributes
, 0);
7579 if (DECL_DECLARED_INLINE_P (decl1
)
7580 && DECL_UNINLINABLE (decl1
)
7581 && lookup_attribute ("noinline", DECL_ATTRIBUTES (decl1
)))
7582 warning_at (loc
, OPT_Wattributes
,
7583 "inline function %qD given attribute noinline",
7586 /* Handle gnu_inline attribute. */
7587 if (declspecs
->inline_p
7588 && !flag_gnu89_inline
7589 && TREE_CODE (decl1
) == FUNCTION_DECL
7590 && (lookup_attribute ("gnu_inline", DECL_ATTRIBUTES (decl1
))
7591 || current_function_decl
))
7593 if (declspecs
->storage_class
!= csc_static
)
7594 DECL_EXTERNAL (decl1
) = !DECL_EXTERNAL (decl1
);
7597 announce_function (decl1
);
7599 if (!COMPLETE_OR_VOID_TYPE_P (TREE_TYPE (TREE_TYPE (decl1
))))
7601 error_at (loc
, "return type is an incomplete type");
7602 /* Make it return void instead. */
7604 = build_function_type (void_type_node
,
7605 TYPE_ARG_TYPES (TREE_TYPE (decl1
)));
7608 if (warn_about_return_type
)
7609 pedwarn_c99 (loc
, flag_isoc99
? 0
7610 : (warn_return_type
? OPT_Wreturn_type
: OPT_Wimplicit_int
),
7611 "return type defaults to %<int%>");
7613 /* Make the init_value nonzero so pushdecl knows this is not tentative.
7614 error_mark_node is replaced below (in pop_scope) with the BLOCK. */
7615 DECL_INITIAL (decl1
) = error_mark_node
;
7617 /* A nested function is not global. */
7618 if (current_function_decl
!= 0)
7619 TREE_PUBLIC (decl1
) = 0;
7621 /* If this definition isn't a prototype and we had a prototype declaration
7622 before, copy the arg type info from that prototype. */
7623 old_decl
= lookup_name_in_scope (DECL_NAME (decl1
), current_scope
);
7624 if (old_decl
&& TREE_CODE (old_decl
) != FUNCTION_DECL
)
7626 current_function_prototype_locus
= UNKNOWN_LOCATION
;
7627 current_function_prototype_built_in
= false;
7628 current_function_prototype_arg_types
= NULL_TREE
;
7629 if (!prototype_p (TREE_TYPE (decl1
)))
7631 if (old_decl
!= 0 && TREE_CODE (TREE_TYPE (old_decl
)) == FUNCTION_TYPE
7632 && comptypes (TREE_TYPE (TREE_TYPE (decl1
)),
7633 TREE_TYPE (TREE_TYPE (old_decl
))))
7635 TREE_TYPE (decl1
) = composite_type (TREE_TYPE (old_decl
),
7637 current_function_prototype_locus
= DECL_SOURCE_LOCATION (old_decl
);
7638 current_function_prototype_built_in
7639 = C_DECL_BUILTIN_PROTOTYPE (old_decl
);
7640 current_function_prototype_arg_types
7641 = TYPE_ARG_TYPES (TREE_TYPE (decl1
));
7643 if (TREE_PUBLIC (decl1
))
7645 /* If there is an external prototype declaration of this
7646 function, record its location but do not copy information
7647 to this decl. This may be an invisible declaration
7648 (built-in or in a scope which has finished) or simply
7649 have more refined argument types than any declaration
7651 struct c_binding
*b
;
7652 for (b
= I_SYMBOL_BINDING (DECL_NAME (decl1
)); b
; b
= b
->shadowed
)
7653 if (B_IN_SCOPE (b
, external_scope
))
7657 tree ext_decl
, ext_type
;
7659 ext_type
= b
->u
.type
? b
->u
.type
: TREE_TYPE (ext_decl
);
7660 if (TREE_CODE (ext_type
) == FUNCTION_TYPE
7661 && comptypes (TREE_TYPE (TREE_TYPE (decl1
)),
7662 TREE_TYPE (ext_type
)))
7664 current_function_prototype_locus
7665 = DECL_SOURCE_LOCATION (ext_decl
);
7666 current_function_prototype_built_in
7667 = C_DECL_BUILTIN_PROTOTYPE (ext_decl
);
7668 current_function_prototype_arg_types
7669 = TYPE_ARG_TYPES (ext_type
);
7675 /* Optionally warn of old-fashioned def with no previous prototype. */
7676 if (warn_strict_prototypes
7677 && old_decl
!= error_mark_node
7678 && !prototype_p (TREE_TYPE (decl1
))
7679 && C_DECL_ISNT_PROTOTYPE (old_decl
))
7680 warning_at (loc
, OPT_Wstrict_prototypes
,
7681 "function declaration isn%'t a prototype");
7682 /* Optionally warn of any global def with no previous prototype. */
7683 else if (warn_missing_prototypes
7684 && old_decl
!= error_mark_node
7685 && TREE_PUBLIC (decl1
)
7686 && !MAIN_NAME_P (DECL_NAME (decl1
))
7687 && C_DECL_ISNT_PROTOTYPE (old_decl
))
7688 warning_at (loc
, OPT_Wmissing_prototypes
,
7689 "no previous prototype for %qD", decl1
);
7690 /* Optionally warn of any def with no previous prototype
7691 if the function has already been used. */
7692 else if (warn_missing_prototypes
7694 && old_decl
!= error_mark_node
7695 && TREE_USED (old_decl
)
7696 && !prototype_p (TREE_TYPE (old_decl
)))
7697 warning_at (loc
, OPT_Wmissing_prototypes
,
7698 "%qD was used with no prototype before its definition", decl1
);
7699 /* Optionally warn of any global def with no previous declaration. */
7700 else if (warn_missing_declarations
7701 && TREE_PUBLIC (decl1
)
7703 && !MAIN_NAME_P (DECL_NAME (decl1
)))
7704 warning_at (loc
, OPT_Wmissing_declarations
,
7705 "no previous declaration for %qD",
7707 /* Optionally warn of any def with no previous declaration
7708 if the function has already been used. */
7709 else if (warn_missing_declarations
7711 && old_decl
!= error_mark_node
7712 && TREE_USED (old_decl
)
7713 && C_DECL_IMPLICIT (old_decl
))
7714 warning_at (loc
, OPT_Wmissing_declarations
,
7715 "%qD was used with no declaration before its definition", decl1
);
7717 /* This function exists in static storage.
7718 (This does not mean `static' in the C sense!) */
7719 TREE_STATIC (decl1
) = 1;
7721 /* This is the earliest point at which we might know the assembler
7722 name of the function. Thus, if it's set before this, die horribly. */
7723 gcc_assert (!DECL_ASSEMBLER_NAME_SET_P (decl1
));
7725 /* If #pragma weak was used, mark the decl weak now. */
7726 if (current_scope
== file_scope
)
7727 maybe_apply_pragma_weak (decl1
);
7729 /* Warn for unlikely, improbable, or stupid declarations of `main'. */
7730 if (warn_main
&& MAIN_NAME_P (DECL_NAME (decl1
)))
7732 if (TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (decl1
)))
7733 != integer_type_node
)
7734 pedwarn (loc
, OPT_Wmain
, "return type of %qD is not %<int%>", decl1
);
7736 check_main_parameter_types (decl1
);
7738 if (!TREE_PUBLIC (decl1
))
7739 pedwarn (loc
, OPT_Wmain
,
7740 "%qD is normally a non-static function", decl1
);
7743 /* Record the decl so that the function name is defined.
7744 If we already have a decl for this name, and it is a FUNCTION_DECL,
7745 use the old decl. */
7747 current_function_decl
= pushdecl (decl1
);
7750 declare_parm_level ();
7752 restype
= TREE_TYPE (TREE_TYPE (current_function_decl
));
7753 resdecl
= build_decl (loc
, RESULT_DECL
, NULL_TREE
, restype
);
7754 DECL_ARTIFICIAL (resdecl
) = 1;
7755 DECL_IGNORED_P (resdecl
) = 1;
7756 DECL_RESULT (current_function_decl
) = resdecl
;
7758 start_fname_decls ();
7763 /* Subroutine of store_parm_decls which handles new-style function
7764 definitions (prototype format). The parms already have decls, so we
7765 need only record them as in effect and complain if any redundant
7766 old-style parm decls were written. */
7768 store_parm_decls_newstyle (tree fndecl
, const struct c_arg_info
*arg_info
)
7774 if (current_scope
->bindings
)
7776 error_at (DECL_SOURCE_LOCATION (fndecl
),
7777 "old-style parameter declarations in prototyped "
7778 "function definition");
7780 /* Get rid of the old-style declarations. */
7784 /* Don't issue this warning for nested functions, and don't issue this
7785 warning if we got here because ARG_INFO_TYPES was error_mark_node
7786 (this happens when a function definition has just an ellipsis in
7787 its parameter list). */
7788 else if (!in_system_header
&& !current_function_scope
7789 && arg_info
->types
!= error_mark_node
)
7790 warning_at (DECL_SOURCE_LOCATION (fndecl
), OPT_Wtraditional
,
7791 "traditional C rejects ISO C style function definitions");
7793 /* Now make all the parameter declarations visible in the function body.
7794 We can bypass most of the grunt work of pushdecl. */
7795 for (decl
= arg_info
->parms
; decl
; decl
= DECL_CHAIN (decl
))
7797 DECL_CONTEXT (decl
) = current_function_decl
;
7798 if (DECL_NAME (decl
))
7800 bind (DECL_NAME (decl
), decl
, current_scope
,
7801 /*invisible=*/false, /*nested=*/false,
7803 if (!TREE_USED (decl
))
7804 warn_if_shadowing (decl
);
7807 error_at (DECL_SOURCE_LOCATION (decl
), "parameter name omitted");
7810 /* Record the parameter list in the function declaration. */
7811 DECL_ARGUMENTS (fndecl
) = arg_info
->parms
;
7813 /* Now make all the ancillary declarations visible, likewise. */
7814 for (decl
= arg_info
->others
; decl
; decl
= DECL_CHAIN (decl
))
7816 DECL_CONTEXT (decl
) = current_function_decl
;
7817 if (DECL_NAME (decl
))
7818 bind (DECL_NAME (decl
), decl
, current_scope
,
7819 /*invisible=*/false,
7820 /*nested=*/(TREE_CODE (decl
) == FUNCTION_DECL
),
7824 /* And all the tag declarations. */
7825 FOR_EACH_VEC_ELT_REVERSE (c_arg_tag
, arg_info
->tags
, ix
, tag
)
7827 bind (tag
->id
, tag
->type
, current_scope
,
7828 /*invisible=*/false, /*nested=*/false, UNKNOWN_LOCATION
);
7831 /* Subroutine of store_parm_decls which handles old-style function
7832 definitions (separate parameter list and declarations). */
7835 store_parm_decls_oldstyle (tree fndecl
, const struct c_arg_info
*arg_info
)
7837 struct c_binding
*b
;
7838 tree parm
, decl
, last
;
7839 tree parmids
= arg_info
->parms
;
7840 struct pointer_set_t
*seen_args
= pointer_set_create ();
7842 if (!in_system_header
)
7843 warning_at (DECL_SOURCE_LOCATION (fndecl
),
7844 OPT_Wold_style_definition
, "old-style function definition");
7846 /* Match each formal parameter name with its declaration. Save each
7847 decl in the appropriate TREE_PURPOSE slot of the parmids chain. */
7848 for (parm
= parmids
; parm
; parm
= TREE_CHAIN (parm
))
7850 if (TREE_VALUE (parm
) == 0)
7852 error_at (DECL_SOURCE_LOCATION (fndecl
),
7853 "parameter name missing from parameter list");
7854 TREE_PURPOSE (parm
) = 0;
7858 b
= I_SYMBOL_BINDING (TREE_VALUE (parm
));
7859 if (b
&& B_IN_CURRENT_SCOPE (b
))
7862 /* Skip erroneous parameters. */
7863 if (decl
== error_mark_node
)
7865 /* If we got something other than a PARM_DECL it is an error. */
7866 if (TREE_CODE (decl
) != PARM_DECL
)
7867 error_at (DECL_SOURCE_LOCATION (decl
),
7868 "%qD declared as a non-parameter", decl
);
7869 /* If the declaration is already marked, we have a duplicate
7870 name. Complain and ignore the duplicate. */
7871 else if (pointer_set_contains (seen_args
, decl
))
7873 error_at (DECL_SOURCE_LOCATION (decl
),
7874 "multiple parameters named %qD", decl
);
7875 TREE_PURPOSE (parm
) = 0;
7878 /* If the declaration says "void", complain and turn it into
7880 else if (VOID_TYPE_P (TREE_TYPE (decl
)))
7882 error_at (DECL_SOURCE_LOCATION (decl
),
7883 "parameter %qD declared with void type", decl
);
7884 TREE_TYPE (decl
) = integer_type_node
;
7885 DECL_ARG_TYPE (decl
) = integer_type_node
;
7886 layout_decl (decl
, 0);
7888 warn_if_shadowing (decl
);
7890 /* If no declaration found, default to int. */
7893 /* FIXME diagnostics: This should be the location of the argument,
7894 not the FNDECL. E.g., for an old-style declaration
7896 int f10(v) { blah; }
7898 We should use the location of the V, not the F10.
7899 Unfortunately, the V is an IDENTIFIER_NODE which has no
7900 location. In the future we need locations for c_arg_info
7903 See gcc.dg/Wshadow-3.c for an example of this problem. */
7904 decl
= build_decl (DECL_SOURCE_LOCATION (fndecl
),
7905 PARM_DECL
, TREE_VALUE (parm
), integer_type_node
);
7906 DECL_ARG_TYPE (decl
) = TREE_TYPE (decl
);
7908 warn_if_shadowing (decl
);
7911 pedwarn (DECL_SOURCE_LOCATION (decl
),
7912 0, "type of %qD defaults to %<int%>", decl
);
7914 warning_at (DECL_SOURCE_LOCATION (decl
),
7915 OPT_Wmissing_parameter_type
,
7916 "type of %qD defaults to %<int%>", decl
);
7919 TREE_PURPOSE (parm
) = decl
;
7920 pointer_set_insert (seen_args
, decl
);
7923 /* Now examine the parms chain for incomplete declarations
7924 and declarations with no corresponding names. */
7926 for (b
= current_scope
->bindings
; b
; b
= b
->prev
)
7929 if (TREE_CODE (parm
) != PARM_DECL
)
7932 if (TREE_TYPE (parm
) != error_mark_node
7933 && !COMPLETE_TYPE_P (TREE_TYPE (parm
)))
7935 error_at (DECL_SOURCE_LOCATION (parm
),
7936 "parameter %qD has incomplete type", parm
);
7937 TREE_TYPE (parm
) = error_mark_node
;
7940 if (!pointer_set_contains (seen_args
, parm
))
7942 error_at (DECL_SOURCE_LOCATION (parm
),
7943 "declaration for parameter %qD but no such parameter",
7946 /* Pretend the parameter was not missing.
7947 This gets us to a standard state and minimizes
7948 further error messages. */
7949 parmids
= chainon (parmids
, tree_cons (parm
, 0, 0));
7953 /* Chain the declarations together in the order of the list of
7954 names. Store that chain in the function decl, replacing the
7955 list of names. Update the current scope to match. */
7956 DECL_ARGUMENTS (fndecl
) = 0;
7958 for (parm
= parmids
; parm
; parm
= TREE_CHAIN (parm
))
7959 if (TREE_PURPOSE (parm
))
7961 if (parm
&& TREE_PURPOSE (parm
))
7963 last
= TREE_PURPOSE (parm
);
7964 DECL_ARGUMENTS (fndecl
) = last
;
7966 for (parm
= TREE_CHAIN (parm
); parm
; parm
= TREE_CHAIN (parm
))
7967 if (TREE_PURPOSE (parm
))
7969 DECL_CHAIN (last
) = TREE_PURPOSE (parm
);
7970 last
= TREE_PURPOSE (parm
);
7972 DECL_CHAIN (last
) = 0;
7975 pointer_set_destroy (seen_args
);
7977 /* If there was a previous prototype,
7978 set the DECL_ARG_TYPE of each argument according to
7979 the type previously specified, and report any mismatches. */
7981 if (current_function_prototype_arg_types
)
7984 for (parm
= DECL_ARGUMENTS (fndecl
),
7985 type
= current_function_prototype_arg_types
;
7986 parm
|| (type
&& TREE_VALUE (type
) != error_mark_node
7987 && (TYPE_MAIN_VARIANT (TREE_VALUE (type
)) != void_type_node
));
7988 parm
= DECL_CHAIN (parm
), type
= TREE_CHAIN (type
))
7990 if (parm
== 0 || type
== 0
7991 || TYPE_MAIN_VARIANT (TREE_VALUE (type
)) == void_type_node
)
7993 if (current_function_prototype_built_in
)
7994 warning_at (DECL_SOURCE_LOCATION (fndecl
),
7995 0, "number of arguments doesn%'t match "
7996 "built-in prototype");
7999 /* FIXME diagnostics: This should be the location of
8000 FNDECL, but there is bug when a prototype is
8001 declared inside function context, but defined
8002 outside of it (e.g., gcc.dg/pr15698-2.c). In
8003 which case FNDECL gets the location of the
8004 prototype, not the definition. */
8005 error_at (input_location
,
8006 "number of arguments doesn%'t match prototype");
8008 error_at (current_function_prototype_locus
,
8009 "prototype declaration");
8013 /* Type for passing arg must be consistent with that
8014 declared for the arg. ISO C says we take the unqualified
8015 type for parameters declared with qualified type. */
8016 if (TREE_TYPE (parm
) != error_mark_node
8017 && TREE_TYPE (type
) != error_mark_node
8018 && !comptypes (TYPE_MAIN_VARIANT (DECL_ARG_TYPE (parm
)),
8019 TYPE_MAIN_VARIANT (TREE_VALUE (type
))))
8021 if (TYPE_MAIN_VARIANT (TREE_TYPE (parm
))
8022 == TYPE_MAIN_VARIANT (TREE_VALUE (type
)))
8024 /* Adjust argument to match prototype. E.g. a previous
8025 `int foo(float);' prototype causes
8026 `int foo(x) float x; {...}' to be treated like
8027 `int foo(float x) {...}'. This is particularly
8028 useful for argument types like uid_t. */
8029 DECL_ARG_TYPE (parm
) = TREE_TYPE (parm
);
8031 if (targetm
.calls
.promote_prototypes (TREE_TYPE (current_function_decl
))
8032 && INTEGRAL_TYPE_P (TREE_TYPE (parm
))
8033 && TYPE_PRECISION (TREE_TYPE (parm
))
8034 < TYPE_PRECISION (integer_type_node
))
8035 DECL_ARG_TYPE (parm
) = integer_type_node
;
8037 /* ??? Is it possible to get here with a
8038 built-in prototype or will it always have
8039 been diagnosed as conflicting with an
8040 old-style definition and discarded? */
8041 if (current_function_prototype_built_in
)
8042 warning_at (DECL_SOURCE_LOCATION (parm
),
8043 OPT_pedantic
, "promoted argument %qD "
8044 "doesn%'t match built-in prototype", parm
);
8047 pedwarn (DECL_SOURCE_LOCATION (parm
),
8048 OPT_pedantic
, "promoted argument %qD "
8049 "doesn%'t match prototype", parm
);
8050 pedwarn (current_function_prototype_locus
, OPT_pedantic
,
8051 "prototype declaration");
8056 if (current_function_prototype_built_in
)
8057 warning_at (DECL_SOURCE_LOCATION (parm
),
8058 0, "argument %qD doesn%'t match "
8059 "built-in prototype", parm
);
8062 error_at (DECL_SOURCE_LOCATION (parm
),
8063 "argument %qD doesn%'t match prototype", parm
);
8064 error_at (current_function_prototype_locus
,
8065 "prototype declaration");
8070 TYPE_ACTUAL_ARG_TYPES (TREE_TYPE (fndecl
)) = 0;
8073 /* Otherwise, create a prototype that would match. */
8077 tree actual
= 0, last
= 0, type
;
8079 for (parm
= DECL_ARGUMENTS (fndecl
); parm
; parm
= DECL_CHAIN (parm
))
8081 type
= tree_cons (NULL_TREE
, DECL_ARG_TYPE (parm
), NULL_TREE
);
8083 TREE_CHAIN (last
) = type
;
8088 type
= tree_cons (NULL_TREE
, void_type_node
, NULL_TREE
);
8090 TREE_CHAIN (last
) = type
;
8094 /* We are going to assign a new value for the TYPE_ACTUAL_ARG_TYPES
8095 of the type of this function, but we need to avoid having this
8096 affect the types of other similarly-typed functions, so we must
8097 first force the generation of an identical (but separate) type
8098 node for the relevant function type. The new node we create
8099 will be a variant of the main variant of the original function
8102 TREE_TYPE (fndecl
) = build_variant_type_copy (TREE_TYPE (fndecl
));
8104 TYPE_ACTUAL_ARG_TYPES (TREE_TYPE (fndecl
)) = actual
;
8108 /* Store parameter declarations passed in ARG_INFO into the current
8109 function declaration. */
8112 store_parm_decls_from (struct c_arg_info
*arg_info
)
8114 current_function_arg_info
= arg_info
;
8115 store_parm_decls ();
8118 /* Store the parameter declarations into the current function declaration.
8119 This is called after parsing the parameter declarations, before
8120 digesting the body of the function.
8122 For an old-style definition, construct a prototype out of the old-style
8123 parameter declarations and inject it into the function's type. */
8126 store_parm_decls (void)
8128 tree fndecl
= current_function_decl
;
8131 /* The argument information block for FNDECL. */
8132 struct c_arg_info
*arg_info
= current_function_arg_info
;
8133 current_function_arg_info
= 0;
8135 /* True if this definition is written with a prototype. Note:
8136 despite C99 6.7.5.3p14, we can *not* treat an empty argument
8137 list in a function definition as equivalent to (void) -- an
8138 empty argument list specifies the function has no parameters,
8139 but only (void) sets up a prototype for future calls. */
8140 proto
= arg_info
->types
!= 0;
8143 store_parm_decls_newstyle (fndecl
, arg_info
);
8145 store_parm_decls_oldstyle (fndecl
, arg_info
);
8147 /* The next call to push_scope will be a function body. */
8149 next_is_function_body
= true;
8151 /* Write a record describing this function definition to the prototypes
8152 file (if requested). */
8154 gen_aux_info_record (fndecl
, 1, 0, proto
);
8156 /* Initialize the RTL code for the function. */
8157 allocate_struct_function (fndecl
, false);
8159 /* Begin the statement tree for this function. */
8160 DECL_SAVED_TREE (fndecl
) = push_stmt_list ();
8162 /* ??? Insert the contents of the pending sizes list into the function
8163 to be evaluated. The only reason left to have this is
8164 void foo(int n, int array[n++])
8165 because we throw away the array type in favor of a pointer type, and
8166 thus won't naturally see the SAVE_EXPR containing the increment. All
8167 other pending sizes would be handled by gimplify_parameters. */
8168 if (arg_info
->pending_sizes
)
8169 add_stmt (arg_info
->pending_sizes
);
8173 /* Finish up a function declaration and compile that function
8174 all the way to assembler language output. Then free the storage
8175 for the function definition.
8177 This is called after parsing the body of the function definition. */
8180 finish_function (void)
8182 tree fndecl
= current_function_decl
;
8184 if (c_dialect_objc ())
8185 objc_finish_function ();
8187 if (TREE_CODE (fndecl
) == FUNCTION_DECL
8188 && targetm
.calls
.promote_prototypes (TREE_TYPE (fndecl
)))
8190 tree args
= DECL_ARGUMENTS (fndecl
);
8191 for (; args
; args
= DECL_CHAIN (args
))
8193 tree type
= TREE_TYPE (args
);
8194 if (INTEGRAL_TYPE_P (type
)
8195 && TYPE_PRECISION (type
) < TYPE_PRECISION (integer_type_node
))
8196 DECL_ARG_TYPE (args
) = integer_type_node
;
8200 if (DECL_INITIAL (fndecl
) && DECL_INITIAL (fndecl
) != error_mark_node
)
8201 BLOCK_SUPERCONTEXT (DECL_INITIAL (fndecl
)) = fndecl
;
8203 /* Must mark the RESULT_DECL as being in this function. */
8205 if (DECL_RESULT (fndecl
) && DECL_RESULT (fndecl
) != error_mark_node
)
8206 DECL_CONTEXT (DECL_RESULT (fndecl
)) = fndecl
;
8208 if (MAIN_NAME_P (DECL_NAME (fndecl
)) && flag_hosted
8209 && TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (fndecl
)))
8210 == integer_type_node
&& flag_isoc99
)
8212 /* Hack. We don't want the middle-end to warn that this return
8213 is unreachable, so we mark its location as special. Using
8214 UNKNOWN_LOCATION has the problem that it gets clobbered in
8215 annotate_one_with_locus. A cleaner solution might be to
8216 ensure ! should_carry_locus_p (stmt), but that needs a flag.
8218 c_finish_return (BUILTINS_LOCATION
, integer_zero_node
, NULL_TREE
);
8221 /* Tie off the statement tree for this function. */
8222 DECL_SAVED_TREE (fndecl
) = pop_stmt_list (DECL_SAVED_TREE (fndecl
));
8224 finish_fname_decls ();
8226 /* Complain if there's just no return statement. */
8227 if (warn_return_type
8228 && TREE_CODE (TREE_TYPE (TREE_TYPE (fndecl
))) != VOID_TYPE
8229 && !current_function_returns_value
&& !current_function_returns_null
8230 /* Don't complain if we are no-return. */
8231 && !current_function_returns_abnormally
8232 /* Don't complain if we are declared noreturn. */
8233 && !TREE_THIS_VOLATILE (fndecl
)
8234 /* Don't warn for main(). */
8235 && !MAIN_NAME_P (DECL_NAME (fndecl
))
8236 /* Or if they didn't actually specify a return type. */
8237 && !C_FUNCTION_IMPLICIT_INT (fndecl
)
8238 /* Normally, with -Wreturn-type, flow will complain, but we might
8239 optimize out static functions. */
8240 && !TREE_PUBLIC (fndecl
))
8242 warning (OPT_Wreturn_type
,
8243 "no return statement in function returning non-void");
8244 TREE_NO_WARNING (fndecl
) = 1;
8247 /* Complain about parameters that are only set, but never otherwise used. */
8248 if (warn_unused_but_set_parameter
)
8252 for (decl
= DECL_ARGUMENTS (fndecl
);
8254 decl
= DECL_CHAIN (decl
))
8255 if (TREE_USED (decl
)
8256 && TREE_CODE (decl
) == PARM_DECL
8257 && !DECL_READ_P (decl
)
8259 && !DECL_ARTIFICIAL (decl
)
8260 && !TREE_NO_WARNING (decl
))
8261 warning_at (DECL_SOURCE_LOCATION (decl
),
8262 OPT_Wunused_but_set_parameter
,
8263 "parameter %qD set but not used", decl
);
8266 /* Store the end of the function, so that we get good line number
8267 info for the epilogue. */
8268 cfun
->function_end_locus
= input_location
;
8270 /* Finalize the ELF visibility for the function. */
8271 c_determine_visibility (fndecl
);
8273 /* For GNU C extern inline functions disregard inline limits. */
8274 if (DECL_EXTERNAL (fndecl
)
8275 && DECL_DECLARED_INLINE_P (fndecl
))
8276 DECL_DISREGARD_INLINE_LIMITS (fndecl
) = 1;
8278 /* Genericize before inlining. Delay genericizing nested functions
8279 until their parent function is genericized. Since finalizing
8280 requires GENERIC, delay that as well. */
8282 if (DECL_INITIAL (fndecl
) && DECL_INITIAL (fndecl
) != error_mark_node
8283 && !undef_nested_function
)
8285 if (!decl_function_context (fndecl
))
8287 invoke_plugin_callbacks (PLUGIN_PRE_GENERICIZE
, fndecl
);
8288 c_genericize (fndecl
);
8290 /* ??? Objc emits functions after finalizing the compilation unit.
8291 This should be cleaned up later and this conditional removed. */
8292 if (cgraph_global_info_ready
)
8294 cgraph_add_new_function (fndecl
, false);
8297 cgraph_finalize_function (fndecl
, false);
8301 /* Register this function with cgraph just far enough to get it
8302 added to our parent's nested function list. Handy, since the
8303 C front end doesn't have such a list. */
8304 (void) cgraph_get_create_node (fndecl
);
8308 if (!decl_function_context (fndecl
))
8309 undef_nested_function
= false;
8311 /* We're leaving the context of this function, so zap cfun.
8312 It's still in DECL_STRUCT_FUNCTION, and we'll restore it in
8313 tree_rest_of_compilation. */
8315 current_function_decl
= NULL
;
8318 /* Check the declarations given in a for-loop for satisfying the C99
8319 constraints. If exactly one such decl is found, return it. LOC is
8320 the location of the opening parenthesis of the for loop. The last
8321 parameter allows you to control the "for loop initial declarations
8322 are only allowed in C99 mode". Normally, you should pass
8323 flag_isoc99 as that parameter. But in some cases (Objective-C
8324 foreach loop, for example) we want to run the checks in this
8325 function even if not in C99 mode, so we allow the caller to turn
8326 off the error about not being in C99 mode.
8330 check_for_loop_decls (location_t loc
, bool turn_off_iso_c99_error
)
8332 struct c_binding
*b
;
8333 tree one_decl
= NULL_TREE
;
8336 if (!turn_off_iso_c99_error
)
8338 static bool hint
= true;
8339 /* If we get here, declarations have been used in a for loop without
8340 the C99 for loop scope. This doesn't make much sense, so don't
8342 error_at (loc
, "%<for%> loop initial declarations "
8343 "are only allowed in C99 mode");
8347 "use option -std=c99 or -std=gnu99 to compile your code");
8352 /* C99 subclause 6.8.5 paragraph 3:
8354 [#3] The declaration part of a for statement shall only
8355 declare identifiers for objects having storage class auto or
8358 It isn't clear whether, in this sentence, "identifiers" binds to
8359 "shall only declare" or to "objects" - that is, whether all identifiers
8360 declared must be identifiers for objects, or whether the restriction
8361 only applies to those that are. (A question on this in comp.std.c
8362 in November 2000 received no answer.) We implement the strictest
8363 interpretation, to avoid creating an extension which later causes
8366 for (b
= current_scope
->bindings
; b
; b
= b
->prev
)
8369 tree decl
= b
->decl
;
8374 switch (TREE_CODE (decl
))
8378 location_t decl_loc
= DECL_SOURCE_LOCATION (decl
);
8379 if (TREE_STATIC (decl
))
8381 "declaration of static variable %qD in %<for%> loop "
8382 "initial declaration", decl
);
8383 else if (DECL_EXTERNAL (decl
))
8385 "declaration of %<extern%> variable %qD in %<for%> loop "
8386 "initial declaration", decl
);
8392 "%<struct %E%> declared in %<for%> loop initial "
8397 "%<union %E%> declared in %<for%> loop initial declaration",
8401 error_at (loc
, "%<enum %E%> declared in %<for%> loop "
8402 "initial declaration", id
);
8405 error_at (loc
, "declaration of non-variable "
8406 "%qD in %<for%> loop initial declaration", decl
);
8413 return n_decls
== 1 ? one_decl
: NULL_TREE
;
8416 /* Save and reinitialize the variables
8417 used during compilation of a C function. */
8420 c_push_function_context (void)
8422 struct language_function
*p
;
8423 p
= ggc_alloc_language_function ();
8426 p
->base
.x_stmt_tree
= c_stmt_tree
;
8427 p
->x_break_label
= c_break_label
;
8428 p
->x_cont_label
= c_cont_label
;
8429 p
->x_switch_stack
= c_switch_stack
;
8430 p
->arg_info
= current_function_arg_info
;
8431 p
->returns_value
= current_function_returns_value
;
8432 p
->returns_null
= current_function_returns_null
;
8433 p
->returns_abnormally
= current_function_returns_abnormally
;
8434 p
->warn_about_return_type
= warn_about_return_type
;
8436 push_function_context ();
8439 /* Restore the variables used during compilation of a C function. */
8442 c_pop_function_context (void)
8444 struct language_function
*p
;
8446 pop_function_context ();
8448 cfun
->language
= NULL
;
8450 if (DECL_STRUCT_FUNCTION (current_function_decl
) == 0
8451 && DECL_SAVED_TREE (current_function_decl
) == NULL_TREE
)
8453 /* Stop pointing to the local nodes about to be freed. */
8454 /* But DECL_INITIAL must remain nonzero so we know this
8455 was an actual function definition. */
8456 DECL_INITIAL (current_function_decl
) = error_mark_node
;
8457 DECL_ARGUMENTS (current_function_decl
) = 0;
8460 c_stmt_tree
= p
->base
.x_stmt_tree
;
8461 c_break_label
= p
->x_break_label
;
8462 c_cont_label
= p
->x_cont_label
;
8463 c_switch_stack
= p
->x_switch_stack
;
8464 current_function_arg_info
= p
->arg_info
;
8465 current_function_returns_value
= p
->returns_value
;
8466 current_function_returns_null
= p
->returns_null
;
8467 current_function_returns_abnormally
= p
->returns_abnormally
;
8468 warn_about_return_type
= p
->warn_about_return_type
;
8471 /* The functions below are required for functionality of doing
8472 function at once processing in the C front end. Currently these
8473 functions are not called from anywhere in the C front end, but as
8474 these changes continue, that will change. */
8476 /* Returns the stmt_tree (if any) to which statements are currently
8477 being added. If there is no active statement-tree, NULL is
8481 current_stmt_tree (void)
8483 return &c_stmt_tree
;
8486 /* Return the global value of T as a symbol. */
8489 identifier_global_value (tree t
)
8491 struct c_binding
*b
;
8493 for (b
= I_SYMBOL_BINDING (t
); b
; b
= b
->shadowed
)
8494 if (B_IN_FILE_SCOPE (b
) || B_IN_EXTERNAL_SCOPE (b
))
8500 /* Record a builtin type for C. If NAME is non-NULL, it is the name used;
8501 otherwise the name is found in ridpointers from RID_INDEX. */
8504 record_builtin_type (enum rid rid_index
, const char *name
, tree type
)
8508 id
= ridpointers
[(int) rid_index
];
8510 id
= get_identifier (name
);
8511 decl
= build_decl (UNKNOWN_LOCATION
, TYPE_DECL
, id
, type
);
8513 if (debug_hooks
->type_decl
)
8514 debug_hooks
->type_decl (decl
, false);
8517 /* Build the void_list_node (void_type_node having been created). */
8519 build_void_list_node (void)
8521 tree t
= build_tree_list (NULL_TREE
, void_type_node
);
8525 /* Return a c_parm structure with the given SPECS, ATTRS and DECLARATOR. */
8528 build_c_parm (struct c_declspecs
*specs
, tree attrs
,
8529 struct c_declarator
*declarator
)
8531 struct c_parm
*ret
= XOBNEW (&parser_obstack
, struct c_parm
);
8534 ret
->declarator
= declarator
;
8538 /* Return a declarator with nested attributes. TARGET is the inner
8539 declarator to which these attributes apply. ATTRS are the
8542 struct c_declarator
*
8543 build_attrs_declarator (tree attrs
, struct c_declarator
*target
)
8545 struct c_declarator
*ret
= XOBNEW (&parser_obstack
, struct c_declarator
);
8546 ret
->kind
= cdk_attrs
;
8547 ret
->declarator
= target
;
8548 ret
->u
.attrs
= attrs
;
8552 /* Return a declarator for a function with arguments specified by ARGS
8553 and return type specified by TARGET. */
8555 struct c_declarator
*
8556 build_function_declarator (struct c_arg_info
*args
,
8557 struct c_declarator
*target
)
8559 struct c_declarator
*ret
= XOBNEW (&parser_obstack
, struct c_declarator
);
8560 ret
->kind
= cdk_function
;
8561 ret
->declarator
= target
;
8562 ret
->u
.arg_info
= args
;
8566 /* Return a declarator for the identifier IDENT (which may be
8567 NULL_TREE for an abstract declarator). */
8569 struct c_declarator
*
8570 build_id_declarator (tree ident
)
8572 struct c_declarator
*ret
= XOBNEW (&parser_obstack
, struct c_declarator
);
8574 ret
->declarator
= 0;
8576 /* Default value - may get reset to a more precise location. */
8577 ret
->id_loc
= input_location
;
8581 /* Return something to represent absolute declarators containing a *.
8582 TARGET is the absolute declarator that the * contains.
8583 TYPE_QUALS_ATTRS is a structure for type qualifiers and attributes
8584 to apply to the pointer type. */
8586 struct c_declarator
*
8587 make_pointer_declarator (struct c_declspecs
*type_quals_attrs
,
8588 struct c_declarator
*target
)
8592 struct c_declarator
*itarget
= target
;
8593 struct c_declarator
*ret
= XOBNEW (&parser_obstack
, struct c_declarator
);
8594 if (type_quals_attrs
)
8596 attrs
= type_quals_attrs
->attrs
;
8597 quals
= quals_from_declspecs (type_quals_attrs
);
8598 if (attrs
!= NULL_TREE
)
8599 itarget
= build_attrs_declarator (attrs
, target
);
8601 ret
->kind
= cdk_pointer
;
8602 ret
->declarator
= itarget
;
8603 ret
->u
.pointer_quals
= quals
;
8607 /* Return a pointer to a structure for an empty list of declaration
8610 struct c_declspecs
*
8611 build_null_declspecs (void)
8613 struct c_declspecs
*ret
= XOBNEW (&parser_obstack
, struct c_declspecs
);
8618 ret
->typespec_word
= cts_none
;
8619 ret
->storage_class
= csc_none
;
8620 ret
->expr_const_operands
= true;
8621 ret
->declspecs_seen_p
= false;
8622 ret
->typespec_kind
= ctsk_none
;
8623 ret
->non_sc_seen_p
= false;
8624 ret
->typedef_p
= false;
8625 ret
->explicit_signed_p
= false;
8626 ret
->deprecated_p
= false;
8627 ret
->default_int_p
= false;
8628 ret
->long_p
= false;
8629 ret
->long_long_p
= false;
8630 ret
->short_p
= false;
8631 ret
->signed_p
= false;
8632 ret
->unsigned_p
= false;
8633 ret
->complex_p
= false;
8634 ret
->inline_p
= false;
8635 ret
->thread_p
= false;
8636 ret
->const_p
= false;
8637 ret
->volatile_p
= false;
8638 ret
->restrict_p
= false;
8639 ret
->saturating_p
= false;
8640 ret
->address_space
= ADDR_SPACE_GENERIC
;
8644 /* Add the address space ADDRSPACE to the declaration specifiers
8645 SPECS, returning SPECS. */
8647 struct c_declspecs
*
8648 declspecs_add_addrspace (struct c_declspecs
*specs
, addr_space_t as
)
8650 specs
->non_sc_seen_p
= true;
8651 specs
->declspecs_seen_p
= true;
8653 if (!ADDR_SPACE_GENERIC_P (specs
->address_space
)
8654 && specs
->address_space
!= as
)
8655 error ("incompatible address space qualifiers %qs and %qs",
8656 c_addr_space_name (as
),
8657 c_addr_space_name (specs
->address_space
));
8659 specs
->address_space
= as
;
8663 /* Add the type qualifier QUAL to the declaration specifiers SPECS,
8666 struct c_declspecs
*
8667 declspecs_add_qual (struct c_declspecs
*specs
, tree qual
)
8671 specs
->non_sc_seen_p
= true;
8672 specs
->declspecs_seen_p
= true;
8673 gcc_assert (TREE_CODE (qual
) == IDENTIFIER_NODE
8674 && C_IS_RESERVED_WORD (qual
));
8675 i
= C_RID_CODE (qual
);
8679 dupe
= specs
->const_p
;
8680 specs
->const_p
= true;
8683 dupe
= specs
->volatile_p
;
8684 specs
->volatile_p
= true;
8687 dupe
= specs
->restrict_p
;
8688 specs
->restrict_p
= true;
8693 if (dupe
&& !flag_isoc99
)
8694 pedwarn (input_location
, OPT_pedantic
, "duplicate %qE", qual
);
8698 /* Add the type specifier TYPE to the declaration specifiers SPECS,
8701 struct c_declspecs
*
8702 declspecs_add_type (location_t loc
, struct c_declspecs
*specs
,
8703 struct c_typespec spec
)
8705 tree type
= spec
.spec
;
8706 specs
->non_sc_seen_p
= true;
8707 specs
->declspecs_seen_p
= true;
8708 specs
->typespec_kind
= spec
.kind
;
8709 if (TREE_DEPRECATED (type
))
8710 specs
->deprecated_p
= true;
8712 /* Handle type specifier keywords. */
8713 if (TREE_CODE (type
) == IDENTIFIER_NODE
8714 && C_IS_RESERVED_WORD (type
)
8715 && C_RID_CODE (type
) != RID_CXX_COMPAT_WARN
)
8717 enum rid i
= C_RID_CODE (type
);
8720 error_at (loc
, "two or more data types in declaration specifiers");
8723 if ((int) i
<= (int) RID_LAST_MODIFIER
)
8725 /* "long", "short", "signed", "unsigned", "_Complex" or "_Sat". */
8730 if (specs
->long_long_p
)
8732 error_at (loc
, "%<long long long%> is too long for GCC");
8737 if (specs
->typespec_word
== cts_double
)
8740 ("both %<long long%> and %<double%> in "
8741 "declaration specifiers"));
8744 pedwarn_c90 (loc
, OPT_Wlong_long
,
8745 "ISO C90 does not support %<long long%>");
8746 specs
->long_long_p
= 1;
8751 ("both %<long%> and %<short%> in "
8752 "declaration specifiers"));
8753 else if (specs
->typespec_word
== cts_void
)
8755 ("both %<long%> and %<void%> in "
8756 "declaration specifiers"));
8757 else if (specs
->typespec_word
== cts_int128
)
8759 ("both %<long%> and %<__int128%> in "
8760 "declaration specifiers"));
8761 else if (specs
->typespec_word
== cts_bool
)
8763 ("both %<long%> and %<_Bool%> in "
8764 "declaration specifiers"));
8765 else if (specs
->typespec_word
== cts_char
)
8767 ("both %<long%> and %<char%> in "
8768 "declaration specifiers"));
8769 else if (specs
->typespec_word
== cts_float
)
8771 ("both %<long%> and %<float%> in "
8772 "declaration specifiers"));
8773 else if (specs
->typespec_word
== cts_dfloat32
)
8775 ("both %<long%> and %<_Decimal32%> in "
8776 "declaration specifiers"));
8777 else if (specs
->typespec_word
== cts_dfloat64
)
8779 ("both %<long%> and %<_Decimal64%> in "
8780 "declaration specifiers"));
8781 else if (specs
->typespec_word
== cts_dfloat128
)
8783 ("both %<long%> and %<_Decimal128%> in "
8784 "declaration specifiers"));
8786 specs
->long_p
= true;
8789 dupe
= specs
->short_p
;
8792 ("both %<long%> and %<short%> in "
8793 "declaration specifiers"));
8794 else if (specs
->typespec_word
== cts_void
)
8796 ("both %<short%> and %<void%> in "
8797 "declaration specifiers"));
8798 else if (specs
->typespec_word
== cts_int128
)
8800 ("both %<short%> and %<__int128%> in "
8801 "declaration specifiers"));
8802 else if (specs
->typespec_word
== cts_bool
)
8804 ("both %<short%> and %<_Bool%> in "
8805 "declaration specifiers"));
8806 else if (specs
->typespec_word
== cts_char
)
8808 ("both %<short%> and %<char%> in "
8809 "declaration specifiers"));
8810 else if (specs
->typespec_word
== cts_float
)
8812 ("both %<short%> and %<float%> in "
8813 "declaration specifiers"));
8814 else if (specs
->typespec_word
== cts_double
)
8816 ("both %<short%> and %<double%> in "
8817 "declaration specifiers"));
8818 else if (specs
->typespec_word
== cts_dfloat32
)
8820 ("both %<short%> and %<_Decimal32%> in "
8821 "declaration specifiers"));
8822 else if (specs
->typespec_word
== cts_dfloat64
)
8824 ("both %<short%> and %<_Decimal64%> in "
8825 "declaration specifiers"));
8826 else if (specs
->typespec_word
== cts_dfloat128
)
8828 ("both %<short%> and %<_Decimal128%> in "
8829 "declaration specifiers"));
8831 specs
->short_p
= true;
8834 dupe
= specs
->signed_p
;
8835 if (specs
->unsigned_p
)
8837 ("both %<signed%> and %<unsigned%> in "
8838 "declaration specifiers"));
8839 else if (specs
->typespec_word
== cts_void
)
8841 ("both %<signed%> and %<void%> in "
8842 "declaration specifiers"));
8843 else if (specs
->typespec_word
== cts_bool
)
8845 ("both %<signed%> and %<_Bool%> in "
8846 "declaration specifiers"));
8847 else if (specs
->typespec_word
== cts_float
)
8849 ("both %<signed%> and %<float%> in "
8850 "declaration specifiers"));
8851 else if (specs
->typespec_word
== cts_double
)
8853 ("both %<signed%> and %<double%> in "
8854 "declaration specifiers"));
8855 else if (specs
->typespec_word
== cts_dfloat32
)
8857 ("both %<signed%> and %<_Decimal32%> in "
8858 "declaration specifiers"));
8859 else if (specs
->typespec_word
== cts_dfloat64
)
8861 ("both %<signed%> and %<_Decimal64%> in "
8862 "declaration specifiers"));
8863 else if (specs
->typespec_word
== cts_dfloat128
)
8865 ("both %<signed%> and %<_Decimal128%> in "
8866 "declaration specifiers"));
8868 specs
->signed_p
= true;
8871 dupe
= specs
->unsigned_p
;
8872 if (specs
->signed_p
)
8874 ("both %<signed%> and %<unsigned%> in "
8875 "declaration specifiers"));
8876 else if (specs
->typespec_word
== cts_void
)
8878 ("both %<unsigned%> and %<void%> in "
8879 "declaration specifiers"));
8880 else if (specs
->typespec_word
== cts_bool
)
8882 ("both %<unsigned%> and %<_Bool%> in "
8883 "declaration specifiers"));
8884 else if (specs
->typespec_word
== cts_float
)
8886 ("both %<unsigned%> and %<float%> in "
8887 "declaration specifiers"));
8888 else if (specs
->typespec_word
== cts_double
)
8890 ("both %<unsigned%> and %<double%> in "
8891 "declaration specifiers"));
8892 else if (specs
->typespec_word
== cts_dfloat32
)
8894 ("both %<unsigned%> and %<_Decimal32%> in "
8895 "declaration specifiers"));
8896 else if (specs
->typespec_word
== cts_dfloat64
)
8898 ("both %<unsigned%> and %<_Decimal64%> in "
8899 "declaration specifiers"));
8900 else if (specs
->typespec_word
== cts_dfloat128
)
8902 ("both %<unsigned%> and %<_Decimal128%> in "
8903 "declaration specifiers"));
8905 specs
->unsigned_p
= true;
8908 dupe
= specs
->complex_p
;
8909 if (!flag_isoc99
&& !in_system_header
)
8910 pedwarn (loc
, OPT_pedantic
,
8911 "ISO C90 does not support complex types");
8912 if (specs
->typespec_word
== cts_void
)
8914 ("both %<complex%> and %<void%> in "
8915 "declaration specifiers"));
8916 else if (specs
->typespec_word
== cts_bool
)
8918 ("both %<complex%> and %<_Bool%> in "
8919 "declaration specifiers"));
8920 else if (specs
->typespec_word
== cts_dfloat32
)
8922 ("both %<complex%> and %<_Decimal32%> in "
8923 "declaration specifiers"));
8924 else if (specs
->typespec_word
== cts_dfloat64
)
8926 ("both %<complex%> and %<_Decimal64%> in "
8927 "declaration specifiers"));
8928 else if (specs
->typespec_word
== cts_dfloat128
)
8930 ("both %<complex%> and %<_Decimal128%> in "
8931 "declaration specifiers"));
8932 else if (specs
->typespec_word
== cts_fract
)
8934 ("both %<complex%> and %<_Fract%> in "
8935 "declaration specifiers"));
8936 else if (specs
->typespec_word
== cts_accum
)
8938 ("both %<complex%> and %<_Accum%> in "
8939 "declaration specifiers"));
8940 else if (specs
->saturating_p
)
8942 ("both %<complex%> and %<_Sat%> in "
8943 "declaration specifiers"));
8945 specs
->complex_p
= true;
8948 dupe
= specs
->saturating_p
;
8949 pedwarn (loc
, OPT_pedantic
,
8950 "ISO C does not support saturating types");
8951 if (specs
->typespec_word
== cts_int128
)
8954 ("both %<_Sat%> and %<__int128%> in "
8955 "declaration specifiers"));
8957 else if (specs
->typespec_word
== cts_void
)
8959 ("both %<_Sat%> and %<void%> in "
8960 "declaration specifiers"));
8961 else if (specs
->typespec_word
== cts_bool
)
8963 ("both %<_Sat%> and %<_Bool%> in "
8964 "declaration specifiers"));
8965 else if (specs
->typespec_word
== cts_char
)
8967 ("both %<_Sat%> and %<char%> in "
8968 "declaration specifiers"));
8969 else if (specs
->typespec_word
== cts_int
)
8971 ("both %<_Sat%> and %<int%> in "
8972 "declaration specifiers"));
8973 else if (specs
->typespec_word
== cts_float
)
8975 ("both %<_Sat%> and %<float%> in "
8976 "declaration specifiers"));
8977 else if (specs
->typespec_word
== cts_double
)
8979 ("both %<_Sat%> and %<double%> in "
8980 "declaration specifiers"));
8981 else if (specs
->typespec_word
== cts_dfloat32
)
8983 ("both %<_Sat%> and %<_Decimal32%> in "
8984 "declaration specifiers"));
8985 else if (specs
->typespec_word
== cts_dfloat64
)
8987 ("both %<_Sat%> and %<_Decimal64%> in "
8988 "declaration specifiers"));
8989 else if (specs
->typespec_word
== cts_dfloat128
)
8991 ("both %<_Sat%> and %<_Decimal128%> in "
8992 "declaration specifiers"));
8993 else if (specs
->complex_p
)
8995 ("both %<_Sat%> and %<complex%> in "
8996 "declaration specifiers"));
8998 specs
->saturating_p
= true;
9005 error_at (loc
, "duplicate %qE", type
);
9011 /* "void", "_Bool", "char", "int", "float", "double", "_Decimal32",
9012 "__int128", "_Decimal64", "_Decimal128", "_Fract" or "_Accum". */
9013 if (specs
->typespec_word
!= cts_none
)
9016 "two or more data types in declaration specifiers");
9022 if (int128_integer_type_node
== NULL_TREE
)
9024 error_at (loc
, "%<__int128%> is not supported for this target");
9027 if (!in_system_header
)
9028 pedwarn (loc
, OPT_pedantic
,
9029 "ISO C does not support %<__int128%> type");
9033 ("both %<__int128%> and %<long%> in "
9034 "declaration specifiers"));
9035 else if (specs
->saturating_p
)
9037 ("both %<_Sat%> and %<__int128%> in "
9038 "declaration specifiers"));
9039 else if (specs
->short_p
)
9041 ("both %<__int128%> and %<short%> in "
9042 "declaration specifiers"));
9044 specs
->typespec_word
= cts_int128
;
9049 ("both %<long%> and %<void%> in "
9050 "declaration specifiers"));
9051 else if (specs
->short_p
)
9053 ("both %<short%> and %<void%> in "
9054 "declaration specifiers"));
9055 else if (specs
->signed_p
)
9057 ("both %<signed%> and %<void%> in "
9058 "declaration specifiers"));
9059 else if (specs
->unsigned_p
)
9061 ("both %<unsigned%> and %<void%> in "
9062 "declaration specifiers"));
9063 else if (specs
->complex_p
)
9065 ("both %<complex%> and %<void%> in "
9066 "declaration specifiers"));
9067 else if (specs
->saturating_p
)
9069 ("both %<_Sat%> and %<void%> in "
9070 "declaration specifiers"));
9072 specs
->typespec_word
= cts_void
;
9077 ("both %<long%> and %<_Bool%> in "
9078 "declaration specifiers"));
9079 else if (specs
->short_p
)
9081 ("both %<short%> and %<_Bool%> in "
9082 "declaration specifiers"));
9083 else if (specs
->signed_p
)
9085 ("both %<signed%> and %<_Bool%> in "
9086 "declaration specifiers"));
9087 else if (specs
->unsigned_p
)
9089 ("both %<unsigned%> and %<_Bool%> in "
9090 "declaration specifiers"));
9091 else if (specs
->complex_p
)
9093 ("both %<complex%> and %<_Bool%> in "
9094 "declaration specifiers"));
9095 else if (specs
->saturating_p
)
9097 ("both %<_Sat%> and %<_Bool%> in "
9098 "declaration specifiers"));
9100 specs
->typespec_word
= cts_bool
;
9105 ("both %<long%> and %<char%> in "
9106 "declaration specifiers"));
9107 else if (specs
->short_p
)
9109 ("both %<short%> and %<char%> in "
9110 "declaration specifiers"));
9111 else if (specs
->saturating_p
)
9113 ("both %<_Sat%> and %<char%> in "
9114 "declaration specifiers"));
9116 specs
->typespec_word
= cts_char
;
9119 if (specs
->saturating_p
)
9121 ("both %<_Sat%> and %<int%> in "
9122 "declaration specifiers"));
9124 specs
->typespec_word
= cts_int
;
9129 ("both %<long%> and %<float%> in "
9130 "declaration specifiers"));
9131 else if (specs
->short_p
)
9133 ("both %<short%> and %<float%> in "
9134 "declaration specifiers"));
9135 else if (specs
->signed_p
)
9137 ("both %<signed%> and %<float%> in "
9138 "declaration specifiers"));
9139 else if (specs
->unsigned_p
)
9141 ("both %<unsigned%> and %<float%> in "
9142 "declaration specifiers"));
9143 else if (specs
->saturating_p
)
9145 ("both %<_Sat%> and %<float%> in "
9146 "declaration specifiers"));
9148 specs
->typespec_word
= cts_float
;
9151 if (specs
->long_long_p
)
9153 ("both %<long long%> and %<double%> in "
9154 "declaration specifiers"));
9155 else if (specs
->short_p
)
9157 ("both %<short%> and %<double%> in "
9158 "declaration specifiers"));
9159 else if (specs
->signed_p
)
9161 ("both %<signed%> and %<double%> in "
9162 "declaration specifiers"));
9163 else if (specs
->unsigned_p
)
9165 ("both %<unsigned%> and %<double%> in "
9166 "declaration specifiers"));
9167 else if (specs
->saturating_p
)
9169 ("both %<_Sat%> and %<double%> in "
9170 "declaration specifiers"));
9172 specs
->typespec_word
= cts_double
;
9179 if (i
== RID_DFLOAT32
)
9181 else if (i
== RID_DFLOAT64
)
9184 str
= "_Decimal128";
9185 if (specs
->long_long_p
)
9187 ("both %<long long%> and %<%s%> in "
9188 "declaration specifiers"),
9192 ("both %<long%> and %<%s%> in "
9193 "declaration specifiers"),
9195 else if (specs
->short_p
)
9197 ("both %<short%> and %<%s%> in "
9198 "declaration specifiers"),
9200 else if (specs
->signed_p
)
9202 ("both %<signed%> and %<%s%> in "
9203 "declaration specifiers"),
9205 else if (specs
->unsigned_p
)
9207 ("both %<unsigned%> and %<%s%> in "
9208 "declaration specifiers"),
9210 else if (specs
->complex_p
)
9212 ("both %<complex%> and %<%s%> in "
9213 "declaration specifiers"),
9215 else if (specs
->saturating_p
)
9217 ("both %<_Sat%> and %<%s%> in "
9218 "declaration specifiers"),
9220 else if (i
== RID_DFLOAT32
)
9221 specs
->typespec_word
= cts_dfloat32
;
9222 else if (i
== RID_DFLOAT64
)
9223 specs
->typespec_word
= cts_dfloat64
;
9225 specs
->typespec_word
= cts_dfloat128
;
9227 if (!targetm
.decimal_float_supported_p ())
9229 ("decimal floating point not supported "
9230 "for this target"));
9231 pedwarn (loc
, OPT_pedantic
,
9232 "ISO C does not support decimal floating point");
9242 if (specs
->complex_p
)
9244 ("both %<complex%> and %<%s%> in "
9245 "declaration specifiers"),
9247 else if (i
== RID_FRACT
)
9248 specs
->typespec_word
= cts_fract
;
9250 specs
->typespec_word
= cts_accum
;
9252 if (!targetm
.fixed_point_supported_p ())
9254 "fixed-point types not supported for this target");
9255 pedwarn (loc
, OPT_pedantic
,
9256 "ISO C does not support fixed-point types");
9259 /* ObjC reserved word "id", handled below. */
9265 /* Now we have a typedef (a TYPE_DECL node), an identifier (some
9266 form of ObjC type, cases such as "int" and "long" being handled
9267 above), a TYPE (struct, union, enum and typeof specifiers) or an
9268 ERROR_MARK. In none of these cases may there have previously
9269 been any type specifiers. */
9270 if (specs
->type
|| specs
->typespec_word
!= cts_none
9271 || specs
->long_p
|| specs
->short_p
|| specs
->signed_p
9272 || specs
->unsigned_p
|| specs
->complex_p
)
9273 error_at (loc
, "two or more data types in declaration specifiers");
9274 else if (TREE_CODE (type
) == TYPE_DECL
)
9276 if (TREE_TYPE (type
) == error_mark_node
)
9277 ; /* Allow the type to default to int to avoid cascading errors. */
9280 specs
->type
= TREE_TYPE (type
);
9281 specs
->decl_attr
= DECL_ATTRIBUTES (type
);
9282 specs
->typedef_p
= true;
9283 specs
->explicit_signed_p
= C_TYPEDEF_EXPLICITLY_SIGNED (type
);
9285 /* If this typedef name is defined in a struct, then a C++
9286 lookup would return a different value. */
9288 && I_SYMBOL_BINDING (DECL_NAME (type
))->in_struct
)
9289 warning_at (loc
, OPT_Wc___compat
,
9290 "C++ lookup of %qD would return a field, not a type",
9293 /* If we are parsing a struct, record that a struct field
9295 if (warn_cxx_compat
&& struct_parse_info
!= NULL
)
9296 VEC_safe_push (tree
, heap
, struct_parse_info
->typedefs_seen
, type
);
9299 else if (TREE_CODE (type
) == IDENTIFIER_NODE
)
9301 tree t
= lookup_name (type
);
9302 if (!t
|| TREE_CODE (t
) != TYPE_DECL
)
9303 error_at (loc
, "%qE fails to be a typedef or built in type", type
);
9304 else if (TREE_TYPE (t
) == error_mark_node
)
9307 specs
->type
= TREE_TYPE (t
);
9311 if (TREE_CODE (type
) != ERROR_MARK
&& spec
.kind
== ctsk_typeof
)
9313 specs
->typedef_p
= true;
9317 specs
->expr
= build2 (COMPOUND_EXPR
, TREE_TYPE (spec
.expr
),
9318 specs
->expr
, spec
.expr
);
9320 specs
->expr
= spec
.expr
;
9321 specs
->expr_const_operands
&= spec
.expr_const_operands
;
9330 /* Add the storage class specifier or function specifier SCSPEC to the
9331 declaration specifiers SPECS, returning SPECS. */
9333 struct c_declspecs
*
9334 declspecs_add_scspec (struct c_declspecs
*specs
, tree scspec
)
9337 enum c_storage_class n
= csc_none
;
9339 specs
->declspecs_seen_p
= true;
9340 gcc_assert (TREE_CODE (scspec
) == IDENTIFIER_NODE
9341 && C_IS_RESERVED_WORD (scspec
));
9342 i
= C_RID_CODE (scspec
);
9343 if (specs
->non_sc_seen_p
)
9344 warning (OPT_Wold_style_declaration
,
9345 "%qE is not at beginning of declaration", scspec
);
9349 /* C99 permits duplicate inline. Although of doubtful utility,
9350 it seems simplest to permit it in gnu89 mode as well, as
9351 there is also little utility in maintaining this as a
9352 difference between gnu89 and C99 inline. */
9354 specs
->inline_p
= true;
9357 dupe
= specs
->thread_p
;
9358 if (specs
->storage_class
== csc_auto
)
9359 error ("%<__thread%> used with %<auto%>");
9360 else if (specs
->storage_class
== csc_register
)
9361 error ("%<__thread%> used with %<register%>");
9362 else if (specs
->storage_class
== csc_typedef
)
9363 error ("%<__thread%> used with %<typedef%>");
9365 specs
->thread_p
= true;
9372 /* Diagnose "__thread extern". */
9373 if (specs
->thread_p
)
9374 error ("%<__thread%> before %<extern%>");
9381 /* Diagnose "__thread static". */
9382 if (specs
->thread_p
)
9383 error ("%<__thread%> before %<static%>");
9391 if (n
!= csc_none
&& n
== specs
->storage_class
)
9394 error ("duplicate %qE", scspec
);
9397 if (specs
->storage_class
!= csc_none
&& n
!= specs
->storage_class
)
9399 error ("multiple storage classes in declaration specifiers");
9403 specs
->storage_class
= n
;
9404 if (n
!= csc_extern
&& n
!= csc_static
&& specs
->thread_p
)
9406 error ("%<__thread%> used with %qE", scspec
);
9407 specs
->thread_p
= false;
9414 /* Add the attributes ATTRS to the declaration specifiers SPECS,
9417 struct c_declspecs
*
9418 declspecs_add_attrs (struct c_declspecs
*specs
, tree attrs
)
9420 specs
->attrs
= chainon (attrs
, specs
->attrs
);
9421 specs
->declspecs_seen_p
= true;
9425 /* Combine "long", "short", "signed", "unsigned" and "_Complex" type
9426 specifiers with any other type specifier to determine the resulting
9427 type. This is where ISO C checks on complex types are made, since
9428 "_Complex long" is a prefix of the valid ISO C type "_Complex long
9431 struct c_declspecs
*
9432 finish_declspecs (struct c_declspecs
*specs
)
9434 /* If a type was specified as a whole, we have no modifiers and are
9436 if (specs
->type
!= NULL_TREE
)
9438 gcc_assert (!specs
->long_p
&& !specs
->long_long_p
&& !specs
->short_p
9439 && !specs
->signed_p
&& !specs
->unsigned_p
9440 && !specs
->complex_p
);
9442 /* Set a dummy type. */
9443 if (TREE_CODE (specs
->type
) == ERROR_MARK
)
9444 specs
->type
= integer_type_node
;
9448 /* If none of "void", "_Bool", "char", "int", "float" or "double"
9449 has been specified, treat it as "int" unless "_Complex" is
9450 present and there are no other specifiers. If we just have
9451 "_Complex", it is equivalent to "_Complex double", but e.g.
9452 "_Complex short" is equivalent to "_Complex short int". */
9453 if (specs
->typespec_word
== cts_none
)
9455 if (specs
->saturating_p
)
9457 error ("%<_Sat%> is used without %<_Fract%> or %<_Accum%>");
9458 if (!targetm
.fixed_point_supported_p ())
9459 error ("fixed-point types not supported for this target");
9460 specs
->typespec_word
= cts_fract
;
9462 else if (specs
->long_p
|| specs
->short_p
9463 || specs
->signed_p
|| specs
->unsigned_p
)
9465 specs
->typespec_word
= cts_int
;
9467 else if (specs
->complex_p
)
9469 specs
->typespec_word
= cts_double
;
9470 pedwarn (input_location
, OPT_pedantic
,
9471 "ISO C does not support plain %<complex%> meaning "
9472 "%<double complex%>");
9476 specs
->typespec_word
= cts_int
;
9477 specs
->default_int_p
= true;
9478 /* We don't diagnose this here because grokdeclarator will
9479 give more specific diagnostics according to whether it is
9480 a function definition. */
9484 /* If "signed" was specified, record this to distinguish "int" and
9485 "signed int" in the case of a bit-field with
9486 -funsigned-bitfields. */
9487 specs
->explicit_signed_p
= specs
->signed_p
;
9489 /* Now compute the actual type. */
9490 switch (specs
->typespec_word
)
9493 gcc_assert (!specs
->long_p
&& !specs
->short_p
9494 && !specs
->signed_p
&& !specs
->unsigned_p
9495 && !specs
->complex_p
);
9496 specs
->type
= void_type_node
;
9499 gcc_assert (!specs
->long_p
&& !specs
->short_p
9500 && !specs
->signed_p
&& !specs
->unsigned_p
9501 && !specs
->complex_p
);
9502 specs
->type
= boolean_type_node
;
9505 gcc_assert (!specs
->long_p
&& !specs
->short_p
);
9506 gcc_assert (!(specs
->signed_p
&& specs
->unsigned_p
));
9507 if (specs
->signed_p
)
9508 specs
->type
= signed_char_type_node
;
9509 else if (specs
->unsigned_p
)
9510 specs
->type
= unsigned_char_type_node
;
9512 specs
->type
= char_type_node
;
9513 if (specs
->complex_p
)
9515 pedwarn (input_location
, OPT_pedantic
,
9516 "ISO C does not support complex integer types");
9517 specs
->type
= build_complex_type (specs
->type
);
9521 gcc_assert (!specs
->long_p
&& !specs
->short_p
&& !specs
->long_long_p
);
9522 gcc_assert (!(specs
->signed_p
&& specs
->unsigned_p
));
9523 specs
->type
= (specs
->unsigned_p
9524 ? int128_unsigned_type_node
9525 : int128_integer_type_node
);
9526 if (specs
->complex_p
)
9528 pedwarn (input_location
, OPT_pedantic
,
9529 "ISO C does not support complex integer types");
9530 specs
->type
= build_complex_type (specs
->type
);
9534 gcc_assert (!(specs
->long_p
&& specs
->short_p
));
9535 gcc_assert (!(specs
->signed_p
&& specs
->unsigned_p
));
9536 if (specs
->long_long_p
)
9537 specs
->type
= (specs
->unsigned_p
9538 ? long_long_unsigned_type_node
9539 : long_long_integer_type_node
);
9540 else if (specs
->long_p
)
9541 specs
->type
= (specs
->unsigned_p
9542 ? long_unsigned_type_node
9543 : long_integer_type_node
);
9544 else if (specs
->short_p
)
9545 specs
->type
= (specs
->unsigned_p
9546 ? short_unsigned_type_node
9547 : short_integer_type_node
);
9549 specs
->type
= (specs
->unsigned_p
9550 ? unsigned_type_node
9551 : integer_type_node
);
9552 if (specs
->complex_p
)
9554 pedwarn (input_location
, OPT_pedantic
,
9555 "ISO C does not support complex integer types");
9556 specs
->type
= build_complex_type (specs
->type
);
9560 gcc_assert (!specs
->long_p
&& !specs
->short_p
9561 && !specs
->signed_p
&& !specs
->unsigned_p
);
9562 specs
->type
= (specs
->complex_p
9563 ? complex_float_type_node
9567 gcc_assert (!specs
->long_long_p
&& !specs
->short_p
9568 && !specs
->signed_p
&& !specs
->unsigned_p
);
9571 specs
->type
= (specs
->complex_p
9572 ? complex_long_double_type_node
9573 : long_double_type_node
);
9577 specs
->type
= (specs
->complex_p
9578 ? complex_double_type_node
9579 : double_type_node
);
9585 gcc_assert (!specs
->long_p
&& !specs
->long_long_p
&& !specs
->short_p
9586 && !specs
->signed_p
&& !specs
->unsigned_p
&& !specs
->complex_p
);
9587 if (specs
->typespec_word
== cts_dfloat32
)
9588 specs
->type
= dfloat32_type_node
;
9589 else if (specs
->typespec_word
== cts_dfloat64
)
9590 specs
->type
= dfloat64_type_node
;
9592 specs
->type
= dfloat128_type_node
;
9595 gcc_assert (!specs
->complex_p
);
9596 if (!targetm
.fixed_point_supported_p ())
9597 specs
->type
= integer_type_node
;
9598 else if (specs
->saturating_p
)
9600 if (specs
->long_long_p
)
9601 specs
->type
= specs
->unsigned_p
9602 ? sat_unsigned_long_long_fract_type_node
9603 : sat_long_long_fract_type_node
;
9604 else if (specs
->long_p
)
9605 specs
->type
= specs
->unsigned_p
9606 ? sat_unsigned_long_fract_type_node
9607 : sat_long_fract_type_node
;
9608 else if (specs
->short_p
)
9609 specs
->type
= specs
->unsigned_p
9610 ? sat_unsigned_short_fract_type_node
9611 : sat_short_fract_type_node
;
9613 specs
->type
= specs
->unsigned_p
9614 ? sat_unsigned_fract_type_node
9615 : sat_fract_type_node
;
9619 if (specs
->long_long_p
)
9620 specs
->type
= specs
->unsigned_p
9621 ? unsigned_long_long_fract_type_node
9622 : long_long_fract_type_node
;
9623 else if (specs
->long_p
)
9624 specs
->type
= specs
->unsigned_p
9625 ? unsigned_long_fract_type_node
9626 : long_fract_type_node
;
9627 else if (specs
->short_p
)
9628 specs
->type
= specs
->unsigned_p
9629 ? unsigned_short_fract_type_node
9630 : short_fract_type_node
;
9632 specs
->type
= specs
->unsigned_p
9633 ? unsigned_fract_type_node
9638 gcc_assert (!specs
->complex_p
);
9639 if (!targetm
.fixed_point_supported_p ())
9640 specs
->type
= integer_type_node
;
9641 else if (specs
->saturating_p
)
9643 if (specs
->long_long_p
)
9644 specs
->type
= specs
->unsigned_p
9645 ? sat_unsigned_long_long_accum_type_node
9646 : sat_long_long_accum_type_node
;
9647 else if (specs
->long_p
)
9648 specs
->type
= specs
->unsigned_p
9649 ? sat_unsigned_long_accum_type_node
9650 : sat_long_accum_type_node
;
9651 else if (specs
->short_p
)
9652 specs
->type
= specs
->unsigned_p
9653 ? sat_unsigned_short_accum_type_node
9654 : sat_short_accum_type_node
;
9656 specs
->type
= specs
->unsigned_p
9657 ? sat_unsigned_accum_type_node
9658 : sat_accum_type_node
;
9662 if (specs
->long_long_p
)
9663 specs
->type
= specs
->unsigned_p
9664 ? unsigned_long_long_accum_type_node
9665 : long_long_accum_type_node
;
9666 else if (specs
->long_p
)
9667 specs
->type
= specs
->unsigned_p
9668 ? unsigned_long_accum_type_node
9669 : long_accum_type_node
;
9670 else if (specs
->short_p
)
9671 specs
->type
= specs
->unsigned_p
9672 ? unsigned_short_accum_type_node
9673 : short_accum_type_node
;
9675 specs
->type
= specs
->unsigned_p
9676 ? unsigned_accum_type_node
9687 /* A subroutine of c_write_global_declarations. Perform final processing
9688 on one file scope's declarations (or the external scope's declarations),
9692 c_write_global_declarations_1 (tree globals
)
9697 /* Process the decls in the order they were written. */
9698 for (decl
= globals
; decl
; decl
= DECL_CHAIN (decl
))
9700 /* Check for used but undefined static functions using the C
9701 standard's definition of "used", and set TREE_NO_WARNING so
9702 that check_global_declarations doesn't repeat the check. */
9703 if (TREE_CODE (decl
) == FUNCTION_DECL
9704 && DECL_INITIAL (decl
) == 0
9705 && DECL_EXTERNAL (decl
)
9706 && !TREE_PUBLIC (decl
)
9707 && C_DECL_USED (decl
))
9709 pedwarn (input_location
, 0, "%q+F used but never defined", decl
);
9710 TREE_NO_WARNING (decl
) = 1;
9713 wrapup_global_declaration_1 (decl
);
9719 for (decl
= globals
; decl
; decl
= DECL_CHAIN (decl
))
9720 reconsider
|= wrapup_global_declaration_2 (decl
);
9724 for (decl
= globals
; decl
; decl
= DECL_CHAIN (decl
))
9725 check_global_declaration_1 (decl
);
9728 /* A subroutine of c_write_global_declarations Emit debug information for each
9729 of the declarations in GLOBALS. */
9732 c_write_global_declarations_2 (tree globals
)
9736 for (decl
= globals
; decl
; decl
= DECL_CHAIN (decl
))
9737 debug_hooks
->global_decl (decl
);
9740 /* Callback to collect a source_ref from a DECL. */
9743 collect_source_ref_cb (tree decl
)
9745 if (!DECL_IS_BUILTIN (decl
))
9746 collect_source_ref (LOCATION_FILE (decl_sloc (decl
, false)));
9749 /* Collect all references relevant to SOURCE_FILE. */
9752 collect_all_refs (const char *source_file
)
9757 FOR_EACH_VEC_ELT (tree
, all_translation_units
, i
, t
)
9758 collect_ada_nodes (BLOCK_VARS (DECL_INITIAL (t
)), source_file
);
9761 /* Iterate over all global declarations and call CALLBACK. */
9764 for_each_global_decl (void (*callback
) (tree decl
))
9771 FOR_EACH_VEC_ELT (tree
, all_translation_units
, i
, t
)
9773 decls
= DECL_INITIAL (t
);
9774 for (decl
= BLOCK_VARS (decls
); decl
; decl
= TREE_CHAIN (decl
))
9779 /* Preserve the external declarations scope across a garbage collect. */
9780 static GTY(()) tree ext_block
;
9783 c_write_global_declarations (void)
9788 /* We don't want to do this if generating a PCH. */
9792 timevar_start (TV_PHASE_DEFERRED
);
9794 /* Do the Objective-C stuff. This is where all the Objective-C
9795 module stuff gets generated (symtab, class/protocol/selector
9797 if (c_dialect_objc ())
9798 objc_write_global_declarations ();
9800 /* Close the external scope. */
9801 ext_block
= pop_scope ();
9803 gcc_assert (!current_scope
);
9805 /* Handle -fdump-ada-spec[-slim]. */
9806 if (dump_enabled_p (TDI_ada
))
9808 /* Build a table of files to generate specs for */
9809 if (get_dump_file_info (TDI_ada
)->flags
& TDF_SLIM
)
9810 collect_source_ref (main_input_filename
);
9812 for_each_global_decl (collect_source_ref_cb
);
9814 dump_ada_specs (collect_all_refs
, NULL
);
9819 tree tmp
= BLOCK_VARS (ext_block
);
9821 FILE * stream
= dump_begin (TDI_tu
, &flags
);
9824 dump_node (tmp
, flags
& ~TDF_SLIM
, stream
);
9825 dump_end (TDI_tu
, stream
);
9829 /* Process all file scopes in this compilation, and the external_scope,
9830 through wrapup_global_declarations and check_global_declarations. */
9831 FOR_EACH_VEC_ELT (tree
, all_translation_units
, i
, t
)
9832 c_write_global_declarations_1 (BLOCK_VARS (DECL_INITIAL (t
)));
9833 c_write_global_declarations_1 (BLOCK_VARS (ext_block
));
9835 timevar_stop (TV_PHASE_DEFERRED
);
9836 timevar_start (TV_PHASE_CGRAPH
);
9838 /* We're done parsing; proceed to optimize and emit assembly.
9839 FIXME: shouldn't be the front end's responsibility to call this. */
9840 cgraph_finalize_compilation_unit ();
9842 timevar_stop (TV_PHASE_CGRAPH
);
9843 timevar_start (TV_PHASE_DBGINFO
);
9845 /* After cgraph has had a chance to emit everything that's going to
9846 be emitted, output debug information for globals. */
9849 timevar_push (TV_SYMOUT
);
9850 FOR_EACH_VEC_ELT (tree
, all_translation_units
, i
, t
)
9851 c_write_global_declarations_2 (BLOCK_VARS (DECL_INITIAL (t
)));
9852 c_write_global_declarations_2 (BLOCK_VARS (ext_block
));
9853 timevar_pop (TV_SYMOUT
);
9857 timevar_stop (TV_PHASE_DBGINFO
);
9860 /* Register reserved keyword WORD as qualifier for address space AS. */
9863 c_register_addr_space (const char *word
, addr_space_t as
)
9865 int rid
= RID_FIRST_ADDR_SPACE
+ as
;
9868 /* Address space qualifiers are only supported
9869 in C with GNU extensions enabled. */
9870 if (c_dialect_objc () || flag_no_asm
)
9873 id
= get_identifier (word
);
9874 C_SET_RID_CODE (id
, rid
);
9875 C_IS_RESERVED_WORD (id
) = 1;
9876 ridpointers
[rid
] = id
;
9879 #include "gt-c-decl.h"