1 /* Process declarations and variables for C compiler.
2 Copyright (C) 1988-2013 Free Software Foundation, Inc.
4 This file is part of GCC.
6 GCC is free software; you can redistribute it and/or modify it under
7 the terms of the GNU General Public License as published by the Free
8 Software Foundation; either version 3, or (at your option) any later
11 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
12 WARRANTY; without even the implied warranty of MERCHANTABILITY or
13 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
16 You should have received a copy of the GNU General Public License
17 along with GCC; see the file COPYING3. If not see
18 <http://www.gnu.org/licenses/>. */
20 /* Process declarations and symbol lookup for C front end.
21 Also constructs types; the standard scalar types at initialization,
22 and structure, union, array and enum types when they are declared. */
24 /* ??? not all decl nodes are given the most useful possible
25 line numbers. For example, the CONST_DECLs for enum values. */
29 #include "coretypes.h"
34 #include "tree-inline.h"
45 #include "c-family/c-common.h"
46 #include "c-family/c-objc.h"
47 #include "c-family/c-upc.h"
48 #include "c-family/c-pragma.h"
50 #include "langhooks.h"
51 #include "tree-iterator.h"
52 #include "diagnostic-core.h"
55 #include "hash-table.h"
56 #include "langhooks-def.h"
57 #include "pointer-set.h"
59 #include "c-family/c-ada-spec.h"
61 /* In grokdeclarator, distinguish syntactic contexts of declarators. */
63 { NORMAL
, /* Ordinary declaration */
64 FUNCDEF
, /* Function definition */
65 PARM
, /* Declaration of parm before function body */
66 FIELD
, /* Declaration inside struct or union */
67 TYPENAME
}; /* Typename (inside cast or sizeof) */
69 /* States indicating how grokdeclarator() should handle declspecs marked
70 with __attribute__((deprecated)). An object declared as
71 __attribute__((deprecated)) suppresses warnings of uses of other
74 enum deprecated_states
{
80 /* Nonzero if we have seen an invalid cross reference
81 to a struct, union, or enum, but not yet printed the message. */
82 tree pending_invalid_xref
;
84 /* File and line to appear in the eventual error message. */
85 location_t pending_invalid_xref_location
;
87 /* The file and line that the prototype came from if this is an
88 old-style definition; used for diagnostics in
89 store_parm_decls_oldstyle. */
91 static location_t current_function_prototype_locus
;
93 /* Whether this prototype was built-in. */
95 static bool current_function_prototype_built_in
;
97 /* The argument type information of this prototype. */
99 static tree current_function_prototype_arg_types
;
101 /* The argument information structure for the function currently being
104 static struct c_arg_info
*current_function_arg_info
;
106 /* The obstack on which parser and related data structures, which are
107 not live beyond their top-level declaration or definition, are
109 struct obstack parser_obstack
;
111 /* The current statement tree. */
113 static GTY(()) struct stmt_tree_s c_stmt_tree
;
115 /* State saving variables. */
119 /* A list of decls to be made automatically visible in each file scope. */
120 static GTY(()) tree visible_builtins
;
122 /* Set to 0 at beginning of a function definition, set to 1 if
123 a return statement that specifies a return value is seen. */
125 int current_function_returns_value
;
127 /* Set to 0 at beginning of a function definition, set to 1 if
128 a return statement with no argument is seen. */
130 int current_function_returns_null
;
132 /* Set to 0 at beginning of a function definition, set to 1 if
133 a call to a noreturn function is seen. */
135 int current_function_returns_abnormally
;
137 /* Set to nonzero by `grokdeclarator' for a function
138 whose return type is defaulted, if warnings for this are desired. */
140 static int warn_about_return_type
;
142 /* Nonzero when the current toplevel function contains a declaration
143 of a nested function which is never defined. */
145 static bool undef_nested_function
;
147 /* Mode used to build pointers (VOIDmode means ptr_mode). */
149 enum machine_mode c_default_pointer_mode
= VOIDmode
;
152 /* Each c_binding structure describes one binding of an identifier to
153 a decl. All the decls in a scope - irrespective of namespace - are
154 chained together by the ->prev field, which (as the name implies)
155 runs in reverse order. All the decls in a given namespace bound to
156 a given identifier are chained by the ->shadowed field, which runs
157 from inner to outer scopes.
159 The ->decl field usually points to a DECL node, but there are two
160 exceptions. In the namespace of type tags, the bound entity is a
161 RECORD_TYPE, UNION_TYPE, or ENUMERAL_TYPE node. If an undeclared
162 identifier is encountered, it is bound to error_mark_node to
163 suppress further errors about that identifier in the current
166 The ->u.type field stores the type of the declaration in this scope;
167 if NULL, the type is the type of the ->decl field. This is only of
168 relevance for objects with external or internal linkage which may
169 be redeclared in inner scopes, forming composite types that only
170 persist for the duration of those scopes. In the external scope,
171 this stores the composite of all the types declared for this
172 object, visible or not. The ->inner_comp field (used only at file
173 scope) stores whether an incomplete array type at file scope was
174 completed at an inner scope to an array size other than 1.
176 The ->u.label field is used for labels. It points to a structure
177 which stores additional information used for warnings.
179 The depth field is copied from the scope structure that holds this
180 decl. It is used to preserve the proper ordering of the ->shadowed
181 field (see bind()) and also for a handful of special-case checks.
182 Finally, the invisible bit is true for a decl which should be
183 ignored for purposes of normal name lookup, and the nested bit is
184 true for a decl that's been bound a second time in an inner scope;
185 in all such cases, the binding in the outer scope will have its
186 invisible bit true. */
188 struct GTY((chain_next ("%h.prev"))) c_binding
{
189 union GTY(()) { /* first so GTY desc can use decl */
190 tree
GTY((tag ("0"))) type
; /* the type in this scope */
191 struct c_label_vars
* GTY((tag ("1"))) label
; /* for warnings */
192 } GTY((desc ("TREE_CODE (%0.decl) == LABEL_DECL"))) u
;
193 tree decl
; /* the decl bound */
194 tree id
; /* the identifier it's bound to */
195 struct c_binding
*prev
; /* the previous decl in this scope */
196 struct c_binding
*shadowed
; /* the innermost decl shadowed by this one */
197 unsigned int depth
: 28; /* depth of this scope */
198 BOOL_BITFIELD invisible
: 1; /* normal lookup should ignore this binding */
199 BOOL_BITFIELD nested
: 1; /* do not set DECL_CONTEXT when popping */
200 BOOL_BITFIELD inner_comp
: 1; /* incomplete array completed in inner scope */
201 BOOL_BITFIELD in_struct
: 1; /* currently defined as struct field */
202 location_t locus
; /* location for nested bindings */
204 #define B_IN_SCOPE(b1, b2) ((b1)->depth == (b2)->depth)
205 #define B_IN_CURRENT_SCOPE(b) ((b)->depth == current_scope->depth)
206 #define B_IN_FILE_SCOPE(b) ((b)->depth == 1 /*file_scope->depth*/)
207 #define B_IN_EXTERNAL_SCOPE(b) ((b)->depth == 0 /*external_scope->depth*/)
209 #define I_SYMBOL_BINDING(node) \
210 (((struct lang_identifier *) IDENTIFIER_NODE_CHECK(node))->symbol_binding)
211 #define I_SYMBOL_DECL(node) \
212 (I_SYMBOL_BINDING(node) ? I_SYMBOL_BINDING(node)->decl : 0)
214 #define I_TAG_BINDING(node) \
215 (((struct lang_identifier *) IDENTIFIER_NODE_CHECK(node))->tag_binding)
216 #define I_TAG_DECL(node) \
217 (I_TAG_BINDING(node) ? I_TAG_BINDING(node)->decl : 0)
219 #define I_LABEL_BINDING(node) \
220 (((struct lang_identifier *) IDENTIFIER_NODE_CHECK(node))->label_binding)
221 #define I_LABEL_DECL(node) \
222 (I_LABEL_BINDING(node) ? I_LABEL_BINDING(node)->decl : 0)
224 /* Each C symbol points to three linked lists of c_binding structures.
225 These describe the values of the identifier in the three different
226 namespaces defined by the language. */
228 struct GTY(()) lang_identifier
{
229 struct c_common_identifier common_id
;
230 struct c_binding
*symbol_binding
; /* vars, funcs, constants, typedefs */
231 struct c_binding
*tag_binding
; /* struct/union/enum tags */
232 struct c_binding
*label_binding
; /* labels */
235 /* Validate c-lang.c's assumptions. */
236 extern char C_SIZEOF_STRUCT_LANG_IDENTIFIER_isnt_accurate
237 [(sizeof(struct lang_identifier
) == C_SIZEOF_STRUCT_LANG_IDENTIFIER
) ? 1 : -1];
239 /* The resulting tree type. */
241 union GTY((desc ("TREE_CODE (&%h.generic) == IDENTIFIER_NODE"),
242 chain_next ("(union lang_tree_node *) c_tree_chain_next (&%h.generic)"))) lang_tree_node
244 union tree_node
GTY ((tag ("0"),
245 desc ("tree_node_structure (&%h)")))
247 struct lang_identifier
GTY ((tag ("1"))) identifier
;
250 /* Track bindings and other things that matter for goto warnings. For
251 efficiency, we do not gather all the decls at the point of
252 definition. Instead, we point into the bindings structure. As
253 scopes are popped, we update these structures and gather the decls
254 that matter at that time. */
256 struct GTY(()) c_spot_bindings
{
257 /* The currently open scope which holds bindings defined when the
258 label was defined or the goto statement was found. */
259 struct c_scope
*scope
;
260 /* The bindings in the scope field which were defined at the point
261 of the label or goto. This lets us look at older or newer
262 bindings in the scope, as appropriate. */
263 struct c_binding
*bindings_in_scope
;
264 /* The number of statement expressions that have started since this
265 label or goto statement was defined. This is zero if we are at
266 the same statement expression level. It is positive if we are in
267 a statement expression started since this spot. It is negative
268 if this spot was in a statement expression and we have left
271 /* Whether we started in a statement expression but are no longer in
272 it. This is set to true if stmt_exprs ever goes negative. */
276 /* This structure is used to keep track of bindings seen when a goto
277 statement is defined. This is only used if we see the goto
278 statement before we see the label. */
280 struct GTY(()) c_goto_bindings
{
281 /* The location of the goto statement. */
283 /* The bindings of the goto statement. */
284 struct c_spot_bindings goto_bindings
;
287 typedef struct c_goto_bindings
*c_goto_bindings_p
;
289 /* The additional information we keep track of for a label binding.
290 These fields are updated as scopes are popped. */
292 struct GTY(()) c_label_vars
{
293 /* The shadowed c_label_vars, when one label shadows another (which
294 can only happen using a __label__ declaration). */
295 struct c_label_vars
*shadowed
;
296 /* The bindings when the label was defined. */
297 struct c_spot_bindings label_bindings
;
298 /* A list of decls that we care about: decls about which we should
299 warn if a goto branches to this label from later in the function.
300 Decls are added to this list as scopes are popped. We only add
301 the decls that matter. */
302 vec
<tree
, va_gc
> *decls_in_scope
;
303 /* A list of goto statements to this label. This is only used for
304 goto statements seen before the label was defined, so that we can
305 issue appropriate warnings for them. */
306 vec
<c_goto_bindings_p
, va_gc
> *gotos
;
309 /* Each c_scope structure describes the complete contents of one
310 scope. Four scopes are distinguished specially: the innermost or
311 current scope, the innermost function scope, the file scope (always
312 the second to outermost) and the outermost or external scope.
314 Most declarations are recorded in the current scope.
316 All normal label declarations are recorded in the innermost
317 function scope, as are bindings of undeclared identifiers to
318 error_mark_node. (GCC permits nested functions as an extension,
319 hence the 'innermost' qualifier.) Explicitly declared labels
320 (using the __label__ extension) appear in the current scope.
322 Being in the file scope (current_scope == file_scope) causes
323 special behavior in several places below. Also, under some
324 conditions the Objective-C front end records declarations in the
325 file scope even though that isn't the current scope.
327 All declarations with external linkage are recorded in the external
328 scope, even if they aren't visible there; this models the fact that
329 such declarations are visible to the entire program, and (with a
330 bit of cleverness, see pushdecl) allows diagnosis of some violations
331 of C99 6.2.2p7 and 6.2.7p2:
333 If, within the same translation unit, the same identifier appears
334 with both internal and external linkage, the behavior is
337 All declarations that refer to the same object or function shall
338 have compatible type; otherwise, the behavior is undefined.
340 Initially only the built-in declarations, which describe compiler
341 intrinsic functions plus a subset of the standard library, are in
344 The order of the blocks list matters, and it is frequently appended
345 to. To avoid having to walk all the way to the end of the list on
346 each insertion, or reverse the list later, we maintain a pointer to
347 the last list entry. (FIXME: It should be feasible to use a reversed
350 The bindings list is strictly in reverse order of declarations;
351 pop_scope relies on this. */
354 struct GTY((chain_next ("%h.outer"))) c_scope
{
355 /* The scope containing this one. */
356 struct c_scope
*outer
;
358 /* The next outermost function scope. */
359 struct c_scope
*outer_function
;
361 /* All bindings in this scope. */
362 struct c_binding
*bindings
;
364 /* For each scope (except the global one), a chain of BLOCK nodes
365 for all the scopes that were entered and exited one level down. */
369 /* The depth of this scope. Used to keep the ->shadowed chain of
370 bindings sorted innermost to outermost. */
371 unsigned int depth
: 28;
373 /* True if we are currently filling this scope with parameter
375 BOOL_BITFIELD parm_flag
: 1;
377 /* True if we saw [*] in this scope. Used to give an error messages
378 if these appears in a function definition. */
379 BOOL_BITFIELD had_vla_unspec
: 1;
381 /* True if we already complained about forward parameter decls
382 in this scope. This prevents double warnings on
383 foo (int a; int b; ...) */
384 BOOL_BITFIELD warned_forward_parm_decls
: 1;
386 /* True if this is the outermost block scope of a function body.
387 This scope contains the parameters, the local variables declared
388 in the outermost block, and all the labels (except those in
389 nested functions, or declared at block scope with __label__). */
390 BOOL_BITFIELD function_body
: 1;
392 /* True means make a BLOCK for this scope no matter what. */
393 BOOL_BITFIELD keep
: 1;
395 /* True means that an unsuffixed float constant is _Decimal64. */
396 BOOL_BITFIELD float_const_decimal64
: 1;
398 /* True if this scope has any label bindings. This is used to speed
399 up searching for labels when popping scopes, particularly since
400 labels are normally only found at function scope. */
401 BOOL_BITFIELD has_label_bindings
: 1;
403 /* True if we should issue a warning if a goto statement crosses any
404 of the bindings. We still need to check the list of bindings to
405 find the specific ones we need to warn about. This is true if
406 decl_jump_unsafe would return true for any of the bindings. This
407 is used to avoid looping over all the bindings unnecessarily. */
408 BOOL_BITFIELD has_jump_unsafe_decl
: 1;
411 /* The scope currently in effect. */
413 static GTY(()) struct c_scope
*current_scope
;
415 /* The innermost function scope. Ordinary (not explicitly declared)
416 labels, bindings to error_mark_node, and the lazily-created
417 bindings of __func__ and its friends get this scope. */
419 static GTY(()) struct c_scope
*current_function_scope
;
421 /* The C file scope. This is reset for each input translation unit. */
423 static GTY(()) struct c_scope
*file_scope
;
425 /* The outermost scope. This is used for all declarations with
426 external linkage, and only these, hence the name. */
428 static GTY(()) struct c_scope
*external_scope
;
430 /* A chain of c_scope structures awaiting reuse. */
432 static GTY((deletable
)) struct c_scope
*scope_freelist
;
434 /* A chain of c_binding structures awaiting reuse. */
436 static GTY((deletable
)) struct c_binding
*binding_freelist
;
438 /* Append VAR to LIST in scope SCOPE. */
439 #define SCOPE_LIST_APPEND(scope, list, decl) do { \
440 struct c_scope *s_ = (scope); \
442 if (s_->list##_last) \
443 BLOCK_CHAIN (s_->list##_last) = d_; \
446 s_->list##_last = d_; \
449 /* Concatenate FROM in scope FSCOPE onto TO in scope TSCOPE. */
450 #define SCOPE_LIST_CONCAT(tscope, to, fscope, from) do { \
451 struct c_scope *t_ = (tscope); \
452 struct c_scope *f_ = (fscope); \
454 BLOCK_CHAIN (t_->to##_last) = f_->from; \
457 t_->to##_last = f_->from##_last; \
460 /* A c_inline_static structure stores details of a static identifier
461 referenced in a definition of a function that may be an inline
462 definition if no subsequent declaration of that function uses
463 "extern" or does not use "inline". */
465 struct GTY((chain_next ("%h.next"))) c_inline_static
{
466 /* The location for a diagnostic. */
469 /* The function that may be an inline definition. */
472 /* The object or function referenced. */
475 /* What sort of reference this is. */
476 enum c_inline_static_type type
;
478 /* The next such structure or NULL. */
479 struct c_inline_static
*next
;
482 /* List of static identifiers used or referenced in functions that may
483 be inline definitions. */
484 static GTY(()) struct c_inline_static
*c_inline_statics
;
486 /* True means unconditionally make a BLOCK for the next scope pushed. */
488 static bool keep_next_level_flag
;
490 /* True means the next call to push_scope will be the outermost scope
491 of a function body, so do not push a new scope, merely cease
492 expecting parameter decls. */
494 static bool next_is_function_body
;
496 /* A vector of pointers to c_binding structures. */
498 typedef struct c_binding
*c_binding_ptr
;
500 /* Information that we keep for a struct or union while it is being
503 struct c_struct_parse_info
505 /* If warn_cxx_compat, a list of types defined within this
507 vec
<tree
> struct_types
;
508 /* If warn_cxx_compat, a list of field names which have bindings,
509 and which are defined in this struct, but which are not defined
510 in any enclosing struct. This is used to clear the in_struct
511 field of the c_bindings structure. */
512 vec
<c_binding_ptr
> fields
;
513 /* If warn_cxx_compat, a list of typedef names used when defining
514 fields in this struct. */
515 vec
<tree
> typedefs_seen
;
518 /* Information for the struct or union currently being parsed, or
519 NULL if not parsing a struct or union. */
520 static struct c_struct_parse_info
*struct_parse_info
;
522 /* Forward declarations. */
523 static tree
lookup_name_in_scope (tree
, struct c_scope
*);
524 static tree
c_make_fname_decl (location_t
, tree
, int);
525 static tree
grokdeclarator (const struct c_declarator
*,
526 struct c_declspecs
*,
527 enum decl_context
, bool, tree
*, tree
*, tree
*,
528 bool *, enum deprecated_states
);
529 static tree
grokparms (struct c_arg_info
*, bool);
530 static void layout_array_type (tree
);
532 /* T is a statement. Add it to the statement-tree. This is the
533 C/ObjC version--C++ has a slightly different version of this
539 enum tree_code code
= TREE_CODE (t
);
541 if (CAN_HAVE_LOCATION_P (t
) && code
!= LABEL_EXPR
)
543 if (!EXPR_HAS_LOCATION (t
))
544 SET_EXPR_LOCATION (t
, input_location
);
547 if (code
== LABEL_EXPR
|| code
== CASE_LABEL_EXPR
)
548 STATEMENT_LIST_HAS_LABEL (cur_stmt_list
) = 1;
550 /* Add T to the statement-tree. Non-side-effect statements need to be
551 recorded during statement expressions. */
552 if (!building_stmt_list_p ())
554 append_to_statement_list_force (t
, &cur_stmt_list
);
559 /* Build a pointer type using the default pointer mode. */
562 c_build_pointer_type (tree to_type
)
564 addr_space_t as
= to_type
== error_mark_node
? ADDR_SPACE_GENERIC
565 : TYPE_ADDR_SPACE (to_type
);
566 enum machine_mode pointer_mode
;
568 if (upc_shared_type_p (to_type
))
569 return build_pointer_type (to_type
);
570 if (as
!= ADDR_SPACE_GENERIC
|| c_default_pointer_mode
== VOIDmode
)
571 pointer_mode
= targetm
.addr_space
.pointer_mode (as
);
573 pointer_mode
= c_default_pointer_mode
;
574 return build_pointer_type_for_mode (to_type
, pointer_mode
, false);
578 /* Return true if we will want to say something if a goto statement
582 decl_jump_unsafe (tree decl
)
584 if (error_operand_p (decl
))
587 /* Always warn about crossing variably modified types. */
588 if ((TREE_CODE (decl
) == VAR_DECL
|| TREE_CODE (decl
) == TYPE_DECL
)
589 && variably_modified_type_p (TREE_TYPE (decl
), NULL_TREE
))
592 /* Otherwise, only warn if -Wgoto-misses-init and this is an
593 initialized automatic decl. */
594 if (warn_jump_misses_init
595 && TREE_CODE (decl
) == VAR_DECL
596 && !TREE_STATIC (decl
)
597 && DECL_INITIAL (decl
) != NULL_TREE
)
605 c_print_identifier (FILE *file
, tree node
, int indent
)
607 print_node (file
, "symbol", I_SYMBOL_DECL (node
), indent
+ 4);
608 print_node (file
, "tag", I_TAG_DECL (node
), indent
+ 4);
609 print_node (file
, "label", I_LABEL_DECL (node
), indent
+ 4);
610 if (C_IS_RESERVED_WORD (node
) && C_RID_CODE (node
) != RID_CXX_COMPAT_WARN
)
612 tree rid
= ridpointers
[C_RID_CODE (node
)];
613 indent_to (file
, indent
+ 4);
614 fprintf (file
, "rid " HOST_PTR_PRINTF
" \"%s\"",
615 (void *) rid
, IDENTIFIER_POINTER (rid
));
619 /* Establish a binding between NAME, an IDENTIFIER_NODE, and DECL,
620 which may be any of several kinds of DECL or TYPE or error_mark_node,
621 in the scope SCOPE. */
623 bind (tree name
, tree decl
, struct c_scope
*scope
, bool invisible
,
624 bool nested
, location_t locus
)
626 struct c_binding
*b
, **here
;
628 if (binding_freelist
)
630 b
= binding_freelist
;
631 binding_freelist
= b
->prev
;
634 b
= ggc_alloc_c_binding ();
639 b
->depth
= scope
->depth
;
640 b
->invisible
= invisible
;
648 b
->prev
= scope
->bindings
;
651 if (decl_jump_unsafe (decl
))
652 scope
->has_jump_unsafe_decl
= 1;
657 switch (TREE_CODE (decl
))
659 case LABEL_DECL
: here
= &I_LABEL_BINDING (name
); break;
662 case RECORD_TYPE
: here
= &I_TAG_BINDING (name
); break;
668 case ERROR_MARK
: here
= &I_SYMBOL_BINDING (name
); break;
674 /* Locate the appropriate place in the chain of shadowed decls
675 to insert this binding. Normally, scope == current_scope and
676 this does nothing. */
677 while (*here
&& (*here
)->depth
> scope
->depth
)
678 here
= &(*here
)->shadowed
;
684 /* Clear the binding structure B, stick it on the binding_freelist,
685 and return the former value of b->prev. This is used by pop_scope
686 and get_parm_info to iterate destructively over all the bindings
687 from a given scope. */
688 static struct c_binding
*
689 free_binding_and_advance (struct c_binding
*b
)
691 struct c_binding
*prev
= b
->prev
;
693 memset (b
, 0, sizeof (struct c_binding
));
694 b
->prev
= binding_freelist
;
695 binding_freelist
= b
;
700 /* Bind a label. Like bind, but skip fields which aren't used for
701 labels, and add the LABEL_VARS value. */
703 bind_label (tree name
, tree label
, struct c_scope
*scope
,
704 struct c_label_vars
*label_vars
)
708 bind (name
, label
, scope
, /*invisible=*/false, /*nested=*/false,
711 scope
->has_label_bindings
= true;
714 gcc_assert (b
->decl
== label
);
715 label_vars
->shadowed
= b
->u
.label
;
716 b
->u
.label
= label_vars
;
719 /* Hook called at end of compilation to assume 1 elt
720 for a file-scope tentative array defn that wasn't complete before. */
723 c_finish_incomplete_decl (tree decl
)
725 if (TREE_CODE (decl
) == VAR_DECL
)
727 tree type
= TREE_TYPE (decl
);
728 if (type
!= error_mark_node
729 && TREE_CODE (type
) == ARRAY_TYPE
730 && !DECL_EXTERNAL (decl
)
731 && TYPE_DOMAIN (type
) == 0)
733 warning_at (DECL_SOURCE_LOCATION (decl
),
734 0, "array %q+D assumed to have one element", decl
);
736 complete_array_type (&TREE_TYPE (decl
), NULL_TREE
, true);
738 relayout_decl (decl
);
743 /* Record that inline function FUNC contains a reference (location
744 LOC) to static DECL (file-scope or function-local according to
748 record_inline_static (location_t loc
, tree func
, tree decl
,
749 enum c_inline_static_type type
)
751 struct c_inline_static
*csi
= ggc_alloc_c_inline_static ();
753 csi
->function
= func
;
754 csi
->static_decl
= decl
;
756 csi
->next
= c_inline_statics
;
757 c_inline_statics
= csi
;
760 /* Check for references to static declarations in inline functions at
761 the end of the translation unit and diagnose them if the functions
762 are still inline definitions. */
765 check_inline_statics (void)
767 struct c_inline_static
*csi
;
768 for (csi
= c_inline_statics
; csi
; csi
= csi
->next
)
770 if (DECL_EXTERNAL (csi
->function
))
774 pedwarn (csi
->location
, 0,
775 "%qD is static but used in inline function %qD "
776 "which is not static", csi
->static_decl
, csi
->function
);
779 pedwarn (csi
->location
, 0,
780 "%q+D is static but declared in inline function %qD "
781 "which is not static", csi
->static_decl
, csi
->function
);
787 c_inline_statics
= NULL
;
790 /* Fill in a c_spot_bindings structure. If DEFINING is true, set it
791 for the current state, otherwise set it to uninitialized. */
794 set_spot_bindings (struct c_spot_bindings
*p
, bool defining
)
798 p
->scope
= current_scope
;
799 p
->bindings_in_scope
= current_scope
->bindings
;
804 p
->bindings_in_scope
= NULL
;
807 p
->left_stmt_expr
= false;
810 /* Update spot bindings P as we pop out of SCOPE. Return true if we
811 should push decls for a label. */
814 update_spot_bindings (struct c_scope
*scope
, struct c_spot_bindings
*p
)
816 if (p
->scope
!= scope
)
818 /* This label or goto is defined in some other scope, or it is a
819 label which is not yet defined. There is nothing to
824 /* Adjust the spot bindings to refer to the bindings already defined
825 in the enclosing scope. */
826 p
->scope
= scope
->outer
;
827 p
->bindings_in_scope
= p
->scope
->bindings
;
832 /* The Objective-C front-end often needs to determine the current scope. */
835 objc_get_current_scope (void)
837 return current_scope
;
840 /* The following function is used only by Objective-C. It needs to live here
841 because it accesses the innards of c_scope. */
844 objc_mark_locals_volatile (void *enclosing_blk
)
846 struct c_scope
*scope
;
849 for (scope
= current_scope
;
850 scope
&& scope
!= enclosing_blk
;
851 scope
= scope
->outer
)
853 for (b
= scope
->bindings
; b
; b
= b
->prev
)
854 objc_volatilize_decl (b
->decl
);
856 /* Do not climb up past the current function. */
857 if (scope
->function_body
)
862 /* Return true if we are in the global binding level. */
865 global_bindings_p (void)
867 return current_scope
== file_scope
;
871 keep_next_level (void)
873 keep_next_level_flag
= true;
876 /* Set the flag for the FLOAT_CONST_DECIMAL64 pragma being ON. */
879 set_float_const_decimal64 (void)
881 current_scope
->float_const_decimal64
= true;
884 /* Clear the flag for the FLOAT_CONST_DECIMAL64 pragma. */
887 clear_float_const_decimal64 (void)
889 current_scope
->float_const_decimal64
= false;
892 /* Return nonzero if an unsuffixed float constant is _Decimal64. */
895 float_const_decimal64_p (void)
897 return current_scope
->float_const_decimal64
;
900 /* Identify this scope as currently being filled with parameters. */
903 declare_parm_level (void)
905 current_scope
->parm_flag
= true;
911 if (next_is_function_body
)
913 /* This is the transition from the parameters to the top level
914 of the function body. These are the same scope
915 (C99 6.2.1p4,6) so we do not push another scope structure.
916 next_is_function_body is set only by store_parm_decls, which
917 in turn is called when and only when we are about to
918 encounter the opening curly brace for the function body.
920 The outermost block of a function always gets a BLOCK node,
921 because the debugging output routines expect that each
922 function has at least one BLOCK. */
923 current_scope
->parm_flag
= false;
924 current_scope
->function_body
= true;
925 current_scope
->keep
= true;
926 current_scope
->outer_function
= current_function_scope
;
927 current_function_scope
= current_scope
;
929 keep_next_level_flag
= false;
930 next_is_function_body
= false;
932 /* The FLOAT_CONST_DECIMAL64 pragma applies to nested scopes. */
933 if (current_scope
->outer
)
934 current_scope
->float_const_decimal64
935 = current_scope
->outer
->float_const_decimal64
;
937 current_scope
->float_const_decimal64
= false;
941 struct c_scope
*scope
;
944 scope
= scope_freelist
;
945 scope_freelist
= scope
->outer
;
948 scope
= ggc_alloc_cleared_c_scope ();
950 /* The FLOAT_CONST_DECIMAL64 pragma applies to nested scopes. */
952 scope
->float_const_decimal64
= current_scope
->float_const_decimal64
;
954 scope
->float_const_decimal64
= false;
956 scope
->keep
= keep_next_level_flag
;
957 scope
->outer
= current_scope
;
958 scope
->depth
= current_scope
? (current_scope
->depth
+ 1) : 0;
960 /* Check for scope depth overflow. Unlikely (2^28 == 268,435,456) but
962 if (current_scope
&& scope
->depth
== 0)
965 sorry ("GCC supports only %u nested scopes", scope
->depth
);
968 current_scope
= scope
;
969 keep_next_level_flag
= false;
973 /* This is called when we are leaving SCOPE. For each label defined
974 in SCOPE, add any appropriate decls to its decls_in_scope fields.
975 These are the decls whose initialization will be skipped by a goto
976 later in the function. */
979 update_label_decls (struct c_scope
*scope
)
986 if (s
->has_label_bindings
)
990 for (b
= s
->bindings
; b
!= NULL
; b
= b
->prev
)
992 struct c_label_vars
*label_vars
;
993 struct c_binding
*b1
;
996 struct c_goto_bindings
*g
;
998 if (TREE_CODE (b
->decl
) != LABEL_DECL
)
1000 label_vars
= b
->u
.label
;
1002 b1
= label_vars
->label_bindings
.bindings_in_scope
;
1003 if (label_vars
->label_bindings
.scope
== NULL
)
1006 hjud
= label_vars
->label_bindings
.scope
->has_jump_unsafe_decl
;
1007 if (update_spot_bindings (scope
, &label_vars
->label_bindings
))
1009 /* This label is defined in this scope. */
1012 for (; b1
!= NULL
; b1
= b1
->prev
)
1014 /* A goto from later in the function to this
1015 label will never see the initialization
1016 of B1, if any. Save it to issue a
1017 warning if needed. */
1018 if (decl_jump_unsafe (b1
->decl
))
1019 vec_safe_push(label_vars
->decls_in_scope
, b1
->decl
);
1024 /* Update the bindings of any goto statements associated
1026 FOR_EACH_VEC_SAFE_ELT (label_vars
->gotos
, ix
, g
)
1027 update_spot_bindings (scope
, &g
->goto_bindings
);
1031 /* Don't search beyond the current function. */
1032 if (s
== current_function_scope
)
1039 /* Set the TYPE_CONTEXT of all of TYPE's variants to CONTEXT. */
1042 set_type_context (tree type
, tree context
)
1044 for (type
= TYPE_MAIN_VARIANT (type
); type
;
1045 type
= TYPE_NEXT_VARIANT (type
))
1046 TYPE_CONTEXT (type
) = context
;
1049 /* Exit a scope. Restore the state of the identifier-decl mappings
1050 that were in effect when this scope was entered. Return a BLOCK
1051 node containing all the DECLs in this scope that are of interest
1052 to debug info generation. */
1057 struct c_scope
*scope
= current_scope
;
1058 tree block
, context
, p
;
1059 struct c_binding
*b
;
1061 bool functionbody
= scope
->function_body
;
1062 bool keep
= functionbody
|| scope
->keep
|| scope
->bindings
;
1064 update_label_decls (scope
);
1066 /* If appropriate, create a BLOCK to record the decls for the life
1067 of this function. */
1071 block
= make_node (BLOCK
);
1072 BLOCK_SUBBLOCKS (block
) = scope
->blocks
;
1073 TREE_USED (block
) = 1;
1075 /* In each subblock, record that this is its superior. */
1076 for (p
= scope
->blocks
; p
; p
= BLOCK_CHAIN (p
))
1077 BLOCK_SUPERCONTEXT (p
) = block
;
1079 BLOCK_VARS (block
) = 0;
1082 /* The TYPE_CONTEXTs for all of the tagged types belonging to this
1083 scope must be set so that they point to the appropriate
1084 construct, i.e. either to the current FUNCTION_DECL node, or
1085 else to the BLOCK node we just constructed.
1087 Note that for tagged types whose scope is just the formal
1088 parameter list for some function type specification, we can't
1089 properly set their TYPE_CONTEXTs here, because we don't have a
1090 pointer to the appropriate FUNCTION_TYPE node readily available
1091 to us. For those cases, the TYPE_CONTEXTs of the relevant tagged
1092 type nodes get set in `grokdeclarator' as soon as we have created
1093 the FUNCTION_TYPE node which will represent the "scope" for these
1094 "parameter list local" tagged types. */
1095 if (scope
->function_body
)
1096 context
= current_function_decl
;
1097 else if (scope
== file_scope
)
1099 tree file_decl
= build_translation_unit_decl (NULL_TREE
);
1100 context
= file_decl
;
1105 /* Clear all bindings in this scope. */
1106 for (b
= scope
->bindings
; b
; b
= free_binding_and_advance (b
))
1109 switch (TREE_CODE (p
))
1112 /* Warnings for unused labels, errors for undefined labels. */
1113 if (TREE_USED (p
) && !DECL_INITIAL (p
))
1115 error ("label %q+D used but not defined", p
);
1116 DECL_INITIAL (p
) = error_mark_node
;
1119 warn_for_unused_label (p
);
1121 /* Labels go in BLOCK_VARS. */
1122 DECL_CHAIN (p
) = BLOCK_VARS (block
);
1123 BLOCK_VARS (block
) = p
;
1124 gcc_assert (I_LABEL_BINDING (b
->id
) == b
);
1125 I_LABEL_BINDING (b
->id
) = b
->shadowed
;
1127 /* Also pop back to the shadowed label_vars. */
1128 release_tree_vector (b
->u
.label
->decls_in_scope
);
1129 b
->u
.label
= b
->u
.label
->shadowed
;
1135 set_type_context (p
, context
);
1137 /* Types may not have tag-names, in which case the type
1138 appears in the bindings list with b->id NULL. */
1141 gcc_assert (I_TAG_BINDING (b
->id
) == b
);
1142 I_TAG_BINDING (b
->id
) = b
->shadowed
;
1147 /* Propagate TREE_ADDRESSABLE from nested functions to their
1148 containing functions. */
1149 if (!TREE_ASM_WRITTEN (p
)
1150 && DECL_INITIAL (p
) != 0
1151 && TREE_ADDRESSABLE (p
)
1152 && DECL_ABSTRACT_ORIGIN (p
) != 0
1153 && DECL_ABSTRACT_ORIGIN (p
) != p
)
1154 TREE_ADDRESSABLE (DECL_ABSTRACT_ORIGIN (p
)) = 1;
1155 if (!DECL_EXTERNAL (p
)
1156 && !DECL_INITIAL (p
)
1157 && scope
!= file_scope
1158 && scope
!= external_scope
)
1160 error ("nested function %q+D declared but never defined", p
);
1161 undef_nested_function
= true;
1163 else if (DECL_DECLARED_INLINE_P (p
)
1165 && !DECL_INITIAL (p
))
1167 /* C99 6.7.4p6: "a function with external linkage... declared
1168 with an inline function specifier ... shall also be defined
1169 in the same translation unit." */
1170 if (!flag_gnu89_inline
)
1171 pedwarn (input_location
, 0,
1172 "inline function %q+D declared but never defined", p
);
1173 DECL_EXTERNAL (p
) = 1;
1179 /* Warnings for unused variables. */
1180 if ((!TREE_USED (p
) || !DECL_READ_P (p
))
1181 && !TREE_NO_WARNING (p
)
1182 && !DECL_IN_SYSTEM_HEADER (p
)
1184 && !DECL_ARTIFICIAL (p
)
1185 && scope
!= file_scope
1186 && scope
!= external_scope
)
1189 warning (OPT_Wunused_variable
, "unused variable %q+D", p
);
1190 else if (DECL_CONTEXT (p
) == current_function_decl
)
1191 warning_at (DECL_SOURCE_LOCATION (p
),
1192 OPT_Wunused_but_set_variable
,
1193 "variable %qD set but not used", p
);
1198 error ("type of array %q+D completed incompatibly with"
1199 " implicit initialization", p
);
1206 /* All of these go in BLOCK_VARS, but only if this is the
1207 binding in the home scope. */
1210 DECL_CHAIN (p
) = BLOCK_VARS (block
);
1211 BLOCK_VARS (block
) = p
;
1213 else if (VAR_OR_FUNCTION_DECL_P (p
) && scope
!= file_scope
)
1215 /* For block local externs add a special
1216 DECL_EXTERNAL decl for debug info generation. */
1217 tree extp
= copy_node (p
);
1219 DECL_EXTERNAL (extp
) = 1;
1220 TREE_STATIC (extp
) = 0;
1221 TREE_PUBLIC (extp
) = 1;
1222 DECL_INITIAL (extp
) = NULL_TREE
;
1223 DECL_LANG_SPECIFIC (extp
) = NULL
;
1224 DECL_CONTEXT (extp
) = current_function_decl
;
1225 if (TREE_CODE (p
) == FUNCTION_DECL
)
1227 DECL_RESULT (extp
) = NULL_TREE
;
1228 DECL_SAVED_TREE (extp
) = NULL_TREE
;
1229 DECL_STRUCT_FUNCTION (extp
) = NULL
;
1231 if (b
->locus
!= UNKNOWN_LOCATION
)
1232 DECL_SOURCE_LOCATION (extp
) = b
->locus
;
1233 DECL_CHAIN (extp
) = BLOCK_VARS (block
);
1234 BLOCK_VARS (block
) = extp
;
1236 /* If this is the file scope set DECL_CONTEXT of each decl to
1237 the TRANSLATION_UNIT_DECL. This makes same_translation_unit_p
1239 if (scope
== file_scope
)
1241 DECL_CONTEXT (p
) = context
;
1242 if (TREE_CODE (p
) == TYPE_DECL
1243 && TREE_TYPE (p
) != error_mark_node
)
1244 set_type_context (TREE_TYPE (p
), context
);
1248 /* Parameters go in DECL_ARGUMENTS, not BLOCK_VARS, and have
1249 already been put there by store_parm_decls. Unused-
1250 parameter warnings are handled by function.c.
1251 error_mark_node obviously does not go in BLOCK_VARS and
1252 does not get unused-variable warnings. */
1255 /* It is possible for a decl not to have a name. We get
1256 here with b->id NULL in this case. */
1259 gcc_assert (I_SYMBOL_BINDING (b
->id
) == b
);
1260 I_SYMBOL_BINDING (b
->id
) = b
->shadowed
;
1261 if (b
->shadowed
&& b
->shadowed
->u
.type
)
1262 TREE_TYPE (b
->shadowed
->decl
) = b
->shadowed
->u
.type
;
1272 /* Dispose of the block that we just made inside some higher level. */
1273 if ((scope
->function_body
|| scope
== file_scope
) && context
)
1275 DECL_INITIAL (context
) = block
;
1276 BLOCK_SUPERCONTEXT (block
) = context
;
1278 else if (scope
->outer
)
1281 SCOPE_LIST_APPEND (scope
->outer
, blocks
, block
);
1282 /* If we did not make a block for the scope just exited, any
1283 blocks made for inner scopes must be carried forward so they
1284 will later become subblocks of something else. */
1285 else if (scope
->blocks
)
1286 SCOPE_LIST_CONCAT (scope
->outer
, blocks
, scope
, blocks
);
1289 /* Pop the current scope, and free the structure for reuse. */
1290 current_scope
= scope
->outer
;
1291 if (scope
->function_body
)
1292 current_function_scope
= scope
->outer_function
;
1294 memset (scope
, 0, sizeof (struct c_scope
));
1295 scope
->outer
= scope_freelist
;
1296 scope_freelist
= scope
;
1302 push_file_scope (void)
1310 file_scope
= current_scope
;
1312 start_fname_decls ();
1314 for (decl
= visible_builtins
; decl
; decl
= DECL_CHAIN (decl
))
1315 bind (DECL_NAME (decl
), decl
, file_scope
,
1316 /*invisible=*/false, /*nested=*/true, DECL_SOURCE_LOCATION (decl
));
1320 pop_file_scope (void)
1322 /* In case there were missing closebraces, get us back to the global
1324 while (current_scope
!= file_scope
)
1327 /* __FUNCTION__ is defined at file scope (""). This
1328 call may not be necessary as my tests indicate it
1329 still works without it. */
1330 finish_fname_decls ();
1332 check_inline_statics ();
1334 /* This is the point to write out a PCH if we're doing that.
1335 In that case we do not want to do anything else. */
1338 c_common_write_pch ();
1342 /* Pop off the file scope and close this translation unit. */
1346 maybe_apply_pending_pragma_weaks ();
1349 /* Adjust the bindings for the start of a statement expression. */
1352 c_bindings_start_stmt_expr (struct c_spot_bindings
* switch_bindings
)
1354 struct c_scope
*scope
;
1356 for (scope
= current_scope
; scope
!= NULL
; scope
= scope
->outer
)
1358 struct c_binding
*b
;
1360 if (!scope
->has_label_bindings
)
1363 for (b
= scope
->bindings
; b
!= NULL
; b
= b
->prev
)
1365 struct c_label_vars
*label_vars
;
1367 struct c_goto_bindings
*g
;
1369 if (TREE_CODE (b
->decl
) != LABEL_DECL
)
1371 label_vars
= b
->u
.label
;
1372 ++label_vars
->label_bindings
.stmt_exprs
;
1373 FOR_EACH_VEC_SAFE_ELT (label_vars
->gotos
, ix
, g
)
1374 ++g
->goto_bindings
.stmt_exprs
;
1378 if (switch_bindings
!= NULL
)
1379 ++switch_bindings
->stmt_exprs
;
1382 /* Adjust the bindings for the end of a statement expression. */
1385 c_bindings_end_stmt_expr (struct c_spot_bindings
*switch_bindings
)
1387 struct c_scope
*scope
;
1389 for (scope
= current_scope
; scope
!= NULL
; scope
= scope
->outer
)
1391 struct c_binding
*b
;
1393 if (!scope
->has_label_bindings
)
1396 for (b
= scope
->bindings
; b
!= NULL
; b
= b
->prev
)
1398 struct c_label_vars
*label_vars
;
1400 struct c_goto_bindings
*g
;
1402 if (TREE_CODE (b
->decl
) != LABEL_DECL
)
1404 label_vars
= b
->u
.label
;
1405 --label_vars
->label_bindings
.stmt_exprs
;
1406 if (label_vars
->label_bindings
.stmt_exprs
< 0)
1408 label_vars
->label_bindings
.left_stmt_expr
= true;
1409 label_vars
->label_bindings
.stmt_exprs
= 0;
1411 FOR_EACH_VEC_SAFE_ELT (label_vars
->gotos
, ix
, g
)
1413 --g
->goto_bindings
.stmt_exprs
;
1414 if (g
->goto_bindings
.stmt_exprs
< 0)
1416 g
->goto_bindings
.left_stmt_expr
= true;
1417 g
->goto_bindings
.stmt_exprs
= 0;
1423 if (switch_bindings
!= NULL
)
1425 --switch_bindings
->stmt_exprs
;
1426 gcc_assert (switch_bindings
->stmt_exprs
>= 0);
1430 /* Push a definition or a declaration of struct, union or enum tag "name".
1431 "type" should be the type node.
1432 We assume that the tag "name" is not already defined, and has a location
1435 Note that the definition may really be just a forward reference.
1436 In that case, the TYPE_SIZE will be zero. */
1439 pushtag (location_t loc
, tree name
, tree type
)
1441 /* Record the identifier as the type's name if it has none. */
1442 if (name
&& !TYPE_NAME (type
))
1443 TYPE_NAME (type
) = name
;
1444 bind (name
, type
, current_scope
, /*invisible=*/false, /*nested=*/false, loc
);
1446 /* Create a fake NULL-named TYPE_DECL node whose TREE_TYPE will be the
1447 tagged type we just added to the current scope. This fake
1448 NULL-named TYPE_DECL node helps dwarfout.c to know when it needs
1449 to output a representation of a tagged type, and it also gives
1450 us a convenient place to record the "scope start" address for the
1453 TYPE_STUB_DECL (type
) = pushdecl (build_decl (loc
,
1454 TYPE_DECL
, NULL_TREE
, type
));
1456 /* An approximation for now, so we can tell this is a function-scope tag.
1457 This will be updated in pop_scope. */
1458 TYPE_CONTEXT (type
) = DECL_CONTEXT (TYPE_STUB_DECL (type
));
1460 if (warn_cxx_compat
&& name
!= NULL_TREE
)
1462 struct c_binding
*b
= I_SYMBOL_BINDING (name
);
1465 && b
->decl
!= NULL_TREE
1466 && TREE_CODE (b
->decl
) == TYPE_DECL
1467 && (B_IN_CURRENT_SCOPE (b
)
1468 || (current_scope
== file_scope
&& B_IN_EXTERNAL_SCOPE (b
)))
1469 && (TYPE_MAIN_VARIANT (TREE_TYPE (b
->decl
))
1470 != TYPE_MAIN_VARIANT (type
)))
1472 warning_at (loc
, OPT_Wc___compat
,
1473 ("using %qD as both a typedef and a tag is "
1476 if (b
->locus
!= UNKNOWN_LOCATION
)
1477 inform (b
->locus
, "originally defined here");
1482 /* Subroutine of compare_decls. Allow harmless mismatches in return
1483 and argument types provided that the type modes match. This function
1484 return a unified type given a suitable match, and 0 otherwise. */
1487 match_builtin_function_types (tree newtype
, tree oldtype
)
1489 tree newrettype
, oldrettype
;
1490 tree newargs
, oldargs
;
1491 tree trytype
, tryargs
;
1493 /* Accept the return type of the new declaration if same modes. */
1494 oldrettype
= TREE_TYPE (oldtype
);
1495 newrettype
= TREE_TYPE (newtype
);
1497 if (TYPE_MODE (oldrettype
) != TYPE_MODE (newrettype
))
1500 oldargs
= TYPE_ARG_TYPES (oldtype
);
1501 newargs
= TYPE_ARG_TYPES (newtype
);
1504 while (oldargs
|| newargs
)
1508 || !TREE_VALUE (oldargs
)
1509 || !TREE_VALUE (newargs
)
1510 || TYPE_MODE (TREE_VALUE (oldargs
))
1511 != TYPE_MODE (TREE_VALUE (newargs
)))
1514 oldargs
= TREE_CHAIN (oldargs
);
1515 newargs
= TREE_CHAIN (newargs
);
1518 trytype
= build_function_type (newrettype
, tryargs
);
1519 return build_type_attribute_variant (trytype
, TYPE_ATTRIBUTES (oldtype
));
1522 /* Subroutine of diagnose_mismatched_decls. Check for function type
1523 mismatch involving an empty arglist vs a nonempty one and give clearer
1526 diagnose_arglist_conflict (tree newdecl
, tree olddecl
,
1527 tree newtype
, tree oldtype
)
1531 if (TREE_CODE (olddecl
) != FUNCTION_DECL
1532 || !comptypes (TREE_TYPE (oldtype
), TREE_TYPE (newtype
))
1533 || !((!prototype_p (oldtype
) && DECL_INITIAL (olddecl
) == 0)
1534 || (!prototype_p (newtype
) && DECL_INITIAL (newdecl
) == 0)))
1537 t
= TYPE_ARG_TYPES (oldtype
);
1539 t
= TYPE_ARG_TYPES (newtype
);
1540 for (; t
; t
= TREE_CHAIN (t
))
1542 tree type
= TREE_VALUE (t
);
1544 if (TREE_CHAIN (t
) == 0
1545 && TYPE_MAIN_VARIANT (type
) != void_type_node
)
1547 inform (input_location
, "a parameter list with an ellipsis can%'t match "
1548 "an empty parameter name list declaration");
1552 if (c_type_promotes_to (type
) != type
)
1554 inform (input_location
, "an argument type that has a default promotion can%'t match "
1555 "an empty parameter name list declaration");
1561 /* Another subroutine of diagnose_mismatched_decls. OLDDECL is an
1562 old-style function definition, NEWDECL is a prototype declaration.
1563 Diagnose inconsistencies in the argument list. Returns TRUE if
1564 the prototype is compatible, FALSE if not. */
1566 validate_proto_after_old_defn (tree newdecl
, tree newtype
, tree oldtype
)
1568 tree newargs
, oldargs
;
1571 #define END_OF_ARGLIST(t) ((t) == void_type_node)
1573 oldargs
= TYPE_ACTUAL_ARG_TYPES (oldtype
);
1574 newargs
= TYPE_ARG_TYPES (newtype
);
1579 tree oldargtype
= TREE_VALUE (oldargs
);
1580 tree newargtype
= TREE_VALUE (newargs
);
1582 if (oldargtype
== error_mark_node
|| newargtype
== error_mark_node
)
1585 oldargtype
= TYPE_MAIN_VARIANT (oldargtype
);
1586 newargtype
= TYPE_MAIN_VARIANT (newargtype
);
1588 if (END_OF_ARGLIST (oldargtype
) && END_OF_ARGLIST (newargtype
))
1591 /* Reaching the end of just one list means the two decls don't
1592 agree on the number of arguments. */
1593 if (END_OF_ARGLIST (oldargtype
))
1595 error ("prototype for %q+D declares more arguments "
1596 "than previous old-style definition", newdecl
);
1599 else if (END_OF_ARGLIST (newargtype
))
1601 error ("prototype for %q+D declares fewer arguments "
1602 "than previous old-style definition", newdecl
);
1606 /* Type for passing arg must be consistent with that declared
1608 else if (!comptypes (oldargtype
, newargtype
))
1610 error ("prototype for %q+D declares argument %d"
1611 " with incompatible type",
1616 oldargs
= TREE_CHAIN (oldargs
);
1617 newargs
= TREE_CHAIN (newargs
);
1621 /* If we get here, no errors were found, but do issue a warning
1622 for this poor-style construct. */
1623 warning (0, "prototype for %q+D follows non-prototype definition",
1626 #undef END_OF_ARGLIST
1629 /* Subroutine of diagnose_mismatched_decls. Report the location of DECL,
1630 first in a pair of mismatched declarations, using the diagnostic
1633 locate_old_decl (tree decl
)
1635 if (TREE_CODE (decl
) == FUNCTION_DECL
&& DECL_BUILT_IN (decl
))
1637 else if (DECL_INITIAL (decl
))
1638 inform (input_location
, "previous definition of %q+D was here", decl
);
1639 else if (C_DECL_IMPLICIT (decl
))
1640 inform (input_location
, "previous implicit declaration of %q+D was here", decl
);
1642 inform (input_location
, "previous declaration of %q+D was here", decl
);
1645 /* Subroutine of duplicate_decls. Compare NEWDECL to OLDDECL.
1646 Returns true if the caller should proceed to merge the two, false
1647 if OLDDECL should simply be discarded. As a side effect, issues
1648 all necessary diagnostics for invalid or poor-style combinations.
1649 If it returns true, writes the types of NEWDECL and OLDDECL to
1650 *NEWTYPEP and *OLDTYPEP - these may have been adjusted from
1651 TREE_TYPE (NEWDECL, OLDDECL) respectively. */
1654 diagnose_mismatched_decls (tree newdecl
, tree olddecl
,
1655 tree
*newtypep
, tree
*oldtypep
)
1657 tree newtype
, oldtype
;
1658 bool pedwarned
= false;
1659 bool warned
= false;
1662 #define DECL_EXTERN_INLINE(DECL) (DECL_DECLARED_INLINE_P (DECL) \
1663 && DECL_EXTERNAL (DECL))
1665 /* If we have error_mark_node for either decl or type, just discard
1666 the previous decl - we're in an error cascade already. */
1667 if (olddecl
== error_mark_node
|| newdecl
== error_mark_node
)
1669 *oldtypep
= oldtype
= TREE_TYPE (olddecl
);
1670 *newtypep
= newtype
= TREE_TYPE (newdecl
);
1671 if (oldtype
== error_mark_node
|| newtype
== error_mark_node
)
1674 /* Two different categories of symbol altogether. This is an error
1675 unless OLDDECL is a builtin. OLDDECL will be discarded in any case. */
1676 if (TREE_CODE (olddecl
) != TREE_CODE (newdecl
))
1678 if (!(TREE_CODE (olddecl
) == FUNCTION_DECL
1679 && DECL_BUILT_IN (olddecl
)
1680 && !C_DECL_DECLARED_BUILTIN (olddecl
)))
1682 error ("%q+D redeclared as different kind of symbol", newdecl
);
1683 locate_old_decl (olddecl
);
1685 else if (TREE_PUBLIC (newdecl
))
1686 warning (0, "built-in function %q+D declared as non-function",
1689 warning (OPT_Wshadow
, "declaration of %q+D shadows "
1690 "a built-in function", newdecl
);
1694 /* Enumerators have no linkage, so may only be declared once in a
1696 if (TREE_CODE (olddecl
) == CONST_DECL
)
1698 error ("redeclaration of enumerator %q+D", newdecl
);
1699 locate_old_decl (olddecl
);
1703 if (!comptypes (oldtype
, newtype
))
1705 if (TREE_CODE (olddecl
) == FUNCTION_DECL
1706 && DECL_BUILT_IN (olddecl
) && !C_DECL_DECLARED_BUILTIN (olddecl
))
1708 /* Accept harmless mismatch in function types.
1709 This is for the ffs and fprintf builtins. */
1710 tree trytype
= match_builtin_function_types (newtype
, oldtype
);
1712 if (trytype
&& comptypes (newtype
, trytype
))
1713 *oldtypep
= oldtype
= trytype
;
1716 /* If types don't match for a built-in, throw away the
1717 built-in. No point in calling locate_old_decl here, it
1718 won't print anything. */
1719 warning (0, "conflicting types for built-in function %q+D",
1724 else if (TREE_CODE (olddecl
) == FUNCTION_DECL
1725 && DECL_IS_BUILTIN (olddecl
))
1727 /* A conflicting function declaration for a predeclared
1728 function that isn't actually built in. Objective C uses
1729 these. The new declaration silently overrides everything
1730 but the volatility (i.e. noreturn) indication. See also
1731 below. FIXME: Make Objective C use normal builtins. */
1732 TREE_THIS_VOLATILE (newdecl
) |= TREE_THIS_VOLATILE (olddecl
);
1735 /* Permit void foo (...) to match int foo (...) if the latter is
1736 the definition and implicit int was used. See
1737 c-torture/compile/920625-2.c. */
1738 else if (TREE_CODE (newdecl
) == FUNCTION_DECL
&& DECL_INITIAL (newdecl
)
1739 && TYPE_MAIN_VARIANT (TREE_TYPE (oldtype
)) == void_type_node
1740 && TYPE_MAIN_VARIANT (TREE_TYPE (newtype
)) == integer_type_node
1741 && C_FUNCTION_IMPLICIT_INT (newdecl
) && !DECL_INITIAL (olddecl
))
1743 pedwarned
= pedwarn (input_location
, 0,
1744 "conflicting types for %q+D", newdecl
);
1745 /* Make sure we keep void as the return type. */
1746 TREE_TYPE (newdecl
) = *newtypep
= newtype
= oldtype
;
1747 C_FUNCTION_IMPLICIT_INT (newdecl
) = 0;
1749 /* Permit void foo (...) to match an earlier call to foo (...) with
1750 no declared type (thus, implicitly int). */
1751 else if (TREE_CODE (newdecl
) == FUNCTION_DECL
1752 && TYPE_MAIN_VARIANT (TREE_TYPE (newtype
)) == void_type_node
1753 && TYPE_MAIN_VARIANT (TREE_TYPE (oldtype
)) == integer_type_node
1754 && C_DECL_IMPLICIT (olddecl
) && !DECL_INITIAL (olddecl
))
1756 pedwarned
= pedwarn (input_location
, 0,
1757 "conflicting types for %q+D", newdecl
);
1758 /* Make sure we keep void as the return type. */
1759 TREE_TYPE (olddecl
) = *oldtypep
= oldtype
= newtype
;
1763 int new_quals
= TYPE_QUALS (newtype
);
1764 int old_quals
= TYPE_QUALS (oldtype
);
1766 if (new_quals
!= old_quals
)
1768 addr_space_t new_addr
= DECODE_QUAL_ADDR_SPACE (new_quals
);
1769 addr_space_t old_addr
= DECODE_QUAL_ADDR_SPACE (old_quals
);
1770 if (new_addr
!= old_addr
)
1772 if (ADDR_SPACE_GENERIC_P (new_addr
))
1773 error ("conflicting named address spaces (generic vs %s) "
1775 c_addr_space_name (old_addr
), newdecl
);
1776 else if (ADDR_SPACE_GENERIC_P (old_addr
))
1777 error ("conflicting named address spaces (%s vs generic) "
1779 c_addr_space_name (new_addr
), newdecl
);
1781 error ("conflicting named address spaces (%s vs %s) "
1783 c_addr_space_name (new_addr
),
1784 c_addr_space_name (old_addr
),
1788 if (CLEAR_QUAL_ADDR_SPACE (new_quals
)
1789 != CLEAR_QUAL_ADDR_SPACE (old_quals
))
1790 error ("conflicting type qualifiers for %q+D", newdecl
);
1793 error ("conflicting types for %q+D", newdecl
);
1794 diagnose_arglist_conflict (newdecl
, olddecl
, newtype
, oldtype
);
1795 locate_old_decl (olddecl
);
1800 /* Redeclaration of a type is a constraint violation (6.7.2.3p1),
1801 but silently ignore the redeclaration if either is in a system
1802 header. (Conflicting redeclarations were handled above.) This
1803 is allowed for C11 if the types are the same, not just
1805 if (TREE_CODE (newdecl
) == TYPE_DECL
)
1807 bool types_different
= false;
1808 int comptypes_result
;
1811 = comptypes_check_different_types (oldtype
, newtype
, &types_different
);
1813 if (comptypes_result
!= 1 || types_different
)
1815 error ("redefinition of typedef %q+D with different type", newdecl
);
1816 locate_old_decl (olddecl
);
1820 if (DECL_IN_SYSTEM_HEADER (newdecl
)
1821 || DECL_IN_SYSTEM_HEADER (olddecl
)
1822 || TREE_NO_WARNING (newdecl
)
1823 || TREE_NO_WARNING (olddecl
))
1824 return true; /* Allow OLDDECL to continue in use. */
1826 if (variably_modified_type_p (newtype
, NULL
))
1828 error ("redefinition of typedef %q+D with variably modified type",
1830 locate_old_decl (olddecl
);
1832 else if (pedantic
&& !flag_isoc11
)
1834 pedwarn (input_location
, OPT_Wpedantic
,
1835 "redefinition of typedef %q+D", newdecl
);
1836 locate_old_decl (olddecl
);
1842 /* Function declarations can either be 'static' or 'extern' (no
1843 qualifier is equivalent to 'extern' - C99 6.2.2p5) and therefore
1844 can never conflict with each other on account of linkage
1845 (6.2.2p4). Multiple definitions are not allowed (6.9p3,5) but
1846 gnu89 mode permits two definitions if one is 'extern inline' and
1847 one is not. The non- extern-inline definition supersedes the
1848 extern-inline definition. */
1850 else if (TREE_CODE (newdecl
) == FUNCTION_DECL
)
1852 /* If you declare a built-in function name as static, or
1853 define the built-in with an old-style definition (so we
1854 can't validate the argument list) the built-in definition is
1855 overridden, but optionally warn this was a bad choice of name. */
1856 if (DECL_BUILT_IN (olddecl
)
1857 && !C_DECL_DECLARED_BUILTIN (olddecl
)
1858 && (!TREE_PUBLIC (newdecl
)
1859 || (DECL_INITIAL (newdecl
)
1860 && !prototype_p (TREE_TYPE (newdecl
)))))
1862 warning (OPT_Wshadow
, "declaration of %q+D shadows "
1863 "a built-in function", newdecl
);
1864 /* Discard the old built-in function. */
1868 if (DECL_INITIAL (newdecl
))
1870 if (DECL_INITIAL (olddecl
))
1872 /* If both decls are in the same TU and the new declaration
1873 isn't overriding an extern inline reject the new decl.
1874 In c99, no overriding is allowed in the same translation
1876 if ((!DECL_EXTERN_INLINE (olddecl
)
1877 || DECL_EXTERN_INLINE (newdecl
)
1878 || (!flag_gnu89_inline
1879 && (!DECL_DECLARED_INLINE_P (olddecl
)
1880 || !lookup_attribute ("gnu_inline",
1881 DECL_ATTRIBUTES (olddecl
)))
1882 && (!DECL_DECLARED_INLINE_P (newdecl
)
1883 || !lookup_attribute ("gnu_inline",
1884 DECL_ATTRIBUTES (newdecl
))))
1886 && same_translation_unit_p (newdecl
, olddecl
))
1888 error ("redefinition of %q+D", newdecl
);
1889 locate_old_decl (olddecl
);
1894 /* If we have a prototype after an old-style function definition,
1895 the argument types must be checked specially. */
1896 else if (DECL_INITIAL (olddecl
)
1897 && !prototype_p (oldtype
) && prototype_p (newtype
)
1898 && TYPE_ACTUAL_ARG_TYPES (oldtype
)
1899 && !validate_proto_after_old_defn (newdecl
, newtype
, oldtype
))
1901 locate_old_decl (olddecl
);
1904 /* A non-static declaration (even an "extern") followed by a
1905 static declaration is undefined behavior per C99 6.2.2p3-5,7.
1906 The same is true for a static forward declaration at block
1907 scope followed by a non-static declaration/definition at file
1908 scope. Static followed by non-static at the same scope is
1909 not undefined behavior, and is the most convenient way to get
1910 some effects (see e.g. what unwind-dw2-fde-glibc.c does to
1911 the definition of _Unwind_Find_FDE in unwind-dw2-fde.c), but
1912 we do diagnose it if -Wtraditional. */
1913 if (TREE_PUBLIC (olddecl
) && !TREE_PUBLIC (newdecl
))
1915 /* Two exceptions to the rule. If olddecl is an extern
1916 inline, or a predeclared function that isn't actually
1917 built in, newdecl silently overrides olddecl. The latter
1918 occur only in Objective C; see also above. (FIXME: Make
1919 Objective C use normal builtins.) */
1920 if (!DECL_IS_BUILTIN (olddecl
)
1921 && !DECL_EXTERN_INLINE (olddecl
))
1923 error ("static declaration of %q+D follows "
1924 "non-static declaration", newdecl
);
1925 locate_old_decl (olddecl
);
1929 else if (TREE_PUBLIC (newdecl
) && !TREE_PUBLIC (olddecl
))
1931 if (DECL_CONTEXT (olddecl
))
1933 error ("non-static declaration of %q+D follows "
1934 "static declaration", newdecl
);
1935 locate_old_decl (olddecl
);
1938 else if (warn_traditional
)
1940 warned
|= warning (OPT_Wtraditional
,
1941 "non-static declaration of %q+D "
1942 "follows static declaration", newdecl
);
1946 /* Make sure gnu_inline attribute is either not present, or
1947 present on all inline decls. */
1948 if (DECL_DECLARED_INLINE_P (olddecl
)
1949 && DECL_DECLARED_INLINE_P (newdecl
))
1951 bool newa
= lookup_attribute ("gnu_inline",
1952 DECL_ATTRIBUTES (newdecl
)) != NULL
;
1953 bool olda
= lookup_attribute ("gnu_inline",
1954 DECL_ATTRIBUTES (olddecl
)) != NULL
;
1957 error_at (input_location
, "%<gnu_inline%> attribute present on %q+D",
1958 newa
? newdecl
: olddecl
);
1959 error_at (DECL_SOURCE_LOCATION (newa
? olddecl
: newdecl
),
1964 else if (TREE_CODE (newdecl
) == VAR_DECL
)
1966 /* Only variables can be thread-local, and all declarations must
1967 agree on this property. */
1968 if (C_DECL_THREADPRIVATE_P (olddecl
) && !DECL_THREAD_LOCAL_P (newdecl
))
1970 /* Nothing to check. Since OLDDECL is marked threadprivate
1971 and NEWDECL does not have a thread-local attribute, we
1972 will merge the threadprivate attribute into NEWDECL. */
1975 else if (DECL_THREAD_LOCAL_P (newdecl
) != DECL_THREAD_LOCAL_P (olddecl
))
1977 if (DECL_THREAD_LOCAL_P (newdecl
))
1978 error ("thread-local declaration of %q+D follows "
1979 "non-thread-local declaration", newdecl
);
1981 error ("non-thread-local declaration of %q+D follows "
1982 "thread-local declaration", newdecl
);
1984 locate_old_decl (olddecl
);
1988 /* Multiple initialized definitions are not allowed (6.9p3,5). */
1989 if (DECL_INITIAL (newdecl
) && DECL_INITIAL (olddecl
))
1991 error ("redefinition of %q+D", newdecl
);
1992 locate_old_decl (olddecl
);
1996 /* Objects declared at file scope: if the first declaration had
1997 external linkage (even if it was an external reference) the
1998 second must have external linkage as well, or the behavior is
1999 undefined. If the first declaration had internal linkage, then
2000 the second must too, or else be an external reference (in which
2001 case the composite declaration still has internal linkage).
2002 As for function declarations, we warn about the static-then-
2003 extern case only for -Wtraditional. See generally 6.2.2p3-5,7. */
2004 if (DECL_FILE_SCOPE_P (newdecl
)
2005 && TREE_PUBLIC (newdecl
) != TREE_PUBLIC (olddecl
))
2007 if (DECL_EXTERNAL (newdecl
))
2009 if (!DECL_FILE_SCOPE_P (olddecl
))
2011 error ("extern declaration of %q+D follows "
2012 "declaration with no linkage", newdecl
);
2013 locate_old_decl (olddecl
);
2016 else if (warn_traditional
)
2018 warned
|= warning (OPT_Wtraditional
,
2019 "non-static declaration of %q+D "
2020 "follows static declaration", newdecl
);
2025 if (TREE_PUBLIC (newdecl
))
2026 error ("non-static declaration of %q+D follows "
2027 "static declaration", newdecl
);
2029 error ("static declaration of %q+D follows "
2030 "non-static declaration", newdecl
);
2032 locate_old_decl (olddecl
);
2036 /* Two objects with the same name declared at the same block
2037 scope must both be external references (6.7p3). */
2038 else if (!DECL_FILE_SCOPE_P (newdecl
))
2040 if (DECL_EXTERNAL (newdecl
))
2042 /* Extern with initializer at block scope, which will
2043 already have received an error. */
2045 else if (DECL_EXTERNAL (olddecl
))
2047 error ("declaration of %q+D with no linkage follows "
2048 "extern declaration", newdecl
);
2049 locate_old_decl (olddecl
);
2053 error ("redeclaration of %q+D with no linkage", newdecl
);
2054 locate_old_decl (olddecl
);
2060 /* C++ does not permit a decl to appear multiple times at file
2063 && DECL_FILE_SCOPE_P (newdecl
)
2064 && !DECL_EXTERNAL (newdecl
)
2065 && !DECL_EXTERNAL (olddecl
))
2066 warned
|= warning_at (DECL_SOURCE_LOCATION (newdecl
),
2068 ("duplicate declaration of %qD is "
2074 /* All decls must agree on a visibility. */
2075 if (CODE_CONTAINS_STRUCT (TREE_CODE (newdecl
), TS_DECL_WITH_VIS
)
2076 && DECL_VISIBILITY_SPECIFIED (newdecl
) && DECL_VISIBILITY_SPECIFIED (olddecl
)
2077 && DECL_VISIBILITY (newdecl
) != DECL_VISIBILITY (olddecl
))
2079 warned
|= warning (0, "redeclaration of %q+D with different visibility "
2080 "(old visibility preserved)", newdecl
);
2083 if (TREE_CODE (newdecl
) == FUNCTION_DECL
)
2085 /* Diagnose inline __attribute__ ((noinline)) which is silly. */
2086 if (DECL_DECLARED_INLINE_P (newdecl
)
2087 && lookup_attribute ("noinline", DECL_ATTRIBUTES (olddecl
)))
2089 warned
|= warning (OPT_Wattributes
,
2090 "inline declaration of %qD follows "
2091 "declaration with attribute noinline", newdecl
);
2093 else if (DECL_DECLARED_INLINE_P (olddecl
)
2094 && lookup_attribute ("noinline", DECL_ATTRIBUTES (newdecl
)))
2096 warned
|= warning (OPT_Wattributes
,
2097 "declaration of %q+D with attribute "
2098 "noinline follows inline declaration ", newdecl
);
2101 else /* PARM_DECL, VAR_DECL */
2103 /* Redeclaration of a parameter is a constraint violation (this is
2104 not explicitly stated, but follows from C99 6.7p3 [no more than
2105 one declaration of the same identifier with no linkage in the
2106 same scope, except type tags] and 6.2.2p6 [parameters have no
2107 linkage]). We must check for a forward parameter declaration,
2108 indicated by TREE_ASM_WRITTEN on the old declaration - this is
2109 an extension, the mandatory diagnostic for which is handled by
2110 mark_forward_parm_decls. */
2112 if (TREE_CODE (newdecl
) == PARM_DECL
2113 && (!TREE_ASM_WRITTEN (olddecl
) || TREE_ASM_WRITTEN (newdecl
)))
2115 error ("redefinition of parameter %q+D", newdecl
);
2116 locate_old_decl (olddecl
);
2121 /* Optional warning for completely redundant decls. */
2122 if (!warned
&& !pedwarned
2123 && warn_redundant_decls
2124 /* Don't warn about a function declaration followed by a
2126 && !(TREE_CODE (newdecl
) == FUNCTION_DECL
2127 && DECL_INITIAL (newdecl
) && !DECL_INITIAL (olddecl
))
2128 /* Don't warn about redundant redeclarations of builtins. */
2129 && !(TREE_CODE (newdecl
) == FUNCTION_DECL
2130 && !DECL_BUILT_IN (newdecl
)
2131 && DECL_BUILT_IN (olddecl
)
2132 && !C_DECL_DECLARED_BUILTIN (olddecl
))
2133 /* Don't warn about an extern followed by a definition. */
2134 && !(DECL_EXTERNAL (olddecl
) && !DECL_EXTERNAL (newdecl
))
2135 /* Don't warn about forward parameter decls. */
2136 && !(TREE_CODE (newdecl
) == PARM_DECL
2137 && TREE_ASM_WRITTEN (olddecl
) && !TREE_ASM_WRITTEN (newdecl
))
2138 /* Don't warn about a variable definition following a declaration. */
2139 && !(TREE_CODE (newdecl
) == VAR_DECL
2140 && DECL_INITIAL (newdecl
) && !DECL_INITIAL (olddecl
)))
2142 warned
= warning (OPT_Wredundant_decls
, "redundant redeclaration of %q+D",
2146 /* Report location of previous decl/defn. */
2147 if (warned
|| pedwarned
)
2148 locate_old_decl (olddecl
);
2150 #undef DECL_EXTERN_INLINE
2155 /* Subroutine of duplicate_decls. NEWDECL has been found to be
2156 consistent with OLDDECL, but carries new information. Merge the
2157 new information into OLDDECL. This function issues no
2161 merge_decls (tree newdecl
, tree olddecl
, tree newtype
, tree oldtype
)
2163 bool new_is_definition
= (TREE_CODE (newdecl
) == FUNCTION_DECL
2164 && DECL_INITIAL (newdecl
) != 0);
2165 bool new_is_prototype
= (TREE_CODE (newdecl
) == FUNCTION_DECL
2166 && prototype_p (TREE_TYPE (newdecl
)));
2167 bool old_is_prototype
= (TREE_CODE (olddecl
) == FUNCTION_DECL
2168 && prototype_p (TREE_TYPE (olddecl
)));
2170 /* For real parm decl following a forward decl, rechain the old decl
2171 in its new location and clear TREE_ASM_WRITTEN (it's not a
2172 forward decl anymore). */
2173 if (TREE_CODE (newdecl
) == PARM_DECL
2174 && TREE_ASM_WRITTEN (olddecl
) && !TREE_ASM_WRITTEN (newdecl
))
2176 struct c_binding
*b
, **here
;
2178 for (here
= ¤t_scope
->bindings
; *here
; here
= &(*here
)->prev
)
2179 if ((*here
)->decl
== olddecl
)
2186 b
->prev
= current_scope
->bindings
;
2187 current_scope
->bindings
= b
;
2189 TREE_ASM_WRITTEN (olddecl
) = 0;
2192 DECL_ATTRIBUTES (newdecl
)
2193 = targetm
.merge_decl_attributes (olddecl
, newdecl
);
2195 /* Merge the data types specified in the two decls. */
2197 = TREE_TYPE (olddecl
)
2198 = composite_type (newtype
, oldtype
);
2200 /* Lay the type out, unless already done. */
2201 if (!comptypes (oldtype
, TREE_TYPE (newdecl
)))
2203 if (TREE_TYPE (newdecl
) != error_mark_node
)
2204 layout_type (TREE_TYPE (newdecl
));
2205 if (TREE_CODE (newdecl
) != FUNCTION_DECL
2206 && TREE_CODE (newdecl
) != TYPE_DECL
2207 && TREE_CODE (newdecl
) != CONST_DECL
)
2208 layout_decl (newdecl
, 0);
2212 /* Since the type is OLDDECL's, make OLDDECL's size go with. */
2213 DECL_SIZE (newdecl
) = DECL_SIZE (olddecl
);
2214 DECL_SIZE_UNIT (newdecl
) = DECL_SIZE_UNIT (olddecl
);
2215 DECL_MODE (newdecl
) = DECL_MODE (olddecl
);
2216 if (DECL_ALIGN (olddecl
) > DECL_ALIGN (newdecl
))
2218 DECL_ALIGN (newdecl
) = DECL_ALIGN (olddecl
);
2219 DECL_USER_ALIGN (newdecl
) |= DECL_USER_ALIGN (olddecl
);
2223 /* Keep the old rtl since we can safely use it. */
2224 if (HAS_RTL_P (olddecl
))
2225 COPY_DECL_RTL (olddecl
, newdecl
);
2227 /* Merge the type qualifiers. */
2228 if (TREE_READONLY (newdecl
))
2229 TREE_READONLY (olddecl
) = 1;
2231 if (TREE_THIS_VOLATILE (newdecl
))
2232 TREE_THIS_VOLATILE (olddecl
) = 1;
2234 if (TREE_SHARED (newdecl
))
2236 TREE_SHARED (olddecl
) = 1;
2237 if (TREE_CODE (newdecl
) == VAR_DECL
)
2238 TREE_THIS_VOLATILE (newdecl
) = 1;
2241 /* Merge deprecatedness. */
2242 if (TREE_DEPRECATED (newdecl
))
2243 TREE_DEPRECATED (olddecl
) = 1;
2245 /* If a decl is in a system header and the other isn't, keep the one on the
2246 system header. Otherwise, keep source location of definition rather than
2247 declaration and of prototype rather than non-prototype unless that
2248 prototype is built-in. */
2249 if (CODE_CONTAINS_STRUCT (TREE_CODE (olddecl
), TS_DECL_WITH_VIS
)
2250 && DECL_IN_SYSTEM_HEADER (olddecl
)
2251 && !DECL_IN_SYSTEM_HEADER (newdecl
) )
2252 DECL_SOURCE_LOCATION (newdecl
) = DECL_SOURCE_LOCATION (olddecl
);
2253 else if (CODE_CONTAINS_STRUCT (TREE_CODE (olddecl
), TS_DECL_WITH_VIS
)
2254 && DECL_IN_SYSTEM_HEADER (newdecl
)
2255 && !DECL_IN_SYSTEM_HEADER (olddecl
))
2256 DECL_SOURCE_LOCATION (olddecl
) = DECL_SOURCE_LOCATION (newdecl
);
2257 else if ((DECL_INITIAL (newdecl
) == 0 && DECL_INITIAL (olddecl
) != 0)
2258 || (old_is_prototype
&& !new_is_prototype
2259 && !C_DECL_BUILTIN_PROTOTYPE (olddecl
)))
2260 DECL_SOURCE_LOCATION (newdecl
) = DECL_SOURCE_LOCATION (olddecl
);
2262 /* Merge the initialization information. */
2263 if (DECL_INITIAL (newdecl
) == 0)
2264 DECL_INITIAL (newdecl
) = DECL_INITIAL (olddecl
);
2266 /* Merge the threadprivate attribute. */
2267 if (TREE_CODE (olddecl
) == VAR_DECL
&& C_DECL_THREADPRIVATE_P (olddecl
))
2269 DECL_TLS_MODEL (newdecl
) = DECL_TLS_MODEL (olddecl
);
2270 C_DECL_THREADPRIVATE_P (newdecl
) = 1;
2273 if (CODE_CONTAINS_STRUCT (TREE_CODE (olddecl
), TS_DECL_WITH_VIS
))
2275 /* Merge the section attribute.
2276 We want to issue an error if the sections conflict but that
2277 must be done later in decl_attributes since we are called
2278 before attributes are assigned. */
2279 if (DECL_SECTION_NAME (newdecl
) == NULL_TREE
)
2280 DECL_SECTION_NAME (newdecl
) = DECL_SECTION_NAME (olddecl
);
2282 /* Copy the assembler name.
2283 Currently, it can only be defined in the prototype. */
2284 COPY_DECL_ASSEMBLER_NAME (olddecl
, newdecl
);
2286 /* Use visibility of whichever declaration had it specified */
2287 if (DECL_VISIBILITY_SPECIFIED (olddecl
))
2289 DECL_VISIBILITY (newdecl
) = DECL_VISIBILITY (olddecl
);
2290 DECL_VISIBILITY_SPECIFIED (newdecl
) = 1;
2293 if (TREE_CODE (newdecl
) == FUNCTION_DECL
)
2295 DECL_STATIC_CONSTRUCTOR(newdecl
) |= DECL_STATIC_CONSTRUCTOR(olddecl
);
2296 DECL_STATIC_DESTRUCTOR (newdecl
) |= DECL_STATIC_DESTRUCTOR (olddecl
);
2297 DECL_NO_LIMIT_STACK (newdecl
) |= DECL_NO_LIMIT_STACK (olddecl
);
2298 DECL_NO_INSTRUMENT_FUNCTION_ENTRY_EXIT (newdecl
)
2299 |= DECL_NO_INSTRUMENT_FUNCTION_ENTRY_EXIT (olddecl
);
2300 TREE_THIS_VOLATILE (newdecl
) |= TREE_THIS_VOLATILE (olddecl
);
2301 DECL_IS_MALLOC (newdecl
) |= DECL_IS_MALLOC (olddecl
);
2302 DECL_IS_OPERATOR_NEW (newdecl
) |= DECL_IS_OPERATOR_NEW (olddecl
);
2303 TREE_READONLY (newdecl
) |= TREE_READONLY (olddecl
);
2304 DECL_PURE_P (newdecl
) |= DECL_PURE_P (olddecl
);
2305 DECL_IS_NOVOPS (newdecl
) |= DECL_IS_NOVOPS (olddecl
);
2308 /* Merge the storage class information. */
2309 merge_weak (newdecl
, olddecl
);
2311 /* For functions, static overrides non-static. */
2312 if (TREE_CODE (newdecl
) == FUNCTION_DECL
)
2314 TREE_PUBLIC (newdecl
) &= TREE_PUBLIC (olddecl
);
2315 /* This is since we don't automatically
2316 copy the attributes of NEWDECL into OLDDECL. */
2317 TREE_PUBLIC (olddecl
) = TREE_PUBLIC (newdecl
);
2318 /* If this clears `static', clear it in the identifier too. */
2319 if (!TREE_PUBLIC (olddecl
))
2320 TREE_PUBLIC (DECL_NAME (olddecl
)) = 0;
2324 /* In c99, 'extern' declaration before (or after) 'inline' means this
2325 function is not DECL_EXTERNAL, unless 'gnu_inline' attribute
2327 if (TREE_CODE (newdecl
) == FUNCTION_DECL
2328 && !flag_gnu89_inline
2329 && (DECL_DECLARED_INLINE_P (newdecl
)
2330 || DECL_DECLARED_INLINE_P (olddecl
))
2331 && (!DECL_DECLARED_INLINE_P (newdecl
)
2332 || !DECL_DECLARED_INLINE_P (olddecl
)
2333 || !DECL_EXTERNAL (olddecl
))
2334 && DECL_EXTERNAL (newdecl
)
2335 && !lookup_attribute ("gnu_inline", DECL_ATTRIBUTES (newdecl
))
2336 && !current_function_decl
)
2337 DECL_EXTERNAL (newdecl
) = 0;
2339 if (DECL_EXTERNAL (newdecl
))
2341 TREE_STATIC (newdecl
) = TREE_STATIC (olddecl
);
2342 DECL_EXTERNAL (newdecl
) = DECL_EXTERNAL (olddecl
);
2344 /* An extern decl does not override previous storage class. */
2345 TREE_PUBLIC (newdecl
) = TREE_PUBLIC (olddecl
);
2346 if (!DECL_EXTERNAL (newdecl
))
2348 DECL_CONTEXT (newdecl
) = DECL_CONTEXT (olddecl
);
2349 DECL_COMMON (newdecl
) = DECL_COMMON (olddecl
);
2354 TREE_STATIC (olddecl
) = TREE_STATIC (newdecl
);
2355 TREE_PUBLIC (olddecl
) = TREE_PUBLIC (newdecl
);
2358 if (TREE_CODE (newdecl
) == FUNCTION_DECL
)
2360 /* If we're redefining a function previously defined as extern
2361 inline, make sure we emit debug info for the inline before we
2362 throw it away, in case it was inlined into a function that
2363 hasn't been written out yet. */
2364 if (new_is_definition
&& DECL_INITIAL (olddecl
))
2365 /* The new defn must not be inline. */
2366 DECL_UNINLINABLE (newdecl
) = 1;
2369 /* If either decl says `inline', this fn is inline, unless
2370 its definition was passed already. */
2371 if (DECL_DECLARED_INLINE_P (newdecl
)
2372 || DECL_DECLARED_INLINE_P (olddecl
))
2373 DECL_DECLARED_INLINE_P (newdecl
) = 1;
2375 DECL_UNINLINABLE (newdecl
) = DECL_UNINLINABLE (olddecl
)
2376 = (DECL_UNINLINABLE (newdecl
) || DECL_UNINLINABLE (olddecl
));
2378 DECL_DISREGARD_INLINE_LIMITS (newdecl
)
2379 = DECL_DISREGARD_INLINE_LIMITS (olddecl
)
2380 = (DECL_DISREGARD_INLINE_LIMITS (newdecl
)
2381 || DECL_DISREGARD_INLINE_LIMITS (olddecl
));
2384 if (DECL_BUILT_IN (olddecl
))
2386 /* If redeclaring a builtin function, it stays built in.
2387 But it gets tagged as having been declared. */
2388 DECL_BUILT_IN_CLASS (newdecl
) = DECL_BUILT_IN_CLASS (olddecl
);
2389 DECL_FUNCTION_CODE (newdecl
) = DECL_FUNCTION_CODE (olddecl
);
2390 C_DECL_DECLARED_BUILTIN (newdecl
) = 1;
2391 if (new_is_prototype
)
2393 C_DECL_BUILTIN_PROTOTYPE (newdecl
) = 0;
2394 if (DECL_BUILT_IN_CLASS (newdecl
) == BUILT_IN_NORMAL
)
2396 enum built_in_function fncode
= DECL_FUNCTION_CODE (newdecl
);
2399 /* If a compatible prototype of these builtin functions
2400 is seen, assume the runtime implements it with the
2401 expected semantics. */
2402 case BUILT_IN_STPCPY
:
2403 if (builtin_decl_explicit_p (fncode
))
2404 set_builtin_decl_implicit_p (fncode
, true);
2412 C_DECL_BUILTIN_PROTOTYPE (newdecl
)
2413 = C_DECL_BUILTIN_PROTOTYPE (olddecl
);
2416 /* Preserve function specific target and optimization options */
2417 if (DECL_FUNCTION_SPECIFIC_TARGET (olddecl
)
2418 && !DECL_FUNCTION_SPECIFIC_TARGET (newdecl
))
2419 DECL_FUNCTION_SPECIFIC_TARGET (newdecl
)
2420 = DECL_FUNCTION_SPECIFIC_TARGET (olddecl
);
2422 if (DECL_FUNCTION_SPECIFIC_OPTIMIZATION (olddecl
)
2423 && !DECL_FUNCTION_SPECIFIC_OPTIMIZATION (newdecl
))
2424 DECL_FUNCTION_SPECIFIC_OPTIMIZATION (newdecl
)
2425 = DECL_FUNCTION_SPECIFIC_OPTIMIZATION (olddecl
);
2427 /* Also preserve various other info from the definition. */
2428 if (!new_is_definition
)
2431 DECL_RESULT (newdecl
) = DECL_RESULT (olddecl
);
2432 DECL_INITIAL (newdecl
) = DECL_INITIAL (olddecl
);
2433 DECL_STRUCT_FUNCTION (newdecl
) = DECL_STRUCT_FUNCTION (olddecl
);
2434 DECL_SAVED_TREE (newdecl
) = DECL_SAVED_TREE (olddecl
);
2435 DECL_ARGUMENTS (newdecl
) = copy_list (DECL_ARGUMENTS (olddecl
));
2436 for (t
= DECL_ARGUMENTS (newdecl
); t
; t
= DECL_CHAIN (t
))
2437 DECL_CONTEXT (t
) = newdecl
;
2439 /* See if we've got a function to instantiate from. */
2440 if (DECL_SAVED_TREE (olddecl
))
2441 DECL_ABSTRACT_ORIGIN (newdecl
)
2442 = DECL_ABSTRACT_ORIGIN (olddecl
);
2446 /* Merge the USED information. */
2447 if (TREE_USED (olddecl
))
2448 TREE_USED (newdecl
) = 1;
2449 else if (TREE_USED (newdecl
))
2450 TREE_USED (olddecl
) = 1;
2451 if (TREE_CODE (olddecl
) == VAR_DECL
|| TREE_CODE (olddecl
) == PARM_DECL
)
2452 DECL_READ_P (newdecl
) |= DECL_READ_P (olddecl
);
2453 if (DECL_PRESERVE_P (olddecl
))
2454 DECL_PRESERVE_P (newdecl
) = 1;
2455 else if (DECL_PRESERVE_P (newdecl
))
2456 DECL_PRESERVE_P (olddecl
) = 1;
2458 /* Copy most of the decl-specific fields of NEWDECL into OLDDECL.
2459 But preserve OLDDECL's DECL_UID, DECL_CONTEXT and
2460 DECL_ARGUMENTS (if appropriate). */
2462 unsigned olddecl_uid
= DECL_UID (olddecl
);
2463 tree olddecl_context
= DECL_CONTEXT (olddecl
);
2464 tree olddecl_arguments
= NULL
;
2465 if (TREE_CODE (olddecl
) == FUNCTION_DECL
)
2466 olddecl_arguments
= DECL_ARGUMENTS (olddecl
);
2468 memcpy ((char *) olddecl
+ sizeof (struct tree_common
),
2469 (char *) newdecl
+ sizeof (struct tree_common
),
2470 sizeof (struct tree_decl_common
) - sizeof (struct tree_common
));
2471 DECL_USER_ALIGN (olddecl
) = DECL_USER_ALIGN (newdecl
);
2472 switch (TREE_CODE (olddecl
))
2482 memcpy ((char *) olddecl
+ sizeof (struct tree_decl_common
),
2483 (char *) newdecl
+ sizeof (struct tree_decl_common
),
2484 tree_code_size (TREE_CODE (olddecl
)) - sizeof (struct tree_decl_common
));
2489 memcpy ((char *) olddecl
+ sizeof (struct tree_decl_common
),
2490 (char *) newdecl
+ sizeof (struct tree_decl_common
),
2491 sizeof (struct tree_decl_non_common
) - sizeof (struct tree_decl_common
));
2493 DECL_UID (olddecl
) = olddecl_uid
;
2494 DECL_CONTEXT (olddecl
) = olddecl_context
;
2495 if (TREE_CODE (olddecl
) == FUNCTION_DECL
)
2496 DECL_ARGUMENTS (olddecl
) = olddecl_arguments
;
2499 /* If OLDDECL had its DECL_RTL instantiated, re-invoke make_decl_rtl
2500 so that encode_section_info has a chance to look at the new decl
2501 flags and attributes. */
2502 if (DECL_RTL_SET_P (olddecl
)
2503 && (TREE_CODE (olddecl
) == FUNCTION_DECL
2504 || (TREE_CODE (olddecl
) == VAR_DECL
2505 && TREE_STATIC (olddecl
))))
2506 make_decl_rtl (olddecl
);
2509 /* Handle when a new declaration NEWDECL has the same name as an old
2510 one OLDDECL in the same binding contour. Prints an error message
2513 If safely possible, alter OLDDECL to look like NEWDECL, and return
2514 true. Otherwise, return false. */
2517 duplicate_decls (tree newdecl
, tree olddecl
)
2519 tree newtype
= NULL
, oldtype
= NULL
;
2521 if (!diagnose_mismatched_decls (newdecl
, olddecl
, &newtype
, &oldtype
))
2523 /* Avoid `unused variable' and other warnings for OLDDECL. */
2524 TREE_NO_WARNING (olddecl
) = 1;
2528 merge_decls (newdecl
, olddecl
, newtype
, oldtype
);
2533 /* Check whether decl-node NEW_DECL shadows an existing declaration. */
2535 warn_if_shadowing (tree new_decl
)
2537 struct c_binding
*b
;
2539 /* Shadow warnings wanted? */
2541 /* No shadow warnings for internally generated vars. */
2542 || DECL_IS_BUILTIN (new_decl
)
2543 /* No shadow warnings for vars made for inlining. */
2544 || DECL_FROM_INLINE (new_decl
))
2547 /* Is anything being shadowed? Invisible decls do not count. */
2548 for (b
= I_SYMBOL_BINDING (DECL_NAME (new_decl
)); b
; b
= b
->shadowed
)
2549 if (b
->decl
&& b
->decl
!= new_decl
&& !b
->invisible
2550 && (b
->decl
== error_mark_node
2551 || diagnostic_report_warnings_p (global_dc
,
2552 DECL_SOURCE_LOCATION (b
->decl
))))
2554 tree old_decl
= b
->decl
;
2556 if (old_decl
== error_mark_node
)
2558 warning (OPT_Wshadow
, "declaration of %q+D shadows previous "
2559 "non-variable", new_decl
);
2562 else if (TREE_CODE (old_decl
) == PARM_DECL
)
2563 warning (OPT_Wshadow
, "declaration of %q+D shadows a parameter",
2565 else if (DECL_FILE_SCOPE_P (old_decl
))
2567 /* Do not warn if a variable shadows a function, unless
2568 the variable is a function or a pointer-to-function. */
2569 if (TREE_CODE (old_decl
) == FUNCTION_DECL
2570 && TREE_CODE (new_decl
) != FUNCTION_DECL
2571 && !FUNCTION_POINTER_TYPE_P (TREE_TYPE (new_decl
)))
2574 warning_at (DECL_SOURCE_LOCATION (new_decl
), OPT_Wshadow
,
2575 "declaration of %qD shadows a global declaration",
2578 else if (TREE_CODE (old_decl
) == FUNCTION_DECL
2579 && DECL_BUILT_IN (old_decl
))
2581 warning (OPT_Wshadow
, "declaration of %q+D shadows "
2582 "a built-in function", new_decl
);
2586 warning (OPT_Wshadow
, "declaration of %q+D shadows a previous local",
2589 warning_at (DECL_SOURCE_LOCATION (old_decl
), OPT_Wshadow
,
2590 "shadowed declaration is here");
2596 /* Record a decl-node X as belonging to the current lexical scope.
2597 Check for errors (such as an incompatible declaration for the same
2598 name already seen in the same scope).
2600 Returns either X or an old decl for the same name.
2601 If an old decl is returned, it may have been smashed
2602 to agree with what X says. */
2607 tree name
= DECL_NAME (x
);
2608 struct c_scope
*scope
= current_scope
;
2609 struct c_binding
*b
;
2610 bool nested
= false;
2611 location_t locus
= DECL_SOURCE_LOCATION (x
);
2613 /* Must set DECL_CONTEXT for everything not at file scope or
2614 DECL_FILE_SCOPE_P won't work. Local externs don't count
2615 unless they have initializers (which generate code). */
2616 if (current_function_decl
2617 && ((TREE_CODE (x
) != FUNCTION_DECL
&& TREE_CODE (x
) != VAR_DECL
)
2618 || DECL_INITIAL (x
) || !DECL_EXTERNAL (x
)))
2619 DECL_CONTEXT (x
) = current_function_decl
;
2621 /* Anonymous decls are just inserted in the scope. */
2624 bind (name
, x
, scope
, /*invisible=*/false, /*nested=*/false,
2629 /* First, see if there is another declaration with the same name in
2630 the current scope. If there is, duplicate_decls may do all the
2631 work for us. If duplicate_decls returns false, that indicates
2632 two incompatible decls in the same scope; we are to silently
2633 replace the old one (duplicate_decls has issued all appropriate
2634 diagnostics). In particular, we should not consider possible
2635 duplicates in the external scope, or shadowing. */
2636 b
= I_SYMBOL_BINDING (name
);
2637 if (b
&& B_IN_SCOPE (b
, scope
))
2639 struct c_binding
*b_ext
, *b_use
;
2640 tree type
= TREE_TYPE (x
);
2641 tree visdecl
= b
->decl
;
2642 tree vistype
= TREE_TYPE (visdecl
);
2643 if (TREE_CODE (TREE_TYPE (x
)) == ARRAY_TYPE
2644 && COMPLETE_TYPE_P (TREE_TYPE (x
)))
2645 b
->inner_comp
= false;
2648 /* If this is an external linkage declaration, we should check
2649 for compatibility with the type in the external scope before
2650 setting the type at this scope based on the visible
2651 information only. */
2652 if (TREE_PUBLIC (x
) && TREE_PUBLIC (visdecl
))
2654 while (b_ext
&& !B_IN_EXTERNAL_SCOPE (b_ext
))
2655 b_ext
= b_ext
->shadowed
;
2660 TREE_TYPE (b_use
->decl
) = b_use
->u
.type
;
2663 if (duplicate_decls (x
, b_use
->decl
))
2667 /* Save the updated type in the external scope and
2668 restore the proper type for this scope. */
2670 if (comptypes (vistype
, type
))
2671 thistype
= composite_type (vistype
, type
);
2673 thistype
= TREE_TYPE (b_use
->decl
);
2674 b_use
->u
.type
= TREE_TYPE (b_use
->decl
);
2675 if (TREE_CODE (b_use
->decl
) == FUNCTION_DECL
2676 && DECL_BUILT_IN (b_use
->decl
))
2678 = build_type_attribute_variant (thistype
,
2681 TREE_TYPE (b_use
->decl
) = thistype
;
2686 goto skip_external_and_shadow_checks
;
2689 /* All declarations with external linkage, and all external
2690 references, go in the external scope, no matter what scope is
2691 current. However, the binding in that scope is ignored for
2692 purposes of normal name lookup. A separate binding structure is
2693 created in the requested scope; this governs the normal
2694 visibility of the symbol.
2696 The binding in the externals scope is used exclusively for
2697 detecting duplicate declarations of the same object, no matter
2698 what scope they are in; this is what we do here. (C99 6.2.7p2:
2699 All declarations that refer to the same object or function shall
2700 have compatible type; otherwise, the behavior is undefined.) */
2701 if (DECL_EXTERNAL (x
) || scope
== file_scope
)
2703 tree type
= TREE_TYPE (x
);
2706 bool type_saved
= false;
2707 if (b
&& !B_IN_EXTERNAL_SCOPE (b
)
2708 && (TREE_CODE (b
->decl
) == FUNCTION_DECL
2709 || TREE_CODE (b
->decl
) == VAR_DECL
)
2710 && DECL_FILE_SCOPE_P (b
->decl
))
2713 vistype
= TREE_TYPE (visdecl
);
2715 if (scope
!= file_scope
2716 && !DECL_IN_SYSTEM_HEADER (x
))
2717 warning (OPT_Wnested_externs
, "nested extern declaration of %qD", x
);
2719 while (b
&& !B_IN_EXTERNAL_SCOPE (b
))
2721 /* If this decl might be modified, save its type. This is
2722 done here rather than when the decl is first bound
2723 because the type may change after first binding, through
2724 being completed or through attributes being added. If we
2725 encounter multiple such decls, only the first should have
2726 its type saved; the others will already have had their
2727 proper types saved and the types will not have changed as
2728 their scopes will not have been re-entered. */
2729 if (DECL_P (b
->decl
) && DECL_FILE_SCOPE_P (b
->decl
) && !type_saved
)
2731 b
->u
.type
= TREE_TYPE (b
->decl
);
2734 if (B_IN_FILE_SCOPE (b
)
2735 && TREE_CODE (b
->decl
) == VAR_DECL
2736 && TREE_STATIC (b
->decl
)
2737 && TREE_CODE (TREE_TYPE (b
->decl
)) == ARRAY_TYPE
2738 && !TYPE_DOMAIN (TREE_TYPE (b
->decl
))
2739 && TREE_CODE (type
) == ARRAY_TYPE
2740 && TYPE_DOMAIN (type
)
2741 && TYPE_MAX_VALUE (TYPE_DOMAIN (type
))
2742 && !integer_zerop (TYPE_MAX_VALUE (TYPE_DOMAIN (type
))))
2744 /* Array type completed in inner scope, which should be
2745 diagnosed if the completion does not have size 1 and
2746 it does not get completed in the file scope. */
2747 b
->inner_comp
= true;
2752 /* If a matching external declaration has been found, set its
2753 type to the composite of all the types of that declaration.
2754 After the consistency checks, it will be reset to the
2755 composite of the visible types only. */
2756 if (b
&& (TREE_PUBLIC (x
) || same_translation_unit_p (x
, b
->decl
))
2758 TREE_TYPE (b
->decl
) = b
->u
.type
;
2760 /* The point of the same_translation_unit_p check here is,
2761 we want to detect a duplicate decl for a construct like
2762 foo() { extern bar(); } ... static bar(); but not if
2763 they are in different translation units. In any case,
2764 the static does not go in the externals scope. */
2766 && (TREE_PUBLIC (x
) || same_translation_unit_p (x
, b
->decl
))
2767 && duplicate_decls (x
, b
->decl
))
2772 if (comptypes (vistype
, type
))
2773 thistype
= composite_type (vistype
, type
);
2775 thistype
= TREE_TYPE (b
->decl
);
2779 b
->u
.type
= TREE_TYPE (b
->decl
);
2780 if (TREE_CODE (b
->decl
) == FUNCTION_DECL
&& DECL_BUILT_IN (b
->decl
))
2782 = build_type_attribute_variant (thistype
,
2783 TYPE_ATTRIBUTES (b
->u
.type
));
2784 TREE_TYPE (b
->decl
) = thistype
;
2785 bind (name
, b
->decl
, scope
, /*invisible=*/false, /*nested=*/true,
2789 else if (TREE_PUBLIC (x
))
2791 if (visdecl
&& !b
&& duplicate_decls (x
, visdecl
))
2793 /* An external declaration at block scope referring to a
2794 visible entity with internal linkage. The composite
2795 type will already be correct for this scope, so we
2796 just need to fall through to make the declaration in
2803 bind (name
, x
, external_scope
, /*invisible=*/true,
2804 /*nested=*/false, locus
);
2810 if (TREE_CODE (x
) != PARM_DECL
)
2811 warn_if_shadowing (x
);
2813 skip_external_and_shadow_checks
:
2814 if (TREE_CODE (x
) == TYPE_DECL
)
2816 /* So this is a typedef, set its underlying type. */
2817 set_underlying_type (x
);
2819 /* If X is a typedef defined in the current function, record it
2820 for the purpose of implementing the -Wunused-local-typedefs
2822 record_locally_defined_typedef (x
);
2825 bind (name
, x
, scope
, /*invisible=*/false, nested
, locus
);
2827 /* If x's type is incomplete because it's based on a
2828 structure or union which has not yet been fully declared,
2829 attach it to that structure or union type, so we can go
2830 back and complete the variable declaration later, if the
2831 structure or union gets fully declared.
2833 If the input is erroneous, we can have error_mark in the type
2834 slot (e.g. "f(void a, ...)") - that doesn't count as an
2836 if (TREE_TYPE (x
) != error_mark_node
2837 && !COMPLETE_TYPE_P (TREE_TYPE (x
)))
2839 tree element
= TREE_TYPE (x
);
2841 while (TREE_CODE (element
) == ARRAY_TYPE
)
2842 element
= TREE_TYPE (element
);
2843 element
= TYPE_MAIN_VARIANT (element
);
2845 if ((TREE_CODE (element
) == RECORD_TYPE
2846 || TREE_CODE (element
) == UNION_TYPE
)
2847 && (TREE_CODE (x
) != TYPE_DECL
2848 || TREE_CODE (TREE_TYPE (x
)) == ARRAY_TYPE
)
2849 && !COMPLETE_TYPE_P (element
))
2850 C_TYPE_INCOMPLETE_VARS (element
)
2851 = tree_cons (NULL_TREE
, x
, C_TYPE_INCOMPLETE_VARS (element
));
2856 /* Record X as belonging to file scope.
2857 This is used only internally by the Objective-C front end,
2858 and is limited to its needs. duplicate_decls is not called;
2859 if there is any preexisting decl for this identifier, it is an ICE. */
2862 pushdecl_top_level (tree x
)
2865 bool nested
= false;
2866 gcc_assert (TREE_CODE (x
) == VAR_DECL
|| TREE_CODE (x
) == CONST_DECL
);
2868 name
= DECL_NAME (x
);
2870 gcc_assert (TREE_CODE (x
) == CONST_DECL
|| !I_SYMBOL_BINDING (name
));
2872 if (TREE_PUBLIC (x
))
2874 bind (name
, x
, external_scope
, /*invisible=*/true, /*nested=*/false,
2879 bind (name
, x
, file_scope
, /*invisible=*/false, nested
, UNKNOWN_LOCATION
);
2885 implicit_decl_warning (tree id
, tree olddecl
)
2887 if (upc_diagnose_deprecated_stmt (input_location
, id
))
2889 if (warn_implicit_function_declaration
)
2894 warned
= pedwarn (input_location
, OPT_Wimplicit_function_declaration
,
2895 "implicit declaration of function %qE", id
);
2897 warned
= warning (OPT_Wimplicit_function_declaration
,
2898 G_("implicit declaration of function %qE"), id
);
2899 if (olddecl
&& warned
)
2900 locate_old_decl (olddecl
);
2904 /* Generate an implicit declaration for identifier FUNCTIONID at LOC as a
2905 function of type int (). */
2908 implicitly_declare (location_t loc
, tree functionid
)
2910 struct c_binding
*b
;
2914 for (b
= I_SYMBOL_BINDING (functionid
); b
; b
= b
->shadowed
)
2916 if (B_IN_SCOPE (b
, external_scope
))
2925 if (decl
== error_mark_node
)
2928 /* FIXME: Objective-C has weird not-really-builtin functions
2929 which are supposed to be visible automatically. They wind up
2930 in the external scope because they're pushed before the file
2931 scope gets created. Catch this here and rebind them into the
2933 if (!DECL_BUILT_IN (decl
) && DECL_IS_BUILTIN (decl
))
2935 bind (functionid
, decl
, file_scope
,
2936 /*invisible=*/false, /*nested=*/true,
2937 DECL_SOURCE_LOCATION (decl
));
2942 tree newtype
= default_function_type
;
2944 TREE_TYPE (decl
) = b
->u
.type
;
2945 /* Implicit declaration of a function already declared
2946 (somehow) in a different scope, or as a built-in.
2947 If this is the first time this has happened, warn;
2948 then recycle the old declaration but with the new type. */
2949 if (!C_DECL_IMPLICIT (decl
))
2951 implicit_decl_warning (functionid
, decl
);
2952 C_DECL_IMPLICIT (decl
) = 1;
2954 if (DECL_BUILT_IN (decl
))
2956 newtype
= build_type_attribute_variant (newtype
,
2958 (TREE_TYPE (decl
)));
2959 if (!comptypes (newtype
, TREE_TYPE (decl
)))
2961 warning_at (loc
, 0, "incompatible implicit declaration of "
2962 "built-in function %qD", decl
);
2963 newtype
= TREE_TYPE (decl
);
2968 if (!comptypes (newtype
, TREE_TYPE (decl
)))
2970 error_at (loc
, "incompatible implicit declaration of function %qD", decl
);
2971 locate_old_decl (decl
);
2974 b
->u
.type
= TREE_TYPE (decl
);
2975 TREE_TYPE (decl
) = newtype
;
2976 bind (functionid
, decl
, current_scope
,
2977 /*invisible=*/false, /*nested=*/true,
2978 DECL_SOURCE_LOCATION (decl
));
2983 /* Not seen before. */
2984 decl
= build_decl (loc
, FUNCTION_DECL
, functionid
, default_function_type
);
2985 DECL_EXTERNAL (decl
) = 1;
2986 TREE_PUBLIC (decl
) = 1;
2987 C_DECL_IMPLICIT (decl
) = 1;
2988 implicit_decl_warning (functionid
, 0);
2989 asmspec_tree
= maybe_apply_renaming_pragma (decl
, /*asmname=*/NULL
);
2991 set_user_assembler_name (decl
, TREE_STRING_POINTER (asmspec_tree
));
2993 /* C89 says implicit declarations are in the innermost block.
2994 So we record the decl in the standard fashion. */
2995 decl
= pushdecl (decl
);
2997 /* No need to call objc_check_decl here - it's a function type. */
2998 rest_of_decl_compilation (decl
, 0, 0);
3000 /* Write a record describing this implicit function declaration
3001 to the prototypes file (if requested). */
3002 gen_aux_info_record (decl
, 0, 1, 0);
3004 /* Possibly apply some default attributes to this implicit declaration. */
3005 decl_attributes (&decl
, NULL_TREE
, 0);
3010 /* Issue an error message for a reference to an undeclared variable
3011 ID, including a reference to a builtin outside of function-call
3012 context. Establish a binding of the identifier to error_mark_node
3013 in an appropriate scope, which will suppress further errors for the
3014 same identifier. The error message should be given location LOC. */
3016 undeclared_variable (location_t loc
, tree id
)
3018 static bool already
= false;
3019 struct c_scope
*scope
;
3021 if (current_function_decl
== 0)
3023 error_at (loc
, "%qE undeclared here (not in a function)", id
);
3024 scope
= current_scope
;
3028 if (upc_diagnose_deprecated_stmt (loc
, id
))
3030 if (!objc_diagnose_private_ivar (id
))
3031 error_at (loc
, "%qE undeclared (first use in this function)", id
);
3034 inform (loc
, "each undeclared identifier is reported only"
3035 " once for each function it appears in");
3039 /* If we are parsing old-style parameter decls, current_function_decl
3040 will be nonnull but current_function_scope will be null. */
3041 scope
= current_function_scope
? current_function_scope
: current_scope
;
3043 bind (id
, error_mark_node
, scope
, /*invisible=*/false, /*nested=*/false,
3047 /* Subroutine of lookup_label, declare_label, define_label: construct a
3048 LABEL_DECL with all the proper frills. Also create a struct
3049 c_label_vars initialized for the current scope. */
3052 make_label (location_t location
, tree name
, bool defining
,
3053 struct c_label_vars
**p_label_vars
)
3055 tree label
= build_decl (location
, LABEL_DECL
, name
, void_type_node
);
3056 struct c_label_vars
*label_vars
;
3058 DECL_CONTEXT (label
) = current_function_decl
;
3059 DECL_MODE (label
) = VOIDmode
;
3061 label_vars
= ggc_alloc_c_label_vars ();
3062 label_vars
->shadowed
= NULL
;
3063 set_spot_bindings (&label_vars
->label_bindings
, defining
);
3064 label_vars
->decls_in_scope
= make_tree_vector ();
3065 label_vars
->gotos
= NULL
;
3066 *p_label_vars
= label_vars
;
3071 /* Get the LABEL_DECL corresponding to identifier NAME as a label.
3072 Create one if none exists so far for the current function.
3073 This is called when a label is used in a goto expression or
3074 has its address taken. */
3077 lookup_label (tree name
)
3080 struct c_label_vars
*label_vars
;
3082 if (current_function_scope
== 0)
3084 error ("label %qE referenced outside of any function", name
);
3088 /* Use a label already defined or ref'd with this name, but not if
3089 it is inherited from a containing function and wasn't declared
3091 label
= I_LABEL_DECL (name
);
3092 if (label
&& (DECL_CONTEXT (label
) == current_function_decl
3093 || C_DECLARED_LABEL_FLAG (label
)))
3095 /* If the label has only been declared, update its apparent
3096 location to point here, for better diagnostics if it
3097 turns out not to have been defined. */
3098 if (DECL_INITIAL (label
) == NULL_TREE
)
3099 DECL_SOURCE_LOCATION (label
) = input_location
;
3103 /* No label binding for that identifier; make one. */
3104 label
= make_label (input_location
, name
, false, &label_vars
);
3106 /* Ordinary labels go in the current function scope. */
3107 bind_label (name
, label
, current_function_scope
, label_vars
);
3112 /* Issue a warning about DECL for a goto statement at GOTO_LOC going
3116 warn_about_goto (location_t goto_loc
, tree label
, tree decl
)
3118 if (variably_modified_type_p (TREE_TYPE (decl
), NULL_TREE
))
3120 "jump into scope of identifier with variably modified type");
3122 warning_at (goto_loc
, OPT_Wjump_misses_init
,
3123 "jump skips variable initialization");
3124 inform (DECL_SOURCE_LOCATION (label
), "label %qD defined here", label
);
3125 inform (DECL_SOURCE_LOCATION (decl
), "%qD declared here", decl
);
3128 /* Look up a label because of a goto statement. This is like
3129 lookup_label, but also issues any appropriate warnings. */
3132 lookup_label_for_goto (location_t loc
, tree name
)
3135 struct c_label_vars
*label_vars
;
3139 label
= lookup_label (name
);
3140 if (label
== NULL_TREE
)
3143 /* If we are jumping to a different function, we can't issue any
3145 if (DECL_CONTEXT (label
) != current_function_decl
)
3147 gcc_assert (C_DECLARED_LABEL_FLAG (label
));
3151 label_vars
= I_LABEL_BINDING (name
)->u
.label
;
3153 /* If the label has not yet been defined, then push this goto on a
3154 list for possible later warnings. */
3155 if (label_vars
->label_bindings
.scope
== NULL
)
3157 struct c_goto_bindings
*g
;
3159 g
= ggc_alloc_c_goto_bindings ();
3161 set_spot_bindings (&g
->goto_bindings
, true);
3162 vec_safe_push (label_vars
->gotos
, g
);
3166 /* If there are any decls in label_vars->decls_in_scope, then this
3167 goto has missed the declaration of the decl. This happens for a
3173 Issue a warning or error. */
3174 FOR_EACH_VEC_SAFE_ELT (label_vars
->decls_in_scope
, ix
, decl
)
3175 warn_about_goto (loc
, label
, decl
);
3177 if (label_vars
->label_bindings
.left_stmt_expr
)
3179 error_at (loc
, "jump into statement expression");
3180 inform (DECL_SOURCE_LOCATION (label
), "label %qD defined here", label
);
3186 /* Make a label named NAME in the current function, shadowing silently
3187 any that may be inherited from containing functions or containing
3188 scopes. This is called for __label__ declarations. */
3191 declare_label (tree name
)
3193 struct c_binding
*b
= I_LABEL_BINDING (name
);
3195 struct c_label_vars
*label_vars
;
3197 /* Check to make sure that the label hasn't already been declared
3199 if (b
&& B_IN_CURRENT_SCOPE (b
))
3201 error ("duplicate label declaration %qE", name
);
3202 locate_old_decl (b
->decl
);
3204 /* Just use the previous declaration. */
3208 label
= make_label (input_location
, name
, false, &label_vars
);
3209 C_DECLARED_LABEL_FLAG (label
) = 1;
3211 /* Declared labels go in the current scope. */
3212 bind_label (name
, label
, current_scope
, label_vars
);
3217 /* When we define a label, issue any appropriate warnings if there are
3218 any gotos earlier in the function which jump to this label. */
3221 check_earlier_gotos (tree label
, struct c_label_vars
* label_vars
)
3224 struct c_goto_bindings
*g
;
3226 FOR_EACH_VEC_SAFE_ELT (label_vars
->gotos
, ix
, g
)
3228 struct c_binding
*b
;
3229 struct c_scope
*scope
;
3231 /* We have a goto to this label. The goto is going forward. In
3232 g->scope, the goto is going to skip any binding which was
3233 defined after g->bindings_in_scope. */
3234 if (g
->goto_bindings
.scope
->has_jump_unsafe_decl
)
3236 for (b
= g
->goto_bindings
.scope
->bindings
;
3237 b
!= g
->goto_bindings
.bindings_in_scope
;
3240 if (decl_jump_unsafe (b
->decl
))
3241 warn_about_goto (g
->loc
, label
, b
->decl
);
3245 /* We also need to warn about decls defined in any scopes
3246 between the scope of the label and the scope of the goto. */
3247 for (scope
= label_vars
->label_bindings
.scope
;
3248 scope
!= g
->goto_bindings
.scope
;
3249 scope
= scope
->outer
)
3251 gcc_assert (scope
!= NULL
);
3252 if (scope
->has_jump_unsafe_decl
)
3254 if (scope
== label_vars
->label_bindings
.scope
)
3255 b
= label_vars
->label_bindings
.bindings_in_scope
;
3257 b
= scope
->bindings
;
3258 for (; b
!= NULL
; b
= b
->prev
)
3260 if (decl_jump_unsafe (b
->decl
))
3261 warn_about_goto (g
->loc
, label
, b
->decl
);
3266 if (g
->goto_bindings
.stmt_exprs
> 0)
3268 error_at (g
->loc
, "jump into statement expression");
3269 inform (DECL_SOURCE_LOCATION (label
), "label %qD defined here",
3274 /* Now that the label is defined, we will issue warnings about
3275 subsequent gotos to this label when we see them. */
3276 vec_safe_truncate (label_vars
->gotos
, 0);
3277 label_vars
->gotos
= NULL
;
3280 /* Define a label, specifying the location in the source file.
3281 Return the LABEL_DECL node for the label, if the definition is valid.
3282 Otherwise return 0. */
3285 define_label (location_t location
, tree name
)
3287 /* Find any preexisting label with this name. It is an error
3288 if that label has already been defined in this function, or
3289 if there is a containing function with a declared label with
3291 tree label
= I_LABEL_DECL (name
);
3294 && ((DECL_CONTEXT (label
) == current_function_decl
3295 && DECL_INITIAL (label
) != 0)
3296 || (DECL_CONTEXT (label
) != current_function_decl
3297 && C_DECLARED_LABEL_FLAG (label
))))
3299 error_at (location
, "duplicate label %qD", label
);
3300 locate_old_decl (label
);
3303 else if (label
&& DECL_CONTEXT (label
) == current_function_decl
)
3305 struct c_label_vars
*label_vars
= I_LABEL_BINDING (name
)->u
.label
;
3307 /* The label has been used or declared already in this function,
3308 but not defined. Update its location to point to this
3310 DECL_SOURCE_LOCATION (label
) = location
;
3311 set_spot_bindings (&label_vars
->label_bindings
, true);
3313 /* Issue warnings as required about any goto statements from
3314 earlier in the function. */
3315 check_earlier_gotos (label
, label_vars
);
3319 struct c_label_vars
*label_vars
;
3321 /* No label binding for that identifier; make one. */
3322 label
= make_label (location
, name
, true, &label_vars
);
3324 /* Ordinary labels go in the current function scope. */
3325 bind_label (name
, label
, current_function_scope
, label_vars
);
3328 if (!in_system_header
&& lookup_name (name
))
3329 warning_at (location
, OPT_Wtraditional
,
3330 "traditional C lacks a separate namespace "
3331 "for labels, identifier %qE conflicts", name
);
3333 /* Mark label as having been defined. */
3334 DECL_INITIAL (label
) = error_mark_node
;
3338 /* Get the bindings for a new switch statement. This is used to issue
3339 warnings as appropriate for jumps from the switch to case or
3342 struct c_spot_bindings
*
3343 c_get_switch_bindings (void)
3345 struct c_spot_bindings
*switch_bindings
;
3347 switch_bindings
= XNEW (struct c_spot_bindings
);
3348 set_spot_bindings (switch_bindings
, true);
3349 return switch_bindings
;
3353 c_release_switch_bindings (struct c_spot_bindings
*bindings
)
3355 gcc_assert (bindings
->stmt_exprs
== 0 && !bindings
->left_stmt_expr
);
3359 /* This is called at the point of a case or default label to issue
3360 warnings about decls as needed. It returns true if it found an
3361 error, not just a warning. */
3364 c_check_switch_jump_warnings (struct c_spot_bindings
*switch_bindings
,
3365 location_t switch_loc
, location_t case_loc
)
3368 struct c_scope
*scope
;
3371 for (scope
= current_scope
;
3372 scope
!= switch_bindings
->scope
;
3373 scope
= scope
->outer
)
3375 struct c_binding
*b
;
3377 gcc_assert (scope
!= NULL
);
3379 if (!scope
->has_jump_unsafe_decl
)
3382 for (b
= scope
->bindings
; b
!= NULL
; b
= b
->prev
)
3384 if (decl_jump_unsafe (b
->decl
))
3386 if (variably_modified_type_p (TREE_TYPE (b
->decl
), NULL_TREE
))
3390 ("switch jumps into scope of identifier with "
3391 "variably modified type"));
3394 warning_at (case_loc
, OPT_Wjump_misses_init
,
3395 "switch jumps over variable initialization");
3396 inform (switch_loc
, "switch starts here");
3397 inform (DECL_SOURCE_LOCATION (b
->decl
), "%qD declared here",
3403 if (switch_bindings
->stmt_exprs
> 0)
3406 error_at (case_loc
, "switch jumps into statement expression");
3407 inform (switch_loc
, "switch starts here");
3413 /* Given NAME, an IDENTIFIER_NODE,
3414 return the structure (or union or enum) definition for that name.
3415 If THISLEVEL_ONLY is nonzero, searches only the current_scope.
3416 CODE says which kind of type the caller wants;
3417 it is RECORD_TYPE or UNION_TYPE or ENUMERAL_TYPE.
3418 If PLOC is not NULL and this returns non-null, it sets *PLOC to the
3419 location where the tag was defined.
3420 If the wrong kind of type is found, an error is reported. */
3423 lookup_tag (enum tree_code code
, tree name
, int thislevel_only
,
3426 struct c_binding
*b
= I_TAG_BINDING (name
);
3432 /* We only care about whether it's in this level if
3433 thislevel_only was set or it might be a type clash. */
3434 if (thislevel_only
|| TREE_CODE (b
->decl
) != code
)
3436 /* For our purposes, a tag in the external scope is the same as
3437 a tag in the file scope. (Primarily relevant to Objective-C
3438 and its builtin structure tags, which get pushed before the
3439 file scope is created.) */
3440 if (B_IN_CURRENT_SCOPE (b
)
3441 || (current_scope
== file_scope
&& B_IN_EXTERNAL_SCOPE (b
)))
3445 if (thislevel_only
&& !thislevel
)
3448 if (TREE_CODE (b
->decl
) != code
)
3450 /* Definition isn't the kind we were looking for. */
3451 pending_invalid_xref
= name
;
3452 pending_invalid_xref_location
= input_location
;
3454 /* If in the same binding level as a declaration as a tag
3455 of a different type, this must not be allowed to
3456 shadow that tag, so give the error immediately.
3457 (For example, "struct foo; union foo;" is invalid.) */
3459 pending_xref_error ();
3468 /* Print an error message now
3469 for a recent invalid struct, union or enum cross reference.
3470 We don't print them immediately because they are not invalid
3471 when used in the `struct foo;' construct for shadowing. */
3474 pending_xref_error (void)
3476 if (pending_invalid_xref
!= 0)
3477 error_at (pending_invalid_xref_location
, "%qE defined as wrong kind of tag",
3478 pending_invalid_xref
);
3479 pending_invalid_xref
= 0;
3483 /* Look up NAME in the current scope and its superiors
3484 in the namespace of variables, functions and typedefs.
3485 Return a ..._DECL node of some kind representing its definition,
3486 or return 0 if it is undefined. */
3489 lookup_name (tree name
)
3491 struct c_binding
*b
= I_SYMBOL_BINDING (name
);
3492 if (b
&& !b
->invisible
)
3494 maybe_record_typedef_use (b
->decl
);
3500 /* Similar to `lookup_name' but look only at the indicated scope. */
3503 lookup_name_in_scope (tree name
, struct c_scope
*scope
)
3505 struct c_binding
*b
;
3507 for (b
= I_SYMBOL_BINDING (name
); b
; b
= b
->shadowed
)
3508 if (B_IN_SCOPE (b
, scope
))
3513 /* Create the predefined scalar types of C,
3514 and some nodes representing standard constants (0, 1, (void *) 0).
3515 Initialize the global scope.
3516 Make definitions for built-in primitive functions. */
3519 c_init_decl_processing (void)
3521 location_t save_loc
= input_location
;
3523 /* Initialize reserved words for parser. */
3526 current_function_decl
= 0;
3528 gcc_obstack_init (&parser_obstack
);
3530 /* Make the externals scope. */
3532 external_scope
= current_scope
;
3534 /* Declarations from c_common_nodes_and_builtins must not be associated
3535 with this input file, lest we get differences between using and not
3536 using preprocessed headers. */
3537 input_location
= BUILTINS_LOCATION
;
3539 c_common_nodes_and_builtins ();
3541 /* In C, comparisons and TRUTH_* expressions have type int. */
3542 truthvalue_type_node
= integer_type_node
;
3543 truthvalue_true_node
= integer_one_node
;
3544 truthvalue_false_node
= integer_zero_node
;
3546 /* Even in C99, which has a real boolean type. */
3547 pushdecl (build_decl (UNKNOWN_LOCATION
, TYPE_DECL
, get_identifier ("_Bool"),
3548 boolean_type_node
));
3550 input_location
= save_loc
;
3552 pedantic_lvalues
= true;
3554 make_fname_decl
= c_make_fname_decl
;
3555 start_fname_decls ();
3558 /* Create the VAR_DECL at LOC for __FUNCTION__ etc. ID is the name to
3559 give the decl, NAME is the initialization string and TYPE_DEP
3560 indicates whether NAME depended on the type of the function. As we
3561 don't yet implement delayed emission of static data, we mark the
3562 decl as emitted so it is not placed in the output. Anything using
3563 it must therefore pull out the STRING_CST initializer directly.
3567 c_make_fname_decl (location_t loc
, tree id
, int type_dep
)
3569 const char *name
= fname_as_string (type_dep
);
3570 tree decl
, type
, init
;
3571 size_t length
= strlen (name
);
3573 type
= build_array_type (char_type_node
,
3574 build_index_type (size_int (length
)));
3575 type
= c_build_qualified_type (type
, TYPE_QUAL_CONST
);
3577 decl
= build_decl (loc
, VAR_DECL
, id
, type
);
3579 TREE_STATIC (decl
) = 1;
3580 TREE_READONLY (decl
) = 1;
3581 DECL_ARTIFICIAL (decl
) = 1;
3583 init
= build_string (length
+ 1, name
);
3584 free (CONST_CAST (char *, name
));
3585 TREE_TYPE (init
) = type
;
3586 DECL_INITIAL (decl
) = init
;
3588 TREE_USED (decl
) = 1;
3590 if (current_function_decl
3591 /* For invalid programs like this:
3594 const char* p = __FUNCTION__;
3596 the __FUNCTION__ is believed to appear in K&R style function
3597 parameter declarator. In that case we still don't have
3599 && (!seen_error () || current_function_scope
))
3601 DECL_CONTEXT (decl
) = current_function_decl
;
3602 bind (id
, decl
, current_function_scope
,
3603 /*invisible=*/false, /*nested=*/false, UNKNOWN_LOCATION
);
3606 finish_decl (decl
, loc
, init
, NULL_TREE
, NULL_TREE
);
3612 c_builtin_function (tree decl
)
3614 tree type
= TREE_TYPE (decl
);
3615 tree id
= DECL_NAME (decl
);
3617 const char *name
= IDENTIFIER_POINTER (id
);
3618 C_DECL_BUILTIN_PROTOTYPE (decl
) = prototype_p (type
);
3620 /* Should never be called on a symbol with a preexisting meaning. */
3621 gcc_assert (!I_SYMBOL_BINDING (id
));
3623 bind (id
, decl
, external_scope
, /*invisible=*/true, /*nested=*/false,
3626 /* Builtins in the implementation namespace are made visible without
3627 needing to be explicitly declared. See push_file_scope. */
3628 if (name
[0] == '_' && (name
[1] == '_' || ISUPPER (name
[1])))
3630 DECL_CHAIN (decl
) = visible_builtins
;
3631 visible_builtins
= decl
;
3638 c_builtin_function_ext_scope (tree decl
)
3640 tree type
= TREE_TYPE (decl
);
3641 tree id
= DECL_NAME (decl
);
3643 const char *name
= IDENTIFIER_POINTER (id
);
3644 C_DECL_BUILTIN_PROTOTYPE (decl
) = prototype_p (type
);
3646 /* Should never be called on a symbol with a preexisting meaning. */
3647 gcc_assert (!I_SYMBOL_BINDING (id
));
3649 bind (id
, decl
, external_scope
, /*invisible=*/false, /*nested=*/false,
3652 /* Builtins in the implementation namespace are made visible without
3653 needing to be explicitly declared. See push_file_scope. */
3654 if (name
[0] == '_' && (name
[1] == '_' || ISUPPER (name
[1])))
3656 DECL_CHAIN (decl
) = visible_builtins
;
3657 visible_builtins
= decl
;
3663 /* Called when a declaration is seen that contains no names to declare.
3664 If its type is a reference to a structure, union or enum inherited
3665 from a containing scope, shadow that tag name for the current scope
3666 with a forward reference.
3667 If its type defines a new named structure or union
3668 or defines an enum, it is valid but we need not do anything here.
3669 Otherwise, it is an error. */
3672 shadow_tag (const struct c_declspecs
*declspecs
)
3674 shadow_tag_warned (declspecs
, 0);
3677 /* WARNED is 1 if we have done a pedwarn, 2 if we have done a warning,
3680 shadow_tag_warned (const struct c_declspecs
*declspecs
, int warned
)
3682 bool found_tag
= false;
3684 if (declspecs
->type
&& !declspecs
->default_int_p
&& !declspecs
->typedef_p
)
3686 tree value
= declspecs
->type
;
3687 enum tree_code code
= TREE_CODE (value
);
3689 if (code
== RECORD_TYPE
|| code
== UNION_TYPE
|| code
== ENUMERAL_TYPE
)
3690 /* Used to test also that TYPE_SIZE (value) != 0.
3691 That caused warning for `struct foo;' at top level in the file. */
3693 tree name
= TYPE_NAME (value
);
3698 if (declspecs
->restrict_p
)
3700 error ("invalid use of %<restrict%>");
3706 if (warned
!= 1 && code
!= ENUMERAL_TYPE
)
3707 /* Empty unnamed enum OK */
3709 pedwarn (input_location
, 0,
3710 "unnamed struct/union that defines no instances");
3714 else if (declspecs
->typespec_kind
!= ctsk_tagdef
3715 && declspecs
->typespec_kind
!= ctsk_tagfirstref
3716 && declspecs
->storage_class
!= csc_none
)
3719 pedwarn (input_location
, 0,
3720 "empty declaration with storage class specifier "
3721 "does not redeclare tag");
3723 pending_xref_error ();
3725 else if (declspecs
->typespec_kind
!= ctsk_tagdef
3726 && declspecs
->typespec_kind
!= ctsk_tagfirstref
3727 && (declspecs
->const_p
3728 || declspecs
->volatile_p
3729 || declspecs
->restrict_p
3730 || declspecs
->address_space
))
3733 pedwarn (input_location
, 0,
3734 "empty declaration with type qualifier "
3735 "does not redeclare tag");
3737 pending_xref_error ();
3739 else if (declspecs
->typespec_kind
!= ctsk_tagdef
3740 && declspecs
->typespec_kind
!= ctsk_tagfirstref
3741 && declspecs
->alignas_p
)
3744 pedwarn (input_location
, 0,
3745 "empty declaration with %<_Alignas%> "
3746 "does not redeclare tag");
3748 pending_xref_error ();
3752 pending_invalid_xref
= 0;
3753 t
= lookup_tag (code
, name
, 1, NULL
);
3757 t
= make_node (code
);
3758 pushtag (input_location
, name
, t
);
3764 if (warned
!= 1 && !in_system_header
)
3766 pedwarn (input_location
, 0,
3767 "useless type name in empty declaration");
3772 else if (warned
!= 1 && !in_system_header
&& declspecs
->typedef_p
)
3774 pedwarn (input_location
, 0, "useless type name in empty declaration");
3778 pending_invalid_xref
= 0;
3780 if (declspecs
->inline_p
)
3782 error ("%<inline%> in empty declaration");
3786 if (declspecs
->noreturn_p
)
3788 error ("%<_Noreturn%> in empty declaration");
3792 if (current_scope
== file_scope
&& declspecs
->storage_class
== csc_auto
)
3794 error ("%<auto%> in file-scope empty declaration");
3798 if (current_scope
== file_scope
&& declspecs
->storage_class
== csc_register
)
3800 error ("%<register%> in file-scope empty declaration");
3804 if (!warned
&& !in_system_header
&& declspecs
->storage_class
!= csc_none
)
3806 warning (0, "useless storage class specifier in empty declaration");
3810 if (!warned
&& !in_system_header
&& declspecs
->thread_p
)
3812 warning (0, "useless %<__thread%> in empty declaration");
3816 if (!warned
&& !in_system_header
&& (declspecs
->const_p
3817 || declspecs
->volatile_p
3818 || declspecs
->restrict_p
3819 || declspecs
->address_space
))
3821 warning (0, "useless type qualifier in empty declaration");
3825 if (!warned
&& !in_system_header
&& declspecs
->alignas_p
)
3827 warning (0, "useless %<_Alignas%> in empty declaration");
3834 pedwarn (input_location
, 0, "empty declaration");
3839 /* Return the qualifiers from SPECS as a bitwise OR of TYPE_QUAL_*
3840 bits. SPECS represents declaration specifiers that the grammar
3841 only permits to contain type qualifiers and attributes. */
3844 quals_from_declspecs (const struct c_declspecs
*specs
)
3846 int quals
= ((specs
->const_p
? TYPE_QUAL_CONST
: 0)
3847 | (specs
->volatile_p
? TYPE_QUAL_VOLATILE
: 0)
3848 | (specs
->restrict_p
? TYPE_QUAL_RESTRICT
: 0)
3849 | (specs
->shared_p
? TYPE_QUAL_SHARED
: 0)
3850 | (specs
->strict_p
? TYPE_QUAL_STRICT
: 0)
3851 | (specs
->relaxed_p
? TYPE_QUAL_RELAXED
: 0)
3852 | (ENCODE_QUAL_ADDR_SPACE (specs
->address_space
)));
3853 gcc_assert (!specs
->type
3854 && !specs
->decl_attr
3855 && specs
->typespec_word
== cts_none
3856 && specs
->storage_class
== csc_none
3857 && !specs
->typedef_p
3858 && !specs
->explicit_signed_p
3859 && !specs
->deprecated_p
3861 && !specs
->long_long_p
3864 && !specs
->unsigned_p
3865 && !specs
->complex_p
3867 && !specs
->noreturn_p
3868 && !specs
->thread_p
);
3872 /* Construct an array declarator. LOC is the location of the
3873 beginning of the array (usually the opening brace). EXPR is the
3874 expression inside [], or NULL_TREE. QUALS are the type qualifiers
3875 inside the [] (to be applied to the pointer to which a parameter
3876 array is converted). STATIC_P is true if "static" is inside the
3877 [], false otherwise. VLA_UNSPEC_P is true if the array is [*], a
3878 VLA of unspecified length which is nevertheless a complete type,
3879 false otherwise. The field for the contained declarator is left to
3880 be filled in by set_array_declarator_inner. */
3882 struct c_declarator
*
3883 build_array_declarator (location_t loc
,
3884 tree expr
, struct c_declspecs
*quals
, bool static_p
,
3887 struct c_declarator
*declarator
= XOBNEW (&parser_obstack
,
3888 struct c_declarator
);
3889 declarator
->id_loc
= loc
;
3890 declarator
->kind
= cdk_array
;
3891 declarator
->declarator
= 0;
3892 declarator
->u
.array
.dimen
= expr
;
3895 declarator
->u
.array
.attrs
= quals
->attrs
;
3896 declarator
->u
.array
.quals
= quals_from_declspecs (quals
);
3900 declarator
->u
.array
.attrs
= NULL_TREE
;
3901 declarator
->u
.array
.quals
= 0;
3903 declarator
->u
.array
.static_p
= static_p
;
3904 declarator
->u
.array
.vla_unspec_p
= vla_unspec_p
;
3907 if (static_p
|| quals
!= NULL
)
3908 pedwarn (loc
, OPT_Wpedantic
,
3909 "ISO C90 does not support %<static%> or type "
3910 "qualifiers in parameter array declarators");
3912 pedwarn (loc
, OPT_Wpedantic
,
3913 "ISO C90 does not support %<[*]%> array declarators");
3917 if (!current_scope
->parm_flag
)
3920 error_at (loc
, "%<[*]%> not allowed in other than "
3921 "function prototype scope");
3922 declarator
->u
.array
.vla_unspec_p
= false;
3925 current_scope
->had_vla_unspec
= true;
3930 /* Set the contained declarator of an array declarator. DECL is the
3931 declarator, as constructed by build_array_declarator; INNER is what
3932 appears on the left of the []. */
3934 struct c_declarator
*
3935 set_array_declarator_inner (struct c_declarator
*decl
,
3936 struct c_declarator
*inner
)
3938 decl
->declarator
= inner
;
3942 /* INIT is a constructor that forms DECL's initializer. If the final
3943 element initializes a flexible array field, add the size of that
3944 initializer to DECL's size. */
3947 add_flexible_array_elts_to_size (tree decl
, tree init
)
3951 if (vec_safe_is_empty (CONSTRUCTOR_ELTS (init
)))
3954 elt
= CONSTRUCTOR_ELTS (init
)->last ().value
;
3955 type
= TREE_TYPE (elt
);
3956 if (TREE_CODE (type
) == ARRAY_TYPE
3957 && TYPE_SIZE (type
) == NULL_TREE
3958 && TYPE_DOMAIN (type
) != NULL_TREE
3959 && TYPE_MAX_VALUE (TYPE_DOMAIN (type
)) == NULL_TREE
)
3961 complete_array_type (&type
, elt
, false);
3963 = size_binop (PLUS_EXPR
, DECL_SIZE (decl
), TYPE_SIZE (type
));
3964 DECL_SIZE_UNIT (decl
)
3965 = size_binop (PLUS_EXPR
, DECL_SIZE_UNIT (decl
), TYPE_SIZE_UNIT (type
));
3969 /* Decode a "typename", such as "int **", returning a ..._TYPE node.
3970 Set *EXPR, if EXPR not NULL, to any expression to be evaluated
3971 before the type name, and set *EXPR_CONST_OPERANDS, if
3972 EXPR_CONST_OPERANDS not NULL, to indicate whether the type name may
3973 appear in a constant expression. */
3976 groktypename (struct c_type_name
*type_name
, tree
*expr
,
3977 bool *expr_const_operands
)
3980 tree attrs
= type_name
->specs
->attrs
;
3982 type_name
->specs
->attrs
= NULL_TREE
;
3984 type
= grokdeclarator (type_name
->declarator
, type_name
->specs
, TYPENAME
,
3985 false, NULL
, &attrs
, expr
, expr_const_operands
,
3988 /* Apply attributes. */
3989 decl_attributes (&type
, attrs
, 0);
3994 /* Decode a declarator in an ordinary declaration or data definition.
3995 This is called as soon as the type information and variable name
3996 have been parsed, before parsing the initializer if any.
3997 Here we create the ..._DECL node, fill in its type,
3998 and put it on the list of decls for the current context.
3999 The ..._DECL node is returned as the value.
4001 Exception: for arrays where the length is not specified,
4002 the type is left null, to be filled in by `finish_decl'.
4004 Function definitions do not come here; they go to start_function
4005 instead. However, external and forward declarations of functions
4006 do go through here. Structure field declarations are done by
4007 grokfield and not through here. */
4010 start_decl (struct c_declarator
*declarator
, struct c_declspecs
*declspecs
,
4011 bool initialized
, tree attributes
)
4015 tree expr
= NULL_TREE
;
4016 enum deprecated_states deprecated_state
= DEPRECATED_NORMAL
;
4018 /* An object declared as __attribute__((deprecated)) suppresses
4019 warnings of uses of other deprecated items. */
4020 if (lookup_attribute ("deprecated", attributes
))
4021 deprecated_state
= DEPRECATED_SUPPRESS
;
4023 decl
= grokdeclarator (declarator
, declspecs
,
4024 NORMAL
, initialized
, NULL
, &attributes
, &expr
, NULL
,
4030 add_stmt (fold_convert (void_type_node
, expr
));
4032 if (TREE_CODE (decl
) != FUNCTION_DECL
&& MAIN_NAME_P (DECL_NAME (decl
)))
4033 warning (OPT_Wmain
, "%q+D is usually a function", decl
);
4036 /* Is it valid for this decl to have an initializer at all?
4037 If not, set INITIALIZED to zero, which will indirectly
4038 tell 'finish_decl' to ignore the initializer once it is parsed. */
4039 switch (TREE_CODE (decl
))
4042 error ("typedef %qD is initialized (use __typeof__ instead)", decl
);
4047 error ("function %qD is initialized like a variable", decl
);
4052 /* DECL_INITIAL in a PARM_DECL is really DECL_ARG_TYPE. */
4053 error ("parameter %qD is initialized", decl
);
4058 /* Don't allow initializations for incomplete types except for
4059 arrays which might be completed by the initialization. */
4061 /* This can happen if the array size is an undefined macro.
4062 We already gave a warning, so we don't need another one. */
4063 if (TREE_TYPE (decl
) == error_mark_node
)
4065 else if (COMPLETE_TYPE_P (TREE_TYPE (decl
)))
4067 /* A complete type is ok if size is fixed. */
4069 if (TREE_CODE (TYPE_SIZE (TREE_TYPE (decl
))) != INTEGER_CST
4070 || C_DECL_VARIABLE_SIZE (decl
))
4072 error ("variable-sized object may not be initialized");
4076 else if (TREE_CODE (TREE_TYPE (decl
)) != ARRAY_TYPE
)
4078 error ("variable %qD has initializer but incomplete type", decl
);
4081 else if (C_DECL_VARIABLE_SIZE (decl
))
4083 /* Although C99 is unclear about whether incomplete arrays
4084 of VLAs themselves count as VLAs, it does not make
4085 sense to permit them to be initialized given that
4086 ordinary VLAs may not be initialized. */
4087 error ("variable-sized object may not be initialized");
4094 if (current_scope
== file_scope
)
4095 TREE_STATIC (decl
) = 1;
4097 /* Tell 'pushdecl' this is an initialized decl
4098 even though we don't yet have the initializer expression.
4099 Also tell 'finish_decl' it may store the real initializer. */
4100 DECL_INITIAL (decl
) = error_mark_node
;
4103 /* If this is a function declaration, write a record describing it to the
4104 prototypes file (if requested). */
4106 if (TREE_CODE (decl
) == FUNCTION_DECL
)
4107 gen_aux_info_record (decl
, 0, 0, prototype_p (TREE_TYPE (decl
)));
4109 /* ANSI specifies that a tentative definition which is not merged with
4110 a non-tentative definition behaves exactly like a definition with an
4111 initializer equal to zero. (Section 3.7.2)
4113 -fno-common gives strict ANSI behavior, though this tends to break
4114 a large body of code that grew up without this rule.
4116 Thread-local variables are never common, since there's no entrenched
4117 body of code to break, and it allows more efficient variable references
4118 in the presence of dynamic linking. */
4120 if (TREE_CODE (decl
) == VAR_DECL
4122 && TREE_PUBLIC (decl
)
4123 && !DECL_THREAD_LOCAL_P (decl
)
4125 DECL_COMMON (decl
) = 1;
4127 /* Set attributes here so if duplicate decl, will have proper attributes. */
4128 decl_attributes (&decl
, attributes
, 0);
4130 /* Handle gnu_inline attribute. */
4131 if (declspecs
->inline_p
4132 && !flag_gnu89_inline
4133 && TREE_CODE (decl
) == FUNCTION_DECL
4134 && (lookup_attribute ("gnu_inline", DECL_ATTRIBUTES (decl
))
4135 || current_function_decl
))
4137 if (declspecs
->storage_class
== csc_auto
&& current_scope
!= file_scope
)
4139 else if (declspecs
->storage_class
!= csc_static
)
4140 DECL_EXTERNAL (decl
) = !DECL_EXTERNAL (decl
);
4143 if (TREE_CODE (decl
) == FUNCTION_DECL
4144 && targetm
.calls
.promote_prototypes (TREE_TYPE (decl
)))
4146 struct c_declarator
*ce
= declarator
;
4148 if (ce
->kind
== cdk_pointer
)
4149 ce
= declarator
->declarator
;
4150 if (ce
->kind
== cdk_function
)
4152 tree args
= ce
->u
.arg_info
->parms
;
4153 for (; args
; args
= DECL_CHAIN (args
))
4155 tree type
= TREE_TYPE (args
);
4156 if (type
&& INTEGRAL_TYPE_P (type
)
4157 && TYPE_PRECISION (type
) < TYPE_PRECISION (integer_type_node
))
4158 DECL_ARG_TYPE (args
) = integer_type_node
;
4163 if (TREE_CODE (decl
) == FUNCTION_DECL
4164 && DECL_DECLARED_INLINE_P (decl
)
4165 && DECL_UNINLINABLE (decl
)
4166 && lookup_attribute ("noinline", DECL_ATTRIBUTES (decl
)))
4167 warning (OPT_Wattributes
, "inline function %q+D given attribute noinline",
4170 /* C99 6.7.4p3: An inline definition of a function with external
4171 linkage shall not contain a definition of a modifiable object
4172 with static storage duration... */
4173 if (TREE_CODE (decl
) == VAR_DECL
4174 && current_scope
!= file_scope
4175 && TREE_STATIC (decl
)
4176 && !TREE_READONLY (decl
)
4177 && DECL_DECLARED_INLINE_P (current_function_decl
)
4178 && DECL_EXTERNAL (current_function_decl
))
4179 record_inline_static (input_location
, current_function_decl
,
4180 decl
, csi_modifiable
);
4182 if (c_dialect_objc ()
4183 && (TREE_CODE (decl
) == VAR_DECL
4184 || TREE_CODE (decl
) == FUNCTION_DECL
))
4185 objc_check_global_decl (decl
);
4187 /* Add this decl to the current scope.
4188 TEM may equal DECL or it may be a previous decl of the same name. */
4189 tem
= pushdecl (decl
);
4191 if (initialized
&& DECL_EXTERNAL (tem
))
4193 DECL_EXTERNAL (tem
) = 0;
4194 TREE_STATIC (tem
) = 1;
4200 /* Subroutine of finish_decl. TYPE is the type of an uninitialized object
4201 DECL or the non-array element type if DECL is an uninitialized array.
4202 If that type has a const member, diagnose this. */
4205 diagnose_uninitialized_cst_member (tree decl
, tree type
)
4208 for (field
= TYPE_FIELDS (type
); field
; field
= TREE_CHAIN (field
))
4211 if (TREE_CODE (field
) != FIELD_DECL
)
4213 field_type
= strip_array_types (TREE_TYPE (field
));
4215 if (TYPE_QUALS (field_type
) & TYPE_QUAL_CONST
)
4217 warning_at (DECL_SOURCE_LOCATION (decl
), OPT_Wc___compat
,
4218 "uninitialized const member in %qT is invalid in C++",
4219 strip_array_types (TREE_TYPE (decl
)));
4220 inform (DECL_SOURCE_LOCATION (field
), "%qD should be initialized", field
);
4223 if (TREE_CODE (field_type
) == RECORD_TYPE
4224 || TREE_CODE (field_type
) == UNION_TYPE
)
4225 diagnose_uninitialized_cst_member (decl
, field_type
);
4229 /* Finish processing of a declaration;
4230 install its initial value.
4231 If ORIGTYPE is not NULL_TREE, it is the original type of INIT.
4232 If the length of an array type is not known before,
4233 it must be determined now, from the initial value, or it is an error.
4235 INIT_LOC is the location of the initial value. */
4238 finish_decl (tree decl
, location_t init_loc
, tree init
,
4239 tree origtype
, tree asmspec_tree
)
4242 bool was_incomplete
= (DECL_SIZE (decl
) == 0);
4243 const char *asmspec
= 0;
4245 /* If a name was specified, get the string. */
4246 if ((TREE_CODE (decl
) == FUNCTION_DECL
|| TREE_CODE (decl
) == VAR_DECL
)
4247 && DECL_FILE_SCOPE_P (decl
))
4248 asmspec_tree
= maybe_apply_renaming_pragma (decl
, asmspec_tree
);
4250 asmspec
= TREE_STRING_POINTER (asmspec_tree
);
4252 if (TREE_CODE (decl
) == VAR_DECL
4253 && TREE_STATIC (decl
)
4254 && global_bindings_p ())
4255 /* So decl is a global variable. Record the types it uses
4256 so that we can decide later to emit debug info for them. */
4257 record_types_used_by_current_var_decl (decl
);
4259 /* If `start_decl' didn't like having an initialization, ignore it now. */
4260 if (init
!= 0 && DECL_INITIAL (decl
) == 0)
4263 /* Don't crash if parm is initialized. */
4264 if (TREE_CODE (decl
) == PARM_DECL
)
4268 store_init_value (init_loc
, decl
, init
, origtype
);
4270 if (c_dialect_objc () && (TREE_CODE (decl
) == VAR_DECL
4271 || TREE_CODE (decl
) == FUNCTION_DECL
4272 || TREE_CODE (decl
) == FIELD_DECL
))
4273 objc_check_decl (decl
);
4275 type
= TREE_TYPE (decl
);
4277 /* Deduce size of array from initialization, if not already known. */
4278 if (TREE_CODE (type
) == ARRAY_TYPE
4279 && TYPE_DOMAIN (type
) == 0
4280 && TREE_CODE (decl
) != TYPE_DECL
)
4283 = (TREE_STATIC (decl
)
4284 /* Even if pedantic, an external linkage array
4285 may have incomplete type at first. */
4286 ? pedantic
&& !TREE_PUBLIC (decl
)
4287 : !DECL_EXTERNAL (decl
));
4289 = complete_array_type (&TREE_TYPE (decl
), DECL_INITIAL (decl
),
4292 /* Get the completed type made by complete_array_type. */
4293 type
= TREE_TYPE (decl
);
4298 error ("initializer fails to determine size of %q+D", decl
);
4303 error ("array size missing in %q+D", decl
);
4304 /* If a `static' var's size isn't known,
4305 make it extern as well as static, so it does not get
4307 If it is not `static', then do not mark extern;
4308 finish_incomplete_decl will give it a default size
4309 and it will get allocated. */
4310 else if (!pedantic
&& TREE_STATIC (decl
) && !TREE_PUBLIC (decl
))
4311 DECL_EXTERNAL (decl
) = 1;
4315 error ("zero or negative size array %q+D", decl
);
4319 /* For global variables, update the copy of the type that
4320 exists in the binding. */
4321 if (TREE_PUBLIC (decl
))
4323 struct c_binding
*b_ext
= I_SYMBOL_BINDING (DECL_NAME (decl
));
4324 while (b_ext
&& !B_IN_EXTERNAL_SCOPE (b_ext
))
4325 b_ext
= b_ext
->shadowed
;
4328 if (b_ext
->u
.type
&& comptypes (b_ext
->u
.type
, type
))
4329 b_ext
->u
.type
= composite_type (b_ext
->u
.type
, type
);
4331 b_ext
->u
.type
= type
;
4340 if (DECL_INITIAL (decl
))
4341 TREE_TYPE (DECL_INITIAL (decl
)) = type
;
4343 relayout_decl (decl
);
4346 if (TREE_CODE (decl
) == VAR_DECL
)
4348 if (init
&& TREE_CODE (init
) == CONSTRUCTOR
)
4349 add_flexible_array_elts_to_size (decl
, init
);
4351 if (DECL_SIZE (decl
) == 0 && TREE_TYPE (decl
) != error_mark_node
4352 && COMPLETE_TYPE_P (TREE_TYPE (decl
)))
4353 layout_decl (decl
, 0);
4355 if (DECL_SIZE (decl
) == 0
4356 /* Don't give an error if we already gave one earlier. */
4357 && TREE_TYPE (decl
) != error_mark_node
4358 && (TREE_STATIC (decl
)
4359 /* A static variable with an incomplete type
4360 is an error if it is initialized.
4361 Also if it is not file scope.
4362 Otherwise, let it through, but if it is not `extern'
4363 then it may cause an error message later. */
4364 ? (DECL_INITIAL (decl
) != 0
4365 || !DECL_FILE_SCOPE_P (decl
))
4366 /* An automatic variable with an incomplete type
4368 : !DECL_EXTERNAL (decl
)))
4370 error ("storage size of %q+D isn%'t known", decl
);
4371 TREE_TYPE (decl
) = error_mark_node
;
4374 if ((DECL_EXTERNAL (decl
) || TREE_STATIC (decl
))
4375 && DECL_SIZE (decl
) != 0)
4377 if (TREE_CODE (DECL_SIZE (decl
)) == INTEGER_CST
)
4378 constant_expression_warning (DECL_SIZE (decl
));
4381 if (upc_shared_type_p (TREE_TYPE (decl
)))
4383 gcc_assert (!flag_upc_threads
);
4384 if (TYPE_HAS_THREADS_FACTOR (TREE_TYPE (decl
)))
4385 error ("in the UPC dynamic translation environment, " "THREADS may not appear in declarations "
4386 "of shared arrays with indefinite block size; "
4387 "the storage size of %q+D cannot be calculated",
4390 error ("in the UPC dynamic translation environment, "
4391 "THREADS must appear exactly once in "
4392 "declarations of shared arrays; "
4393 "the storage size of %q+D cannot be calculated",
4397 error ("storage size of %q+D isn%'t constant", decl
);
4398 TREE_TYPE (decl
) = error_mark_node
;
4402 if (TREE_USED (type
))
4404 TREE_USED (decl
) = 1;
4405 DECL_READ_P (decl
) = 1;
4409 /* If this is a function and an assembler name is specified, reset DECL_RTL
4410 so we can give it its new name. Also, update builtin_decl if it
4411 was a normal built-in. */
4412 if (TREE_CODE (decl
) == FUNCTION_DECL
&& asmspec
)
4414 if (DECL_BUILT_IN_CLASS (decl
) == BUILT_IN_NORMAL
)
4415 set_builtin_user_assembler_name (decl
, asmspec
);
4416 set_user_assembler_name (decl
, asmspec
);
4419 /* If #pragma weak was used, mark the decl weak now. */
4420 maybe_apply_pragma_weak (decl
);
4422 /* Output the assembler code and/or RTL code for variables and functions,
4423 unless the type is an undefined structure or union.
4424 If not, it will get done when the type is completed. */
4426 if (TREE_CODE (decl
) == VAR_DECL
|| TREE_CODE (decl
) == FUNCTION_DECL
)
4428 /* Determine the ELF visibility. */
4429 if (TREE_PUBLIC (decl
))
4430 c_determine_visibility (decl
);
4432 /* This is a no-op in c-lang.c or something real in objc-act.c. */
4433 if (c_dialect_objc ())
4434 objc_check_decl (decl
);
4436 /* Give UPC a chance to check the declaration. */
4437 if (c_dialect_upc ())
4438 upc_check_decl (decl
);
4442 /* If this is not a static variable, issue a warning.
4443 It doesn't make any sense to give an ASMSPEC for an
4444 ordinary, non-register local variable. Historically,
4445 GCC has accepted -- but ignored -- the ASMSPEC in
4447 if (!DECL_FILE_SCOPE_P (decl
)
4448 && TREE_CODE (decl
) == VAR_DECL
4449 && !C_DECL_REGISTER (decl
)
4450 && !TREE_STATIC (decl
))
4451 warning (0, "ignoring asm-specifier for non-static local "
4452 "variable %q+D", decl
);
4454 set_user_assembler_name (decl
, asmspec
);
4457 if (DECL_FILE_SCOPE_P (decl
))
4459 if (DECL_INITIAL (decl
) == NULL_TREE
4460 || DECL_INITIAL (decl
) == error_mark_node
)
4461 /* Don't output anything
4462 when a tentative file-scope definition is seen.
4463 But at end of compilation, do output code for them. */
4464 DECL_DEFER_OUTPUT (decl
) = 1;
4465 if (asmspec
&& C_DECL_REGISTER (decl
))
4466 DECL_HARD_REGISTER (decl
) = 1;
4467 rest_of_decl_compilation (decl
, true, 0);
4471 /* In conjunction with an ASMSPEC, the `register'
4472 keyword indicates that we should place the variable
4473 in a particular register. */
4474 if (asmspec
&& C_DECL_REGISTER (decl
))
4476 DECL_HARD_REGISTER (decl
) = 1;
4477 /* This cannot be done for a structure with volatile
4478 fields, on which DECL_REGISTER will have been
4480 if (!DECL_REGISTER (decl
))
4481 error ("cannot put object with volatile field into register");
4484 if (TREE_CODE (decl
) != FUNCTION_DECL
)
4486 /* If we're building a variable sized type, and we might be
4487 reachable other than via the top of the current binding
4488 level, then create a new BIND_EXPR so that we deallocate
4489 the object at the right time. */
4490 /* Note that DECL_SIZE can be null due to errors. */
4491 if (DECL_SIZE (decl
)
4492 && !TREE_CONSTANT (DECL_SIZE (decl
))
4493 && STATEMENT_LIST_HAS_LABEL (cur_stmt_list
))
4496 bind
= build3 (BIND_EXPR
, void_type_node
, NULL
, NULL
, NULL
);
4497 TREE_SIDE_EFFECTS (bind
) = 1;
4499 BIND_EXPR_BODY (bind
) = push_stmt_list ();
4501 add_stmt (build_stmt (DECL_SOURCE_LOCATION (decl
),
4507 if (!DECL_FILE_SCOPE_P (decl
))
4509 /* Recompute the RTL of a local array now
4510 if it used to be an incomplete type. */
4512 && !TREE_STATIC (decl
) && !DECL_EXTERNAL (decl
))
4514 /* If we used it already as memory, it must stay in memory. */
4515 TREE_ADDRESSABLE (decl
) = TREE_USED (decl
);
4516 /* If it's still incomplete now, no init will save it. */
4517 if (DECL_SIZE (decl
) == 0)
4518 DECL_INITIAL (decl
) = 0;
4523 if (TREE_CODE (decl
) == TYPE_DECL
)
4525 if (!DECL_FILE_SCOPE_P (decl
)
4526 && variably_modified_type_p (TREE_TYPE (decl
), NULL_TREE
))
4527 add_stmt (build_stmt (DECL_SOURCE_LOCATION (decl
), DECL_EXPR
, decl
));
4529 rest_of_decl_compilation (decl
, DECL_FILE_SCOPE_P (decl
), 0);
4532 /* Install a cleanup (aka destructor) if one was given. */
4533 if (TREE_CODE (decl
) == VAR_DECL
&& !TREE_STATIC (decl
))
4535 tree attr
= lookup_attribute ("cleanup", DECL_ATTRIBUTES (decl
));
4538 tree cleanup_id
= TREE_VALUE (TREE_VALUE (attr
));
4539 tree cleanup_decl
= lookup_name (cleanup_id
);
4541 vec
<tree
, va_gc
> *v
;
4543 /* Build "cleanup(&decl)" for the destructor. */
4544 cleanup
= build_unary_op (input_location
, ADDR_EXPR
, decl
, 0);
4546 v
->quick_push (cleanup
);
4547 cleanup
= build_function_call_vec (DECL_SOURCE_LOCATION (decl
),
4548 cleanup_decl
, v
, NULL
);
4551 /* Don't warn about decl unused; the cleanup uses it. */
4552 TREE_USED (decl
) = 1;
4553 TREE_USED (cleanup_decl
) = 1;
4554 DECL_READ_P (decl
) = 1;
4556 push_cleanup (decl
, cleanup
, false);
4561 && TREE_CODE (decl
) == VAR_DECL
4562 && !DECL_EXTERNAL (decl
)
4563 && DECL_INITIAL (decl
) == NULL_TREE
)
4565 type
= strip_array_types (type
);
4566 if (TREE_READONLY (decl
))
4567 warning_at (DECL_SOURCE_LOCATION (decl
), OPT_Wc___compat
,
4568 "uninitialized const %qD is invalid in C++", decl
);
4569 else if ((TREE_CODE (type
) == RECORD_TYPE
4570 || TREE_CODE (type
) == UNION_TYPE
)
4571 && C_TYPE_FIELDS_READONLY (type
))
4572 diagnose_uninitialized_cst_member (decl
, type
);
4575 invoke_plugin_callbacks (PLUGIN_FINISH_DECL
, decl
);
4578 /* Given a parsed parameter declaration, decode it into a PARM_DECL.
4579 EXPR is NULL or a pointer to an expression that needs to be
4580 evaluated for the side effects of array size expressions in the
4584 grokparm (const struct c_parm
*parm
, tree
*expr
)
4586 tree attrs
= parm
->attrs
;
4587 tree decl
= grokdeclarator (parm
->declarator
, parm
->specs
, PARM
, false,
4588 NULL
, &attrs
, expr
, NULL
, DEPRECATED_NORMAL
);
4590 decl_attributes (&decl
, attrs
, 0);
4595 /* Given a parsed parameter declaration, decode it into a PARM_DECL
4596 and push that on the current scope. EXPR is a pointer to an
4597 expression that needs to be evaluated for the side effects of array
4598 size expressions in the parameters. */
4601 push_parm_decl (const struct c_parm
*parm
, tree
*expr
)
4603 tree attrs
= parm
->attrs
;
4606 decl
= grokdeclarator (parm
->declarator
, parm
->specs
, PARM
, false, NULL
,
4607 &attrs
, expr
, NULL
, DEPRECATED_NORMAL
);
4608 decl_attributes (&decl
, attrs
, 0);
4610 decl
= pushdecl (decl
);
4612 finish_decl (decl
, input_location
, NULL_TREE
, NULL_TREE
, NULL_TREE
);
4615 /* Mark all the parameter declarations to date as forward decls.
4616 Also diagnose use of this extension. */
4619 mark_forward_parm_decls (void)
4621 struct c_binding
*b
;
4623 if (pedantic
&& !current_scope
->warned_forward_parm_decls
)
4625 pedwarn (input_location
, OPT_Wpedantic
,
4626 "ISO C forbids forward parameter declarations");
4627 current_scope
->warned_forward_parm_decls
= true;
4630 for (b
= current_scope
->bindings
; b
; b
= b
->prev
)
4631 if (TREE_CODE (b
->decl
) == PARM_DECL
)
4632 TREE_ASM_WRITTEN (b
->decl
) = 1;
4635 /* Build a COMPOUND_LITERAL_EXPR. TYPE is the type given in the compound
4636 literal, which may be an incomplete array type completed by the
4637 initializer; INIT is a CONSTRUCTOR at LOC that initializes the compound
4638 literal. NON_CONST is true if the initializers contain something
4639 that cannot occur in a constant expression. */
4642 build_compound_literal (location_t loc
, tree type
, tree init
, bool non_const
)
4644 /* We do not use start_decl here because we have a type, not a declarator;
4645 and do not use finish_decl because the decl should be stored inside
4646 the COMPOUND_LITERAL_EXPR rather than added elsewhere as a DECL_EXPR. */
4651 if (type
== error_mark_node
4652 || init
== error_mark_node
)
4653 return error_mark_node
;
4655 decl
= build_decl (loc
, VAR_DECL
, NULL_TREE
, type
);
4656 DECL_EXTERNAL (decl
) = 0;
4657 TREE_PUBLIC (decl
) = 0;
4658 TREE_STATIC (decl
) = (current_scope
== file_scope
);
4659 DECL_CONTEXT (decl
) = current_function_decl
;
4660 TREE_USED (decl
) = 1;
4661 DECL_READ_P (decl
) = 1;
4662 TREE_TYPE (decl
) = type
;
4663 TREE_READONLY (decl
) = (TYPE_READONLY (type
)
4664 || (TREE_CODE (type
) == ARRAY_TYPE
4665 && TYPE_READONLY (TREE_TYPE (type
))));
4666 store_init_value (loc
, decl
, init
, NULL_TREE
);
4668 if (TREE_CODE (type
) == ARRAY_TYPE
&& !COMPLETE_TYPE_P (type
))
4670 int failure
= complete_array_type (&TREE_TYPE (decl
),
4671 DECL_INITIAL (decl
), true);
4672 gcc_assert (!failure
);
4674 type
= TREE_TYPE (decl
);
4675 TREE_TYPE (DECL_INITIAL (decl
)) = type
;
4678 if (type
== error_mark_node
|| !COMPLETE_TYPE_P (type
))
4680 c_incomplete_type_error (NULL_TREE
, type
);
4681 return error_mark_node
;
4684 stmt
= build_stmt (DECL_SOURCE_LOCATION (decl
), DECL_EXPR
, decl
);
4685 complit
= build1 (COMPOUND_LITERAL_EXPR
, type
, stmt
);
4686 TREE_SIDE_EFFECTS (complit
) = 1;
4688 layout_decl (decl
, 0);
4690 if (TREE_STATIC (decl
))
4692 /* This decl needs a name for the assembler output. */
4693 set_compound_literal_name (decl
);
4694 DECL_DEFER_OUTPUT (decl
) = 1;
4695 DECL_COMDAT (decl
) = 1;
4696 DECL_ARTIFICIAL (decl
) = 1;
4697 DECL_IGNORED_P (decl
) = 1;
4699 rest_of_decl_compilation (decl
, 1, 0);
4704 complit
= build2 (C_MAYBE_CONST_EXPR
, type
, NULL
, complit
);
4705 C_MAYBE_CONST_EXPR_NON_CONST (complit
) = 1;
4711 /* Check the type of a compound literal. Here we just check that it
4712 is valid for C++. */
4715 check_compound_literal_type (location_t loc
, struct c_type_name
*type_name
)
4718 && (type_name
->specs
->typespec_kind
== ctsk_tagdef
4719 || type_name
->specs
->typespec_kind
== ctsk_tagfirstref
))
4720 warning_at (loc
, OPT_Wc___compat
,
4721 "defining a type in a compound literal is invalid in C++");
4724 /* Determine whether TYPE is a structure with a flexible array member,
4725 or a union containing such a structure (possibly recursively). */
4728 flexible_array_type_p (tree type
)
4731 switch (TREE_CODE (type
))
4734 x
= TYPE_FIELDS (type
);
4737 while (DECL_CHAIN (x
) != NULL_TREE
)
4739 if (TREE_CODE (TREE_TYPE (x
)) == ARRAY_TYPE
4740 && TYPE_SIZE (TREE_TYPE (x
)) == NULL_TREE
4741 && TYPE_DOMAIN (TREE_TYPE (x
)) != NULL_TREE
4742 && TYPE_MAX_VALUE (TYPE_DOMAIN (TREE_TYPE (x
))) == NULL_TREE
)
4746 for (x
= TYPE_FIELDS (type
); x
!= NULL_TREE
; x
= DECL_CHAIN (x
))
4748 if (flexible_array_type_p (TREE_TYPE (x
)))
4757 /* Performs sanity checks on the TYPE and WIDTH of the bit-field NAME,
4758 replacing with appropriate values if they are invalid. */
4760 check_bitfield_type_and_width (tree
*type
, tree
*width
, tree orig_name
)
4763 unsigned int max_width
;
4764 unsigned HOST_WIDE_INT w
;
4765 const char *name
= (orig_name
4766 ? identifier_to_locale (IDENTIFIER_POINTER (orig_name
))
4767 : _("<anonymous>"));
4769 /* Detect and ignore out of range field width and process valid
4771 if (!INTEGRAL_TYPE_P (TREE_TYPE (*width
)))
4773 error ("bit-field %qs width not an integer constant", name
);
4774 *width
= integer_one_node
;
4778 if (TREE_CODE (*width
) != INTEGER_CST
)
4780 *width
= c_fully_fold (*width
, false, NULL
);
4781 if (TREE_CODE (*width
) == INTEGER_CST
)
4782 pedwarn (input_location
, OPT_Wpedantic
,
4783 "bit-field %qs width not an integer constant expression",
4786 if (TREE_CODE (*width
) != INTEGER_CST
)
4788 error ("bit-field %qs width not an integer constant", name
);
4789 *width
= integer_one_node
;
4791 constant_expression_warning (*width
);
4792 if (tree_int_cst_sgn (*width
) < 0)
4794 error ("negative width in bit-field %qs", name
);
4795 *width
= integer_one_node
;
4797 else if (integer_zerop (*width
) && orig_name
)
4799 error ("zero width for bit-field %qs", name
);
4800 *width
= integer_one_node
;
4804 /* Detect invalid bit-field type. */
4805 if (TREE_CODE (*type
) != INTEGER_TYPE
4806 && TREE_CODE (*type
) != BOOLEAN_TYPE
4807 && TREE_CODE (*type
) != ENUMERAL_TYPE
)
4809 error ("bit-field %qs has invalid type", name
);
4810 *type
= unsigned_type_node
;
4813 type_mv
= TYPE_MAIN_VARIANT (*type
);
4814 if (!in_system_header
4815 && type_mv
!= integer_type_node
4816 && type_mv
!= unsigned_type_node
4817 && type_mv
!= boolean_type_node
)
4818 pedwarn (input_location
, OPT_Wpedantic
,
4819 "type of bit-field %qs is a GCC extension", name
);
4821 max_width
= TYPE_PRECISION (*type
);
4823 if (0 < compare_tree_int (*width
, max_width
))
4825 error ("width of %qs exceeds its type", name
);
4827 *width
= build_int_cst (integer_type_node
, w
);
4830 w
= tree_low_cst (*width
, 1);
4832 if (TREE_CODE (*type
) == ENUMERAL_TYPE
)
4834 struct lang_type
*lt
= TYPE_LANG_SPECIFIC (*type
);
4836 || w
< tree_int_cst_min_precision (lt
->enum_min
, TYPE_UNSIGNED (*type
))
4837 || w
< tree_int_cst_min_precision (lt
->enum_max
, TYPE_UNSIGNED (*type
)))
4838 warning (0, "%qs is narrower than values of its type", name
);
4844 /* Print warning about variable length array if necessary. */
4847 warn_variable_length_array (tree name
, tree size
)
4849 int const_size
= TREE_CONSTANT (size
);
4851 if (!flag_isoc99
&& pedantic
&& warn_vla
!= 0)
4856 pedwarn (input_location
, OPT_Wvla
,
4857 "ISO C90 forbids array %qE whose size "
4858 "can%'t be evaluated",
4861 pedwarn (input_location
, OPT_Wvla
, "ISO C90 forbids array whose size "
4862 "can%'t be evaluated");
4867 pedwarn (input_location
, OPT_Wvla
,
4868 "ISO C90 forbids variable length array %qE",
4871 pedwarn (input_location
, OPT_Wvla
, "ISO C90 forbids variable length array");
4874 else if (warn_vla
> 0)
4880 "the size of array %qE can"
4881 "%'t be evaluated", name
);
4884 "the size of array can %'t be evaluated");
4890 "variable length array %qE is used",
4894 "variable length array is used");
4899 /* Given declspecs and a declarator,
4900 determine the name and type of the object declared
4901 and construct a ..._DECL node for it.
4902 (In one case we can return a ..._TYPE node instead.
4903 For invalid input we sometimes return 0.)
4905 DECLSPECS is a c_declspecs structure for the declaration specifiers.
4907 DECL_CONTEXT says which syntactic context this declaration is in:
4908 NORMAL for most contexts. Make a VAR_DECL or FUNCTION_DECL or TYPE_DECL.
4909 FUNCDEF for a function definition. Like NORMAL but a few different
4910 error messages in each case. Return value may be zero meaning
4911 this definition is too screwy to try to parse.
4912 PARM for a parameter declaration (either within a function prototype
4913 or before a function body). Make a PARM_DECL, or return void_type_node.
4914 TYPENAME if for a typename (in a cast or sizeof).
4915 Don't make a DECL node; just return the ..._TYPE node.
4916 FIELD for a struct or union field; make a FIELD_DECL.
4917 INITIALIZED is true if the decl has an initializer.
4918 WIDTH is non-NULL for bit-fields, and is a pointer to an INTEGER_CST node
4919 representing the width of the bit-field.
4920 DECL_ATTRS points to the list of attributes that should be added to this
4921 decl. Any nested attributes that belong on the decl itself will be
4923 If EXPR is not NULL, any expressions that need to be evaluated as
4924 part of evaluating variably modified types will be stored in *EXPR.
4925 If EXPR_CONST_OPERANDS is not NULL, *EXPR_CONST_OPERANDS will be
4926 set to indicate whether operands in *EXPR can be used in constant
4928 DEPRECATED_STATE is a deprecated_states value indicating whether
4929 deprecation warnings should be suppressed.
4931 In the TYPENAME case, DECLARATOR is really an absolute declarator.
4932 It may also be so in the PARM case, for a prototype where the
4933 argument type is specified but not the name.
4935 This function is where the complicated C meanings of `static'
4936 and `extern' are interpreted. */
4939 grokdeclarator (const struct c_declarator
*declarator
,
4940 struct c_declspecs
*declspecs
,
4941 enum decl_context decl_context
, bool initialized
, tree
*width
,
4942 tree
*decl_attrs
, tree
*expr
, bool *expr_const_operands
,
4943 enum deprecated_states deprecated_state
)
4945 tree type
= declspecs
->type
;
4946 bool threadp
= declspecs
->thread_p
;
4947 enum c_storage_class storage_class
= declspecs
->storage_class
;
4954 int type_quals
= TYPE_UNQUALIFIED
;
4955 tree name
= NULL_TREE
;
4956 bool funcdef_flag
= false;
4957 bool funcdef_syntax
= false;
4958 bool size_varies
= false;
4959 tree decl_attr
= declspecs
->decl_attr
;
4960 int array_ptr_quals
= TYPE_UNQUALIFIED
;
4961 tree array_ptr_attrs
= NULL_TREE
;
4962 int array_parm_static
= 0;
4963 bool array_parm_vla_unspec_p
= false;
4964 tree returned_attrs
= NULL_TREE
;
4965 int upc_threads_ref
= 0; /* for static declarations of shared arrays */
4966 tree upc_layout_qualifier
;
4967 tree upc_elem_block_factor
;
4968 tree upc_block_factor
= NULL
;
4969 bool bitfield
= width
!= NULL
;
4971 struct c_arg_info
*arg_info
= 0;
4972 addr_space_t as1
, as2
, address_space
;
4973 location_t loc
= UNKNOWN_LOCATION
;
4976 bool expr_const_operands_dummy
;
4977 enum c_declarator_kind first_non_attr_kind
;
4978 unsigned int alignas_align
= 0;
4980 if (TREE_CODE (type
) == ERROR_MARK
)
4981 return error_mark_node
;
4984 if (expr_const_operands
== NULL
)
4985 expr_const_operands
= &expr_const_operands_dummy
;
4987 *expr
= declspecs
->expr
;
4988 *expr_const_operands
= declspecs
->expr_const_operands
;
4990 if (decl_context
== FUNCDEF
)
4991 funcdef_flag
= true, decl_context
= NORMAL
;
4993 /* Look inside a declarator for the name being declared
4994 and get it as an IDENTIFIER_NODE, for an error message. */
4996 const struct c_declarator
*decl
= declarator
;
4998 first_non_attr_kind
= cdk_attrs
;
5008 funcdef_syntax
= (decl
->kind
== cdk_function
);
5009 decl
= decl
->declarator
;
5010 if (first_non_attr_kind
== cdk_attrs
)
5011 first_non_attr_kind
= decl
->kind
;
5015 decl
= decl
->declarator
;
5022 if (first_non_attr_kind
== cdk_attrs
)
5023 first_non_attr_kind
= decl
->kind
;
5032 gcc_assert (decl_context
== PARM
5033 || decl_context
== TYPENAME
5034 || (decl_context
== FIELD
5035 && declarator
->kind
== cdk_id
));
5036 gcc_assert (!initialized
);
5040 /* A function definition's declarator must have the form of
5041 a function declarator. */
5043 if (funcdef_flag
&& !funcdef_syntax
)
5046 /* If this looks like a function definition, make it one,
5047 even if it occurs where parms are expected.
5048 Then store_parm_decls will reject it and not use it as a parm. */
5049 if (decl_context
== NORMAL
&& !funcdef_flag
&& current_scope
->parm_flag
)
5050 decl_context
= PARM
;
5052 if (declspecs
->deprecated_p
&& deprecated_state
!= DEPRECATED_SUPPRESS
)
5053 warn_deprecated_use (declspecs
->type
, declspecs
->decl_attr
);
5055 if ((decl_context
== NORMAL
|| decl_context
== FIELD
)
5056 && current_scope
== file_scope
5057 && variably_modified_type_p (type
, NULL_TREE
))
5060 error_at (loc
, "variably modified %qE at file scope", name
);
5062 error_at (loc
, "variably modified field at file scope");
5063 type
= integer_type_node
;
5066 size_varies
= C_TYPE_VARIABLE_SIZE (type
) != 0;
5068 upc_threads_ref
= TYPE_HAS_THREADS_FACTOR (type
);
5070 /* Diagnose defaulting to "int". */
5072 if (declspecs
->default_int_p
&& !in_system_header
)
5074 /* Issue a warning if this is an ISO C 99 program or if
5075 -Wreturn-type and this is a function, or if -Wimplicit;
5076 prefer the former warning since it is more explicit. */
5077 if ((warn_implicit_int
|| warn_return_type
|| flag_isoc99
)
5079 warn_about_return_type
= 1;
5083 pedwarn_c99 (loc
, flag_isoc99
? 0 : OPT_Wimplicit_int
,
5084 "type defaults to %<int%> in declaration of %qE",
5087 pedwarn_c99 (input_location
, flag_isoc99
? 0 : OPT_Wimplicit_int
,
5088 "type defaults to %<int%> in type name");
5092 /* Adjust the type if a bit-field is being declared,
5093 -funsigned-bitfields applied and the type is not explicitly
5095 if (bitfield
&& !flag_signed_bitfields
&& !declspecs
->explicit_signed_p
5096 && TREE_CODE (type
) == INTEGER_TYPE
)
5097 type
= unsigned_type_for (type
);
5099 /* Figure out the type qualifiers for the declaration. There are
5100 two ways a declaration can become qualified. One is something
5101 like `const int i' where the `const' is explicit. Another is
5102 something like `typedef const int CI; CI i' where the type of the
5103 declaration contains the `const'. A third possibility is that
5104 there is a type qualifier on the element type of a typedefed
5105 array type, in which case we should extract that qualifier so
5106 that c_apply_type_quals_to_decl receives the full list of
5107 qualifiers to work with (C90 is not entirely clear about whether
5108 duplicate qualifiers should be diagnosed in this case, but it
5109 seems most appropriate to do so). */
5110 element_type
= strip_array_types (type
);
5111 constp
= declspecs
->const_p
+ TYPE_READONLY (element_type
);
5112 restrictp
= declspecs
->restrict_p
+ TYPE_RESTRICT (element_type
);
5113 volatilep
= declspecs
->volatile_p
+ TYPE_VOLATILE (element_type
);
5114 sharedp
= declspecs
->shared_p
+ upc_shared_type_p (element_type
);
5115 strictp
= declspecs
->strict_p
+ TYPE_STRICT (element_type
);
5116 relaxedp
= declspecs
->relaxed_p
+ TYPE_RELAXED (element_type
);
5117 upc_elem_block_factor
= TYPE_BLOCK_FACTOR (element_type
);
5118 upc_layout_qualifier
= declspecs
->upc_layout_qualifier
;
5119 as1
= declspecs
->address_space
;
5120 as2
= TYPE_ADDR_SPACE (element_type
);
5121 address_space
= ADDR_SPACE_GENERIC_P (as1
)? as2
: as1
;
5123 if (pedantic
&& !flag_isoc99
)
5126 pedwarn (loc
, OPT_Wpedantic
, "duplicate %<const%>");
5128 pedwarn (loc
, OPT_Wpedantic
, "duplicate %<restrict%>");
5130 pedwarn (loc
, OPT_Wpedantic
, "duplicate %<volatile%>");
5132 pedwarn (loc
, OPT_Wpedantic
, "duplicate %<shared%>");
5134 pedwarn (loc
, OPT_Wpedantic
, "duplicate %<strict%>");
5136 pedwarn (loc
, OPT_Wpedantic
, "duplicate %<relaxed%>");
5138 if (strictp
&& relaxedp
)
5139 error_at (loc
, "UPC shared variable %qE is declared "
5140 "both strict and relaxed", name
);
5141 if (strictp
&& !sharedp
)
5142 error_at (loc
, "%qE is declared with UPC strict qualifier "
5143 "but not shared", name
);
5144 if (relaxedp
&& !sharedp
)
5145 error_at (loc
, "%qE is declared with UPC relaxed qualifier "
5146 "but not shared", name
);
5148 if (!ADDR_SPACE_GENERIC_P (as1
) && !ADDR_SPACE_GENERIC_P (as2
) && as1
!= as2
)
5149 error_at (loc
, "conflicting named address spaces (%s vs %s)",
5150 c_addr_space_name (as1
), c_addr_space_name (as2
));
5152 if ((TREE_CODE (type
) == ARRAY_TYPE
5153 || first_non_attr_kind
== cdk_array
)
5154 && TYPE_QUALS (element_type
))
5155 type
= TYPE_MAIN_VARIANT (type
);
5156 type_quals
= ((constp
? TYPE_QUAL_CONST
: 0)
5157 | (restrictp
? TYPE_QUAL_RESTRICT
: 0)
5158 | (volatilep
? TYPE_QUAL_VOLATILE
: 0)
5159 | (sharedp
? TYPE_QUAL_SHARED
: 0)
5160 | (strictp
? TYPE_QUAL_STRICT
: 0)
5161 | (relaxedp
? TYPE_QUAL_RELAXED
: 0)
5162 | ENCODE_QUAL_ADDR_SPACE (address_space
));
5164 /* Warn about storage classes that are invalid for certain
5165 kinds of declarations (parameters, typenames, etc.). */
5169 || storage_class
== csc_auto
5170 || storage_class
== csc_register
5171 || storage_class
== csc_typedef
))
5173 if (storage_class
== csc_auto
)
5175 (current_scope
== file_scope
) ? 0 : OPT_Wpedantic
,
5176 "function definition declared %<auto%>");
5177 if (storage_class
== csc_register
)
5178 error_at (loc
, "function definition declared %<register%>");
5179 if (storage_class
== csc_typedef
)
5180 error_at (loc
, "function definition declared %<typedef%>");
5182 error_at (loc
, "function definition declared %<__thread%>");
5184 if (storage_class
== csc_auto
5185 || storage_class
== csc_register
5186 || storage_class
== csc_typedef
)
5187 storage_class
= csc_none
;
5189 else if (decl_context
!= NORMAL
&& (storage_class
!= csc_none
|| threadp
))
5191 if (decl_context
== PARM
&& storage_class
== csc_register
)
5195 switch (decl_context
)
5199 error_at (loc
, "storage class specified for structure "
5202 error_at (loc
, "storage class specified for structure field");
5206 error_at (loc
, "storage class specified for parameter %qE",
5209 error_at (loc
, "storage class specified for unnamed parameter");
5212 error_at (loc
, "storage class specified for typename");
5215 storage_class
= csc_none
;
5219 else if (storage_class
== csc_extern
5223 /* 'extern' with initialization is invalid if not at file scope. */
5224 if (current_scope
== file_scope
)
5226 /* It is fine to have 'extern const' when compiling at C
5227 and C++ intersection. */
5228 if (!(warn_cxx_compat
&& constp
))
5229 warning_at (loc
, 0, "%qE initialized and declared %<extern%>",
5233 error_at (loc
, "%qE has both %<extern%> and initializer", name
);
5235 else if (current_scope
== file_scope
)
5237 if (storage_class
== csc_auto
)
5238 error_at (loc
, "file-scope declaration of %qE specifies %<auto%>",
5240 if (pedantic
&& storage_class
== csc_register
)
5241 pedwarn (input_location
, OPT_Wpedantic
,
5242 "file-scope declaration of %qE specifies %<register%>", name
);
5246 if (storage_class
== csc_extern
&& funcdef_flag
)
5247 error_at (loc
, "nested function %qE declared %<extern%>", name
);
5248 else if (threadp
&& storage_class
== csc_none
)
5250 error_at (loc
, "function-scope %qE implicitly auto and declared "
5257 /* Now figure out the structure of the declarator proper.
5258 Descend through it, creating more complex types, until we reach
5259 the declared identifier (or NULL_TREE, in an absolute declarator).
5260 At each stage we maintain an unqualified version of the type
5261 together with any qualifiers that should be applied to it with
5262 c_build_qualified_type; this way, array types including
5263 multidimensional array types are first built up in unqualified
5264 form and then the qualified form is created with
5265 TYPE_MAIN_VARIANT pointing to the unqualified form. */
5267 while (declarator
&& declarator
->kind
!= cdk_id
)
5269 if (type
== error_mark_node
)
5271 declarator
= declarator
->declarator
;
5275 /* Each level of DECLARATOR is either a cdk_array (for ...[..]),
5276 a cdk_pointer (for *...),
5277 a cdk_function (for ...(...)),
5278 a cdk_attrs (for nested attributes),
5279 or a cdk_id (for the name being declared
5280 or the place in an absolute declarator
5281 where the name was omitted).
5282 For the last case, we have just exited the loop.
5284 At this point, TYPE is the type of elements of an array,
5285 or for a function to return, or for a pointer to point to.
5286 After this sequence of ifs, TYPE is the type of the
5287 array or function or pointer, and DECLARATOR has had its
5288 outermost layer removed. */
5290 if (array_ptr_quals
!= TYPE_UNQUALIFIED
5291 || array_ptr_attrs
!= NULL_TREE
5292 || array_parm_static
)
5294 /* Only the innermost declarator (making a parameter be of
5295 array type which is converted to pointer type)
5296 may have static or type qualifiers. */
5297 error_at (loc
, "static or type qualifiers in non-parameter array declarator");
5298 array_ptr_quals
= TYPE_UNQUALIFIED
;
5299 array_ptr_attrs
= NULL_TREE
;
5300 array_parm_static
= 0;
5303 switch (declarator
->kind
)
5307 /* A declarator with embedded attributes. */
5308 tree attrs
= declarator
->u
.attrs
;
5309 const struct c_declarator
*inner_decl
;
5311 declarator
= declarator
->declarator
;
5312 inner_decl
= declarator
;
5313 while (inner_decl
->kind
== cdk_attrs
)
5314 inner_decl
= inner_decl
->declarator
;
5315 if (inner_decl
->kind
== cdk_id
)
5316 attr_flags
|= (int) ATTR_FLAG_DECL_NEXT
;
5317 else if (inner_decl
->kind
== cdk_function
)
5318 attr_flags
|= (int) ATTR_FLAG_FUNCTION_NEXT
;
5319 else if (inner_decl
->kind
== cdk_array
)
5320 attr_flags
|= (int) ATTR_FLAG_ARRAY_NEXT
;
5321 returned_attrs
= decl_attributes (&type
,
5322 chainon (returned_attrs
, attrs
),
5328 tree itype
= NULL_TREE
;
5329 tree size
= declarator
->u
.array
.dimen
;
5330 /* The index is a signed object `sizetype' bits wide. */
5331 tree index_type
= c_common_signed_type (sizetype
);
5333 array_ptr_quals
= declarator
->u
.array
.quals
;
5334 array_ptr_attrs
= declarator
->u
.array
.attrs
;
5335 array_parm_static
= declarator
->u
.array
.static_p
;
5336 array_parm_vla_unspec_p
= declarator
->u
.array
.vla_unspec_p
;
5338 declarator
= declarator
->declarator
;
5340 /* Check for some types that there cannot be arrays of. */
5342 if (VOID_TYPE_P (type
))
5345 error_at (loc
, "declaration of %qE as array of voids", name
);
5347 error_at (loc
, "declaration of type name as array of voids");
5348 type
= error_mark_node
;
5351 if (TREE_CODE (type
) == FUNCTION_TYPE
)
5354 error_at (loc
, "declaration of %qE as array of functions",
5357 error_at (loc
, "declaration of type name as array of "
5359 type
= error_mark_node
;
5362 if (pedantic
&& !in_system_header
&& flexible_array_type_p (type
))
5363 pedwarn (loc
, OPT_Wpedantic
,
5364 "invalid use of structure with flexible array member");
5366 if (size
== error_mark_node
)
5367 type
= error_mark_node
;
5369 if (type
== error_mark_node
)
5372 /* If size was specified, set ITYPE to a range-type for
5373 that size. Otherwise, ITYPE remains null. finish_decl
5374 may figure it out from an initial value. */
5378 bool size_maybe_const
= true;
5379 bool size_int_const
= (TREE_CODE (size
) == INTEGER_CST
5380 && !TREE_OVERFLOW (size
));
5381 bool this_size_varies
= false;
5383 /* Strip NON_LVALUE_EXPRs since we aren't using as an
5385 STRIP_TYPE_NOPS (size
);
5387 if (!INTEGRAL_TYPE_P (TREE_TYPE (size
)))
5390 error_at (loc
, "size of array %qE has non-integer type",
5394 "size of unnamed array has non-integer type");
5395 size
= integer_one_node
;
5398 size
= c_fully_fold (size
, false, &size_maybe_const
);
5400 if (pedantic
&& size_maybe_const
&& integer_zerop (size
))
5403 pedwarn (loc
, OPT_Wpedantic
,
5404 "ISO C forbids zero-size array %qE", name
);
5406 pedwarn (loc
, OPT_Wpedantic
,
5407 "ISO C forbids zero-size array");
5410 if (TREE_CODE (size
) == INTEGER_CST
&& size_maybe_const
)
5412 constant_expression_warning (size
);
5413 if (tree_int_cst_sgn (size
) < 0)
5416 error_at (loc
, "size of array %qE is negative", name
);
5418 error_at (loc
, "size of unnamed array is negative");
5419 size
= integer_one_node
;
5421 /* Handle a size folded to an integer constant but
5422 not an integer constant expression. */
5423 if (!size_int_const
)
5425 /* If this is a file scope declaration of an
5426 ordinary identifier, this is invalid code;
5427 diagnosing it here and not subsequently
5428 treating the type as variable-length avoids
5429 more confusing diagnostics later. */
5430 if ((decl_context
== NORMAL
|| decl_context
== FIELD
)
5431 && current_scope
== file_scope
)
5432 pedwarn (input_location
, 0,
5433 "variably modified %qE at file scope",
5436 this_size_varies
= size_varies
= true;
5437 warn_variable_length_array (name
, size
);
5440 else if (sharedp
&& count_upc_threads_refs (size
))
5442 /* We have a shared array with a non-constant
5443 dimension. If the expression is a factor of
5444 THREADS, then we'll need to set the flag
5445 in the result type. Otherwise, it is an error. */
5446 int n_thread_refs
= count_upc_threads_refs (size
);
5447 if (upc_threads_ref
|| n_thread_refs
> 1)
5449 error_at (loc
, "UPC shared array declaration references THREADS "
5450 "more than once; the size of %qE "
5451 "cannot be calculated", name
);
5452 size
= integer_one_node
;
5454 else if (!is_multiple_of_upc_threads (size
))
5456 error_at (loc
, "UPC shared array dimension is not a simple multiple "
5457 "of THREADS; the size of %qE "
5458 "cannot be calculated.", name
);
5459 size
= integer_one_node
;
5463 upc_threads_ref
= 1;
5464 set_upc_threads_refs_to_one (&size
);
5466 if (TREE_CODE (size
) != INTEGER_CST
)
5468 error_at (loc
, "UPC forbids variable-size shared array %qE",
5470 size
= integer_one_node
;
5474 else if ((decl_context
== NORMAL
|| decl_context
== FIELD
)
5475 && current_scope
== file_scope
)
5477 error_at (loc
, "variably modified %qE at file scope", name
);
5478 size
= integer_one_node
;
5482 /* Make sure the array size remains visibly
5483 nonconstant even if it is (eg) a const variable
5484 with known value. */
5485 this_size_varies
= size_varies
= true;
5486 warn_variable_length_array (name
, size
);
5489 if (integer_zerop (size
) && !this_size_varies
)
5491 /* A zero-length array cannot be represented with
5492 an unsigned index type, which is what we'll
5493 get with build_index_type. Create an
5494 open-ended range instead. */
5495 itype
= build_range_type (sizetype
, size
, NULL_TREE
);
5499 /* Arrange for the SAVE_EXPR on the inside of the
5500 MINUS_EXPR, which allows the -1 to get folded
5501 with the +1 that happens when building TYPE_SIZE. */
5503 size
= save_expr (size
);
5504 if (this_size_varies
&& TREE_CODE (size
) == INTEGER_CST
)
5505 size
= build2 (COMPOUND_EXPR
, TREE_TYPE (size
),
5506 integer_zero_node
, size
);
5508 /* Compute the maximum valid index, that is, size
5509 - 1. Do the calculation in index_type, so that
5510 if it is a variable the computations will be
5511 done in the proper mode. */
5512 itype
= fold_build2_loc (loc
, MINUS_EXPR
, index_type
,
5513 convert (index_type
, size
),
5514 convert (index_type
,
5517 /* The above overflows when size does not fit
5519 ??? While a size of INT_MAX+1 technically shouldn't
5520 cause an overflow (because we subtract 1), handling
5521 this case seems like an unnecessary complication. */
5522 if (TREE_CODE (size
) == INTEGER_CST
5523 && !int_fits_type_p (size
, index_type
))
5526 error_at (loc
, "size of array %qE is too large",
5529 error_at (loc
, "size of unnamed array is too large");
5530 type
= error_mark_node
;
5534 itype
= build_index_type (itype
);
5536 if (this_size_varies
)
5539 *expr
= build2 (COMPOUND_EXPR
, TREE_TYPE (size
),
5543 *expr_const_operands
&= size_maybe_const
;
5546 else if (decl_context
== FIELD
)
5548 bool flexible_array_member
= false;
5549 if (array_parm_vla_unspec_p
)
5550 /* Field names can in fact have function prototype
5551 scope so [*] is disallowed here through making
5552 the field variably modified, not through being
5553 something other than a declaration with function
5558 const struct c_declarator
*t
= declarator
;
5559 while (t
->kind
== cdk_attrs
)
5561 flexible_array_member
= (t
->kind
== cdk_id
);
5563 if (flexible_array_member
5564 && pedantic
&& !flag_isoc99
&& !in_system_header
)
5565 pedwarn (loc
, OPT_Wpedantic
,
5566 "ISO C90 does not support flexible array members");
5568 /* ISO C99 Flexible array members are effectively
5569 identical to GCC's zero-length array extension. */
5570 if (flexible_array_member
|| array_parm_vla_unspec_p
)
5571 itype
= build_range_type (sizetype
, size_zero_node
,
5574 else if (decl_context
== PARM
)
5576 if (array_parm_vla_unspec_p
)
5578 itype
= build_range_type (sizetype
, size_zero_node
, NULL_TREE
);
5582 else if (decl_context
== TYPENAME
)
5584 if (array_parm_vla_unspec_p
)
5587 warning (0, "%<[*]%> not in a declaration");
5588 /* We use this to avoid messing up with incomplete
5589 array types of the same type, that would
5590 otherwise be modified below. */
5591 itype
= build_range_type (sizetype
, size_zero_node
,
5597 /* Complain about arrays of incomplete types. */
5598 if (!COMPLETE_TYPE_P (type
))
5600 error_at (loc
, "array type has incomplete element type");
5601 type
= error_mark_node
;
5604 /* When itype is NULL, a shared incomplete array type is
5605 returned for all array of a given type. Elsewhere we
5606 make sure we don't complete that type before copying
5607 it, but here we want to make sure we don't ever
5608 modify the shared type, so we gcc_assert (itype)
5611 addr_space_t as
= DECODE_QUAL_ADDR_SPACE (type_quals
);
5612 if (!ADDR_SPACE_GENERIC_P (as
) && as
!= TYPE_ADDR_SPACE (type
))
5613 type
= build_qualified_type (type
,
5614 ENCODE_QUAL_ADDR_SPACE (as
));
5616 type
= build_array_type (type
, itype
);
5619 if (type
!= error_mark_node
)
5623 /* It is ok to modify type here even if itype is
5624 NULL: if size_varies, we're in a
5625 multi-dimensional array and the inner type has
5626 variable size, so the enclosing shared array type
5628 if (size
&& TREE_CODE (size
) == INTEGER_CST
)
5630 = build_distinct_type_copy (TYPE_MAIN_VARIANT (type
));
5631 C_TYPE_VARIABLE_SIZE (type
) = 1;
5634 if (upc_threads_ref
)
5636 /* We need a unique type copy here for UPC shared
5637 array types compiled in a dynamic threads enviroment
5638 that reference THREADS as a multiplier; to avoid
5639 setting the "has threads factor" bit in
5640 a re-used non- UPC shared array type node. */
5641 if (size
&& TREE_CODE (size
) == INTEGER_CST
)
5642 type
= build_distinct_type_copy (TYPE_MAIN_VARIANT (type
));
5643 TYPE_HAS_THREADS_FACTOR (type
) = 1;
5646 /* The GCC extension for zero-length arrays differs from
5647 ISO flexible array members in that sizeof yields
5649 if (size
&& integer_zerop (size
))
5652 type
= build_distinct_type_copy (TYPE_MAIN_VARIANT (type
));
5653 TYPE_SIZE (type
) = bitsize_zero_node
;
5654 TYPE_SIZE_UNIT (type
) = size_zero_node
;
5655 SET_TYPE_STRUCTURAL_EQUALITY (type
);
5657 if (array_parm_vla_unspec_p
)
5660 /* The type is complete. C99 6.7.5.2p4 */
5661 type
= build_distinct_type_copy (TYPE_MAIN_VARIANT (type
));
5662 TYPE_SIZE (type
) = bitsize_zero_node
;
5663 TYPE_SIZE_UNIT (type
) = size_zero_node
;
5664 SET_TYPE_STRUCTURAL_EQUALITY (type
);
5668 if (decl_context
!= PARM
5669 && (array_ptr_quals
!= TYPE_UNQUALIFIED
5670 || array_ptr_attrs
!= NULL_TREE
5671 || array_parm_static
))
5673 error_at (loc
, "static or type qualifiers in non-parameter array declarator");
5674 array_ptr_quals
= TYPE_UNQUALIFIED
;
5675 array_ptr_attrs
= NULL_TREE
;
5676 array_parm_static
= 0;
5682 /* Say it's a definition only for the declarator closest
5683 to the identifier, apart possibly from some
5685 bool really_funcdef
= false;
5689 const struct c_declarator
*t
= declarator
->declarator
;
5690 while (t
->kind
== cdk_attrs
)
5692 really_funcdef
= (t
->kind
== cdk_id
);
5695 /* Declaring a function type. Make sure we have a valid
5696 type for the function to return. */
5697 if (type
== error_mark_node
)
5700 size_varies
= false;
5701 upc_threads_ref
= 0;
5702 upc_layout_qualifier
= 0;
5704 /* Warn about some types functions can't return. */
5705 if (TREE_CODE (type
) == FUNCTION_TYPE
)
5708 error_at (loc
, "%qE declared as function returning a "
5711 error_at (loc
, "type name declared as function "
5712 "returning a function");
5713 type
= integer_type_node
;
5715 if (TREE_CODE (type
) == ARRAY_TYPE
)
5718 error_at (loc
, "%qE declared as function returning an array",
5721 error_at (loc
, "type name declared as function returning "
5723 type
= integer_type_node
;
5725 errmsg
= targetm
.invalid_return_type (type
);
5729 type
= integer_type_node
;
5732 /* Construct the function type and go to the next
5733 inner layer of declarator. */
5734 arg_info
= declarator
->u
.arg_info
;
5735 arg_types
= grokparms (arg_info
, really_funcdef
);
5737 /* Type qualifiers before the return type of the function
5738 qualify the return type, not the function type. */
5741 /* Type qualifiers on a function return type are
5742 normally permitted by the standard but have no
5743 effect, so give a warning at -Wreturn-type.
5744 Qualifiers on a void return type are banned on
5745 function definitions in ISO C; GCC used to used
5746 them for noreturn functions. */
5747 if (VOID_TYPE_P (type
) && really_funcdef
)
5749 "function definition has qualified void return type");
5750 else if (type_quals
& TYPE_QUAL_SHARED
)
5752 error_at (loc
, "function definition has UPC shared qualified return type");
5753 type_quals
&= ~(TYPE_QUAL_SHARED
| TYPE_QUAL_STRICT
5754 | TYPE_QUAL_RELAXED
);
5757 warning_at (loc
, OPT_Wignored_qualifiers
,
5758 "type qualifiers ignored on function return type");
5760 type
= c_build_qualified_type (type
, type_quals
);
5762 type_quals
= TYPE_UNQUALIFIED
;
5764 type
= build_function_type (type
, arg_types
);
5765 declarator
= declarator
->declarator
;
5767 /* Set the TYPE_CONTEXTs for each tagged type which is local to
5768 the formal parameter list of this FUNCTION_TYPE to point to
5769 the FUNCTION_TYPE node itself. */
5774 FOR_EACH_VEC_SAFE_ELT_REVERSE (arg_info
->tags
, ix
, tag
)
5775 TYPE_CONTEXT (tag
->type
) = type
;
5781 /* Merge any constancy or volatility into the target type
5784 if (pedantic
&& TREE_CODE (type
) == FUNCTION_TYPE
5786 pedwarn (loc
, OPT_Wpedantic
,
5787 "ISO C forbids qualified function types");
5789 if (upc_layout_qualifier
)
5790 upc_block_factor
= upc_grok_layout_qualifier (
5791 loc
, POINTER_TYPE
, type
,
5792 NULL_TREE
, upc_layout_qualifier
);
5795 type
= c_build_qualified_type_1 (type
, type_quals
,
5798 size_varies
= false;
5799 upc_threads_ref
= 0;
5800 upc_block_factor
= 0;
5802 /* When the pointed-to type involves components of variable size,
5803 care must be taken to ensure that the size evaluation code is
5804 emitted early enough to dominate all the possible later uses
5805 and late enough for the variables on which it depends to have
5808 This is expected to happen automatically when the pointed-to
5809 type has a name/declaration of it's own, but special attention
5810 is required if the type is anonymous.
5812 We handle the NORMAL and FIELD contexts here by attaching an
5813 artificial TYPE_DECL to such pointed-to type. This forces the
5814 sizes evaluation at a safe point and ensures it is not deferred
5815 until e.g. within a deeper conditional context.
5817 We expect nothing to be needed here for PARM or TYPENAME.
5818 Pushing a TYPE_DECL at this point for TYPENAME would actually
5819 be incorrect, as we might be in the middle of an expression
5820 with side effects on the pointed-to type size "arguments" prior
5821 to the pointer declaration point and the fake TYPE_DECL in the
5822 enclosing context would force the size evaluation prior to the
5825 if (!TYPE_NAME (type
)
5826 && (decl_context
== NORMAL
|| decl_context
== FIELD
)
5827 && variably_modified_type_p (type
, NULL_TREE
))
5829 tree decl
= build_decl (loc
, TYPE_DECL
, NULL_TREE
, type
);
5830 DECL_ARTIFICIAL (decl
) = 1;
5832 finish_decl (decl
, loc
, NULL_TREE
, NULL_TREE
, NULL_TREE
);
5833 TYPE_NAME (type
) = decl
;
5836 type
= c_build_pointer_type (type
);
5838 /* Process type qualifiers (such as const or volatile)
5839 that were given inside the `*'. */
5840 type_quals
= declarator
->u
.pointer
.quals
;
5841 upc_layout_qualifier
= declarator
->u
.pointer
.upc_layout_qual
;
5842 sharedp
= ((type_quals
& TYPE_QUAL_SHARED
) != 0);
5844 declarator
= declarator
->declarator
;
5851 *decl_attrs
= chainon (returned_attrs
, *decl_attrs
);
5853 /* Now TYPE has the actual type, apart from any qualifiers in
5856 /* Warn about address space used for things other than static memory or
5858 address_space
= DECODE_QUAL_ADDR_SPACE (type_quals
);
5859 if (!ADDR_SPACE_GENERIC_P (address_space
))
5861 if (decl_context
== NORMAL
)
5863 switch (storage_class
)
5866 error ("%qs combined with %<auto%> qualifier for %qE",
5867 c_addr_space_name (address_space
), name
);
5870 error ("%qs combined with %<register%> qualifier for %qE",
5871 c_addr_space_name (address_space
), name
);
5874 if (current_function_scope
)
5876 error ("%qs specified for auto variable %qE",
5877 c_addr_space_name (address_space
), name
);
5889 else if (decl_context
== PARM
&& TREE_CODE (type
) != ARRAY_TYPE
)
5892 error ("%qs specified for parameter %qE",
5893 c_addr_space_name (address_space
), name
);
5895 error ("%qs specified for unnamed parameter",
5896 c_addr_space_name (address_space
));
5898 else if (decl_context
== FIELD
)
5901 error ("%qs specified for structure field %qE",
5902 c_addr_space_name (address_space
), name
);
5904 error ("%qs specified for structure field",
5905 c_addr_space_name (address_space
));
5909 /* Check the type and width of a bit-field. */
5911 check_bitfield_type_and_width (&type
, width
, name
);
5913 /* Check for UPC's layout qualifier. */
5914 if (upc_layout_qualifier
|| upc_elem_block_factor
)
5916 upc_block_factor
= upc_grok_layout_qualifier (loc
, TREE_CODE (type
), type
,
5917 upc_elem_block_factor
, upc_layout_qualifier
);
5918 upc_layout_qualifier
= 0;
5921 /* Reject invalid uses of _Alignas. */
5922 if (declspecs
->alignas_p
)
5924 if (storage_class
== csc_typedef
)
5925 error_at (loc
, "alignment specified for typedef %qE", name
);
5926 else if (storage_class
== csc_register
)
5927 error_at (loc
, "alignment specified for %<register%> object %qE",
5929 else if (decl_context
== PARM
)
5932 error_at (loc
, "alignment specified for parameter %qE", name
);
5934 error_at (loc
, "alignment specified for unnamed parameter");
5939 error_at (loc
, "alignment specified for bit-field %qE", name
);
5941 error_at (loc
, "alignment specified for unnamed bit-field");
5943 else if (TREE_CODE (type
) == FUNCTION_TYPE
)
5944 error_at (loc
, "alignment specified for function %qE", name
);
5945 else if (declspecs
->align_log
!= -1)
5947 alignas_align
= 1U << declspecs
->align_log
;
5948 if (alignas_align
< TYPE_ALIGN_UNIT (type
))
5951 error_at (loc
, "%<_Alignas%> specifiers cannot reduce "
5952 "alignment of %qE", name
);
5954 error_at (loc
, "%<_Alignas%> specifiers cannot reduce "
5955 "alignment of unnamed field");
5961 /* Did array size calculations overflow or does the array cover more
5962 than half of the address-space? */
5963 if (TREE_CODE (type
) == ARRAY_TYPE
5964 && COMPLETE_TYPE_P (type
)
5965 && TREE_CODE (TYPE_SIZE_UNIT (type
)) == INTEGER_CST
5966 && ! valid_constant_size_p (TYPE_SIZE_UNIT (type
)))
5969 error_at (loc
, "size of array %qE is too large", name
);
5971 error_at (loc
, "size of unnamed array is too large");
5972 /* If we proceed with the array type as it is, we'll eventually
5973 crash in tree_low_cst(). */
5974 type
= error_mark_node
;
5977 /* If this is declaring a typedef name, return a TYPE_DECL. */
5979 if (storage_class
== csc_typedef
)
5982 if (pedantic
&& TREE_CODE (type
) == FUNCTION_TYPE
5984 pedwarn (loc
, OPT_Wpedantic
,
5985 "ISO C forbids qualified function types");
5987 type
= c_build_qualified_type_1 (type
, type_quals
, upc_block_factor
);
5989 decl
= build_decl (declarator
->id_loc
,
5990 TYPE_DECL
, declarator
->u
.id
, type
);
5991 if (declspecs
->explicit_signed_p
)
5992 C_TYPEDEF_EXPLICITLY_SIGNED (decl
) = 1;
5993 if (declspecs
->inline_p
)
5994 pedwarn (loc
, 0,"typedef %q+D declared %<inline%>", decl
);
5995 if (declspecs
->noreturn_p
)
5996 pedwarn (loc
, 0,"typedef %q+D declared %<_Noreturn%>", decl
);
5998 if (warn_cxx_compat
&& declarator
->u
.id
!= NULL_TREE
)
6000 struct c_binding
*b
= I_TAG_BINDING (declarator
->u
.id
);
6003 && b
->decl
!= NULL_TREE
6004 && (B_IN_CURRENT_SCOPE (b
)
6005 || (current_scope
== file_scope
&& B_IN_EXTERNAL_SCOPE (b
)))
6006 && TYPE_MAIN_VARIANT (b
->decl
) != TYPE_MAIN_VARIANT (type
))
6008 warning_at (declarator
->id_loc
, OPT_Wc___compat
,
6009 ("using %qD as both a typedef and a tag is "
6012 if (b
->locus
!= UNKNOWN_LOCATION
)
6013 inform (b
->locus
, "originally defined here");
6020 /* If this is a type name (such as, in a cast or sizeof),
6021 compute the type and return it now. */
6023 if (decl_context
== TYPENAME
)
6025 /* Note that the grammar rejects storage classes in typenames
6027 gcc_assert (storage_class
== csc_none
&& !threadp
6028 && !declspecs
->inline_p
&& !declspecs
->noreturn_p
);
6029 if (pedantic
&& TREE_CODE (type
) == FUNCTION_TYPE
6031 pedwarn (loc
, OPT_Wpedantic
,
6032 "ISO C forbids const or volatile function types");
6034 type
= c_build_qualified_type_1 (type
, type_quals
, upc_block_factor
);
6038 if (pedantic
&& decl_context
== FIELD
6039 && variably_modified_type_p (type
, NULL_TREE
))
6042 pedwarn (loc
, OPT_Wpedantic
, "a member of a structure or union cannot "
6043 "have a variably modified type");
6046 /* Aside from typedefs and type names (handle above),
6047 `void' at top level (not within pointer)
6048 is allowed only in public variables.
6049 We don't complain about parms either, but that is because
6050 a better error message can be made later. */
6052 if (VOID_TYPE_P (type
) && decl_context
!= PARM
6053 && !((decl_context
!= FIELD
&& TREE_CODE (type
) != FUNCTION_TYPE
)
6054 && (storage_class
== csc_extern
6055 || (current_scope
== file_scope
6056 && !(storage_class
== csc_static
6057 || storage_class
== csc_register
)))))
6059 error_at (loc
, "variable or field %qE declared void", name
);
6060 type
= integer_type_node
;
6063 /* Now create the decl, which may be a VAR_DECL, a PARM_DECL
6064 or a FUNCTION_DECL, depending on DECL_CONTEXT and TYPE. */
6069 if (decl_context
== PARM
)
6073 /* A parameter declared as an array of T is really a pointer to T.
6074 One declared as a function is really a pointer to a function. */
6076 if (TREE_CODE (type
) == ARRAY_TYPE
)
6078 /* Transfer const-ness of array into that of type pointed to. */
6079 type
= TREE_TYPE (type
);
6081 type
= c_build_qualified_type_1 (type
, type_quals
,
6083 type
= c_build_pointer_type (type
);
6084 type_quals
= array_ptr_quals
;
6086 type
= c_build_qualified_type (type
, type_quals
);
6088 /* We don't yet implement attributes in this context. */
6089 if (array_ptr_attrs
!= NULL_TREE
)
6090 warning_at (loc
, OPT_Wattributes
,
6091 "attributes in parameter array declarator ignored");
6093 size_varies
= false;
6094 upc_threads_ref
= 0;
6095 upc_block_factor
= 0;
6097 else if (TREE_CODE (type
) == FUNCTION_TYPE
)
6100 pedwarn (loc
, OPT_Wpedantic
,
6101 "ISO C forbids qualified function types");
6103 type
= c_build_qualified_type (type
, type_quals
);
6104 type
= c_build_pointer_type (type
);
6105 type_quals
= TYPE_UNQUALIFIED
;
6107 else if (type_quals
& TYPE_QUAL_SHARED
)
6109 error ("parameter declared with UPC shared qualifier");
6110 type_quals
&= ~(TYPE_QUAL_SHARED
| TYPE_QUAL_STRICT
6111 | TYPE_QUAL_RELAXED
);
6113 else if (type_quals
)
6114 type
= c_build_qualified_type (type
, type_quals
);
6116 decl
= build_decl (declarator
->id_loc
,
6117 PARM_DECL
, declarator
->u
.id
, type
);
6119 C_DECL_VARIABLE_SIZE (decl
) = 1;
6121 /* Compute the type actually passed in the parmlist,
6122 for the case where there is no prototype.
6123 (For example, shorts and chars are passed as ints.)
6124 When there is a prototype, this is overridden later. */
6126 if (type
== error_mark_node
)
6127 promoted_type
= type
;
6129 promoted_type
= c_type_promotes_to (type
);
6131 DECL_ARG_TYPE (decl
) = promoted_type
;
6132 if (declspecs
->inline_p
)
6133 pedwarn (loc
, 0, "parameter %q+D declared %<inline%>", decl
);
6134 if (declspecs
->noreturn_p
)
6135 pedwarn (loc
, 0, "parameter %q+D declared %<_Noreturn%>", decl
);
6137 else if (decl_context
== FIELD
)
6139 /* Note that the grammar rejects storage classes in typenames
6141 gcc_assert (storage_class
== csc_none
&& !threadp
6142 && !declspecs
->inline_p
&& !declspecs
->noreturn_p
);
6144 /* Structure field. It may not be a function. */
6146 if (TREE_CODE (type
) == FUNCTION_TYPE
)
6148 error_at (loc
, "field %qE declared as a function", name
);
6149 type
= build_pointer_type (type
);
6151 else if (TREE_CODE (type
) != ERROR_MARK
6152 && !COMPLETE_OR_UNBOUND_ARRAY_TYPE_P (type
))
6155 error_at (loc
, "field %qE has incomplete type", name
);
6157 error_at (loc
, "unnamed field has incomplete type");
6158 type
= error_mark_node
;
6160 else if (type_quals
& TYPE_QUAL_SHARED
)
6162 error_at (loc
, "field %qE declared with UPC shared qualifier",
6164 type_quals
&= ~(TYPE_QUAL_SHARED
| TYPE_QUAL_STRICT
6165 | TYPE_QUAL_RELAXED
);
6167 type
= c_build_qualified_type (type
, type_quals
);
6168 decl
= build_decl (declarator
->id_loc
,
6169 FIELD_DECL
, declarator
->u
.id
, type
);
6170 DECL_NONADDRESSABLE_P (decl
) = bitfield
;
6171 if (bitfield
&& !declarator
->u
.id
)
6172 TREE_NO_WARNING (decl
) = 1;
6175 C_DECL_VARIABLE_SIZE (decl
) = 1;
6177 else if (TREE_CODE (type
) == FUNCTION_TYPE
)
6179 if (storage_class
== csc_register
|| threadp
)
6181 error_at (loc
, "invalid storage class for function %qE", name
);
6183 else if (current_scope
!= file_scope
)
6185 /* Function declaration not at file scope. Storage
6186 classes other than `extern' are not allowed, C99
6187 6.7.1p5, and `extern' makes no difference. However,
6188 GCC allows 'auto', perhaps with 'inline', to support
6189 nested functions. */
6190 if (storage_class
== csc_auto
)
6191 pedwarn (loc
, OPT_Wpedantic
,
6192 "invalid storage class for function %qE", name
);
6193 else if (storage_class
== csc_static
)
6195 error_at (loc
, "invalid storage class for function %qE", name
);
6197 storage_class
= declspecs
->storage_class
= csc_none
;
6203 decl
= build_decl (declarator
->id_loc
,
6204 FUNCTION_DECL
, declarator
->u
.id
, type
);
6205 decl
= build_decl_attribute_variant (decl
, decl_attr
);
6207 if (pedantic
&& type_quals
&& !DECL_IN_SYSTEM_HEADER (decl
))
6208 pedwarn (loc
, OPT_Wpedantic
,
6209 "ISO C forbids qualified function types");
6211 /* Every function declaration is an external reference
6212 (DECL_EXTERNAL) except for those which are not at file
6213 scope and are explicitly declared "auto". This is
6214 forbidden by standard C (C99 6.7.1p5) and is interpreted by
6215 GCC to signify a forward declaration of a nested function. */
6216 if (storage_class
== csc_auto
&& current_scope
!= file_scope
)
6217 DECL_EXTERNAL (decl
) = 0;
6218 /* In C99, a function which is declared 'inline' with 'extern'
6219 is not an external reference (which is confusing). It
6220 means that the later definition of the function must be output
6221 in this file, C99 6.7.4p6. In GNU C89, a function declared
6222 'extern inline' is an external reference. */
6223 else if (declspecs
->inline_p
&& storage_class
!= csc_static
)
6224 DECL_EXTERNAL (decl
) = ((storage_class
== csc_extern
)
6225 == flag_gnu89_inline
);
6227 DECL_EXTERNAL (decl
) = !initialized
;
6229 /* Record absence of global scope for `static' or `auto'. */
6231 = !(storage_class
== csc_static
|| storage_class
== csc_auto
);
6233 /* For a function definition, record the argument information
6234 block where store_parm_decls will look for it. */
6236 current_function_arg_info
= arg_info
;
6238 if (declspecs
->default_int_p
)
6239 C_FUNCTION_IMPLICIT_INT (decl
) = 1;
6241 /* Record presence of `inline' and `_Noreturn', if it is
6243 if (flag_hosted
&& MAIN_NAME_P (declarator
->u
.id
))
6245 if (declspecs
->inline_p
)
6246 pedwarn (loc
, 0, "cannot inline function %<main%>");
6247 if (declspecs
->noreturn_p
)
6248 pedwarn (loc
, 0, "%<main%> declared %<_Noreturn%>");
6252 if (declspecs
->inline_p
)
6253 /* Record that the function is declared `inline'. */
6254 DECL_DECLARED_INLINE_P (decl
) = 1;
6255 if (declspecs
->noreturn_p
)
6260 pedwarn (loc
, OPT_Wpedantic
,
6261 "ISO C99 does not support %<_Noreturn%>");
6263 pedwarn (loc
, OPT_Wpedantic
,
6264 "ISO C90 does not support %<_Noreturn%>");
6266 TREE_THIS_VOLATILE (decl
) = 1;
6272 /* It's a variable. */
6273 /* An uninitialized decl with `extern' is a reference. */
6274 int extern_ref
= !initialized
&& storage_class
== csc_extern
;
6276 if ((type_quals
& TYPE_QUAL_SHARED
)
6278 && !((current_scope
== file_scope
)
6279 || (storage_class
== csc_static
)))
6281 error_at (loc
, "UPC does not support shared auto variables");
6282 type
= error_mark_node
;
6285 type
= c_build_qualified_type_1 (type
, type_quals
, upc_block_factor
);
6287 /* C99 6.2.2p7: It is invalid (compile-time undefined
6288 behavior) to create an 'extern' declaration for a
6289 variable if there is a global declaration that is
6290 'static' and the global declaration is not visible.
6291 (If the static declaration _is_ currently visible,
6292 the 'extern' declaration is taken to refer to that decl.) */
6293 if (extern_ref
&& current_scope
!= file_scope
)
6295 tree global_decl
= identifier_global_value (declarator
->u
.id
);
6296 tree visible_decl
= lookup_name (declarator
->u
.id
);
6299 && global_decl
!= visible_decl
6300 && TREE_CODE (global_decl
) == VAR_DECL
6301 && !TREE_PUBLIC (global_decl
))
6302 error_at (loc
, "variable previously declared %<static%> "
6303 "redeclared %<extern%>");
6306 decl
= build_decl (declarator
->id_loc
,
6307 VAR_DECL
, declarator
->u
.id
, type
);
6309 C_DECL_VARIABLE_SIZE (decl
) = 1;
6311 if (declspecs
->inline_p
)
6312 pedwarn (loc
, 0, "variable %q+D declared %<inline%>", decl
);
6313 if (declspecs
->noreturn_p
)
6314 pedwarn (loc
, 0, "variable %q+D declared %<_Noreturn%>", decl
);
6316 /* At file scope, an initialized extern declaration may follow
6317 a static declaration. In that case, DECL_EXTERNAL will be
6318 reset later in start_decl. */
6319 DECL_EXTERNAL (decl
) = (storage_class
== csc_extern
);
6321 /* At file scope, the presence of a `static' or `register' storage
6322 class specifier, or the absence of all storage class specifiers
6323 makes this declaration a definition (perhaps tentative). Also,
6324 the absence of `static' makes it public. */
6325 if (current_scope
== file_scope
)
6327 TREE_PUBLIC (decl
) = storage_class
!= csc_static
;
6328 TREE_STATIC (decl
) = !extern_ref
;
6330 /* Not at file scope, only `static' makes a static definition. */
6333 TREE_STATIC (decl
) = (storage_class
== csc_static
);
6334 /* UPC's 'shared' attribute implies that the storage
6335 is 'static' to the extent it is stored in
6337 if (type_quals
& TYPE_QUAL_SHARED
)
6338 TREE_STATIC (decl
) = 1;
6339 TREE_PUBLIC (decl
) = extern_ref
;
6343 DECL_TLS_MODEL (decl
) = decl_default_tls_model (decl
);
6346 if ((storage_class
== csc_extern
6347 || (storage_class
== csc_none
6348 && TREE_CODE (type
) == FUNCTION_TYPE
6350 && variably_modified_type_p (type
, NULL_TREE
))
6353 if (TREE_CODE (type
) == FUNCTION_TYPE
)
6354 error_at (loc
, "non-nested function with variably modified type");
6356 error_at (loc
, "object with variably modified type must have "
6360 /* Record `register' declaration for warnings on &
6361 and in case doing stupid register allocation. */
6363 if (storage_class
== csc_register
)
6365 C_DECL_REGISTER (decl
) = 1;
6366 DECL_REGISTER (decl
) = 1;
6369 /* Record constancy and volatility. */
6370 c_apply_type_quals_to_decl (type_quals
, decl
);
6372 /* Apply _Alignas specifiers. */
6375 DECL_ALIGN (decl
) = alignas_align
* BITS_PER_UNIT
;
6376 DECL_USER_ALIGN (decl
) = 1;
6379 /* If a type has volatile components, it should be stored in memory.
6380 Otherwise, the fact that those components are volatile
6381 will be ignored, and would even crash the compiler.
6382 Of course, this only makes sense on VAR,PARM, and RESULT decl's. */
6383 if (C_TYPE_FIELDS_VOLATILE (TREE_TYPE (decl
))
6384 && (TREE_CODE (decl
) == VAR_DECL
|| TREE_CODE (decl
) == PARM_DECL
6385 || TREE_CODE (decl
) == RESULT_DECL
))
6387 /* It is not an error for a structure with volatile fields to
6388 be declared register, but reset DECL_REGISTER since it
6389 cannot actually go in a register. */
6390 int was_reg
= C_DECL_REGISTER (decl
);
6391 C_DECL_REGISTER (decl
) = 0;
6392 DECL_REGISTER (decl
) = 0;
6393 c_mark_addressable (decl
);
6394 C_DECL_REGISTER (decl
) = was_reg
;
6397 /* This is the earliest point at which we might know the assembler
6398 name of a variable. Thus, if it's known before this, die horribly. */
6399 gcc_assert (!DECL_ASSEMBLER_NAME_SET_P (decl
));
6402 && TREE_CODE (decl
) == VAR_DECL
6403 && TREE_PUBLIC (decl
)
6404 && TREE_STATIC (decl
)
6405 && (TREE_CODE (TREE_TYPE (decl
)) == RECORD_TYPE
6406 || TREE_CODE (TREE_TYPE (decl
)) == UNION_TYPE
6407 || TREE_CODE (TREE_TYPE (decl
)) == ENUMERAL_TYPE
)
6408 && TYPE_NAME (TREE_TYPE (decl
)) == NULL_TREE
)
6409 warning_at (DECL_SOURCE_LOCATION (decl
), OPT_Wc___compat
,
6410 ("non-local variable %qD with anonymous type is "
6411 "questionable in C++"),
6414 /* Shared variables are given their own link section on
6415 most target platforms, and if compiling in pthreads mode
6416 regular local file scope variables are made thread local. */
6417 if ((TREE_CODE(decl
) == VAR_DECL
)
6418 && !threadp
&& (TREE_SHARED (decl
) || flag_upc_pthreads
))
6419 upc_set_decl_section (decl
);
6425 /* Decode the parameter-list info for a function type or function definition.
6426 The argument is the value returned by `get_parm_info' (or made in c-parse.c
6427 if there is an identifier list instead of a parameter decl list).
6428 These two functions are separate because when a function returns
6429 or receives functions then each is called multiple times but the order
6430 of calls is different. The last call to `grokparms' is always the one
6431 that contains the formal parameter names of a function definition.
6433 Return a list of arg types to use in the FUNCTION_TYPE for this function.
6435 FUNCDEF_FLAG is true for a function definition, false for
6436 a mere declaration. A nonempty identifier-list gets an error message
6437 when FUNCDEF_FLAG is false. */
6440 grokparms (struct c_arg_info
*arg_info
, bool funcdef_flag
)
6442 tree arg_types
= arg_info
->types
;
6444 if (funcdef_flag
&& arg_info
->had_vla_unspec
)
6446 /* A function definition isn't function prototype scope C99 6.2.1p4. */
6448 error ("%<[*]%> not allowed in other than function prototype scope");
6451 if (arg_types
== 0 && !funcdef_flag
&& !in_system_header
)
6452 warning (OPT_Wstrict_prototypes
,
6453 "function declaration isn%'t a prototype");
6455 if (arg_types
== error_mark_node
)
6456 return 0; /* don't set TYPE_ARG_TYPES in this case */
6458 else if (arg_types
&& TREE_CODE (TREE_VALUE (arg_types
)) == IDENTIFIER_NODE
)
6462 pedwarn (input_location
, 0, "parameter names (without types) in function declaration");
6463 arg_info
->parms
= NULL_TREE
;
6466 arg_info
->parms
= arg_info
->types
;
6468 arg_info
->types
= 0;
6473 tree parm
, type
, typelt
;
6474 unsigned int parmno
;
6477 /* If there is a parameter of incomplete type in a definition,
6478 this is an error. In a declaration this is valid, and a
6479 struct or union type may be completed later, before any calls
6480 or definition of the function. In the case where the tag was
6481 first declared within the parameter list, a warning has
6482 already been given. If a parameter has void type, then
6483 however the function cannot be defined or called, so
6486 for (parm
= arg_info
->parms
, typelt
= arg_types
, parmno
= 1;
6488 parm
= DECL_CHAIN (parm
), typelt
= TREE_CHAIN (typelt
), parmno
++)
6490 type
= TREE_VALUE (typelt
);
6491 if (type
== error_mark_node
)
6494 if (!COMPLETE_TYPE_P (type
))
6498 if (DECL_NAME (parm
))
6499 error_at (input_location
,
6500 "parameter %u (%q+D) has incomplete type",
6503 error_at (DECL_SOURCE_LOCATION (parm
),
6504 "parameter %u has incomplete type",
6507 TREE_VALUE (typelt
) = error_mark_node
;
6508 TREE_TYPE (parm
) = error_mark_node
;
6509 arg_types
= NULL_TREE
;
6511 else if (VOID_TYPE_P (type
))
6513 if (DECL_NAME (parm
))
6514 warning_at (input_location
, 0,
6515 "parameter %u (%q+D) has void type",
6518 warning_at (DECL_SOURCE_LOCATION (parm
), 0,
6519 "parameter %u has void type",
6524 errmsg
= targetm
.invalid_parameter_type (type
);
6528 TREE_VALUE (typelt
) = error_mark_node
;
6529 TREE_TYPE (parm
) = error_mark_node
;
6530 arg_types
= NULL_TREE
;
6533 if (DECL_NAME (parm
) && TREE_USED (parm
))
6534 warn_if_shadowing (parm
);
6540 /* Allocate and initialize a c_arg_info structure from the parser's
6544 build_arg_info (void)
6546 struct c_arg_info
*ret
= XOBNEW (&parser_obstack
, struct c_arg_info
);
6547 ret
->parms
= NULL_TREE
;
6549 ret
->types
= NULL_TREE
;
6550 ret
->others
= NULL_TREE
;
6551 ret
->pending_sizes
= NULL
;
6552 ret
->had_vla_unspec
= 0;
6556 /* Take apart the current scope and return a c_arg_info structure with
6557 info on a parameter list just parsed.
6559 This structure is later fed to 'grokparms' and 'store_parm_decls'.
6561 ELLIPSIS being true means the argument list ended in '...' so don't
6562 append a sentinel (void_list_node) to the end of the type-list.
6564 EXPR is NULL or an expression that needs to be evaluated for the
6565 side effects of array size expressions in the parameters. */
6568 get_parm_info (bool ellipsis
, tree expr
)
6570 struct c_binding
*b
= current_scope
->bindings
;
6571 struct c_arg_info
*arg_info
= build_arg_info ();
6574 vec
<c_arg_tag
, va_gc
> *tags
= NULL
;
6578 static bool explained_incomplete_types
= false;
6579 bool gave_void_only_once_err
= false;
6581 arg_info
->had_vla_unspec
= current_scope
->had_vla_unspec
;
6583 /* The bindings in this scope must not get put into a block.
6584 We will take care of deleting the binding nodes. */
6585 current_scope
->bindings
= 0;
6587 /* This function is only called if there was *something* on the
6591 /* A parameter list consisting solely of 'void' indicates that the
6592 function takes no arguments. But if the 'void' is qualified
6593 (by 'const' or 'volatile'), or has a storage class specifier
6594 ('register'), then the behavior is undefined; issue an error.
6595 Typedefs for 'void' are OK (see DR#157). */
6596 if (b
->prev
== 0 /* one binding */
6597 && TREE_CODE (b
->decl
) == PARM_DECL
/* which is a parameter */
6598 && !DECL_NAME (b
->decl
) /* anonymous */
6599 && VOID_TYPE_P (TREE_TYPE (b
->decl
))) /* of void type */
6601 if (TREE_THIS_VOLATILE (b
->decl
)
6602 || TREE_READONLY (b
->decl
)
6603 || C_DECL_REGISTER (b
->decl
))
6604 error ("%<void%> as only parameter may not be qualified");
6606 /* There cannot be an ellipsis. */
6608 error ("%<void%> must be the only parameter");
6610 arg_info
->types
= void_list_node
;
6615 types
= void_list_node
;
6617 /* Break up the bindings list into parms, tags, types, and others;
6618 apply sanity checks; purge the name-to-decl bindings. */
6621 tree decl
= b
->decl
;
6622 tree type
= TREE_TYPE (decl
);
6624 const char *keyword
;
6626 switch (TREE_CODE (decl
))
6631 gcc_assert (I_SYMBOL_BINDING (b
->id
) == b
);
6632 I_SYMBOL_BINDING (b
->id
) = b
->shadowed
;
6635 /* Check for forward decls that never got their actual decl. */
6636 if (TREE_ASM_WRITTEN (decl
))
6637 error ("parameter %q+D has just a forward declaration", decl
);
6638 /* Check for (..., void, ...) and issue an error. */
6639 else if (VOID_TYPE_P (type
) && !DECL_NAME (decl
))
6641 if (!gave_void_only_once_err
)
6643 error ("%<void%> must be the only parameter");
6644 gave_void_only_once_err
= true;
6649 /* Valid parameter, add it to the list. */
6650 DECL_CHAIN (decl
) = parms
;
6653 /* Since there is a prototype, args are passed in their
6654 declared types. The back end may override this later. */
6655 DECL_ARG_TYPE (decl
) = type
;
6656 types
= tree_cons (0, type
, types
);
6660 case ENUMERAL_TYPE
: keyword
= "enum"; goto tag
;
6661 case UNION_TYPE
: keyword
= "union"; goto tag
;
6662 case RECORD_TYPE
: keyword
= "struct"; goto tag
;
6664 /* Types may not have tag-names, in which case the type
6665 appears in the bindings list with b->id NULL. */
6668 gcc_assert (I_TAG_BINDING (b
->id
) == b
);
6669 I_TAG_BINDING (b
->id
) = b
->shadowed
;
6672 /* Warn about any struct, union or enum tags defined in a
6673 parameter list. The scope of such types is limited to
6674 the parameter list, which is rarely if ever desirable
6675 (it's impossible to call such a function with type-
6676 correct arguments). An anonymous union parm type is
6677 meaningful as a GNU extension, so don't warn for that. */
6678 if (TREE_CODE (decl
) != UNION_TYPE
|| b
->id
!= 0)
6681 /* The %s will be one of 'struct', 'union', or 'enum'. */
6682 warning (0, "%<%s %E%> declared inside parameter list",
6685 /* The %s will be one of 'struct', 'union', or 'enum'. */
6686 warning (0, "anonymous %s declared inside parameter list",
6689 if (!explained_incomplete_types
)
6691 warning (0, "its scope is only this definition or declaration,"
6692 " which is probably not what you want");
6693 explained_incomplete_types
= true;
6699 vec_safe_push (tags
, tag
);
6705 /* CONST_DECLs appear here when we have an embedded enum,
6706 and TYPE_DECLs appear here when we have an embedded struct
6707 or union. No warnings for this - we already warned about the
6708 type itself. FUNCTION_DECLs appear when there is an implicit
6709 function declaration in the parameter list. */
6711 /* When we reinsert this decl in the function body, we need
6712 to reconstruct whether it was marked as nested. */
6713 gcc_assert (TREE_CODE (decl
) == FUNCTION_DECL
6716 DECL_CHAIN (decl
) = others
;
6721 /* error_mark_node appears here when we have an undeclared
6722 variable. Just throw it away. */
6725 gcc_assert (I_SYMBOL_BINDING (b
->id
) == b
);
6726 I_SYMBOL_BINDING (b
->id
) = b
->shadowed
;
6730 /* Other things that might be encountered. */
6737 b
= free_binding_and_advance (b
);
6740 arg_info
->parms
= parms
;
6741 arg_info
->tags
= tags
;
6742 arg_info
->types
= types
;
6743 arg_info
->others
= others
;
6744 arg_info
->pending_sizes
= expr
;
6748 /* Get the struct, enum or union (CODE says which) with tag NAME.
6749 Define the tag as a forward-reference with location LOC if it is
6750 not defined. Return a c_typespec structure for the type
6754 parser_xref_tag (location_t loc
, enum tree_code code
, tree name
)
6756 struct c_typespec ret
;
6760 ret
.expr
= NULL_TREE
;
6761 ret
.expr_const_operands
= true;
6763 /* If a cross reference is requested, look up the type
6764 already defined for this tag and return it. */
6766 ref
= lookup_tag (code
, name
, 0, &refloc
);
6767 /* If this is the right type of tag, return what we found.
6768 (This reference will be shadowed by shadow_tag later if appropriate.)
6769 If this is the wrong type of tag, do not return it. If it was the
6770 wrong type in the same scope, we will have had an error
6771 message already; if in a different scope and declaring
6772 a name, pending_xref_error will give an error message; but if in a
6773 different scope and not declaring a name, this tag should
6774 shadow the previous declaration of a different type of tag, and
6775 this would not work properly if we return the reference found.
6776 (For example, with "struct foo" in an outer scope, "union foo;"
6777 must shadow that tag with a new one of union type.) */
6778 ret
.kind
= (ref
? ctsk_tagref
: ctsk_tagfirstref
);
6779 if (ref
&& TREE_CODE (ref
) == code
)
6781 if (C_TYPE_DEFINED_IN_STRUCT (ref
)
6782 && loc
!= UNKNOWN_LOCATION
6788 warning_at (loc
, OPT_Wc___compat
,
6789 ("enum type defined in struct or union "
6790 "is not visible in C++"));
6791 inform (refloc
, "enum type defined here");
6794 warning_at (loc
, OPT_Wc___compat
,
6795 ("struct defined in struct or union "
6796 "is not visible in C++"));
6797 inform (refloc
, "struct defined here");
6800 warning_at (loc
, OPT_Wc___compat
,
6801 ("union defined in struct or union "
6802 "is not visible in C++"));
6803 inform (refloc
, "union defined here");
6814 /* If no such tag is yet defined, create a forward-reference node
6815 and record it as the "definition".
6816 When a real declaration of this type is found,
6817 the forward-reference will be altered into a real type. */
6819 ref
= make_node (code
);
6820 if (code
== ENUMERAL_TYPE
)
6822 /* Give the type a default layout like unsigned int
6823 to avoid crashing if it does not get defined. */
6824 SET_TYPE_MODE (ref
, TYPE_MODE (unsigned_type_node
));
6825 TYPE_ALIGN (ref
) = TYPE_ALIGN (unsigned_type_node
);
6826 TYPE_USER_ALIGN (ref
) = 0;
6827 TYPE_UNSIGNED (ref
) = 1;
6828 TYPE_PRECISION (ref
) = TYPE_PRECISION (unsigned_type_node
);
6829 TYPE_MIN_VALUE (ref
) = TYPE_MIN_VALUE (unsigned_type_node
);
6830 TYPE_MAX_VALUE (ref
) = TYPE_MAX_VALUE (unsigned_type_node
);
6833 pushtag (loc
, name
, ref
);
6839 /* Get the struct, enum or union (CODE says which) with tag NAME.
6840 Define the tag as a forward-reference if it is not defined.
6841 Return a tree for the type. */
6844 xref_tag (enum tree_code code
, tree name
)
6846 return parser_xref_tag (input_location
, code
, name
).spec
;
6849 /* Make sure that the tag NAME is defined *in the current scope*
6850 at least as a forward reference.
6851 LOC is the location of the struct's definition.
6852 CODE says which kind of tag NAME ought to be.
6854 This stores the current value of the file static STRUCT_PARSE_INFO
6855 in *ENCLOSING_STRUCT_PARSE_INFO, and points STRUCT_PARSE_INFO at a
6856 new c_struct_parse_info structure. The old value of
6857 STRUCT_PARSE_INFO is restored in finish_struct. */
6860 start_struct (location_t loc
, enum tree_code code
, tree name
,
6861 struct c_struct_parse_info
**enclosing_struct_parse_info
)
6863 /* If there is already a tag defined at this scope
6864 (as a forward reference), just return it. */
6866 tree ref
= NULL_TREE
;
6867 location_t refloc
= UNKNOWN_LOCATION
;
6869 if (name
!= NULL_TREE
)
6870 ref
= lookup_tag (code
, name
, 1, &refloc
);
6871 if (ref
&& TREE_CODE (ref
) == code
)
6873 if (TYPE_SIZE (ref
))
6875 if (code
== UNION_TYPE
)
6876 error_at (loc
, "redefinition of %<union %E%>", name
);
6878 error_at (loc
, "redefinition of %<struct %E%>", name
);
6879 if (refloc
!= UNKNOWN_LOCATION
)
6880 inform (refloc
, "originally defined here");
6881 /* Don't create structures using a name already in use. */
6884 else if (C_TYPE_BEING_DEFINED (ref
))
6886 if (code
== UNION_TYPE
)
6887 error_at (loc
, "nested redefinition of %<union %E%>", name
);
6889 error_at (loc
, "nested redefinition of %<struct %E%>", name
);
6890 /* Don't bother to report "originally defined here" for a
6891 nested redefinition; the original definition should be
6893 /* Don't create structures that contain themselves. */
6898 /* Otherwise create a forward-reference just so the tag is in scope. */
6900 if (ref
== NULL_TREE
|| TREE_CODE (ref
) != code
)
6902 ref
= make_node (code
);
6903 pushtag (loc
, name
, ref
);
6906 C_TYPE_BEING_DEFINED (ref
) = 1;
6907 TYPE_PACKED (ref
) = flag_pack_struct
;
6909 *enclosing_struct_parse_info
= struct_parse_info
;
6910 struct_parse_info
= XNEW (struct c_struct_parse_info
);
6911 struct_parse_info
->struct_types
.create (0);
6912 struct_parse_info
->fields
.create (0);
6913 struct_parse_info
->typedefs_seen
.create (0);
6915 /* FIXME: This will issue a warning for a use of a type defined
6916 within a statement expr used within sizeof, et. al. This is not
6917 terribly serious as C++ doesn't permit statement exprs within
6919 if (warn_cxx_compat
&& (in_sizeof
|| in_typeof
|| in_alignof
))
6920 warning_at (loc
, OPT_Wc___compat
,
6921 "defining type in %qs expression is invalid in C++",
6924 : (in_typeof
? "typeof" : "alignof")));
6929 /* Process the specs, declarator and width (NULL if omitted)
6930 of a structure component, returning a FIELD_DECL node.
6931 WIDTH is non-NULL for bit-fields only, and is an INTEGER_CST node.
6932 DECL_ATTRS is as for grokdeclarator.
6934 LOC is the location of the structure component.
6936 This is done during the parsing of the struct declaration.
6937 The FIELD_DECL nodes are chained together and the lot of them
6938 are ultimately passed to `build_struct' to make the RECORD_TYPE node. */
6941 grokfield (location_t loc
,
6942 struct c_declarator
*declarator
, struct c_declspecs
*declspecs
,
6943 tree width
, tree
*decl_attrs
)
6947 if (declarator
->kind
== cdk_id
&& declarator
->u
.id
== NULL_TREE
6948 && width
== NULL_TREE
)
6950 /* This is an unnamed decl.
6952 If we have something of the form "union { list } ;" then this
6953 is the anonymous union extension. Similarly for struct.
6955 If this is something of the form "struct foo;", then
6956 If MS or Plan 9 extensions are enabled, this is handled as
6957 an anonymous struct.
6958 Otherwise this is a forward declaration of a structure tag.
6960 If this is something of the form "foo;" and foo is a TYPE_DECL, then
6961 If foo names a structure or union without a tag, then this
6962 is an anonymous struct (this is permitted by C11).
6963 If MS or Plan 9 extensions are enabled and foo names a
6964 structure, then again this is an anonymous struct.
6965 Otherwise this is an error.
6967 Oh what a horrid tangled web we weave. I wonder if MS consciously
6968 took this from Plan 9 or if it was an accident of implementation
6969 that took root before someone noticed the bug... */
6971 tree type
= declspecs
->type
;
6972 bool type_ok
= (TREE_CODE (type
) == RECORD_TYPE
6973 || TREE_CODE (type
) == UNION_TYPE
);
6977 && (flag_ms_extensions
6978 || flag_plan9_extensions
6979 || !declspecs
->typedef_p
))
6981 if (flag_ms_extensions
|| flag_plan9_extensions
)
6983 else if (TYPE_NAME (type
) == NULL
)
6990 pedwarn (loc
, 0, "declaration does not declare anything");
6996 pedwarn (loc
, OPT_Wpedantic
,
6997 "ISO C99 doesn%'t support unnamed structs/unions");
6999 pedwarn (loc
, OPT_Wpedantic
,
7000 "ISO C90 doesn%'t support unnamed structs/unions");
7004 value
= grokdeclarator (declarator
, declspecs
, FIELD
, false,
7005 width
? &width
: NULL
, decl_attrs
, NULL
, NULL
,
7008 finish_decl (value
, loc
, NULL_TREE
, NULL_TREE
, NULL_TREE
);
7009 DECL_INITIAL (value
) = width
;
7011 if (warn_cxx_compat
&& DECL_NAME (value
) != NULL_TREE
)
7013 /* If we currently have a binding for this field, set the
7014 in_struct field in the binding, so that we warn about lookups
7016 struct c_binding
*b
= I_SYMBOL_BINDING (DECL_NAME (value
));
7019 /* If the in_struct field is not yet set, push it on a list
7020 to be cleared when this struct is finished. */
7023 struct_parse_info
->fields
.safe_push (b
);
7032 /* Subroutine of detect_field_duplicates: return whether X and Y,
7033 which are both fields in the same struct, have duplicate field
7037 is_duplicate_field (tree x
, tree y
)
7039 if (DECL_NAME (x
) != NULL_TREE
&& DECL_NAME (x
) == DECL_NAME (y
))
7042 /* When using -fplan9-extensions, an anonymous field whose name is a
7043 typedef can duplicate a field name. */
7044 if (flag_plan9_extensions
7045 && (DECL_NAME (x
) == NULL_TREE
|| DECL_NAME (y
) == NULL_TREE
))
7047 tree xt
, xn
, yt
, yn
;
7050 if (DECL_NAME (x
) != NULL_TREE
)
7052 else if ((TREE_CODE (xt
) == RECORD_TYPE
|| TREE_CODE (xt
) == UNION_TYPE
)
7053 && TYPE_NAME (xt
) != NULL_TREE
7054 && TREE_CODE (TYPE_NAME (xt
)) == TYPE_DECL
)
7055 xn
= DECL_NAME (TYPE_NAME (xt
));
7060 if (DECL_NAME (y
) != NULL_TREE
)
7062 else if ((TREE_CODE (yt
) == RECORD_TYPE
|| TREE_CODE (yt
) == UNION_TYPE
)
7063 && TYPE_NAME (yt
) != NULL_TREE
7064 && TREE_CODE (TYPE_NAME (yt
)) == TYPE_DECL
)
7065 yn
= DECL_NAME (TYPE_NAME (yt
));
7069 if (xn
!= NULL_TREE
&& xn
== yn
)
7076 /* Subroutine of detect_field_duplicates: add the fields of FIELDLIST
7077 to HTAB, giving errors for any duplicates. */
7080 detect_field_duplicates_hash (tree fieldlist
,
7081 hash_table
<pointer_hash
<tree_node
> > htab
)
7086 for (x
= fieldlist
; x
; x
= DECL_CHAIN (x
))
7087 if ((y
= DECL_NAME (x
)) != 0)
7089 slot
= htab
.find_slot (y
, INSERT
);
7092 error ("duplicate member %q+D", x
);
7093 DECL_NAME (x
) = NULL_TREE
;
7097 else if (TREE_CODE (TREE_TYPE (x
)) == RECORD_TYPE
7098 || TREE_CODE (TREE_TYPE (x
)) == UNION_TYPE
)
7100 detect_field_duplicates_hash (TYPE_FIELDS (TREE_TYPE (x
)), htab
);
7102 /* When using -fplan9-extensions, an anonymous field whose
7103 name is a typedef can duplicate a field name. */
7104 if (flag_plan9_extensions
7105 && TYPE_NAME (TREE_TYPE (x
)) != NULL_TREE
7106 && TREE_CODE (TYPE_NAME (TREE_TYPE (x
))) == TYPE_DECL
)
7108 tree xn
= DECL_NAME (TYPE_NAME (TREE_TYPE (x
)));
7109 slot
= htab
.find_slot (xn
, INSERT
);
7111 error ("duplicate member %q+D", TYPE_NAME (TREE_TYPE (x
)));
7117 /* Generate an error for any duplicate field names in FIELDLIST. Munge
7118 the list such that this does not present a problem later. */
7121 detect_field_duplicates (tree fieldlist
)
7126 /* If the struct is the list of instance variables of an Objective-C
7127 class, then we need to check all the instance variables of
7128 superclasses when checking for duplicates (since you can't have
7129 an instance variable in a subclass with the same name as an
7130 instance variable in a superclass). We pass on this job to the
7131 Objective-C compiler. objc_detect_field_duplicates() will return
7132 false if we are not checking the list of instance variables and
7133 the C frontend should proceed with the standard field duplicate
7134 checks. If we are checking the list of instance variables, the
7135 ObjC frontend will do the check, emit the errors if needed, and
7136 then return true. */
7137 if (c_dialect_objc ())
7138 if (objc_detect_field_duplicates (false))
7141 /* First, see if there are more than "a few" fields.
7142 This is trivially true if there are zero or one fields. */
7143 if (!fieldlist
|| !DECL_CHAIN (fieldlist
))
7148 if (DECL_NAME (x
) == NULL_TREE
7149 && (TREE_CODE (TREE_TYPE (x
)) == RECORD_TYPE
7150 || TREE_CODE (TREE_TYPE (x
)) == UNION_TYPE
))
7153 } while (timeout
> 0 && x
);
7155 /* If there were "few" fields and no anonymous structures or unions,
7156 avoid the overhead of allocating a hash table. Instead just do
7157 the nested traversal thing. */
7160 for (x
= DECL_CHAIN (fieldlist
); x
; x
= DECL_CHAIN (x
))
7161 /* When using -fplan9-extensions, we can have duplicates
7162 between typedef names and fields. */
7164 || (flag_plan9_extensions
7165 && DECL_NAME (x
) == NULL_TREE
7166 && (TREE_CODE (TREE_TYPE (x
)) == RECORD_TYPE
7167 || TREE_CODE (TREE_TYPE (x
)) == UNION_TYPE
)
7168 && TYPE_NAME (TREE_TYPE (x
)) != NULL_TREE
7169 && TREE_CODE (TYPE_NAME (TREE_TYPE (x
))) == TYPE_DECL
))
7171 for (y
= fieldlist
; y
!= x
; y
= TREE_CHAIN (y
))
7172 if (is_duplicate_field (y
, x
))
7174 error ("duplicate member %q+D", x
);
7175 DECL_NAME (x
) = NULL_TREE
;
7181 hash_table
<pointer_hash
<tree_node
> > htab
;
7184 detect_field_duplicates_hash (fieldlist
, htab
);
7189 /* Finish up struct info used by -Wc++-compat. */
7192 warn_cxx_compat_finish_struct (tree fieldlist
)
7196 struct c_binding
*b
;
7198 /* Set the C_TYPE_DEFINED_IN_STRUCT flag for each type defined in
7199 the current struct. We do this now at the end of the struct
7200 because the flag is used to issue visibility warnings, and we
7201 only want to issue those warnings if the type is referenced
7202 outside of the struct declaration. */
7203 FOR_EACH_VEC_ELT (struct_parse_info
->struct_types
, ix
, x
)
7204 C_TYPE_DEFINED_IN_STRUCT (x
) = 1;
7206 /* The TYPEDEFS_SEEN field of STRUCT_PARSE_INFO is a list of
7207 typedefs used when declaring fields in this struct. If the name
7208 of any of the fields is also a typedef name then the struct would
7209 not parse in C++, because the C++ lookup rules say that the
7210 typedef name would be looked up in the context of the struct, and
7211 would thus be the field rather than the typedef. */
7212 if (!struct_parse_info
->typedefs_seen
.is_empty ()
7213 && fieldlist
!= NULL_TREE
)
7215 /* Use a pointer_set using the name of the typedef. We can use
7216 a pointer_set because identifiers are interned. */
7217 struct pointer_set_t
*tset
= pointer_set_create ();
7219 FOR_EACH_VEC_ELT (struct_parse_info
->typedefs_seen
, ix
, x
)
7220 pointer_set_insert (tset
, DECL_NAME (x
));
7222 for (x
= fieldlist
; x
!= NULL_TREE
; x
= DECL_CHAIN (x
))
7224 if (DECL_NAME (x
) != NULL_TREE
7225 && pointer_set_contains (tset
, DECL_NAME (x
)))
7227 warning_at (DECL_SOURCE_LOCATION (x
), OPT_Wc___compat
,
7228 ("using %qD as both field and typedef name is "
7231 /* FIXME: It would be nice to report the location where
7232 the typedef name is used. */
7236 pointer_set_destroy (tset
);
7239 /* For each field which has a binding and which was not defined in
7240 an enclosing struct, clear the in_struct field. */
7241 FOR_EACH_VEC_ELT (struct_parse_info
->fields
, ix
, b
)
7245 /* Fill in the fields of a RECORD_TYPE or UNION_TYPE node, T.
7246 LOC is the location of the RECORD_TYPE or UNION_TYPE's definition.
7247 FIELDLIST is a chain of FIELD_DECL nodes for the fields.
7248 ATTRIBUTES are attributes to be applied to the structure.
7250 ENCLOSING_STRUCT_PARSE_INFO is the value of STRUCT_PARSE_INFO when
7251 the struct was started. */
7254 finish_struct (location_t loc
, tree t
, tree fieldlist
, tree attributes
,
7255 struct c_struct_parse_info
*enclosing_struct_parse_info
)
7258 bool toplevel
= file_scope
== current_scope
;
7259 int saw_named_field
;
7261 /* If this type was previously laid out as a forward reference,
7262 make sure we lay it out again. */
7266 decl_attributes (&t
, attributes
, (int) ATTR_FLAG_TYPE_IN_PLACE
);
7270 for (x
= fieldlist
; x
; x
= DECL_CHAIN (x
))
7272 if (DECL_NAME (x
) != 0)
7275 && (TREE_CODE (TREE_TYPE (x
)) == RECORD_TYPE
7276 || TREE_CODE (TREE_TYPE (x
)) == UNION_TYPE
))
7282 if (TREE_CODE (t
) == UNION_TYPE
)
7285 pedwarn (loc
, OPT_Wpedantic
, "union has no named members");
7287 pedwarn (loc
, OPT_Wpedantic
, "union has no members");
7292 pedwarn (loc
, OPT_Wpedantic
, "struct has no named members");
7294 pedwarn (loc
, OPT_Wpedantic
, "struct has no members");
7299 /* Install struct as DECL_CONTEXT of each field decl.
7300 Also process specified field sizes, found in the DECL_INITIAL,
7301 storing 0 there after the type has been changed to precision equal
7302 to its width, rather than the precision of the specified standard
7303 type. (Correct layout requires the original type to have been preserved
7306 saw_named_field
= 0;
7307 for (x
= fieldlist
; x
; x
= DECL_CHAIN (x
))
7309 if (TREE_TYPE (x
) == error_mark_node
)
7312 DECL_CONTEXT (x
) = t
;
7314 /* If any field is const, the structure type is pseudo-const. */
7315 if (TREE_READONLY (x
))
7316 C_TYPE_FIELDS_READONLY (t
) = 1;
7319 /* A field that is pseudo-const makes the structure likewise. */
7320 tree t1
= strip_array_types (TREE_TYPE (x
));
7321 if ((TREE_CODE (t1
) == RECORD_TYPE
|| TREE_CODE (t1
) == UNION_TYPE
)
7322 && C_TYPE_FIELDS_READONLY (t1
))
7323 C_TYPE_FIELDS_READONLY (t
) = 1;
7326 /* Any field that is volatile means variables of this type must be
7327 treated in some ways as volatile. */
7328 if (TREE_THIS_VOLATILE (x
))
7329 C_TYPE_FIELDS_VOLATILE (t
) = 1;
7331 /* Any field of nominal variable size implies structure is too. */
7332 if (C_DECL_VARIABLE_SIZE (x
))
7333 C_TYPE_VARIABLE_SIZE (t
) = 1;
7335 if (DECL_INITIAL (x
))
7337 unsigned HOST_WIDE_INT width
= tree_low_cst (DECL_INITIAL (x
), 1);
7338 DECL_SIZE (x
) = bitsize_int (width
);
7339 DECL_BIT_FIELD (x
) = 1;
7340 SET_DECL_C_BIT_FIELD (x
);
7344 && (DECL_BIT_FIELD (x
)
7345 || TYPE_ALIGN (TREE_TYPE (x
)) > BITS_PER_UNIT
))
7346 DECL_PACKED (x
) = 1;
7348 /* Detect flexible array member in an invalid context. */
7349 if (TREE_CODE (TREE_TYPE (x
)) == ARRAY_TYPE
7350 && TYPE_SIZE (TREE_TYPE (x
)) == NULL_TREE
7351 && TYPE_DOMAIN (TREE_TYPE (x
)) != NULL_TREE
7352 && TYPE_MAX_VALUE (TYPE_DOMAIN (TREE_TYPE (x
))) == NULL_TREE
)
7354 if (TREE_CODE (t
) == UNION_TYPE
)
7356 error_at (DECL_SOURCE_LOCATION (x
),
7357 "flexible array member in union");
7358 TREE_TYPE (x
) = error_mark_node
;
7360 else if (DECL_CHAIN (x
) != NULL_TREE
)
7362 error_at (DECL_SOURCE_LOCATION (x
),
7363 "flexible array member not at end of struct");
7364 TREE_TYPE (x
) = error_mark_node
;
7366 else if (!saw_named_field
)
7368 error_at (DECL_SOURCE_LOCATION (x
),
7369 "flexible array member in otherwise empty struct");
7370 TREE_TYPE (x
) = error_mark_node
;
7374 if (pedantic
&& TREE_CODE (t
) == RECORD_TYPE
7375 && flexible_array_type_p (TREE_TYPE (x
)))
7376 pedwarn (DECL_SOURCE_LOCATION (x
), OPT_Wpedantic
,
7377 "invalid use of structure with flexible array member");
7380 || TREE_CODE (TREE_TYPE (x
)) == RECORD_TYPE
7381 || TREE_CODE (TREE_TYPE (x
)) == UNION_TYPE
)
7382 saw_named_field
= 1;
7385 detect_field_duplicates (fieldlist
);
7387 /* Now we have the nearly final fieldlist. Record it,
7388 then lay out the structure or union (including the fields). */
7390 TYPE_FIELDS (t
) = fieldlist
;
7394 /* Give bit-fields their proper types. */
7396 tree
*fieldlistp
= &fieldlist
;
7398 if (TREE_CODE (*fieldlistp
) == FIELD_DECL
&& DECL_INITIAL (*fieldlistp
)
7399 && TREE_TYPE (*fieldlistp
) != error_mark_node
)
7401 unsigned HOST_WIDE_INT width
7402 = tree_low_cst (DECL_INITIAL (*fieldlistp
), 1);
7403 tree type
= TREE_TYPE (*fieldlistp
);
7404 if (width
!= TYPE_PRECISION (type
))
7406 TREE_TYPE (*fieldlistp
)
7407 = c_build_bitfield_integer_type (width
, TYPE_UNSIGNED (type
));
7408 DECL_MODE (*fieldlistp
) = TYPE_MODE (TREE_TYPE (*fieldlistp
));
7410 DECL_INITIAL (*fieldlistp
) = 0;
7413 fieldlistp
= &DECL_CHAIN (*fieldlistp
);
7416 /* Now we have the truly final field list.
7417 Store it in this type and in the variants. */
7419 TYPE_FIELDS (t
) = fieldlist
;
7421 /* If there are lots of fields, sort so we can look through them fast.
7422 We arbitrarily consider 16 or more elts to be "a lot". */
7427 for (x
= fieldlist
; x
; x
= DECL_CHAIN (x
))
7429 if (len
> 15 || DECL_NAME (x
) == NULL
)
7437 struct lang_type
*space
;
7438 struct sorted_fields_type
*space2
;
7440 len
+= list_length (x
);
7442 /* Use the same allocation policy here that make_node uses, to
7443 ensure that this lives as long as the rest of the struct decl.
7444 All decls in an inline function need to be saved. */
7446 space
= ggc_alloc_cleared_lang_type (sizeof (struct lang_type
));
7447 space2
= ggc_alloc_sorted_fields_type
7448 (sizeof (struct sorted_fields_type
) + len
* sizeof (tree
));
7452 field_array
= &space2
->elts
[0];
7453 for (x
= fieldlist
; x
; x
= DECL_CHAIN (x
))
7455 field_array
[len
++] = x
;
7457 /* If there is anonymous struct or union, break out of the loop. */
7458 if (DECL_NAME (x
) == NULL
)
7461 /* Found no anonymous struct/union. Add the TYPE_LANG_SPECIFIC. */
7464 TYPE_LANG_SPECIFIC (t
) = space
;
7465 TYPE_LANG_SPECIFIC (t
)->s
->len
= len
;
7466 field_array
= TYPE_LANG_SPECIFIC (t
)->s
->elts
;
7467 qsort (field_array
, len
, sizeof (tree
), field_decl_cmp
);
7472 for (x
= TYPE_MAIN_VARIANT (t
); x
; x
= TYPE_NEXT_VARIANT (x
))
7474 TYPE_FIELDS (x
) = TYPE_FIELDS (t
);
7475 TYPE_LANG_SPECIFIC (x
) = TYPE_LANG_SPECIFIC (t
);
7476 C_TYPE_FIELDS_READONLY (x
) = C_TYPE_FIELDS_READONLY (t
);
7477 C_TYPE_FIELDS_VOLATILE (x
) = C_TYPE_FIELDS_VOLATILE (t
);
7478 C_TYPE_VARIABLE_SIZE (x
) = C_TYPE_VARIABLE_SIZE (t
);
7481 /* If this was supposed to be a transparent union, but we can't
7482 make it one, warn and turn off the flag. */
7483 if (TREE_CODE (t
) == UNION_TYPE
7484 && TYPE_TRANSPARENT_AGGR (t
)
7485 && (!TYPE_FIELDS (t
) || TYPE_MODE (t
) != DECL_MODE (TYPE_FIELDS (t
))))
7487 TYPE_TRANSPARENT_AGGR (t
) = 0;
7488 warning_at (loc
, 0, "union cannot be made transparent");
7491 /* If this structure or union completes the type of any previous
7492 variable declaration, lay it out and output its rtl. */
7493 for (x
= C_TYPE_INCOMPLETE_VARS (TYPE_MAIN_VARIANT (t
));
7497 tree decl
= TREE_VALUE (x
);
7498 if (TREE_CODE (TREE_TYPE (decl
)) == ARRAY_TYPE
)
7499 layout_array_type (TREE_TYPE (decl
));
7500 if (TREE_CODE (decl
) != TYPE_DECL
)
7502 layout_decl (decl
, 0);
7503 if (c_dialect_objc ())
7504 objc_check_decl (decl
);
7505 rest_of_decl_compilation (decl
, toplevel
, 0);
7508 C_TYPE_INCOMPLETE_VARS (TYPE_MAIN_VARIANT (t
)) = 0;
7510 /* Update type location to the one of the definition, instead of e.g.
7511 a forward declaration. */
7512 if (TYPE_STUB_DECL (t
))
7513 DECL_SOURCE_LOCATION (TYPE_STUB_DECL (t
)) = loc
;
7515 /* Finish debugging output for this type. */
7516 rest_of_type_compilation (t
, toplevel
);
7518 /* If we're inside a function proper, i.e. not file-scope and not still
7519 parsing parameters, then arrange for the size of a variable sized type
7521 if (building_stmt_list_p () && variably_modified_type_p (t
, NULL_TREE
))
7522 add_stmt (build_stmt (loc
,
7523 DECL_EXPR
, build_decl (loc
, TYPE_DECL
, NULL
, t
)));
7525 if (warn_cxx_compat
)
7526 warn_cxx_compat_finish_struct (fieldlist
);
7528 struct_parse_info
->struct_types
.release ();
7529 struct_parse_info
->fields
.release ();
7530 struct_parse_info
->typedefs_seen
.release ();
7531 XDELETE (struct_parse_info
);
7533 struct_parse_info
= enclosing_struct_parse_info
;
7535 /* If this struct is defined inside a struct, add it to
7538 && struct_parse_info
!= NULL
7539 && !in_sizeof
&& !in_typeof
&& !in_alignof
)
7540 struct_parse_info
->struct_types
.safe_push (t
);
7545 /* Lay out the type T, and its element type, and so on. */
7548 layout_array_type (tree t
)
7550 if (TREE_CODE (TREE_TYPE (t
)) == ARRAY_TYPE
)
7551 layout_array_type (TREE_TYPE (t
));
7555 /* Begin compiling the definition of an enumeration type.
7556 NAME is its name (or null if anonymous).
7557 LOC is the enum's location.
7558 Returns the type object, as yet incomplete.
7559 Also records info about it so that build_enumerator
7560 may be used to declare the individual values as they are read. */
7563 start_enum (location_t loc
, struct c_enum_contents
*the_enum
, tree name
)
7565 tree enumtype
= NULL_TREE
;
7566 location_t enumloc
= UNKNOWN_LOCATION
;
7568 /* If this is the real definition for a previous forward reference,
7569 fill in the contents in the same object that used to be the
7570 forward reference. */
7572 if (name
!= NULL_TREE
)
7573 enumtype
= lookup_tag (ENUMERAL_TYPE
, name
, 1, &enumloc
);
7575 if (enumtype
== 0 || TREE_CODE (enumtype
) != ENUMERAL_TYPE
)
7577 enumtype
= make_node (ENUMERAL_TYPE
);
7578 pushtag (loc
, name
, enumtype
);
7581 if (C_TYPE_BEING_DEFINED (enumtype
))
7582 error_at (loc
, "nested redefinition of %<enum %E%>", name
);
7584 C_TYPE_BEING_DEFINED (enumtype
) = 1;
7586 if (TYPE_VALUES (enumtype
) != 0)
7588 /* This enum is a named one that has been declared already. */
7589 error_at (loc
, "redeclaration of %<enum %E%>", name
);
7590 if (enumloc
!= UNKNOWN_LOCATION
)
7591 inform (enumloc
, "originally defined here");
7593 /* Completely replace its old definition.
7594 The old enumerators remain defined, however. */
7595 TYPE_VALUES (enumtype
) = 0;
7598 the_enum
->enum_next_value
= integer_zero_node
;
7599 the_enum
->enum_overflow
= 0;
7601 if (flag_short_enums
)
7602 TYPE_PACKED (enumtype
) = 1;
7604 /* FIXME: This will issue a warning for a use of a type defined
7605 within sizeof in a statement expr. This is not terribly serious
7606 as C++ doesn't permit statement exprs within sizeof anyhow. */
7607 if (warn_cxx_compat
&& (in_sizeof
|| in_typeof
|| in_alignof
))
7608 warning_at (loc
, OPT_Wc___compat
,
7609 "defining type in %qs expression is invalid in C++",
7612 : (in_typeof
? "typeof" : "alignof")));
7617 /* After processing and defining all the values of an enumeration type,
7618 install their decls in the enumeration type and finish it off.
7619 ENUMTYPE is the type object, VALUES a list of decl-value pairs,
7620 and ATTRIBUTES are the specified attributes.
7621 Returns ENUMTYPE. */
7624 finish_enum (tree enumtype
, tree values
, tree attributes
)
7627 tree minnode
= 0, maxnode
= 0;
7628 int precision
, unsign
;
7629 bool toplevel
= (file_scope
== current_scope
);
7630 struct lang_type
*lt
;
7632 decl_attributes (&enumtype
, attributes
, (int) ATTR_FLAG_TYPE_IN_PLACE
);
7634 /* Calculate the maximum value of any enumerator in this type. */
7636 if (values
== error_mark_node
)
7637 minnode
= maxnode
= integer_zero_node
;
7640 minnode
= maxnode
= TREE_VALUE (values
);
7641 for (pair
= TREE_CHAIN (values
); pair
; pair
= TREE_CHAIN (pair
))
7643 tree value
= TREE_VALUE (pair
);
7644 if (tree_int_cst_lt (maxnode
, value
))
7646 if (tree_int_cst_lt (value
, minnode
))
7651 /* Construct the final type of this enumeration. It is the same
7652 as one of the integral types - the narrowest one that fits, except
7653 that normally we only go as narrow as int - and signed iff any of
7654 the values are negative. */
7655 unsign
= (tree_int_cst_sgn (minnode
) >= 0);
7656 precision
= MAX (tree_int_cst_min_precision (minnode
, unsign
),
7657 tree_int_cst_min_precision (maxnode
, unsign
));
7659 if (TYPE_PACKED (enumtype
) || precision
> TYPE_PRECISION (integer_type_node
))
7661 tem
= c_common_type_for_size (precision
, unsign
);
7664 warning (0, "enumeration values exceed range of largest integer");
7665 tem
= long_long_integer_type_node
;
7669 tem
= unsign
? unsigned_type_node
: integer_type_node
;
7671 TYPE_MIN_VALUE (enumtype
) = TYPE_MIN_VALUE (tem
);
7672 TYPE_MAX_VALUE (enumtype
) = TYPE_MAX_VALUE (tem
);
7673 TYPE_UNSIGNED (enumtype
) = TYPE_UNSIGNED (tem
);
7674 TYPE_SIZE (enumtype
) = 0;
7676 /* If the precision of the type was specific with an attribute and it
7677 was too small, give an error. Otherwise, use it. */
7678 if (TYPE_PRECISION (enumtype
))
7680 if (precision
> TYPE_PRECISION (enumtype
))
7681 error ("specified mode too small for enumeral values");
7684 TYPE_PRECISION (enumtype
) = TYPE_PRECISION (tem
);
7686 layout_type (enumtype
);
7688 if (values
!= error_mark_node
)
7690 /* Change the type of the enumerators to be the enum type. We
7691 need to do this irrespective of the size of the enum, for
7692 proper type checking. Replace the DECL_INITIALs of the
7693 enumerators, and the value slots of the list, with copies
7694 that have the enum type; they cannot be modified in place
7695 because they may be shared (e.g. integer_zero_node) Finally,
7696 change the purpose slots to point to the names of the decls. */
7697 for (pair
= values
; pair
; pair
= TREE_CHAIN (pair
))
7699 tree enu
= TREE_PURPOSE (pair
);
7700 tree ini
= DECL_INITIAL (enu
);
7702 TREE_TYPE (enu
) = enumtype
;
7704 /* The ISO C Standard mandates enumerators to have type int,
7705 even though the underlying type of an enum type is
7706 unspecified. However, GCC allows enumerators of any
7707 integer type as an extensions. build_enumerator()
7708 converts any enumerators that fit in an int to type int,
7709 to avoid promotions to unsigned types when comparing
7710 integers with enumerators that fit in the int range.
7711 When -pedantic is given, build_enumerator() would have
7712 already warned about those that don't fit. Here we
7713 convert the rest to the enumerator type. */
7714 if (TREE_TYPE (ini
) != integer_type_node
)
7715 ini
= convert (enumtype
, ini
);
7717 DECL_INITIAL (enu
) = ini
;
7718 TREE_PURPOSE (pair
) = DECL_NAME (enu
);
7719 TREE_VALUE (pair
) = ini
;
7722 TYPE_VALUES (enumtype
) = values
;
7725 /* Record the min/max values so that we can warn about bit-field
7726 enumerations that are too small for the values. */
7727 lt
= ggc_alloc_cleared_lang_type (sizeof (struct lang_type
));
7728 lt
->enum_min
= minnode
;
7729 lt
->enum_max
= maxnode
;
7730 TYPE_LANG_SPECIFIC (enumtype
) = lt
;
7732 /* Fix up all variant types of this enum type. */
7733 for (tem
= TYPE_MAIN_VARIANT (enumtype
); tem
; tem
= TYPE_NEXT_VARIANT (tem
))
7735 if (tem
== enumtype
)
7737 TYPE_VALUES (tem
) = TYPE_VALUES (enumtype
);
7738 TYPE_MIN_VALUE (tem
) = TYPE_MIN_VALUE (enumtype
);
7739 TYPE_MAX_VALUE (tem
) = TYPE_MAX_VALUE (enumtype
);
7740 TYPE_SIZE (tem
) = TYPE_SIZE (enumtype
);
7741 TYPE_SIZE_UNIT (tem
) = TYPE_SIZE_UNIT (enumtype
);
7742 SET_TYPE_MODE (tem
, TYPE_MODE (enumtype
));
7743 TYPE_PRECISION (tem
) = TYPE_PRECISION (enumtype
);
7744 TYPE_ALIGN (tem
) = TYPE_ALIGN (enumtype
);
7745 TYPE_USER_ALIGN (tem
) = TYPE_USER_ALIGN (enumtype
);
7746 TYPE_UNSIGNED (tem
) = TYPE_UNSIGNED (enumtype
);
7747 TYPE_LANG_SPECIFIC (tem
) = TYPE_LANG_SPECIFIC (enumtype
);
7750 /* Finish debugging output for this type. */
7751 rest_of_type_compilation (enumtype
, toplevel
);
7753 /* If this enum is defined inside a struct, add it to
7756 && struct_parse_info
!= NULL
7757 && !in_sizeof
&& !in_typeof
&& !in_alignof
)
7758 struct_parse_info
->struct_types
.safe_push (enumtype
);
7763 /* Build and install a CONST_DECL for one value of the
7764 current enumeration type (one that was begun with start_enum).
7765 DECL_LOC is the location of the enumerator.
7766 LOC is the location of the '=' operator if any, DECL_LOC otherwise.
7767 Return a tree-list containing the CONST_DECL and its value.
7768 Assignment of sequential values by default is handled here. */
7771 build_enumerator (location_t decl_loc
, location_t loc
,
7772 struct c_enum_contents
*the_enum
, tree name
, tree value
)
7776 /* Validate and default VALUE. */
7780 /* Don't issue more errors for error_mark_node (i.e. an
7781 undeclared identifier) - just ignore the value expression. */
7782 if (value
== error_mark_node
)
7784 else if (!INTEGRAL_TYPE_P (TREE_TYPE (value
)))
7786 error_at (loc
, "enumerator value for %qE is not an integer constant",
7792 if (TREE_CODE (value
) != INTEGER_CST
)
7794 value
= c_fully_fold (value
, false, NULL
);
7795 if (TREE_CODE (value
) == INTEGER_CST
)
7796 pedwarn (loc
, OPT_Wpedantic
,
7797 "enumerator value for %qE is not an integer "
7798 "constant expression", name
);
7800 if (TREE_CODE (value
) != INTEGER_CST
)
7802 error ("enumerator value for %qE is not an integer constant",
7808 value
= default_conversion (value
);
7809 constant_expression_warning (value
);
7814 /* Default based on previous value. */
7815 /* It should no longer be possible to have NON_LVALUE_EXPR
7819 value
= the_enum
->enum_next_value
;
7820 if (the_enum
->enum_overflow
)
7821 error_at (loc
, "overflow in enumeration values");
7823 /* Even though the underlying type of an enum is unspecified, the
7824 type of enumeration constants is explicitly defined as int
7825 (6.4.4.3/2 in the C99 Standard). GCC allows any integer type as
7827 else if (!int_fits_type_p (value
, integer_type_node
))
7828 pedwarn (loc
, OPT_Wpedantic
,
7829 "ISO C restricts enumerator values to range of %<int%>");
7831 /* The ISO C Standard mandates enumerators to have type int, even
7832 though the underlying type of an enum type is unspecified.
7833 However, GCC allows enumerators of any integer type as an
7834 extensions. Here we convert any enumerators that fit in an int
7835 to type int, to avoid promotions to unsigned types when comparing
7836 integers with enumerators that fit in the int range. When
7837 -pedantic is given, we would have already warned about those that
7838 don't fit. We have to do this here rather than in finish_enum
7839 because this value may be used to define more enumerators. */
7840 if (int_fits_type_p (value
, integer_type_node
))
7841 value
= convert (integer_type_node
, value
);
7843 /* Set basis for default for next value. */
7844 the_enum
->enum_next_value
7845 = build_binary_op (EXPR_LOC_OR_HERE (value
),
7846 PLUS_EXPR
, value
, integer_one_node
, 0);
7847 the_enum
->enum_overflow
= tree_int_cst_lt (the_enum
->enum_next_value
, value
);
7849 /* Now create a declaration for the enum value name. */
7851 type
= TREE_TYPE (value
);
7852 type
= c_common_type_for_size (MAX (TYPE_PRECISION (type
),
7853 TYPE_PRECISION (integer_type_node
)),
7854 (TYPE_PRECISION (type
)
7855 >= TYPE_PRECISION (integer_type_node
)
7856 && TYPE_UNSIGNED (type
)));
7858 decl
= build_decl (decl_loc
, CONST_DECL
, name
, type
);
7859 DECL_INITIAL (decl
) = convert (type
, value
);
7862 return tree_cons (decl
, value
, NULL_TREE
);
7866 /* Create the FUNCTION_DECL for a function definition.
7867 DECLSPECS, DECLARATOR and ATTRIBUTES are the parts of
7868 the declaration; they describe the function's name and the type it returns,
7869 but twisted together in a fashion that parallels the syntax of C.
7871 This function creates a binding context for the function body
7872 as well as setting up the FUNCTION_DECL in current_function_decl.
7874 Returns 1 on success. If the DECLARATOR is not suitable for a function
7875 (it defines a datum instead), we return 0, which tells
7876 yyparse to report a parse error. */
7879 start_function (struct c_declspecs
*declspecs
, struct c_declarator
*declarator
,
7882 tree decl1
, old_decl
;
7883 tree restype
, resdecl
;
7886 current_function_returns_value
= 0; /* Assume, until we see it does. */
7887 current_function_returns_null
= 0;
7888 current_function_returns_abnormally
= 0;
7889 warn_about_return_type
= 0;
7890 c_switch_stack
= NULL
;
7892 /* Indicate no valid break/continue context by setting these variables
7893 to some non-null, non-label value. We'll notice and emit the proper
7894 error message in c_finish_bc_stmt. */
7895 c_break_label
= c_cont_label
= size_zero_node
;
7897 decl1
= grokdeclarator (declarator
, declspecs
, FUNCDEF
, true, NULL
,
7898 &attributes
, NULL
, NULL
, DEPRECATED_NORMAL
);
7900 /* If the declarator is not suitable for a function definition,
7901 cause a syntax error. */
7903 || TREE_CODE (decl1
) != FUNCTION_DECL
)
7906 loc
= DECL_SOURCE_LOCATION (decl1
);
7908 decl_attributes (&decl1
, attributes
, 0);
7910 if (DECL_DECLARED_INLINE_P (decl1
)
7911 && DECL_UNINLINABLE (decl1
)
7912 && lookup_attribute ("noinline", DECL_ATTRIBUTES (decl1
)))
7913 warning_at (loc
, OPT_Wattributes
,
7914 "inline function %qD given attribute noinline",
7917 /* Handle gnu_inline attribute. */
7918 if (declspecs
->inline_p
7919 && !flag_gnu89_inline
7920 && TREE_CODE (decl1
) == FUNCTION_DECL
7921 && (lookup_attribute ("gnu_inline", DECL_ATTRIBUTES (decl1
))
7922 || current_function_decl
))
7924 if (declspecs
->storage_class
!= csc_static
)
7925 DECL_EXTERNAL (decl1
) = !DECL_EXTERNAL (decl1
);
7928 announce_function (decl1
);
7930 if (!COMPLETE_OR_VOID_TYPE_P (TREE_TYPE (TREE_TYPE (decl1
))))
7932 error_at (loc
, "return type is an incomplete type");
7933 /* Make it return void instead. */
7935 = build_function_type (void_type_node
,
7936 TYPE_ARG_TYPES (TREE_TYPE (decl1
)));
7939 if (warn_about_return_type
)
7940 pedwarn_c99 (loc
, flag_isoc99
? 0
7941 : (warn_return_type
? OPT_Wreturn_type
: OPT_Wimplicit_int
),
7942 "return type defaults to %<int%>");
7944 /* Make the init_value nonzero so pushdecl knows this is not tentative.
7945 error_mark_node is replaced below (in pop_scope) with the BLOCK. */
7946 DECL_INITIAL (decl1
) = error_mark_node
;
7948 /* A nested function is not global. */
7949 if (current_function_decl
!= 0)
7950 TREE_PUBLIC (decl1
) = 0;
7952 /* If this definition isn't a prototype and we had a prototype declaration
7953 before, copy the arg type info from that prototype. */
7954 old_decl
= lookup_name_in_scope (DECL_NAME (decl1
), current_scope
);
7955 if (old_decl
&& TREE_CODE (old_decl
) != FUNCTION_DECL
)
7957 current_function_prototype_locus
= UNKNOWN_LOCATION
;
7958 current_function_prototype_built_in
= false;
7959 current_function_prototype_arg_types
= NULL_TREE
;
7960 if (!prototype_p (TREE_TYPE (decl1
)))
7962 if (old_decl
!= 0 && TREE_CODE (TREE_TYPE (old_decl
)) == FUNCTION_TYPE
7963 && comptypes (TREE_TYPE (TREE_TYPE (decl1
)),
7964 TREE_TYPE (TREE_TYPE (old_decl
))))
7966 TREE_TYPE (decl1
) = composite_type (TREE_TYPE (old_decl
),
7968 current_function_prototype_locus
= DECL_SOURCE_LOCATION (old_decl
);
7969 current_function_prototype_built_in
7970 = C_DECL_BUILTIN_PROTOTYPE (old_decl
);
7971 current_function_prototype_arg_types
7972 = TYPE_ARG_TYPES (TREE_TYPE (decl1
));
7974 if (TREE_PUBLIC (decl1
))
7976 /* If there is an external prototype declaration of this
7977 function, record its location but do not copy information
7978 to this decl. This may be an invisible declaration
7979 (built-in or in a scope which has finished) or simply
7980 have more refined argument types than any declaration
7982 struct c_binding
*b
;
7983 for (b
= I_SYMBOL_BINDING (DECL_NAME (decl1
)); b
; b
= b
->shadowed
)
7984 if (B_IN_SCOPE (b
, external_scope
))
7988 tree ext_decl
, ext_type
;
7990 ext_type
= b
->u
.type
? b
->u
.type
: TREE_TYPE (ext_decl
);
7991 if (TREE_CODE (ext_type
) == FUNCTION_TYPE
7992 && comptypes (TREE_TYPE (TREE_TYPE (decl1
)),
7993 TREE_TYPE (ext_type
)))
7995 current_function_prototype_locus
7996 = DECL_SOURCE_LOCATION (ext_decl
);
7997 current_function_prototype_built_in
7998 = C_DECL_BUILTIN_PROTOTYPE (ext_decl
);
7999 current_function_prototype_arg_types
8000 = TYPE_ARG_TYPES (ext_type
);
8006 /* Optionally warn of old-fashioned def with no previous prototype. */
8007 if (warn_strict_prototypes
8008 && old_decl
!= error_mark_node
8009 && !prototype_p (TREE_TYPE (decl1
))
8010 && C_DECL_ISNT_PROTOTYPE (old_decl
))
8011 warning_at (loc
, OPT_Wstrict_prototypes
,
8012 "function declaration isn%'t a prototype");
8013 /* Optionally warn of any global def with no previous prototype. */
8014 else if (warn_missing_prototypes
8015 && old_decl
!= error_mark_node
8016 && TREE_PUBLIC (decl1
)
8017 && !MAIN_NAME_P (DECL_NAME (decl1
))
8018 && C_DECL_ISNT_PROTOTYPE (old_decl
))
8019 warning_at (loc
, OPT_Wmissing_prototypes
,
8020 "no previous prototype for %qD", decl1
);
8021 /* Optionally warn of any def with no previous prototype
8022 if the function has already been used. */
8023 else if (warn_missing_prototypes
8025 && old_decl
!= error_mark_node
8026 && TREE_USED (old_decl
)
8027 && !prototype_p (TREE_TYPE (old_decl
)))
8028 warning_at (loc
, OPT_Wmissing_prototypes
,
8029 "%qD was used with no prototype before its definition", decl1
);
8030 /* Optionally warn of any global def with no previous declaration. */
8031 else if (warn_missing_declarations
8032 && TREE_PUBLIC (decl1
)
8034 && !MAIN_NAME_P (DECL_NAME (decl1
)))
8035 warning_at (loc
, OPT_Wmissing_declarations
,
8036 "no previous declaration for %qD",
8038 /* Optionally warn of any def with no previous declaration
8039 if the function has already been used. */
8040 else if (warn_missing_declarations
8042 && old_decl
!= error_mark_node
8043 && TREE_USED (old_decl
)
8044 && C_DECL_IMPLICIT (old_decl
))
8045 warning_at (loc
, OPT_Wmissing_declarations
,
8046 "%qD was used with no declaration before its definition", decl1
);
8048 /* This function exists in static storage.
8049 (This does not mean `static' in the C sense!) */
8050 TREE_STATIC (decl1
) = 1;
8052 /* This is the earliest point at which we might know the assembler
8053 name of the function. Thus, if it's set before this, die horribly. */
8054 gcc_assert (!DECL_ASSEMBLER_NAME_SET_P (decl1
));
8056 /* If #pragma weak was used, mark the decl weak now. */
8057 if (current_scope
== file_scope
)
8058 maybe_apply_pragma_weak (decl1
);
8060 /* Warn for unlikely, improbable, or stupid declarations of `main'. */
8061 if (warn_main
&& MAIN_NAME_P (DECL_NAME (decl1
)))
8063 if (TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (decl1
)))
8064 != integer_type_node
)
8065 pedwarn (loc
, OPT_Wmain
, "return type of %qD is not %<int%>", decl1
);
8067 check_main_parameter_types (decl1
);
8069 if (!TREE_PUBLIC (decl1
))
8070 pedwarn (loc
, OPT_Wmain
,
8071 "%qD is normally a non-static function", decl1
);
8074 /* Record the decl so that the function name is defined.
8075 If we already have a decl for this name, and it is a FUNCTION_DECL,
8076 use the old decl. */
8078 current_function_decl
= pushdecl (decl1
);
8081 declare_parm_level ();
8083 restype
= TREE_TYPE (TREE_TYPE (current_function_decl
));
8084 resdecl
= build_decl (loc
, RESULT_DECL
, NULL_TREE
, restype
);
8085 DECL_ARTIFICIAL (resdecl
) = 1;
8086 DECL_IGNORED_P (resdecl
) = 1;
8087 DECL_RESULT (current_function_decl
) = resdecl
;
8089 start_fname_decls ();
8094 /* Subroutine of store_parm_decls which handles new-style function
8095 definitions (prototype format). The parms already have decls, so we
8096 need only record them as in effect and complain if any redundant
8097 old-style parm decls were written. */
8099 store_parm_decls_newstyle (tree fndecl
, const struct c_arg_info
*arg_info
)
8105 if (current_scope
->bindings
)
8107 error_at (DECL_SOURCE_LOCATION (fndecl
),
8108 "old-style parameter declarations in prototyped "
8109 "function definition");
8111 /* Get rid of the old-style declarations. */
8115 /* Don't issue this warning for nested functions, and don't issue this
8116 warning if we got here because ARG_INFO_TYPES was error_mark_node
8117 (this happens when a function definition has just an ellipsis in
8118 its parameter list). */
8119 else if (!in_system_header
&& !current_function_scope
8120 && arg_info
->types
!= error_mark_node
)
8121 warning_at (DECL_SOURCE_LOCATION (fndecl
), OPT_Wtraditional
,
8122 "traditional C rejects ISO C style function definitions");
8124 /* Now make all the parameter declarations visible in the function body.
8125 We can bypass most of the grunt work of pushdecl. */
8126 for (decl
= arg_info
->parms
; decl
; decl
= DECL_CHAIN (decl
))
8128 DECL_CONTEXT (decl
) = current_function_decl
;
8129 if (DECL_NAME (decl
))
8131 bind (DECL_NAME (decl
), decl
, current_scope
,
8132 /*invisible=*/false, /*nested=*/false,
8134 if (!TREE_USED (decl
))
8135 warn_if_shadowing (decl
);
8138 error_at (DECL_SOURCE_LOCATION (decl
), "parameter name omitted");
8141 /* Record the parameter list in the function declaration. */
8142 DECL_ARGUMENTS (fndecl
) = arg_info
->parms
;
8144 /* Now make all the ancillary declarations visible, likewise. */
8145 for (decl
= arg_info
->others
; decl
; decl
= DECL_CHAIN (decl
))
8147 DECL_CONTEXT (decl
) = current_function_decl
;
8148 if (DECL_NAME (decl
))
8149 bind (DECL_NAME (decl
), decl
, current_scope
,
8150 /*invisible=*/false,
8151 /*nested=*/(TREE_CODE (decl
) == FUNCTION_DECL
),
8155 /* And all the tag declarations. */
8156 FOR_EACH_VEC_SAFE_ELT_REVERSE (arg_info
->tags
, ix
, tag
)
8158 bind (tag
->id
, tag
->type
, current_scope
,
8159 /*invisible=*/false, /*nested=*/false, UNKNOWN_LOCATION
);
8162 /* Subroutine of store_parm_decls which handles old-style function
8163 definitions (separate parameter list and declarations). */
8166 store_parm_decls_oldstyle (tree fndecl
, const struct c_arg_info
*arg_info
)
8168 struct c_binding
*b
;
8169 tree parm
, decl
, last
;
8170 tree parmids
= arg_info
->parms
;
8171 struct pointer_set_t
*seen_args
= pointer_set_create ();
8173 if (!in_system_header
)
8174 warning_at (DECL_SOURCE_LOCATION (fndecl
),
8175 OPT_Wold_style_definition
, "old-style function definition");
8177 /* Match each formal parameter name with its declaration. Save each
8178 decl in the appropriate TREE_PURPOSE slot of the parmids chain. */
8179 for (parm
= parmids
; parm
; parm
= TREE_CHAIN (parm
))
8181 if (TREE_VALUE (parm
) == 0)
8183 error_at (DECL_SOURCE_LOCATION (fndecl
),
8184 "parameter name missing from parameter list");
8185 TREE_PURPOSE (parm
) = 0;
8189 b
= I_SYMBOL_BINDING (TREE_VALUE (parm
));
8190 if (b
&& B_IN_CURRENT_SCOPE (b
))
8193 /* Skip erroneous parameters. */
8194 if (decl
== error_mark_node
)
8196 /* If we got something other than a PARM_DECL it is an error. */
8197 if (TREE_CODE (decl
) != PARM_DECL
)
8198 error_at (DECL_SOURCE_LOCATION (decl
),
8199 "%qD declared as a non-parameter", decl
);
8200 /* If the declaration is already marked, we have a duplicate
8201 name. Complain and ignore the duplicate. */
8202 else if (pointer_set_contains (seen_args
, decl
))
8204 error_at (DECL_SOURCE_LOCATION (decl
),
8205 "multiple parameters named %qD", decl
);
8206 TREE_PURPOSE (parm
) = 0;
8209 /* If the declaration says "void", complain and turn it into
8211 else if (VOID_TYPE_P (TREE_TYPE (decl
)))
8213 error_at (DECL_SOURCE_LOCATION (decl
),
8214 "parameter %qD declared with void type", decl
);
8215 TREE_TYPE (decl
) = integer_type_node
;
8216 DECL_ARG_TYPE (decl
) = integer_type_node
;
8217 layout_decl (decl
, 0);
8219 warn_if_shadowing (decl
);
8221 /* If no declaration found, default to int. */
8224 /* FIXME diagnostics: This should be the location of the argument,
8225 not the FNDECL. E.g., for an old-style declaration
8227 int f10(v) { blah; }
8229 We should use the location of the V, not the F10.
8230 Unfortunately, the V is an IDENTIFIER_NODE which has no
8231 location. In the future we need locations for c_arg_info
8234 See gcc.dg/Wshadow-3.c for an example of this problem. */
8235 decl
= build_decl (DECL_SOURCE_LOCATION (fndecl
),
8236 PARM_DECL
, TREE_VALUE (parm
), integer_type_node
);
8237 DECL_ARG_TYPE (decl
) = TREE_TYPE (decl
);
8239 warn_if_shadowing (decl
);
8242 pedwarn (DECL_SOURCE_LOCATION (decl
),
8243 0, "type of %qD defaults to %<int%>", decl
);
8245 warning_at (DECL_SOURCE_LOCATION (decl
),
8246 OPT_Wmissing_parameter_type
,
8247 "type of %qD defaults to %<int%>", decl
);
8250 TREE_PURPOSE (parm
) = decl
;
8251 pointer_set_insert (seen_args
, decl
);
8254 /* Now examine the parms chain for incomplete declarations
8255 and declarations with no corresponding names. */
8257 for (b
= current_scope
->bindings
; b
; b
= b
->prev
)
8260 if (TREE_CODE (parm
) != PARM_DECL
)
8263 if (TREE_TYPE (parm
) != error_mark_node
8264 && !COMPLETE_TYPE_P (TREE_TYPE (parm
)))
8266 error_at (DECL_SOURCE_LOCATION (parm
),
8267 "parameter %qD has incomplete type", parm
);
8268 TREE_TYPE (parm
) = error_mark_node
;
8271 if (!pointer_set_contains (seen_args
, parm
))
8273 error_at (DECL_SOURCE_LOCATION (parm
),
8274 "declaration for parameter %qD but no such parameter",
8277 /* Pretend the parameter was not missing.
8278 This gets us to a standard state and minimizes
8279 further error messages. */
8280 parmids
= chainon (parmids
, tree_cons (parm
, 0, 0));
8284 /* Chain the declarations together in the order of the list of
8285 names. Store that chain in the function decl, replacing the
8286 list of names. Update the current scope to match. */
8287 DECL_ARGUMENTS (fndecl
) = 0;
8289 for (parm
= parmids
; parm
; parm
= TREE_CHAIN (parm
))
8290 if (TREE_PURPOSE (parm
))
8292 if (parm
&& TREE_PURPOSE (parm
))
8294 last
= TREE_PURPOSE (parm
);
8295 DECL_ARGUMENTS (fndecl
) = last
;
8297 for (parm
= TREE_CHAIN (parm
); parm
; parm
= TREE_CHAIN (parm
))
8298 if (TREE_PURPOSE (parm
))
8300 DECL_CHAIN (last
) = TREE_PURPOSE (parm
);
8301 last
= TREE_PURPOSE (parm
);
8303 DECL_CHAIN (last
) = 0;
8306 pointer_set_destroy (seen_args
);
8308 /* If there was a previous prototype,
8309 set the DECL_ARG_TYPE of each argument according to
8310 the type previously specified, and report any mismatches. */
8312 if (current_function_prototype_arg_types
)
8315 for (parm
= DECL_ARGUMENTS (fndecl
),
8316 type
= current_function_prototype_arg_types
;
8317 parm
|| (type
&& TREE_VALUE (type
) != error_mark_node
8318 && (TYPE_MAIN_VARIANT (TREE_VALUE (type
)) != void_type_node
));
8319 parm
= DECL_CHAIN (parm
), type
= TREE_CHAIN (type
))
8321 if (parm
== 0 || type
== 0
8322 || TYPE_MAIN_VARIANT (TREE_VALUE (type
)) == void_type_node
)
8324 if (current_function_prototype_built_in
)
8325 warning_at (DECL_SOURCE_LOCATION (fndecl
),
8326 0, "number of arguments doesn%'t match "
8327 "built-in prototype");
8330 /* FIXME diagnostics: This should be the location of
8331 FNDECL, but there is bug when a prototype is
8332 declared inside function context, but defined
8333 outside of it (e.g., gcc.dg/pr15698-2.c). In
8334 which case FNDECL gets the location of the
8335 prototype, not the definition. */
8336 error_at (input_location
,
8337 "number of arguments doesn%'t match prototype");
8339 error_at (current_function_prototype_locus
,
8340 "prototype declaration");
8344 /* Type for passing arg must be consistent with that
8345 declared for the arg. ISO C says we take the unqualified
8346 type for parameters declared with qualified type. */
8347 if (TREE_TYPE (parm
) != error_mark_node
8348 && TREE_TYPE (type
) != error_mark_node
8349 && !comptypes (TYPE_MAIN_VARIANT (DECL_ARG_TYPE (parm
)),
8350 TYPE_MAIN_VARIANT (TREE_VALUE (type
))))
8352 if (TYPE_MAIN_VARIANT (TREE_TYPE (parm
))
8353 == TYPE_MAIN_VARIANT (TREE_VALUE (type
)))
8355 /* Adjust argument to match prototype. E.g. a previous
8356 `int foo(float);' prototype causes
8357 `int foo(x) float x; {...}' to be treated like
8358 `int foo(float x) {...}'. This is particularly
8359 useful for argument types like uid_t. */
8360 DECL_ARG_TYPE (parm
) = TREE_TYPE (parm
);
8362 if (targetm
.calls
.promote_prototypes (TREE_TYPE (current_function_decl
))
8363 && INTEGRAL_TYPE_P (TREE_TYPE (parm
))
8364 && TYPE_PRECISION (TREE_TYPE (parm
))
8365 < TYPE_PRECISION (integer_type_node
))
8366 DECL_ARG_TYPE (parm
) = integer_type_node
;
8368 /* ??? Is it possible to get here with a
8369 built-in prototype or will it always have
8370 been diagnosed as conflicting with an
8371 old-style definition and discarded? */
8372 if (current_function_prototype_built_in
)
8373 warning_at (DECL_SOURCE_LOCATION (parm
),
8374 OPT_Wpedantic
, "promoted argument %qD "
8375 "doesn%'t match built-in prototype", parm
);
8378 pedwarn (DECL_SOURCE_LOCATION (parm
),
8379 OPT_Wpedantic
, "promoted argument %qD "
8380 "doesn%'t match prototype", parm
);
8381 pedwarn (current_function_prototype_locus
, OPT_Wpedantic
,
8382 "prototype declaration");
8387 if (current_function_prototype_built_in
)
8388 warning_at (DECL_SOURCE_LOCATION (parm
),
8389 0, "argument %qD doesn%'t match "
8390 "built-in prototype", parm
);
8393 error_at (DECL_SOURCE_LOCATION (parm
),
8394 "argument %qD doesn%'t match prototype", parm
);
8395 error_at (current_function_prototype_locus
,
8396 "prototype declaration");
8401 TYPE_ACTUAL_ARG_TYPES (TREE_TYPE (fndecl
)) = 0;
8404 /* Otherwise, create a prototype that would match. */
8408 tree actual
= 0, last
= 0, type
;
8410 for (parm
= DECL_ARGUMENTS (fndecl
); parm
; parm
= DECL_CHAIN (parm
))
8412 type
= tree_cons (NULL_TREE
, DECL_ARG_TYPE (parm
), NULL_TREE
);
8414 TREE_CHAIN (last
) = type
;
8419 type
= tree_cons (NULL_TREE
, void_type_node
, NULL_TREE
);
8421 TREE_CHAIN (last
) = type
;
8425 /* We are going to assign a new value for the TYPE_ACTUAL_ARG_TYPES
8426 of the type of this function, but we need to avoid having this
8427 affect the types of other similarly-typed functions, so we must
8428 first force the generation of an identical (but separate) type
8429 node for the relevant function type. The new node we create
8430 will be a variant of the main variant of the original function
8433 TREE_TYPE (fndecl
) = build_variant_type_copy (TREE_TYPE (fndecl
));
8435 TYPE_ACTUAL_ARG_TYPES (TREE_TYPE (fndecl
)) = actual
;
8439 /* Store parameter declarations passed in ARG_INFO into the current
8440 function declaration. */
8443 store_parm_decls_from (struct c_arg_info
*arg_info
)
8445 current_function_arg_info
= arg_info
;
8446 store_parm_decls ();
8449 /* Store the parameter declarations into the current function declaration.
8450 This is called after parsing the parameter declarations, before
8451 digesting the body of the function.
8453 For an old-style definition, construct a prototype out of the old-style
8454 parameter declarations and inject it into the function's type. */
8457 store_parm_decls (void)
8459 tree fndecl
= current_function_decl
;
8462 /* The argument information block for FNDECL. */
8463 struct c_arg_info
*arg_info
= current_function_arg_info
;
8464 current_function_arg_info
= 0;
8466 /* True if this definition is written with a prototype. Note:
8467 despite C99 6.7.5.3p14, we can *not* treat an empty argument
8468 list in a function definition as equivalent to (void) -- an
8469 empty argument list specifies the function has no parameters,
8470 but only (void) sets up a prototype for future calls. */
8471 proto
= arg_info
->types
!= 0;
8474 store_parm_decls_newstyle (fndecl
, arg_info
);
8476 store_parm_decls_oldstyle (fndecl
, arg_info
);
8478 /* The next call to push_scope will be a function body. */
8480 next_is_function_body
= true;
8482 /* Write a record describing this function definition to the prototypes
8483 file (if requested). */
8485 gen_aux_info_record (fndecl
, 1, 0, proto
);
8487 /* Initialize the RTL code for the function. */
8488 allocate_struct_function (fndecl
, false);
8490 if (warn_unused_local_typedefs
)
8491 cfun
->language
= ggc_alloc_cleared_language_function ();
8493 /* Begin the statement tree for this function. */
8494 DECL_SAVED_TREE (fndecl
) = push_stmt_list ();
8496 /* ??? Insert the contents of the pending sizes list into the function
8497 to be evaluated. The only reason left to have this is
8498 void foo(int n, int array[n++])
8499 because we throw away the array type in favor of a pointer type, and
8500 thus won't naturally see the SAVE_EXPR containing the increment. All
8501 other pending sizes would be handled by gimplify_parameters. */
8502 if (arg_info
->pending_sizes
)
8503 add_stmt (arg_info
->pending_sizes
);
8507 /* Finish up a function declaration and compile that function
8508 all the way to assembler language output. Then free the storage
8509 for the function definition.
8511 This is called after parsing the body of the function definition. */
8514 finish_function (void)
8516 tree fndecl
= current_function_decl
;
8518 if (c_dialect_objc ())
8519 objc_finish_function ();
8521 if (TREE_CODE (fndecl
) == FUNCTION_DECL
8522 && targetm
.calls
.promote_prototypes (TREE_TYPE (fndecl
)))
8524 tree args
= DECL_ARGUMENTS (fndecl
);
8525 for (; args
; args
= DECL_CHAIN (args
))
8527 tree type
= TREE_TYPE (args
);
8528 if (INTEGRAL_TYPE_P (type
)
8529 && TYPE_PRECISION (type
) < TYPE_PRECISION (integer_type_node
))
8530 DECL_ARG_TYPE (args
) = integer_type_node
;
8534 if (DECL_INITIAL (fndecl
) && DECL_INITIAL (fndecl
) != error_mark_node
)
8535 BLOCK_SUPERCONTEXT (DECL_INITIAL (fndecl
)) = fndecl
;
8537 /* Must mark the RESULT_DECL as being in this function. */
8539 if (DECL_RESULT (fndecl
) && DECL_RESULT (fndecl
) != error_mark_node
)
8540 DECL_CONTEXT (DECL_RESULT (fndecl
)) = fndecl
;
8542 if (MAIN_NAME_P (DECL_NAME (fndecl
)) && flag_hosted
8543 && TYPE_MAIN_VARIANT (TREE_TYPE (TREE_TYPE (fndecl
)))
8544 == integer_type_node
&& flag_isoc99
)
8546 /* Hack. We don't want the middle-end to warn that this return
8547 is unreachable, so we mark its location as special. Using
8548 UNKNOWN_LOCATION has the problem that it gets clobbered in
8549 annotate_one_with_locus. A cleaner solution might be to
8550 ensure ! should_carry_locus_p (stmt), but that needs a flag.
8552 c_finish_return (BUILTINS_LOCATION
, integer_zero_node
, NULL_TREE
);
8555 /* Tie off the statement tree for this function. */
8556 DECL_SAVED_TREE (fndecl
) = pop_stmt_list (DECL_SAVED_TREE (fndecl
));
8558 finish_fname_decls ();
8560 /* Complain if there's just no return statement. */
8561 if (warn_return_type
8562 && TREE_CODE (TREE_TYPE (TREE_TYPE (fndecl
))) != VOID_TYPE
8563 && !current_function_returns_value
&& !current_function_returns_null
8564 /* Don't complain if we are no-return. */
8565 && !current_function_returns_abnormally
8566 /* Don't complain if we are declared noreturn. */
8567 && !TREE_THIS_VOLATILE (fndecl
)
8568 /* Don't warn for main(). */
8569 && !MAIN_NAME_P (DECL_NAME (fndecl
))
8570 /* Or if they didn't actually specify a return type. */
8571 && !C_FUNCTION_IMPLICIT_INT (fndecl
)
8572 /* Normally, with -Wreturn-type, flow will complain, but we might
8573 optimize out static functions. */
8574 && !TREE_PUBLIC (fndecl
))
8576 warning (OPT_Wreturn_type
,
8577 "no return statement in function returning non-void");
8578 TREE_NO_WARNING (fndecl
) = 1;
8581 /* Complain about parameters that are only set, but never otherwise used. */
8582 if (warn_unused_but_set_parameter
)
8586 for (decl
= DECL_ARGUMENTS (fndecl
);
8588 decl
= DECL_CHAIN (decl
))
8589 if (TREE_USED (decl
)
8590 && TREE_CODE (decl
) == PARM_DECL
8591 && !DECL_READ_P (decl
)
8593 && !DECL_ARTIFICIAL (decl
)
8594 && !TREE_NO_WARNING (decl
))
8595 warning_at (DECL_SOURCE_LOCATION (decl
),
8596 OPT_Wunused_but_set_parameter
,
8597 "parameter %qD set but not used", decl
);
8600 /* Complain about locally defined typedefs that are not used in this
8602 maybe_warn_unused_local_typedefs ();
8604 /* Store the end of the function, so that we get good line number
8605 info for the epilogue. */
8606 cfun
->function_end_locus
= input_location
;
8608 /* Finalize the ELF visibility for the function. */
8609 c_determine_visibility (fndecl
);
8611 /* For GNU C extern inline functions disregard inline limits. */
8612 if (DECL_EXTERNAL (fndecl
)
8613 && DECL_DECLARED_INLINE_P (fndecl
))
8614 DECL_DISREGARD_INLINE_LIMITS (fndecl
) = 1;
8616 /* Genericize before inlining. Delay genericizing nested functions
8617 until their parent function is genericized. Since finalizing
8618 requires GENERIC, delay that as well. */
8620 if (DECL_INITIAL (fndecl
) && DECL_INITIAL (fndecl
) != error_mark_node
8621 && !undef_nested_function
)
8623 if (!decl_function_context (fndecl
))
8625 invoke_plugin_callbacks (PLUGIN_PRE_GENERICIZE
, fndecl
);
8626 /* Lower to GENERIC form before finalization. */
8627 lang_hooks
.genericize (fndecl
);
8629 /* ??? Objc emits functions after finalizing the compilation unit.
8630 This should be cleaned up later and this conditional removed. */
8631 if (cgraph_global_info_ready
)
8633 cgraph_add_new_function (fndecl
, false);
8636 cgraph_finalize_function (fndecl
, false);
8640 /* Register this function with cgraph just far enough to get it
8641 added to our parent's nested function list. Handy, since the
8642 C front end doesn't have such a list. */
8643 (void) cgraph_get_create_node (fndecl
);
8647 if (!decl_function_context (fndecl
))
8648 undef_nested_function
= false;
8650 if (cfun
->language
!= NULL
)
8652 ggc_free (cfun
->language
);
8653 cfun
->language
= NULL
;
8656 /* We're leaving the context of this function, so zap cfun.
8657 It's still in DECL_STRUCT_FUNCTION, and we'll restore it in
8658 tree_rest_of_compilation. */
8660 current_function_decl
= NULL
;
8663 /* Check the declarations given in a for-loop for satisfying the C99
8664 constraints. If exactly one such decl is found, return it. LOC is
8665 the location of the opening parenthesis of the for loop. The last
8666 parameter allows you to control the "for loop initial declarations
8667 are only allowed in C99 mode". Normally, you should pass
8668 flag_isoc99 as that parameter. But in some cases (Objective-C
8669 foreach loop, for example) we want to run the checks in this
8670 function even if not in C99 mode, so we allow the caller to turn
8671 off the error about not being in C99 mode.
8675 check_for_loop_decls (location_t loc
, bool turn_off_iso_c99_error
)
8677 struct c_binding
*b
;
8678 tree one_decl
= NULL_TREE
;
8681 if (!turn_off_iso_c99_error
)
8683 static bool hint
= true;
8684 /* If we get here, declarations have been used in a for loop without
8685 the C99 for loop scope. This doesn't make much sense, so don't
8687 error_at (loc
, "%<for%> loop initial declarations "
8688 "are only allowed in C99 mode");
8692 "use option -std=c99 or -std=gnu99 to compile your code");
8697 /* C99 subclause 6.8.5 paragraph 3:
8699 [#3] The declaration part of a for statement shall only
8700 declare identifiers for objects having storage class auto or
8703 It isn't clear whether, in this sentence, "identifiers" binds to
8704 "shall only declare" or to "objects" - that is, whether all identifiers
8705 declared must be identifiers for objects, or whether the restriction
8706 only applies to those that are. (A question on this in comp.std.c
8707 in November 2000 received no answer.) We implement the strictest
8708 interpretation, to avoid creating an extension which later causes
8711 for (b
= current_scope
->bindings
; b
; b
= b
->prev
)
8714 tree decl
= b
->decl
;
8719 switch (TREE_CODE (decl
))
8723 location_t decl_loc
= DECL_SOURCE_LOCATION (decl
);
8724 if (TREE_STATIC (decl
))
8726 "declaration of static variable %qD in %<for%> loop "
8727 "initial declaration", decl
);
8728 else if (DECL_EXTERNAL (decl
))
8730 "declaration of %<extern%> variable %qD in %<for%> loop "
8731 "initial declaration", decl
);
8737 "%<struct %E%> declared in %<for%> loop initial "
8742 "%<union %E%> declared in %<for%> loop initial declaration",
8746 error_at (loc
, "%<enum %E%> declared in %<for%> loop "
8747 "initial declaration", id
);
8750 error_at (loc
, "declaration of non-variable "
8751 "%qD in %<for%> loop initial declaration", decl
);
8758 return n_decls
== 1 ? one_decl
: NULL_TREE
;
8761 /* Save and reinitialize the variables
8762 used during compilation of a C function. */
8765 c_push_function_context (void)
8767 struct language_function
*p
= cfun
->language
;
8768 /* cfun->language might have been already allocated by the use of
8769 -Wunused-local-typedefs. In that case, just re-use it. */
8771 cfun
->language
= p
= ggc_alloc_cleared_language_function ();
8773 p
->base
.x_stmt_tree
= c_stmt_tree
;
8774 c_stmt_tree
.x_cur_stmt_list
= vec_safe_copy (c_stmt_tree
.x_cur_stmt_list
);
8775 p
->x_break_label
= c_break_label
;
8776 p
->x_cont_label
= c_cont_label
;
8777 p
->x_switch_stack
= c_switch_stack
;
8778 p
->arg_info
= current_function_arg_info
;
8779 p
->returns_value
= current_function_returns_value
;
8780 p
->returns_null
= current_function_returns_null
;
8781 p
->returns_abnormally
= current_function_returns_abnormally
;
8782 p
->warn_about_return_type
= warn_about_return_type
;
8784 push_function_context ();
8787 /* Restore the variables used during compilation of a C function. */
8790 c_pop_function_context (void)
8792 struct language_function
*p
;
8794 pop_function_context ();
8797 /* When -Wunused-local-typedefs is in effect, cfun->languages is
8798 used to store data throughout the life time of the current cfun,
8799 So don't deallocate it. */
8800 if (!warn_unused_local_typedefs
)
8801 cfun
->language
= NULL
;
8803 if (DECL_STRUCT_FUNCTION (current_function_decl
) == 0
8804 && DECL_SAVED_TREE (current_function_decl
) == NULL_TREE
)
8806 /* Stop pointing to the local nodes about to be freed. */
8807 /* But DECL_INITIAL must remain nonzero so we know this
8808 was an actual function definition. */
8809 DECL_INITIAL (current_function_decl
) = error_mark_node
;
8810 DECL_ARGUMENTS (current_function_decl
) = 0;
8813 c_stmt_tree
= p
->base
.x_stmt_tree
;
8814 p
->base
.x_stmt_tree
.x_cur_stmt_list
= NULL
;
8815 c_break_label
= p
->x_break_label
;
8816 c_cont_label
= p
->x_cont_label
;
8817 c_switch_stack
= p
->x_switch_stack
;
8818 current_function_arg_info
= p
->arg_info
;
8819 current_function_returns_value
= p
->returns_value
;
8820 current_function_returns_null
= p
->returns_null
;
8821 current_function_returns_abnormally
= p
->returns_abnormally
;
8822 warn_about_return_type
= p
->warn_about_return_type
;
8825 /* The functions below are required for functionality of doing
8826 function at once processing in the C front end. Currently these
8827 functions are not called from anywhere in the C front end, but as
8828 these changes continue, that will change. */
8830 /* Returns the stmt_tree (if any) to which statements are currently
8831 being added. If there is no active statement-tree, NULL is
8835 current_stmt_tree (void)
8837 return &c_stmt_tree
;
8840 /* Return the global value of T as a symbol. */
8843 identifier_global_value (tree t
)
8845 struct c_binding
*b
;
8847 for (b
= I_SYMBOL_BINDING (t
); b
; b
= b
->shadowed
)
8848 if (B_IN_FILE_SCOPE (b
) || B_IN_EXTERNAL_SCOPE (b
))
8854 /* In C, the only C-linkage public declaration is at file scope. */
8857 c_linkage_bindings (tree name
)
8859 return identifier_global_value (name
);
8862 /* Record a builtin type for C. If NAME is non-NULL, it is the name used;
8863 otherwise the name is found in ridpointers from RID_INDEX. */
8866 record_builtin_type (enum rid rid_index
, const char *name
, tree type
)
8870 id
= ridpointers
[(int) rid_index
];
8872 id
= get_identifier (name
);
8873 decl
= build_decl (UNKNOWN_LOCATION
, TYPE_DECL
, id
, type
);
8875 if (debug_hooks
->type_decl
)
8876 debug_hooks
->type_decl (decl
, false);
8879 /* Build the void_list_node (void_type_node having been created). */
8881 build_void_list_node (void)
8883 tree t
= build_tree_list (NULL_TREE
, void_type_node
);
8887 /* Return a c_parm structure with the given SPECS, ATTRS and DECLARATOR. */
8890 build_c_parm (struct c_declspecs
*specs
, tree attrs
,
8891 struct c_declarator
*declarator
)
8893 struct c_parm
*ret
= XOBNEW (&parser_obstack
, struct c_parm
);
8896 ret
->declarator
= declarator
;
8900 /* Return a declarator with nested attributes. TARGET is the inner
8901 declarator to which these attributes apply. ATTRS are the
8904 struct c_declarator
*
8905 build_attrs_declarator (tree attrs
, struct c_declarator
*target
)
8907 struct c_declarator
*ret
= XOBNEW (&parser_obstack
, struct c_declarator
);
8908 ret
->kind
= cdk_attrs
;
8909 ret
->declarator
= target
;
8910 ret
->u
.attrs
= attrs
;
8914 /* Return a declarator for a function with arguments specified by ARGS
8915 and return type specified by TARGET. */
8917 struct c_declarator
*
8918 build_function_declarator (struct c_arg_info
*args
,
8919 struct c_declarator
*target
)
8921 struct c_declarator
*ret
= XOBNEW (&parser_obstack
, struct c_declarator
);
8922 ret
->kind
= cdk_function
;
8923 ret
->declarator
= target
;
8924 ret
->u
.arg_info
= args
;
8928 /* Return a declarator for the identifier IDENT (which may be
8929 NULL_TREE for an abstract declarator). */
8931 struct c_declarator
*
8932 build_id_declarator (tree ident
)
8934 struct c_declarator
*ret
= XOBNEW (&parser_obstack
, struct c_declarator
);
8936 ret
->declarator
= 0;
8938 /* Default value - may get reset to a more precise location. */
8939 ret
->id_loc
= input_location
;
8943 /* Return something to represent absolute declarators containing a *.
8944 TARGET is the absolute declarator that the * contains.
8945 TYPE_QUALS_ATTRS is a structure for type qualifiers and attributes
8946 to apply to the pointer type. */
8948 struct c_declarator
*
8949 make_pointer_declarator (struct c_declspecs
*type_quals_attrs
,
8950 struct c_declarator
*target
)
8954 tree upc_layout_qual
= 0;
8955 struct c_declarator
*itarget
= target
;
8956 struct c_declarator
*ret
= XOBNEW (&parser_obstack
, struct c_declarator
);
8957 if (type_quals_attrs
)
8959 attrs
= type_quals_attrs
->attrs
;
8960 quals
= quals_from_declspecs (type_quals_attrs
);
8961 upc_layout_qual
= type_quals_attrs
->upc_layout_qualifier
;
8962 if (attrs
!= NULL_TREE
)
8963 itarget
= build_attrs_declarator (attrs
, target
);
8965 ret
->kind
= cdk_pointer
;
8966 ret
->declarator
= itarget
;
8967 ret
->u
.pointer
.quals
= quals
;
8968 ret
->u
.pointer
.upc_layout_qual
= upc_layout_qual
;
8972 /* Return a pointer to a structure for an empty list of declaration
8975 struct c_declspecs
*
8976 build_null_declspecs (void)
8978 struct c_declspecs
*ret
= XOBNEW (&parser_obstack
, struct c_declspecs
);
8979 memset (&ret
->locations
, 0, cdw_number_of_elements
);
8984 ret
->upc_layout_qualifier
= 0;
8985 ret
->align_log
= -1;
8986 ret
->typespec_word
= cts_none
;
8987 ret
->storage_class
= csc_none
;
8988 ret
->expr_const_operands
= true;
8989 ret
->declspecs_seen_p
= false;
8990 ret
->typespec_kind
= ctsk_none
;
8991 ret
->non_sc_seen_p
= false;
8992 ret
->typedef_p
= false;
8993 ret
->explicit_signed_p
= false;
8994 ret
->deprecated_p
= false;
8995 ret
->default_int_p
= false;
8996 ret
->long_p
= false;
8997 ret
->long_long_p
= false;
8998 ret
->short_p
= false;
8999 ret
->signed_p
= false;
9000 ret
->unsigned_p
= false;
9001 ret
->complex_p
= false;
9002 ret
->inline_p
= false;
9003 ret
->noreturn_p
= false;
9004 ret
->thread_p
= false;
9005 ret
->const_p
= false;
9006 ret
->volatile_p
= false;
9007 ret
->restrict_p
= false;
9008 ret
->shared_p
= false;
9009 ret
->strict_p
= false;
9010 ret
->relaxed_p
= false;
9011 ret
->saturating_p
= false;
9012 ret
->alignas_p
= false;
9013 ret
->address_space
= ADDR_SPACE_GENERIC
;
9017 /* Add the address space ADDRSPACE to the declaration specifiers
9018 SPECS, returning SPECS. */
9020 struct c_declspecs
*
9021 declspecs_add_addrspace (source_location location
,
9022 struct c_declspecs
*specs
, addr_space_t as
)
9024 specs
->non_sc_seen_p
= true;
9025 specs
->declspecs_seen_p
= true;
9027 if (!ADDR_SPACE_GENERIC_P (specs
->address_space
)
9028 && specs
->address_space
!= as
)
9029 error ("incompatible address space qualifiers %qs and %qs",
9030 c_addr_space_name (as
),
9031 c_addr_space_name (specs
->address_space
));
9034 specs
->address_space
= as
;
9035 specs
->locations
[cdw_address_space
] = location
;
9040 /* Add the type qualifier QUAL to the declaration specifiers SPECS,
9043 struct c_declspecs
*
9044 declspecs_add_qual (source_location loc
,
9045 struct c_declspecs
*specs
, tree qual
)
9049 specs
->non_sc_seen_p
= true;
9050 specs
->declspecs_seen_p
= true;
9052 /* A UPC layout qualifier is encoded as an ARRAY_REF,
9053 further, it implies the presence of the 'shared' keyword. */
9054 if (TREE_CODE (qual
) == ARRAY_REF
)
9056 if (specs
->upc_layout_qualifier
)
9058 error ("two or more layout qualifiers specified");
9063 specs
->upc_layout_qualifier
= qual
;
9064 qual
= ridpointers
[RID_SHARED
];
9068 gcc_assert (TREE_CODE (qual
) == IDENTIFIER_NODE
9069 && C_IS_RESERVED_WORD (qual
));
9070 i
= C_RID_CODE (qual
);
9074 dupe
= specs
->const_p
;
9075 specs
->const_p
= true;
9076 specs
->locations
[cdw_const
] = loc
;
9079 dupe
= specs
->volatile_p
;
9080 specs
->volatile_p
= true;
9081 specs
->locations
[cdw_volatile
] = loc
;
9084 dupe
= specs
->restrict_p
;
9085 specs
->restrict_p
= true;
9086 specs
->locations
[cdw_restrict
] = loc
;
9089 dupe
= specs
->shared_p
;
9090 specs
->shared_p
= true;
9093 dupe
= specs
->strict_p
;
9094 specs
->strict_p
= true;
9097 dupe
= specs
->relaxed_p
;
9098 specs
->relaxed_p
= true;
9103 if (dupe
&& !flag_isoc99
)
9104 pedwarn (loc
, OPT_Wpedantic
, "duplicate %qE", qual
);
9108 /* Add the type specifier TYPE to the declaration specifiers SPECS,
9111 struct c_declspecs
*
9112 declspecs_add_type (location_t loc
, struct c_declspecs
*specs
,
9113 struct c_typespec spec
)
9115 tree type
= spec
.spec
;
9116 specs
->non_sc_seen_p
= true;
9117 specs
->declspecs_seen_p
= true;
9118 specs
->typespec_kind
= spec
.kind
;
9119 if (TREE_DEPRECATED (type
))
9120 specs
->deprecated_p
= true;
9122 /* Handle type specifier keywords. */
9123 if (TREE_CODE (type
) == IDENTIFIER_NODE
9124 && C_IS_RESERVED_WORD (type
)
9125 && C_RID_CODE (type
) != RID_CXX_COMPAT_WARN
)
9127 enum rid i
= C_RID_CODE (type
);
9130 error_at (loc
, "two or more data types in declaration specifiers");
9133 if ((int) i
<= (int) RID_LAST_MODIFIER
)
9135 /* "long", "short", "signed", "unsigned", "_Complex" or "_Sat". */
9140 if (specs
->long_long_p
)
9142 error_at (loc
, "%<long long long%> is too long for GCC");
9147 if (specs
->typespec_word
== cts_double
)
9150 ("both %<long long%> and %<double%> in "
9151 "declaration specifiers"));
9154 pedwarn_c90 (loc
, OPT_Wlong_long
,
9155 "ISO C90 does not support %<long long%>");
9156 specs
->long_long_p
= 1;
9157 specs
->locations
[cdw_long_long
] = loc
;
9162 ("both %<long%> and %<short%> in "
9163 "declaration specifiers"));
9164 else if (specs
->typespec_word
== cts_void
)
9166 ("both %<long%> and %<void%> in "
9167 "declaration specifiers"));
9168 else if (specs
->typespec_word
== cts_int128
)
9170 ("both %<long%> and %<__int128%> in "
9171 "declaration specifiers"));
9172 else if (specs
->typespec_word
== cts_bool
)
9174 ("both %<long%> and %<_Bool%> in "
9175 "declaration specifiers"));
9176 else if (specs
->typespec_word
== cts_char
)
9178 ("both %<long%> and %<char%> in "
9179 "declaration specifiers"));
9180 else if (specs
->typespec_word
== cts_float
)
9182 ("both %<long%> and %<float%> in "
9183 "declaration specifiers"));
9184 else if (specs
->typespec_word
== cts_dfloat32
)
9186 ("both %<long%> and %<_Decimal32%> in "
9187 "declaration specifiers"));
9188 else if (specs
->typespec_word
== cts_dfloat64
)
9190 ("both %<long%> and %<_Decimal64%> in "
9191 "declaration specifiers"));
9192 else if (specs
->typespec_word
== cts_dfloat128
)
9194 ("both %<long%> and %<_Decimal128%> in "
9195 "declaration specifiers"));
9198 specs
->long_p
= true;
9199 specs
->locations
[cdw_long
] = loc
;
9203 dupe
= specs
->short_p
;
9206 ("both %<long%> and %<short%> in "
9207 "declaration specifiers"));
9208 else if (specs
->typespec_word
== cts_void
)
9210 ("both %<short%> and %<void%> in "
9211 "declaration specifiers"));
9212 else if (specs
->typespec_word
== cts_int128
)
9214 ("both %<short%> and %<__int128%> in "
9215 "declaration specifiers"));
9216 else if (specs
->typespec_word
== cts_bool
)
9218 ("both %<short%> and %<_Bool%> in "
9219 "declaration specifiers"));
9220 else if (specs
->typespec_word
== cts_char
)
9222 ("both %<short%> and %<char%> in "
9223 "declaration specifiers"));
9224 else if (specs
->typespec_word
== cts_float
)
9226 ("both %<short%> and %<float%> in "
9227 "declaration specifiers"));
9228 else if (specs
->typespec_word
== cts_double
)
9230 ("both %<short%> and %<double%> in "
9231 "declaration specifiers"));
9232 else if (specs
->typespec_word
== cts_dfloat32
)
9234 ("both %<short%> and %<_Decimal32%> in "
9235 "declaration specifiers"));
9236 else if (specs
->typespec_word
== cts_dfloat64
)
9238 ("both %<short%> and %<_Decimal64%> in "
9239 "declaration specifiers"));
9240 else if (specs
->typespec_word
== cts_dfloat128
)
9242 ("both %<short%> and %<_Decimal128%> in "
9243 "declaration specifiers"));
9246 specs
->short_p
= true;
9247 specs
->locations
[cdw_short
] = loc
;
9251 dupe
= specs
->signed_p
;
9252 if (specs
->unsigned_p
)
9254 ("both %<signed%> and %<unsigned%> in "
9255 "declaration specifiers"));
9256 else if (specs
->typespec_word
== cts_void
)
9258 ("both %<signed%> and %<void%> in "
9259 "declaration specifiers"));
9260 else if (specs
->typespec_word
== cts_bool
)
9262 ("both %<signed%> and %<_Bool%> in "
9263 "declaration specifiers"));
9264 else if (specs
->typespec_word
== cts_float
)
9266 ("both %<signed%> and %<float%> in "
9267 "declaration specifiers"));
9268 else if (specs
->typespec_word
== cts_double
)
9270 ("both %<signed%> and %<double%> in "
9271 "declaration specifiers"));
9272 else if (specs
->typespec_word
== cts_dfloat32
)
9274 ("both %<signed%> and %<_Decimal32%> in "
9275 "declaration specifiers"));
9276 else if (specs
->typespec_word
== cts_dfloat64
)
9278 ("both %<signed%> and %<_Decimal64%> in "
9279 "declaration specifiers"));
9280 else if (specs
->typespec_word
== cts_dfloat128
)
9282 ("both %<signed%> and %<_Decimal128%> in "
9283 "declaration specifiers"));
9286 specs
->signed_p
= true;
9287 specs
->locations
[cdw_signed
] = loc
;
9291 dupe
= specs
->unsigned_p
;
9292 if (specs
->signed_p
)
9294 ("both %<signed%> and %<unsigned%> in "
9295 "declaration specifiers"));
9296 else if (specs
->typespec_word
== cts_void
)
9298 ("both %<unsigned%> and %<void%> in "
9299 "declaration specifiers"));
9300 else if (specs
->typespec_word
== cts_bool
)
9302 ("both %<unsigned%> and %<_Bool%> in "
9303 "declaration specifiers"));
9304 else if (specs
->typespec_word
== cts_float
)
9306 ("both %<unsigned%> and %<float%> in "
9307 "declaration specifiers"));
9308 else if (specs
->typespec_word
== cts_double
)
9310 ("both %<unsigned%> and %<double%> in "
9311 "declaration specifiers"));
9312 else if (specs
->typespec_word
== cts_dfloat32
)
9314 ("both %<unsigned%> and %<_Decimal32%> in "
9315 "declaration specifiers"));
9316 else if (specs
->typespec_word
== cts_dfloat64
)
9318 ("both %<unsigned%> and %<_Decimal64%> in "
9319 "declaration specifiers"));
9320 else if (specs
->typespec_word
== cts_dfloat128
)
9322 ("both %<unsigned%> and %<_Decimal128%> in "
9323 "declaration specifiers"));
9326 specs
->unsigned_p
= true;
9327 specs
->locations
[cdw_unsigned
] = loc
;
9331 dupe
= specs
->complex_p
;
9332 if (!flag_isoc99
&& !in_system_header_at (loc
))
9333 pedwarn (loc
, OPT_Wpedantic
,
9334 "ISO C90 does not support complex types");
9335 if (specs
->typespec_word
== cts_void
)
9337 ("both %<complex%> and %<void%> in "
9338 "declaration specifiers"));
9339 else if (specs
->typespec_word
== cts_bool
)
9341 ("both %<complex%> and %<_Bool%> in "
9342 "declaration specifiers"));
9343 else if (specs
->typespec_word
== cts_dfloat32
)
9345 ("both %<complex%> and %<_Decimal32%> in "
9346 "declaration specifiers"));
9347 else if (specs
->typespec_word
== cts_dfloat64
)
9349 ("both %<complex%> and %<_Decimal64%> in "
9350 "declaration specifiers"));
9351 else if (specs
->typespec_word
== cts_dfloat128
)
9353 ("both %<complex%> and %<_Decimal128%> in "
9354 "declaration specifiers"));
9355 else if (specs
->typespec_word
== cts_fract
)
9357 ("both %<complex%> and %<_Fract%> in "
9358 "declaration specifiers"));
9359 else if (specs
->typespec_word
== cts_accum
)
9361 ("both %<complex%> and %<_Accum%> in "
9362 "declaration specifiers"));
9363 else if (specs
->saturating_p
)
9365 ("both %<complex%> and %<_Sat%> in "
9366 "declaration specifiers"));
9369 specs
->complex_p
= true;
9370 specs
->locations
[cdw_complex
] = loc
;
9374 dupe
= specs
->saturating_p
;
9375 pedwarn (loc
, OPT_Wpedantic
,
9376 "ISO C does not support saturating types");
9377 if (specs
->typespec_word
== cts_int128
)
9380 ("both %<_Sat%> and %<__int128%> in "
9381 "declaration specifiers"));
9383 else if (specs
->typespec_word
== cts_void
)
9385 ("both %<_Sat%> and %<void%> in "
9386 "declaration specifiers"));
9387 else if (specs
->typespec_word
== cts_bool
)
9389 ("both %<_Sat%> and %<_Bool%> in "
9390 "declaration specifiers"));
9391 else if (specs
->typespec_word
== cts_char
)
9393 ("both %<_Sat%> and %<char%> in "
9394 "declaration specifiers"));
9395 else if (specs
->typespec_word
== cts_int
)
9397 ("both %<_Sat%> and %<int%> in "
9398 "declaration specifiers"));
9399 else if (specs
->typespec_word
== cts_float
)
9401 ("both %<_Sat%> and %<float%> in "
9402 "declaration specifiers"));
9403 else if (specs
->typespec_word
== cts_double
)
9405 ("both %<_Sat%> and %<double%> in "
9406 "declaration specifiers"));
9407 else if (specs
->typespec_word
== cts_dfloat32
)
9409 ("both %<_Sat%> and %<_Decimal32%> in "
9410 "declaration specifiers"));
9411 else if (specs
->typespec_word
== cts_dfloat64
)
9413 ("both %<_Sat%> and %<_Decimal64%> in "
9414 "declaration specifiers"));
9415 else if (specs
->typespec_word
== cts_dfloat128
)
9417 ("both %<_Sat%> and %<_Decimal128%> in "
9418 "declaration specifiers"));
9419 else if (specs
->complex_p
)
9421 ("both %<_Sat%> and %<complex%> in "
9422 "declaration specifiers"));
9425 specs
->saturating_p
= true;
9426 specs
->locations
[cdw_saturating
] = loc
;
9434 error_at (loc
, "duplicate %qE", type
);
9440 /* "void", "_Bool", "char", "int", "float", "double", "_Decimal32",
9441 "__int128", "_Decimal64", "_Decimal128", "_Fract" or "_Accum". */
9442 if (specs
->typespec_word
!= cts_none
)
9445 "two or more data types in declaration specifiers");
9451 if (int128_integer_type_node
== NULL_TREE
)
9453 error_at (loc
, "%<__int128%> is not supported for this target");
9456 if (!in_system_header
)
9457 pedwarn (loc
, OPT_Wpedantic
,
9458 "ISO C does not support %<__int128%> type");
9462 ("both %<__int128%> and %<long%> in "
9463 "declaration specifiers"));
9464 else if (specs
->saturating_p
)
9466 ("both %<_Sat%> and %<__int128%> in "
9467 "declaration specifiers"));
9468 else if (specs
->short_p
)
9470 ("both %<__int128%> and %<short%> in "
9471 "declaration specifiers"));
9474 specs
->typespec_word
= cts_int128
;
9475 specs
->locations
[cdw_typespec
] = loc
;
9481 ("both %<long%> and %<void%> in "
9482 "declaration specifiers"));
9483 else if (specs
->short_p
)
9485 ("both %<short%> and %<void%> in "
9486 "declaration specifiers"));
9487 else if (specs
->signed_p
)
9489 ("both %<signed%> and %<void%> in "
9490 "declaration specifiers"));
9491 else if (specs
->unsigned_p
)
9493 ("both %<unsigned%> and %<void%> in "
9494 "declaration specifiers"));
9495 else if (specs
->complex_p
)
9497 ("both %<complex%> and %<void%> in "
9498 "declaration specifiers"));
9499 else if (specs
->saturating_p
)
9501 ("both %<_Sat%> and %<void%> in "
9502 "declaration specifiers"));
9505 specs
->typespec_word
= cts_void
;
9506 specs
->locations
[cdw_typespec
] = loc
;
9512 ("both %<long%> and %<_Bool%> in "
9513 "declaration specifiers"));
9514 else if (specs
->short_p
)
9516 ("both %<short%> and %<_Bool%> in "
9517 "declaration specifiers"));
9518 else if (specs
->signed_p
)
9520 ("both %<signed%> and %<_Bool%> in "
9521 "declaration specifiers"));
9522 else if (specs
->unsigned_p
)
9524 ("both %<unsigned%> and %<_Bool%> in "
9525 "declaration specifiers"));
9526 else if (specs
->complex_p
)
9528 ("both %<complex%> and %<_Bool%> in "
9529 "declaration specifiers"));
9530 else if (specs
->saturating_p
)
9532 ("both %<_Sat%> and %<_Bool%> in "
9533 "declaration specifiers"));
9536 specs
->typespec_word
= cts_bool
;
9537 specs
->locations
[cdw_typespec
] = loc
;
9543 ("both %<long%> and %<char%> in "
9544 "declaration specifiers"));
9545 else if (specs
->short_p
)
9547 ("both %<short%> and %<char%> in "
9548 "declaration specifiers"));
9549 else if (specs
->saturating_p
)
9551 ("both %<_Sat%> and %<char%> in "
9552 "declaration specifiers"));
9555 specs
->typespec_word
= cts_char
;
9556 specs
->locations
[cdw_typespec
] = loc
;
9560 if (specs
->saturating_p
)
9562 ("both %<_Sat%> and %<int%> in "
9563 "declaration specifiers"));
9566 specs
->typespec_word
= cts_int
;
9567 specs
->locations
[cdw_typespec
] = loc
;
9573 ("both %<long%> and %<float%> in "
9574 "declaration specifiers"));
9575 else if (specs
->short_p
)
9577 ("both %<short%> and %<float%> in "
9578 "declaration specifiers"));
9579 else if (specs
->signed_p
)
9581 ("both %<signed%> and %<float%> in "
9582 "declaration specifiers"));
9583 else if (specs
->unsigned_p
)
9585 ("both %<unsigned%> and %<float%> in "
9586 "declaration specifiers"));
9587 else if (specs
->saturating_p
)
9589 ("both %<_Sat%> and %<float%> in "
9590 "declaration specifiers"));
9593 specs
->typespec_word
= cts_float
;
9594 specs
->locations
[cdw_typespec
] = loc
;
9598 if (specs
->long_long_p
)
9600 ("both %<long long%> and %<double%> in "
9601 "declaration specifiers"));
9602 else if (specs
->short_p
)
9604 ("both %<short%> and %<double%> in "
9605 "declaration specifiers"));
9606 else if (specs
->signed_p
)
9608 ("both %<signed%> and %<double%> in "
9609 "declaration specifiers"));
9610 else if (specs
->unsigned_p
)
9612 ("both %<unsigned%> and %<double%> in "
9613 "declaration specifiers"));
9614 else if (specs
->saturating_p
)
9616 ("both %<_Sat%> and %<double%> in "
9617 "declaration specifiers"));
9620 specs
->typespec_word
= cts_double
;
9621 specs
->locations
[cdw_typespec
] = loc
;
9629 if (i
== RID_DFLOAT32
)
9631 else if (i
== RID_DFLOAT64
)
9634 str
= "_Decimal128";
9635 if (specs
->long_long_p
)
9637 ("both %<long long%> and %<%s%> in "
9638 "declaration specifiers"),
9642 ("both %<long%> and %<%s%> in "
9643 "declaration specifiers"),
9645 else if (specs
->short_p
)
9647 ("both %<short%> and %<%s%> in "
9648 "declaration specifiers"),
9650 else if (specs
->signed_p
)
9652 ("both %<signed%> and %<%s%> in "
9653 "declaration specifiers"),
9655 else if (specs
->unsigned_p
)
9657 ("both %<unsigned%> and %<%s%> in "
9658 "declaration specifiers"),
9660 else if (specs
->complex_p
)
9662 ("both %<complex%> and %<%s%> in "
9663 "declaration specifiers"),
9665 else if (specs
->saturating_p
)
9667 ("both %<_Sat%> and %<%s%> in "
9668 "declaration specifiers"),
9670 else if (i
== RID_DFLOAT32
)
9671 specs
->typespec_word
= cts_dfloat32
;
9672 else if (i
== RID_DFLOAT64
)
9673 specs
->typespec_word
= cts_dfloat64
;
9675 specs
->typespec_word
= cts_dfloat128
;
9676 specs
->locations
[cdw_typespec
] = loc
;
9678 if (!targetm
.decimal_float_supported_p ())
9680 ("decimal floating point not supported "
9681 "for this target"));
9682 pedwarn (loc
, OPT_Wpedantic
,
9683 "ISO C does not support decimal floating point");
9693 if (specs
->complex_p
)
9695 ("both %<complex%> and %<%s%> in "
9696 "declaration specifiers"),
9698 else if (i
== RID_FRACT
)
9699 specs
->typespec_word
= cts_fract
;
9701 specs
->typespec_word
= cts_accum
;
9702 specs
->locations
[cdw_typespec
] = loc
;
9704 if (!targetm
.fixed_point_supported_p ())
9706 "fixed-point types not supported for this target");
9707 pedwarn (loc
, OPT_Wpedantic
,
9708 "ISO C does not support fixed-point types");
9711 /* ObjC reserved word "id", handled below. */
9717 /* Now we have a typedef (a TYPE_DECL node), an identifier (some
9718 form of ObjC type, cases such as "int" and "long" being handled
9719 above), a TYPE (struct, union, enum and typeof specifiers) or an
9720 ERROR_MARK. In none of these cases may there have previously
9721 been any type specifiers. */
9722 if (specs
->type
|| specs
->typespec_word
!= cts_none
9723 || specs
->long_p
|| specs
->short_p
|| specs
->signed_p
9724 || specs
->unsigned_p
|| specs
->complex_p
)
9725 error_at (loc
, "two or more data types in declaration specifiers");
9726 else if (TREE_CODE (type
) == TYPE_DECL
)
9728 if (TREE_TYPE (type
) == error_mark_node
)
9729 ; /* Allow the type to default to int to avoid cascading errors. */
9732 specs
->type
= TREE_TYPE (type
);
9733 specs
->decl_attr
= DECL_ATTRIBUTES (type
);
9734 specs
->typedef_p
= true;
9735 specs
->explicit_signed_p
= C_TYPEDEF_EXPLICITLY_SIGNED (type
);
9736 specs
->locations
[cdw_typedef
] = loc
;
9738 /* If this typedef name is defined in a struct, then a C++
9739 lookup would return a different value. */
9741 && I_SYMBOL_BINDING (DECL_NAME (type
))->in_struct
)
9742 warning_at (loc
, OPT_Wc___compat
,
9743 "C++ lookup of %qD would return a field, not a type",
9746 /* If we are parsing a struct, record that a struct field
9748 if (warn_cxx_compat
&& struct_parse_info
!= NULL
)
9749 struct_parse_info
->typedefs_seen
.safe_push (type
);
9752 else if (TREE_CODE (type
) == IDENTIFIER_NODE
)
9754 tree t
= lookup_name (type
);
9755 if (!t
|| TREE_CODE (t
) != TYPE_DECL
)
9756 error_at (loc
, "%qE fails to be a typedef or built in type", type
);
9757 else if (TREE_TYPE (t
) == error_mark_node
)
9761 specs
->type
= TREE_TYPE (t
);
9762 specs
->locations
[cdw_typespec
] = loc
;
9767 if (TREE_CODE (type
) != ERROR_MARK
&& spec
.kind
== ctsk_typeof
)
9769 specs
->typedef_p
= true;
9770 specs
->locations
[cdw_typedef
] = loc
;
9774 specs
->expr
= build2 (COMPOUND_EXPR
, TREE_TYPE (spec
.expr
),
9775 specs
->expr
, spec
.expr
);
9777 specs
->expr
= spec
.expr
;
9778 specs
->expr_const_operands
&= spec
.expr_const_operands
;
9787 /* Add the storage class specifier or function specifier SCSPEC to the
9788 declaration specifiers SPECS, returning SPECS. */
9790 struct c_declspecs
*
9791 declspecs_add_scspec (source_location loc
,
9792 struct c_declspecs
*specs
,
9796 enum c_storage_class n
= csc_none
;
9798 specs
->declspecs_seen_p
= true;
9799 gcc_assert (TREE_CODE (scspec
) == IDENTIFIER_NODE
9800 && C_IS_RESERVED_WORD (scspec
));
9801 i
= C_RID_CODE (scspec
);
9802 if (specs
->non_sc_seen_p
)
9803 warning (OPT_Wold_style_declaration
,
9804 "%qE is not at beginning of declaration", scspec
);
9808 /* C99 permits duplicate inline. Although of doubtful utility,
9809 it seems simplest to permit it in gnu89 mode as well, as
9810 there is also little utility in maintaining this as a
9811 difference between gnu89 and C99 inline. */
9813 specs
->inline_p
= true;
9814 specs
->locations
[cdw_inline
] = loc
;
9817 /* Duplicate _Noreturn is permitted. */
9819 specs
->noreturn_p
= true;
9820 specs
->locations
[cdw_noreturn
] = loc
;
9823 dupe
= specs
->thread_p
;
9824 if (specs
->storage_class
== csc_auto
)
9825 error ("%<__thread%> used with %<auto%>");
9826 else if (specs
->storage_class
== csc_register
)
9827 error ("%<__thread%> used with %<register%>");
9828 else if (specs
->storage_class
== csc_typedef
)
9829 error ("%<__thread%> used with %<typedef%>");
9832 specs
->thread_p
= true;
9833 specs
->locations
[cdw_thread
] = loc
;
9841 /* Diagnose "__thread extern". */
9842 if (specs
->thread_p
)
9843 error ("%<__thread%> before %<extern%>");
9850 /* Diagnose "__thread static". */
9851 if (specs
->thread_p
)
9852 error ("%<__thread%> before %<static%>");
9860 if (n
!= csc_none
&& n
== specs
->storage_class
)
9863 error ("duplicate %qE", scspec
);
9866 if (specs
->storage_class
!= csc_none
&& n
!= specs
->storage_class
)
9868 error ("multiple storage classes in declaration specifiers");
9872 specs
->storage_class
= n
;
9873 specs
->locations
[cdw_storage_class
] = loc
;
9874 if (n
!= csc_extern
&& n
!= csc_static
&& specs
->thread_p
)
9876 error ("%<__thread%> used with %qE", scspec
);
9877 specs
->thread_p
= false;
9884 /* Add the attributes ATTRS to the declaration specifiers SPECS,
9887 struct c_declspecs
*
9888 declspecs_add_attrs (source_location loc
, struct c_declspecs
*specs
, tree attrs
)
9890 specs
->attrs
= chainon (attrs
, specs
->attrs
);
9891 specs
->locations
[cdw_attributes
] = loc
;
9892 specs
->declspecs_seen_p
= true;
9896 /* Add an _Alignas specifier (expression ALIGN, or type whose
9897 alignment is ALIGN) to the declaration specifiers SPECS, returning
9899 struct c_declspecs
*
9900 declspecs_add_alignas (source_location loc
,
9901 struct c_declspecs
*specs
, tree align
)
9904 specs
->alignas_p
= true;
9905 specs
->locations
[cdw_alignas
] = loc
;
9906 if (align
== error_mark_node
)
9908 align_log
= check_user_alignment (align
, true);
9909 if (align_log
> specs
->align_log
)
9910 specs
->align_log
= align_log
;
9914 /* Combine "long", "short", "signed", "unsigned" and "_Complex" type
9915 specifiers with any other type specifier to determine the resulting
9916 type. This is where ISO C checks on complex types are made, since
9917 "_Complex long" is a prefix of the valid ISO C type "_Complex long
9920 struct c_declspecs
*
9921 finish_declspecs (struct c_declspecs
*specs
)
9923 /* If a type was specified as a whole, we have no modifiers and are
9925 if (specs
->type
!= NULL_TREE
)
9927 gcc_assert (!specs
->long_p
&& !specs
->long_long_p
&& !specs
->short_p
9928 && !specs
->signed_p
&& !specs
->unsigned_p
9929 && !specs
->complex_p
);
9931 /* Set a dummy type. */
9932 if (TREE_CODE (specs
->type
) == ERROR_MARK
)
9933 specs
->type
= integer_type_node
;
9937 /* If none of "void", "_Bool", "char", "int", "float" or "double"
9938 has been specified, treat it as "int" unless "_Complex" is
9939 present and there are no other specifiers. If we just have
9940 "_Complex", it is equivalent to "_Complex double", but e.g.
9941 "_Complex short" is equivalent to "_Complex short int". */
9942 if (specs
->typespec_word
== cts_none
)
9944 if (specs
->saturating_p
)
9946 error_at (specs
->locations
[cdw_saturating
],
9947 "%<_Sat%> is used without %<_Fract%> or %<_Accum%>");
9948 if (!targetm
.fixed_point_supported_p ())
9949 error_at (specs
->locations
[cdw_saturating
],
9950 "fixed-point types not supported for this target");
9951 specs
->typespec_word
= cts_fract
;
9953 else if (specs
->long_p
|| specs
->short_p
9954 || specs
->signed_p
|| specs
->unsigned_p
)
9956 specs
->typespec_word
= cts_int
;
9958 else if (specs
->complex_p
)
9960 specs
->typespec_word
= cts_double
;
9961 pedwarn (specs
->locations
[cdw_complex
], OPT_Wpedantic
,
9962 "ISO C does not support plain %<complex%> meaning "
9963 "%<double complex%>");
9967 specs
->typespec_word
= cts_int
;
9968 specs
->default_int_p
= true;
9969 /* We don't diagnose this here because grokdeclarator will
9970 give more specific diagnostics according to whether it is
9971 a function definition. */
9975 /* If "signed" was specified, record this to distinguish "int" and
9976 "signed int" in the case of a bit-field with
9977 -funsigned-bitfields. */
9978 specs
->explicit_signed_p
= specs
->signed_p
;
9980 /* Now compute the actual type. */
9981 switch (specs
->typespec_word
)
9984 gcc_assert (!specs
->long_p
&& !specs
->short_p
9985 && !specs
->signed_p
&& !specs
->unsigned_p
9986 && !specs
->complex_p
);
9987 specs
->type
= void_type_node
;
9990 gcc_assert (!specs
->long_p
&& !specs
->short_p
9991 && !specs
->signed_p
&& !specs
->unsigned_p
9992 && !specs
->complex_p
);
9993 specs
->type
= boolean_type_node
;
9996 gcc_assert (!specs
->long_p
&& !specs
->short_p
);
9997 gcc_assert (!(specs
->signed_p
&& specs
->unsigned_p
));
9998 if (specs
->signed_p
)
9999 specs
->type
= signed_char_type_node
;
10000 else if (specs
->unsigned_p
)
10001 specs
->type
= unsigned_char_type_node
;
10003 specs
->type
= char_type_node
;
10004 if (specs
->complex_p
)
10006 pedwarn (specs
->locations
[cdw_complex
], OPT_Wpedantic
,
10007 "ISO C does not support complex integer types");
10008 specs
->type
= build_complex_type (specs
->type
);
10012 gcc_assert (!specs
->long_p
&& !specs
->short_p
&& !specs
->long_long_p
);
10013 gcc_assert (!(specs
->signed_p
&& specs
->unsigned_p
));
10014 specs
->type
= (specs
->unsigned_p
10015 ? int128_unsigned_type_node
10016 : int128_integer_type_node
);
10017 if (specs
->complex_p
)
10019 pedwarn (specs
->locations
[cdw_complex
], OPT_Wpedantic
,
10020 "ISO C does not support complex integer types");
10021 specs
->type
= build_complex_type (specs
->type
);
10025 gcc_assert (!(specs
->long_p
&& specs
->short_p
));
10026 gcc_assert (!(specs
->signed_p
&& specs
->unsigned_p
));
10027 if (specs
->long_long_p
)
10028 specs
->type
= (specs
->unsigned_p
10029 ? long_long_unsigned_type_node
10030 : long_long_integer_type_node
);
10031 else if (specs
->long_p
)
10032 specs
->type
= (specs
->unsigned_p
10033 ? long_unsigned_type_node
10034 : long_integer_type_node
);
10035 else if (specs
->short_p
)
10036 specs
->type
= (specs
->unsigned_p
10037 ? short_unsigned_type_node
10038 : short_integer_type_node
);
10040 specs
->type
= (specs
->unsigned_p
10041 ? unsigned_type_node
10042 : integer_type_node
);
10043 if (specs
->complex_p
)
10045 pedwarn (specs
->locations
[cdw_complex
], OPT_Wpedantic
,
10046 "ISO C does not support complex integer types");
10047 specs
->type
= build_complex_type (specs
->type
);
10051 gcc_assert (!specs
->long_p
&& !specs
->short_p
10052 && !specs
->signed_p
&& !specs
->unsigned_p
);
10053 specs
->type
= (specs
->complex_p
10054 ? complex_float_type_node
10055 : float_type_node
);
10058 gcc_assert (!specs
->long_long_p
&& !specs
->short_p
10059 && !specs
->signed_p
&& !specs
->unsigned_p
);
10062 specs
->type
= (specs
->complex_p
10063 ? complex_long_double_type_node
10064 : long_double_type_node
);
10068 specs
->type
= (specs
->complex_p
10069 ? complex_double_type_node
10070 : double_type_node
);
10075 case cts_dfloat128
:
10076 gcc_assert (!specs
->long_p
&& !specs
->long_long_p
&& !specs
->short_p
10077 && !specs
->signed_p
&& !specs
->unsigned_p
&& !specs
->complex_p
);
10078 if (specs
->typespec_word
== cts_dfloat32
)
10079 specs
->type
= dfloat32_type_node
;
10080 else if (specs
->typespec_word
== cts_dfloat64
)
10081 specs
->type
= dfloat64_type_node
;
10083 specs
->type
= dfloat128_type_node
;
10086 gcc_assert (!specs
->complex_p
);
10087 if (!targetm
.fixed_point_supported_p ())
10088 specs
->type
= integer_type_node
;
10089 else if (specs
->saturating_p
)
10091 if (specs
->long_long_p
)
10092 specs
->type
= specs
->unsigned_p
10093 ? sat_unsigned_long_long_fract_type_node
10094 : sat_long_long_fract_type_node
;
10095 else if (specs
->long_p
)
10096 specs
->type
= specs
->unsigned_p
10097 ? sat_unsigned_long_fract_type_node
10098 : sat_long_fract_type_node
;
10099 else if (specs
->short_p
)
10100 specs
->type
= specs
->unsigned_p
10101 ? sat_unsigned_short_fract_type_node
10102 : sat_short_fract_type_node
;
10104 specs
->type
= specs
->unsigned_p
10105 ? sat_unsigned_fract_type_node
10106 : sat_fract_type_node
;
10110 if (specs
->long_long_p
)
10111 specs
->type
= specs
->unsigned_p
10112 ? unsigned_long_long_fract_type_node
10113 : long_long_fract_type_node
;
10114 else if (specs
->long_p
)
10115 specs
->type
= specs
->unsigned_p
10116 ? unsigned_long_fract_type_node
10117 : long_fract_type_node
;
10118 else if (specs
->short_p
)
10119 specs
->type
= specs
->unsigned_p
10120 ? unsigned_short_fract_type_node
10121 : short_fract_type_node
;
10123 specs
->type
= specs
->unsigned_p
10124 ? unsigned_fract_type_node
10129 gcc_assert (!specs
->complex_p
);
10130 if (!targetm
.fixed_point_supported_p ())
10131 specs
->type
= integer_type_node
;
10132 else if (specs
->saturating_p
)
10134 if (specs
->long_long_p
)
10135 specs
->type
= specs
->unsigned_p
10136 ? sat_unsigned_long_long_accum_type_node
10137 : sat_long_long_accum_type_node
;
10138 else if (specs
->long_p
)
10139 specs
->type
= specs
->unsigned_p
10140 ? sat_unsigned_long_accum_type_node
10141 : sat_long_accum_type_node
;
10142 else if (specs
->short_p
)
10143 specs
->type
= specs
->unsigned_p
10144 ? sat_unsigned_short_accum_type_node
10145 : sat_short_accum_type_node
;
10147 specs
->type
= specs
->unsigned_p
10148 ? sat_unsigned_accum_type_node
10149 : sat_accum_type_node
;
10153 if (specs
->long_long_p
)
10154 specs
->type
= specs
->unsigned_p
10155 ? unsigned_long_long_accum_type_node
10156 : long_long_accum_type_node
;
10157 else if (specs
->long_p
)
10158 specs
->type
= specs
->unsigned_p
10159 ? unsigned_long_accum_type_node
10160 : long_accum_type_node
;
10161 else if (specs
->short_p
)
10162 specs
->type
= specs
->unsigned_p
10163 ? unsigned_short_accum_type_node
10164 : short_accum_type_node
;
10166 specs
->type
= specs
->unsigned_p
10167 ? unsigned_accum_type_node
10172 gcc_unreachable ();
10178 /* A subroutine of c_write_global_declarations. Perform final processing
10179 on one file scope's declarations (or the external scope's declarations),
10183 c_write_global_declarations_1 (tree globals
)
10188 /* Process the decls in the order they were written. */
10189 for (decl
= globals
; decl
; decl
= DECL_CHAIN (decl
))
10191 /* Check for used but undefined static functions using the C
10192 standard's definition of "used", and set TREE_NO_WARNING so
10193 that check_global_declarations doesn't repeat the check. */
10194 if (TREE_CODE (decl
) == FUNCTION_DECL
10195 && DECL_INITIAL (decl
) == 0
10196 && DECL_EXTERNAL (decl
)
10197 && !TREE_PUBLIC (decl
)
10198 && C_DECL_USED (decl
))
10200 pedwarn (input_location
, 0, "%q+F used but never defined", decl
);
10201 TREE_NO_WARNING (decl
) = 1;
10204 wrapup_global_declaration_1 (decl
);
10209 reconsider
= false;
10210 for (decl
= globals
; decl
; decl
= DECL_CHAIN (decl
))
10211 reconsider
|= wrapup_global_declaration_2 (decl
);
10213 while (reconsider
);
10215 for (decl
= globals
; decl
; decl
= DECL_CHAIN (decl
))
10216 check_global_declaration_1 (decl
);
10219 /* A subroutine of c_write_global_declarations Emit debug information for each
10220 of the declarations in GLOBALS. */
10223 c_write_global_declarations_2 (tree globals
)
10227 for (decl
= globals
; decl
; decl
= DECL_CHAIN (decl
))
10228 debug_hooks
->global_decl (decl
);
10231 /* Callback to collect a source_ref from a DECL. */
10234 collect_source_ref_cb (tree decl
)
10236 if (!DECL_IS_BUILTIN (decl
))
10237 collect_source_ref (LOCATION_FILE (decl_sloc (decl
, false)));
10240 /* Preserve the external declarations scope across a garbage collect. */
10241 static GTY(()) tree ext_block
;
10243 /* Collect all references relevant to SOURCE_FILE. */
10246 collect_all_refs (const char *source_file
)
10251 FOR_EACH_VEC_ELT (*all_translation_units
, i
, t
)
10252 collect_ada_nodes (BLOCK_VARS (DECL_INITIAL (t
)), source_file
);
10254 collect_ada_nodes (BLOCK_VARS (ext_block
), source_file
);
10257 /* Iterate over all global declarations and call CALLBACK. */
10260 for_each_global_decl (void (*callback
) (tree decl
))
10267 FOR_EACH_VEC_ELT (*all_translation_units
, i
, t
)
10269 decls
= DECL_INITIAL (t
);
10270 for (decl
= BLOCK_VARS (decls
); decl
; decl
= TREE_CHAIN (decl
))
10274 for (decl
= BLOCK_VARS (ext_block
); decl
; decl
= TREE_CHAIN (decl
))
10279 c_write_global_declarations (void)
10284 /* We don't want to do this if generating a PCH. */
10288 timevar_start (TV_PHASE_DEFERRED
);
10290 /* Do the Objective-C stuff. This is where all the Objective-C
10291 module stuff gets generated (symtab, class/protocol/selector
10293 if (c_dialect_objc ())
10294 objc_write_global_declarations ();
10296 /* Close the external scope. */
10297 ext_block
= pop_scope ();
10298 external_scope
= 0;
10299 gcc_assert (!current_scope
);
10301 /* Handle -fdump-ada-spec[-slim]. */
10302 if (flag_dump_ada_spec
|| flag_dump_ada_spec_slim
)
10304 /* Build a table of files to generate specs for */
10305 if (flag_dump_ada_spec_slim
)
10306 collect_source_ref (main_input_filename
);
10308 for_each_global_decl (collect_source_ref_cb
);
10310 dump_ada_specs (collect_all_refs
, NULL
);
10315 tree tmp
= BLOCK_VARS (ext_block
);
10317 FILE * stream
= dump_begin (TDI_tu
, &flags
);
10320 dump_node (tmp
, flags
& ~TDF_SLIM
, stream
);
10321 dump_end (TDI_tu
, stream
);
10325 /* Process all file scopes in this compilation, and the external_scope,
10326 through wrapup_global_declarations and check_global_declarations. */
10327 FOR_EACH_VEC_ELT (*all_translation_units
, i
, t
)
10328 c_write_global_declarations_1 (BLOCK_VARS (DECL_INITIAL (t
)));
10329 c_write_global_declarations_1 (BLOCK_VARS (ext_block
));
10331 timevar_stop (TV_PHASE_DEFERRED
);
10332 timevar_start (TV_PHASE_OPT_GEN
);
10334 /* We're done parsing; proceed to optimize and emit assembly.
10335 FIXME: shouldn't be the front end's responsibility to call this. */
10336 finalize_compilation_unit ();
10338 timevar_stop (TV_PHASE_OPT_GEN
);
10339 timevar_start (TV_PHASE_DBGINFO
);
10341 /* After cgraph has had a chance to emit everything that's going to
10342 be emitted, output debug information for globals. */
10343 if (!seen_error ())
10345 timevar_push (TV_SYMOUT
);
10346 FOR_EACH_VEC_ELT (*all_translation_units
, i
, t
)
10347 c_write_global_declarations_2 (BLOCK_VARS (DECL_INITIAL (t
)));
10348 c_write_global_declarations_2 (BLOCK_VARS (ext_block
));
10349 timevar_pop (TV_SYMOUT
);
10353 timevar_stop (TV_PHASE_DBGINFO
);
10356 /* Register reserved keyword WORD as qualifier for address space AS. */
10359 c_register_addr_space (const char *word
, addr_space_t as
)
10361 int rid
= RID_FIRST_ADDR_SPACE
+ as
;
10364 /* Address space qualifiers are only supported
10365 in C with GNU extensions enabled. */
10366 if (c_dialect_objc () || flag_no_asm
)
10369 id
= get_identifier (word
);
10370 C_SET_RID_CODE (id
, rid
);
10371 C_IS_RESERVED_WORD (id
) = 1;
10372 ridpointers
[rid
] = id
;
10375 #include "gt-c-c-decl.h"